Salome HOME
Copyright update 2022
[modules/homard.git] / src / tests / Test / tutorial_3.py
index d51a5492156efb54ae36a35481fceaf8e6bf0931..89a295e3e7193ab84c84c4059f3d7047ce29a255 100755 (executable)
@@ -1,5 +1,5 @@
 # -*- coding: utf-8 -*-
-# Copyright (C) 2011-2016  CEA/DEN, EDF R&D
+# Copyright (C) 2011-2022  CEA/DEN, EDF R&D
 #
 # This library is free software; you can redistribute it and/or
 # modify it under the terms of the GNU Lesser General Public
@@ -21,7 +21,7 @@
 Python script for HOMARD
 Test tutorial_3 associe au tutorial 3
 """
-__revision__ = "V4.05"
+__revision__ = "V4.07"
 
 #========================================================================
 TEST_NAME = "tutorial_3"
@@ -38,17 +38,10 @@ REP_PYTHON = os.path.join(PATH_HOMARD, "bin", "salome", "test", "HOMARD")
 REP_PYTHON = os.path.normpath(REP_PYTHON)
 sys.path.append(REP_PYTHON)
 from test_util import get_dir
-from test_util import get_dir_tutorial
 from test_util import test_results
 # ==================================
 # RĂ©pertoires pour ce test
 REP_DATA, DIRCASE = get_dir(PATH_HOMARD, TEST_NAME, DEBUG)
-DATA_TUTORIAL = get_dir_tutorial(PATH_HOMARD)
-# ==================================
-sys.path.append(DATA_TUTORIAL)
-from tutorial_util import gzip_gunzip
-# ==================================
-gzip_gunzip(DATA_TUTORIAL, 3, -1)
 # ==================================
 #
 import salome
@@ -135,7 +128,7 @@ Python script for HOMARD
     iter_3_1 = le_cas.NextIteration('iter_3_1')
     iter_3_1.SetMeshName('H_1')
     iter_3_1.SetMeshFile(os.path.join(DIRCASE, "maill.01.med"))
-    iter_3_1.SetFieldFile(os.path.join(DATA_TUTORIAL, "tutorial_3.00.med"))
+    iter_3_1.SetFieldFile(os.path.join(REP_DATA, "tutorial_3.00.med"))
     iter_3_1.SetTimeStepRank( 1, 1)
     iter_3_1.AssociateHypo('hypo_0vers1')
     erreur = iter_3_1.Compute(1, option)
@@ -147,7 +140,7 @@ Python script for HOMARD
     iter_3_2 = iter_3_1.NextIteration('iter_3_2')
     iter_3_2.SetMeshName('H_2')
     iter_3_2.SetMeshFile(os.path.join(DIRCASE, "maill.02.med"))
-    iter_3_2.SetFieldFile(os.path.join(DATA_TUTORIAL, "tutorial_3.01.med"))
+    iter_3_2.SetFieldFile(os.path.join(REP_DATA, "tutorial_3.01.med"))
     iter_3_2.SetTimeStepRank(1, 1)
     iter_3_2.AssociateHypo('hypo_1vers2')
     erreur = iter_3_2.Compute(1, option)
@@ -159,7 +152,7 @@ Python script for HOMARD
     iter_3_2_bis = iter_3_1.NextIteration('iter_3_2_bis')
     iter_3_2_bis.SetMeshName('H_2_bis')
     iter_3_2_bis.SetMeshFile(os.path.join(DIRCASE, "maill.02.bis.med"))
-    iter_3_2_bis.SetFieldFile(os.path.join(DATA_TUTORIAL, "tutorial_3.01.med"))
+    iter_3_2_bis.SetFieldFile(os.path.join(REP_DATA, "tutorial_3.01.med"))
     iter_3_2_bis.SetTimeStepRank(1, 1)
     iter_3_2_bis.AssociateHypo('hypo_1vers2_bis')
     erreur = iter_3_2_bis.Compute(1, option)
@@ -185,7 +178,7 @@ while not ERREUR :
   assert HOMARD is not None, "Impossible to load homard engine"
   HOMARD.SetLanguageShort("fr")
 #
-  FICMED = os.path.join(DATA_TUTORIAL, TEST_NAME+".00.med")
+  FICMED = os.path.join(REP_DATA, TEST_NAME+".00.med")
   try:
     ERREUR, MESSAGE = homard_exec("G_0", FICMED, DEBUG)
   except RuntimeError as eee:
@@ -207,10 +200,6 @@ while not ERREUR :
 if ERREUR:
   raise Exception(MESSAGE)
 #
-# ==================================
-gzip_gunzip(DATA_TUTORIAL, 3, 1)
-# ==================================
-
 if salome.sg.hasDesktop():
   salome.sg.updateObjBrowser()
   iparameters.getSession().restoreVisualState(1)