Salome HOME
Minor corrections
[modules/adao.git] / resources / ADAOSchemaCatalog.xml
1 <?xml version='1.0' encoding='utf-8' ?>
2 <!--
3   Copyright (C) 2008-2019 EDF R&D
4
5   This file is part of SALOME ADAO module
6
7   This library is free software; you can redistribute it and/or
8   modify it under the terms of the GNU Lesser General Public
9   License as published by the Free Software Foundation; either
10   version 2.1 of the License.
11
12   This library is distributed in the hope that it will be useful,
13   but WITHOUT ANY WARRANTY; without even the implied warranty of
14   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15   Lesser General Public License for more details.
16
17   You should have received a copy of the GNU Lesser General Public
18   License along with this library; if not, write to the Free Software
19   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
20
21   See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
22
23   Author: Jean-Philippe Argaud, jean-philippe.argaud@edf.fr, EDF R&D
24 -->
25 <proc>
26
27   <objref name="computeAD" id="python:computeAD:1.0">
28     <base>pyobj</base>
29   </objref>
30
31   <!-- Types for parametric computations -->
32   <!-- TODO On devrait pouvoir le lire depuis le KERNEL !!!-->
33   <type name="long" kind="int"/>
34   <struct name="SALOME_TYPES/Parameter">
35     <member type="string" name="name"></member>
36     <member type="string" name="value"></member>
37   </struct>
38   <sequence content="SALOME_TYPES/Parameter" name="SALOME_TYPES/ParameterList"></sequence>
39   <sequence content="double" name="SALOME_TYPES/Variable"></sequence>
40   <sequence content="SALOME_TYPES/Variable" name="SALOME_TYPES/VariableSequence"></sequence>
41   <sequence content="SALOME_TYPES/VariableSequence" name="SALOME_TYPES/StateSequence"></sequence>
42   <sequence content="SALOME_TYPES/StateSequence" name="SALOME_TYPES/TimeSequence"></sequence>
43   <sequence content="string" name="SALOME_TYPES/VarList"></sequence>
44   <struct name="SALOME_TYPES/ParametricInput">
45     <member type="SALOME_TYPES/VarList" name="inputVarList"></member>
46     <member type="SALOME_TYPES/VarList" name="outputVarList"></member>
47     <member type="SALOME_TYPES/TimeSequence" name="inputValues"></member>
48     <member type="SALOME_TYPES/ParameterList" name="specificParameters"></member>
49   </struct>
50   <struct name="SALOME_TYPES/ParametricOutput">
51     <member type="SALOME_TYPES/TimeSequence" name="outputValues"></member>
52     <member type="SALOME_TYPES/ParameterList" name="specificOutputInfos"></member>
53     <member type="long" name="returnCode"></member>
54     <member type="string" name="errorMessage"></member>
55   </struct>
56
57
58   <inline name="CreateAssimilationStudy">
59     <script><code>
60
61 <![CDATA[
62 import sys, numpy, logging
63 logging.debug("CREATE YI Entering in CreateAssimilationStudy")
64 print("Entering in the assimilation study")
65 print("Name is set to........:", Name)
66 print("Algorithm is set to...:", Algorithm)
67
68 try:
69     # Create Assimilation study
70     if sys.version_info.major > 2: import adao
71     from daYacsIntegration.daStudy import *
72     assim_study = daStudy(Name, Algorithm, Debug)
73
74     logging.debug("CREATE YI Data entered are:")
75
76     # Algorithm parameters
77     if "AlgorithmParameters" in locals():
78       logging.debug("CREATE YI AlgorithmParameters is %s"%AlgorithmParameters)
79       assim_study.setYIAlgorithmParameters(AlgorithmParameters)
80
81     # Background
82     if "Background" in locals():
83       logging.debug("CREATE YI Background is set")
84       logging.debug("CREATE YI BackgroundType is %s"%BackgroundType)
85       logging.debug("CREATE YI BackgroundStored is %s"%BackgroundStored)
86       assim_study.setYIBackgroundType(BackgroundType)
87       assim_study.setYIBackgroundStored(BackgroundStored)
88       assim_study.setYIBackground(Background)
89
90     # CheckingPoint
91     if "CheckingPoint" in locals():
92       logging.debug("CREATE YI CheckingPoint is set")
93       logging.debug("CREATE YI CheckingPointType is %s"%CheckingPointType)
94       logging.debug("CREATE YI CheckingPointStored is %s"%CheckingPointStored)
95       assim_study.setYICheckingPointType(CheckingPointType)
96       assim_study.setYICheckingPointStored(CheckingPointStored)
97       assim_study.setYICheckingPoint(CheckingPoint)
98
99     # ControlInput
100     if "ControlInput" in locals():
101       logging.debug("CREATE YI ControlInput is set")
102       logging.debug("CREATE YI ControlInputType is %s"%ControlInputType)
103       logging.debug("CREATE YI ControlInputStored is %s"%ControlInputStored)
104       assim_study.setYIControlInputType(ControlInputType)
105       assim_study.setYIControlInputStored(ControlInputStored)
106       assim_study.setYIControlInput(ControlInput)
107
108     # Observation
109     if "Observation" in locals():
110       logging.debug("CREATE YI Observation is set")
111       logging.debug("CREATE YI ObservationType is %s"%ObservationType)
112       logging.debug("CREATE YI ObservationStored is %s"%ObservationStored)
113       assim_study.setYIObservationType(ObservationType)
114       assim_study.setYIObservationStored(ObservationStored)
115       assim_study.setYIObservation(Observation)
116
117     # BackgroundError
118     if "BackgroundError" in locals():
119       logging.debug("CREATE YI BackgroundError is set")
120       logging.debug("CREATE YI BackgroundErrorType is %s"%BackgroundErrorType)
121       logging.debug("CREATE YI BackgroundErrorStored is %s"%BackgroundErrorStored)
122       assim_study.setYIBackgroundErrorType(BackgroundErrorType)
123       assim_study.setYIBackgroundErrorStored(BackgroundErrorStored)
124       assim_study.setYIBackgroundError(BackgroundError)
125
126     # ObservationError
127     if "ObservationError" in locals():
128       logging.debug("CREATE YI ObservationError is set")
129       logging.debug("CREATE YI ObservationErrorType is %s"%ObservationErrorType)
130       logging.debug("CREATE YI ObservationErrorStored is %s"%ObservationErrorStored)
131       assim_study.setYIObservationErrorType(ObservationErrorType)
132       assim_study.setYIObservationErrorStored(ObservationErrorStored)
133       assim_study.setYIObservationError(ObservationError)
134
135     # EvolutionError
136     if "EvolutionError" in locals():
137       logging.debug("CREATE YI EvolutionError is set")
138       logging.debug("CREATE YI EvolutionErrorType is %s"%EvolutionErrorType)
139       logging.debug("CREATE YI EvolutionErrorStored is %s"%EvolutionErrorStored)
140       assim_study.setYIEvolutionErrorType(EvolutionErrorType)
141       assim_study.setYIEvolutionErrorStored(EvolutionErrorStored)
142       assim_study.setYIEvolutionError(EvolutionError)
143
144     # ObservationOperator
145     ObservationOperatorOk = 0
146     if "ObservationOperator" in locals():
147       logging.debug("CREATE YI ObservationOperator is set")
148       logging.debug("CREATE YI ObservationOperatorType is %s"%ObservationOperatorType)
149       assim_study.setYIObservationOperatorType("Matrix", ObservationOperatorType)
150       assim_study.setYIObservationOperator("Matrix", ObservationOperator)
151       ObservationOperatorOk = 1
152
153     if ObservationOperatorOk == 0:
154       if "ObservationOperatorDirect" in locals():
155         logging.debug("CREATE YI ObservationOperatorDirect is %s"%ObservationOperatorDirect)
156         assim_study.setYIObservationOperatorType("Direct", "Function")
157         assim_study.setYIObservationOperator("Direct", ObservationOperatorDirect)
158       if "ObservationOperatorTangent" in locals():
159         logging.debug("CREATE YI ObservationOperatorTangent is %s"%ObservationOperatorTangent)
160         assim_study.setYIObservationOperatorType("Tangent", "Function")
161         assim_study.setYIObservationOperator("Tangent", ObservationOperatorTangent)
162       if "ObservationOperatorAdjoint" in locals():
163         logging.debug("CREATE YI ObservationOperatorAdjoint is %s"%ObservationOperatorAdjoint)
164         assim_study.setYIObservationOperatorType("Adjoint", "Function")
165         assim_study.setYIObservationOperator("Adjoint", ObservationOperatorAdjoint)
166
167     # EvolutionModel
168     EvolutionModelOk = 0
169     if "EvolutionModel" in locals():
170       logging.debug("CREATE YI EvolutionModel is set")
171       logging.debug("CREATE YI EvolutionModelType is %s"%EvolutionModelType)
172       assim_study.setYIEvolutionModelType("Matrix", EvolutionModelType)
173       assim_study.setYIEvolutionModel("Matrix", EvolutionModel)
174       EvolutionModelOk = 1
175
176     if EvolutionModelOk == 0:
177       if "EvolutionModelDirect" in locals():
178         logging.debug("CREATE YI EvolutionModelDirect is %s"%EvolutionModelDirect)
179         assim_study.setYIEvolutionModelType("Direct", "Function")
180         assim_study.setYIEvolutionModel("Direct", EvolutionModelDirect)
181       if "EvolutionModelTangent" in locals():
182         logging.debug("CREATE YI EvolutionModelTangent is %s"%EvolutionModelTangent)
183         assim_study.setYIEvolutionModelType("Tangent", "Function")
184         assim_study.setYIEvolutionModel("Tangent", EvolutionModelTangent)
185       if "EvolutionModelAdjoint" in locals():
186         logging.debug("CREATE YI EvolutionModelAdjoint is %s"%EvolutionModelAdjoint)
187         assim_study.setYIEvolutionModelType("Adjoint", "Function")
188         assim_study.setYIEvolutionModel("Adjoint", EvolutionModelAdjoint)
189
190     # Variables
191     for name, size in zip(InputVariablesNames, InputVariablesSizes):
192       assim_study.setYIInputVariable(name, size)
193     for name, size in zip(OutputVariablesNames, OutputVariablesSizes):
194       assim_study.setYIOutputVariable(name, size)
195
196     if has_observers:
197       logging.debug("CREATE YI Observers keys are %s"%observers.keys())
198       # Adding observers to the study
199       for observer_name in observers.keys():
200         scheduler = ""
201         info = ""
202         number = str(observers[observer_name]["number"])
203         if "scheduler" in observers[observer_name].keys():
204           scheduler = observers[observer_name]["scheduler"]
205         if "info" in observers[observer_name].keys():
206           info = observers[observer_name]["info"]
207         assim_study.addYIObserver(observer_name, scheduler, info, number)
208
209 except Exception as e:
210     if isinstance(e, SyntaxError): msg = "at %s: %s"%(e.offset, e.text)
211     else: msg = ""
212     raise ValueError("during execution, the following error occurs:\n\n%s %s\n\nSee also the potential messages, which can show the origin of the above error, in the launching terminal."%(str(e),msg))
213
214 Study = assim_study
215 ]]>
216
217 </code></script>
218     <inport name="Name" type="string"/>
219     <inport name="Algorithm" type="string"/>
220     <inport name="Debug" type="bool"/>
221     <inport name="InputVariablesNames" type="stringvec"/>
222     <inport name="InputVariablesSizes" type="intvec"/>
223     <inport name="OutputVariablesNames" type="stringvec"/>
224     <inport name="OutputVariablesSizes" type="intvec"/>
225     <inport name="has_observers" type="bool"/>
226     <inport name="observers" type="pyobj"/>
227     <outport name="Study" type="pyobj"/>
228   </inline>
229
230   <inline name="CreateNumpyMatrixFromString">
231     <script><code><![CDATA[
232 import numpy, logging
233 logging.debug("CREATE YI Entering in CreateNumpyMatrixFromString")
234 if (matrix_in_string.find("array")>-1) or (matrix_in_string.find("matrix")>-1):
235     matrix_in_string=matrix_in_string.replace("array","numpy.array")
236     matrix_in_string=matrix_in_string.replace("matrix","numpy.matrix")
237     exec("matrix="+matrix_in_string)
238     matrix = numpy.matrix(matrix)
239 else:
240     matrix_in_string=matrix_in_string.replace("'","").replace('"','')
241     matrix = numpy.matrix(matrix_in_string)
242 type = "Matrix"
243 logging.debug("CREATE YI Matrix is %s"%matrix)
244 ]]></code></script>
245     <inport name="matrix_in_string" type="string"/>
246     <outport name="matrix" type="pyobj"/>
247     <outport name="type" type="string"/>
248     <outport name="stored" type="bool"/>
249   </inline>
250
251   <inline name="CreateNumpyScalarSparseMatrixFromString">
252     <script><code><![CDATA[
253 import numpy, logging
254 logging.debug("CREATE YI Entering in CreateNumpyScalarSparseMatrixFromString")
255 if (matrix_in_string.find("array")>-1) or (matrix_in_string.find("matrix")>-1):
256     matrix_in_string=matrix_in_string.replace("array","numpy.array")
257     matrix_in_string=matrix_in_string.replace("matrix","numpy.matrix")
258     exec("matrix="+matrix_in_string)
259     matrix = numpy.matrix(matrix)
260 else:
261     matrix_in_string=matrix_in_string.replace("'","").replace('"','')
262     matrix = numpy.matrix(matrix_in_string)
263 type = "ScalarSparseMatrix"
264 logging.debug("CREATE YI ScalarSparseMatrix is %s"%matrix)
265 ]]></code></script>
266     <inport name="matrix_in_string" type="string"/>
267     <outport name="matrix" type="pyobj"/>
268     <outport name="type" type="string"/>
269     <outport name="stored" type="bool"/>
270   </inline>
271
272   <inline name="CreateNumpyDiagonalSparseMatrixFromString">
273     <script><code><![CDATA[
274 import numpy, logging
275 logging.debug("CREATE YI Entering in CreateNumpyDiagonalSparseMatrixFromString")
276 if (matrix_in_string.find("array")>-1) or (matrix_in_string.find("matrix")>-1):
277     matrix_in_string=matrix_in_string.replace("array","numpy.array")
278     matrix_in_string=matrix_in_string.replace("matrix","numpy.matrix")
279     exec("matrix="+matrix_in_string)
280     matrix = numpy.matrix(matrix)
281 else:
282     matrix_in_string=matrix_in_string.replace("'","").replace('"','')
283     matrix = numpy.matrix(matrix_in_string)
284 type = "DiagonalSparseMatrix"
285 logging.debug("CREATE YI DiagonalSparseMatrix is %s"%matrix)
286 ]]></code></script>
287     <inport name="matrix_in_string" type="string"/>
288     <outport name="matrix" type="pyobj"/>
289     <outport name="type" type="string"/>
290     <outport name="stored" type="bool"/>
291   </inline>
292
293   <inline name="CreateNumpyMatrixFromScript">
294     <script><code><![CDATA[
295 import logging, sys, os
296 logging.debug("CREATE YI Entering in CreateNumpyMatrixFromScript")
297 type = "Matrix"
298
299 # Get file path and filename
300 try:
301     if sys.path.count(studydir)==0 or (sys.path.count(studydir)>0 and sys.path.index(studydir)>0):
302         sys.path.insert(0,studydir)
303 except:
304     pass
305 filepath = os.path.dirname(script)
306 filename = os.path.basename(script)
307 module_name = os.path.splitext(filename)[0]
308 if sys.path.count(filepath)==0 or (sys.path.count(filepath)>0 and sys.path.index(filepath)>0):
309     sys.path.insert(0,filepath)
310
311 ]]></code></script>
312     <inport name="script" type="string"/>
313     <outport name="type" type="string"/>
314     <outport name="stored" type="bool"/>
315   </inline>
316
317   <inline name="CreateNumpyScalarSparseMatrixFromScript">
318     <script><code><![CDATA[
319 import logging, sys, os
320 logging.debug("CREATE YI Entering in CreateNumpyScalarSparseMatrixFromScript")
321 type = "ScalarSparseMatrix"
322
323 # Get file path and filename
324 try:
325     if sys.path.count(studydir)==0 or (sys.path.count(studydir)>0 and sys.path.index(studydir)>0):
326         sys.path.insert(0,studydir)
327 except:
328     pass
329 filepath = os.path.dirname(script)
330 filename = os.path.basename(script)
331 module_name = os.path.splitext(filename)[0]
332 if sys.path.count(filepath)==0 or (sys.path.count(filepath)>0 and sys.path.index(filepath)>0):
333     sys.path.insert(0,filepath)
334
335 ]]></code></script>
336     <inport name="script" type="string"/>
337     <outport name="type" type="string"/>
338     <outport name="stored" type="bool"/>
339   </inline>
340
341   <inline name="CreateNumpyDiagonalSparseMatrixFromScript">
342     <script><code><![CDATA[
343 import logging, sys, os
344 logging.debug("CREATE YI Entering in CreateNumpyDiagonalSparseMatrixFromScript")
345 type = "DiagonalSparseMatrix"
346
347 # Get file path and filename
348 try:
349     if sys.path.count(studydir)==0 or (sys.path.count(studydir)>0 and sys.path.index(studydir)>0):
350         sys.path.insert(0,studydir)
351 except:
352     pass
353 filepath = os.path.dirname(script)
354 filename = os.path.basename(script)
355 module_name = os.path.splitext(filename)[0]
356 if sys.path.count(filepath)==0 or (sys.path.count(filepath)>0 and sys.path.index(filepath)>0):
357     sys.path.insert(0,filepath)
358
359 ]]></code></script>
360     <inport name="script" type="string"/>
361     <outport name="type" type="string"/>
362     <outport name="stored" type="bool"/>
363   </inline>
364
365   <inline name="CreateNumpyVectorFromString">
366     <script><code><![CDATA[
367 import numpy, logging
368 logging.debug("CREATE YI Entering in CreateNumpyVectorFromString")
369 if (vector_in_string.find("array")>-1) or (vector_in_string.find("matrix")>-1):
370     vector_in_string=vector_in_string.replace("array","numpy.array")
371     vector_in_string=vector_in_string.replace("matrix","numpy.matrix")
372     exec("vector="+vector_in_string)
373     vector = numpy.matrix(vector)
374 else:
375     vector_in_string=vector_in_string.replace("'","").replace('"','')
376     vector = numpy.matrix(vector_in_string)
377 type = "Vector"
378 logging.debug("Vector is %s"%vector)
379 ]]></code></script>
380     <inport name="vector_in_string" type="string"/>
381     <outport name="vector" type="pyobj"/>
382     <outport name="type" type="string"/>
383     <outport name="stored" type="bool"/>
384   </inline>
385
386   <inline name="CreateNumpyVectorFromScript">
387     <script><code><![CDATA[
388 import logging, sys, os
389 logging.debug("CREATE YI Entering in CreateNumpyVectorFromScript")
390 type = "Vector"
391
392 # Get file path and filename
393 try:
394     if sys.path.count(studydir)==0 or (sys.path.count(studydir)>0 and sys.path.index(studydir)>0):
395         sys.path.insert(0,studydir)
396 except:
397     pass
398 filepath = os.path.dirname(script)
399 filename = os.path.basename(script)
400 module_name = os.path.splitext(filename)[0]
401 if sys.path.count(filepath)==0 or (sys.path.count(filepath)>0 and sys.path.index(filepath)>0):
402     sys.path.insert(0,filepath)
403
404 ]]></code></script>
405     <inport name="script" type="string"/>
406     <outport name="type" type="string"/>
407     <outport name="stored" type="bool"/>
408   </inline>
409
410   <inline name="CreateNumpyVectorFromDataFile">
411     <script><code><![CDATA[
412 import logging, sys, numpy
413 logging.debug("CREATE YI Entering in CreateNumpyVectorFromDataFile")
414 type = "Vector"
415
416 if sys.version_info.major > 2: import adao
417 from daCore.Interfaces import ImportFromFile as aif
418 vector = numpy.ravel( aif(script).getvalue(columns)[1] )
419 ]]></code></script>
420     <inport name="script" type="string"/>
421     <inport name="columns" type="stringvec"/>
422     <outport name="vector" type="pyobj"/>
423     <outport name="type" type="string"/>
424     <outport name="stored" type="bool"/>
425   </inline>
426
427   <inline name="CreateNumpyVectorSerieFromString">
428     <script><code><![CDATA[
429 import numpy, logging
430 logging.debug("CREATE YI Entering in CreateNumpyVectorSerieFromString")
431 # vector_in_list = eval(str(vector_in_string),{},{})
432 # vector = numpy.matrix(vector_in_list)
433 if (vector_in_string.find("array")>-1) or (vector_in_string.find("matrix")>-1):
434     vector_in_string=vector_in_string.replace("array","numpy.array")
435     vector_in_string=vector_in_string.replace("matrix","numpy.matrix")
436     exec("vector="+vector_in_string)
437     vector = numpy.array(vector)
438 else:
439     vector_in_string=vector_in_string.replace("'","").replace('"','')
440     vector_in_list = eval(str(vector_in_string),{},{})
441     vector = numpy.array(vector_in_list)
442 type = "VectorSerie"
443 logging.debug("VectorSerie is %s"%vector)
444 ]]></code></script>
445     <inport name="vector_in_string" type="string"/>
446     <outport name="vector" type="pyobj"/>
447     <outport name="type" type="string"/>
448     <outport name="stored" type="bool"/>
449   </inline>
450
451   <inline name="CreateNumpyVectorSerieFromScript">
452     <script><code><![CDATA[
453 import logging, sys, os
454 logging.debug("CREATE YI Entering in CreateNumpyVectorSerieFromScript")
455 type = "VectorSerie"
456
457 # Get file path and filename
458 try:
459     if sys.path.count(studydir)==0 or (sys.path.count(studydir)>0 and sys.path.index(studydir)>0):
460         sys.path.insert(0,studydir)
461 except:
462     pass
463 filepath = os.path.dirname(script)
464 filename = os.path.basename(script)
465 module_name = os.path.splitext(filename)[0]
466 if sys.path.count(filepath)==0 or (sys.path.count(filepath)>0 and sys.path.index(filepath)>0):
467     sys.path.insert(0,filepath)
468
469 ]]></code></script>
470     <inport name="script" type="string"/>
471     <outport name="type" type="string"/>
472     <outport name="stored" type="bool"/>
473   </inline>
474
475   <inline name="CreateNumpyVectorSerieFromDataFile">
476     <script><code><![CDATA[
477 import logging, sys, numpy
478 logging.debug("CREATE YI Entering in CreateNumpyVectorSerieFromDataFile")
479 type = "VectorSerie"
480
481 if sys.version_info.major > 2: import adao
482 from daCore.Interfaces import ImportFromFile as aif
483 if len(columns) == 0: columns = None
484 vector = numpy.transpose( aif(script).getvalue(columns)[1] )
485 ]]></code></script>
486     <inport name="script" type="string"/>
487     <inport name="columns" type="stringvec"/>
488     <outport name="vector" type="pyobj"/>
489     <outport name="type" type="string"/>
490     <outport name="stored" type="bool"/>
491   </inline>
492
493   <inline name="SimpleExecuteDirectAlgorithm">
494     <script><code><![CDATA[
495 import logging
496 logging.debug("EXECUTE Entering in SimpleExecuteDirectAlgorithm")
497 from daYacsIntegration.daStudy import *
498 ADD = Study.getResults()
499 ADD.analyze()
500 ]]></code></script>
501     <inport name="Study" type="pyobj"/>
502     <outport name="Study" type="pyobj"/>
503   </inline>
504
505   <inline name="SimpleUserAnalysis">
506     <script><code><![CDATA[
507 #-*- coding: utf-8 -*-
508 import sys, logging
509 logging.debug("TERMINATE Entering in SimpleUserAnalysis")
510 if sys.version_info.major < 3:
511     ADD = Study.getResults()
512 else:
513     ADD = Study
514 # User code is below
515
516 ]]></code></script>
517     <inport name="Study" type="pyobj"/>
518   </inline>
519
520   <inline name="FakeOptimizerLoopNode">
521     <script><code><![CDATA[
522 import logging
523 logging.debug("EXECUTE Entering in FakeOptimizerLoopNode")
524 result = None
525 ]]></code></script>
526     <inport name="computation" type="SALOME_TYPES/ParametricInput"/>
527     <outport name="result" type="SALOME_TYPES/ParametricOutput"/>
528   </inline>
529
530   <inline name="CreateDictFromString">
531     <script><code><![CDATA[
532 import logging, sys, os
533 logging.debug("CREATE YI Entering in CreateDictFromString")
534 dico = eval(dict_in_string)
535 ]]></code></script>
536     <inport name="dict_in_string" type="string"/>
537   </inline>
538
539   <inline name="CreateDictFromScript">
540     <script><code><![CDATA[
541 import logging, sys, os
542 logging.debug("CREATE YI Entering in CreateDictFromScript")
543
544 # Get file path and filename
545 try:
546     if sys.path.count(studydir)==0 or (sys.path.count(studydir)>0 and sys.path.index(studydir)>0):
547         sys.path.insert(0,studydir)
548 except:
549     pass
550 filepath = os.path.dirname(script)
551 filename = os.path.basename(script)
552 module_name = os.path.splitext(filename)[0]
553 if sys.path.count(filepath)==0 or (sys.path.count(filepath)>0 and sys.path.index(filepath)>0):
554     sys.path.insert(0,filepath)
555
556 ]]></code></script>
557     <inport name="script" type="string"/>
558   </inline>
559
560   <inline name="UserDataInitFromScript">
561     <script><code><![CDATA[
562 import logging, sys, os
563 logging.debug("CREATE YI Entering in UserDataInitFromScript")
564
565 # Get file path and filename
566 try:
567     if sys.path.count(studydir)==0 or (sys.path.count(studydir)>0 and sys.path.index(studydir)>0):
568         sys.path.insert(0,studydir)
569 except:
570     pass
571 filepath = os.path.dirname(script)
572 filename = os.path.basename(script)
573 module_name = os.path.splitext(filename)[0]
574 if sys.path.count(filepath)==0 or (sys.path.count(filepath)>0 and sys.path.index(filepath)>0):
575     sys.path.insert(0,filepath)
576
577 ]]></code></script>
578     <inport name="script" type="string"/>
579     <outport name="init_data" type="pyobj"/>
580   </inline>
581
582   <inline name="ReadForSwitchNode">
583     <script><code><![CDATA[import sys, logging, codecs, pickle
584 if sys.version_info.major > 2: import adao
585 def loads( data ):
586   return pickle.loads(codecs.decode(data.encode(), "base64"))
587 logging.debug("CREATE YI Entering in ReadForSwitchNode")
588 # logging.debug("       with input data : ",list(data["specificParameters"]))
589 switch_value = -1
590 for param in data["specificParameters"]:
591   # logging.debug("       ReadForSwitchNode specificParameters : ",param)
592   if param["name"] == "switch_value":
593     switch_value = int(loads(param["value"]))
594 logging.debug("       switching to value : "+str(switch_value))
595 ]]></code></script>
596     <inport name="data" type="SALOME_TYPES/ParametricInput"/>
597     <outport name="data" type="SALOME_TYPES/ParametricInput"/>
598     <outport name="switch_value" type="int"/>
599   </inline>
600
601   <inline name="ExtractDataNode">
602     <script><code><![CDATA[import sys, logging, codecs, pickle
603 if sys.version_info.major > 2: import adao
604 def loads( data ):
605   return pickle.loads(codecs.decode(data.encode(), "base64"))
606 logging.debug("TERMINATE Entering in ExtractData/Node")
607 from daCore.AssimilationStudy import AssimilationStudy
608 var = None
609 info = None
610 for param in data["specificParameters"]:
611   if param["name"] == "var":
612     var = loads(param["value"])
613   if param["name"] == "info":
614     info = loads(param["value"])
615 ]]></code></script>
616     <inport name="data" type="SALOME_TYPES/ParametricInput"/>
617     <outport name="var" type="pyobj"/>
618     <outport name="info" type="pyobj"/>
619   </inline>
620
621   <inline name="ObservationNodeString">
622     <script><code><![CDATA[]]></code></script>
623     <inport name="var" type="pyobj"/>
624     <inport name="info" type="pyobj"/>
625   </inline>
626
627   <inline name="ObservationNodeFile">
628     <script><code><![CDATA[with open(script, 'rb') as file: exec(file.read())]]></code></script>
629     <inport name="var"    type="pyobj"/>
630     <inport name="info"   type="pyobj"/>
631     <inport name="script" type="string"/>
632   </inline>
633
634   <inline name="EndObservationNode">
635     <script><code><![CDATA[
636 # Create a fake output object.
637 # An observer is always successful.
638 output = {}
639 output["outputValues"]        = [[[[]]]]
640 output["specificOutputInfos"] = []
641 output["returnCode"]          = 0
642 output["errorMessage"]        = ""
643 ]]></code></script>
644     <outport name="output" type="SALOME_TYPES/ParametricOutput"/>
645   </inline>
646
647   <inline name="SetObserversNode">
648     <script><code><![CDATA[
649 #print("Setting observers")
650 ]]></code></script>
651     <outport name="has_observers" type="bool"/>
652     <outport name="observers" type="pyobj"/>
653   </inline>
654 </proc>