Salome HOME
9be1fd8c077222e05884c225af2a51f34bf30f46
[modules/homard.git] / src / tests / Test / tutorial_2.py
1 # -*- coding: utf-8 -*-
2 # Copyright (C) 2011-2016  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 Test tutorial_2 associe au tutorial 2
23 """
24 __revision__ = "V4.05"
25
26 #========================================================================
27 TEST_NAME = "tutorial_2"
28 DEBUG = False
29 N_ITER_TEST_FILE = 2
30 #========================================================================
31 import os
32 import sys
33 #
34 # ==================================
35 PATH_HOMARD = os.getenv('HOMARD_ROOT_DIR')
36 # Repertoire des scripts utilitaires
37 REP_PYTHON = os.path.join(PATH_HOMARD, "bin", "salome", "test", "HOMARD")
38 REP_PYTHON = os.path.normpath(REP_PYTHON)
39 sys.path.append(REP_PYTHON)
40 from test_util import get_dir
41 from test_util import get_dir_tutorial
42 from test_util import test_results
43 # ==================================
44 # Répertoires pour ce test
45 REP_DATA, DIRCASE = get_dir(PATH_HOMARD, TEST_NAME, DEBUG)
46 DATA_TUTORIAL = get_dir_tutorial(PATH_HOMARD)
47 # ==================================
48 sys.path.append(DATA_TUTORIAL)
49 from tutorial_util import gzip_gunzip
50 # ==================================
51 gzip_gunzip(DATA_TUTORIAL, 2, -1)
52 # ==================================
53 #
54 import salome
55 salome.salome_init()
56 import HOMARD
57 #
58 import iparameters
59 IPAR = iparameters.IParameters(salome.myStudy.GetCommonParameters("Interface Applicative", 1))
60 IPAR.append("AP_MODULES_LIST", "Homard")
61 #
62 #
63 #========================= Debut de la fonction ==================================
64 #
65 def homard_exec(nom, ficmed, verbose=False):
66   """
67 Python script for HOMARD
68   """
69   erreur = 0
70   message = ""
71   #
72   while not erreur :
73     #
74   #  HOMARD.UpdateStudy()
75     #
76     # Creation des zones
77     # ==================
78     if verbose :
79       print(". Zones")
80     # Box "Zone_12_0"
81     zone_12_0 = HOMARD.CreateZoneBox ('Zone_12_0', -0.1, 1.1, -0.1, 1.1, 0.9, 1.1)
82     #
83     # Sphere "Zone_12_1"
84     zone_12_1 = HOMARD.CreateZoneSphere ('Zone_12_1', 0., 0., 0., 1.05)
85     #
86     # Box "Zone_12_2"
87     zone_12_2 = HOMARD.CreateZoneBox ('Zone_12_2', -0.1, 0.51, -0.1, 0.51, -0.1, 0.51)
88     #
89     # Hypotheses
90     # ==========
91     if verbose :
92       print(". Hypothèses")
93     # Hypothese "hypo_2"
94     # ==================
95     hypo_2 = HOMARD.CreateHypothesis('hypo_2')
96     hypo_2.AddZone('Zone_12_1', 1)
97     hypo_2.AddZone('Zone_12_0', 1)
98     #
99     # Hypothese "hypo_2_bis"
100     # ======================
101     hypo_2_bis = HOMARD.CreateHypothesis('hypo_2_bis')
102     hypo_2_bis.AddZone('Zone_12_0', -1)
103     hypo_2_bis.AddZone('Zone_12_2', 1)
104     #
105     # Cas
106     # ===
107     if verbose :
108       print(". Cas")
109     le_cas = HOMARD.CreateCase('case_2', nom, ficmed)
110     le_cas.SetDirName(DIRCASE)
111     #
112     # Itérations
113     # ==========
114     if verbose :
115       option = 2
116     else :
117       option = 1
118     if verbose :
119       print(". Itérations")
120     #
121     # Iteration "iter_2_1"
122     # ====================
123     iter_2_1 = le_cas.NextIteration('iter_2_1')
124     iter_2_1.SetMeshName('M_1')
125     iter_2_1.SetMeshFile(os.path.join(DIRCASE, "maill.01.med"))
126     iter_2_1.AssociateHypo('hypo_2')
127     erreur = iter_2_1.Compute(1, option)
128     if erreur :
129       break
130     #
131     # Iteration "iter_2_2"
132     # ====================
133     iter_2_2 = iter_2_1.NextIteration('iter_2_2')
134     iter_2_2.SetMeshName('M_2')
135     iter_2_2.SetMeshFile(os.path.join(DIRCASE, "maill.01.med"))
136     iter_2_2.AssociateHypo('hypo_2_bis')
137     erreur = iter_2_2.Compute(1, option)
138     if erreur :
139       break
140   #
141     break
142   #
143   if erreur :
144     message += "Erreur au calcul de l'itération %d" % erreur
145   #
146   return erreur, message
147 #
148 #==========================  Fin de la fonction ==================================
149 #
150 ERREUR = 0
151 MESSAGE = ""
152 while not ERREUR :
153   #
154   # A. Exec of HOMARD-SALOME
155   #
156   HOMARD = salome.lcc.FindOrLoadComponent('FactoryServer', 'HOMARD')
157   assert HOMARD is not None, "Impossible to load homard engine"
158   HOMARD.SetLanguageShort("fr")
159 #
160   FICMED = os.path.join(DATA_TUTORIAL, TEST_NAME+".00.med")
161   try:
162     ERREUR, MESSAGE = homard_exec("MZERO", FICMED, DEBUG)
163   except RuntimeError as eee:
164     ERREUR = 2
165     MESSAGE = str(eee.message)
166   #
167   if ERREUR :
168     MESSAGE += "Pb in homard_exec"
169     break
170   #
171   # B. Test of the results
172   #
173   N_REP_TEST_FILE = N_ITER_TEST_FILE
174   DESTROY_DIR = not DEBUG
175   test_results(REP_DATA, TEST_NAME, DIRCASE, N_ITER_TEST_FILE, N_REP_TEST_FILE, DESTROY_DIR)
176   #
177   break
178 #
179 if ERREUR:
180   raise Exception(MESSAGE)
181 #
182 # ==================================
183 gzip_gunzip(DATA_TUTORIAL, 2, 1)
184 # ==================================
185 #
186 if salome.sg.hasDesktop():
187   salome.sg.updateObjBrowser()
188   iparameters.getSession().restoreVisualState(1)
189