Salome HOME
Remplacement de mktemp par mkdtemp ou mkstemp.
[modules/homard.git] / tests / test_11.py
1 # -*- coding: iso-8859-1 -*-
2 # Copyright (C) 2011-2014  CEA/DEN, EDF R&D
3 #
4 # This library is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU Lesser General Public
6 # License as published by the Free Software Foundation; either
7 # version 2.1 of the License, or (at your option) any later version.
8 #
9 # This library is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 # Lesser General Public License for more details.
13 #
14 # You should have received a copy of the GNU Lesser General Public
15 # License along with this library; if not, write to the Free Software
16 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 #
18 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 #
20 """
21 Python script for HOMARD
22 Copyright EDF-R&D 2010, 2014
23 Test test_11 associe au tutorial 1
24 """
25 __revision__ = "V2.2"
26
27 #========================================================================
28 Test_Name = "test_11"
29 n_iter_test_file = 3
30 #========================================================================
31 import os
32 import tempfile
33 import sys
34 import HOMARD
35 import salome
36 #
37 # ==================================
38 pathHomard = os.getenv('HOMARD_ROOT_DIR')
39 # Repertoire des donnees du test
40 Rep_Test = os.path.join(pathHomard, "share", "salome", "resources", "homard")
41 Rep_Test = os.path.normpath(Rep_Test)
42 sys.path.append(Rep_Test)
43 from test_util import test_results
44 # Repertoire des resultats
45 dircase = tempfile.mkdtemp()
46 # Repertoire des donnees du tutorial
47 data_dir = os.path.join(pathHomard, "share", "doc", "salome", "gui", "HOMARD", "fr", "_downloads")
48 data_dir = os.path.normpath(data_dir)
49 sys.path.append(data_dir)
50 from tutorial_util import gzip_gunzip
51 # ==================================
52 gzip_gunzip(data_dir, 1, -1)
53 # ==================================
54
55 salome.salome_init()
56 import iparameters
57 ipar = iparameters.IParameters(salome.myStudy.GetCommonParameters("Interface Applicative", 1))
58 ipar.append("AP_MODULES_LIST", "Homard")
59 #
60 #========================================================================
61 #========================================================================
62 def homard_exec(theStudy):
63   """
64 Python script for HOMARD
65   """
66   #
67   homard.SetCurrentStudy(theStudy)
68   #
69   # Hypotheses
70   # ==========
71   Hypo_1 = homard.CreateHypothesis('Hypo_1')
72   Hypo_1.SetUnifRefinUnRef(1)
73   #
74   # Cas
75   # ===
76   Case_1 = homard.CreateCase('Case_1', 'MAILL', data_dir+'/tutorial_1.00.med')
77   Case_1.SetDirName(dircase)
78   Case_1.SetConfType(1)
79   #
80   # Iterations
81   # ==========
82   # Iteration "Iter_1_1"
83   Iter_1_1 = Case_1.NextIteration('Iter_1_1')
84   Iter_1_1.SetMeshName('MESH')
85   Iter_1_1.SetMeshFile(dircase+'/maill.01.med')
86   Iter_1_1.AssociateHypo('Hypo_1')
87   error = Iter_1_1.Compute(1, 2)
88
89   # Iteration "Iter_1_2"
90   Iter_1_2 = Iter_1_1.NextIteration('Iter_1_2')
91   Iter_1_2.SetMeshName('MESH')
92   Iter_1_2.SetMeshFile(dircase+'/maill.02.med')
93   Iter_1_2.AssociateHypo('Hypo_1')
94   error = Iter_1_2.Compute(1, 2)
95
96   # Iteration "Iter_1_3"
97   Iter_1_3 = Iter_1_2.NextIteration('Iter_1_3')
98   Iter_1_3.SetMeshName('MESH')
99   Iter_1_3.SetMeshFile(dircase+'/maill.03.med')
100   Iter_1_3.AssociateHypo('Hypo_1')
101   error = Iter_1_3.Compute(1, 2)
102   #
103   return error
104
105 #========================================================================
106
107 homard = salome.lcc.FindOrLoadComponent('FactoryServer', 'HOMARD')
108 assert homard is not None, "Impossible to load homard engine"
109 homard.SetLanguageShort("fr")
110 #
111 # Exec of HOMARD-SALOME
112 #
113 try :
114   error_main = homard_exec(salome.myStudy)
115   if error_main :
116     raise Exception('Pb in homard_exec at iteration %d' %error_main )
117 except Exception, e:
118   raise Exception('Pb in homard_exec: '+e.message)
119 #
120 # Test of the results
121 #
122 n_rep_test_file = n_iter_test_file
123 test_results(Rep_Test, Test_Name, dircase, n_iter_test_file, n_rep_test_file)
124 #
125 # ==================================
126 gzip_gunzip(data_dir, 1, 1)
127 # ==================================
128 #
129 if salome.sg.hasDesktop():
130   salome.sg.updateObjBrowser(1)
131   iparameters.getSession().restoreVisualState(1)
132