Salome HOME
264c1269145e2df5ece60ac5c5385ed4a89f83a0
[modules/smesh.git] / src / SMESH_SWIG / SMESH_test5.py
1 #! /usr/bin/python
2 #  -*- coding: iso-8859-1 -*-
3 #  Copyright (C) 2007-2008  CEA/DEN, EDF R&D, OPEN CASCADE
4 #
5 #  Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
6 #  CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
7 #
8 #  This library is free software; you can redistribute it and/or
9 #  modify it under the terms of the GNU Lesser General Public
10 #  License as published by the Free Software Foundation; either
11 #  version 2.1 of the License.
12 #
13 #  This library is distributed in the hope that it will be useful,
14 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
15 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16 #  Lesser General Public License for more details.
17 #
18 #  You should have received a copy of the GNU Lesser General Public
19 #  License along with this library; if not, write to the Free Software
20 #  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
21 #
22 #  See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 #
24 #  File   : SMESH_test5.py
25 #  Module : SMESH
26 #
27 import salome
28 import smesh
29 import SALOMEDS
30 import CORBA
31 import os
32 import os.path
33
34 def SetSObjName(theSObj,theName) :
35     ok, anAttr = theSObj.FindAttribute("AttributeName")
36     if ok:
37         aName = anAttr._narrow(SALOMEDS.AttributeName)
38         #print aName.__dict__
39         aName.SetValue(theName)
40
41 def ConvertMED2UNV(thePath,theFile) :
42     anInitFileName = thePath + theFile
43     aMeshes,aResult = smesh.CreateMeshesFromMED(anInitFileName)
44     print aResult, aMeshes
45
46     for iMesh in range(len(aMeshes)) :
47         aMesh = aMeshes[iMesh]
48         print aMesh.GetName(),
49         aFileName = anInitFileName
50         aFileName = os.path.basename(aFileName)
51         aMesh.SetName(aFileName)
52         print aMesh.GetName()
53
54         aOutPath = '/tmp/'
55         aFileName = aOutPath + theFile + "." + str(iMesh) + ".unv"
56         aMesh.ExportUNV(aFileName)
57         aMesh = smesh.CreateMeshesFromUNV(aFileName)
58         print aMesh.GetName(),
59         os.remove(aFileName)
60         aFileName = os.path.basename(aFileName)
61         aMesh.SetName(aFileName)
62         print aMesh.GetName()
63
64 aPath = os.getenv('DATA_DIR') + '/MedFiles/'
65 aListDir = os.listdir(aPath)
66 print aListDir
67
68 for iFile in range(len(aListDir)) :
69     aFileName = aListDir[iFile]
70     aName,anExt = os.path.splitext(aFileName)
71     if anExt == ".med" :
72         aFileName = os.path.basename(aFileName)
73         print aFileName
74         ConvertMED2UNV(aPath,aFileName)
75         #break
76
77 salome.sg.updateObjBrowser(1)