Salome HOME
Documentation for sampling update and examples improvement
[modules/adao.git] / doc / en / ref_algorithm_EnsembleOfSimulationGenerationTask.rst
1 ..
2    Copyright (C) 2008-2023 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: EnsembleOfSimulationGenerationTask
25 .. index:: single: Génération d'ensemble de simulations
26 .. index:: single: Ensemble of simulations
27 .. index:: single: Ensemble of snapshots
28 .. index:: single: Simulations (Ensemble)
29 .. index:: single: Snapshots (Ensemble)
30 .. _section_ref_algorithm_EnsembleOfSimulationGenerationTask:
31
32 Task algorithm "*EnsembleOfSimulationGenerationTask*"
33 -----------------------------------------------------
34
35 .. ------------------------------------ ..
36 .. include:: snippets/Header2Algo00.rst
37
38 .. ------------------------------------ ..
39 .. include:: snippets/Header2Algo01.rst
40
41 This algorithm allows to generate a set of physical results, of simulation or
42 observation type, using the :math:`H` operator for a design of experiment of
43 the :math:`\mathbf{x}` parametric state space. The result of this algorithm is
44 a homogeneous collection of simulated vectors :math:`\mathbf{y}` (available
45 using the storable variable "*EnsembleOfSimulations*") corresponding directly
46 to the chosen homogeneous collection of state vectors :math:`\mathbf{x}`
47 (available using the storable variable "*EnsembleOfStates*").
48
49 The sampling of the states :math:`\mathbf{x}` can be given explicitly or under
50 form of hypercubes, explicit or sampled according to classic distributions, or
51 using Latin hypercube sampling (LHS). The computations are optimized according
52 to the computer resources available and the options requested by the user. You
53 can refer to the :ref:`section_ref_sampling_requirements` for an illustration
54 of sampling. Beware of the size of the hypercube (and then to the number of
55 computations) that can be reached, it can grow quickly to be quite large. When
56 a state is not observable, a *"NaN"* value is returned.
57
58 To be visible by the user while reducing the risk of storage difficulties, the
59 results of sampling or simulations has to be **explicitly** asked for using the
60 required variable.
61
62 The results obtained with this algorithm can be used to feed an
63 :ref:`section_ref_algorithm_MeasurementsOptimalPositioningTask`. In a
64 complementary way, and if the goal is to evaluate the calculation-measurement
65 error, an :ref:`section_ref_algorithm_SamplingTest` uses the same sampling
66 commands to establish a set of error functional values :math:`J` from
67 observations :math:`\mathbf{y}^o`.
68
69 .. ------------------------------------ ..
70 .. include:: snippets/Header2Algo02.rst
71
72 .. include:: snippets/CheckingPoint.rst
73
74 .. include:: snippets/ObservationOperator.rst
75
76 .. ------------------------------------ ..
77 .. include:: snippets/Header2Algo03Task.rst
78
79 .. include:: snippets/SampleAsExplicitHyperCube.rst
80
81 .. include:: snippets/SampleAsIndependantRandomVariables.rst
82
83 .. include:: snippets/SampleAsMinMaxLatinHyperCube.rst
84
85 .. include:: snippets/SampleAsMinMaxStepHyperCube.rst
86
87 .. include:: snippets/SampleAsnUplet.rst
88
89 .. include:: snippets/SetDebug.rst
90
91 .. include:: snippets/SetSeed.rst
92
93 StoreSupplementaryCalculations
94   .. index:: single: StoreSupplementaryCalculations
95
96   *List of names*. This list indicates the names of the supplementary
97   variables, that can be available during or at the end of the algorithm, if
98   they are initially required by the user. Their availability involves,
99   potentially, costly calculations or memory consumptions. The default is then
100   a void list, none of these variables being calculated and stored by default
101   (excepted the unconditional variables). The possible names are in the
102   following list (the detailed description of each named variable is given in
103   the following part of this specific algorithmic documentation, in the
104   sub-section "*Information and variables available at the end of the
105   algorithm*"): [
106   "EnsembleOfSimulations",
107   "EnsembleOfStates",
108   ].
109
110   Example :
111   ``{"StoreSupplementaryCalculations":["CurrentState", "Residu"]}``
112
113 .. ------------------------------------ ..
114 .. include:: snippets/Header2Algo04.rst
115
116 .. include:: snippets/EnsembleOfSimulations.rst
117
118 .. ------------------------------------ ..
119 .. include:: snippets/Header2Algo05.rst
120
121 .. include:: snippets/EnsembleOfSimulations.rst
122
123 .. include:: snippets/EnsembleOfStates.rst
124
125 .. ------------------------------------ ..
126 .. _section_ref_algorithm_EnsembleOfSimulationGenerationTask_examples:
127
128 .. include:: snippets/Header2Algo06.rst
129
130 - :ref:`section_ref_algorithm_FunctionTest`
131 - :ref:`section_ref_algorithm_ParallelFunctionTest`
132 - :ref:`section_ref_algorithm_MeasurementsOptimalPositioningTask`
133