Salome HOME
Updating version and copyright date information
[modules/adao.git] / doc / fr / ref_algorithm_DerivativeFreeOptimization.rst
1 ..
2    Copyright (C) 2008-2021 EDF R&D
3
4    This file is part of SALOME ADAO module.
5
6    This library is free software; you can redistribute it and/or
7    modify it under the terms of the GNU Lesser General Public
8    License as published by the Free Software Foundation; either
9    version 2.1 of the License, or (at your option) any later version.
10
11    This library is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14    Lesser General Public License for more details.
15
16    You should have received a copy of the GNU Lesser General Public
17    License along with this library; if not, write to the Free Software
18    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19
20    See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21
22    Author: Jean-Philippe Argaud, jean-philippe.argaud@edf.fr, EDF R&D
23
24 .. index:: single: DerivativeFreeOptimization
25 .. _section_ref_algorithm_DerivativeFreeOptimization:
26
27 Algorithme de calcul "*DerivativeFreeOptimization*"
28 ---------------------------------------------------
29
30 .. ------------------------------------ ..
31 .. include:: snippets/Header2Algo01.rst
32
33 Cet algorithme réalise une estimation d'état d'un système par minimisation
34 d'une fonctionnelle d'écart :math:`J` sans gradient. C'est une méthode qui
35 n'utilise pas les dérivées de la fonctionnelle d'écart. Elle entre, par
36 exemple, dans la même catégorie que
37 l':ref:`section_ref_algorithm_ParticleSwarmOptimization`,
38 l':ref:`section_ref_algorithm_DifferentialEvolution` ou
39 l':ref:`section_ref_algorithm_TabuSearch`.
40
41 C'est une méthode d'optimisation permettant la recherche du minimum global d'une
42 fonctionnelle d'erreur :math:`J` quelconque de type :math:`L^1`, :math:`L^2` ou
43 :math:`L^{\infty}`, avec ou sans pondérations. La fonctionnelle d'erreur par
44 défaut est celle de moindres carrés pondérés augmentés, classiquement utilisée
45 en assimilation de données.
46
47 .. ------------------------------------ ..
48 .. include:: snippets/Header2Algo02.rst
49
50 .. include:: snippets/Background.rst
51
52 .. include:: snippets/BackgroundError.rst
53
54 .. include:: snippets/Observation.rst
55
56 .. include:: snippets/ObservationError.rst
57
58 .. include:: snippets/ObservationOperator.rst
59
60 .. ------------------------------------ ..
61 .. include:: snippets/Header2Algo03AdOp.rst
62
63 .. include:: snippets/Minimizer_DFO.rst
64
65 .. include:: snippets/BoundsWithNone.rst
66
67 .. include:: snippets/MaximumNumberOfSteps.rst
68
69 .. include:: snippets/MaximumNumberOfFunctionEvaluations.rst
70
71 .. include:: snippets/StateVariationTolerance.rst
72
73 .. include:: snippets/CostDecrementTolerance.rst
74
75 .. include:: snippets/QualityCriterion.rst
76
77 StoreSupplementaryCalculations
78   .. index:: single: StoreSupplementaryCalculations
79
80   *Liste de noms*. Cette liste indique les noms des variables supplémentaires
81   qui peuvent être disponibles au cours du déroulement ou à la fin de
82   l'algorithme, si elles sont initialement demandées par l'utilisateur. Cela
83   implique potentiellement des calculs ou du stockage coûteux. La valeur par
84   défaut est une liste vide, aucune de ces variables n'étant calculée et
85   stockée par défaut sauf les variables inconditionnelles. Les noms possibles
86   sont dans la liste suivante : [
87   "Analysis",
88   "BMA",
89   "CostFunctionJ",
90   "CostFunctionJb",
91   "CostFunctionJo",
92   "CostFunctionJAtCurrentOptimum",
93   "CostFunctionJbAtCurrentOptimum",
94   "CostFunctionJoAtCurrentOptimum",
95   "CurrentIterationNumber",
96   "CurrentOptimum",
97   "CurrentState",
98   "IndexOfOptimum",
99   "Innovation",
100   "InnovationAtCurrentState",
101   "OMA",
102   "OMB",
103   "SimulatedObservationAtBackground",
104   "SimulatedObservationAtCurrentOptimum",
105   "SimulatedObservationAtCurrentState",
106   "SimulatedObservationAtOptimum",
107   ].
108
109   Exemple :
110   ``{"StoreSupplementaryCalculations":["BMA", "CurrentState"]}``
111
112 .. ------------------------------------ ..
113 .. include:: snippets/Header2Algo04.rst
114
115 .. include:: snippets/Analysis.rst
116
117 .. include:: snippets/CostFunctionJ.rst
118
119 .. include:: snippets/CostFunctionJb.rst
120
121 .. include:: snippets/CostFunctionJo.rst
122
123 .. include:: snippets/CurrentState.rst
124
125 .. ------------------------------------ ..
126 .. include:: snippets/Header2Algo05.rst
127
128 .. include:: snippets/Analysis.rst
129
130 .. include:: snippets/BMA.rst
131
132 .. include:: snippets/CostFunctionJ.rst
133
134 .. include:: snippets/CostFunctionJb.rst
135
136 .. include:: snippets/CostFunctionJo.rst
137
138 .. include:: snippets/CostFunctionJAtCurrentOptimum.rst
139
140 .. include:: snippets/CostFunctionJbAtCurrentOptimum.rst
141
142 .. include:: snippets/CostFunctionJoAtCurrentOptimum.rst
143
144 .. include:: snippets/CurrentIterationNumber.rst
145
146 .. include:: snippets/CurrentOptimum.rst
147
148 .. include:: snippets/CurrentState.rst
149
150 .. include:: snippets/IndexOfOptimum.rst
151
152 .. include:: snippets/Innovation.rst
153
154 .. include:: snippets/InnovationAtCurrentState.rst
155
156 .. include:: snippets/OMA.rst
157
158 .. include:: snippets/OMB.rst
159
160 .. include:: snippets/SimulatedObservationAtBackground.rst
161
162 .. include:: snippets/SimulatedObservationAtCurrentOptimum.rst
163
164 .. include:: snippets/SimulatedObservationAtCurrentState.rst
165
166 .. include:: snippets/SimulatedObservationAtOptimum.rst
167
168 .. ------------------------------------ ..
169 .. include:: snippets/Header2Algo06.rst
170
171 - :ref:`section_ref_algorithm_ParticleSwarmOptimization`
172 - :ref:`section_ref_algorithm_DifferentialEvolution`
173 - :ref:`section_ref_algorithm_TabuSearch`
174
175 .. ------------------------------------ ..
176 .. include:: snippets/Header2Algo07.rst
177
178 - [Johnson08]_
179 - [Nelder65]_
180 - [Powell64]_
181 - [Powell94]_
182 - [Powell98]_
183 - [Powell04]_
184 - [Powell07]_
185 - [Powell09]_
186 - [Rowan90]_