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