]> SALOME platform Git repositories - modules/adao.git/blob - src/daComposant/daAlgorithms/MeasurementsOptimalPositioningTask.py
Salome HOME
Minor documentation and code review corrections (32)
[modules/adao.git] / src / daComposant / daAlgorithms / MeasurementsOptimalPositioningTask.py
1 # -*- coding: utf-8 -*-
2 #
3 # Copyright (C) 2008-2022 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
23 import numpy
24 from daCore import BasicObjects
25 from daAlgorithms.Atoms import ecweim
26
27 # ==============================================================================
28 class ElementaryAlgorithm(BasicObjects.Algorithm):
29     def __init__(self):
30         BasicObjects.Algorithm.__init__(self, "MEASUREMENTSOPTIMALPOSITIONING")
31         self.defineRequiredParameter(
32             name     = "Variant",
33             default  = "PositioningBylcEIM",
34             typecast = str,
35             message  = "Variant ou formulation de la méthode",
36             listval  = [
37                 "PositioningByEIM",
38                 "PositioningBylcEIM",
39                 ],
40             )
41         self.defineRequiredParameter(
42             name     = "EnsembleOfSnapshots",
43             default  = [],
44             typecast = numpy.array,
45             message  = "Ensemble de vecteurs d'état physique (snapshots), 1 état par colonne",
46             )
47         self.defineRequiredParameter(
48             name     = "MaximumNumberOfLocations",
49             default  = 1,
50             typecast = int,
51             message  = "Nombre maximal de positions",
52             minval   = 0,
53             )
54         self.defineRequiredParameter(
55             name     = "ExcludeLocations",
56             default  = [],
57             typecast = tuple,
58             message  = "Liste des positions exclues selon la numérotation interne d'un snapshot",
59             minval   = -1,
60             )
61         self.defineRequiredParameter(
62             name     = "ErrorNorm",
63             default  = "L2",
64             typecast = str,
65             message  = "Norme d'erreur utilisée pour le critère d'optimalité des positions",
66             listval  = ["L2", "Linf"]
67             )
68         self.defineRequiredParameter(
69             name     = "ErrorNormTolerance",
70             default  = 1.e-7,
71             typecast = float,
72             message  = "Valeur limite inférieure du critère d'optimalité forçant l'arrêt",
73             minval   = 0.,
74             )
75         self.defineRequiredParameter(
76             name     = "StoreSupplementaryCalculations",
77             default  = [],
78             typecast = tuple,
79             message  = "Liste de calculs supplémentaires à stocker et/ou effectuer",
80             listval  = [
81                 "OptimalPoints",
82                 "ReducedBasis",
83                 "Residus",
84                 ]
85             )
86         self.requireInputArguments(
87             mandatory= (),
88             optional = ("Xb", "HO"),
89             )
90         self.setAttributes(tags=(
91             "Reduction",
92             ))
93
94     def run(self, Xb=None, Y=None, U=None, HO=None, EM=None, CM=None, R=None, B=None, Q=None, Parameters=None):
95         self._pre_run(Parameters, Xb, Y, U, HO, EM, CM, R, B, Q)
96         #
97         #--------------------------
98         if   self._parameters["Variant"] == "PositioningBylcEIM":
99             if len(self._parameters["EnsembleOfSnapshots"]) > 0:
100                 ecweim.EIM_offline(self)
101             else:
102                 raise ValueError("Snapshots have to be given in order to launch the positionning analysis")
103         #
104         elif self._parameters["Variant"] == "PositioningByEIM":
105             if len(self._parameters["EnsembleOfSnapshots"]) > 0:
106                 ecweim.EIM_offline(self)
107             else:
108                 raise ValueError("Snapshots have to be given in order to launch the positionning analysis")
109         #
110         #--------------------------
111         else:
112             raise ValueError("Error in Variant name: %s"%self._parameters["Variant"])
113         #
114         self._post_run(HO)
115         return 0
116
117 # ==============================================================================
118 if __name__ == "__main__":
119     print('\n AUTODIAGNOSTIC\n')