Salome HOME
Changement de nom
[modules/homard.git] / src / tests / Test / tutorial_1.py
1 # -*- coding: utf-8 -*-
2 # Copyright (C) 2011-2015  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 test_11 associe au tutorial 1
23 """
24 __revision__ = "V3.1"
25
26 #========================================================================
27 TEST_NAME = "test_11"
28 DEBUG = False
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 PATH_HOMARD = os.getenv('HOMARD_ROOT_DIR')
39 # Repertoire des scripts utilitaires
40 REP_PYTHON = os.path.join(PATH_HOMARD, "bin", "salome", "test", "HOMARD")
41 REP_PYTHON = os.path.normpath(REP_PYTHON)
42 sys.path.append(REP_PYTHON)
43 from test_util import remove_dir
44 from test_util import test_results
45 # Repertoire des donnees du test
46 REP_DATA = os.path.join(PATH_HOMARD, "share", "salome", "homardsamples")
47 REP_DATA = os.path.normpath(REP_DATA)
48 # Repertoire des resultats
49 if DEBUG :
50   DIRCASE = os.path.join("/tmp", TEST_NAME)
51   if ( os.path.isdir(DIRCASE) ) :
52     remove_dir(DIRCASE)
53   os.mkdir(DIRCASE)
54 else :
55   DIRCASE = tempfile.mkdtemp()
56 # Repertoire des donnees du tutorial
57 DATA_TUTORIAL = os.path.join(PATH_HOMARD, "share", "doc", "salome", "gui", "HOMARD", "fr", "_downloads")
58 DATA_TUTORIAL = os.path.normpath(DATA_TUTORIAL)
59 sys.path.append(DATA_TUTORIAL)
60 from tutorial_util import gzip_gunzip
61 # ==================================
62 gzip_gunzip(DATA_TUTORIAL, 1, -1)
63 # ==================================
64
65 salome.salome_init()
66 import iparameters
67 IPAR = iparameters.IParameters(salome.myStudy.GetCommonParameters("Interface Applicative", 1))
68 IPAR.append("AP_MODULES_LIST", "Homard")
69 #
70 #========================================================================
71 #========================================================================
72 def homard_exec(theStudy):
73   """
74 Python script for HOMARD
75   """
76   #
77   homard.SetCurrentStudy(theStudy)
78   #
79   # Hypotheses
80   # ==========
81   hypo_1 = homard.CreateHypothesis('hypo_1')
82   hypo_1.SetUnifRefinUnRef(1)
83   #
84   # Cas
85   # ===
86   case_1 = homard.CreateCase('case_1', 'MAILL', DATA_TUTORIAL+'/tutorial_1.00.med')
87   case_1.SetDirName(DIRCASE)
88   #
89   # Iterations
90   # ==========
91   # Iteration "iter_1_1"
92   iter_1_1 = case_1.NextIteration('iter_1_1')
93   iter_1_1.SetMeshName('MESH')
94   iter_1_1.SetMeshFile(DIRCASE+'/maill.01.med')
95   iter_1_1.AssociateHypo('hypo_1')
96   error = iter_1_1.Compute(1, 2)
97
98   # Iteration "iter_1_2"
99   iter_1_2 = iter_1_1.NextIteration('iter_1_2')
100   iter_1_2.SetMeshName('MESH')
101   iter_1_2.SetMeshFile(DIRCASE+'/maill.02.med')
102   iter_1_2.AssociateHypo('hypo_1')
103   error = iter_1_2.Compute(1, 2)
104
105   # Iteration "iter_1_3"
106   iter_1_3 = iter_1_2.NextIteration('iter_1_3')
107   iter_1_3.SetMeshName('MESH')
108   iter_1_3.SetMeshFile(DIRCASE+'/maill.03.med')
109   iter_1_3.AssociateHypo('hypo_1')
110   error = iter_1_3.Compute(1, 2)
111   #
112   return error
113
114 #========================================================================
115
116 homard = salome.lcc.FindOrLoadComponent('FactoryServer', 'HOMARD')
117 assert homard is not None, "Impossible to load homard engine"
118 homard.SetLanguageShort("fr")
119 #
120 # Exec of HOMARD-SALOME
121 #
122 try :
123   ERROR = homard_exec(salome.myStudy)
124   if ERROR :
125     raise Exception('Pb in homard_exec at iteration %d' %ERROR )
126 except Exception, eee:
127   raise Exception('Pb in homard_exec: '+eee.message)
128 #
129 # Test of the results
130 #
131 N_REP_TEST_FILE = N_ITER_TEST_FILE
132 DESTROY_DIR = not DEBUG
133 test_results(REP_DATA, TEST_NAME, DIRCASE, N_ITER_TEST_FILE, N_REP_TEST_FILE, DESTROY_DIR)
134 #
135 # ==================================
136 gzip_gunzip(DATA_TUTORIAL, 1, 1)
137 # ==================================
138 #
139 if salome.sg.hasDesktop():
140   salome.sg.updateObjBrowser(1)
141   iparameters.getSession().restoreVisualState(1)
142