]> SALOME platform Git repositories - modules/homard.git/blob - tests/test_14.py
Salome HOME
Remplacement de mktemp par mkdtemp ou mkstemp.
[modules/homard.git] / tests / test_14.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 4
24 """
25 __revision__ = "V2.2"
26
27 #========================================================================
28 Test_Name = "test_14"
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, 4, -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   # Frontieres
70   # ==========
71   Boun_4_1 = homard.CreateBoundaryDi('intersection', 'PIQUAGE', data_dir+'/tutorial_4.fr.med')
72   #
73   Boun_4_2 = homard.CreateBoundaryCylinder('cyl_1_ext', 0.0, 25., -25., 25., 50., 75., 100.)
74   #
75   Boun_4_3 = homard.CreateBoundaryCylinder('cyl_2_ext', 17.5, -2.5, -12.5, -100., -75., -25., 50.)
76   #
77   Boun_4_4 = homard.CreateBoundaryCylinder('cyl_1_int', 0.0, 25., -25., 25., 50., 75., 75.)
78   #
79   Boun_4_5 = homard.CreateBoundaryCylinder('cyl_2_int', 17.5, -2.5, -12.5, -100., -75., -25., 25.)
80   #
81   # Hypotheses
82   # ==========
83   # Creation of the hypothesis Hypo_4
84   Hypo_4 = homard.CreateHypothesis('Hypo_4')
85   Hypo_4.SetUnifRefinUnRef(1)
86   Hypo_4.AddGroup('T1_INT_I')
87   Hypo_4.AddGroup('T1_INT_O')
88   Hypo_4.AddGroup('T2_INT')
89   # Creation of the hypothesis Hypo_4_bis
90   Hypo_4_bis = homard.CreateHypothesis('Hypo_4_bis')
91   Hypo_4_bis.SetUnifRefinUnRef(1)
92   Hypo_4_bis.AddGroup('T1_EXT_I')
93   Hypo_4_bis.AddGroup('T1_EXT_O')
94   Hypo_4_bis.AddGroup('T2_EXT')
95   #
96   # Cas
97   # ===
98   Case_4 = homard.CreateCase('Case_4', 'PIQUAGE', data_dir+'/tutorial_4.00.med')
99   Case_4.SetDirName(dircase)
100   Case_4.AddBoundaryGroup( 'intersection', '' )
101   Case_4.AddBoundaryGroup( 'cyl_1_int', 'T1_INT_I' )
102   Case_4.AddBoundaryGroup( 'cyl_1_ext', 'T1_EXT_I' )
103   Case_4.AddBoundaryGroup( 'cyl_1_int', 'T1_INT_O' )
104   Case_4.AddBoundaryGroup( 'cyl_1_ext', 'T1_EXT_O' )
105   Case_4.AddBoundaryGroup( 'cyl_2_int', 'T2_INT' )
106   Case_4.AddBoundaryGroup( 'cyl_2_ext', 'T2_EXT' )
107   #
108   # Iterations
109   # ==========
110   # Iteration Iter_4_1 : raffinement selon les faces internes
111   Iter_4_1 = Case_4.NextIteration('Iter_4_1')
112   Iter_4_1.SetMeshName('PIQUAGE_1')
113   Iter_4_1.SetMeshFile(dircase+'/maill.01.med')
114   Iter_4_1.AssociateHypo('Hypo_4')
115   error = Iter_4_1.Compute(1, 2)
116   # Iteration Iter_4_2 : raffinement selon les faces externes
117   Iter_4_2 = Iter_4_1.NextIteration('Iter_4_2')
118   Iter_4_2.SetMeshName('PIQUAGE_2')
119   Iter_4_2.SetMeshFile(dircase+'/maill.02.med')
120   Iter_4_2.AssociateHypo('Hypo_4_bis')
121   error = Iter_4_2.Compute(1, 2)
122   # Iteration Iter_4_3 : second raffinement selon les faces externes
123   Iter_4_3 = Iter_4_2.NextIteration('Iter_4_3')
124   Iter_4_3.SetMeshName('PIQUAGE_3')
125   Iter_4_3.SetMeshFile(dircase+'/maill.03.med')
126   Iter_4_3.AssociateHypo('Hypo_4_bis')
127   error = Iter_4_3.Compute(1, 2)
128   #
129   return error
130
131 #========================================================================
132
133 homard = salome.lcc.FindOrLoadComponent('FactoryServer', 'HOMARD')
134 assert homard is not None, "Impossible to load homard engine"
135 homard.SetLanguageShort("fr")
136 #
137 # Exec of HOMARD-SALOME
138 #
139 try :
140   error_main = homard_exec(salome.myStudy)
141   if error_main :
142     raise Exception('Pb in homard_exec at iteration %d' %error_main )
143 except Exception, e:
144   raise Exception('Pb in homard_exec: '+e.message)
145 #
146 # Test of the results
147 #
148 n_rep_test_file = n_iter_test_file
149 test_results(Rep_Test, Test_Name, dircase, n_iter_test_file, n_rep_test_file)
150 #
151 # ==================================
152 gzip_gunzip(data_dir, 4, 1)
153 # ==================================
154 #
155 if salome.sg.hasDesktop():
156   salome.sg.updateObjBrowser(1)
157   iparameters.getSession().restoreVisualState(1)
158