]> SALOME platform Git repositories - modules/adao.git/commitdiff
Salome HOME
Updating documentation for module behavior
authorJean-Philippe ARGAUD <jean-philippe.argaud@edf.fr>
Sat, 1 Sep 2018 16:49:14 +0000 (18:49 +0200)
committerJean-Philippe ARGAUD <jean-philippe.argaud@edf.fr>
Sat, 1 Sep 2018 16:49:14 +0000 (18:49 +0200)
doc/en/advanced.rst
doc/en/tui.rst
doc/fr/advanced.rst
doc/fr/tui.rst

index 6a09ea1d3205171495153d7411a21ccd6296da50..bddb4d95d9f6a8e549b4e204f1c328508f1472a5 100644 (file)
@@ -217,7 +217,7 @@ the simple example::
     library(rPython)
     python.exec("
         from numpy import array
-        import adaoBuilder
+        from adao import adaoBuilder
         case = adaoBuilder.New()
         case.set( 'AlgorithmParameters', Algorithm='3DVAR' )
         case.set( 'Background',          Vector=[0, 1, 2] )
@@ -262,7 +262,7 @@ in a R variable. The other lines are identical. The example thus becomes::
     python.assign( "h",  h )
     python.exec("
         from numpy import array
-        import adaoBuilder
+        from adao import adaoBuilder
         case = adaoBuilder.New()
         case.set( 'AlgorithmParameters', Algorithm='3DVAR' )
         case.set( 'Background',          Vector=xb )
index ab2af916fae60f658bec5181d982f80f5dced0f2..aef68ed82c3b17f6d1ae9e56a172912ef59e1d23 100644 (file)
@@ -55,7 +55,7 @@ order to make the reading easier. The whole set of commands is the following
 one::
 
     from numpy import array, matrix
-    import adaoBuilder
+    from adao import adaoBuilder
     case = adaoBuilder.New()
     case.set( 'AlgorithmParameters', Algorithm='3DVAR' )
     case.set( 'Background',          Vector=[0, 1, 2] )
@@ -84,7 +84,7 @@ commands, the ``case`` object name of the ADAO TUI calculation case being let
 free to the user choice::
 
     from numpy import array, matrix
-    import adaoBuilder
+    from adao import adaoBuilder
     case = adaoBuilder.New()
 
 It is recommended to import by default the ``numpy`` module or some of its
@@ -273,7 +273,7 @@ its method "*New()*" as illustrated in the following lines (the ``case`` object
 name being let free to the user choice)::
 
     from numpy import array, matrix
-    import adaoBuilder
+    from adao import adaoBuilder
     case = adaoBuilder.New()
 
 It is recommended by default to always import the ``numpy`` module (or some of
@@ -619,7 +619,7 @@ observations by simulation in order to set a twin experiments case::
 The set of commands that can be used is the following::
 
     import numpy
-    import adaoBuilder
+    from adao import adaoBuilder
     #
     # Formatting entries
     # ------------------
index b18b29757f868f420f904e92d33af75f7efc001b..9991fb27594fa090549726ca50fd7a312c74a019 100644 (file)
@@ -229,7 +229,7 @@ directement issues de l'exemple simple::
     library(rPython)
     python.exec("
         from numpy import array
-        import adaoBuilder
+        from adao import adaoBuilder
         case = adaoBuilder.New()
         case.set( 'AlgorithmParameters', Algorithm='3DVAR' )
         case.set( 'Background',          Vector=[0, 1, 2] )
@@ -276,7 +276,7 @@ R aussi. Les autres lignes sont identiques. L'exemple devient ainsi::
     python.assign( "h",  h )
     python.exec("
         from numpy import array
-        import adaoBuilder
+        from adao import adaoBuilder
         case = adaoBuilder.New()
         case.set( 'AlgorithmParameters', Algorithm='3DVAR' )
         case.set( 'Background',          Vector=xb )
index f50e9de7f041c0173c3893f40fd2f3a46e951dd1..62fd7d56cac3a569dff3d55a16a63d670755c334 100644 (file)
@@ -56,7 +56,7 @@ corps du script pour faciliter la lecture. L'ensemble des commandes est le
 suivant::
 
     from numpy import array, matrix
-    import adaoBuilder
+    from adao import adaoBuilder
     case = adaoBuilder.New()
     case.set( 'AlgorithmParameters', Algorithm='3DVAR' )
     case.set( 'Background',          Vector=[0, 1, 2] )
@@ -85,7 +85,7 @@ le nom ``case`` de l'objet du cas de calcul TUI ADAO étant quelconque, au choix
 de l'utilisateur::
 
     from numpy import array, matrix
-    import adaoBuilder
+    from adao import adaoBuilder
     case = adaoBuilder.New()
 
 Il est recommandé d'importer par principe le module ``numpy`` ou ses
@@ -284,7 +284,7 @@ méthode "*New()*" comme illustré dans les quelques lignes suivantes (le nom
 ``case`` de l'objet étant quelconque, au choix de l'utilisateur)::
 
     from numpy import array, matrix
-    import adaoBuilder
+    from adao import adaoBuilder
     case = adaoBuilder.New()
 
 Il est recommandé par principe de toujours importer le module ``numpy`` (ou ses
@@ -644,7 +644,7 @@ observations par simulation pour se placer dans un cas d'expériences jumelles::
 Le jeu de commandes que l'on peut utiliser est le suivant::
 
     import numpy
-    import adaoBuilder
+    from adao import adaoBuilder
     #
     # Mise en forme des entrées
     # -------------------------