1 # -*- coding: utf-8 -*-
3 # Copyright (C) 2011-2016 CEA/DEN, EDF R&D
5 # This library is free software; you can redistribute it and/or
6 # modify it under the terms of the GNU Lesser General Public
7 # License as published by the Free Software Foundation; either
8 # version 2.1 of the License, or (at your option) any later version.
10 # This library is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 # Lesser General Public License for more details.
15 # You should have received a copy of the GNU Lesser General Public
16 # License along with this library; if not, write to the Free Software
17 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
23 Python script for HOMARD
24 Test tutorial_5 associe au tutorial 5
26 __revision__ = "V4.05"
28 #========================================================================
29 TEST_NAME = "tutorial_5"
32 #========================================================================
36 # ==================================
37 PATH_HOMARD = os.getenv('HOMARD_ROOT_DIR')
38 # Repertoire des scripts utilitaires
39 REP_PYTHON = os.path.join(PATH_HOMARD, "bin", "salome", "test", "HOMARD")
40 REP_PYTHON = os.path.normpath(REP_PYTHON)
41 sys.path.append(REP_PYTHON)
42 from test_util import get_dir
43 from test_util import get_dir_tutorial
44 from test_util import test_results
45 # ==================================
46 # Répertoires pour ce test
47 REP_DATA, DIRCASE = get_dir(PATH_HOMARD, TEST_NAME, DEBUG)
48 DATA_TUTORIAL = get_dir_tutorial(PATH_HOMARD)
49 # ==================================
50 sys.path.append(DATA_TUTORIAL)
51 from tutorial_util import gzip_gunzip
52 # ==================================
53 gzip_gunzip(DATA_TUTORIAL, 5, -1)
54 # ==================================
61 IPAR = iparameters.IParameters(salome.myStudy.GetCommonParameters("Interface Applicative", 1))
62 IPAR.append("AP_MODULES_LIST", "Homard")
65 #========================= Debut de la fonction ==================================
67 def homard_exec(nom, ficmed, nomfr, ficfrmed, verbose=False):
69 Python script for HOMARD
76 # HOMARD.UpdateStudy()
82 # Creation of the discrete boundary Boun_5_1
83 boun_5_1 = HOMARD.CreateBoundaryDi('Boun_5_1', nomfr, ficfrmed)
89 # Creation of the disk with hole enveloppe
90 enveloppe = HOMARD.CreateZoneDiskWithHole( 'enveloppe', 0., 0., 250., 193., 1 )
91 # Creation of the rectangle quart_sup
92 quart_sup = HOMARD.CreateZoneBox2D( 'quart_sup', 0., 250., 0., 250., 1 )
98 # Creation of the hypothesis hypo_5
99 hypo_5 = HOMARD.CreateHypothesis('hypo_5')
100 hypo_5.AddZone('enveloppe', 1)
101 # Creation of the hypothesis hypo_5_bis
102 hypo_5_bis = HOMARD.CreateHypothesis('hypo_5_bis')
103 hypo_5_bis.AddZone('quart_sup', 1)
109 le_cas = HOMARD.CreateCase('case_5', nom, ficmed)
110 le_cas.SetDirName(DIRCASE)
111 le_cas.SetConfType(1)
112 le_cas.AddBoundary('Boun_5_1')
121 print(". Itérations")
123 # Iteration "iter_5_1"
124 # ====================
125 iter_5_1 = le_cas.NextIteration('iter_5_1')
126 iter_5_1.SetMeshName('COEUR_2D_01')
127 iter_5_1.SetMeshFile(os.path.join(DIRCASE, "maill.01.med"))
128 iter_5_1.AssociateHypo('hypo_5')
129 erreur = iter_5_1.Compute(1, option)
133 # Iteration "iter_5_2"
134 # ====================
135 iter_5_2 = iter_5_1.NextIteration('iter_5_2')
136 iter_5_2.SetMeshName('COEUR_2D_02')
137 iter_5_2.SetMeshFile(os.path.join(DIRCASE, "maill.02.med"))
138 iter_5_2.AssociateHypo('hypo_5_bis')
139 erreur = iter_5_2.Compute(1, option)
146 message += "Erreur au calcul de l'itération %d" % erreur
148 return erreur, message
150 #========================== Fin de la fonction ==================================
156 # A. Exec of HOMARD-SALOME
158 HOMARD = salome.lcc.FindOrLoadComponent('FactoryServer', 'HOMARD')
159 assert HOMARD is not None, "Impossible to load homard engine"
160 HOMARD.SetLanguageShort("fr")
162 FICMED = os.path.join(DATA_TUTORIAL, TEST_NAME+".00.med")
163 FICFRMED = os.path.join(DATA_TUTORIAL, TEST_NAME+".fr.med")
165 ERREUR, MESSAGE = homard_exec("COEUR_2D", FICMED, "MAIL_EXT", FICFRMED, DEBUG)
166 except RuntimeError as eee:
168 MESSAGE = str(eee.message)
171 MESSAGE += "Pb in homard_exec"
174 # B. Test of the results
176 N_REP_TEST_FILE = N_ITER_TEST_FILE
177 DESTROY_DIR = not DEBUG
178 test_results(REP_DATA, TEST_NAME, DIRCASE, N_ITER_TEST_FILE, N_REP_TEST_FILE, DESTROY_DIR)
183 raise Exception(MESSAGE)
185 # ==================================
186 gzip_gunzip(DATA_TUTORIAL, 5, 1)
187 # ==================================
189 if salome.sg.hasDesktop():
190 salome.sg.updateObjBrowser()
191 iparameters.getSession().restoreVisualState(1)