Salome HOME
MEDMEM suppression
[modules/med.git] / src / MED / MED_test2.py
1 #  -*- coding: iso-8859-1 -*-
2 # Copyright (C) 2007-2013  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
24 #  MED MED : implemetation of MED idl descriptions
25 #  File   : MED_test2.py
26 #  Author : 
27 #  Module : MED
28 #  $Header$
29 #
30 import salome
31 import SALOME
32 import os
33
34 filePath=os.environ["MED_ROOT_DIR"]
35 filePath=os.path.join(filePath, "share", "salome", "resources", "med")
36 medFile=os.path.join(filePath, "mesh.med")
37
38 med=salome.lcc.FindOrLoadComponent("FactoryServer", "MED")
39
40 try:
41   mesh=med.readMeshInFile(medFile, salome.myStudyName,"Mesh 1")
42 except SALOME.SALOME_Exception, ex:
43   print ex.details
44   print ex.details.type
45   print ex.details.text
46   print ex.details.sourceFile
47   print ex.details.lineNumber
48
49   raise
50
51 print mesh.getName()
52 print mesh.getNumberOfNodes()
53
54 medFile = os.path.join(filePath,"pointe.med")
55 try:
56   field=med.readFieldInFile(medFile,salome.myStudyName,"fieldcelldoublescalar",-1,-1)
57 except SALOME.SALOME_Exception, ex:
58   print ex.details
59   print ex.details.type
60   print ex.details.text
61   print ex.details.sourceFile
62   print ex.details.lineNumber
63
64   raise
65
66 print field.getName()
67 print field.getDescription()
68 print field.getNumberOfComponents()
69