]> SALOME platform Git repositories - modules/adao.git/blob - src/daComposant/daAlgorithms/LinearLeastSquares.py
Salome HOME
Minor modification of debug information
[modules/adao.git] / src / daComposant / daAlgorithms / LinearLeastSquares.py
1 #-*-coding:iso-8859-1-*-
2 #
3 #  Copyright (C) 2008-2014 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 logging
24 from daCore import BasicObjects
25 import numpy
26
27 # ==============================================================================
28 class ElementaryAlgorithm(BasicObjects.Algorithm):
29     def __init__(self):
30         BasicObjects.Algorithm.__init__(self, "LINEARLEASTSQUARES")
31         self.defineRequiredParameter(
32             name     = "StoreInternalVariables",
33             default  = False,
34             typecast = bool,
35             message  = "Stockage des variables internes ou intermédiaires du calcul",
36             )
37         self.defineRequiredParameter(
38             name     = "StoreSupplementaryCalculations",
39             default  = [],
40             typecast = tuple,
41             message  = "Liste de calculs supplémentaires à stocker et/ou effectuer",
42             listval  = ["OMA"]
43             )
44
45     def run(self, Xb=None, Y=None, U=None, HO=None, EM=None, CM=None, R=None, B=None, Q=None, Parameters=None):
46         self._pre_run()
47         #
48         # Paramètres de pilotage
49         # ----------------------
50         self.setParameters(Parameters)
51         #
52         # Opérateur d'observation
53         # -----------------------
54         Hm = HO["Tangent"].asMatrix(None)
55         Hm = Hm.reshape(Y.size,-1) # ADAO & check shape
56         Ha = HO["Adjoint"].asMatrix(None)
57         Ha = Ha.reshape(-1,Y.size) # ADAO & check shape
58         #
59         RI = R.getI()
60         #
61         # Calcul de la matrice de gain et de l'analyse
62         # --------------------------------------------
63         K = (Ha * RI * Hm).I * Ha * RI
64         Xa =  K * Y
65         self.StoredVariables["Analysis"].store( Xa.A1 )
66         #
67         # Calcul de la fonction coût
68         # --------------------------
69         if self._parameters["StoreInternalVariables"] or "OMA" in self._parameters["StoreSupplementaryCalculations"]:
70             oma = Y - Hm * Xa
71         if self._parameters["StoreInternalVariables"]:
72             Jb  = 0.
73             Jo  = 0.5 * oma.T * RI * oma
74             J   = float( Jb ) + float( Jo )
75             self.StoredVariables["CostFunctionJb"].store( Jb )
76             self.StoredVariables["CostFunctionJo"].store( Jo )
77             self.StoredVariables["CostFunctionJ" ].store( J )
78         #
79         # Calculs et/ou stockages supplémentaires
80         # ---------------------------------------
81         if "OMA" in self._parameters["StoreSupplementaryCalculations"]:
82             self.StoredVariables["OMA"].store( numpy.ravel(oma) )
83         #
84         self._post_run(HO)
85         return 0
86
87 # ==============================================================================
88 if __name__ == "__main__":
89     print '\n AUTODIAGNOSTIC \n'