]> SALOME platform Git repositories - modules/adao.git/blob - test/test6711/Doc_TUI_Exemple_01_Savings.py
Salome HOME
Fixup for tests details
[modules/adao.git] / test / test6711 / Doc_TUI_Exemple_01_Savings.py
1 # -*- coding: utf-8 -*-
2 #
3 # Copyright (C) 2008-2019 EDF R&D
4 #
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.
9 #
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.
14 #
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
18 #
19 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 #
21 # Author: Jean-Philippe Argaud, jean-philippe.argaud@edf.fr, EDF R&D
22 "Verification d'un exemple de la documentation"
23
24 import os, pprint
25
26 # ==============================================================================
27 def test1():
28     """Test"""
29     from numpy import array, matrix
30     from adao import adaoBuilder
31     case = adaoBuilder.New()
32     case.set( 'AlgorithmParameters', Algorithm='3DVAR' )
33     case.set( 'Background',          Vector=[0, 1, 2] )
34     case.set( 'BackgroundError',     ScalarSparseMatrix=1.0 )
35     case.set( 'Observation',         Vector=array([0.5, 1.5, 2.5]) )
36     case.set( 'ObservationError',    DiagonalSparseMatrix='1 1 1' )
37     case.set( 'ObservationOperator', Matrix='1 0 0;0 2 0;0 0 3' )
38     case.set( 'Observer',            Variable="Analysis", Template="ValuePrinter" )
39     #
40     case.setObserver("Analysis", String="print('==> Nombre d analyses   : %i'%len(var))")
41     #
42     case.execute()
43     #
44     base_file = "output_test6711"
45     print("")
46     print("#===============================================================================")
47     #
48     print("#=== Restitution en dictionnaire basique =======================================")
49     case.get()
50     print("#===============================================================================")
51     #
52     print("#=== Restitution en fichier TUI ================================================")
53     # print(case.dump(FileName=base_file+"_TUI.py", Formater="TUI"))
54     case.dump(FileName=base_file+"_TUI.py", Formater="TUI")
55     print("#===============================================================================")
56     #
57     print("#=== Restitution en fichier SCD ================================================")
58     # print(case.dump(FileName=base_file+"_SCD.py", Formater="SCD"))
59     case.dump(FileName=base_file+"_SCD.py", Formater="SCD")
60     print("#===============================================================================")
61     #
62     #   print("#=== Restitution en fichier YACS ===============================================")
63     #   # print(case.dump(FileName=base_file+"_YACS.xml", Formater="YACS"))
64     #   case.dump(FileName=base_file+"_YACS.xml", Formater="YACS")
65     #   print("#===============================================================================")
66     #
67     print("")
68     cwd = os.getcwd()
69     for f in [
70         base_file+"_TUI.py",
71         base_file+"_SCD.py",
72         # base_file+"_YACS.xml",
73         ]:
74         if os.path.exists(os.path.abspath(cwd+"/"+f)):
75             print("#=== Fichier \"%s\" correctement généré"%f)
76             os.remove(os.path.abspath(cwd+"/"+f))
77         else:
78             raise ValueError("Fichier \"%s\" inexistant"%f)
79     print("")
80     #
81     return case.get("Analysis")[-1]
82
83 # ==============================================================================
84 def assertAlmostEqualArrays(first, second, places=7, msg=None, delta=None):
85     "Compare two vectors, like unittest.assertAlmostEqual"
86     import numpy
87     if msg is not None:
88         print(msg)
89     if delta is not None:
90         if ( (numpy.asarray(first) - numpy.asarray(second)) > float(delta) ).any():
91             raise AssertionError("%s != %s within %s places"%(first,second,delta))
92     else:
93         if ( (numpy.asarray(first) - numpy.asarray(second)) > 10**(-int(places)) ).any():
94             raise AssertionError("%s != %s within %i places"%(first,second,places))
95     return max(abs(numpy.asarray(first) - numpy.asarray(second)))
96
97 # ==============================================================================
98 if __name__ == "__main__":
99     print('\n AUTODIAGNOSTIC\n')
100     print("""Exemple de la doc :
101
102     Cas-test vérifiant les conversions
103     ++++++++++++++++++++++++++++++++++
104 """)
105     xa = test1()
106     ecart = assertAlmostEqualArrays(xa, [0.25, 0.80, 0.95], places = 5)
107     #
108     print("  L'écart absolu maximal obtenu lors du test est de %.2e."%ecart)
109     print("  Les résultats obtenus sont corrects.")
110     print("")