1 // Copyright (C) 2007-2010 CEA/DEN, EDF R&D, OPEN CASCADE
3 // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License.
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 // Lesser General Public License for more details.
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 #include "DriverUNV_R_SMDS_Mesh.h"
24 #include "SMDS_Mesh.hxx"
25 #include "SMDS_MeshGroup.hxx"
27 #include "utilities.h"
29 #include "UNV2411_Structure.hxx"
30 #include "UNV2412_Structure.hxx"
31 #include "UNV2417_Structure.hxx"
32 #include "UNV_Utilities.hxx"
34 #include <Basics_Utils.hxx>
40 static int MYDEBUG = 0;
42 static int MYDEBUG = 0;
46 DriverUNV_R_SMDS_Mesh::~DriverUNV_R_SMDS_Mesh()
53 Driver_Mesh::Status DriverUNV_R_SMDS_Mesh::Perform()
55 Kernel_Utils::Localizer loc;
56 Status aResult = DRS_OK;
57 std::ifstream in_stream(myFile.c_str());
60 using namespace UNV2411;
61 TDataSet aDataSet2411;
62 UNV2411::Read(in_stream,aDataSet2411);
63 if(MYDEBUG) MESSAGE("Perform - aDataSet2411.size() = "<<aDataSet2411.size());
64 TDataSet::const_iterator anIter = aDataSet2411.begin();
65 for(; anIter != aDataSet2411.end(); anIter++){
66 const TNodeLab& aLabel = anIter->first;
67 const TRecord& aRec = anIter->second;
68 myMesh->AddNodeWithID(aRec.coord[0],aRec.coord[1],aRec.coord[2],aLabel);
72 using namespace UNV2412;
74 TDataSet aDataSet2412;
75 UNV2412::Read(in_stream,aDataSet2412);
76 TDataSet::const_iterator anIter = aDataSet2412.begin();
77 if(MYDEBUG) MESSAGE("Perform - aDataSet2412.size() = "<<aDataSet2412.size());
78 for(; anIter != aDataSet2412.end(); anIter++){
79 SMDS_MeshElement* anElement = NULL;
80 const TElementLab& aLabel = anIter->first;
81 const TRecord& aRec = anIter->second;
82 if(IsBeam(aRec.fe_descriptor_id)) {
83 switch ( aRec.node_labels.size() ) {
84 case 2: // edge with two nodes
85 anElement = myMesh->AddEdgeWithID(aRec.node_labels[0],
89 case 3: // quadratic edge (with 3 nodes)
90 anElement = myMesh->AddEdgeWithID(aRec.node_labels[0],
96 else if(IsFace(aRec.fe_descriptor_id)) {
97 switch(aRec.fe_descriptor_id){
98 case 41: // Plane Stress Linear Triangle
99 case 51: // Plane Strain Linear Triangle
100 case 61: // Plate Linear Triangle
101 case 74: // Membrane Linear Triangle
102 case 81: // Axisymetric Solid Linear Triangle
103 case 91: // Thin Shell Linear Triangle
104 anElement = myMesh->AddFaceWithID(aRec.node_labels[0],
110 case 42: // Plane Stress Parabolic Triangle
111 case 52: // Plane Strain Parabolic Triangle
112 case 62: // Plate Parabolic Triangle
113 case 72: // Membrane Parabolic Triangle
114 case 82: // Axisymetric Solid Parabolic Triangle
115 case 92: // Thin Shell Parabolic Triangle
116 anElement = myMesh->AddFaceWithID(aRec.node_labels[0],
125 case 44: // Plane Stress Linear Quadrilateral
126 case 54: // Plane Strain Linear Quadrilateral
127 case 64: // Plate Linear Quadrilateral
128 case 71: // Membrane Linear Quadrilateral
129 case 84: // Axisymetric Solid Linear Quadrilateral
130 case 94: // Thin Shell Linear Quadrilateral
131 anElement = myMesh->AddFaceWithID(aRec.node_labels[0],
138 case 45: // Plane Stress Parabolic Quadrilateral
139 case 55: // Plane Strain Parabolic Quadrilateral
140 case 65: // Plate Parabolic Quadrilateral
141 case 75: // Membrane Parabolic Quadrilateral
142 case 85: // Axisymetric Solid Parabolic Quadrilateral
143 case 95: // Thin Shell Parabolic Quadrilateral
144 anElement = myMesh->AddFaceWithID(aRec.node_labels[0],
156 else if(IsVolume(aRec.fe_descriptor_id)){
157 switch(aRec.fe_descriptor_id){
159 case 111: // Solid Linear Tetrahedron - TET4
160 anElement = myMesh->AddVolumeWithID(aRec.node_labels[0],
167 case 118: // Solid Quadratic Tetrahedron - TET10
168 anElement = myMesh->AddVolumeWithID(aRec.node_labels[0],
184 case 112: // Solid Linear Prism - PRISM6
185 anElement = myMesh->AddVolumeWithID(aRec.node_labels[0],
194 case 113: // Solid Quadratic Prism - PRISM15
195 anElement = myMesh->AddVolumeWithID(aRec.node_labels[0],
200 aRec.node_labels[13],
201 aRec.node_labels[11],
207 aRec.node_labels[14],
208 aRec.node_labels[12],
209 aRec.node_labels[10],
217 case 115: // Solid Linear Brick - HEX8
218 anElement = myMesh->AddVolumeWithID(aRec.node_labels[0],
229 case 116: // Solid Quadratic Brick - HEX20
230 anElement = myMesh->AddVolumeWithID(aRec.node_labels[0],
235 aRec.node_labels[12],
236 aRec.node_labels[18],
237 aRec.node_labels[16],
238 aRec.node_labels[14],
245 aRec.node_labels[19],
246 aRec.node_labels[17],
247 aRec.node_labels[15],
248 aRec.node_labels[13],
251 aRec.node_labels[11],
252 aRec.node_labels[10],
257 case 114: // pyramid of 13 nodes (quadratic) - PIRA13
258 anElement = myMesh->AddVolumeWithID(aRec.node_labels[0],
268 aRec.node_labels[11],
269 aRec.node_labels[10],
271 aRec.node_labels[12],
278 // MESSAGE("DriverUNV_R_SMDS_Mesh::Perform - can not add element with ID = "<<aLabel<<" and type = "<<aRec.fe_descriptor_id);
282 using namespace UNV2417;
284 TDataSet aDataSet2417;
285 UNV2417::Read(in_stream,aDataSet2417);
286 if(MYDEBUG) MESSAGE("Perform - aDataSet2417.size() = "<<aDataSet2417.size());
287 if (aDataSet2417.size() > 0) {
288 myGroup = new SMDS_MeshGroup(myMesh);
289 TDataSet::const_iterator anIter = aDataSet2417.begin();
290 for(; anIter != aDataSet2417.end(); anIter++){
291 const TGroupId& aLabel = anIter->first;
292 const TRecord& aRec = anIter->second;
294 int aNodesNb = aRec.NodeList.size();
295 int aElementsNb = aRec.ElementList.size();
297 bool useSuffix = ((aNodesNb > 0) && (aElementsNb > 0));
300 SMDS_MeshGroup* aNodesGroup = (SMDS_MeshGroup*) myGroup->AddSubGroup(SMDSAbs_Node);
301 std::string aGrName = (useSuffix) ? aRec.GroupName + "_Nodes" : aRec.GroupName;
302 int i = aGrName.find( "\r" );
304 aGrName.erase (i, 2);
305 myGroupNames.insert(TGroupNamesMap::value_type(aNodesGroup, aGrName));
306 myGroupId.insert(TGroupIdMap::value_type(aNodesGroup, aLabel));
308 for (i = 0; i < aNodesNb; i++) {
309 const SMDS_MeshNode* aNode = myMesh->FindNode(aRec.NodeList[i]);
311 aNodesGroup->Add(aNode);
314 if (aElementsNb > 0){
315 SMDS_MeshGroup* aEdgesGroup = 0;
316 SMDS_MeshGroup* aFacesGroup = 0;
317 SMDS_MeshGroup* aVolumeGroup = 0;
318 bool createdGroup = false;
320 for (i = 0; i < aElementsNb; i++) {
321 const SMDS_MeshElement* aElement = myMesh->FindElement(aRec.ElementList[i]);
323 switch (aElement->GetType()) {
326 aEdgesGroup = (SMDS_MeshGroup*) myGroup->AddSubGroup(SMDSAbs_Edge);
327 if (!useSuffix && createdGroup) useSuffix = true;
328 std::string aEdgesGrName = (useSuffix) ? aRec.GroupName + "_Edges" : aRec.GroupName;
329 int i = aEdgesGrName.find( "\r" );
331 aEdgesGrName.erase (i, 2);
332 myGroupNames.insert(TGroupNamesMap::value_type(aEdgesGroup, aEdgesGrName));
333 myGroupId.insert(TGroupIdMap::value_type(aEdgesGroup, aLabel));
336 aEdgesGroup->Add(aElement);
340 aFacesGroup = (SMDS_MeshGroup*) myGroup->AddSubGroup(SMDSAbs_Face);
341 if (!useSuffix && createdGroup) useSuffix = true;
342 std::string aFacesGrName = (useSuffix) ? aRec.GroupName + "_Faces" : aRec.GroupName;
343 int i = aFacesGrName.find( "\r" );
345 aFacesGrName.erase (i, 2);
346 myGroupNames.insert(TGroupNamesMap::value_type(aFacesGroup, aFacesGrName));
347 myGroupId.insert(TGroupIdMap::value_type(aFacesGroup, aLabel));
350 aFacesGroup->Add(aElement);
354 aVolumeGroup = (SMDS_MeshGroup*) myGroup->AddSubGroup(SMDSAbs_Volume);
355 if (!useSuffix && createdGroup) useSuffix = true;
356 std::string aVolumeGrName = (useSuffix) ? aRec.GroupName + "_Volumes" : aRec.GroupName;
357 int i = aVolumeGrName.find( "\r" );
359 aVolumeGrName.erase (i, 2);
360 myGroupNames.insert(TGroupNamesMap::value_type(aVolumeGroup, aVolumeGrName));
361 myGroupId.insert(TGroupIdMap::value_type(aVolumeGroup, aLabel));
364 aVolumeGroup->Add(aElement);
374 catch(const std::exception& exc){
375 INFOS("Follow exception was cought:\n\t"<<exc.what());
378 INFOS("Unknown exception was cought !!!");