Salome HOME
5b1deee66f60ae0b436244e4c70ff1fc8ae2aa05
[modules/adao.git] / src / daComposant / daAlgorithms / ExtendedBlue.py
1 # -*- coding: utf-8 -*-
2 #
3 # Copyright (C) 2008-2021 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, NumericObjects
25 import numpy
26
27 # ==============================================================================
28 class ElementaryAlgorithm(BasicObjects.Algorithm):
29     def __init__(self):
30         BasicObjects.Algorithm.__init__(self, "EXTENDEDBLUE")
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  = [
43                 "Analysis",
44                 "APosterioriCorrelations",
45                 "APosterioriCovariance",
46                 "APosterioriStandardDeviations",
47                 "APosterioriVariances",
48                 "BMA",
49                 "CostFunctionJ",
50                 "CostFunctionJAtCurrentOptimum",
51                 "CostFunctionJb",
52                 "CostFunctionJbAtCurrentOptimum",
53                 "CostFunctionJo",
54                 "CostFunctionJoAtCurrentOptimum",
55                 "CurrentOptimum",
56                 "CurrentState",
57                 "Innovation",
58                 "MahalanobisConsistency",
59                 "OMA",
60                 "OMB",
61                 "SampledStateForQuantiles",
62                 "SigmaBck2",
63                 "SigmaObs2",
64                 "SimulatedObservationAtBackground",
65                 "SimulatedObservationAtCurrentOptimum",
66                 "SimulatedObservationAtCurrentState",
67                 "SimulatedObservationAtOptimum",
68                 "SimulationQuantiles",
69                 ]
70             )
71         self.defineRequiredParameter(
72             name     = "Quantiles",
73             default  = [],
74             typecast = tuple,
75             message  = "Liste des valeurs de quantiles",
76             minval   = 0.,
77             maxval   = 1.,
78             )
79         self.defineRequiredParameter(
80             name     = "SetSeed",
81             typecast = numpy.random.seed,
82             message  = "Graine fixée pour le générateur aléatoire",
83             )
84         self.defineRequiredParameter(
85             name     = "NumberOfSamplesForQuantiles",
86             default  = 100,
87             typecast = int,
88             message  = "Nombre d'échantillons simulés pour le calcul des quantiles",
89             minval   = 1,
90             )
91         self.defineRequiredParameter(
92             name     = "SimulationForQuantiles",
93             default  = "Linear",
94             typecast = str,
95             message  = "Type de simulation en estimation des quantiles",
96             listval  = ["Linear", "NonLinear"]
97             )
98         self.defineRequiredParameter( # Pas de type
99             name     = "StateBoundsForQuantiles",
100             message  = "Liste des paires de bornes pour les états utilisés en estimation des quantiles",
101             )
102         self.requireInputArguments(
103             mandatory= ("Xb", "Y", "HO", "R", "B"),
104             )
105         self.setAttributes(tags=(
106             "DataAssimilation",
107             "NonLinear",
108             "Filter",
109             ))
110
111     def run(self, Xb=None, Y=None, U=None, HO=None, EM=None, CM=None, R=None, B=None, Q=None, Parameters=None):
112         self._pre_run(Parameters, Xb, Y, U, HO, EM, CM, R, B, Q)
113         #
114         Hm = HO["Tangent"].asMatrix(Xb)
115         Hm = Hm.reshape(Y.size,Xb.size) # ADAO & check shape
116         Ha = HO["Adjoint"].asMatrix(Xb)
117         Ha = Ha.reshape(Xb.size,Y.size) # ADAO & check shape
118         H  = HO["Direct"].appliedTo
119         #
120         # Utilisation éventuelle d'un vecteur H(Xb) précalculé
121         # ----------------------------------------------------
122         if HO["AppliedInX"] is not None and "HXb" in HO["AppliedInX"]:
123             HXb = H( Xb, HO["AppliedInX"]["HXb"])
124         else:
125             HXb = H( Xb )
126         HXb = numpy.asmatrix(numpy.ravel( HXb )).T
127         if Y.size != HXb.size:
128             raise ValueError("The size %i of observations Y and %i of observed calculation H(X) are different, they have to be identical."%(Y.size,HXb.size))
129         if max(Y.shape) != max(HXb.shape):
130             raise ValueError("The shapes %s of observations Y and %s of observed calculation H(X) are different, they have to be identical."%(Y.shape,HXb.shape))
131         #
132         # Précalcul des inversions de B et R
133         # ----------------------------------
134         BI = B.getI()
135         RI = R.getI()
136         #
137         # Calcul de l'innovation
138         # ----------------------
139         d  = Y - HXb
140         #
141         # Calcul de la matrice de gain et de l'analyse
142         # --------------------------------------------
143         if Y.size <= Xb.size:
144             _A = R + numpy.dot(Hm, B * Ha)
145             _u = numpy.linalg.solve( _A , d )
146             Xa = Xb + B * Ha * _u
147         else:
148             _A = BI + numpy.dot(Ha, RI * Hm)
149             _u = numpy.linalg.solve( _A , numpy.dot(Ha, RI * d) )
150             Xa = Xb + _u
151         self.StoredVariables["Analysis"].store( Xa.A1 )
152         #
153         # Calcul de la fonction coût
154         # --------------------------
155         if self._parameters["StoreInternalVariables"] or \
156             self._toStore("CostFunctionJ")  or self._toStore("CostFunctionJAtCurrentOptimum") or \
157             self._toStore("CostFunctionJb") or self._toStore("CostFunctionJbAtCurrentOptimum") or \
158             self._toStore("CostFunctionJo") or self._toStore("CostFunctionJoAtCurrentOptimum") or \
159             self._toStore("OMA") or \
160             self._toStore("SigmaObs2") or \
161             self._toStore("MahalanobisConsistency") or \
162             self._toStore("SimulatedObservationAtCurrentOptimum") or \
163             self._toStore("SimulatedObservationAtCurrentState") or \
164             self._toStore("SimulatedObservationAtOptimum") or \
165             self._toStore("SimulationQuantiles"):
166             HXa  = numpy.matrix(numpy.ravel( H( Xa ) )).T
167             oma = Y - HXa
168         if self._parameters["StoreInternalVariables"] or \
169             self._toStore("CostFunctionJ")  or self._toStore("CostFunctionJAtCurrentOptimum") or \
170             self._toStore("CostFunctionJb") or self._toStore("CostFunctionJbAtCurrentOptimum") or \
171             self._toStore("CostFunctionJo") or self._toStore("CostFunctionJoAtCurrentOptimum") or \
172             self._toStore("MahalanobisConsistency"):
173             Jb  = float( 0.5 * (Xa - Xb).T * BI * (Xa - Xb) )
174             Jo  = float( 0.5 * oma.T * RI * oma )
175             J   = Jb + Jo
176             self.StoredVariables["CostFunctionJb"].store( Jb )
177             self.StoredVariables["CostFunctionJo"].store( Jo )
178             self.StoredVariables["CostFunctionJ" ].store( J )
179             self.StoredVariables["CostFunctionJbAtCurrentOptimum"].store( Jb )
180             self.StoredVariables["CostFunctionJoAtCurrentOptimum"].store( Jo )
181             self.StoredVariables["CostFunctionJAtCurrentOptimum" ].store( J )
182         #
183         # Calcul de la covariance d'analyse
184         # ---------------------------------
185         if self._toStore("APosterioriCovariance") or \
186             self._toStore("SimulationQuantiles"):
187             if   (Y.size <= Xb.size): K  = B * Ha * (R + numpy.dot(Hm, B * Ha)).I
188             elif (Y.size >  Xb.size): K = (BI + numpy.dot(Ha, RI * Hm)).I * Ha * RI
189             A = B - K * Hm * B
190             if min(A.shape) != max(A.shape):
191                 raise ValueError("The %s a posteriori covariance matrix A is of shape %s, despites it has to be a squared matrix. There is an error in the observation operator, please check it."%(self._name,str(A.shape)))
192             if (numpy.diag(A) < 0).any():
193                 raise ValueError("The %s a posteriori covariance matrix A has at least one negative value on its diagonal. There is an error in the observation operator, please check it."%(self._name,))
194             if logging.getLogger().level < logging.WARNING: # La verification n'a lieu qu'en debug
195                 try:
196                     L = numpy.linalg.cholesky( A )
197                 except:
198                     raise ValueError("The %s a posteriori covariance matrix A is not symmetric positive-definite. Please check your a priori covariances and your observation operator."%(self._name,))
199             self.StoredVariables["APosterioriCovariance"].store( A )
200         #
201         # Calculs et/ou stockages supplémentaires
202         # ---------------------------------------
203         if self._parameters["StoreInternalVariables"] or self._toStore("CurrentState"):
204             self.StoredVariables["CurrentState"].store( numpy.ravel(Xa) )
205         if self._toStore("CurrentOptimum"):
206             self.StoredVariables["CurrentOptimum"].store( numpy.ravel(Xa) )
207         if self._toStore("Innovation"):
208             self.StoredVariables["Innovation"].store( numpy.ravel(d) )
209         if self._toStore("BMA"):
210             self.StoredVariables["BMA"].store( numpy.ravel(Xb) - numpy.ravel(Xa) )
211         if self._toStore("OMA"):
212             self.StoredVariables["OMA"].store( numpy.ravel(oma) )
213         if self._toStore("OMB"):
214             self.StoredVariables["OMB"].store( numpy.ravel(d) )
215         if self._toStore("SigmaObs2"):
216             TraceR = R.trace(Y.size)
217             self.StoredVariables["SigmaObs2"].store( float( (d.T * (numpy.asmatrix(numpy.ravel(oma)).T)) ) / TraceR )
218         if self._toStore("SigmaBck2"):
219             self.StoredVariables["SigmaBck2"].store( float( (d.T * Hm * (Xa - Xb))/(Hm * B * Hm.T).trace() ) )
220         if self._toStore("MahalanobisConsistency"):
221             self.StoredVariables["MahalanobisConsistency"].store( float( 2.*J/d.size ) )
222         if self._toStore("SimulationQuantiles"):
223             HtM  = HO["Tangent"].asMatrix(ValueForMethodForm = Xa)
224             HtM  = HtM.reshape(Y.size,Xa.size) # ADAO & check shape
225             NumericObjects.QuantilesEstimations(self, A, Xa, HXa, H, HtM)
226         if self._toStore("SimulatedObservationAtBackground"):
227             self.StoredVariables["SimulatedObservationAtBackground"].store( numpy.ravel(HXb) )
228         if self._toStore("SimulatedObservationAtCurrentState"):
229             self.StoredVariables["SimulatedObservationAtCurrentState"].store( numpy.ravel(HXa) )
230         if self._toStore("SimulatedObservationAtCurrentOptimum"):
231             self.StoredVariables["SimulatedObservationAtCurrentOptimum"].store( numpy.ravel(HXa) )
232         if self._toStore("SimulatedObservationAtOptimum"):
233             self.StoredVariables["SimulatedObservationAtOptimum"].store( numpy.ravel(HXa) )
234         #
235         self._post_run(HO)
236         return 0
237
238 # ==============================================================================
239 if __name__ == "__main__":
240     print('\n AUTODIAGNOSTIC\n')