]> SALOME platform Git repositories - modules/homard.git/commitdiff
Salome HOME
Nombre maximal d'itérations du schéma YACS
authorGERALD NICOLAS <gerald.nicolas@edf.fr>
Tue, 18 Sep 2018 13:42:28 +0000 (15:42 +0200)
committerGERALD NICOLAS <gerald.nicolas@edf.fr>
Tue, 18 Sep 2018 13:42:28 +0000 (15:42 +0200)
src/tests/Test/test_1.py
src/tests/Test/test_2.py
src/tests/Test/test_3.py

index f437e889182fb3770460703ad10d3b050d222d18..d3f879f5ad76894d7a2e0be59ca2044554f8b97a 100755 (executable)
@@ -21,7 +21,7 @@
 Python script for HOMARD
 Test test_1
 """
-__revision__ = "V4.04"
+__revision__ = "V4.05"
 
 #========================================================================
 TEST_NAME = "test_1"
@@ -175,6 +175,7 @@ Python script for HOMARD
     scriptfile = os.path.normpath(scriptfile)
     dirname = DIRCASE
     yacs_test_1 = case_test_1.CreateYACSSchema("YACS_test_1", scriptfile, dirname, mesh_file)
+    yacs_test_1.SetMaxIter(N_ITER_TEST_FILE)
     error = yacs_test_1.Write()
     if error :
       error = 4
index 846f691f6ddc42627d73891bd6fcc84fd2427379..ccad6faadf7c2b8aaecac75fe8961967e2cd2b70 100755 (executable)
@@ -21,7 +21,7 @@
 Python script for HOMARD
 Test test_2
 """
-__revision__ = "V4.04"
+__revision__ = "V4.05"
 
 #========================================================================
 TEST_NAME = "test_2"
@@ -144,7 +144,7 @@ Python script for HOMARD
     scriptfile = os.path.normpath(scriptfile)
     dirname = DIRCASE
     yacs_test_2 = case_test_2.CreateYACSSchema("YACS_test_2", scriptfile, dirname, mesh_file)
-    yacs_test_2.SetMaxIter(4)
+    yacs_test_2.SetMaxIter(N_ITER_TEST_FILE+1)
     yacs_test_2.SetType(1)
     filexml = os.path.join(DIRCASE, 'yacs_test_2.xml')
     error = yacs_test_2.WriteOnFile(filexml)
index 9b1b9790b1df119d3628b5037d1dd573cbdf483d..3c14a5608545004a3216b716c9e33b19ce157825 100755 (executable)
 Python script for HOMARD
 Test test_3
 """
-__revision__ = "V4.05"
+__revision__ = "V4.06"
 
 #========================================================================
 TEST_NAME = "test_3"
 DEBUG = False
-N_BOUCLE = 2
 N_ITER_TEST_FILE = 2
+N_BOUCLE = 2
 #========================================================================
 import os
 import sys
@@ -144,7 +144,7 @@ Python script for HOMARD
       print("-------- Creation of the schema", yacsname)
       yacs_test_3 = case_test_3.CreateYACSSchema(yacsname, scriptfile, dirname, mesh_file)
       yacs_test_3.SetType(2)
-      yacs_test_3.SetMaxIter(2)
+      yacs_test_3.SetMaxIter(N_ITER_TEST_FILE)
       error = yacs_test_3.Write()
       if error :
         error = 10*num + 5