Salome HOME
Synchronize adm files
[samples/calculator.git] / src / CALCULATOR / CALCULATOR_TEST.py
1 # Copyright (C) 2007-2014  CEA/DEN, EDF R&D, OPEN CASCADE
2 #
3 # Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 # CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 #
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, or (at your option) any later version.
10 #
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.
15 #
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
19 #
20 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 #
22
23 #CALCULATOR_TEST_WITHOUTIHM.py
24 #
25 from omniORB import CORBA
26
27 import salome
28 import SALOME
29 import SALOME_MED
30 import SALOMEDS
31
32 from MEDCouplingCorba import *
33 from MEDCoupling import *
34 from MEDLoader import *
35
36 import os
37 host = os.getenv( 'HOST' )
38 orb, lcc, naming_service, contmgr = salome.salome_kernel.salome_kernel_init()
39
40 ################   GET A MED FIELD FROM FILE pointe.med   ###################
41 #
42 # This test program is based on the field named fieldcelldoublevector in 
43 # med file $MED_ROOT_DIR/share/salome/resources/pointe.med
44 filePath=os.environ["MED_ROOT_DIR"]
45 filePath=filePath+"/share/salome/resources/med/"
46 medFile=filePath+"pointe.med"
47 fieldname = "fieldcelldoublevector"
48 meshname = "maa1"
49
50 # Launch the Med Component and use it to load into memory the test field 
51 print "Launch the Med Component: "
52 med_comp = lcc.FindOrLoadComponent("FactoryServer", "MED")
53
54 # Get a Corba field proxy on the distant field (located in the med_comp server).
55 try:
56     #TODO
57     #Manager = obj._narrow(SALOMEDS.StudyManager)
58     #print "studyManager found"
59     #myStudy = myStudyManager.NewStudy('CALCULATOR_TEST')
60     #studynameId = myStudy._get_StudyId()
61     #studyname = myStudy._get_Name()
62     #print "We are working in the study ",studyname," with the ID ",studynameId
63     print "Read field ",fieldname
64     
65     f = MEDLoader.ReadFieldCell(medFile,meshname,0,fieldname,-1,-1)
66     fieldcelldouble=MEDCouplingFieldDoubleServant._this(f)
67 except SALOME.SALOME_Exception, ex:
68     print ex.details
69     print ex.details.type
70     print ex.details.text
71     print ex.details.sourceFile
72     print ex.details.lineNumber
73     raise
74
75 print "Description of Field : "
76 print f
77 print f.getName()
78 print f.getDescription()
79 print f.getNumberOfComponents()
80
81 #
82 #
83 ##############  Load Calculator Component ###################
84 # Calculator Component must be in the Container of MED
85 #
86 print "Load Calculator Component "
87 # we need to import CALCULATOR_ORB to get a typed object (to perform narrowing)
88 import CALCULATOR_ORB
89 calculator = lcc.FindOrLoadComponent("FactoryServer", "CALCULATOR")
90
91 #
92 #
93 ##############  Test Calculator Component ###################
94 #
95 #
96 print "Appel cloneField : fieldcelldoublevector -> f1,f2,f3,f4"
97 (f1,f2,f3,f4)=calculator.cloneField(fieldcelldouble)  # fieldcelldouble is consumed
98 #
99 f1.Register()
100 calculator.printField(f1)
101 print "Add fields f2+f3"
102 f_add=calculator.add(f2, f3)
103 f_add.Register()
104 calculator.printField( f_add ) # f_add is consumed
105
106 #
107 print "Apply linear function"
108 f_lin=calculator.applyLin(f4,2.0,1.0)
109 f_lin.Register()
110 calculator.printField( f_lin ) # f_lin is consumed
111 #
112 print "Appel Norme Max "
113 f_lin.Register()
114 norme=calculator.normMax(f_lin) # f_lin is consumed
115 print " -> norme = ",norme
116 #
117
118 print "End of Calculator Test!"