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