Salome HOME
Pour Telemac et qques bugs
authorpascale.noyret <pascale.noyret@edf.fr>
Thu, 2 Feb 2017 16:26:12 +0000 (17:26 +0100)
committerpascale.noyret <pascale.noyret@edf.fr>
Thu, 2 Feb 2017 16:26:12 +0000 (17:26 +0100)
28 files changed:
CMakeLists.txt
InterfaceQT4/configuration.py
InterfaceQT4/editor.py
InterfaceQT4/feuille.py
InterfaceQT4/monSelectValPSEN.py
InterfaceQT4/viewManager.py
Telemac/CMakeLists.txt [new file with mode: 0644]
Telemac/Telemac_Cata.py [deleted file]
Telemac/Telemac_Cata_nouveau.py [deleted file]
Telemac/aideAuxConvertisseurs.py
Telemac/configuration_TELEMAC.py
Telemac/desDoc_monCode.py [deleted file]
Telemac/dicoCasEnToCata.py [new file with mode: 0644]
Telemac/dicoCasFrToCata.py [new file with mode: 0644]
Telemac/enumDicoTelemac.py [changed mode: 0644->0755]
Telemac/mesScripts.py [deleted file]
Telemac/prefs_TELEMAC.py
Telemac/reecrit_comm.py [deleted file]
Telemac/telemac2dv6p3.dico [deleted file]
Telemac/transforme/ReadMe [new file with mode: 0644]
Telemac/transforme/reEcrittsEn.py [new file with mode: 0755]
Telemac/transforme/reEcrittsFr.py [new file with mode: 0755]
UiQT5/CMakeLists.txt
UiQT5/eficas_en.ts
UiQT5/eficas_fr.ts
convert/convert_TELEMAC.py
convert/convert_TELEMAC3.py [deleted file]
generator/generator_TELEMAC.py

index d85efc0eedb2b980b4ea15593f735b74a49a1dca..702e1fbfd233669be30f510fefbd3bd845171c87 100644 (file)
@@ -81,106 +81,38 @@ endif (NOT PYUIC5)
 
 # Definition des options de CMake
 option ( WITH_ALL_PACKAGES "Install all package files" OFF )
-option ( WITH_SALOME_MECA  "Install OT, Aster and SEP files" OFF )
-option ( WITH_OPENTURNS    "Install Open TURNS files"  OFF )
-option ( WITH_ASTER        "Install Aster files"       OFF )
 option ( WITH_MAP          "Install MAP files"         OFF )
 option ( WITH_CARMEL       "Install CARMEL files"      OFF )
 option ( WITH_SEP          "Install SEP files"         OFF )
 option ( WITH_ZCRACKS      "Install ZCRACKS files"     OFF )
+option ( WITH_TELEMAC_CATA "Install TELEMAC files"     OFF )
 option ( IN_SALOME_CONTEXT "Configure Eficas for use in Salome" OFF )
 
-set ( _OPTIONLIST
-  WITH_OPENTURNS 
-  WITH_ASTER
-  WITH_MAP
-  WITH_CARMEL
-  WITH_SALOME_MECA
-  )
-
-set ( _SALOME_MECA_LIST
-  WITH_OPENTURNS 
-  WITH_ASTER
-  WITH_SEP
-  WITH_ZCRACKS
-  IN_SALOME_CONTEXT
-  )
-
 if (WITH_ALL_PACKAGES)
   foreach ( _opt ${_OPTIONLIST} )
     set ( ${_opt} ON )
   endforeach ( _opt )
 endif (WITH_ALL_PACKAGES)
 
-if (WITH_SALOME_MECA)
-  foreach ( _opt ${_SALOME_MECA_LIST} )
-    set ( ${_opt} ON )
-  endforeach ( _opt )
-endif (WITH_SALOME_MECA)
-
-# Verification: au moins une option doit etre selectionnee
-set ( _VALIDOPT FALSE )
-foreach ( _opt ${_OPTIONLIST} )
-  if ( ${_opt} )
-    set ( _VALIDOPT TRUE )
-    string ( REPLACE WITH_ "" _opt2 ${_opt} )
-    message ( STATUS "Will install package ${_opt2}" )
-  endif ( ${_opt} )
-endforeach ( _opt )
-if ( NOT ${_VALIDOPT} )
-  message ( FATAL_ERROR "At least one option within ${_OPTIONLIST} must be selected" )
-endif ( NOT ${_VALIDOPT} )
-
-# Detection des prerequis lies aux options
-if (WITH_OPENTURNS)
-  if (IN_SALOME_CONTEXT)
-    SET(OpenTURNS_PYTHON_MODULE_DIR "")
-  else (IN_SALOME_CONTEXT)
-    find_package ( OpenTURNS REQUIRED )
-  endif (IN_SALOME_CONTEXT)
-endif (WITH_OPENTURNS)
-
-#if (WITH_ASTER)
-#  find_package ( Aster REQUIRED )
-#endif (WITH_ASTER)
-
-#if (WITH_MAP)
-#  find_package ( MAP REQUIRED )
-#endif (WITH_MAP)
+
 
 
 # Parcours recursif des sous-repertoires
-add_subdirectory ( Accas )
-add_subdirectory ( Aide )
-add_subdirectory ( Editeur )
-add_subdirectory ( Extensions )
-add_subdirectory ( Ihm )
-install ( DIRECTORY InterfaceQT4 DESTINATION ${CMAKE_INSTALL_PREFIX} )
-add_subdirectory ( Noyau )
-add_subdirectory ( UiQT5 )
-add_subdirectory ( Validation )
-add_subdirectory ( convert )
-add_subdirectory ( generator )
-add_subdirectory ( Traducteur )
-
-# Installation des fichiers : Open TURNS
-if (WITH_OPENTURNS)
-  add_subdirectory ( Openturns_Study )
-  add_subdirectory ( Openturns_Wrapper )
-endif (WITH_OPENTURNS)
-
-# Installation des fichiers : Aster
-if (WITH_ASTER)
-  add_subdirectory ( Aster )
-endif (WITH_ASTER)
-
-if (WITH_TK)
-  add_subdirectory ( InterfaceTK )
-  add_subdirectory ( Pmw )
-  add_subdirectory ( Tools )
-  add_subdirectory ( Misc )
-  add_subdirectory ( AIDE )
-endif (WITH_TK)
+if ( NOT WITH_TELEMAC_CATA )
+  add_subdirectory ( Accas )
+  add_subdirectory ( Aide )
+  add_subdirectory ( Editeur )
+  add_subdirectory ( Extensions )
+  add_subdirectory ( Ihm )
+  install ( DIRECTORY InterfaceQT4 DESTINATION ${CMAKE_INSTALL_PREFIX} )
+  add_subdirectory ( Noyau )
+  add_subdirectory ( UiQT5 )
+  add_subdirectory ( Validation )
+  add_subdirectory ( convert )
+  add_subdirectory ( generator )
+  add_subdirectory ( Traducteur )
+endif ( NOT WITH_TELEMAC_CATA )
+
 
 # Installation des fichiers : MAP
 if (WITH_MAP)
@@ -204,6 +136,11 @@ if (WITH_ZCRACKS)
   add_subdirectory ( ZCracks )
 endif (WITH_ZCRACKS)
 
+# Installation des fichiers : Telemac
+if (WITH_TELEMAC_CATA)
+  add_subdirectory ( Telemac )
+endif (WITH_TELEMAC_CATA)
+
 if (BUILD_DOC)
   add_subdirectory ( Doc )
 endif (BUILD_DOC)
index 0fc5dd9a94fb92421ccde8b16904a475190042cd..ac80afcc167764911b412ac9ea5ba88cfa484a58 100644 (file)
@@ -99,6 +99,7 @@ class CONFIG_BASE:
       self.closeAutreCommande = False\r
       self.closeFrameRechercheCommande = False\r
       self.closeEntete = False\r
+      self.closeArbre = False\r
       self.force_langue=False\r
 \r
  \r
index 5da51d1f3dc973b59c0e23de3e9c02fb2978ce59..2c3c421e618695b99e46e63fd70d4132c29044fe 100755 (executable)
@@ -96,6 +96,7 @@ class JDCEditor(Ui_baseWidget,QWidget):
         self.mode_nouv_commande=self.appliEficas.CONFIGURATION.mode_nouv_commande
         self.closeAutreCommande=self.appliEficas.CONFIGURATION.closeAutreCommande
         self.closeFrameRechercheCommande=self.appliEficas.CONFIGURATION.closeFrameRechercheCommande
+        self.closeArbre=self.appliEficas.CONFIGURATION.closeArbre
         self.affiche=self.appliEficas.CONFIGURATION.affiche
         #self.taille = self.appliEficas.taille
 
@@ -104,6 +105,9 @@ class JDCEditor(Ui_baseWidget,QWidget):
         if self.code in ['MAP',]:
            self.widgetTree.close()
            self.widgetTree=None
+        if self.closeArbre:
+           self.widgetTree.close()
+           self.widgetTree=None
 
       
 
@@ -326,6 +330,9 @@ class JDCEditor(Ui_baseWidget,QWidget):
         if self.code == "TELEMAC" : texte=self._newTELEMAC()
         if self.code == "PSEN" : texte = self._newPSEN()
         if self.code == "PSEN_N1" : texte = self._newPSEN_N1()
+
+        if hasattr(self.readercata.cata[0],'TEXTE_NEW_JDC') : texte=self.readercata.cata[0].TEXTE_NEW_JDC
+
         #if self.code == "CF" : texte = self._new_CF()
         #   texte=self.newTexteCND
        
index e096404b2453a3917af3cb31c122f47c39860840..07bd198b48cb01f012d7b2f1c2be08a7f95d80ce 100644 (file)
@@ -151,9 +151,9 @@ class Feuille(QWidget,ContientIcones,SaisieValeur,FacultatifOuOptionnel):
       #if self.node.item.definition.validators : c+=self.node.item.definition.validators.aide()
       self.aide=c
       if self.objSimp.get_fr() != None and self.objSimp.get_fr() != "":
-          c2 = '<html><head/><body><p>'+c+str(self.objSimp.get_fr())+"</p></body></html>"
+          c2 = '<html><head/><body><p>'+c+unicode(self.objSimp.get_fr())+"</p></body></html>"
           self.label.setToolTip(c2)
-          self.aide=str(self.objSimp.get_fr())+" "+c
+          self.aide=unicode(self.objSimp.get_fr())+" "+c
       else :
          c+=self.finCommentaire()
          if c != "" and c != None :
index 01130fc2e224d636ca9ecf603a3b281e46505f52..683df3acc9de74ae6298fafc5d84d45f797ed698 100644 (file)
@@ -32,7 +32,6 @@ class MonSelectValPSEN(MonSelectVal):
         self.MonSelectVal.__init__(file,parent,name = None,fl = 0):
 
   def Traitement(self):
-        print "kkkkkkkkkkkkkkkkkkkllllllllllllllllll"
         liste1=self.textTraite.split(self.separateur)
         print liste1
         #self.parent.ajoutNValeur(liste) 
index 186128e1f12e85910caea2656dcb111809b29811..b939951a6fd4f5f3f9fd16ac3d877924555c6670 100644 (file)
@@ -231,6 +231,13 @@ class MyTabview:
            self.myQtab.setTabText(index,fileName)
        return ok
 
+   def saveLegerCurrentEditor(self):
+       index=self.myQtab.currentIndex()
+       if index < 0 : return
+       editor=self.dict_editors[index]
+       ok, newName = editor.saveFileLeger()
+       return ok
+
    def sauveLigneCurrentEditor(self):
        index=self.myQtab.currentIndex()
        if index < 0 : return
diff --git a/Telemac/CMakeLists.txt b/Telemac/CMakeLists.txt
new file mode 100644 (file)
index 0000000..d2497e2
--- /dev/null
@@ -0,0 +1,31 @@
+# -*- coding: utf-8 -*-
+#            CONFIGURATION MANAGEMENT OF EDF VERSION
+# ======================================================================
+# COPYRIGHT (C) 1991 - 2002  EDF R&D                  WWW.CODE-ASTER.ORG
+# THIS PROGRAM IS FREE SOFTWARE; YOU CAN REDISTRIBUTE IT AND/OR MODIFY
+# IT UNDER THE TERMS OF THE GNU GENERAL PUBLIC LICENSE AS PUBLISHED BY
+# THE FREE SOFTWARE FOUNDATION; EITHER VERSION 2 OF THE LICENSE, OR
+# (AT YOUR OPTION) ANY LATER VERSION.
+#
+# THIS PROGRAM IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, BUT
+# WITHOUT ANY WARRANTY; WITHOUT EVEN THE IMPLIED WARRANTY OF
+# MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. SEE THE GNU
+# GENERAL PUBLIC LICENSE FOR MORE DETAILS.
+#
+# YOU SHOULD HAVE RECEIVED A COPY OF THE GNU GENERAL PUBLIC LICENSE
+# ALONG WITH THIS PROGRAM; IF NOT, WRITE TO EDF R&D CODE_ASTER,
+#    1 AVENUE DU GENERAL DE GAULLE, 92141 CLAMART CEDEX, FRANCE.
+#
+#
+# ======================================================================
+
+
+install ( FILES aideAuxConvertisseurs.py configuration_TELEMAC.py dicoCasEnToCata.py dicoCasFrToCata.py enumDicoTelemac.py prefs.py prefs_TELEMAC.py properties.py qtEficas_Telemac.py Telemac2d_Cata_auto.py 
+         DESTINATION ${CMAKE_INSTALL_PREFIX}/Telemac
+        )
+
+
+
+### Local Variables:
+### mode: cmake
+### End:
diff --git a/Telemac/Telemac_Cata.py b/Telemac/Telemac_Cata.py
deleted file mode 100644 (file)
index 32b4de0..0000000
+++ /dev/null
@@ -1,2675 +0,0 @@
-# coding: utf-8
-
-from Accas import *
-
-class DateJJMMAAAA:
-  def __init__(self):
-    self.ntuple=3
-
-  def __convert__(self,valeur):
-    if type(valeur) == types.StringType: return None
-    if len(valeur) != self.ntuple: return None
-    return valeur
-
-  def info(self):
-    return "Date : jj/mm/aaaa "
-
-  __repr__=info
-  __str__=info
-
-import types
-class Tuple:
-  def __init__(self,ntuple):
-    self.ntuple=ntuple
-
-  def __convert__(self,valeur):
-    if type(valeur) == types.StringType:
-      return None
-    if len(valeur) != self.ntuple:
-      return None
-    return valeur
-
-  def info(self):
-    return "Tuple de %s elements" % self.ntuple
-
-
-
-JdC = JDC_CATA (code = 'TELEMAC',
-                execmodul = None,
-                )
-# ======================================================================
-# Catalog entry for the MAP function : c_pre_interfaceBody_mesh
-# ======================================================================
-
-# -----------------------------------------------------------------------
-INITIALIZATION = PROC(nom = "INITIALIZATION",op = None,
-# -----------------------------------------------------------------------
-
-     fr = "Initialisation des fichiers d'entrée et de sortie",
-     ang = "Input and Output files initialization",
-     UIinfo = { "groupes" : ( "CACHE", )},
-     #UIinfo = { "groupes" : ( "iiii", )},
-
-#    ------------------------------------
-     Title = SIMP( statut = 'o',typ = 'TXM',
-#    ------------------------------------
-          fr = 'Titre du cas etudie. Ce titre figurera sur les dessins.',
-          ang = 'Title of the case being considered. This title shall be marked on the drawings.'),
-     #Working_Directory = SIMP( statut='o',typ='Repertoire',defaut='/tmp'),
-
-#    ------------------------------------
-     Input_Files = FACT(statut='o',
-#    ------------------------------------
-
-       #  Dictionary = SIMP( statut='o', typ = ('Fichier', 'Dico (*.dico);;All Files (*)',), 
-       #                    defaut='telemac2d.dico', 
-       #                    fr='Dictionnaire des mots cles.', ang='Key word dictionary.',),
-# PN : le mot cle doit etre dans le dictionnaire et repris du catalogue mais n 
-# est pas modifiable
-
-#        ------------------------------------
-         Geometry_File_Format = SIMP( statut = 'o', typ = 'TXM',
-#        ------------------------------------
-             into = ['Serafin', 'MED', 'SerafinD'], 
-             defaut = 'Serafin',
-             fr = 'Format du fichier de geometrie. Les valeurs possibles sont : \n \
-     - SERAFIN : format standard simple precision pour Telemac;   \n \
-     - SERAFIND: format standard double precision pour Telemac;   \n \
-     - MED     : format MED base sur HDF5',
-             ang = 'Results file format. Possible values are: \n\
-     - SERAFIN : classical single precision format in Telemac;\n\
-     - SERAFIND: classical double precision format in Telemac;\n\
-     - MED     : MED format based on HDF5',) ,
-
-#        ------------------------------------
-         Geometry_File = SIMP( statut = 'o', 
-#        ------------------------------------
-# PNPNPN Question Soizic --> pourqoi Geo Files
-# idem pour Bottom_Topography_File
-             typ = ('Fichier', 'Geo Files (*.geo);;All Files (*)',),
-             fr = 'Nom du fichier contenant le maillage du calcul a realiser.',
-             ang = 'Name of the file containing the mesh. \n\
-This file may also contain the topography and the friction coefficients.'),
-
-          #Steering_File = SIMP( statut = 'o', typ = ('Fichier', 'Steering Files (*.cas);;All Files (*)',),),
-
-
-#        ------------------------------------
-         Fortran_File = SIMP(statut = 'f',
-#        ------------------------------------
-             typ = ('Fichier', 'Fortran files (*.f);;All Files (*)'),
-             fr = 'Nom du fichier a soumettre',
-             ang = 'Name of FORTRAN file to be submitted',),
-
-#        ------------------------------------
-         Bottom_Topography_File = SIMP( statut = 'f', 
-#        ------------------------------------
-              typ = ('Fichier', 'Geo Files (*.geo);;All Files (*)',),
-              fr = "Nom du fichier eventuel contenant la bathymetrie associee au maillage. \
-Si ce mot-cle est utilise; c'est cette bathymetrie qui sera utilisee pour le calcul.",
-              ang = 'Name of the possible file containing the bathymetric data.\
-Where this keyword is used, these bathymetric data shall be used in the computation.',
-         ),
-
-#         ------------------------------------
-          Bottom_Smoothings = SIMP( statut = 'o',typ = 'I', defaut = 0 ,
-#         ------------------------------------
-              fr = 'Nombre de lissages effectues sur la topographie.  chaque lissage, effectue a l aide dune matrice de masse, est conservatif.\n\
-Utilise lorsque les donnees de bathymetrie donnent des resultats trop irreguliers apres interpolation.',
-              ang = 'Number of smoothings on bottom topography.  each smoothing is mass conservative.  \n\
-to be used when interpolation of bathymetry on the mesh gives very rough results.',),
-
-#        ------------------------------------
-          Boundary_Conditions_File = SIMP( statut = 'o', 
-#        ------------------------------------
-              typ = ('Fichier', 'Boundary Condition (*.cli);;All Files (*)',),
-              fr = 'Nom du fichier contenant les types de conditions aux limites. Ce fichier est rempli de facon automatique\n\
-par le mailleur au moyen de couleurs affectees aux noeuds des frontieres du domaine de calcul.',
-              ang = 'Name of the file containing the types of boundary conditions. This file is filled automatically\n\
-by the mesh generator through through colours that are assigned to the boundary nodes.',),
-
-
-#        ------------------------------------
-         Validation = FACT( statut = 'f',
-#        ------------------------------------
-#PNPN--> creer le Mot_clef simple Validation si ce fact existe
-
-#            ------------------------------------
-             Reference_File_Format = SIMP( statut = 'o',
-#            ------------------------------------
-                 typ = 'TXM', 
-                 into = ['Serafin','MED','SerafinD'], 
-                 defaut = 'Serafin',
-                 fr = 'Format du fichier de resultats. Les valeurs possibles sont : \n\
-     - SERAFIN : format standard simple precision pour Telemac;  \n\
-     - SERAFIND: format standard double precision pour Telemac; \n\
-     - MED     : format MED base sur HDF5' ,
-                 ang = 'Results file format. Possible values are:\n \
-     - SERAFIN : classical single precision format in Telemac;\n\
-     - SERAFIND: classical double precision format in Telemac; \n\
-     - MED     : MED format based on HDF5' ,),
-
-#            ------------------------------------
-             Reference_File = SIMP( statut = 'o', 
-#            ------------------------------------
-                 typ = ('Fichier', 'Reference File (*.ref);;All Files (*)',), 
-                 fr = 'Fichier de resultats de reference pour la validation. Les resultats a placer dans ce fichier seront a ecrire sur le canal 22.',
-                 ang = 'Binary-coded result file for validation. The results to be entered into this file shall be written on channel 22.',),
-
-         ),  # Fin de Validation
-
-#        ------------------------------------
-         Formatted_And_Binary_Files = FACT( statut = 'f',
-#        ------------------------------------
-
-#            ------------------------------------
-             Formatted_Data_File_1 = SIMP( statut = 'f', typ = ('Fichier', 'formated File (*.txt);;All Files (*)',),
-#            ------------------------------------
-                  fr = "Fichier de donnees formate mis a la disposition de l''utilisateur.  \n\
-Les donnees de ce fichier seront a lire sur le canal 26.",
-                  ang = 'Formatted data file made available to the user.\n\
-The data in this file shall be read on channel 26.',),
-
-#            ------------------------------------
-             Formatted_Data_File_2 = SIMP( statut = 'f', typ = ('Fichier', 'formated File (*.txt);;All Files (*)',),
-#            ------------------------------------
-                  fr = "Fichier de donnees formate mis a la disposition de l'utilisateur. \n\
-Les donnees de ce fichier seront a lire sur le canal 27.",
-                  ang = "Formatted data file made available to the user.\n\
-The data in this file shall be read on channel 27.",),
-
-#            ------------------------------------
-             Binary_Data_File_1 = SIMP( statut = 'f', typ = ('Fichier', 'All Files (*)',),
-#            ------------------------------------
-                  fr = 'Fichier de donnees code en binaire mis a la disposition de l utilisateur. \n\
-Les donnees de ce fichier seront a lire sur le canal 24.',
-                  ang = 'Binary-coded data file made available to the user.\n\
-The data in this file shall be read on channel 24.',),
-
-#            ------------------------------------
-             Binary_Data_File_2 = SIMP( statut = 'f', typ = ('Fichier', 'All Files (*)',),
-#            ------------------------------------
-                  fr = 'Fichier de donnees code en binaire mis a la disposition de l utilisateur.\n\
-Les donnees de ce fichier seront a lire sur le canal 25.',
-                   ang = 'Binary-coded data file made available to the user. \n\
-The data in this file shall be read on channel 25.',),
-
-         ),  # fin Formatted_And_Binary_Files
-
-     ), # Fin de InputFile 
-
-    # -----------------------------------------------------------------------
-    Initial_State = FACT(statut='o',
-    # -----------------------------------------------------------------------
-
-#    ------------------------------------
-     Initial_Conditions = SIMP(statut = 'o',typ = 'TXM',
-#    ------------------------------------
-          into = ['Zero elevation','Constant elevation','Zero depth','Constant depth','Special','Tpxo satellite altimetry'],
-          defaut = 'Zero elevation',
-          fr = "Permet de definir les conditions initiales sur les hauteurs d'eau. Les valeurs possibles sont :\n\
-    - COTE NULLE. Initialise la cote de surface libre a 0. \nLes hauteurs d'eau initiales sont alors retrouvees en faisant la difference entre les cotes de surface libre et du fond. \n\
-    - COTE CONSTANTE . Initialise la cote de surface libre a la valeur donnee par le mot-cle COTE INITIALE. Les hauteurs d'eau initiales sont calculees comme precedemment.\n\
-   - HAUTEUR NULLE .Initialise les hauteurs d'eau a 0. \n\
-   - HAUTEUR CONSTANTE. Initialise les hauteurs d'eau a la valeur donnee par le mot-cle HAUTEUR INITIALE. \n\
-   - PARTICULIERES. Les conditions initiales sur la hauteur d'eau doivent etre precisees dans le sous-programme CONDIN. \n\
-   - ALTIMETRIE SATELLITE TPXO. Les conditions initiales sur la hauteur  d'eau et les vitesses sont etablies sur \n\
-      la base des donnees satellite TPXO dont les 8 premiers constistuents ont ete extraits et sauves dans le fichier\n\
-      BASE DE DONNEES DE MAREE." ,
-         ang = 'Makes it possible to define the initial conditions with the water depth. The possible values are : \n\
-   - ZERO ELEVATION. Initializes the free surface elevation to 0. \n The initial water depths are then found by computing the difference between the free surface and the bottom.  \n\
-   - CONSTANT ELEVATION. Initializes the water elevation to the value given by the keyword \n\
-   - INITIAL ELEVATION. The initial water depths are computed as in the previous case. \n\
-   - ZERO DEPTH. Initializes the water depths to 0. \n\
-   - CONSTANT DEPTH. Initializes the water depths to the value givenby the key-word  INITIAL DEPTH. \n\
-   - SPECIAL. The initial conditions with the water depth should be stated in the CONDIN subroutine. \n\
-   - TPXO SATELITE ALTIMETRY. The initial conditions on the free surface and velocities are established from the TPXO satellite program data,\n the harmonic constituents of which are stored in the TIDE DATA BASE file.', ),
-#    ------------------------------------
-     b_initial_elevation = BLOC (condition = "Initial_Conditions == 'Constant elevation'",
-#    ------------------------------------
-#        ------------------------------------
-         Initial_Elevation = SIMP(statut = 'o',typ = 'R',
-#        ------------------------------------
-             fr = 'Valeur utilisee avec l''option :  CONDITIONS INITIALES - COTE CONSTANTE',
-             ang = 'Value to be used with the option : INITIAL CONDITIONS  -CONSTANT ELEVATION' ),
-     ) , # fin b_initial_elevation
-
-#    ------------------------------------
-     b_initial_depth = BLOC (condition = "Initial_Conditions == 'Constant depth'",
-#    ------------------------------------
-#        ------------------------------------
-         Initial_Depth = SIMP(statut = 'o',typ = 'R',
-#        ------------------------------------
-             fr = 'Valeur utilisee avec l''option : CONDITIONS INITIALES :-HAUTEUR CONSTANTE-',
-             ang = 'Value to be used along with the option: INITIAL CONDITIONS -CONSTANT DEPTH-' ),
-         ),# fin b_initial_depth
-#    ------------------------------------
-     b_special = BLOC (condition = "Initial_Conditions == 'Special'",
-#    ------------------------------------
-#        ------------------------------------
-         Consigne = SIMP(statut = "o",homo = 'information',typ = "TXM",
-#        ------------------------------------
-             defaut = "The initial conditions with the water depth should be stated in the CONDIN subroutine"),
-      ), # fin b_special
-
-#PNPN il faut changer la condition pour que cela soit dans maree. il faut une position = global_jdc et remonter # cela
-#    ------------------------------------
-     b_initial_TPXO = BLOC (condition = "Initial_Conditions == 'TPXO satellite altimetry'",
-#    ------------------------------------
-#        ------------------------------------
-         Ascii_Database_For_Tide = SIMP( statut = 'o', 
-#        ------------------------------------
-             typ = ('Fichier', 'All Files (*)',), 
-             fr = 'Base de donnees de constantes harmoniques tirees du fichier du modele de maree',
-             ang = 'Tide data base of harmonic constituents extracted from the tidal model file',),
-         ), # fin b_initial_TPXO
-
-    ), # fin Initial_State 
-
-
-#    ------------------------------------
-     #Computation_Continued = SIMP( statut = 'o',typ = bool,defaut = False,position = "global_jdc"),
-     Computation_Continued = SIMP( statut = 'o',typ = bool,defaut = False),
-#    ------------------------------------
-
-#    ------------------------------------
-     b_comput_con = BLOC(condition = 'Computation_Continued == True',
-     Computation_Continued_Settings = FACT(statut = 'o',
-
-#        ------------------------------------
-         Previous_Computation_File_Format = SIMP( statut = 'o',typ = 'TXM',
-#        ------------------------------------
-              into = ['Serafin','MED','SerafinD'],
-              defaut = 'Serafin',
-              fr = 'Format du fichier de resultats du calcul precedent. Les valeurs possibles sont : \n\
-         - SERAFIN : format standard simple precision pour Telemac;  \n\
-         - SERAFIND: format standard double precision pour Telemac; \n\
-         - MED     : format MED base sur HDF5',
-              ang = 'Previous computation results file format. Possible values are: \n\
-         - SERAFIN : classical single precision format in Telemac;  \n\
-         - SERAFIND: classical double precision format in Telemac; \n\
-         - MED     : MED format based on HDF5',),
-
-#        ------------------------------------
-         Previous_Computation_File = SIMP( statut = 'o', 
-#        ------------------------------------
-             typ = ('Fichier', 'Computation File (*.res);;All Files (*)',),
-             fr = "Nom d'un fichier contenant les resultats d'un calcul precedent realise sur le meme maillage \n\
- et dont le dernier pas de temps enregistre va fournir les conditions initiales pour une suite de de calcul.",
-             ang = 'Name of a file containing the results of an earlier computation which was made on the same mesh.\n\
- The last recorded time step will provid the initial conditions for the new computation.',
-                    ),
-#        ------------------------------------
-          Initial_Time_Set_To_Zero = SIMP(typ = bool, statut = 'o',
-#        ------------------------------------
-             fr = 'Remet le temps a zero en cas de suite de calcul',
-             ang = 'Initial time set to zero in case of restart',
-             defaut = "False"),
-
-#        ------------------------------------
-          Record_Number_For_Restart = SIMP(typ = 'I', statut = 'o', defaut = 0,
-#        ------------------------------------
-              fr = "numero de l'enregistrement de depart dans le fichier du calcul precedent. 0 signifie qu'on prend le dernier enregistrement", 
-              ang = "record number to start from in the previous computation file, 0 for last record" ),
-
-        ),
-     ),# fin BLOC b_comput_con 
-
-#    ------------------------------------
-     Coupling = FACT( statut = 'o',
-#    ------------------------------------
-# PNPNPN Attention 1 seul choix possible
-        fr = 'Liste des codes avec lesquels on couple Telemac-2D',
-        ang = 'List of codes to be coupled with Telemac-2D',
-
-#        ------------------------------------
-         Sisyphe = SIMP(statut = 'o',typ = bool,defaut = False ,
-#        ------------------------------------
-             fr = 'couplage interne avec Sisyphe', 
-             ang = 'internal coupling with Sisyphe'),
-
-#        ------------------------------------
-         Tomawac = SIMP(statut = 'o',typ = bool,defaut = False,
-#        ------------------------------------
-             fr = 'couplage interne avec Tomawac', 
-             ang = 'internal coupling with Tomawac'),
-
-#        ------------------------------------
-         Delwacq = SIMP(statut = 'o',typ = bool,defaut = False,
-#        ------------------------------------
-             fr = 'couplage interne avec Delwacq', 
-             ang = 'internal coupling with Delwacq'),
-# PNPNPN Attention : il faut des mots cles si Delwacq. a voir avec Soizic 
-# On verra apres
-
-        ), # fin Coupling
-
-#    ------------------------------------
-      Parallel_Computation = SIMP(statut = 'o',typ = 'TXM',
-#    ------------------------------------
-#    Ce mot clef n existe pas dans le dico
-         into = ['Sequentiel','Parallel'],
-         defaut = 'Sequentiel',),
-
-#    ------------------------------------
-      b_para = BLOC(condition = 'Parallel_Computation == "Parallel"',
-#    ------------------------------------
-#        ------------------------------------
-         Parallel_Processors = SIMP(statut = 'o',typ = 'I',
-#        ------------------------------------
-             val_min = 0,defaut = 1,
-             fr = 'NOMBRE DE PROCESSEURS EN CALCUL PARALLELE \n\
-0 : 1 machine, compilation sans bibliotheque de parallelisme \n\
-1 : 1 machine, compilation avec bibliotheque de parallelisme \n\
-2 : 2 processeurs ou machines en parallele etc... ',
-             ang = 'NUMBER OF PROCESSORS FOR PARALLEL PROCESSING \n\
-0 : 1 machine, compiling without parallel library \n\
-1 : 1 machine, compiling with a parallel library \n\
-2 : 2 processors or machines in parallel'),
-         ), # fin b_para
-
-)# INITIALISATION
-
-# -----------------------------------------------------------------------
-TIDE_PARAMETERS = PROC(nom = "TIDE_PARAMETERS",op = None,
-# -----------------------------------------------------------------------
-#    ------------------------------------
-     Inputs_Outputs_For_Tide = FACT( statut = 'o',
-#    ------------------------------------
-
-#       ------------------------------------
-        Harmonic_Constants_File = SIMP( statut = 'o',
-#       ------------------------------------
-            typ = ('Fichier', 'All Files (*)',),
-            fr = 'Constantes harmoniques extraites du fichier du modele de maree',
-            ang = 'Harmonic constants extracted from the tidalmodel file',),
-
-#       ------------------------------------
-        Tidal_Model_File = SIMP( statut = 'o',
-#       ------------------------------------
-            typ = ('Fichier', 'All Files (*)',),
-            fr = 'Fichier de geometrie du modele dont sont extraites les constantes harmoniques',
-            ang = 'Geometry file of the model from which harmonic constituents are extracted',),
-
-      ), # Fin Inputs_Outputs_For_Tide
-
-#    ------------------------------------
-     Location = FACT( statut = 'o',
-#    ------------------------------------
-#       ------------------------------------
-        Geographic_System = SIMP(statut = 'o',typ = 'TXM',
-#       ------------------------------------
-            into = ["Defined by user", "WGS84 longitude/latitude in real degrees", "WGS84 nothern UTM",\
-                      "WGS84 southern UTM","Lambert", "Mercator",],
-            defaut = "Defined by user",
-            fr = 'Systeme de coordonnees geographiques dans lequel est construit le modele numerique.',
-            ang = 'Geographic coordinates system in which the numerical model is built.',),
-
-#       ------------------------------------
-        b_geo_plan = BLOC(condition = "Geographic_System in ['WGS84 nothern UTM','WGS84 southern UTM','Lambert']",
-#       ------------------------------------
-
-#          ------------------------------------
-           Zone_Number_In_Geographic_System = SIMP(statut = 'f',typ = 'TXM',
-#          ------------------------------------
-               into = [ 'Lambert 1 north', 'Lambert 2 center', 'Lambert 3 south', \
-                        'Lambert 4 corsica', 'Lambert 2 extended', 'UTM zone,E.G.'],
-               fr = "Numero de zone (fuseau ou type de projection) lors de l'utilisation d'une projection plane.\n \
-Indiquer le systeme geographique dans lequel est construit le modele numerique avec le mot-cle SYSTEME GEOGRAPHIQUE",
-               ang = 'Number of zone when using a plane projection. \n\
-Indicate the geographic system in which the numerical model is built with the keyword GEOGRAPHIC SYSTEM'),
-           ), # Fin b_geo_plan
-       ), # Fin Location
-
-#    ------------------------------------
-     Physical_Parameters = FACT(statut = 'o',
-#    ------------------------------------
-
-#       ------------------------------------
-        Tide_Generating_Force = SIMP(statut = 'o',
-#       ------------------------------------
-           typ = bool, defaut = False),
-
-#       ------------------------------------
-        b_Tide = BLOC(condition = "Tide_Generating_Force == True",
-#       ------------------------------------
-#           ------------------------------------
-            Longitude_Of_Origin_Point = SIMP(typ = 'R',
-#           ------------------------------------
-                statut = 'o', defaut = 48.,
-                fr = 'Fixe la valeur de la longitude du point origine du modele, lors de l utilisation de la force generatrice de la maree.',
-                ang = 'Give the value of the longitude of the origin point of the model, when taking into account of the tide generator force.',),
-
-#           ------------------------------------
-            Tidal_Data_Base = SIMP(statut = 'o',typ = 'TXM',
-#           ------------------------------------
-# Soizic . Il faudrait une consigne ? avec des blocs ?
-# en suspens pour JMJ
-                 into = [ "JMJ", "TPXO", "Miscellaneous (LEGOS-NEA, FES20XX, PREVIMER...)",],
-                 fr = 'Pour JMJ, renseigner la localisation du fichier bdd_jmj et geofin dans les mots-cles BASE DE DONNEES DE MAREE \n\
-et FICHIER DU MODELE DE MAREE.  Pour TPXO, LEGOS-NEA, FES20XX et PREVIMER, l utilisateur doit telecharger les fichiers \n\
-de constantes harmoniques sur internet',
-                 ang = 'For JMJ, indicate the location of the files bdd_jmj and geofin with keywords TIDE DATA BASE and TIDAL MODEL FILE.\n\
-For TPXO, LEGOS-NEA, FES20XX and PREVIMER, the user has to download files of harmonic constituents on the internet',),
-
-#           ------------------------------------
-            b_tpxo = BLOC(condition = "Tidal_Data_Base == 'TPXO'",
-#           ------------------------------------
-
-#              ------------------------------------
-               Minor_Constituents_Inference = SIMP( statut = 'o',typ = bool,
-#              ------------------------------------
-                  defaut = False ,
-                  fr = 'Interpolation de composantes harmoniques mineures a partir de celles lues dans les \n\
-fichiers d entrees lies aux mots-cles BASE BINAIRE 1 DE DONNEES DE MAREE et BASE BINAIRE 2 DE DONNEES DE MAREE',
-                  ang = 'Inference of minor constituents from the one read in input files linked to \n\
-keywords BINARY DATABASE 1 FOR TIDE and BINARY DATABASE 2 FOR TIDE',),
-
-
-
-#           ------------------------------------
-              Binary_Database_1_For_Tide = SIMP( statut = 'o',
-#           ------------------------------------
-                typ = ('Fichier', '(All Files (*),)',),
-                fr = 'Base de donnees binaire 1 tiree du fichier du modele de maree.\n\
-Dans le cas des donnees satellitaires de TPXO, ce fichier correspond aux donnees de niveau d''eau, par exemple h_tpxo7.2',
-                ang = 'Binary database 1 extracted from the tidal model file.\n\
-In the case of the TPXO satellite altimetry model, this file should be for free surface level, for instance h_tpxo7.2',),
-
-#           ------------------------------------
-              Binary_Database_2_For_Tide = SIMP( statut = 'o',
-#           ------------------------------------
-                typ = ('Fichier', '(All Files (*),)',),
-                fr= 'Base de donnees binaire 2 tiree du fichier du modele de maree.\n\
-Dans le cas des donnees satellitaires de TPXO, ce fichier correspond aux donnees de vitesse de marrees, par exemple u_tpxo7.2',
-                ang = 'Binary database 2 extracted from the tidal model file.\n\
-In the case of the TPXO satellite altimetry model, this file should be for tidal velocities, for instance u_tpxo7.2' ),
-
-            ),#fin du bloc b_tpxo
-         ), # Fin du Bloc b_Tide
-
-#       ------------------------------------
-        Option_For_Tidal_Boundary_Conditions = SIMP( statut = 'o',
-#       ------------------------------------
-           typ = 'TXM', defaut = 'No tide',
-           into = ['No tide', 'Real tide (recommended methodology)', 'Astronomical tide', \
-                   'Mean spring tide', 'Mean tide', 'Mean neap tide', \
-                   'Astronomical neap tide', 'Real tide (methodology before 2010)'],),
-
-#       ------------------------------------
-        b_Option_B = BLOC(condition = 'Option_For_Tidal_Boundary_Conditions!= "No tide"',
-#       ------------------------------------
-#           ------------------------------------
-            Coefficient_To_Calibrate_Tidal_Range = SIMP(statut = 'o',
-#           ------------------------------------
-                typ = 'R', defaut = 1.,
-                fr = 'Coefficient pour ajuster le marnage de l''onde de maree aux frontieres maritimes',
-                ang = 'Coefficient to calibrate the tidal range of tidal wave at tidal open boundary conditions'),
-
-#           ------------------------------------
-            Coefficient_To_Calibrate_Tidal_Velocities = SIMP(statut = 'o',
-#           ------------------------------------
-                typ = 'R', defaut = 999999,
-                fr = 'Coefficient pour ajuster les composantes de vitesse de l''onde de maree aux frontieres maritimes.\n\
-La valeur par defaut 999999. signifie que c''est la racine carree du Coefficient_De_Calage_Du_Marnage qui est prise',
-                ang = 'Coefficient to calibrate the tidal velocities of tidal wave at tidal open boundary conditions.\n\
-                Default value 999999. means that the square root of Coefficient_To_Calibrate_Tidal_Range is taken'),
-
-#           ------------------------------------
-              Coefficient_To_Calibrate_Sea_Level = SIMP(statut = 'o',typ = 'R',
-#           ------------------------------------
-                 defaut = 0.,
-                 fr = 'Coefficient pour ajuster le niveau de mer',
-                 ang = 'Coefficient to calibrate the sea level'),
-          ), # fin b_Option_B
-
-       ), #fin Physical_Parameters
-) # Fin TIDE_PARAMETERS
-
-# -----------------------------------------------------------------------
-BOUNDARY_CONDITIONS = PROC(nom = "BOUNDARY_CONDITIONS",op = None,
-# -----------------------------------------------------------------------
-            fr = 'On donne un ensemble de conditions par frontiere liquide',
-            ang = 'One condition set per liquid boundary is given',
-            UIinfo = { "groupes" : ( "CACHE", )},
-            #UIinfo = { "groupes" : ( "iiii", )},
- # Dans l ideal il faut aller regarder selon les groupes dans le fichier med
- # en sortie il faut aller chercher le .cli qui va bien 
-            #Liquid_Boundaries = FACT(statut = 'f',max = '**',
-            #    Options = SIMP(statut = 'f',typ = 'I',into = ['classical boundary conditions','Thompson method based on characteristics'])
-            #    Prescribed_Flowrates = SIMP(statut = 'f',typ = 'R'),
-            #    Prescribed_Elevations = SIMP(statut = 'f',typ = 'R'),
-            #    Prescribed_Velocity = SIMP(statut = 'f',typ = 'R'),
-      # ),
-
-# Il va falloir une "traduction dans le langage du dico"
-# Il faut seulement l un des 3
-
-#    ------------------------------------
-     Liquid_Boundaries = FACT(statut = 'o',max = '**',
-#    ------------------------------------
-                
-#        ------------------------------------
-         Option_For_Liquid_Boundaries = SIMP(statut = 'f',typ = 'I',
-#        ------------------------------------
-            into = ['Classical boundary conditions','Thompson method based on characteristics'],
-            fr = 'On donne 1 entier par frontiere liquide',
-            ang = 'One integer per liquid boundary is given',),
-
-#        ------------------------------------
-         Type_Condition = SIMP(statut = 'o',typ = 'TXM',
-# On ajoute le type pour rendre l 'ihm plus lisible
-# mais ce mot-cle n existe pas dans le dico
-#        ------------------------------------
-            into = ['Prescribed Flowrates', 'Prescribed Elevations', 'Prescribed Velocity'],),
-
-#        ------------------------------------
-         b_Flowrates = BLOC (condition = "Type_Condition == 'Prescribed Flowrates'",
-#        ------------------------------------
-#            ------------------------------------
-             Prescribed_Flowrates = SIMP(statut = 'o',
-#            ------------------------------------
-                  typ = 'R',
-                  fr = ' Valeurs des debits imposes aux frontieres liquides entrantes.\n\
-Lire la partie du mode d''emploi consacree aux conditions aux limites',
-                  ang = 'Values of prescribed flowrates at the inflow boundaries.\n\
-The section about boundary conditions is to be read in the manual'),
-             ), # fin b_Flowrates
-
-#        ------------------------------------
-         b_Elevations = BLOC (condition = "Type_Condition == 'Prescribed Elevations'",
-#        ------------------------------------
-#            ------------------------------------
-             Prescribed_Elevations = SIMP(statut = 'o',typ = 'R',
-#            ------------------------------------
-                 fr = 'Valeurs des cotes imposees aux frontieres liquides entrantes.\n\
-Lire la partie du mode d''emploi consacree aux conditions aux limites',
-                 ang = 'Values of prescribed elevations at the inflow boundaries.\n\
-The section about boundary conditions is to be read in the manual'),
-             ), # fin b_Elevations
-
-#        ------------------------------------
-         b_Velocity = BLOC (condition = "Type_Condition == 'Prescribed Velocity'",
-#        ------------------------------------
-#            ------------------------------------
-             Prescribed_Velocities = SIMP(statut = 'o',typ = 'R',
-#            ------------------------------------
-                 fr = 'Valeurs des vitesses imposees aux frontieres liquides entrantes.\n\
-Lire la partie du mode d''emploi consacree aux conditions aux limites',
-                 ang = 'Values of prescribed velocities at the liquid inflow boundaries.\n\
-Refer to the section dealing with the boundary conditions'),
-             ), # fin b_Velocity
-
-       ), # fin des Liquid_Boundaries
-
-#      ------------------------------------
-       Liquid_Boundaries_File = SIMP( statut = 'f', 
-#      ------------------------------------
-         typ = ('Fichier', 'All Files (*)',),
-         fr = 'Fichier de variations en temps des conditions aux limites.\n\
-Les donnees de ce fichier seront a lire sur le canal 12.',
-         ang = 'Variations in time of boundary conditions. Data of this file are read on channel 12.',
-      ),
-   
-
-#PNPN Attention dans le Dico STAGE-DISCHARGE CURVES
-#PNPN regarder le document de reference pour changer non programme
-#      ------------------------------------
-       Stage_Discharge_Curves = SIMP(statut = 'f',typ = 'TXM',
-#      ------------------------------------
-           into = ["No one","Z(Q)","Q(Z)"],
-           fr = 'Indique si une courbe de tarage doit etre utilisee pour une frontiere',
-           ang = 'Says if a discharge-elevation curve must be used for a given boundary',),
-
-#      ------------------------------------
-       b_discharge_curve = BLOC (condition = "Stage_Discharge_Curves != 'no'",
-#      ------------------------------------
-#            ------------------------------------
-             Stage_Discharge_Curves_File = SIMP( statut = 'f', 
-#            ------------------------------------
-                typ = ('Fichier', 'All Files (*)',),
-                fr = 'Nom du fichier contenant les courbes de tarage',
-                ang = 'Name of the file containing stage-discharge curves',),
-        ), # fin b_discharge_curve
-
-#      ------------------------------------
-       Elements_Masked_By_User = SIMP(statut = 'o',typ = bool,
-#      ------------------------------------
-           defaut = False,
-           fr = 'Si oui remplir le sous-programme maskob',
-           ang = 'if yes rewrite subroutine maskob',),
-
-#      ------------------------------------
-      maskob = BLOC (condition = 'Elements_Masked_By_User == True',
-#      ------------------------------------
-#            ------------------------------------
-              Consigne = SIMP(statut = "o",homo = 'information',typ = "TXM", 
-#            ------------------------------------
-              defaut = "Remplir le sous-programme maskob"),
-      ) # fin maskob
-
-) # fin Boundary_Conditions
-
-# -----------------------------------------------------------------------
-NUMERICAL_PARAMETERS = PROC(nom = "NUMERICAL_PARAMETERS",op = None,
-# -----------------------------------------------------------------------
-
-        UIinfo = { "groupes" : ( "CACHE", )},
-        #UIinfo = { "groupes" : ( "iiii", )},
-#     ------------------------------------
-      Equations = SIMP(statut = 'o',typ = 'TXM',
-#     ------------------------------------
-         into = ['Saint-Venant EF','Saint-Venant VF','Boussinesq'],
-         defaut = 'Saint-Venant EF',
-         fr = 'Choix des equations a resoudre',
-         ang = 'Choice of equations to solve',),
-
-#     ------------------------------------
-      Treatment_Of_The_Linear_System = SIMP(statut = 'o', typ = 'TXM',
-#     ------------------------------------
-         into = ["Coupled", "Wave equation"],
-         defaut = "Coupled",),
-
-#     ------------------------------------
-      Finite_Volume_Scheme = SIMP( statut = 'o',typ = 'TXM',
-#     ------------------------------------
-         into = [ "Roe scheme", "Kinetic order 1", "Kinetic order 2", "Zokagoa scheme order 1",\
-                "Tchamen scheme order 1", "HLLC scheme order 1", "WAF scheme order 2"],
-         defaut = "Kinetic order 1",),
-
-#      ------------------------------------
-       Solver_Definition = FACT(statut = 'o',
-#      ------------------------------------
-
-#         ------------------------------------
-          Solver = SIMP(statut = 'o',typ = 'TXM',
-#         ------------------------------------
-             into = ["Conjugate gradient", "Conjugate residual","Conjugate gradient on a normal equation",\
-                     "Minimum error", "CGSTAB", "GMRES", "Direct",],
-             fr = 'Permet de choisir le solveur utilise pour la resolution de l''etape de propagation. \n\
-Toutes les methodes proposees actuellement s''apparentent au Gradient Conjugue. Ce sont :\n\
-  1 : gradient conjugue 2 : residu conjugue       3 : gradient conjugue sur equation normale \n\
-  4 : erreur minimale   5 : gradient conjugue carre (non programme) 6 : gradient conjugue carre stabilise (cgstab)\n\
-  7 : gmres (voir aussi option du solveur) 8 : direct',
-             ang = 'Makes it possible to select the solver used for solving the propagation step.\n\
-All the currently available methods are variations of the Conjugate Gradient method. They are as follows: \n\
-1: conjugate gradient 2: conjugate residual 3: conjugate gradient on a normal equation\n\
-4: minimum error 5: conjugate gradient squared (not implemented) 6: conjugate gradient squared stabilised (cgstab) \n\
-7: gmres (see option for solver) 8: direct',),
-
-#         ------------------------------------
-          b_gmres = BLOC (condition = "Solver == 'GMRES'",
-#         ------------------------------------
-#            ------------------------------------
-             Solver_Option = SIMP(statut = 'o',typ = 'I', defaut = 2, val_min = 2,val_max = 15,
-#            ------------------------------------
-                 fr = 'la dimension de l''espace de KRILOV',
-                 ang = 'dimension of the KRYLOV space',),
-          ), # fin b_gmres
-
-#         ------------------------------------
-          Solver_Accuracy = SIMP(statut = 'o',typ = 'R', defaut = 1e-4,
-#         ------------------------------------
-             fr = 'Precision demandee pour la resolution de l''etape de propagation (cf.  Note de principe).',
-             ang = 'Required accuracy for solving the propagation step (refer to Principle note).',),
-
-#         ------------------------------------
-          Maximum_Number_Of_Iterations_For_Solver = SIMP(statut = 'o',typ = 'I', defaut = 100,
-#         ------------------------------------
-             fr = 'Les algorithmes utilises pour la resolution de l''etape de propagation etant iteratifs, \n\
-il est necessaire de limiter le nombre d''iterations autorisees.\n\
-Remarque : un maximum de 40 iterations par pas de temps semble raisonnable.',
-             ang = 'Since the algorithms used for solving the propagation step are iterative, \
-the allowed number of iterations should be limited.\n\
-Note: a maximum number of 40 iterations per time step seems to be reasonable.',),
-
-       ), # fin Solver
-
-#      ------------------------------------
-       Linearity = FACT(statut = 'f',
-#      ------------------------------------
-#          ------------------------------------
-           Continuity_Correction = SIMP(typ = bool, statut = 'o',
-#          ------------------------------------
-             defaut = False,
-             fr = 'Corrige les vitesses sur les points avec hauteur imposee ou l equation de continuite n a pas ete resolue',
-             ang = 'Correction of the velocities on points with a prescribed elevation, where the continuity equation has not been solved',),
-
-     ), # Fin Linearity
-
-#      ------------------------------------
-       Precondionning_setting = FACT(statut = 'f',
-#      ------------------------------------
-
-#         ------------------------------------
-          Preconditioning = SIMP(statut = 'o',typ = 'TXM',max="**",
-#         ------------------------------------
-# PNPN Soizic ? Est ce que c'est une liste
-# Comment fait-on  le into est faux : voir l aide
-# PN Je propose qu 'on puisse faire +sieurs choix et qu on recalcule en sortie
-# ou on propose des choix croisés parce que toutes les combinaisons ne sont pas possibles ?
-# 
-              into = [ "Diagonal", "No preconditioning", "Diagonal condensee", "Crout",  "Gauss-Seidel", ],
-              defaut=("Diagonal",), homo="SansOrdreNiDoublon",
-              fr='Permet de preconditionner le systeme de l etape de propagation afin d accelerer la convergence \n\
-lors de sa resolution. Certains preconditionnements sont cumulables : (les diagonaux 2 ou 3 avec les autres)\n\
-Pour cette raison on ne retient que les nombres premiers pour designer les preconditionnements. Si l on souhaite en cumuler\n\
-plusieurs on formera le produit des options correspondantes.',
-             ang='Choice of the preconditioning in the propagation step linear system that the convergence is speeded up\n\
-when it is being solved.Some operations (either 2 or 3 diagonal preconditioning) can be performed concurrently with the others.\n\
-Only prime numbers are therefore kept to denote the preconditioning operations. When several of them are to be performed concurrently,\n\
-the product of relevant options shall be made.',
-          ),
-#         ------------------------------------
-          C_U_Preconditioning = SIMP(typ = bool, statut = 'o', defaut=False,
-#         ------------------------------------
-             fr = 'Changement de variable de H en C dans le systeme lineaire final',
-             ang = 'Change of variable from H to C in the final linear system'
-           ),
-
-   ),# fin Preconditionnement
-     
-#    ------------------------------------
-     Matrix_Informations = FACT(statut = 'f',
-#    ------------------------------------
-#         ------------------------------------
-          Matrix_Vector_Product = SIMP(statut = 'o',typ = 'TXM',
-#         ------------------------------------
-             into = ["Classic", "Frontal"],
-             defaut='Classic',
-             fr = 'attention, si frontal, il faut une numerotation speciale des points',
-             ang = 'beware, with option 2, a special numbering of points is required',
-          ),
-#         ------------------------------------
-          Matrix_Storage = SIMP(statut = 'o',typ = 'TXM',
-#         ------------------------------------
-             into = ["Classical EBE","Edge-based storage",],
-             defaut='Edge-based storage',
-          ),
-     ),# fin Matrix_Informations
-
-
-#    ------------------------------------
-     Advection = FACT(statut = 'o',
-#    ------------------------------------
-#         ------------------------------------
-          Type_Of_Advection = FACT(statut = 'o',
-#         ------------------------------------
-
-# PNPNPN recalcul
-# Tres differents du dico  liste de 4
-# PNPN eclaircir les choix SVP
-# soizic. choix 3 et 4 et 13 et 14
-#            Attention recalcul de Type_Of_Advection
-#             ------------------------------------
-              Advection_Of_U_And_V = SIMP(statut = 'f',typ = bool, defaut = True,
-#             ------------------------------------
-                  fr = 'Prise en compte ou non de la convection de U et V.',
-                  ang = 'The advection of U and V is taken into account or ignored.'), 
-
-#                 ------------------------------------
-                  b_u_v = BLOC( condition = "Advection_Of_U_And_V == True",
-#                  ------------------------------------
-#                      ------------------------------------
-                       Type_Of_Advection_U_And_V = SIMP(statut = 'o',typ = 'TXM',position = "global",
-#                      ------------------------------------
-                           into = ["Characteristics", "SUPG", "Conservative N-scheme",  'Conservative N-scheme',\
-                           'Conservative PSI-scheme', 'Non conservative PSI-scheme', 'Implicit non conservative N-scheme',\
-                           'Edge-based N-scheme'], 
-                           defaut = "Characteristics", ),
-
-#                      ------------------------------------
-                       b_upwind = BLOC(condition = "Type_Of_Advection_U_And_V == 'SUPG'",
-#                      ------------------------------------
-#                        ------------------------------------
-                         Supg_Option_U_And_V = SIMP(statut = 'o', defaut = 'Modified SUPG', typ = 'TXM',
-#                        ------------------------------------
-                           into = ['No upwinding', 'Classical SUPG','Modified SUPG']),
-
-#                          ------------------------------------
-                           Upwind_Coefficients_Of_U_And_V = SIMP(statut = 'o',typ = 'R', defaut = 1.)
-#                          ------------------------------------
-                        ), # fin b_upwind
-                  ),# fin b_u_v
-
-#              ------------------------------------
-               Advection_Of_H = SIMP(statut = 'o',typ = bool, defaut = True,
-#              ------------------------------------
-                      fr = 'Prise en compte ou non de la convection de H.',
-                      ang = 'The advection of H is taken into account or ignored.'),
-
-#                  ------------------------------------
-                   b_h = BLOC( condition = "Advection_Of_H == True",
-#                  ------------------------------------
-#                      ------------------------------------
-                       Type_Of_Advection_H = SIMP(statut = 'o',typ = 'TXM',position = "global",
-#                      ------------------------------------
-                           into = ["Characteristics", "SUPG", "Conservative N-scheme",  'Conservative N-scheme',\
-                           'Conservative PSI-scheme', 'Non conservative PSI-scheme', 'Implicit non conservative N-scheme',\
-                           'Edge-based N-scheme'],
-                           defaut = "Conservative PSI-scheme",),
-#                      ------------------------------------
-                       b_upwind_H = BLOC(condition = "Type_Of_Advection_H == 'SUPG'",
-#                      ------------------------------------
-#                           ------------------------------------
-                            Supg_Option_H = SIMP(statut = 'o', defaut = 'Modified SUPG', typ = 'TXM',
-#                           ------------------------------------
-                            into = ['No upwinding', 'Classical SUPG','Modified SUPG']),
-
-#                          ------------------------------------
-                           Upwind_Coefficients_Of_H = SIMP(statut = 'o',typ = 'R', defaut = 1.)
-#                          ------------------------------------
-                       ), # fin b_upwind_H
-                    ),# fin b_h
-
-#              ------------------------------------
-               Advection_Of_K_And_Epsilon = SIMP(statut = 'o',typ = bool, defaut = True,
-#              ------------------------------------
-                    fr = 'Prise en compte ou non de la convection de Tracer.',
-                    ang = 'The advection of Tracer is taken into account or ignored.'),
-
-#                  ------------------------------------
-                   b_k = BLOC( condition = "Advection_Of_K_And_Epsilon == True",
-#                  ------------------------------------
-#                      ------------------------------------
-                       Type_Of_Advection_K_And_Epsilon = SIMP(statut = 'o',typ = 'TXM',position = "global",
-#                      ------------------------------------
-                           into = ["Characteristics", "SUPG", "Conservative N-scheme",  'Conservative N-scheme',\
-                              'Conservative PSI-scheme', 'Non conservative PSI-scheme', 'Implicit non conservative N-scheme',\
-                              'Edge-based N-scheme'],
-                           defaut = "Characteristics",),
-#                       ------------------------------------
-                        b_upwind_k = BLOC(condition = "Type_Of_Advection_K_And_Epsilon == 'SUPG'",
-#                       ------------------------------------
-#                          ------------------------------------
-                           Supg_Option_K_And_Epsilon = SIMP(statut = 'o', defaut = 'Modified SUPG', typ = 'TXM',
-#                          ------------------------------------
-                             into = ['No upwinding', 'Classical SUPG','Modified SUPG']),
-
-#                          ------------------------------------
-                           Upwind_Coefficients_Of_K_And_Epsilon = SIMP(statut = 'o',typ = 'R', defaut = 1.)
-#                          ------------------------------------
-                         ),# fin b_upwind_k
-                   ),# fin b_k
-
-#              ------------------------------------
-               Advection_Of_Tracers = SIMP(statut = 'o',typ = bool, defaut = True,
-#              ------------------------------------
-                    fr = 'Prise en compte ou non de la convection de Tracer.',
-                    ang = 'The advection of Tracer is taken into account or ignored.'),
-
-#                  ------------------------------------
-                   b_tracers = BLOC( condition = "Advection_Of_Tracers == True",
-#                  ------------------------------------
-#                      ------------------------------------
-                       Type_Of_Advection_Tracers = SIMP(statut = 'o',typ = 'TXM',position = "global",
-#                      ------------------------------------
-                           into = ["Characteristics", "SUPG", "Conservative N-scheme",  'Conservative N-scheme',\
-                           'Conservative PSI-scheme', 'Non conservative PSI-scheme', 'Implicit non conservative N-scheme',\
-                           'Edge-based N-scheme'],
-                            ),
-#                       ------------------------------------
-                        b_upwind_Tracers = BLOC(condition = "Type_Of_Advection_Tracers == 'SUPG'",
-#                       ------------------------------------
-#                          ------------------------------------
-                           Supg_Option_Tracers = SIMP(statut = 'o', defaut = 'Modified SUPG', typ = 'TXM',
-#                          ------------------------------------
-                             into = ['No upwinding', 'Classical SUPG','Modified SUPG']),
-
-#                          ------------------------------------
-                           Upwind_Coefficients_Of_Tracers = SIMP(statut = 'o',typ = 'R', defaut = 1.)
-#                          ------------------------------------
-                        ), # fin b_upwind_Tracers
-                    ), # fin b_Tracers
-
-#              ------------------------------------
-               b_max = BLOC( condition = "(Advection_Of_Tracers == True and Type_Of_Advection_Tracers == 'Edge-based N-scheme') or (Advection_Of_K_And_Epsilon == True and Type_Of_Advection_K_And_Epsilon == 'Edge-based N-scheme') or (Advection_Of_U_And_V == True and Type_Of_Advection_U_And_V == 'Edge-based N-scheme') or ( Advection_Of_H == True and Type_Of_Advection_H == 'Edge-based N-scheme')",
-#              ------------------------------------
-#                  ------------------------------------
-                   Maximum_Number_Of_Iterations_For_Advection_Schemes = SIMP( statut = 'o',typ = 'I', defaut = 10 ,
-#                  ------------------------------------
-                       fr = 'Seulement pour schemes Edge-based N-scheme',
-                       ang = 'Only for Edge-based N-scheme',),
-                ), # fin b_max
-
-#              ------------------------------------
-               b_traitement = BLOC( condition = "(Advection_Of_Tracers == True and Type_Of_Advection_Tracers in ['Edge-based N-scheme','SUPG','Conservative N-scheme','Conservative PSI-scheme']) or (Advection_Of_K_And_Epsilon == True and Type_Of_Advection_K_And_Epsilon in ['Edge-based N-scheme','SUPG','Conservative N-scheme','Conservative PSI-scheme']) or (Advection_Of_U_And_V == True and Type_Of_Advection_U_And_V in ['Edge-based N-scheme','SUPG','Conservative N-scheme','Conservative PSI-scheme']) or ( Advection_Of_H == True and Type_Of_Advection_H in ['Edge-based N-scheme','SUPG','Conservative N-scheme','Conservative PSI-scheme'])",
-#              ------------------------------------
-
-#          ------------------------------------
-           Treatment_Of_Fluxes_At_The_Boundaries = SIMP( statut = 'o',typ = 'TXM',
-#          ------------------------------------
-               into = ["Priority to prescribed values","Priority to fluxes"],
-               fr = 'Utilise pour les schemas SUPG, PSI et N, \n\
-si Priorité aux flux, on ne retrouve pas exactement les valeurs imposees des traceurs,mais le flux est correct',
-             ang = 'Used so far only with the SUPG, PSI and N schemes.\n\
-if Priority to fluxes, Dirichlet prescribed values are not obeyed,but the fluxes are correct',),
-
-                ), # fin b_traitement
-        ), # Fin Type_Of_Advection
-
-#PNPNPN
-# recalculer la liste de 4
-# Attention bloc selon le type de convection
-#         ------------------------------------
-#          SUPG = FACT(statut = 'o',
-#         ------------------------------------
-#             ------------------------------------
-#              Supg_Option_U_And_V = SIMP(statut = 'o', defaut = 'Modified SUPG', typ = 'TXM',
-#             ------------------------------------
-#                       into = ['No upwinding', 'Classical SUPG','Modified SUPG']),
-#             ------------------------------------
-#              Supg_Option_H = SIMP(statut = 'o', defaut = 'Modified SUPG', typ = 'TXM',
-#             ------------------------------------
-#                       into = ['No upwinding', 'Classical SUPG','Modified SUPG']),
-#             ------------------------------------
-#              Supg_Option_Tracers = SIMP(statut = 'o', defaut = 'Modified SUPG', typ = 'TXM',
-#             ------------------------------------
-#                       into = ['No upwinding', 'Classical SUPG','Modified SUPG']),
-#             ------------------------------------
-#              Supg_Option_K_And_Epsilon = SIMP(statut = 'o', defaut = 'Modified SUPG', typ = 'TXM',
-#             ------------------------------------
-#                       into = ['No upwinding', 'Classical SUPG','Modified SUPG']),
-#            ), # Fin de SUPG
-
-#         ------------------------------------
-          Mass_Lumping_On_H = SIMP(statut = 'o',typ = 'R', defaut = 0,
-#         ------------------------------------
-            fr = 'TELEMAC offre la possibilite d''effectuer du mass-lumping sur H ou U.\n\
-Ceci revient a ramener tout ou partie (suivant la valeur de ce coefficient) des matrices AM1 (h) ou AM2 (U) \n\
-et AM3 (V) sur leur diagonale.  Cette technique permet d''accelerer le code dans des proportions tres\n\
-importantes et de le rendre egalement beaucoup plus stable. Cependant les solutions obtenues se trouvent lissees.\n\
-Ce parametre fixe le taux de mass-lumping effectue sur h.',
-            ang = 'TELEMAC provides an opportunity to carry out mass-lumping either on C,H or on the velocity. \n\
-This is equivalent to bringing the matrices AM1(h) or AM2(U) and AM3(V) wholly or partly, back onto their diagonal.\n\
-Thanks to that technique, the code can be speeded up to a quite significant extent and it can also be made much \n\
-more stable. The resulting solutions, however, become artificially smoothed. \n\
-This parameter sets the extent of mass-lumping that is performed on h.'),
-
-#         ------------------------------------
-          Mass_Lumping_On_Velocity = SIMP(statut = 'o', typ = 'R', defaut = 0,
-#         ------------------------------------
-            fr = 'Fixe le taux de mass-lumping effectue sur la vitesse.',
-            ang = 'Sets the amount of mass-lumping that is performed on the velocity.'),
-
-#         ------------------------------------
-          Mass_Lumping_For_Weak_Characteristics = SIMP(statut = 'o',typ = 'R',defaut = 0,
-#         ------------------------------------
-            fr = 'Applique a la matrice de masse',
-            ang = 'To be applied to the mass matrix',),
-#         ------------------------------------
-          Free_Surface_Gradient_Compatibility = SIMP(statut = 'o',typ = 'R',defaut = 1.,
-#         ------------------------------------
-            fr = 'Des valeurs inferieures a 1 suppriment les oscillations parasites',
-            ang = 'Values less than 1 suppress spurious oscillations'),
-
-#          ------------------------------------
-           Number_Of_Sub_Iterations_For_Non_Linearities = SIMP(statut = 'o',typ = 'I',
-#          ------------------------------------
-             defaut = 1,
-             fr = 'Permet de reactualiser, pour un meme pas de temps, les champs convecteur et propagateur \n\
-au cours de plusieurs sous-iterations.\n\
-A la premiere sous-iteration, ces champs sont donnes par C et le champ de vitesses au pas de temps precedent.\n\
-Aux iterations suivantes, ils sont pris egaux au champ de vitesse obtenu a la fin de la sous-iteration precedente. \n\
-Cette technique permet d''ameliorer la prise en compte des non linearites.',
-            ang = 'Used for updating, within one time step, the advection and propagation field.\n\
-upon the first sub-iteration, \n\
-these fields are given by C and the velocity field in the previous time step. At subsequent iterations, \n\
-the results of the previous sub-iteration is used to update the advection and propagation field.\n\
-The non-linearities can be taken into account through this technique.',),
-
-
-     ), # fin Advection
-
-#PNPNPN Il faut recalculer le MCSIMP Propagation
-#    ------------------------------------
-     Propagation = FACT(statut = 'o',
-#    ------------------------------------
-#         ------------------------------------
-          Initial_Guess_For_H = SIMP(statut = 'o',typ = 'TXM',
-#         ------------------------------------
-              into = ['Zero', 'Previous', 'Extrapolation'],
-              defaut = 'Previous',
-              fr = 'Tir initial du solveur de l etape de propagation.  Offre la possibilite de modifier la valeur initiale de DH,\n\
-accroissement de H, a chaque iteration, dans l etape de propagation en utilisant les valeurs finales de cette variable \n\
-aux pas de temps precedents. Ceci peut permettre daccelerer la vitesse de convergence lors de la resolution du systeme.',
-              ang = 'Initial guess for the solver in the propagation step.  Makes it possible to modify the initial value of H, \n\
-upon each iteration in the propagation step, by using the ultimate values this variable had in the earlier time steps.\n\
-Thus, the convergence can be speeded up when the system is being solved.',),
-
-
-#         ------------------------------------
-          Linearized_Propagation = SIMP(statut = 'o',typ = bool,defaut = False,
-#         ------------------------------------
-             fr = 'Permet de lineariser l''etape de propagation; \n\
-par exemple lors de la realisation de cas tests pour lesquels on dispose d une solution analytique dans le cas linearise.',
-             ang = 'Provided for linearizing the propagation step; \n\
-e.g. when performing test-cases for which an analytical solution in the linearized case is available.' ),
-
-#         ------------------------------------
-          b_linear = BLOC(condition = "Linearized_Propagation == True ",
-#         ------------------------------------
-#             ------------------------------------
-              Mean_Depth_For_Linearization = SIMP(statut = 'o',typ = 'R', defaut = 0.0, val_min = 0,
-#             ------------------------------------
-               fr = 'Fixe la hauteur d eau autour de laquelle s effectue la linearisation lorsque l option PROPAGATION LINEARISEE est choisie.',
-               ang = 'Sets the water depth about which the linearization is made when the LINEARIZED PROPAGATION OPTION is selected.'),
-
-#             ------------------------------------
-              Initial_Guess_For_U = SIMP(statut = 'o',typ = 'TXM',
-#             ------------------------------------
-                into = ['Zero', 'Previous', 'Extrapolation'],
-                defaut = 'Previous',
-                fr = 'Tir initial du solveur de l etape de propagation.  Offre la possibilite de modifier la valeur initiale de DH,\n\
-accroissement de U, a chaque iteration, dans l etape de propagation en utilisant les valeurs finales de cette variable \n\
-aux pas de temps precedents. Ceci peut permettre daccelerer la vitesse de convergence lors de la resolution du systeme.',
-                ang = 'Initial guess for the solver in the propagation step.  Makes it possible to modify the initial value of U, \n\
-upon each iteration in the propagation step, by using the ultimate values this variable had in the earlier time steps.\n\
-Thus, the convergence can be speeded up when the system is being solved.',),
-
-          ), # fin b_linear
-
-      ), # fin Propagation
-
-
-#    ------------------------------------
-     Diffusion = FACT(statut = 'o',
-#    ------------------------------------
-
-#         ------------------------------------
-           Diffusion_Of_Velocity = SIMP( statut='o',typ=bool,
-#         ------------------------------------
-             defaut=False ,
-             fr = 'Permet de decider si lon prend ou non en compte la diffusion des vitesses.',
-             ang= 'Makes it possible to decide whether the diffusion of velocity (i.e. viscosity) is taken into account or not.',
-          ),
-#        ------------------------------------
-         b_Diffu = BLOC(condition = 'Diffusion_Of_Velocity == True',
-#        ------------------------------------
-#            ------------------------------------
-             Implicitation_For_Diffusion_Of_Velocity = SIMP(statut = 'o',typ = 'R',defaut = 0,
-#            ------------------------------------
-              fr = 'Fixe la valeur du coefficient d''implicitation sur les termes de diffusion des vitesses',
-              ang = 'Sets the value of the implicitation coefficient for the diffusion of velocity',),
-
-#            ------------------------------------
-             Option_For_The_Diffusion_Of_Velocities = SIMP( statut='o',typ='TXM',
-#            ------------------------------------
-                  defaut='Diffusion in the form div( nu grad(U))' ,
-                  into=['Diffusion in the form div( nu grad(U))','Diffusion in the form 1/h div ( h nu grad(U))'],
-                  fr = '1: Diffusion de la forme div( nu grad(U) )   2: Diffusion de la forme 1/h div ( h nu grad(U) )',
-                  ang= '1: Diffusion in the form div( nu grad(U) )   2: Diffusion in the form 1/h div ( h nu grad(U) )',),
-
-                ), # fin b_Diffu
-     ), # fin Diffusion
-#    ------------------------------------
-     Discretization_Implicitation = FACT(statut = 'f',
-#    ------------------------------------
-
-#         ------------------------------------------------------------------
-          Discretizations_In_Space_U_And_V = SIMP(statut = 'o',typ = 'TXM', 
-#         ------------------------------------------------------------------
-              into = ["Linear", "Quasi-bubble", "Quadratic"],
-              defaut = "Linear",),
-#         ------------------------------------------------------------------
-          Discretizations_In_Space_H = SIMP(statut = 'o',typ = 'TXM', 
-#         ------------------------------------------------------------------
-              into = ["Linear", "Quasi-bubble", "Quadratic"],
-              defaut = "Linear",),
-#         ------------------------------------------------------------------
-          Discretizations_In_Space_K_And_Epsilon = SIMP(statut = 'f',typ = 'TXM', 
-#         ------------------------------------------------------------------
-              into = ["Linear", "Quasi-bubble", "Quadratic"],
-              defaut = "Linear",),
-#         ------------------------------------------------------------------
-          Discretizations_In_Space_Tracers = SIMP(statut = 'f',typ = 'TXM', 
-#         ------------------------------------------------------------------
-              into = ["Linear", "Quasi-bubble", "Quadratic"],
-              defaut = "Linear",),
-
-#         ------------------------------------
-          Implicitation_For_Depth = SIMP(statut = 'o',typ = 'R',defaut = 0.55,
-#         ------------------------------------
-              fr = 'Fixe la valeur du coefficient d''implicitation sur C dans l''etape de propagation (cf.  Note de principe).\n\
-Les valeurs inferieures a 0.5 donnent un schema instable.',
-             ang = 'Sets the value of the implicitation coefficient for C (the celerity of waves) in the propagation step (refer to principle note).\n\
-Values below 0.5 result in an unstable scheme.'),
-
-#         ------------------------------------
-          Implicitation_For_Velocity = SIMP(statut = 'o',typ = 'R',defaut = 0.55,
-#         ------------------------------------
-             fr = 'Fixe la valeur du coefficient d''implicitation sur la vitesse dans l''etape de propagation (cf.  Note de principe).\n\
-Les valeurs inferieures a 0.5 donnent un schema instable.',
-             ang = 'Sets the value of the implicitation coefficient for velocity in the propagation step (refer to principle note).\n\
-Values below 0.5 result in an unstable condition.'),
-
-      ), # fin Discretization_Implicitation
-      
-
-#    ------------------------------------
-     Tidal=FACT(statut='f',
-#    ------------------------------------
-     Tidal_Flats = SIMP(statut = 'o',typ = bool,defaut = True,
-#    ------------------------------------
-         fr = 'permet de supprimer les tests sur les bancs decouvrants si on est certain qu''il n''y en aura pas, En cas de doute : oui',
-         ang = 'When no,the specific treatments for tidal flats are by-passed. This spares time, but of course you must be sure that you have no tidal flats'),
-
-#    ------------------------------------
-     b_tidal_flats = BLOC(condition = 'Tidal_Flats == True',
-#    ------------------------------------
-#         ------------------------------------
-          Option_For_The_Treatment_Of_Tidal_Flats = SIMP(statut = 'o',typ = 'TXM',
-#         ------------------------------------
-             into = ["Equations solved everywhere with correction on tidal flats", "Dry elements frozen", "1 but with porosity (defina method)",],
-             defaut="Equations solved everywhere with correction on tidal flats",),
-
-#             ------------------------------------
-              b_option_tidal_flats = BLOC(condition = 'Option_For_The_Treatment_Of_Tidal_Flats == "Equations solved everywhere with correction on tidal flats"',
-#             ------------------------------------
-#                 ------------------------------------
-                  Treatment_Of_Negative_Depths = SIMP( statut = 'o',typ = 'TXM',
-#                 ------------------------------------
-                     into = [ 'No treatment', 'Smoothing', 'Flux control'],
-                     defaut = 'Smoothing' ,),
-              ), # fin bloc b_option_tidal_flats
-
-#         ------------------------------------
-          Threshold_For_Negative_Depths = SIMP( statut = 'o',typ = 'R', defaut = 0.0 ,
-#         ------------------------------------
-             fr = 'En dessous du seuil, les hauteurs negatives sont lissees',
-             ang = 'Below the threshold the negative depths are smoothed',),
-
-#         ------------------------------------
-          Threshold_Depth_For_Receding_Procedure = SIMP(statut = 'o',typ = 'R',defaut = 0 ,
-#         ------------------------------------
-              fr = 'Si > 0., declenche la procedure de ressuyage qui evite le franchissement parasite des digues mal discretisees',
-             ang = 'If > 0., will trigger the receding procedure that avoids overwhelming of dykes which are too loosely discretised ',),
-
-          
-#         ------------------------------------
-          H_Clipping = SIMP(statut = 'o',typ = bool,defaut = False,
-#         ------------------------------------
-             fr = 'Determine si on desire ou non limiter par valeur inferieure la hauteur d eau H (dans le cas des bancs decouvrants par exemple).',
-             ang = 'Determines whether limiting the water depth H by a lower value desirable or not. (for instance in the case of tidal flats)\n\
-This key-word may have an influence on mass conservation since the truncation of depth is equivalent to adding mass.',),
-
-#             ------------------------------------
-              b_clipping = BLOC(condition = 'H_Clipping == True',
-#             ------------------------------------
-#                 ------------------------------------
-                  Minimum_Value_Of_Depth = SIMP( statut = 'o',typ = 'R', defaut = 0.0 ,
-#                 ------------------------------------
-                      fr = 'Fixe la valeur minimale de a lorsque loption CLIPPING DE H est activee.',
-                      ang = 'Sets the minimum H value when option H CLIPPING is implemented. Not fully implemented.',),
-              ), # fin b_clipping
-    ), # fin bloc b_tidal_flats
-    ), # fin bloc tidal
-
-#    ------------------------------------
-     Various = FACT(
-#    ------------------------------------
-
-#         ------------------------------------
-         Newmark_Time_Integration_Coefficient = SIMP( statut = 'o',typ = 'TXM',
-#         ------------------------------------
-             defaut = "Euler explicite",
-             into = ["Euler explicite","Order 2 in time"],),
-
-#         ------------------------------------
-          Option_For_Characteristics = SIMP( statut = 'o',typ = 'TXM',
-#         ------------------------------------
-            defaut = "Strong" ,
-            into = ['Strong','Weak',],),
-
-     ),# fin Various
-
-   
-)# fin NUMERICAL_PARAMETERS
-
-# -----------------------------------------------------------------------
-PHYSICAL_PARAMETERS = PROC(nom = "PHYSICAL_PARAMETERS",op = None,
-# -----------------------------------------------------------------------
-        UIinfo = { "groupes" : ( "CACHE", )},
-#    ------------------------------------
-     Friction_Setting = FACT(statut = 'o',
-#    ------------------------------------
-#         ------------------------------------
-          Friction_Data_File = SIMP( statut = 'o',
-#         ------------------------------------
-               typ = ('Fichier', ';;All Files (*)'),
-               fr = 'fichier de donnees pour le frottement',
-               ang = 'friction data file',),
-
-#         ------------------------------------
-          Depth_In_Friction_Terms = SIMP( statut = 'o',typ = 'TXM',
-#         ------------------------------------
-               defaut = "Nodal" ,
-               into = ("Nodal", "Average"),),
-
-#         ------------------------------------
-          Law_Of_Bottom_Friction = SIMP( statut = 'o',typ = 'TXM',
-#         ------------------------------------
-               defaut = 'No friction' ,
-               into = ('No friction', 'Haaland', 'Chezy', 'Strickler', 'Manning', 'Nikuradse','Log law','Colebrooke_white'),
-               fr = 'selectionne le type de formulation utilisee pour le calcul du frottement sur le fond.',
-               ang = 'Selects the type of formulation used for the bottom friction.',),
-
-#              ------------------------------------
-               b_Law_Friction = BLOC(condition = "Law_Of_Bottom_Friction!= 'No friction'",
-#              ------------------------------------
-#                  ------------------------------------
-                   Friction_Coefficient = SIMP( statut = 'o',typ = 'R',
-#                  ------------------------------------
-                         defaut = 50.0 ,
-                         fr = 'Fixe la valeur du coefficient de frottement pour la formulation choisie.  \
-Attention, la signification de ce chiffre varie suivant la formule choisie : \
-1 : coefficient lineaire 2 : coefficient de Chezy 3 : coefficient de Strickler \
-4 : coefficient de Manning 5 : hauteur de rugosite de Nikuradse',
-                         ang = 'Sets the value of the friction coefficient for the selected formulation. \
-It is noteworthy that the meaning of this figure changes according to the selected formula (Chezy, Strickler, etc.) : \
-1 : linear coefficient 2 : Chezy coefficient 3 : Strickler coefficient 4 : Manning coefficient 5 : Nikuradse grain size',),
-              ), # Fin b_Law_Friction
-
-#              ------------------------------------
-               b_Colebrooke_White = BLOC(condition = "Law_Of_Bottom_Friction == 'Colebrooke_white'",
-#              ------------------------------------
-#                  ------------------------------------
-                   Manning_Default_Value_For_Colebrook_White_Law = SIMP( statut = 'o',typ = 'R',
-#                  ------------------------------------
-                       defaut = 0.02 ,
-                       fr = 'valeur par defaut du manning pour la loi de frottement de  Colebrook-White ',
-                       ang = 'Manning default value for the friction law of Colebrook-White ',),
-               ), # Fin b_Colebrooke_White
-
-#         ------------------------------------
-          Non_Submerged_Vegetation_Friction = SIMP( statut = 'o',typ = bool,
-#         ------------------------------------
-              defaut = False ,
-              fr = 'calcul du frottement du a la vegetation non submergee',
-              ang = 'friction calculation of the non-submerged vegetation',),
-
-#              ------------------------------------
-               b_Non_Sub = BLOC(condition = ' Non_submerged_Vegetation_Friction == True',
-#              ------------------------------------
-#                  ------------------------------------
-                   Diameter_Of_Roughness_Elements = SIMP( statut = 'o',typ = 'R',
-#                  ------------------------------------
-                       defaut = 0.006 ,
-                       fr = 'diametre des elements de frottements',
-                       ang = 'diameter of roughness element',),
-
-#                  ------------------------------------
-                   Spacing_Of_Roughness_Elements = SIMP( statut = 'o',typ = 'R',
-#                  ------------------------------------
-                      defaut = 0.14 ,
-                      fr = 'espacement des elements de frottement',
-                      ang = 'spacing of rouhness element',),
-            ), # Fin b_Non_Sub
-
-#         ------------------------------------
-          Law_Of_Friction_On_Lateral_Boundaries = SIMP( statut = 'o',typ = 'TXM',
-#         ------------------------------------
-              defaut = "No friction" ,
-              into = ("No friction", "Haaland", "Chezy", "Strickler",  "Manning", "Nikuradse", "Log law", "Colebrook-white"),
-              fr = 'selectionne le type de formulation utilisee pour le calcul du frottement sur les parois laterales.',
-              ang = 'Selects the type of formulation used for the friction on lateral boundaries.',),
-
-
-#              ------------------------------------
-               b_Fric = BLOC(condition = 'Law_Of_Friction_On_Lateral_Boundaries != "No friction"',
-#              ------------------------------------
-
-# PNPNPN soizic ?Ne faut-il pas un bloc sur Law_Of_Friction_On_Lateral_Boundaries
-#                ------------------------------------
-                 Roughness_Coefficient_Of_Boundaries = SIMP( statut = 'o',typ = 'R',
-#                ------------------------------------
-                    defaut = 100.0 ,
-                    fr = 'Fixe la valeur du coefficient de frottement sur les frontieres solides avec un regime turbulent rugueux\n\
- sur les bords du domaine.  meme convention que pour le coefficient de frottement',
-                     ang = 'Sets the value of the friction coefficient of the solid boundary with the bed roughness option. Same meaning than friction coefficient',),
-
-#               ------------------------------------
-                Maximum_Number_Of_Friction_Domains = SIMP( statut = 'o',typ = 'I',
-#               ------------------------------------
-                   defaut = 10 ,
-                   fr = 'nombre maximal de zones pouvant etre definies pour le frottement. Peut etre augmente si necessaire',
-                   ang = 'maximal number of zones defined for the friction.  Could be increased if needed',),
-               ),
-
-#         ------------------------------------
-          Definition_Of_Zones = SIMP(typ = bool, statut = 'o', defaut = False,
-#         ------------------------------------
-               fr = 'Declenche l''appel a def_zones, pour donner un numero de zone a chaque point',
-               ang = 'Triggers the call to def_zones to give a zone number to every point',),
-
-#              ------------------------------------
-               b_def_zone = BLOC (condition = 'Definition_Of_Zones == True',
-#              ------------------------------------
-#                  ------------------------------------
-                   Consigne = SIMP(statut = "o",homo = 'information',typ = "TXM", defaut = "complete DEF_ZONES subroutine"),
-#                  ------------------------------------
-               ), # fin b_def_zone
-
-     ), # Fin du bloc Friction
-#    ------------------------------------
-     Meteorology = FACT(statut = 'f',
-#    ------------------------------------
-
-#         ------------------------------------
-          Wind = SIMP(statut = 'o',typ = bool,defaut = False,
-#         ------------------------------------
-             fr = 'Prise en compte ou non des effets du vent.',
-             ang = 'Determines whether the wind effects are to be taken into account or not.'),
-
-#         ------------------------------------
-          b_Wind = BLOC(condition = "Wind == True",
-#         ------------------------------------
-#             ------------------------------------
-              Wind_Velocity_Along_X = SIMP(statut = 'o',typ = 'R', defaut = 0.,
-#             ------------------------------------
-                 fr = 'Composante de la vitesse du vent suivant l''axe des x (m/s).',
-                 ang = 'Wind velocity, component along x axis (m/s).',),
-
-#             ------------------------------------
-              Wind_Velocity_Along_Y = SIMP(statut = 'o',typ = 'R',defaut = 0.,
-#             ------------------------------------
-                 fr = 'Composante de la vitesse du vent suivant l''axe des y (m/s).',
-                 ang = 'Wind velocity, component along y axis (m/s).',),
-
-#             ------------------------------------
-              Threshold_Depth_For_Wind = SIMP(statut = 'o',typ = 'R',defaut = 0.,
-#             ------------------------------------
-                 fr = 'Retire la force due au vent dans les petites profondeurs',
-                 ang = 'Wind is not taken into account for small depths' ),
-
-#             ------------------------------------
-              Coefficient_Of_Wind_Influence = SIMP( statut = 'o',typ = 'R', defaut = 0.0 ,
-#             ------------------------------------
-                 fr = 'Fixe la valeur du coefficient d entrainement du vent (cf.  Note de principe).',
-                 ang = 'Sets the value of the wind driving coefficient.  Refer to principle note.',),
-
-#             ------------------------------------
-              Option_For_Wind = SIMP( statut = 'o',typ = 'TXM', defaut = 0 ,
-#             ------------------------------------
-                 into = ["No wind","Constant in time and space","Variable in time","Variable in time and space"],
-                 fr = 'donne les options pour introduire le vent',
-                 ang = 'gives option for managing the wind'),
-
-#             ------------------------------------
-              file_For_wind = BLOC (condition = 'Option_For_Wind == "Variable in time" or Option_For_Wind == "Variable in time and space"',
-#             ------------------------------------
-#                  ------------------------------------
-                   Consigne = SIMP(statut = "o",homo = 'information',typ = "TXM",
-#                  ------------------------------------
-                          defaut = "give formated file 3"),
-              ), # fin bloc file_For_wind
-
-#             ------------------------------------
-              speed_For_wind = BLOC (condition = 'Option_For_Wind == "Constant in time and space"',
-#             ------------------------------------
-#                  ------------------------------------
-                   Speed_And_Direction_Of_Wind = SIMP( statut = 'o', defaut = (0.0, 0.0) , 
-#                  ------------------------------------
-                      typ = Tuple(2),validators = VerifTypeTuple(('R','R')),
-                      fr = 'Donne la vitesse et la direction (en degres de 0 a 360, 0 etant y = 0 et x = +inf) du vent',
-                      ang = 'gives the speed and direction (degre (from 0 to 360), 0 given y = 0 anx x = +infinity)',),
-              ), # speed_For_wind
-
-          ), # fin b_Wind
-
-#         ------------------------------------
-          Air_Pressure = SIMP(statut = 'o',typ = bool, defaut = False,
-#         ------------------------------------
-                fr = 'Permet de decider si l''on prend ou non en compte l''influence d''un champ de pression.',
-                ang = 'Provided to decide whether the influence of an atmosphere field is taken into account or not.'),
-
-#         ------------------------------------
-          b_air = BLOC(condition = "Air_Pressure == True",
-#         ------------------------------------
-#              ------------------------------------
-               Value_Of_Atmospheric_Pressure = SIMP( statut = 'o',typ = 'R',
-#              ------------------------------------
-                  defaut = 100000.0 ,
-                  fr = 'donne la valeur de la pression atmospherique lorsquelle est constante en temps et en espace',
-                  ang = 'gives the value of atmospheric pressure when it is contant in time and space',),
-           ), # fin b_air
-
-#         ------------------------------------
-          Rain_Or_Evaporation = SIMP(statut = 'o',typ = bool,
-#         ------------------------------------
-              defaut = False,
-              fr  = 'Pour ajouter un apport ou une perte d''eau en surface.',
-              ang = 'to add or remove water at the free surface. ',),
-
-#         -----------------------------------
-          b_Rain = BLOC(condition = "Rain_Or_Evaporation == True",
-#         ------------------------------------
-#              ------------------------------------
-               Rain_Or_Evaporation_In_Mm_Per_Day = SIMP(statut = 'o',typ = 'I',defaut = 0.),
-#              ------------------------------------
-          ), # fin b_Rain
-
-    ), # fin Meteorology
-
-#    ------------------------------------
-     Wave = FACT(statut = 'f',
-#    ------------------------------------
-
-#       ------------------------------------
-        Wave_Driven_Currents = SIMP(statut = 'o',
-#       ------------------------------------
-            typ = bool, defaut = False,
-            fr = 'Active la prise en compte des courants de houle',
-            ang = 'Wave driven currents are taken into account.'),
-
-#       ------------------------------------
-        b_Wave = BLOC(condition = "Wave_Driven_Currents == True",
-#       ------------------------------------
-#           ------------------------------------
-            Record_Number_In_Wave_File = SIMP(statut = 'o',typ = 'I', defaut = 1,
-#           ------------------------------------
-                fr = 'Numero d enregistrement dans le fichier des courants de houle',
-                ang = 'Record number to read in the wave driven currents file'),
-        ), # fin b_Wave
-    ), # fin Wave
-
-
-
-#    ------------------------------------
-     Parameters_Estimation = FACT(statut = 'f',
-#    ------------------------------------
-#         ------------------------------------
-          Parameter_Estimation = SIMP( statut = 'o',typ = 'TXM', into = ["Friction","Frottement","Steady"],
-#         ------------------------------------
-               fr = 'Liste des parametres a estimer', 
-               ang = 'List of parameter to be estimated',),
-         
-#         ------------------------------------
-          Identification_Method = SIMP( statut = 'o',typ = 'TXM',
-#         ------------------------------------
-               into = ["List of tests", "Gradient simple", "Conj gradient", "Lagrange interp."],
-               defaut = 'GRadient simple',),
-
-#         ------------------------------------
-          Maximum_Number_Of_Iterations_For_Identification = SIMP(statut = 'o',typ = 'I',defaut = 20,
-#         ------------------------------------
-              fr = 'chaque iteration comprend au moins un calcul direct et un calcul adjoint',
-              ang = 'every iteration implies at least a direct and an adjoint computation', ),
-
-#         ------------------------------------
-          Cost_Function = SIMP(statut = "f",typ = 'TXM', 
-#         ------------------------------------
-              defaut = 'Computed with h, u , v',
-              into = ['Computed with h, u , v', 'Computed with c, u , v'],),
-
-#         ------------------------------------
-         Tolerances_For_Identification = FACT( statut = 'o',
-#         ------------------------------------
-# PNPNPN recalculer en liste de 4 reels 
-#             ------------------------------------
-              Tolerance_For_H = SIMP( statut = 'o',typ = 'R', defaut=1.E-3, 
-#             ------------------------------------
-                   fr  = "precision absolue sur H",
-                   ang = "absolute precision on H",),
-#             ------------------------------------
-              Tolerance_For_U = SIMP( statut = 'o',typ = 'R', defaut=1.E-3, 
-#             ------------------------------------
-                   fr  = "precision absolue sur U",
-                   ang = "absolute precision on U",),
-#             ------------------------------------
-              Tolerance_For_V = SIMP( statut = 'o',typ = 'R', defaut=1.E-3, 
-#             ------------------------------------
-                   fr  = "precision absolue sur V",
-                   ang = "absolute precision on V",),
-#             ------------------------------------
-              Tolerance_For_cout = SIMP( statut = 'o',typ = 'R', defaut=1.E-4, 
-#             ------------------------------------
-                   fr  = "precision relative sur la fonction cout",
-                   ang = "relative precision on the cost function",),
-                ),# fin Tolerances_For_Identification
-
-      ), #  fin fact Parameters_Estimation
-
-#    ------------------------------------
-     Sources = FACT( statut = 'f',
-#    ------------------------------------
-#    ------------------------------------
-     Number_Of_Sources = SIMP( statut = 'o',typ = 'I', defaut = 0 ,),
-#    ------------------------------------
-# Attention a la sortie a reformatter. voir page 68 du user manuel V7
-
-#       ------------------------------------
-        sources_exists = BLOC(condition = "Number_Of_Sources!= 0",
-#       ------------------------------------
-
-#           ------------------------------------
-            Sources_File = SIMP( statut = 'o',
-#           ------------------------------------
-                typ = ('Fichier', 'All Files (*)',),
-                fr = 'Nom du fichier contenant les informations variables en temps des sources',
-                ang = 'Name of the file containing time-dependent information on sources',),
-
-#PNPNPNPN saisir autant de source que le nombre
-#           ------------------------------------
-            Source = FACT(statut = 'o',
-#           ------------------------------------
-                 max = "**",
-#               ------------------------------------
-                Abscissae_Of_Sources = SIMP( statut = 'o',
-#               ------------------------------------
-                    typ = Tuple(2),validators = VerifTypeTuple(('R','R')),
-                    fr = 'Valeurs des abscisses des sources de debit et de traceur.',
-                    ang = 'abscissae of sources of flowrate and/or tracer',),
-
-#               ------------------------------------
-                Ordinates_Of_Sources = SIMP( statut = 'o',
-#               ------------------------------------
-                   typ = Tuple(2),validators = VerifTypeTuple(('R','R')),
-                   fr = 'Valeurs des ordonnees des sources de debit et de traceur.',
-                   ang = 'ordinates of sources of flowrate and/or tracer',),
-
-#               ------------------------------------
-                Water_Discharge_Of_Sources = SIMP( statut = 'o',
-#               ------------------------------------
-                   typ = Tuple(2),validators = VerifTypeTuple(('R','R')),
-                   fr = 'Valeurs des debits des sources.',
-                   ang = 'values of water discharge of sources',),
-
-#               ------------------------------------
-                Velocities_Of_The_Sources_Along_X = SIMP( statut = 'f',
-#               ------------------------------------
-                   typ = Tuple(2),validators = VerifTypeTuple(('R','R')),
-                   fr = 'Vitesses du courant a chacune des sources. Si elles ne sont pas donnees, on considere que la vitesse est celle du courant',
-                   ang = 'Velocities at the sources. If they are not given, the velocity of the flow at this location is taken',),
-
-#               ------------------------------------
-                Velocities_Of_The_Sources_Along_Y = SIMP( statut = 'f',
-#               ------------------------------------
-                   typ = Tuple(2),validators = VerifTypeTuple(('R','R')),
-                   fr = 'Vitesses du courant a chacune des sources',
-                   ang = 'Velocities at the sources',),
-
-        ), # Fin du Fact Source
-
-#           ------------------------------------
-            Type_Of_Sources = SIMP(statut = 'o',typ = 'TXM',into = ["Normal","Dirac"],
-#           ------------------------------------
-                   fr = 'Source portee par une base elements finis  Source portee  par une fonction de Dirac',
-                   ang = 'Source term multiplied by a finite element basis,  Source term multiplied by a Dirac function',),
-
-    ),#fin bloc source - exits
-    ),#fin MC source - exits
-
-
-#  ------------------------------------
-   Coriolis_Settings = FACT(statut = 'f',
-#  ------------------------------------
-#      ------------------------------------
-       Coriolis = SIMP( statut='o',typ=bool,
-#      ------------------------------------
-          defaut=False ,
-          fr = 'Prise en compte ou non de la force de Coriolis.',
-          ang= 'The Coriolis force is taken into account or ignored.',),
-
-#     -------------------------------------------------------
-      Coriolis_Coefficient = SIMP( statut='o',typ='R',
-#     -------------------------------------------------------
-            defaut=0.0 ,
-            fr = 'Fixe la valeur du coefficient de la force de Coriolis.  Celui-ci doit etre calcule en fonction de la latitude l \n\
-par la formule FCOR = 2w sin(l) , w etant la vitesse de rotation de la terre.  w = 7.27 10-5 rad/s \n\
-Les composantes de la force de Coriolis sont alors : FU =   FCOR x V FV = - FCOR x U',
-           ang= 'Sets the value of the Coriolis force coefficient, in cartesian coordinates.  This coefficient,\n\
-denoted FCOR in the code, should be equal to 2 w sin(l)d  where w denotes the earth angular speed of rotation and l the latitude. \n\
-w = 7.27 10-5 rad/sec The Coriolis force components are then: FU =  FCOR x V, FV = -FCOR x U In spherical coordinates, the latitudes are known',),
-      ), #fin Coriolis_Settings
-
-
-
-#    ------------------------------------
-     Various = FACT( statut = 'f',
-#    ------------------------------------
-#      ------------------------------------
-       Water_Density = SIMP(statut = 'o',typ = 'R',defaut = 1000.,
-#      ------------------------------------
-         fr = 'Fixe la valeur de la masse volumique de l eau.',
-         ang = 'set the value of water density',
-         ),
-
-#       ------------------------------------
-        Gravity_Acceleration = SIMP(statut = 'o',typ = 'R',defaut = 9.81,
-#       ------------------------------------
-        fr = 'Fixe la valeur de l acceleration de la pesanteur.',
-        ang = 'Set the value of the acceleration due to gravity.',
-         ),
-
-#     ------------------------------------
-      Vertical_Structures = SIMP(statut = 'o',typ = bool,defaut = False,
-#     ------------------------------------
-         fr = 'Prise en compte de la force de trainee de structures verticales',
-         ang = 'drag forces from vertical structures are taken into account',),
-
-#          ------------------------------------
-           maskob = BLOC (condition = 'Vertical_Structures == True',
-#          ------------------------------------
-#              ------------------------------------
-               Consigne = SIMP(statut = "o",homo = 'information',typ = "TXM",
-#              ------------------------------------
-               defaut = "subroutine DRAGFO must then be implemented"),
-           ), # fin maskob
-       ),
-
-#    -----------------------------------------------------------------------
-     Secondary_Currents_Settings = FACT( statut='f',
-#    -----------------------------------------------------------------------
-#    -----------------------------------------------------------------------
-     Secondary_Currents = SIMP( statut='o',typ=bool,
-#    -----------------------------------------------------------------------
-         defaut=False ,
-         fr = 'Pour prendre en compte les courants secondaires',
-         ang= 'Using the parametrisation for secondary currents',
-     ),
-
-#        -----------------------------------------------------------------------
-         b_currents_exists = BLOC(condition = "Secondary_Currents == True", 
-#        -----------------------------------------------------------------------
-#            -----------------------------------------------------------------------
-             Production_Coefficient_For_Secondary_Currents = SIMP( statut='o',typ='R',
-#            -----------------------------------------------------------------------
-               defaut=7.071 ,
-               fr = 'Une constante dans les termes de creation de Omega',
-               ang= 'A constant in the production terms of Omega',),
-
-#            -----------------------------------------------------------------------
-             Dissipation_Coefficient_For_Secondary_Currents = SIMP( statut='o',typ='R',
-#            -----------------------------------------------------------------------
-               defaut=0.5 ,
-               fr = 'Coefficient de dissipation de Omega',
-               ang= 'Coefficient of dissipation term of Omega',),
-
-         ), # fin b_currents_exists
-         ), # fin Secondary_Currents_Settings
-
-#  ------------------------------------
-   Tsunami = FACT(statut = 'f',
-#  ------------------------------------
-#     -------------------------------------------------------
-      Option_For_Tsunami_Generation = SIMP( statut='o',typ='I', defaut=0 ,
-#     -------------------------------------------------------
-        fr = '',
-        ang= '',),
-
-#     -------------------------------------------------------
-      Physical_Characteristics_Of_The_Tsunami = SIMP( statut='o',typ='R',
-#     -------------------------------------------------------
-      min=10,max=10,
-      defaut=(100.0, 210000.0, 75000.0, 13.6, 81.0, 41.0, 110.0, 0.0, 0.0, 3.0) ,
-      fr = '',
-      ang= '',),
-      ), #fin Tsunami
-
-)# fin PHYSICAL_PARAMETERS
-
-# -----------------------------------------------------------------------
-OUTPUT_FILES = PROC(nom = "OUTPUT_FILES",op = None,
-# -----------------------------------------------------------------------
-
-#  ------------------------------------
-   Graphic_And_Listing_Printouts = FACT(statut = 'f',
-#  ------------------------------------
-#       ------------------------------------
-        Variables_For_Graphic_Printouts = SIMP(statut = 'o',max = "**", typ = 'TXM',
-#       ------------------------------------
-                into=[ "Velocity along X axis (m/s)", "Velocity along Y axis (m/s)", "Wave celerity (m/s)", "Water depth (m)",
-                      "Free surface elevation (m)", "Bottom elevation (m)", "Froude number", "Scalar flowrate of fluid (m2/s)", 
-                      "Tracer 1 etc. ", "Turbulent kinetic energy in K-Epsilon model (J/kg)", "Dissipation of turbulent energy (W/kg)", 
-                      "Turbulent viscosity of K-Epsilon model (m2/s)", "Flowrate along X axis (m2/s)", "Flowrate along Y axis (m2/s)",
-                      "Scalar velocity (m/s)", "Wind along X axis (m/s)", "Wind along Y axis (m/s)", "Air pressure (Pa)", 
-                      "Friction coefficient", "Drift along X (m)", "Drift along Y (m)", "Courant number", "Supplementary variable N", 
-                      "Supplementary variable O", "Supplementary variable R", "Supplementary variable Z", "Maximum elevation", 
-                      "Time of maximum elevation", "Maximum velocity", "Time of maximum velocity", "Friction velocity"],
-                ),
-                #homo="SansOrdreNiDoublon"),
-
-#       ------------------------------------
-        Graphic_Printout_Period = SIMP(statut = 'o', typ = 'I',defaut = 1,
-#       ------------------------------------
-                    fr = 'Determine la periode en nombre de pas de temps d''impression des VARIABLES POUR LES SORTIES GRAPHIQUES \n\
-                         dans le FICHIER DES RESULTATS.',
-                    ang = 'Determines, in number of time steps, the printout period for the VARIABLES FOR GRAPHIC PRINTOUTS in the RESULTS FILE.' ,),
-
-#       ------------------------------------
-        Number_Of_First_Time_Step_For_Graphic_Printouts = SIMP(statut = 'o', typ = 'I',defaut = 1,
-#       ------------------------------------
-                   fr = 'Determine le nombre de pas de temps a partir duquel debute l''ecriture des resultats dans le listing.',
-                   ang = 'Determines the number of time steps after which the results are first written into the listing.'),
-
-#       ------------------------------------
-        Results_File = SIMP( statut = 'o', 
-#       ------------------------------------
-               typ = ('Fichier', 'All Files (*)',),
-               fr = 'Nom du fichier dans lequel sont ecrits les resultats du calcul avec la periodicite donnee  PERIODE POUR LES SORTIES GRAPHIQUES.', 
-               ang = 'Name of the file into which the computation results shall be written, the periodicity being given by  GRAPHIC PRINTOUT PERIOD.',),
-
-#       ------------------------------------
-          Results_File_Format = SIMP( statut = 'o',typ = 'TXM',into = ['Serafin','MED','SerafinD'], defaut = 'Serafin',
-#       ------------------------------------
-                                fr = 'Format du fichier de resultats. Les valeurs possibles sont : \n\
-     - SERAFIN : format standard simple precision pour Telemac;  \n\
-     - SERAFIND: format standard double precision pour Telemac; \n\
-     - MED     : format MED base sur HDF5' ,
-                               ang = 'Results file format. Possible values are:\n \
-     - SERAFIN : classical single precision format in Telemac;\n\
-     - SERAFIND: classical double precision format in Telemac; \n\
-     - MED     : MED format based on HDF5' ,
-                                   ),
-
-#       ------------------------------------
-        Listing_Printout_Period = SIMP(statut = 'o', typ = 'I',defaut = 1,
-#       ------------------------------------
-          fr = 'Determine la periode en nombre de pas de temps d''impression des variables',
-          ang = 'Determines, in number of time steps, the printout period for the variables',),
-
-#       ------------------------------------
-        Listing_Printout = SIMP( statut='o',typ=bool, defaut=True ,
-#       ------------------------------------
-           fr = 'Sortie des resultats sur support papier.  Si on met False, le listing ne contient que lentete et la mention FIN NORMALE DU PROGRAMME : La Valeur False est  a eviter',
-            ang= 'Result printout on hard copy.  When NO is selected, the listing only includes the heading and the phrase "NORMAL END OF PROGRAM" In addition, the options MASS BALANCE and VALIDATION are inhibited. Value False  Not recommended for use.',
-     ),
-
-#       ------------------------------------
-        Variables_To_Be_Printed = SIMP(statut = 'o',max = "**", typ = 'TXM',
-#       ------------------------------------
-            into = [ "Velocity along X axis (m/s)", "Velocity along Y axis (m/s)", "Wave celerity (m/s)", "Water depth (m)",
-                   "Free surface elevation (m)", "Bottom elevation (m)", "Froude number", "Scalar flowrate of fluid (m2/s)",
-                   "Tracer", "Turbulent kinetic energy in K-Epsilon model (J/kg)", "Dissipation of turbulent energy (W/kg)",
-                   "Turbulent viscosity of K-Epsilon model (m2/s)", "Flowrate along x axis (m2/s)", "Flowrate along y axis (m2/s)",
-                   "Scalar velocity (m/s)", "Wind along x axis (m/s)", "Wind along y axis (m/s)", "Air pressure (Pa)",
-                   "Friction coefficient", "Drift along x (m)", "Drift along y (m)", "Courant number",
-                   "Supplementary variable N", "Supplementary variable O", "Supplementary variable R", "Supplementary variable Z"]
-,homo="SansOrdreNiDoublon"),
-
-   ),# fin Listing_Graphic_Printouts
-
-#  ------------------------------------
-   Formatted_Results_File = SIMP( statut = 'f',
-#  ------------------------------------
-        typ = ('Fichier','All Files (*)',),
-        fr = 'Fichier de resultats formate mis a la disposition de l utilisateur. \
-Les resultats a placer dans ce fichier seront a ecrire sur le canal 29.',
-       ang = 'Formatted file of results made available to the user.  \
-The results to be entered into this file shall be written on channel 29.',),
-
-
-#  ------------------------------------
-   Binary_Results_File = SIMP( statut = 'f', 
-#  ------------------------------------
-         typ = ('Fichier', ';;All Files (*)',), 
-         fr = "Fichier de resultats code en binaire mis a la disposition de l'utilisateur.\n\
-Les resultats a placer dans ce fichier seront a ecrire sur le canal 28.",
-         ang = "Additional binary-coded result file made available to the user. \n\
-The results to be entered into this file shall be written on channel 28.",),
-
-
-#  ------------------------------------
-   Output_Of_Initial_Conditions = SIMP(typ = bool, statut = 'o', 
-#  ------------------------------------
-        defaut = True,
-        fr = 'Si Vrai, impression des conditions initiales dans les resultats',
-        ang = 'If True, output of initial conditions in the results'),
-
-#  ------------------------------------
-   Number_Of_Private_Arrays = SIMP( statut='o',typ='I',
-#  ------------------------------------
-    defaut=0 ,
-    fr = 'Nombre de tableaux mis a disposition de l utilisateur',
-    ang= 'Number of arrays for own user programming',
-     ),
-
-
-#  ------------------------------------
-   Information_About_Solver = SIMP(typ = bool, statut = 'f',
-#  ------------------------------------
-       defaut = False,
-       fr = "Si vrai, Donne a chaque pas de temps le nombre d'iterations necessaires a la convergence du solveur de l'etape de propagation.",
-       ang = "if True, prints the number of iterations that have been necessary to get the solution of the linear system.",),
-
-#  ------------------------------------
-   Mass_Balance = SIMP( statut='o',typ=bool,
-#  ------------------------------------
-       defaut=False ,
-       fr = 'Determine si l on effectue ou non le bilan de masse sur le domaine.  Cette procedure calcule a chaque pas de temps : \n\
-- les flux aux entrees et sorties du domaine, - le flux global a travers lensemble des parois du domaine (liquides ou solides) \n\
-- l erreur relative sur la masse pour ce pas de temps.\n\
-En fin de listing, on trouve l erreur relative sur la masse pour l ensemble du calcul.\n\
-Il ne sagit que dun calcul indicatif car il nexiste pas dexpression compatible du debit en formulation c,u,v.',
-
-      ang= 'Determines whether a check of the mass-balance over the domain is mader or not.\n\
-This procedures computes the following at each time step: the domain inflows and outflows, the overall flow across all the boundaries,\n\
-the relative error in the mass for that time step.  The relative error in the mass over the whole computation can be found at the end of the listing.',
-     ),
-
-#  ------------------------------------
-  Controls = FACT( statut='f',
-#  ------------------------------------
-#      ------------------------------------
-       Control_Sections = SIMP(statut = 'f',typ = Tuple(2),validators = VerifTypeTuple(('I','I')),
-#      ------------------------------------
-            fr = 'Couples de points (numeros globaux dans le maillage) entre lesquels les debits instantanes et cumules seront donnes.',
-            ang = 'Couples of points (global numbers in the mesh) defining sections where the instantaneous and cumulated discharges will be given',),
-
-#      ------------------------------------
-       Printing_Cumulated_Flowrates = SIMP( statut = 'o',typ = bool, defaut = False ,
-#      ------------------------------------
-            fr = 'impression du flux cumule a travers les sections de controle',
-            ang = 'printing the cumulated flowrates through control sections',),
-
-#      ------------------------------------
-       Compatible_Computation_Of_Fluxes = SIMP( statut = 'o',typ = bool, defaut = False ,
-#      ------------------------------------
-           fr = 'flux a travers les sections de controle, calcul compatible avec l impermeabilite sous forme faible',
-           ang = 'flowrates through control sections, computation compatible with the weak formulation of no-flux boundary condition',),
-
-#      ------------------------------------
-       Sections_Input_File = SIMP( statut = 'f', typ = ('Fichier', 'All Files (*)'),
-#      ------------------------------------
-          fr = 'sections input file, partitioned',
-          ang = 'sections input file, partitioned',),
-
-#      ------------------------------------
-       Sections_Output_File = SIMP( statut = 'f', typ = ('Fichier', 'All Files (*)'),
-#      ------------------------------------
-          fr = 'sections output file, written by the master',
-          ang = 'sections output file, written by the master',),
-
-  ),# fin controls
-#  ------------------------------------
-  Fourier = FACT(statut = 'f',
-#  ------------------------------------
-#      ------------------------------------
-       Fourier_Analysis_Periods = SIMP( statut='o',
-#      ------------------------------------
-       max='**', typ = 'R',
-       fr = 'Liste des periodes que lon veut analyser',
-       ang= 'List of periods to be analysed',),
-
-#      ------------------------------------
-       Time_Range_For_Fourier_Analysis = SIMP( statut='o',
-#      ------------------------------------
-       typ = Tuple(2), validators = VerifTypeTuple(('R','R')),
-       defaut=(0.0, 0.0) ,
-       fr = 'Pour le calcul du marnage et de la phase de la maree',
-       ang= 'For computing tidal range and phase of tide',
-        ),
-
-#      ------------------------------------
-       List_Of_Points = SIMP( statut='o',
-#      ------------------------------------
-       typ = Tuple(2), validators = VerifTypeTuple(('I','I')),
-       fr = 'Liste de points remarquables pour les impressions',
-       ang= 'List of remarkable points for printouts',),
-
-#      ------------------------------------
-       Names_Of_Points = SIMP( statut='o',typ='TXM',
-#      ------------------------------------
-       min=2,max=2 ,
-       fr = 'Noms des points remarquables pour les impressions',
-       ang= 'Names of remarkable points for printouts',
-     ),
-
-  ),# fin fourier
-) # FIN OUTPUT_FILES
-
-
-# -----------------------------------------------------------------------
-CONSTRUCTION_WORKS_MODELLING = PROC(nom = "CONSTRUCTION_WORKS_MODELLING",op = None,
-# -----------------------------------------------------------------------
-
-# Attention calculer le logique BREACH 
-
-#      ------------------------------------
-       Number_Of_Culverts = SIMP( statut = 'o',typ = 'I',
-#      ------------------------------------
-            defaut = 0 ,
-            fr = 'Nombre de siphons traites comme des termes sources ou puits. Ces siphons doivent etre decrits comme des sources \
-dans le fichier cas. Leurs caracteristiques sont donnees dans le fichier de donnees des siphons (voir la documentation ecrite)',
-            ang = 'Number of culverts treated as source terms.  They must be described as sources in the domain\
- and their features are given in the culvert data file (see written documentation)',),
-#           ------------------------------------
-            culvert_exists = BLOC(condition = "Number_Of_Culverts!= 0",
-#           ------------------------------------
-#               ------------------------------------
-                Culvert_Data_File = SIMP( statut = 'o',typ = ('Fichier', 'All Files (*)',),
-#               ------------------------------------
-                    fr = 'Fichier de description des siphons presents dans le modele',
-                    ang = 'Description of culvert existing in the model',),
-            ), # fin bloc culvert_exists
-
-#      ------------------------------------
-       Number_Of_Tubes = SIMP( statut = 'o',typ = 'I',
-#      ------------------------------------
-             defaut = 0 ,
-             fr = 'Nombre de buses ou ponts traites comme des termes sources ou puits. Ces buses doivent etre decrits comme des sources\n\
-dans le fichier cas. Leurs caracteristiques sont donnees dans le fichier de donnees des buses (voir la documentation ecrite)',
-             ang = 'Number of tubes or bridges treated as source terms.  They must be described as sources in the domain \n\
-and their features are given in the tubes data file (see written documentation)',), 
-#          ------------------------------------
-            b_Tubes = BLOC(condition = "Number_Of_Tubes!= 0",
-#          ------------------------------------
-#               ------------------------------------
-                Tubes_Data_File = SIMP( statut = 'o',
-#               ------------------------------------
-                    typ = ('Fichier', 'All Files (*)',),
-                    fr = 'Fichier de description des buses/ponts presents dans le modele',
-                    ang = 'Description of tubes/bridges existing in the model',),
-            ), # in bloc b_Tubes
-
-#      ------------------------------------
-       Number_Of_Weirs = SIMP(statut = 'o',typ = 'I',defaut = 0,
-#      ------------------------------------
-             fr = 'Nombre de seuils qui seront traites par des conditions aux limites. \n\
-Ces seuils doivent etre decrits comme des frontieres du domaine de calcul',
-             ang = 'Number of weirs that will be treated by boundary conditions.',
-     ),
-#          ------------------------------------
-           b_Weirs = BLOC(condition = "Number_Of_Weirs!= 0",
-#          ------------------------------------
-#               ------------------------------------
-                Weirs_Data_File = SIMP( statut = 'o',
-#               ------------------------------------
-                    typ = ('Fichier', 'All Files (*)',),
-                    fr = 'Fichier de description des seuils presents dans le modele',
-                    ang = 'Description of weirs existing in the model',),
-
-#              ------------------------------------
-               Type_Of_Weirs = SIMP( statut = 'o',typ = 'TXM',
-#              ------------------------------------
-                   into = ["Horizontal with same number of nodes upstream/downstream (Historical solution with bord)",
-                       "General (New solution with sources points)"],
-                   defaut = "Horizontal with same number of nodes upstream/downstream (Historical solution with bord)",
-                   fr = 'Méthode de traitement des seuils ',
-                   ang = 'Method for treatment of weirs',),
-          ),# fin b_Weirs
-
-#      ------------------------------------
-      Breach = SIMP(statut = 'o',typ = bool,defaut = False,
-#      ------------------------------------
-         fr = 'Prise en compte de breches dans le calcul par modification altimetrique dans le maillage.',
-         ang = 'Take in account some breaches during the computation by modifying the bottom level of the mesh.',),
-
-#          ------------------------------------
-           b_Breaches = BLOC (condition = 'Breach == True',
-#          ------------------------------------
-#              ------------------------------------
-               Breaches_Data_File = SIMP( statut = 'o',typ = ('Fichier', 'All Files (*)',),
-#              ------------------------------------
-                   fr = 'Fichier de description des breches',
-                   ang = 'Description of breaches',),
-         ), # fin b_Breaches
-
-
-) # Fin CONSTRUCTION_WORKS_MODELLING
-
-
-# -----------------------------------------------------------------------
-GENERAL_PARAMETERS = PROC(nom = "GENERAL_PARAMETERS",op = None,
-# -----------------------------------------------------------------------
-        UIinfo = { "groupes" : ( "CACHE", )},
-#      ------------------------------------
-       Location = FACT(statut = 'o',
-#      ------------------------------------
-#      ------------------------------------
-       Origin_Coordinates = SIMP( statut='o',
-#      ------------------------------------
-          typ = Tuple(2),validators = VerifTypeTuple(('I','I')),defaut = (0,0),
-          fr = 'Valeur en metres, utilise pour eviter les trop grands nombres, transmis dans le format Selafin mais pas d autre traitement pour l instant',
-          ang= 'Value in metres, used to avoid large real numbers,  added in Selafin format, but so far no other treatment',),
-
-
-#      ------------------------------------
-       Spherical_Coordinates = SIMP(typ = bool,statut = 'o',defaut = False,
-#      ------------------------------------
-           fr = 'Choix des coordonnees spheriques pour la realisation du calcul ( pour les grands domaines de calcul).',
-           ang = 'Selection of spherical coordinates to perform the computation (for large computation domains).'),
-
-#      ------------------------------------
-       b_Spher = BLOC(condition = 'Spherical_Coordinates == True',
-#      ------------------------------------
-#          ------------------------------------
-           Latitude_Of_Origin_Point = SIMP(typ = 'R',statut = 'o',defaut = 48.,
-#          ------------------------------------
-               fr = 'Determine l origine utilisee pour le calcul de latitudes lorsque l on effectue un calcul en coordonnees spheriques.',
-               ang = 'Determines the origin used for computing latitudes when a computation is made in spherical coordinates.this latitude\n\
-is in particular used to compute the Coriolis force. In cartesian coordinates, Coriolis coefficient is considered constant.'),
-
-#          ------------------------------------
-            Spatial_Projection_Type = SIMP(statut = 'o',typ = 'TXM',
-#          ------------------------------------
-               defaut="Cartesian, not georeferenced",
-               into = ["Cartesian, not georeferenced","Mercator","Latitude longitude"]),
-       ), # fin b_Spher
-
-#      ------------------------------------
-       b_Spher_faux = BLOC(condition = 'Spherical_Coordinates == False',
-#      ------------------------------------
-#          ------------------------------------
-           Spatial_Projection_Type = SIMP(statut = 'o',typ = 'TXM',
-#          ------------------------------------
-               into = ["Cartesian, not georeferenced","Mercator","Latitude longitude"],
-               defaut = "Cartesian, not georeferenced",),
-       ), # fin b_Spher_faux
-
-       ), # Fin de Location
-#      ------------------------------------
-       Time = FACT(statut = 'o',
-#      ------------------------------------
-       regles = (AU_MOINS_UN('Number_Of_Time_Steps','Duration'),
-                 EXCLUS('Number_Of_Time_Steps','Duration'),
-               ),
-
-#        -----------------------------------------------------------------------
-         Consigne = SIMP(statut = "o",homo = 'information',typ = "TXM", 
-#        -----------------------------------------------------------------------
-           defaut = "Choose between Keywords 'Number_Of_Time_Steps' or 'Duration'"),
-
-#          ------------------------------------
-           Time_Step = SIMP(statut = 'o',
-#          ------------------------------------
-              typ = 'R', defaut = 1,
-              fr = 'Definit le nombre de pas de temps effectues lors de l''execution du code.',
-              ang = 'Specifies the number of time steps performed when running the code.'),
-
-#          ------------------------------------
-           Number_Of_Time_Steps = SIMP(statut = 'f',typ = 'I',
-#          ------------------------------------
-              fr = 'Definit le nombre de pas de temps effectues lors de l''execution du code.',
-              ang = 'Specifies the number of time steps performed when running the code.'),
-
-#          ------------------------------------
-           Duration = SIMP(statut = 'f',typ = 'R',
-#          ------------------------------------
-              fr = 'duree de la simulation. alternative au parametre nombre de pas de temps. \n\
-On en deduit le nombre de pas de temps en prenant l''entier le plus proche de (duree du calcul/pas de temps).\n\
-Si le nombre de pas de temps est aussi donne, on prend la plus grande valeur',
-              ang = 'duration of simulation. May be used instead of the parameter NUMBER OF TIME STEPS. \n\
-The nearest integer to (duration/time step) is taken.  If NUMBER OF TIME STEPS is also given, the greater value is taken',),
-
-# PNPN
-# Attention, on laisse la règle mais il est possible d avoir les 2 en entrées --> attention au convert
-#          ------------------------------------
-           Variable_Time_Step = SIMP(statut = 'o',typ = bool, defaut=False,
-#          ------------------------------------
-              fr = 'Pas de temps variable pour avoir un nombre de courant souhaite',
-              ang = 'Variable time-step to get a given Courant number'),
-
-#          ------------------------------------
-           b_var_time = BLOC(condition = "Variable_Time_Step == True" ,
-#          ------------------------------------
-#            ------------------------------------
-             Desired_Courant_Number = SIMP(statut = 'o',typ = 'R',
-#            ------------------------------------
-             fr = 'Nombre de Courant souhaite ',
-             ang = 'Desired Courant number',),
-           ),
-
-#          ------------------------------------
-           Original_Date_Of_Time = FACT( statut = 'o',
-#          ------------------------------------
-              fr = "Permet de fixer la date d'origine des temps du modele lors de la prise en compte de la force generatrice de la maree.",
-              ang = 'Give the date of the time origin of the model when taking into account the tide generating force.', 
-               Year = SIMP(statut = 'o',typ = 'I',val_min = 1900, defaut = 1900),
-               Month = SIMP(statut = 'o',typ = 'I',val_min = 1,val_max = 12,  defaut = 1),
-               Day = SIMP(statut = 'o',typ = 'I',val_min = 1,val_max = 31,defaut = 1),),
-
-#          ------------------------------------
-           Original_Hour_Of_Time = FACT( statut = 'o',
-#          ------------------------------------
-               fr = "Permet de fixer l'heure d'origine des temps du modele lors de la prise en compte de la force generatrice de la maree.",
-               ang = 'Give the time of the time origin of the model when taking into account the tide generating force.', 
-               Hour = SIMP(statut = 'o',typ = 'I',val_min = 0,val_max = 24, defaut = 0),
-               Minute = SIMP(statut = 'o',typ = 'I',val_min = 0,val_max = 60, defaut = 0),
-               Second = SIMP(statut = 'o',typ = 'I',val_min = 0,val_max = 60, defaut = 0),
-             ),
-
-#          ------------------------------------
-           Stop_If_A_Steady_State_Is_Reached = SIMP(statut = 'o',
-#          ------------------------------------
-               typ = bool,defaut = False),
-
-#          ------------------------------------
-           b_stop = BLOC(condition = "Stop_If_A_Steady_State_Is_Reached == True" ,
-#          ------------------------------------
-#              ------------------------------------
-               Stop_Criteria = SIMP(statut = 'o',typ = Tuple(3),validators = VerifTypeTuple(('R','R','R')),
-#              ------------------------------------
-                 fr = "Criteres d'arret pour un ecoulement permanent. ces coefficients sont respectivement appliques a\n\
-    1- U et V 2- H 3- T ",
-                 ang = 'Stop criteria for a steady state These coefficients are applied respectively to\n\
-        1- U and V 2- H 3-  T ',),
-           ), # fin b_stop
-
-#          ------------------------------------
-           Control_Of_Limits = SIMP(statut = 'o',
-#          ------------------------------------
-               typ = bool, defaut = False,
-               fr = 'Le programme s''arrete si les limites sur u,v,h ou t sont depassees',
-               ang = 'The program is stopped if the limits on u,v,h, or t are trespassed',),
-
-#          ------------------------------------
-           b_limit = BLOC(condition = "Control_Of_Limit == True" ,
-           Limit_Values = FACT(statut = 'o',
-#            Attention : 1 seul MC ds Telemac
-#          ------------------------------------
-                fr = 'valeurs mini et maxi acceptables  min puis  max',
-                ang = 'min and max acceptable values ',
-
-#              ------------------------------------
-               Limit_Values_H = SIMP(statut = 'o',typ = Tuple(2),
-#              ------------------------------------
-                    validators = VerifTypeTuple(('R','R')), defaut = (-1000,9000)),
-#              ------------------------------------
-               Limit_Values_U = SIMP(statut = 'o',typ = Tuple(2),
-#              ------------------------------------
-                    validators = VerifTypeTuple(('R','R')), defaut = (-1000,1000)),
-#              ------------------------------------
-               Limit_Values_V = SIMP(statut = 'o',typ = Tuple(2),
-#              ------------------------------------
-                    validators = VerifTypeTuple(('R','R')), defaut = (-1000,1000)),
-#              ------------------------------------
-               Limit_Values_T = SIMP(statut = 'o',typ = Tuple(2),
-#              ------------------------------------
-                    validators = VerifTypeTuple(('R','R')), defaut = (-1000,1000)),
-            ),), # fin Fact et b_limit
-       ), # Fin de Time
-
-# Attention il faut recalculer en sortie : il faut 0 ou 1 et non un boolean
-#  ------------------------------------
-   Debugger = SIMP(typ = bool , statut = 'o', 
-#  ------------------------------------
-        defaut = False,
-        fr= 'Pour imprimer la sequence des appels, mettre 1',
-        ang = 'If 1, calls of subroutines will be printed in the listing',),
-
-) # Fin GENERAL_PARAMETERS
-
-
-# -----------------------------------------------------------------------
-TURBULENCE = PROC(nom = "TURBULENCE",op = None,
-# -----------------------------------------------------------------------
-
-#    -----------------------------------------------------------------------
-     Turbulence_Model = SIMP( statut = 'o',typ = 'TXM', defaut = "Constant Viscosity", 
-#    -----------------------------------------------------------------------
-          into = ("Constant Viscosity", "Elder", "K-Epsilon Model", "Smagorinski"),
-          fr = 'Pour  Elder, il faut pas oublier d ajuster les deux valeurs du mot-cle : COEFFICIENTS ADIMENSIONNELS DE DISPERSION\n\
-Pour K-Epsilon Model, ce meme parametre doit retrouver sa vraie valeur physique car elle est utilisee comme telle dans le modele de turbulence',
-    ang = 'When Elder, the two values of key-word : NON-DIMENSIONAL DISPERSION COEFFICIENTS are used \n\
-When K-Epsilon Model, this parameter should recover its true physical value, since it is used as such in the turbulence model.',),
-
-#          ------------------------------------
-           b_turbu_const = BLOC(condition = 'Turbulence_Model == "Constant Viscosity"',
-#          ------------------------------------
-#              ------------------------------------
-               Velocity_Diffusivity = SIMP( statut = 'o',typ = 'R',
-#              ------------------------------------
-                   defaut = 1.E-6,
-                   fr = 'Fixe de facon uniforme pour l ensemble du domaine la valeur du coefficient de diffusion de viscosite globale (dynamique + turbulente).\n\
-Cette valeur peut avoir une influence non negligeable sur la forme et la taille des recirculations.',
-                   ang = 'Sets, in an even way for the whole domain, the value of the coefficient of global (dynamic+turbulent) viscosity. \n\
-this value may have a significant effect both on the shapes and sizes of recirculation zones.',),
-            ), # fin b_turbu_const
-
-#          ------------------------------------
-           b_turbu_elder = BLOC(condition = 'Turbulence_Model == "Elder"',
-#          ------------------------------------
-#              ------------------------------------
-               Non_Dimensional_Dispersion_Coefficients = SIMP (statut = 'o',
-#              ------------------------------------
-                   typ = Tuple(2),validators = VerifTypeTuple(('R','R')),defaut = (6.,0.6),
-                   fr = 'coefficients longitudinal et transversal dans la formule de Elder.',
-                   ang = 'Longitudinal and transversal coefficients in elder s formula.  Used only with turbulence model number 2',),
-           ), # fin bloc b_turbu_elder
-
-#    -----------------------------------------------------------------------
-     Accuracy_Of_K = SIMP( statut = 'o',typ = 'R', defaut = 1e-09 ,
-#    -----------------------------------------------------------------------
-            fr = 'Fixe la precision demandee sur k pour le test d arret dans letape de diffusion et termes sources du modele k-epsilon.',
-            ang = 'Sets the required accuracy for computing k in the diffusion and source terms step of the k-epsilon model.',),
-
-#    -----------------------------------------------------------------------
-     Accuracy_Of_Epsilon = SIMP( statut = 'o',typ = 'R', defaut = 1e-09 ,
-#    -----------------------------------------------------------------------
-            fr = 'Fixe la precision demandee sur epsilon pour le test darret dans letape de diffusion et termes sources de k et epsilon.',
-            ang = 'Sets the required accuracy for computing epsilon in the diffusion and source-terms step of the k-epsilon model.',),
-
-#    -----------------------------------------------------------------------
-     Time_Step_Reduction_For_K_Epsilon_Model = SIMP( statut = 'f',typ = 'R', defaut = 1.0 ,
-#    -----------------------------------------------------------------------
-           fr = 'Coefficient reducteur du pas de temps pour le modele k-epsilon (qui est normalement identique a celui du systeme hydrodynamique).\n\
-Utilisation deconseillee',
-           ang = 'Time step reduction coefficient for k-epsilon model (which is normally same the same as that of the hydrodynamic system).\n\
-Not recommended for use.',),
-
-#    -----------------------------------------------------------------------
-     Maximum_Number_Of_Iterations_For_K_And_Epsilon = SIMP( statut = 'o',typ = 'I',
-#    -----------------------------------------------------------------------
-           defaut = 50 ,
-           fr = 'Fixe le nombre maximum diterations accepte lors de la resolution du systeme diffusion-termes sources du modele k-epsilon.',
-           ang = 'Sets the maximum number of iterations that are acceptable when solving the diffusion source-terms step of the k-epsilon model.',),
-
-#    -----------------------------------------------------------------------
-     Turbulence_Model_For_Solid_Boundaries = SIMP( statut = 'o',typ = 'TXM',
-#    -----------------------------------------------------------------------
-           defaut = 'Rough' ,
-           into = ('Smooth', 'Rough'),
-           fr = 'Permet de choisir le regime de turbulence aux parois ',
-           ang = 'Provided for selecting the type of friction on the walls',),
-
-#    -----------------------------------------------------------------------
-      Solver_For_K_Epsilon_Model = SIMP( statut = 'o',typ = 'TXM',
-#    -----------------------------------------------------------------------
-           defaut = "Conjugate gradient" ,
-           into = ("Conjugate gradient", "Conjugate residuals", "Conjugate gradient on normal equation", 
-                   "Minimum error", "Conjugate gradient squared", "Conjugate gradient squared stabilised (CGSTAB)",
-                   "GMRES", "Direct"),
-           fr = 'Permet de choisir le solveur utilise pour la resolution du systeme du modele k-epsilon',
-           ang = 'Makes it possible to select the solver used for solving the system of the k-epsilon model.',),
-
-#        -----------------------------------------------------------------------
-         b_gmres = BLOC(condition = 'Solver_For_K_Epsilon_Model == "GMRES"',
-#        -----------------------------------------------------------------------
-#            -----------------------------------------------------------------------
-             Option_For_The_Solver_For_K_Epsilon_Model = SIMP( statut = 'o',typ = 'I',
-#            -----------------------------------------------------------------------
-                  defaut = 2 ,val_min = 2,val_max = 15,
-                  fr = 'le mot cle est la dimension de lespace de KRILOV (valeurs conseillees entre 2 et 7)',
-                  ang = 'dimension of the krylov space try values between 2 and 7',),
-         ), # fin bloc b_gmres
-
-#    -----------------------------------------------------------------------
-     Preconditioning_For_K_Epsilon_Model = SIMP( statut = 'o',typ = 'TXM',
-#    -----------------------------------------------------------------------
-         defaut = 'Diagonal' ,
-         into = ("Diagonal", "No preconditioning", "Diagonal condensed", "Crout", "Diagonal and crout", "Diagonal condensed and crout"),
-         fr = 'Permet de preconditionner le systeme relatif au modele k-epsilon',
-         ang = 'Preconditioning of the linear system in the diffusion step of the k-epsilon model.',
-         homo="SansOrdreNiDoublon",
-     ),
-#    -----------------------------------------------------------------------
-     Information_About_K_Epsilon_Model = SIMP(statut = 'o',typ = bool,defaut = True,
-#    -----------------------------------------------------------------------
-        fr = 'Donne le nombre d iterations du solveur de l etape de diffusion et termes sources du modele k-epsilon.',
-        ang = 'Gives the number of iterations of the solver in the diffusion and source terms step of the k-epsilon model.',
-     ),
-)# fin TURBULENCE
-
-
-
-
-# -----------------------------------------------------------------------
-PARTICLE_TRANSPORT = PROC(nom = "PARTICLE_TRANSPORT",op = None,
-# -----------------------------------------------------------------------
-#    -----------------------------------------------------------------------
-      Number_Of_Drogues = SIMP(statut = 'o',typ = 'I',defaut = 0,
-#    -----------------------------------------------------------------------
-      fr = 'Permet d''effectuer un suivi de flotteurs',
-      ang = 'Number of drogues in the computation.',),
-
-#    -----------------------------------------------------------------------
-     Algae_Transport_Model = SIMP( statut = 'o',typ = bool, defaut = False ,
-#    -----------------------------------------------------------------------
-          fr = 'Si oui, les flotteurs seront des algues',
-          ang = 'If yes, the floats or particles will be algae',),
-
-#        -----------------------------------------------------------------------
-         algae_exists = BLOC(condition = "Algae_Transport_Model == True", 
-#        -----------------------------------------------------------------------
-#            -----------------------------------------------------------------------
-             Algae_Type = SIMP( statut = 'o',typ = 'TXM',
-#            -----------------------------------------------------------------------
-                 into = ["Sphere", "Iridaea flaccida (close to ulva)", "Pelvetiopsis limitata", "Gigartina leptorhynchos"],
-                 defaut = "Sphere",
-                 homo="SansOrdreNiDoublon",
-                 fr = 'Type des algues. Pour sphere les algues seront modelisees comme des spheres, pour les autres choix voir Gaylord et al.(1994)',
-                 ang = 'Algae type. For sphere, the algae particles will be modeled as spheres, for the other choices see Gaylord et al.(1994)',),
-
-#            -----------------------------------------------------------------------
-             Diameter_Of_Algae = SIMP( statut = 'o',typ = 'R', defaut = 0.1 ,
-#            -----------------------------------------------------------------------
-                 fr = 'Diametre des algues en m',
-                 ang = 'Diametre of algae in m',),
-
-#            -----------------------------------------------------------------------
-             Density_Of_Algae = SIMP( statut = 'o',typ = 'R', defaut = 1050.0 ,
-#            -----------------------------------------------------------------------
-                 fr = 'Masse volumique des algues en kg/m3',
-                 ang = 'Density of algae in kg/m3',),
-
-#            -----------------------------------------------------------------------
-             Thickness_Of_Algae = SIMP( statut = 'o',typ = 'R', defaut = 0.01 ,
-#            -----------------------------------------------------------------------
-                 fr = 'Epaisseur des algues en m',
-                 ang = 'Thickness of algae in m',),
-      ), # fin algae
-
-
-#    -----------------------------------------------------------------------
-     Oil_Spill_Model = SIMP( statut = 'o',typ = bool, defaut = False ,
-#    -----------------------------------------------------------------------
-         fr = 'pour declencher le modele de derive de nappes, dans ce cas le fichier de commandes migrhycar est necessaire',
-         ang = 'will trigger the oil spill model, in this case the migrhycar steering file is needed',),
-
-#    -----------------------------------------------------------------------
-     oil_exists = BLOC(condition = "Oil_Spill_Model == True", 
-#    -----------------------------------------------------------------------
-#        -----------------------------------------------------------------------
-         Oil_Spill_Steering_File = SIMP( statut = 'o',typ = ('Fichier', 'All Files (*)',),
-#        -----------------------------------------------------------------------
-             fr = 'Contient les donnees pour le modele de derive de nappes',
-             ang = 'Contains data for the oil spill model',),
-     ), # fin oil_exists
-
-#    -----------------------------------------------------------------------
-     drogues_exists = BLOC(condition = "Number_Of_Drogues!= 0 or Algae_Transport_Model == True or Oil_Spill_Model == True",
-#    -----------------------------------------------------------------------
-#        -----------------------------------------------------------------------
-         Drogues_File = SIMP( statut = 'o',typ = ('Fichier', 'All Files (*)',),
-#        -----------------------------------------------------------------------
-             fr = 'Fichier de resultat avec les positions des flotteurs',
-             ang = 'Results file with positions of drogues',),
-
-#        -----------------------------------------------------------------------
-         Printout_Period_For_Drogues = SIMP(statut = 'o',typ = 'I',defaut = 1,
-#        -----------------------------------------------------------------------
-              fr = 'Nombre de pas de temps entre 2 sorties de positions de flotteurs dans le fichier des resultats binaire supplementaire\n\
-N affecte pas la qualite du calcul de la trajectoire',
-              ang = 'Number of time steps between 2 outputs of drogues positions in the binary file',),
-     ),#fin drogues ou algae
-
-
-#    -----------------------------------------------------------------------
-     Stochastic_Diffusion_Model = SIMP( statut = 'o',typ = 'I', defaut = 0 ,
-#    -----------------------------------------------------------------------
-         fr = 'Pour les particules : flotteurs, algues, hydrocarbures',
-         ang = 'Meant for particles: drogues, algae, oil spills',),
-
-#    -----------------------------------------------------------------------
-     Number_Of_Lagrangian_Drifts = SIMP( statut = 'o',typ = 'I', defaut = 0 ,
-#    -----------------------------------------------------------------------
-         fr = 'Permet deffectuer simultanement plusieurs calculs de derives lagrangiennes initiees a des pas differents',
-         ang = 'Provided for performing several computations of lagrangian drifts starting at different times.',),
-
-#    -----------------------------------------------------------------------
-     b_cons = BLOC(condition = "Number_Of_Lagrangian_Drifts != 0",
-#    -----------------------------------------------------------------------
-#        -----------------------------------------------------------------------
-         Consigne = SIMP(statut = "o",homo = 'information',typ = "TXM", 
-#        -----------------------------------------------------------------------
-             defaut = "Add A and G in the VARIABLES FOR GRAPHIC PRINTOUTS key-word in POST_PROCESSING SECTION"),
-    ), # fin b_cons
-
-)# fin PARTICULE
-# -----------------------------------------------------------------------
-TRACERS = PROC(nom = "TRACERS",op = None,
-# -----------------------------------------------------------------------
-
-#        -----------------------------------------------------------------------
-         Tracers_Setting = FACT(statut = 'o',
-#        -----------------------------------------------------------------------
-
-#        -----------------------------------------------------------------------
-         Number_Of_Tracers = SIMP( statut='o',typ='I',
-#        -----------------------------------------------------------------------
-      defaut=0 ,
-      fr = 'Definit le nombre de traceurs.',
-      ang= 'Defines the number of tracers',),
-#PNPNPN Recalculer Names_Of_Tracers et Initial_Values_Of_Tracers comme des listes
-# pour Names_Of_Tracers = Names_Of_Tracers+Names_Of_Unit
-# il faut faire un validateur (la chaine doit faire 16 caracteres evtuellement complete par des blancs)
-
-#        ------------------------------------
-         Tracer = FACT(statut = 'o', max="**",
-#        ------------------------------------
-#            -----------------------------------------------------------------------
-              Name_Of_Tracer = SIMP( statut='o',typ='TXM',
-#             -----------------------------------------------------------------------
-              fr = 'Noms des traceurs en 16 caracteres',
-              ang= 'Name of tracers in 32 characters',),
-
-#            -----------------------------------------------------------------------
-              Name_Of_Unit = SIMP( statut='o',typ='TXM',
-#             -----------------------------------------------------------------------
-              fr = 'Noms de l unité en 16 caracteres',
-              ang= 'Name of unit in 16 characters',),
-
-        b_Computation_Continued = BLOC(condition = 'Computation_Continued == True',
-#PNPNPN Attention: global_jdc ne fonctionne pas bien : pas de propagation si chgt de valeur de Computation_Continued
-#            -----------------------------------------------------------------------
-             Initial_Values_Of_Tracers = SIMP( statut='o',
-#             -----------------------------------------------------------------------
-              typ = Tuple(2),validators = VerifTypeTuple(('R','R')),
-              defaut=(0.0, 0.0) ,
-              fr = 'Fixe la valeur initiale du traceur.',
-              ang= 'Sets the initial value of the tracer.',),
-
-           ), # fin b_Computation_Continued
-#             ------------------------------------
-              Boundary_Conditions = FACT( statut = 'f', 
-#            ------------------------------------
-#            -----------------------------------------------------------------------
-                  Prescribed_Tracers_Values = SIMP( statut='o',
-#            -----------------------------------------------------------------------
-                   typ = Tuple(2),validators = VerifTypeTuple(('R','R')),
-                   fr = 'Valeurs du traceur imposees aux frontieres liquides entrantes. Lire la partie du manuel consacree aux conditions aux limites',
-                   ang= 'Tracer values prescribed at the inflow boundaries. Read the manual section dealing with the boundary conditions',),
-           ), # fin Boundary_Conditions
-         ), # fin tracer
-
-#        -----------------------------------------------------------------------
-         Density_Effects = SIMP( statut='o',typ=bool,
-#        -----------------------------------------------------------------------
-         defaut=False ,
-         fr = 'prise en compte du gradient horizontal de densite le traceur est alors la salinite',
-         ang= 'the horizontal gradient of density is taken into account the tracer is then the salinity',),
-
-#        -----------------------------------------------------------------------
-         b_Density_Effects = BLOC(condition = 'Density_Effects == True',
-#        -----------------------------------------------------------------------
-#        ------------------------------------
-         Consigne = SIMP(statut = "o",homo = 'information',typ = "TXM",
-#        ------------------------------------
-         defaut='the first Tracer must be the salinity expressed in kg/m3'),
-
-#        -----------------------------------------------------------------------
-             Mean_Temperature = SIMP( statut='o',typ='R',
-#        -----------------------------------------------------------------------
-             defaut=20.0 ,
-             fr = 'temperature de reference pour le calcul des effets de densite ',
-             ang= 'reference temperature for density effects',),
-
-           ), # fin b_Density_Effects
-
-    ), # fin b_Tracers_Settings
-#    -----------------------------------------------------------------------
-     Solving = FACT( statut='o',
-#    -----------------------------------------------------------------------
-#       -----------------------------------------------------------------------
-        Solver_For_Diffusion_Of_Tracers = SIMP( statut='o',typ='TXM',
-#       -----------------------------------------------------------------------
-               defaut='Conjugate gradient' ,
-               into =('Conjugate gradient', 'Conjugate residual', 'Conjugate gradient on a normal equation',
-                      'Minimum error"', 'Squared conjugate gradient', 'CGSTAB', 'GMRES', 'Direct'),
-               ),
-
-# Ne faut-il pas un bloc?
-#       -----------------------------------------------------------------------
-        Solver_Option_For_Tracers_Diffusion = SIMP( statut='o',typ='I',
-#       -----------------------------------------------------------------------
-            defaut=2 ,
-            fr = 'si le solveur est GMRES (7) le mot cle est la dimension de lespace de KRILOV (valeurs conseillees entre 2 et 15)',
-            ang= 'WHEN GMRES (7) IS CHOSEN, DIMENSION OF THE KRYLOV SPACE TRY VALUES BETWEEN 2 AND 15',),
-
-#       -----------------------------------------------------------------------
-        Preconditioning_For_Diffusion_Of_Tracers = SIMP( statut='o',typ='TXM',
-#       -----------------------------------------------------------------------
-         defaut='diagonal' ,
-         into =('diagonal', 'no preconditioning', 'diagonal condensed', 'crout', 'diagonal and crout', 'diagonal condensed and crout'),
-    fr = 'Permet de preconditionner le systeme relatif au traceur. Memes definition et possibilites que pour le mot-cle PRECONDITIONNEMENT.',
-    ang= 'Preconditioning of the linear system in the tracer diffusion step.  Same definition and possibilities as for the keyword PRECONDITIONING',
-     ),
-     ), # fin_Solving
-
-#    -----------------------------------------------------------------------
-     Accuracy = FACT( statut='o',
-#    -----------------------------------------------------------------------
-#       -----------------------------------------------------------------------
-        Accuracy_For_Diffusion_Of_Tracers = SIMP( statut='o',typ='R', defaut=1e-06 ,
-#       -----------------------------------------------------------------------
-          fr = 'Fixe la precision demandee pour le calcul de la diffusion du traceur.',
-          ang= 'Sets the required accuracy for computing the tracer diffusion.',),
-
-#       -----------------------------------------------------------------------
-        Maximum_Number_Of_Iterations_For_Diffusion_Of_Tracers = SIMP( statut='o',typ='I', defaut=60 ,
-#       -----------------------------------------------------------------------
-          fr = 'Limite le nombre diterations du solveur a chaque pas de temps pour le calcul de la diffusion du traceur.',
-          ang= 'Limits the number of solver iterations at each time step for the diffusion of tracer.',),
-
-     ), # fin Accuracy
-#    -----------------------------------------------------------------------
-     Sources = FACT( statut='o',
-#       -----------------------------------------------------------------------
-#        ------------------------------------
-         Consigne = SIMP(statut = "o",homo = 'information',typ = "TXM",
-#        ------------------------------------
-             defaut = "La longueur de la liste doit etre nb de source * nb de tracers"),
-#       -----------------------------------------------------------------------
-        Values_Of_The_Tracers_At_The_Sources = SIMP( statut='o',typ='R', max='**' ,
-#       -----------------------------------------------------------------------
-            fr = 'Valeurs des traceurs a chacune des sources',
-            ang= 'Values of the tracers at the sources',),
-     ), # fin Sources
-#    -----------------------------------------------------------------------
-     Metereology = FACT( statut='o',
-#    -----------------------------------------------------------------------
-# en fait, c'est une liste de Tuple de 2. Il faudrait caluler la taille en fonction du Nombre de sources
-#       -----------------------------------------------------------------------
-        Values_Of_Tracers_In_The_Rain = SIMP( 
-#       -----------------------------------------------------------------------
-          statut='o',typ='R',defaut=0, max=2 , fr = '', ang= '',),
-     ), # fin Metereology
-
-#    -----------------------------------------------------------------------
-     Numerical = FACT( statut='o',
-#    -----------------------------------------------------------------------
-
-#       -----------------------------------------------------------------------
-        Implicitation_Coefficient_Of_Tracers = SIMP( statut='o',typ='R',
-#       -----------------------------------------------------------------------
-           defaut=0.6 ,
-           fr = 'Fixe la valeur du coefficient dimplicitation du traceur',
-           ang= 'Sets the value of the implicitation coefficient for the tracer',),
-
-#       -----------------------------------------------------------------------
-        Diffusion_Of_Tracers = SIMP( statut='o',typ=bool,
-#       -----------------------------------------------------------------------
-           defaut=True ,
-           fr = 'Prise en compte ou non de la diffusion du traceur passif.',
-           ang= 'The diffusion of the passive tracer is taken into account or ignored.',), 
-
-#      ------------------------------------
-       b_Diffusion_Of_Tracers = BLOC(condition = 'Diffusion_Of_Tracers == True',
-#      ------------------------------------
-#           ------------------------------------
-            Coefficient_For_Diffusion_Of_Tracers = SIMP( statut='o',typ='R',
-#           ------------------------------------
-            defaut=1e-06 ,
-            fr = 'Fixe la valeur du coefficient de diffusion du traceur.  Linfluence de ce parametre sur levolution du traceur dans le temps est importante.',
-            ang= 'Sets the value of the tracer diffusivity.',),
-       
-#           ------------------------------------
-            Option_For_The_Diffusion_Of_Tracers = SIMP( statut='o',typ='TXM',
-#           ------------------------------------
-            defaut='Diffusion in the form div( nu grad(T))' ,
-            into=[ 'Diffusion in the form div( nu grad(T))', 'Diffusion in the form 1/h div ( h nu grad(T))',],),
-       ), # fin b_Diffusion_Of_Tracers
-
-#      ------------------------------------
-       Scheme_For_Advection_Of_Tracers = SIMP( statut='o',typ='TXM',
-#      ------------------------------------
-           defaut="Characteristics" ,
-           into =("No advection", "Characteristics", "Explicit + SUPG", "Explicit leo postma", "explicit + murd scheme-N", 
-               "explicit + murd scheme-PSI", "Leo postma for tidal flats", "N-scheme for tidal flats"),
-           fr = 'Choix du schema de convection pour les traceurs, remplace FORME DE LA CONVECTION',
-           ang= 'Choice of the advection scheme for the tracers, replaces TYPE OF ADVECTION',),
-
-#      ------------------------------------
-       Scheme_Option_For_Advection_Of_Tracers = SIMP( statut='o',typ='TXM',
-#      ------------------------------------
-           defaut='Explicit' ,
-           into=['Explicit','Predictor-corrector for tracers'],
-           fr = 'Si present remplace et a priorite sur : OPTION POUR LES CARACTERISTIQUES OPTION DE SUPG Si schema PSI : 1=explicite 2=predicteur-correcteur pour les traceurs',
-           ang= 'If present replaces and has priority over: OPTION FOR CHARACTERISTICS SUPG OPTION IF PSI SCHEME: 1=explicit 2=predictor-corrector for tracers',),
-
-#      ------------------------------------
-       Mass_Lumping_On_Tracers = SIMP ( statut='o',typ='R',
-#      ------------------------------------
-           defaut=0,
-           fr = 'Fixe le taux de mass-lumping effectue sur le traceur.',
-           ang = 'Sets the amount of mass-lumping that is performed on the tracer.',),
-
-    ), # fin Numerical
-#    -----------------------------------------------------------------------
-     Degradation = FACT( statut='o',
-#    -----------------------------------------------------------------------
-
-# PN Attention, il faut recalculer Law_Of_Tracers_Degradation
-# et les coefficients.
-# Question : pourquoi 2 et pas selon le nb de tracer
-# Est ce que ce $ va sous tracer ?
-#        -----------------------------------------------------------------------
-         Law1_Of_Tracers_Degradation = SIMP( statut='o',typ='TXM',
-#        -----------------------------------------------------------------------
-            into=["No degradation","F(T90) law"],
-            defaut="No degradation",
-            fr = 'Prise en compte dune loi de decroissance des traceurs',
-            ang= 'Take in account a law for tracers decrease',),
-
-#        -----------------------------------------------------------------------
-         b_Law1 = BLOC(condition = 'Law1_Of_Tracers_Degradation == "F(T90) law"',
-#        -----------------------------------------------------------------------
-#            -----------------------------------------------------------------------
-             Coefficient_1_For_Law_Of_Tracers_Degradation = SIMP( statut='o',typ='R',
-#            -----------------------------------------------------------------------
-                  fr = 'Coefficient 1 de la loi de decroissance des traceurs',
-                   ang= 'Coefficient 1 of law for tracers decrease',),
-         ),# fin b_Law1
-
-#        -----------------------------------------------------------------------
-         Law2_Of_Tracers_Degradation = SIMP( statut='o',typ='TXM',
-#        -----------------------------------------------------------------------
-            into=["No degradation","F(T90) law"],
-            defaut="No degradation",
-            fr = 'Prise en compte dune loi de decroissance des traceurs',
-            ang= 'Take in account a law for tracers decrease',),
-
-#        -----------------------------------------------------------------------
-         b_Law2 = BLOC(condition = 'Law2_Of_Tracers_Degradation == "F(T90) law"',
-#        -----------------------------------------------------------------------
-#            -----------------------------------------------------------------------
-             Coefficient_2_For_Law_Of_Tracers_Degradation = SIMP( statut='o',typ='R',
-#            -----------------------------------------------------------------------
-                  fr = 'Coefficient 2 de la loi de decroissance des traceurs',
-                   ang= 'Coefficient 2 of law for tracers decrease',),
-         ),# fin b_Law2
-    ), # fin Degradation
-
-)# fin TRACERS
-
-
-Ordre_Des_Commandes = ( 'INITIALIZATION', 'BOUNDARY_CONDITIONS','GENERAL_PARAMETERS', 'PHYSICAL_PARAMETERS', 'NUMERICAL_PARAMETERS',
-'TURBULENCE', 'TRACERS', 'PARTICLE_TRANSPORT', 'CONSTRUCTION_WORKS_MODELLING',  'TIDE_PARAMETERS', 'OUTPUT_FILES')
diff --git a/Telemac/Telemac_Cata_nouveau.py b/Telemac/Telemac_Cata_nouveau.py
deleted file mode 100644 (file)
index cd623b6..0000000
+++ /dev/null
@@ -1,577 +0,0 @@
-# coding: utf-8
-# PNPNPNPN
-
-from Accas import *
-import types
-class Tuple:
-  def __init__(self,ntuple):
-    self.ntuple=ntuple
-
-  def __convert__(self,valeur):
-    if type(valeur) == types.StringType:
-      return None
-    if len(valeur) != self.ntuple:
-      return None
-    return valeur
-
-  def info(self):
-    return "Tuple de %s elements" % self.ntuple
-
-
-
-JdC = JDC_CATA (code = 'MAP',
-                execmodul = None,
-                )
-# ======================================================================
-# Catalog entry for the MAP function : c_pre_interfaceBody_mesh
-# ======================================================================
-INITIALIZATION=PROC(nom="INITIALIZATION",op=None,
-Control_Of_Limits = SIMP( statut='o',typ='bool',
-    defaut=False ,
-    fr = 'UTILISER AVEC LE MOT-CLE : VALEURS LIMITES, LE PROGRAMME SARRETE SI LES LIMITES SUR U,V,H OU T SONT DEPASSEES',
-    ang= 'USE WITH THE KEY-WORD : LIMIT VALUES, THE PROGRAM IS STOPPED IF THE LIMITS ON U,V,H, OR T ARE TRESPASSED',
-     ),
-
-Limit_Values = SIMP( statut='o',typ='R',
-    defaut=(-1000.0, 9000.0, -1000.0, 1000.0, -1000.0, 1000.0, -1000.0, 1000.0) ,
-    max=8 ,
-    fr = 'Utilise avec le mot-cle CONTROLE DES LIMITES  valeurs mini et maxi acceptables pour H,U,V et T dans lordre suivant : min(H) max(H) min(U) max(U) min(V) max(V) min(T) max(T)',
-    ang= 'To be used with the key-word CONTROL OF LIMITS min and max acceptable values for H,U,V et T in the following order   : min(H) max(H) min(U) max(U) min(V) max(V) min(T) max(T)',
-     ),
-
-Number_Of_Time_Steps = SIMP( statut='o',typ='I',
-    defaut=1 ,
-    fr = 'Definit le nombre de pas de temps effectues lors de lexecution du code.',
-    ang= 'Specifies the number of time steps performed when running the code.',
-     ),
-
-Psi_Scheme_Option = SIMP( statut='o',typ='I',
-    defaut=1 ,
-    fr = '1: explicite 2: predicteur-correcteur',
-    ang= '1: explicit 2: predictor-corrector',
-     ),
-
-Type_Of_Advection = SIMP( statut='o',typ='I',
-    defaut=(1, 5, 1, 1) ,
-    max=4 ,
-   into =('1="CHARACTERISTICS"', '2="SUPG"', '3="CONSERVATIVE N-SCHEME"', '4="CONSERVATIVE N-SCHEME"', '5="CONSERVATIVE PSI-SCHEME"', '6="NON CONSERVATIVE PSI SCHEME"', '7="IMPLICIT NON CONSERVATIVE N SCHEME"', '13="EDGE-BASED N-SCHEME"', '14="EDGE-BASED N-SCHEME"'),
-    fr = 'Choix du schema de convection pour chaque variable ces coefficients sont respectivement appliques a 1) U et V     2) H     3) T     4) K ET EPSILON 1 : caracteristiques sur h 2 : SUPG 3 : Schema N conservatif 4 : Schema N conservatif    5 : Schema PSI conservatif 6 : Schema PSI non conservatif 7 : schema N implicite non conservatif 13 : Schema N par segment 14 : Schema N par segment Second integer must be 5',
-    ang= 'Choice of advection schemes for every variable These coefficients are applied respectively to 1) U et V     2) H     3) T     4) K and EPSILON 1: characteristics 2: SUPG 3: Conservative N-scheme  4: Conservative N-scheme  5: Conservative PSI-scheme  6 : Non conservative PSI scheme 7 : Implicit non conservative N scheme 13 : Edge-based N-scheme 14 : Edge-based N-scheme Second integer must be 5',
-     ),
-
-Preconditioning = SIMP( statut='o',typ='I',
-    defaut=2 ,
-   into =('2="diagonal"', '0="no preconditioning"', '3="diagonal condensee"', '7="crout"', '11="gauss-seidel"', '14="diagonal and crout"', '21="diagonal condensed and crout"'),
-    fr = 'Permet de preconditionner le systeme de letape de propagation afin daccelerer la convergence lors de sa resolution.  - 0 : pas de preconditionnement, - 2 : preconditionnement diagonal.  - 3 : preconditionnement diagonal-bloc - 7 : preconditionnement de Crout par element ou segment -11 : preconditionnement de Gauss-Seidel par element ou segment Certains preconditionnements sont cumulables (les diagonaux 2 ou 3 avec les autres) Pour cette raison on ne retient que les nombres premiers pour designer les preconditionnements. Si lon souhaite en cumuler plusieurs on formera le produit des options correspondantes.',
-    ang= 'Choice of the preconditioning in the propagation step linear system that the convergence is speeded up when it is being solved.  0: no preconditioning 2: diagonal preconditioning 3: diagonal preconditioning with the condensed matrix 7: Crouts preconditioning per element or segment 11: Gauss-Seidels preconditioning per element or segment Some operations (either 2 or 3 diagonal preconditioning) can be performed concurrently with the others.  Only prime numbers are therefore kept to denote the preconditioning operations. When several of them are to be performed concurrently, the product of relevant options shall be made.',
-     ),
-
-Maximum_Number_Of_Iterations_For_Solver = SIMP( statut='o',typ='I',
-    defaut=100 ,
-    fr = 'Les algorithmes utilises pour la resolution de letape de propagation etant iteratifs, il est necessaire de limiter le nombre diterations autorisees.  Remarque : un maximum de 40 iterations par pas de temps semble raisonnable.',
-    ang= 'Since the algorithms used for solving the propagation step are iterative, the allowed number of iterations should be limited.  NOTE: a maximum number of 40 iterations per time step seems to be reasonable.',
-     ),
-
-
-Maximum_Number_Of_Iterations_For_Diffusion_Of_Tracers = SIMP( statut='o',typ='I',
-    defaut=60 ,
-    fr = 'Limite le nombre diterations du solveur a chaque pas de temps pour le calcul de la diffusion du traceur.',
-    ang= 'Limits the number of solver iterations at each time step for the diffusion of tracer.',
-     ),
-
-Solver_For_Diffusion_Of_Tracers = SIMP( statut='o',typ='I',
-    defaut=1 ,
-   into =('1="conjugate gradient"', '2="conjugate residual"', '3="conjugate gradient on a normal equation"', '4="minimum error"', '5="squared conjugate gradient"', '6="cgstab"', '7="gmres (see option for the solver for tracer diffusion)"', '8="direct"'),
-    fr = '1 : gradient conjugue 2 : residu conjugue 3 : gradient conjugue sur equation normale 4 : erreur minimale 5 : gradient conjugue carre',
-    ang= '1 : conjugate gradient 2 : conjugate gradient 3 :  conjugate gradient on a normal equation 4 : minimum error 5 : squared conjugate gradient 6 : cgstab 7 : gmres (see option for the solver for tracer diffusion) 8 : direct',
-     ),
-
-
-
-Number_Of_First_Time_Step_For_Graphic_Printouts = SIMP( statut='o',typ='I',
-    defaut=0 ,
-    fr = 'Determine le nombre de pas de temps a partir duquel debute lecriture des resultats dans le FICHIER DES RESULTATS.',
-    ang= 'Determines the number of time steps after which the results are first written into the RESULTS FILE.',
-     ),
-
-Number_Of_First_Time_Step_For_Listing_Printouts = SIMP( statut='o',typ='I',
-    defaut=0 ,
-    fr = 'Determine le nombre de pas de temps a partir duquel debute lecriture des resultats dans le listing.',
-    ang= 'Determines the number of time steps after which the results are first written into the listing.',
-     ),
-
-Preconditioning_For_Diffusion_Of_Tracers = SIMP( statut='o',typ='I',
-    defaut=2 ,
-   into =('2="diagonal"', '0="no preconditioning "', '3="diagonal condensed"', '7="crout"', '14="diagonal and crout"', '21="diagonal condensed and crout"'),
-    fr = 'Permet de preconditionner le systeme relatif au traceur.  Memes definition et possibilites que pour le mot-cle PRECONDITIONNEMENT.  0 : pas de preconditionnement, 2 : preconditionnement diagonal.  3 : preconditionnement diagonal avec la matrice conde',
-    ang= 'Preconditioning of the linear system in the tracer diffusion step.  Same definition and possibilities as for the keyword  PRECONDITIONING 0: no preconditioning 2: diagonal preconditioning 3: diagonal preconditioning with the condensed matrix 7: Crouts preconditioning per element.',
-     ),
-
-
-
-Number_Of_Drogues = SIMP( statut='o',typ='I',
-    defaut=0 ,
-    fr = 'Permet deffectuer un suivi de flotteurs',
-    ang= 'Number of drogues in the computation.  The user must then fill the subroutine FLOT specifying the coordinates of the starting points, their departure and arrival times.  The trajectory of drogues is recorded in the BINARY RESULTS FILE that must be given in the steering file',
-     ),
-
-Printout_Period_For_Drogues = SIMP( statut='o',typ='I',
-    defaut=1 ,
-    fr = 'Nombre de pas de temps entre 2 sorties de positions de flotteurs dans le fichier des resultats binaire supplementaire N affecte pas la qualite du calcul de la trajectoire',
-    ang= 'Number of time steps between 2 outputs of drogues positions in the binary file',
-     ),
-
-Number_Of_Lagrangian_Drifts = SIMP( statut='o',typ='I',
-    defaut=0 ,
-    fr = 'Permet deffectuer simultanement plusieurs calculs de derives lagrangiennes initiees a des pas differents',
-    ang= 'Provided for performing several computations of lagrangian drifts starting at different times.  Add A and G in the VARIABLES FOR GRAPHIC PRINTOUTS key-word',
-     ),
-
-
-Solver_Option_For_Tracers_Diffusion = SIMP( statut='o',typ='I',
-    defaut=2 ,
-    fr = 'si le solveur est GMRES (7) le mot cle est la dimension de lespace de KRILOV (valeurs conseillees entre 2 et 15)',
-    ang= 'WHEN GMRES (7) IS CHOSEN, DIMENSION OF THE KRYLOV SPACE TRY VALUES BETWEEN 2 AND 15',
-     ),
-
-
-
-Initial_Values_Of_Tracers = SIMP( statut='o',typ='R',
-    defaut=(0.0, 0.0) ,
-    max=2 ,
-    fr = 'Fixe la valeur initiale du traceur.',
-    ang= 'Sets the initial value of the tracer.',
-     ),
-
-Coefficient_For_Diffusion_Of_Tracers = SIMP( statut='o',typ='R',
-    defaut=1e-06 ,
-    fr = 'Fixe la valeur du coefficient de diffusion du traceur.  Linfluence de ce parametre sur levolution du traceur dans le temps est importante.',
-    ang= 'Sets the value of the tracer diffusivity.',
-     ),
-
-Accuracy_For_Diffusion_Of_Tracers = SIMP( statut='o',typ='R',
-    defaut=1e-06 ,
-    fr = 'Fixe la precision demandee pour le calcul de la diffusion du traceur.',
-    ang= 'Sets the required accuracy for computing the tracer diffusion.',
-     ),
-
-Implicitation_Coefficient_Of_Tracers = SIMP( statut='o',typ='R',
-    defaut=0.6 ,
-    fr = 'Fixe la valeur du coefficient dimplicitation du traceur',
-    ang= 'Sets the value of the implicitation coefficient for the tracer',
-     ),
-
-Velocity_Diffusivity = SIMP( statut='o',typ='R',
-    defaut=1e-06 ,
-    fr = 'Fixe de facon uniforme pour lensemble du domaine, la valeur du coefficient de diffusion de viscosite globale (dynamique + turbulente). Cette valeur peut avoir une influence non negligeable sur la forme et la taille des recirculations.',
-    ang= 'Sets, in an even way for the whole domain, the value of the coefficient of global (dynamic+turbulent) viscosity. this value may have a significant effect both on the shapes and sizes of recirculation zones.',
-     ),
-
-
-
-
-Mean_Depth_For_Linearization = SIMP( statut='o',typ='R',
-    defaut=0.0 ,
-    fr = 'Fixe la hauteur deau autour de laquelle seffectue la linearisation lorsque loption PROPAGATION LINEARISEE est choisie.',
-    ang= 'Sets the water depth about which the linearization is made when the LINEARIZED PROPAGATION OPTION is selected.',
-     ),
-
-
-Prescribed_Velocities = SIMP( statut='o',typ='R',
-    max=2 ,
-    fr = 'Valeurs des vitesses imposees aux frontieres liquides entrantes.  Lire la partie du mode demploi consacree aux conditions aux limites',
-    ang= 'Values of prescribed velocities at the liquid inflow boundaries.  Refer to the section dealing with the boundary conditions',
-     ),
-
-Prescribed_Tracers_Values = SIMP( statut='o',typ='R',
-    max=2 ,
-    fr = 'Valeurs du traceur imposees aux frontieres liquides entrantes.  Lire la partie du mode demploi consacree aux conditions aux limites',
-    ang= 'Tracer values prescribed at the inflow boundaries.  Read the usermanual section dealing with the boundary conditions',
-     ),
-
-
-
-Values_Of_The_Tracers_At_The_Sources = SIMP( statut='o',typ='R',
-    max=2 ,
-    fr = 'Valeurs des traceurs a chacune des sources',
-    ang= 'Values of the tracers at the sources',
-     ),
-
-
-Upwind_Coefficients = SIMP( statut='o',typ='R',
-    defaut=(1.0, 1.0, 1.0, 1) ,
-    max=4 ,
-    fr = 'Coefficients utilises par la methode S.U.P.G.  ces coefficients sont respectivement appliques a 1) U et V 2) H ou C 3) T 4) K ET EPSILON  ',
-    ang= 'Upwind coefficients used by the S.U.P.G. method These coefficients are applied respectively to 1) U and V 2) H  or C 3) T 4) K and epsilon  ',
-     ),
-
-Steering_File = SIMP( statut='o',typ='TXM',
-    fr = 'Nom du fichier contenant les parametres du calcul a realiser.',
-    ang= 'Name of the file containing the parameters of the computation Written by the user.',
-     ),
-
-Boundary_Conditions_File = SIMP( statut='o',typ='TXM',
-    fr = 'Nom du fichier contenant les types de conditions aux limites.  Ce fichier est rempli de facon automatique par le mailleur au moyen de couleurs affectees aux noeuds des frontieres du domaine de calcul.',
-    ang= 'Name of the file containing the types of boundary conditions.  This file is filled automatically by the mesh generator through through colours that are assigned to the boundary nodes.',
-     ),
-
-Release = SIMP( statut='o',typ='TXM',
-    defaut='V7P0' ,
-    fr = 'Numero de version des bibliotheques utilisees par TELEMAC.  SUR UNE STATION DE TRAVAIL 5 versions sont donnees correspondant a : TELEMAC,DAMO,UTILE,BIEF,HP',
-    ang= 'version number of the libraries used by TELEMAC.  ON A WORKSTATION 5 numbers are given, corresponding to the libraries called: TELEMAC,DAMO,UTILE,BIEF,HP',
-     ),
-
-Account_Number = SIMP( statut='o',typ='TXM',
-    fr = 'Numero du compte calcul sur lequel sera impute le cout du calcul.',
-    ang= 'Account number to which the cost of computation shall be charged.',
-     ),
-
-
-Destination = SIMP( statut='o',typ='TXM',
-    defaut='CHE43A' ,
-    fr = 'Nom eventuel dune station de travail sur laquelle lutilisateur desire rediriger le fichier des resultats du calcul.',
-    ang= 'Possible name of a workstation to which the user wants to reroute the result file.',
-     ),
-
-User_On_Destination = SIMP( statut='o',typ='TXM',
-    defaut='JMH' ,
-    fr = 'Nom de lUSER de lutilisateur sur la station de travail ou lon desire rediriger le fichier de resultts.',
-    ang= 'Users name of USER at the workstation onto which the results file shall desirebly be rerouted.',
-     ),
-
-Names_Of_Clandestine_Variables = SIMP( statut='o',typ='TXM',
-    max=2 ,
-    fr = 'Noms de variables qui ne sont pas utilisees par TELEMAC, mais qui doivent etre conservees lors de son execution.  Ceci peut etre utilise entre autres lors du couplage de TELEMAC avec un autre code.  Les variables clandestines sont alors des variables propres a lautre code et sont rendues dans le fichier de resultats.',
-    ang= 'Names of variables that are not used by TELEMAC, but should be preserved when it is being run. This keyword may be used, for instance when it if TELEMAC is coupled with another code. Thus, the clandestine variables belong to the other code and are given back in the results file.',
-     ),
-
-
-
-
-
-
-
-Threshold_Depth_For_Wind = SIMP( statut='o',typ='R',
-    defaut=1.0 ,
-    fr = 'Retire la force due au vent dans les petites profondeurs',
-    ang= 'Wind is not taken into account for small depths',
-     ),
-
-
-Origin_Coordinates = SIMP( statut='o',typ='I',
-    defaut=(0, 0) ,
-    max=2 ,
-    fr = 'Valeur en metres, utilise pour eviter les trops grands nombres, transmis dans le format Selafin mais pas dautre traitement pour linstant',
-    ang= 'Value in metres, used to avoid large real numbers,  added in Selafin format, but so far no other treatment',
-     ),
-
-Delwaq_Printout_Period = SIMP( statut='o',typ='I',
-    defaut=1 ,
-    fr = 'Periode de sortie des resultats pour Delwaq',
-    ang= 'Printout period for Delwaq file',
-     ),
-
-Volumes_Delwaq_File = SIMP( statut='o',typ='TXM',
-    fr = 'Fichier de resultats pour le couplage avec Delwaq',
-    ang= 'Results file for coupling with Delwaq',
-     ),
-
-Exchange_Areas_Delwaq_File = SIMP( statut='o',typ='TXM',
-    fr = 'Fichier de resultats pour le couplage avec Delwaq',
-    ang= 'Results file for coupling with Delwaq',
-     ),
-
-Vertical_Fluxes_Delwaq_File = SIMP( statut='o',typ='TXM',
-    fr = 'Fichier de resultats pour le couplage avec Delwaq',
-    ang= 'Results file for coupling with Delwaq',
-     ),
-
-Salinity_Delwaq_File = SIMP( statut='o',typ='TXM',
-    fr = 'Fichier de resultats pour le couplage avec Delwaq',
-    ang= 'Results file for coupling with Delwaq',
-     ),
-
-Bottom_Surfaces_Delwaq_File = SIMP( statut='o',typ='TXM',
-    fr = 'Fichier de resultats pour le couplage avec Delwaq',
-    ang= 'Results file for coupling with Delwaq',
-     ),
-
-Exchanges_Between_Nodes_Delwaq_File = SIMP( statut='o',typ='TXM',
-    fr = 'Fichier de resultats pour le couplage avec Delwaq',
-    ang= 'Results file for coupling with Delwaq',
-     ),
-
-Nodes_Distances_Delwaq_File = SIMP( statut='o',typ='TXM',
-    fr = 'Fichier de resultats pour le couplage avec Delwaq',
-    ang= 'Results file for coupling with Delwaq',
-     ),
-
-Temperature_Delwaq_File = SIMP( statut='o',typ='TXM',
-    fr = 'Fichier de resultats pour le couplage avec Delwaq',
-    ang= 'Results file for coupling with Delwaq',
-     ),
-
-Velocity_Delwaq_File = SIMP( statut='o',typ='TXM',
-    fr = 'Fichier de resultats pour le couplage avec Delwaq',
-    ang= 'Results file for coupling with Delwaq',
-     ),
-
-Diffusivity_Delwaq_File = SIMP( statut='o',typ='TXM',
-    fr = 'Fichier de resultats pour le couplage avec Delwaq',
-    ang= 'Results file for coupling with Delwaq',
-     ),
-
-Delwaq_Steering_File = SIMP( statut='o',typ='TXM',
-    fr = 'Fichier de resultats pour le couplage avec Delwaq',
-    ang= 'Results file for coupling with Delwaq',
-     ),
-
-Time_Range_For_Fourier_Analysis = SIMP( statut='o',typ='R',
-    defaut=(0.0, 0.0) ,
-    max=2 ,
-    fr = 'Pour le calcul du marnage et de la phase de la maree',
-    ang= 'For computing tidal range and phase of tide',
-     ),
-
-Number_Of_Tracers = SIMP( statut='o',typ='I',
-    defaut=0 ,
-    fr = 'Definit le nombre de traceurs.',
-    ang= 'Defines the number of tracers',
-     ),
-
-Names_Of_Tracers = SIMP( statut='o',typ='TXM',
-    max=2 ,
-    fr = 'Noms des traceurs en 32 caracteres, 16 pour le nom 16 pour lunite',
-    ang= 'Name of tracers in 32 characters, 16 for the name, 16 for the unit.',
-     ),
-
-Salinity_For_Delwaq = SIMP( statut='o',typ='bool',
-    defaut=False ,
-    fr = 'Decide de la sortie de la salinite pour Delwaq',
-    ang= 'Triggers output of salinity for Delwaq',
-     ),
-
-Temperature_For_Delwaq = SIMP( statut='o',typ='bool',
-    defaut=False ,
-    fr = 'Decide de la sortie de la temperature pour Delwaq',
-    ang= 'Triggers output of temperature for Delwaq',
-     ),
-
-Velocity_For_Delwaq = SIMP( statut='o',typ='bool',
-    defaut=False ,
-    fr = 'Decide de la sortie de la vitesse pour Delwaq',
-    ang= 'Triggers output of velocity for Delwaq',
-     ),
-
-Diffusivity_For_Delwaq = SIMP( statut='o',typ='bool',
-    defaut=False ,
-    fr = 'Decide de la sortie du coefficient de diffusion pour Delwaq',
-    ang= 'Triggers output of diffusion for Delwaq',
-     ),
-
-
-
-
-
-
-Tomawac_Steering_File = SIMP( statut='o',typ='TXM',
-    fr = 'Fichier des parametres de Tomawac en cas de couplage interne',
-    ang= 'Tomawac parameter file in case of internal coupling',
-     ),
-
-Coupling_Period_For_Tomawac = SIMP( statut='o',typ='I',
-    defaut=1 ,
-    fr = 'pour eviter de faire le couplage a chaque pas de temps',
-    ang= 'to avoid coupling at every time-step',
-     ),
-
-Finite_Volume_Scheme = SIMP( statut='o',typ='TXM',
-#CHoix de 0 a 6
-      into=[ "Roe scheme", "kinetic order 1", "kinetic order 2", "Zokagoa scheme order 1", "Tchamen scheme order 1", "HLLC scheme order 1", "WAF scheme order 2"],
-
-      defaut="kinetic order 1",
-),
-Newmark_Time_Integration_Coefficient = SIMP( statut='o',typ='R',
-    defaut=1.0 ,
-    fr = '1. : Euler explicite 0.5 : ordre 2 en temps',
-    ang= '1. : Euler explicit 0.5 : order 2 in time',
-     ),
-
-
-Rain_Or_Evaporation = SIMP( statut='o',typ='bool',
-    defaut=False ,
-    fr = 'Pour ajouter un apport ou une perte deau en surface.  Voir le mot-cle PLUIE OU EVAPORATION EN MM PAR JOUR',
-    ang= 'to add or remove water at the free surface. See the key-word RAIN OR EVAPORATION IN MM PER DAY',
-     ),
-
-Rain_Or_Evaporation_In_Mm_Per_Day = SIMP( statut='o',typ='R',
-    defaut=0 ,
-    fr = 'Pour ajouter un apport ou une perte deau en surface',
-    ang= 'to add or remove water at the free surface',
-     ),
-
-Binary_Database_1_For_Tide = SIMP( statut='o',typ='TXM',
-    fr = 'Base de donnees binaire 1 tiree du fichier du modele de maree.  Dans le cas des donnees satellitaires de TPXO, ce fichier correspond aux donnees de niveau deau, par exemple h_tpxo7.2',
-    ang= 'Binary database 1 extracted from the tidal model file.  In the case of the TPXO satellite altimetry model, this file should be for free surface level, for instance h_tpxo7.2',
-     ),
-
-Binary_Database_2_For_Tide = SIMP( statut='o',typ='TXM',
-    fr = 'Base de donnees binaire 2 tiree du fichier du modele de maree.  Dans le cas des donnees satellitaires de TPXO, ce fichier correspond aux donnees de vitesse de marrees, par exemple u_tpxo7.2',
-    ang= 'Binary database 2 extracted from the tidal model file.  In the case of the TPXO satellite altimetry model, this file should be for tidal velocities, for instance u_tpxo7.2',
-     ),
-
-Option_For_Tsunami_Generation = SIMP( statut='o',typ='I',
-    defaut=0 ,
-    fr = '',
-    ang= '',
-     ),
-
-Physical_Characteristics_Of_The_Tsunami = SIMP( statut='o',typ='R',
-    defaut=(100.0, 210000.0, 75000.0, 13.6, 81.0, 41.0, 110.0, 0.0, 0.0, 3.0) ,
-    max=10 ,
-    fr = '',
-    ang= '',
-     ),
-
-Values_Of_Tracers_In_The_Rain = SIMP( statut='o',typ='R',
-    max=2 ,
-    fr = '',
-    ang= '',
-     ),
-
-
-Coefficient_To_Calibrate_Tidal_Velocities = SIMP( statut='o',typ='R',
-    defaut=999999.0 ,
-    fr = 'Coefficient pour ajuster les composantes de vitesse de londe de maree aux frontieres maritimes.  La valeur par defaut 999999. signifie que cest la racine carree du COEFFICIENT DE CALAGE DU MARNAGE qui est prise',
-    ang= 'Coefficient to calibrate the tidal velocities of tidal wave at tidal open boundary conditions.  Default value 999999. means that the square root of COEFFICIENT TO CALIBRATE TIDAL RANGE is taken',
-     ),
-
-Zone_Number_In_Geographic_System = SIMP( statut='o',typ='I',
-    defaut=-1 ,
-    fr = 'Numero de zone (fuseau ou type de projection) lors de lutilisation dune projection plane.  Indiquer le systeme geographique dans lequel est construit le modele numerique avec le mot-cle SYSTEME GEOGRAPHIQUE',
-    ang= 'Number of zone when using a plane projection.  Indicate the geographic system in which the numerical model is built with the keyword GEOGRAPHIC SYSTEM',
-     ),
-
-Law_Of_Tracers_Degradation = SIMP( statut='o',typ='I',
-    defaut=(0, 0) ,
-    max=2 ,
-    fr = 'Prise en compte dune loi de decroissance des traceurs',
-    ang= 'Take in account a law for tracers decrease',
-     ),
-
-Coefficient_1_For_Law_Of_Tracers_Degradation = SIMP( statut='o',typ='R',
-    max=2 ,
-    fr = 'Coefficient 1 de la loi de decroissance des traceurs',
-    ang= 'Coefficient 1 of law for tracers decrease',
-     ),
-
-
-Spatial_Projection_Type = SIMP( statut='o',typ='I',
-    defaut=1 ,
-   into =('1="CARTESIAN, NOT GEOREFERENCED"', '2="MERCATOR"', '3="LATITUDE LONGITUDE"'),
-    fr = 'Option 2 ou 3 obligatoire pour les coordonnees spheriques Option 3 : latitude et longitude en degres !',
-    ang= 'Option 2 or 3 mandatory for spherical coordinates Option 3: latitude and longitude in degrees!',
-     ),
-
-Option_For_Characteristics = SIMP( statut='o',typ='I',
-    defaut=1 ,
-    fr = '1: forme forte 2: forme faible',
-    ang= '1: strong form 2: weak form',
-     ),
-
-Maximum_Number_Of_Iterations_For_Advection_Schemes = SIMP( statut='o',typ='I',
-    defaut=10 ,
-    fr = 'Seulement pour schemes 13 et 14',
-    ang= 'Only for schemes 13 and 14',
-     ),
-
-
-Number_Of_Gauss_Points_For_Weak_Characteristics = SIMP( statut='o',typ='I',
-    defaut=3 ,
-    fr = 'Voir les release notes 6.3',
-    ang= 'See release notes 6.3',
-     ),
-
-Mass_lumping_For_Weak_Characteristics = SIMP( statut='o',typ='R',
-    defaut=0.0 ,
-    fr = 'Applique a la matrice de masse',
-    ang= 'To be applied to the mass matrix',
-     ),
-
-
-Zones_File = SIMP( statut='o',typ='TXM',
-    fr = 'Fichier des zones avec sur chaque ligne numero de point  numero de zone',
-    ang= 'Zones file, with on every line: point number   zone number',
-     ),
-
-Scheme_For_Advection_Of_Velocities = SIMP( statut='o',typ='I',
-    defaut=1 ,
-   into =('0="NO ADVECTION"', '1="CHARACTERISTICS"', '2="EXPLICIT + SUPG"', '3="EXPLICIT LEO POSTMA"', '4="EXPLICIT + MURD SCHEME N"', '5="EXPLICIT + MURD SCHEME PSI"', '13="N-SCHEME FOR TIDAL FLATS"', '14="N-SCHEME FOR TIDAL FLATS"'),
-    fr = 'Choix du schema de convection pour les vitesses, remplace FORME DE LA CONVECTION',
-    ang= 'Choice of the advection scheme for the velocities, replaces TYPE OF ADVECTION',
-     ),
-
-Scheme_For_Advection_Of_Tracers = SIMP( statut='o',typ='I',
-    defaut=1 ,
-   into =('0="NO ADVECTION"', '1="CHARACTERISTICS"', '2="EXPLICIT + SUPG"', '3="EXPLICIT LEO POSTMA"', '4="EXPLICIT + MURD SCHEME N"', '5="EXPLICIT + MURD SCHEME PSI"', '13="LEO POSTMA FOR TIDAL FLATS"', '14="N-SCHEME FOR TIDAL FLATS"'),
-    fr = 'Choix du schema de convection pour les traceurs, remplace FORME DE LA CONVECTION',
-    ang= 'Choice of the advection scheme for the tracers, replaces TYPE OF ADVECTION',
-     ),
-
-Scheme_For_Advection_Of_K_epsilon = SIMP( statut='o',typ='I',
-    defaut=1 ,
-   into =('0="NO ADVECTION"', '1="CHARACTERISTICS"', '2="EXPLICIT + SUPG"', '3="EXPLICIT LEO POSTMA"', '4="EXPLICIT + MURD SCHEME N"', '5="EXPLICIT + MURD SCHEME PSI"', '13="LEO POSTMA FOR TIDAL FLATS"', '14="N-SCHEME FOR TIDAL FLATS"'),
-    fr = 'Choix du schema de convection pour k et epsilon, remplace FORME DE LA CONVECTION',
-    ang= 'Choice of the advection scheme for k and epsilon, replaces TYPE OF ADVECTION',
-     ),
-
-Scheme_Option_For_Advection_Of_Tracers = SIMP( statut='o',typ='I',
-    defaut=1 ,
-    fr = 'Si present remplace et a priorite sur : OPTION POUR LES CARACTERISTIQUES OPTION DE SUPG Si schema PSI : 1=explicite 2=predicteur-correcteur pour les traceurs',
-    ang= 'If present replaces and has priority over: OPTION FOR CHARACTERISTICS SUPG OPTION IF PSI SCHEME: 1=explicit 2=predictor-corrector for tracers',
-     ),
-
-Scheme_Option_For_Advection_Of_Velocities = SIMP( statut='o',typ='I',
-    defaut=1 ,
-    fr = 'Si present remplace et a priorite sur : OPTION POUR LES CARACTERISTIQUES OPTION DE SUPG Si schema PSI : 1=explicite 2=predicteur-correcteur pour les traceurs',
-    ang= 'If present replaces and has priority over: OPTION FOR CHARACTERISTICS SUPG OPTION IF PSI SCHEME: 1=explicit 2=predictor-corrector for velocities',
-     ),
-
-Scheme_Option_For_Advection_Of_K_epsilon = SIMP( statut='o',typ='I',
-    defaut=1 ,
-    fr = 'Si present remplace et a priorite sur : OPTION POUR LES CARACTERISTIQUES OPTION DE SUPG Si schema PSI : 1=explicite 2=predicteur-correcteur pour k et epsilon',
-    ang= 'If present replaces and has priority over: OPTION FOR CHARACTERISTICS SUPG OPTION IF PSI SCHEME: 1=explicit 2=predictor-corrector for k and epsilon',
-     ),
-
-Secondary_Currents = SIMP( statut='o',typ='bool',
-    defaut=False ,
-    fr = 'Pour prendre en compte les courants secondaires',
-    ang= 'Using the parametrisation for secondary currents',
-     ),
-
-Production_Coefficient_For_Secondary_Currents = SIMP( statut='o',typ='R',
-    defaut=7.071 ,
-    fr = 'Une constante dans les termes de creation de Omega',
-    ang= 'A constant in the production terms of Omega',
-     ),
-
-Dissipation_Coefficient_For_Secondary_Currents = SIMP( statut='o',typ='R',
-    defaut=0.5 ,
-    fr = 'Coefficient de dissipation de Omega',
-    ang= 'Coefficient of dissipation term of Omega',
-     ),
-
-Water_Quality = SIMP( statut='o',typ='bool',
-    defaut=False ,
-    fr = 'Prise en compte ou non de qualite d eau',
-    ang= 'waq effects are to be taken into account or not.',
-     ),
-
-Value_Of_Atmospheric_Pressure = SIMP( statut='o',typ='R',
-    defaut=100000.0 ,
-    fr = 'donne la valeur de la pression atmospherique lorsquelle est constante en temps et en espace',
-    ang= 'gives the value of atmospheric pressure when it is contant in time and space',
-     ),
-
-
-)
index c2034bafa57b7bf5794385ee1b38c5606c97f358..a00a8f27696cf8f2b1bb3d3e399bacd33d991419 100644 (file)
 """Ce module contient le plugin generateur de fichier au format  Code_Carmel3D pour EFICAS.
 """
 
-listeSupprime  = ( 
-      'CONSIGNE', 'TYPE CONDITION',
-      'PRESCRIBED ELEVATIONS', 'PRESCRIBED FLOWRATES', 'PRESCRIBED VELOCITY',
-      'ADVECTION U AND V', 'ADVECTION H', 'ADVECTION TRACERS', 'ADVECTION K AND EPSILON',
-      'TYPE OF ADVECTION U AND V', 'TYPE OF ADVECTION H', 
-      'TYPE OF ADVECTION TRACERS', 'TYPE OF ADVECTION K AND EPSILON',
-      'SUPG OPTION U AND V', 'SUPG OPTION H', 'SUPG OPTION TRACERS', 'SUPG OPTION K AND EPSILON',
-      'UPWIND COEFFICIENTS Of U AND V', 'UPWIND COEFFICIENTS OF H', 
-      'UPWIND COEFFICIENTS TRACERS', 'UPWIND COEFFICIENTS K AND EPSILON', 
-      'DAY', 'MONTH', 'YEAR', 'HOUR', 'MINUTE', 'SECOND', 
-) 
-               
-#                   'LIMIT VALUES H', 'LIMIT VALUES U', 'LIMIT VALUES V', 'LIMIT VALUES T',
-#                   'SISYPHE', 'TOMAWAC', 'DELWAQ',
-#                   'TOLERANCE FOR H', 'TOLERANCE FOR U', 'TOLERANCE FOR V', 'TOLERANCE FOR COUT',
-#
-DicoAglomere= {
-'LIMIT VALUES'        : ( 'Limit_Values_H', 'Limit_Values_U', 'Limit_Values_V', 'Limit_Values_T'),
-'COUPLING WITH'       : ( 'Sisyphe', 'Tomawac', 'Delwaq'),
-'TOLERANCE'           : ( 'Tolerance_For_H', 'Tolerance_For_U', 'Tolerance_For_V', 'Tolerance_For_cout',),
-}
-
-DicoEficasToCas= {
- 'C U PRECONDITIONING'                           : 'C-U PRECONDITIONING' ,
- 'INFORMATION ABOUT K EPSILON MODEL'             : 'INFORMATION ABOUT K-EPSILON MODEL' ,
- 'MANNING DEFAULT VALUE FOR COLEBROOK WHITE LAW' : 'MANNING DEFAULT VALUE FOR COLEBROOK-WHITE LAW' ,
- 'MASS BALANCE'                                  : 'MASS-BALANCE' ,
- 'MASS LUMPING FOR WEAK CHARACTERISTICS'         : 'MASS-LUMPING FOR WEAK CHARACTERISTICS',
- 'MASS LUMPING ON H'                             : 'MASS-LUMPING ON H' ,
- 'MASS LUMPING ON TRACERS'                       : 'MASS-LUMPING ON TRACERS' ,
- 'MASS LUMPING ON VELOCITY'                      : 'MASS-LUMPING ON VELOCITY' ,
- 'MATRIX VECTOR PRODUCT'                         : 'MATRIX-VECTOR PRODUCT' ,
- 'NON DIMENSIONAL DISPERSION COEFFICIENTS'       : 'NON-DIMENSIONAL DISPERSION COEFFICIENTS' ,
- 'NON SUBMERGED VEGETATION FRICTION'             : 'NON-SUBMERGED VEGETATION FRICTION' ,
- 'NUMBER OF SUB ITERATIONS FOR NON LINEARITIES'  : 'NUMBER OF SUB-ITERATIONS FOR NON-LINEARITIES' ,
- 'OPTION FOR THE SOLVER FOR K EPSILON MODEL'     : 'OPTION FOR THE SOLVER FOR K-EPSILON MODEL' ,
- 'PRECONDITIONING FOR K EPSILON MODEL'           : 'PRECONDITIONING FOR K-EPSILON MODEL' ,
- 'SOLVER FOR K EPSILON MODEL'                    : 'SOLVER FOR K-EPSILON MODEL' ,
- 'STAGE DISCHARGE CURVES FILE'                   : 'STAGE-DISCHARGE CURVES FILE' ,
- 'STAGE DISCHARGE CURVES'                        : 'STAGE-DISCHARGE CURVES' ,
- 'TIME STEP REDUCTION FOR K EPSILON MODEL'       : 'TIME STEP REDUCTION FOR K-EPSILON MODEL' ,
- 'VARIABLE TIME STEP'                            : 'VARIABLE TIME-STEP' ,
-
-}
-
-DicoCasToEficas = {}
-for k in DicoCasToEficas.keys() : DicoCasToEficas[DicoEficasToCas[k]]=k
-
-
-DicoFrancaisAvecApostrophe= {
-      "Coordonnees_De_L_Origine"                             : "Coordonnees_De_L'origine",
-      "Modele_De_Nappes_D_Hydrocarbures"                     : "Modele_De_Nappes_D'hydrocarbures",
-      "Maximum_D_Iterations_Pour_La_Diffusion_Des_Traceurs"  : "Maximum_D'iterations_Pour_La_Diffusion_Des_Traceurs",
-      "Coefficient_D_Implicitation_Des_Traceurs"             : "Coefficient_D'implicitation_Des_Traceurs",
-      "Coefficient_D_Influence_Du_Vent"                      : "Coefficient_D'influence_Du_Vent",
-      "Date_De_L_Origine_Des_Temps"                          : "Date_De_L'origine_Des_Temps",
-      "Elements_Masques_Par_L_Utilisateur"                   : "Elements_Masques_Par_L'utilisateur",
-      "Maximum_D_Iterations_Pour_L_Identification"           : "Maximum_D'iterations_Pour_L'identification",
-      "Heure_De_L_Origine_Des_Temps"                         : "Heure_De_L'origine_Des_Temps",
-      "Methode_D_Identification"                             : "Methode_D'identification",
-      "Masse_Volumique_De_L_Eau"                             : "Masse_Volumique_De_L'eau",
-      "Coefficient_D_Integration_En_Temps_De_Newmark"        : "Coefficient_D'integration_En_Temps_De_Newmark",
-      "Bornes_En_Temps_Pour_L_Analyse_De_Fourier"            : "Bornes_En_Temps_Pour_L'analyse_De_Fourier",
-      "Periodes_D_Analyse_De_Fourier"                        : "Periodes_D'analyse_De_Fourier",
-      "Precisions_Pour_L_Identification"                     : "Precisions_Pour_L'identification",
-      "Maximum_D_Iterations_Pour_K_Et_Epsilon"               : "Maximum_D'iterations_Pour_K_Et_Epsilon",
-      "Maximum_D_Iterations_Pour_Les_Schemas_De_Convection"  : "Maximum_D'iterations_Pour_Les_Schemas_De_Convection",
-      "Numero_De_L_Enregistrement_Dans_Le_Fichier_De_Houle"  : "Numero_De_L'enregistrement_Dans_Le_Fichier_De_Houle",
-      "Criteres_D_Arret"  : "Criteres_D'arret",
-}
-
 ListeSupprimeCasToEficas = ('Validation','Parallel_Processors')
-ListeCalculEficasToCas   = ('Validation',)
-ListeCalculCasToEficas   = ('Option_De_Supg', 'Forme_De_La_Convection')
-
-DicoAvecMajuscules={
-  'WGS84' : 'WGS84', 
-  'TPXO'  : 'TPXO', 
-  'Saint-venant ef' : 'Saint-venant EF'}
index 4ab64b856855434fbc3c684de6dc9bc093dadff9..1327ed03ccf336a29d4db154e34189b4e7cfcee6 100644 (file)
@@ -32,7 +32,7 @@ class CONFIG(configuration.CONFIG_BASE):
   def __init__(self,appli,repIni):\r
   #-----------------------------------\r
 \r
-      self.labels_user=['catalogues','lang']\r
+      self.labels_user=['catalogues','lang','force_langue']\r
       self.labels_eficas=['lang','rep_cata','catalogues']\r
 \r
       configuration.CONFIG_BASE.__init__(self,appli,'.Eficas_monCode')\r
diff --git a/Telemac/desDoc_monCode.py b/Telemac/desDoc_monCode.py
deleted file mode 100644 (file)
index ead4668..0000000
+++ /dev/null
@@ -1,60 +0,0 @@
-# -*- coding: utf-8 -*-
-
-# Form implementation generated from reading ui file 'desDoc.ui'
-#
-# Created: Tue Nov 19 18:52:47 2013
-#      by: PyQt4 UI code generator 4.9.6
-#
-# WARNING! All changes made in this file will be lost!
-
-from PyQt4 import QtCore, QtGui
-
-try:
-    _fromUtf8 = QtCore.QString.fromUtf8
-except AttributeError:
-    def _fromUtf8(s):
-        return s
-
-try:
-    _encoding = QtGui.QApplication.UnicodeUTF8
-    def _translate(context, text, disambig):
-        return QtGui.QApplication.translate(context, text, disambig, _encoding)
-except AttributeError:
-    def _translate(context, text, disambig):
-        return QtGui.QApplication.translate(context, text, disambig)
-
-class Ui_desGraphique(object):
-    def setupUi(self, desGraphique):
-        desGraphique.setObjectName(_fromUtf8("desGraphique"))
-        desGraphique.resize(566, 575)
-        self.label = QtGui.QLabel(desGraphique)
-        self.label.setGeometry(QtCore.QRect(0, 0, 571, 571))
-        self.label.setText(_fromUtf8(""))
-        self.label.setPixmap(QtGui.QPixmap(_fromUtf8("../monCode/docMonCode2.png")))
-        self.label.setObjectName(_fromUtf8("label"))
-        self.PB_layer_2_height = QtGui.QPushButton(desGraphique)
-        self.PB_layer_2_height.setGeometry(QtCore.QRect(370, 80, 201, 32))
-        self.PB_layer_2_height.setObjectName(_fromUtf8("PB_layer_2_height"))
-        self.PB_layer_1_height = QtGui.QRadioButton(desGraphique)
-        self.PB_layer_1_height.setGeometry(QtCore.QRect(200, 70, 21, 29))
-        self.PB_layer_1_height.setText(_fromUtf8(""))
-        self.PB_layer_1_height.setObjectName(_fromUtf8("PB_layer_1_height"))
-
-        self.retranslateUi(desGraphique)
-        QtCore.QMetaObject.connectSlotsByName(desGraphique)
-
-    def retranslateUi(self, desGraphique):
-        desGraphique.setWindowTitle(_translate("desGraphique", "Form", None))
-        self.PB_layer_2_height.setText(_translate("desGraphique", "layer_2_height", None))
-        self.PB_layer_1_height.setToolTip(_translate("desGraphique", "layer_1_height", None))
-
-
-if __name__ == "__main__":
-    import sys
-    app = QtGui.QApplication(sys.argv)
-    desGraphique = QtGui.QWidget()
-    ui = Ui_desGraphique()
-    ui.setupUi(desGraphique)
-    desGraphique.show()
-    sys.exit(app.exec_())
-
diff --git a/Telemac/dicoCasEnToCata.py b/Telemac/dicoCasEnToCata.py
new file mode 100644 (file)
index 0000000..80ba567
--- /dev/null
@@ -0,0 +1,628 @@
+dicoCataToEngTelemac = {
+   "COEFFICIENT_TO_CALIBRATE_TIDAL_VELOCITIES" : "COEFFICIENT TO CALIBRATE TIDAL VELOCITIES",
+   "COST_FUNCTION" : "COST FUNCTION",
+   "BOTTOM_TOPOGRAPHY_FILE" : "BOTTOM TOPOGRAPHY FILE",
+   "DENSITY_OF_ALGAE" : "DENSITY OF ALGAE",
+   "STEERING_FILE" : "STEERING FILE",
+   "NUMBER_OF_CORRECTIONS_OF_DISTRIBUTIVE_SCHEMES" : "NUMBER OF CORRECTIONS OF DISTRIBUTIVE SCHEMES",
+   "LONGITUDE_OF_ORIGIN_POINT" : "LONGITUDE OF ORIGIN POINT",
+   "PREVIOUS_COMPUTATION_FILE" : "PREVIOUS COMPUTATION FILE",
+   "DIAMETER_OF_ROUGHNESS_ELEMENTS" : "DIAMETER OF ROUGHNESS ELEMENTS",
+   "THICKNESS_OF_ALGAE" : "THICKNESS OF ALGAE",
+   "CORIOLIS" : "CORIOLIS",
+   "OPTION_FOR_TIDAL_BOUNDARY_CONDITIONS" : "OPTION FOR TIDAL BOUNDARY CONDITIONS",
+   "NUMBER_OF_TIME_STEPS" : "NUMBER OF TIME STEPS",
+   "ADVECTION" : "ADVECTION",
+   "NEWMARK_TIME_INTEGRATION_COEFFICIENT" : "NEWMARK TIME INTEGRATION COEFFICIENT",
+   "TIME_STEP" : "TIME STEP",
+   "VALUE_OF_ATMOSPHERIC_PRESSURE" : "VALUE OF ATMOSPHERIC PRESSURE",
+   "LISTING_FOR_PRINTOUT_PERIOD" : "LISTING FOR PRINTOUT PERIOD",
+   "BINARY_DATABASE_2_FOR_TIDE" : "BINARY DATABASE 2 FOR TIDE",
+   "VOLUMES_DELWAQ_FILE" : "VOLUMES DELWAQ FILE",
+   "DESCRIPTION_OF_LIBRARIES" : "DESCRIPTION OF LIBRARIES",
+   "STOP_IF_A_STEADY_STATE_IS_REACHED" : "STOP IF A STEADY STATE IS REACHED",
+   "SALINITY_DELWAQ_FILE" : "SALINITY DELWAQ FILE",
+   "IMPLICITATION_FOR_DEPTH" : "IMPLICITATION FOR DEPTH",
+   "DROGUES_FILE" : "DROGUES FILE",
+   "TEMPERATURE_FOR_DELWAQ" : "TEMPERATURE FOR DELWAQ",
+   "LANGUAGE" : "LANGUAGE",
+   "INITIAL_DEPTH" : "INITIAL DEPTH",
+   "IDENTIFICATION_METHOD" : "IDENTIFICATION METHOD",
+   "COEFFICIENT_FOR_DIFFUSION_OF_TRACERS" : "COEFFICIENT FOR DIFFUSION OF TRACERS",
+   "NAMES_OF_DIFFERENTIATORS" : "NAMES OF DIFFERENTIATORS",
+   "VELOCITY_DIFFUSIVITY" : "VELOCITY DIFFUSIVITY",
+   "VECTOR_LENGTH" : "VECTOR LENGTH",
+   "GRAPHIC_PRINTOUT_PERIOD" : "GRAPHIC PRINTOUT PERIOD",
+   "LINEARIZED_PROPAGATION" : "LINEARIZED PROPAGATION",
+   "PRECONDITIONING" : "PRECONDITIONING",
+   "MANNING_DEFAULT_VALUE_FOR_COLEBROOK_WHITE_LAW" : "MANNING DEFAULT VALUE FOR COLEBROOK-WHITE LAW",
+   "TURBULENCE_MODEL" : "TURBULENCE MODEL",
+   "PRINTOUT_PERIOD_FOR_DROGUES" : "PRINTOUT PERIOD FOR DROGUES",
+   "DURATION_OF_RAIN_OR_EVAPORATION_IN_HOURS" : "DURATION OF RAIN OR EVAPORATION IN HOURS",
+   "DEBUGGER" : "DEBUGGER",
+   "DICTIONARY" : "DICTIONARY",
+   "SIPHONS_DATA_FILE" : "SIPHONS DATA FILE",
+   "WATER_DISCHARGE_OF_SOURCES" : "WATER DISCHARGE OF SOURCES",
+   "ADVECTION_OF_U_AND_V" : "ADVECTION OF U AND V",
+   "ANTECEDENT_MOISTURE_CONDITIONS" : "ANTECEDENT MOISTURE CONDITIONS",
+   "DIFFUSION_OF_VELOCITY" : "DIFFUSION OF VELOCITY",
+   "WATER_DENSITY" : "WATER DENSITY",
+   "ORIGIN_COORDINATES" : "ORIGIN COORDINATES",
+   "LATITUDE_OF_ORIGIN_POINT" : "LATITUDE OF ORIGIN POINT",
+   "PRESCRIBED_TRACERS_VALUES" : "PRESCRIBED TRACERS VALUES",
+   "MAXIMUM_NUMBER_OF_ITERATIONS_FOR_SOLVER" : "MAXIMUM NUMBER OF ITERATIONS FOR SOLVER",
+   "FLUXLINE" : "FLUXLINE",
+   "INFORMATION_ABOUT_SPALART_ALLMARAS_MODEL" : "INFORMATION ABOUT SPALART-ALLMARAS MODEL",
+   "VELOCITY_FOR_DELWAQ" : "VELOCITY FOR DELWAQ",
+   "PARALLEL_PROCESSORS" : "PARALLEL PROCESSORS",
+   "ROUGHNESS_COEFFICIENT_OF_BOUNDARIES" : "ROUGHNESS COEFFICIENT OF BOUNDARIES",
+   "RAINFALL_RUNOFF_MODEL" : "RAINFALL-RUNOFF MODEL",
+   "PSI_SCHEME_OPTION" : "PSI SCHEME OPTION",
+   "SCHEME_OPTION_FOR_ADVECTION_OF_VELOCITIES" : "SCHEME OPTION FOR ADVECTION OF VELOCITIES",
+   "INITIAL_CONDITIONS" : "INITIAL CONDITIONS",
+   "INITIAL_TIME_SET_TO_ZERO" : "INITIAL TIME SET TO ZERO",
+   "NUMBER_OF_SUB_ITERATIONS_FOR_NON_LINEARITIES" : "NUMBER OF SUB-ITERATIONS FOR NON-LINEARITIES",
+   "OPTION_FOR_THE_DIFFUSION_OF_TRACERS" : "OPTION FOR THE DIFFUSION OF TRACERS",
+   "CULVERTS_DATA_FILE" : "CULVERTS DATA FILE",
+   "DIAMETER_OF_ALGAE" : "DIAMETER OF ALGAE",
+   "ACCURACY_OF_EPSILON" : "ACCURACY OF EPSILON",
+   "MAXIMUM_NUMBER_OF_ITERATIONS_FOR_DIFFUSION_OF_TRACERS" : "MAXIMUM NUMBER OF ITERATIONS FOR DIFFUSION OF TRACERS",
+   "MASS_LUMPING_ON_VELOCITY" : "MASS-LUMPING ON VELOCITY",
+   "FRICTION_DATA_FILE" : "FRICTION DATA FILE",
+   "SCHEME_FOR_ADVECTION_OF_K_EPSILON" : "SCHEME FOR ADVECTION OF K-EPSILON",
+   "SOLVER_ACCURACY" : "SOLVER ACCURACY",
+   "NAMES_OF_POINTS" : "NAMES OF POINTS",
+   "TOMAWAC_STEERING_FILE" : "TOMAWAC STEERING FILE",
+   "BOUNDARY_CONDITIONS_FILE" : "BOUNDARY CONDITIONS FILE",
+   "STOP_CRITERIA" : "STOP CRITERIA",
+   "BINARY_RESULTS_FILE_FORMAT" : "BINARY RESULTS FILE FORMAT",
+   "TEMPERATURE_DELWAQ_FILE" : "TEMPERATURE DELWAQ FILE",
+   "PROPAGATION" : "PROPAGATION",
+   "FINITE_VOLUME_SCHEME" : "FINITE VOLUME SCHEME",
+   "IMPLICITATION_COEFFICIENT_OF_TRACERS" : "IMPLICITATION COEFFICIENT OF TRACERS",
+   "CORIOLIS_COEFFICIENT" : "CORIOLIS COEFFICIENT",
+   "PRESCRIBED_FLOWRATES" : "PRESCRIBED FLOWRATES",
+   "REFINEMENT_LEVELS" : "REFINEMENT LEVELS",
+   "NUMBER_OF_FIRST_TIME_STEP_FOR_LISTING_PRINTOUTS" : "NUMBER OF FIRST TIME STEP FOR LISTING PRINTOUTS",
+   "PRINTING_CUMULATED_FLOWRATES" : "PRINTING CUMULATED FLOWRATES",
+   "NUMBER_OF_FIRST_TIME_STEP_FOR_GRAPHIC_PRINTOUTS" : "NUMBER OF FIRST TIME STEP FOR GRAPHIC PRINTOUTS",
+   "PHYSICAL_CHARACTERISTICS_OF_THE_TSUNAMI" : "PHYSICAL CHARACTERISTICS OF THE TSUNAMI",
+   "MASS_BALANCE" : "MASS-BALANCE",
+   "BINARY_DATABASE_1_FOR_TIDE" : "BINARY DATABASE 1 FOR TIDE",
+   "SOURCES_FILE" : "SOURCES FILE",
+   "LAW_OF_TRACERS_DEGRADATION" : "LAW OF TRACERS DEGRADATION",
+   "SECTIONS_INPUT_FILE" : "SECTIONS INPUT FILE",
+   "CONTROL_SECTIONS" : "CONTROL SECTIONS",
+   "SOLVER_FOR_DIFFUSION_OF_TRACERS" : "SOLVER FOR DIFFUSION OF TRACERS",
+   "RESULTS_FILE_FORMAT" : "RESULTS FILE FORMAT",
+   "SECONDARY_CURRENTS" : "SECONDARY CURRENTS",
+   "OPTION_FOR_INITIAL_ABSTRACTION_RATIO" : "OPTION FOR INITIAL ABSTRACTION RATIO",
+   "TYPE_OF_WEIRS" : "TYPE OF WEIRS",
+   "NUMBER_OF_SUB_STEPS_OF_DISTRIBUTIVE_SCHEMES" : "NUMBER OF SUB-STEPS OF DISTRIBUTIVE SCHEMES",
+   "SPACING_OF_ROUGHNESS_ELEMENTS" : "SPACING OF ROUGHNESS ELEMENTS",
+   "SCHEME_OPTION_FOR_ADVECTION_OF_K_EPSILON" : "SCHEME OPTION FOR ADVECTION OF K-EPSILON",
+   "COUPLING_WITH" : "COUPLING WITH",
+   "LISTING_PRINTOUT_PERIOD" : "LISTING PRINTOUT PERIOD",
+   "THRESHOLD_DEPTH_FOR_WIND" : "THRESHOLD DEPTH FOR WIND",
+   "VELOCITY_PROFILES" : "VELOCITY PROFILES",
+   "ALGAE_TYPE" : "ALGAE TYPE",
+   "TREATMENT_OF_FLUXES_AT_THE_BOUNDARIES" : "TREATMENT OF FLUXES AT THE BOUNDARIES",
+   "MINOR_CONSTITUENTS_INFERENCE" : "MINOR CONSTITUENTS INFERENCE",
+   "STAGE_DISCHARGE_CURVES" : "STAGE-DISCHARGE CURVES",
+   "GLOBAL_NUMBER_OF_THE_POINT_TO_CALIBRATE_HIGH_WATER" : "GLOBAL NUMBER OF THE POINT TO CALIBRATE HIGH WATER",
+   "RAIN_OR_EVAPORATION_IN_MM_PER_DAY" : "RAIN OR EVAPORATION IN MM PER DAY",
+   "REFERENCE_FILE_FORMAT" : "REFERENCE FILE FORMAT",
+   "DIFFUSIVITY_FOR_DELWAQ" : "DIFFUSIVITY FOR DELWAQ",
+   "BOTTOM_SURFACES_DELWAQ_FILE" : "BOTTOM SURFACES DELWAQ FILE",
+   "FORMATTED_DATA_FILE_1" : "FORMATTED DATA FILE 1",
+   "FORMATTED_DATA_FILE_2" : "FORMATTED DATA FILE 2",
+   "COMPUTATION_CONTINUED" : "COMPUTATION CONTINUED",
+   "RECORD_NUMBER_IN_WAVE_FILE" : "RECORD NUMBER IN WAVE FILE",
+   "C_U_PRECONDITIONING" : "C-U PRECONDITIONING",
+   "LIST_OF_POINTS" : "LIST OF POINTS",
+   "TYPE_OF_ADVECTION" : "TYPE OF ADVECTION",
+   "WIND_VELOCITY_ALONG_X" : "WIND VELOCITY ALONG X",
+   "WIND_VELOCITY_ALONG_Y" : "WIND VELOCITY ALONG Y",
+   "TOLERANCES_FOR_IDENTIFICATION" : "TOLERANCES FOR IDENTIFICATION",
+   "PREVIOUS_COMPUTATION_FILE_FORMAT" : "PREVIOUS COMPUTATION FILE FORMAT",
+   "DISCRETIZATIONS_IN_SPACE" : "DISCRETIZATIONS IN SPACE",
+   "BINARY_ATMOSPHERIC_DATA_FILE" : "BINARY ATMOSPHERIC DATA FILE",
+   "BINARY_RESULTS_FILE" : "BINARY RESULTS FILE",
+   "EXCHANGES_BETWEEN_NODES_DELWAQ_FILE" : "EXCHANGES BETWEEN NODES DELWAQ FILE",
+   "CONTINUITY_CORRECTION" : "CONTINUITY CORRECTION",
+   "SCHEME_FOR_ADVECTION_OF_VELOCITIES" : "SCHEME FOR ADVECTION OF VELOCITIES",
+   "EXCHANGE_AREAS_DELWAQ_FILE" : "EXCHANGE AREAS DELWAQ FILE",
+   "SISYPHE_STEERING_FILE" : "SISYPHE STEERING FILE",
+   "IMPLICITATION_FOR_DIFFUSION_OF_VELOCITY" : "IMPLICITATION FOR DIFFUSION OF VELOCITY",
+   "ADVECTION_OF_K_AND_EPSILON" : "ADVECTION OF K AND EPSILON",
+   "FREE_SURFACE_GRADIENT_COMPATIBILITY" : "FREE SURFACE GRADIENT COMPATIBILITY",
+   "VALUES_OF_THE_TRACERS_AT_THE_SOURCES" : "VALUES OF THE TRACERS AT THE SOURCES",
+   "NUMBER_OF_CULVERTS" : "NUMBER OF CULVERTS",
+   "RELEASE" : "RELEASE",
+   "DELWAQ_STEERING_FILE" : "DELWAQ STEERING FILE",
+   "CONVERGENCE_STUDY" : "CONVERGENCE STUDY",
+   "NAMES_OF_PRIVATE_VARIABLES" : "NAMES OF PRIVATE VARIABLES",
+   "PRECONDITIONING_FOR_DIFFUSION_OF_TRACERS" : "PRECONDITIONING FOR DIFFUSION OF TRACERS",
+   "VALIDATION" : "VALIDATION",
+   "NUMBER_OF_SIPHONS" : "NUMBER OF SIPHONS",
+   "BINARY_ATMOSPHERIC_DATA_FILE_FORMAT" : "BINARY ATMOSPHERIC DATA FILE FORMAT",
+   "WEIRS_DATA_FILE" : "WEIRS DATA FILE",
+   "IMPLICITATION_FOR_VELOCITY" : "IMPLICITATION FOR VELOCITY",
+   "DEFINITION_OF_ZONES" : "DEFINITION OF ZONES",
+   "LISTING_PRINTOUT" : "LISTING PRINTOUT",
+   "MEAN_DEPTH_FOR_LINEARIZATION" : "MEAN DEPTH FOR LINEARIZATION",
+   "COUPLING_PERIOD_FOR_TOMAWAC" : "COUPLING PERIOD FOR TOMAWAC",
+   "WAVE_ENHANCED_FRICTION_FACTOR" : "WAVE ENHANCED FRICTION FACTOR",
+   "VARIABLES_FOR_GRAPHIC_PRINTOUTS" : "VARIABLES FOR GRAPHIC PRINTOUTS",
+   "DEPTH_IN_FRICTION_TERMS" : "DEPTH IN FRICTION TERMS",
+   "MASS_LUMPING_ON_H" : "MASS-LUMPING ON H",
+   "NUMBER_OF_LAGRANGIAN_DRIFTS" : "NUMBER OF LAGRANGIAN DRIFTS",
+   "NON_DIMENSIONAL_DISPERSION_COEFFICIENTS" : "NON-DIMENSIONAL DISPERSION COEFFICIENTS",
+   "FOURIER_ANALYSIS_PERIODS" : "FOURIER ANALYSIS PERIODS",
+   "VARIABLES_TO_BE_PRINTED" : "VARIABLES TO BE PRINTED",
+   "EQUATIONS" : "EQUATIONS",
+   "MAXIMUM_NUMBER_OF_ITERATIONS_FOR_IDENTIFICATION" : "MAXIMUM NUMBER OF ITERATIONS FOR IDENTIFICATION",
+   "WIND" : "WIND",
+   "SPEED_AND_DIRECTION_OF_WIND" : "SPEED AND DIRECTION OF WIND",
+   "NAMES_OF_CLANDESTINE_VARIABLES" : "NAMES OF CLANDESTINE VARIABLES",
+   "GEOMETRY_FILE_FORMAT" : "GEOMETRY FILE FORMAT",
+   "NON_SUBMERGED_VEGETATION_FRICTION" : "NON-SUBMERGED VEGETATION FRICTION",
+   "TYPE_OF_SOURCES" : "TYPE OF SOURCES",
+   "TIDAL_FLATS" : "TIDAL FLATS",
+   "TITLE" : "TITLE",
+   "NUMBER_OF_DIFFERENTIATORS" : "NUMBER OF DIFFERENTIATORS",
+   "ORIGINAL_HOUR_OF_TIME" : "ORIGINAL HOUR OF TIME",
+   "TIDE_GENERATING_FORCE" : "TIDE GENERATING FORCE",
+   "LAW_OF_FRICTION_ON_LATERAL_BOUNDARIES" : "LAW OF FRICTION ON LATERAL BOUNDARIES",
+   "STAGE_DISCHARGE_CURVES_FILE" : "STAGE-DISCHARGE CURVES FILE",
+   "DESIRED_COURANT_NUMBER" : "DESIRED COURANT NUMBER",
+   "DISSIPATION_COEFFICIENT_FOR_SECONDARY_CURRENTS" : "DISSIPATION COEFFICIENT FOR SECONDARY CURRENTS",
+   "COUPLING_PERIOD_FOR_SISYPHE" : "COUPLING PERIOD FOR SISYPHE",
+   "ALGAE_TRANSPORT_MODEL" : "ALGAE TRANSPORT MODEL",
+   "ABSCISSAE_OF_SOURCES" : "ABSCISSAE OF SOURCES",
+   "LIQUID_BOUNDARIES_FILE" : "LIQUID BOUNDARIES FILE",
+   "VELOCITIES_OF_THE_SOURCES_ALONG_X" : "VELOCITIES OF THE SOURCES ALONG X",
+   "VELOCITIES_OF_THE_SOURCES_ALONG_Y" : "VELOCITIES OF THE SOURCES ALONG Y",
+   "MAXIMUM_NUMBER_OF_SOURCES" : "MAXIMUM NUMBER OF SOURCES",
+   "SOLVER_OPTION_FOR_TRACERS_DIFFUSION" : "SOLVER OPTION FOR TRACERS DIFFUSION",
+   "INFORMATION_ABOUT_SOLVER" : "INFORMATION ABOUT SOLVER",
+   "BINARY_DATA_FILE_1_FORMAT" : "BINARY DATA FILE 1 FORMAT",
+   "SALINITY_FOR_DELWAQ" : "SALINITY FOR DELWAQ",
+   "COUPLING_DIRECTORY" : "COUPLING DIRECTORY",
+   "DELWAQ_PRINTOUT_PERIOD" : "DELWAQ PRINTOUT PERIOD",
+   "BOTTOM_SMOOTHINGS" : "BOTTOM SMOOTHINGS",
+   "AIR_PRESSURE" : "AIR PRESSURE",
+   "PRESCRIBED_ELEVATIONS" : "PRESCRIBED ELEVATIONS",
+   "MASS_LUMPING_FOR_WEAK_CHARACTERISTICS" : "MASS-LUMPING FOR WEAK CHARACTERISTICS",
+   "GRAVITY_ACCELERATION" : "GRAVITY ACCELERATION",
+   "LIMIT_VALUES" : "LIMIT VALUES",
+   "RESULTS_FILE" : "RESULTS FILE",
+   "SCHEME_OPTION_FOR_ADVECTION_OF_TRACERS" : "SCHEME OPTION FOR ADVECTION OF TRACERS",
+   "OPTION_FOR_CHARACTERISTICS" : "OPTION FOR CHARACTERISTICS",
+   "OPTION_FOR_THE_TREATMENT_OF_TIDAL_FLATS" : "OPTION FOR THE TREATMENT OF TIDAL FLATS",
+   "TIME_RANGE_FOR_FOURIER_ANALYSIS" : "TIME RANGE FOR FOURIER ANALYSIS",
+   "VERTICAL_FLUXES_DELWAQ_FILE" : "VERTICAL FLUXES DELWAQ FILE",
+   "ORDINATES_OF_SOURCES" : "ORDINATES OF SOURCES",
+   "MAXIMUM_NUMBER_OF_TRACERS" : "MAXIMUM NUMBER OF TRACERS",
+   "TURBULENCE_REGIME_FOR_SOLID_BOUNDARIES" : "TURBULENCE REGIME FOR SOLID BOUNDARIES",
+   "LOCAL_NUMBER_OF_THE_POINT_TO_CALIBRATE_HIGH_WATER" : "LOCAL NUMBER OF THE POINT TO CALIBRATE HIGH WATER",
+   "NODES_DISTANCES_DELWAQ_FILE" : "NODES DISTANCES DELWAQ FILE",
+   "NUMBER_OF_DROGUES" : "NUMBER OF DROGUES",
+   "SOLVER_FOR_K_EPSILON_MODEL" : "SOLVER FOR K-EPSILON MODEL",
+   "SECTIONS_OUTPUT_FILE" : "SECTIONS OUTPUT FILE",
+   "HARMONIC_CONSTANTS_FILE" : "HARMONIC CONSTANTS FILE",
+   "OPTION_FOR_CULVERTS" : "OPTION FOR CULVERTS",
+   "ASCII_ATMOSPHERIC_DATA_FILE" : "ASCII ATMOSPHERIC DATA FILE",
+   "INITIAL_ELEVATION" : "INITIAL ELEVATION",
+   "ZERO" : "ZERO",
+   "BREACHES_DATA_FILE" : "BREACHES DATA FILE",
+   "OPTION_FOR_WIND" : "OPTION FOR WIND",
+   "OPTION_OF_THE_HYDROSTATIC_RECONSTRUCTION" : "OPTION OF THE HYDROSTATIC RECONSTRUCTION",
+   "NUMBER_OF_TRACERS" : "NUMBER OF TRACERS",
+   "DIFFUSIVITY_DELWAQ_FILE" : "DIFFUSIVITY DELWAQ FILE",
+   "ADVECTION_OF_TRACERS" : "ADVECTION OF TRACERS",
+   "SOLVER_OPTION" : "SOLVER OPTION",
+   "MATRIX_STORAGE" : "MATRIX STORAGE",
+   "COEFFICIENT_TO_CALIBRATE_TIDAL_RANGE" : "COEFFICIENT TO CALIBRATE TIDAL RANGE",
+   "BINARY_DATA_FILE_1" : "BINARY DATA FILE 1",
+   "BINARY_DATA_FILE_2" : "BINARY DATA FILE 2",
+   "CONTROL_OF_LIMITS" : "CONTROL OF LIMITS",
+   "RECORD_NUMBER_FOR_RESTART" : "RECORD NUMBER FOR RESTART",
+   "NUMBER_OF_GAUSS_POINTS_FOR_WEAK_CHARACTERISTICS" : "NUMBER OF GAUSS POINTS FOR WEAK CHARACTERISTICS",
+   "COEFFICIENT_OF_WIND_INFLUENCE" : "COEFFICIENT OF WIND INFLUENCE",
+   "PRECONDITIONING_FOR_K_EPSILON_MODEL" : "PRECONDITIONING FOR K-EPSILON MODEL",
+   "PRODUCTION_COEFFICIENT_FOR_SECONDARY_CURRENTS" : "PRODUCTION COEFFICIENT FOR SECONDARY CURRENTS",
+   "MINIMUM_VALUE_OF_DEPTH" : "MINIMUM VALUE OF DEPTH",
+   "ELEMENTS_MASKED_BY_USER" : "ELEMENTS MASKED BY USER",
+   "FRICTION_COEFFICIENT" : "FRICTION COEFFICIENT",
+   "PRESCRIBED_VELOCITIES" : "PRESCRIBED VELOCITIES",
+   "NAMES_OF_TRACERS" : "NAMES OF TRACERS",
+   "VELOCITY_DELWAQ_FILE" : "VELOCITY DELWAQ FILE",
+   "H_CLIPPING" : "H CLIPPING",
+   "ZONE_NUMBER_IN_GEOGRAPHIC_SYSTEM" : "ZONE NUMBER IN GEOGRAPHIC SYSTEM",
+   "SUPG_OPTION" : "SUPG OPTION",
+   "PARAMETER_ESTIMATION" : "PARAMETER ESTIMATION",
+   "CHECKING_THE_MESH" : "CHECKING THE MESH",
+   "COMPATIBLE_COMPUTATION_OF_FLUXES" : "COMPATIBLE COMPUTATION OF FLUXES",
+   "LIST_OF_FILES" : "LIST OF FILES",
+   "NUMBER_OF_PRIVATE_ARRAYS" : "NUMBER OF PRIVATE ARRAYS",
+   "MAXIMUM_NUMBER_OF_FRICTION_DOMAINS" : "MAXIMUM NUMBER OF FRICTION DOMAINS",
+   "DURATION" : "DURATION",
+   "ACCURACY_OF_SPALART_ALLMARAS" : "ACCURACY OF SPALART-ALLMARAS",
+   "COEFFICIENT_1_FOR_LAW_OF_TRACERS_DEGRADATION" : "COEFFICIENT 1 FOR LAW OF TRACERS DEGRADATION",
+   "ACCURACY_OF_K" : "ACCURACY OF K",
+   "WATER_QUALITY_PROCESS" : "WATER QUALITY PROCESS",
+   "ADVECTION_OF_H" : "ADVECTION OF H",
+   "SCHEME_FOR_ADVECTION_OF_TRACERS" : "SCHEME FOR ADVECTION OF TRACERS",
+   "BINARY_DATA_FILE_2_FORMAT" : "BINARY DATA FILE 2 FORMAT",
+   "COEFFICIENT_TO_CALIBRATE_SEA_LEVEL" : "COEFFICIENT TO CALIBRATE SEA LEVEL",
+   "OPTION_FOR_THE_DIFFUSION_OF_VELOCITIES" : "OPTION FOR THE DIFFUSION OF VELOCITIES",
+   "INITIAL_GUESS_FOR_H" : "INITIAL GUESS FOR H",
+   "MASS_LUMPING_ON_TRACERS" : "MASS-LUMPING ON TRACERS",
+   "OPTION_FOR_LIQUID_BOUNDARIES" : "OPTION FOR LIQUID BOUNDARIES",
+   "GEOMETRY_FILE" : "GEOMETRY FILE",
+   "WAQTEL_STEERING_FILE" : "WAQTEL STEERING FILE",
+   "MAXIMUM_NUMBER_OF_ITERATIONS_FOR_ADVECTION_SCHEMES" : "MAXIMUM NUMBER OF ITERATIONS FOR ADVECTION SCHEMES",
+   "FLUXLINE_INPUT_FILE" : "FLUXLINE INPUT FILE",
+   "RAIN_OR_EVAPORATION" : "RAIN OR EVAPORATION",
+   "LAW_OF_BOTTOM_FRICTION" : "LAW OF BOTTOM FRICTION",
+   "MATRIX_VECTOR_PRODUCT" : "MATRIX-VECTOR PRODUCT",
+   "ACCURACY_FOR_DIFFUSION_OF_TRACERS" : "ACCURACY FOR DIFFUSION OF TRACERS",
+   "MEAN_TEMPERATURE" : "MEAN TEMPERATURE",
+   "PARTITIONING_TOOL" : "PARTITIONING TOOL",
+   "MAXIMUM_NUMBER_OF_BOUNDARIES" : "MAXIMUM NUMBER OF BOUNDARIES",
+   "OPTION_FOR_THE_SOLVER_FOR_K_EPSILON_MODEL" : "OPTION FOR THE SOLVER FOR K-EPSILON MODEL",
+   "SPATIAL_PROJECTION_TYPE" : "SPATIAL PROJECTION TYPE",
+   "THRESHOLD_FOR_NEGATIVE_DEPTHS" : "THRESHOLD FOR NEGATIVE DEPTHS",
+   "DEFAULT_PARALLEL_EXECUTABLE" : "DEFAULT PARALLEL EXECUTABLE",
+   "INITIAL_GUESS_FOR_U" : "INITIAL GUESS FOR U",
+   "DIFFUSION_OF_TRACERS" : "DIFFUSION OF TRACERS",
+   "DEFAULT_EXECUTABLE" : "DEFAULT EXECUTABLE",
+   "FORMATTED_RESULTS_FILE" : "FORMATTED RESULTS FILE",
+   "VALUES_OF_TRACERS_IN_THE_RAIN" : "VALUES OF TRACERS IN THE RAIN",
+   "VERTICAL_STRUCTURES" : "VERTICAL STRUCTURES",
+   "MAXIMUM_NUMBER_OF_ITERATIONS_FOR_K_AND_EPSILON" : "MAXIMUM NUMBER OF ITERATIONS FOR K AND EPSILON",
+   "UPWIND_COEFFICIENTS" : "UPWIND COEFFICIENTS",
+   "FRICTION_DATA" : "FRICTION DATA",
+   "NUMBER_OF_WEIRS" : "NUMBER OF WEIRS",
+   "OPTION_FOR_TSUNAMI_GENERATION" : "OPTION FOR TSUNAMI GENERATION",
+   "VARIABLE_TIME_STEP" : "VARIABLE TIME-STEP",
+   "WAVE_DRIVEN_CURRENTS" : "WAVE DRIVEN CURRENTS",
+   "INFORMATION_ABOUT_K_EPSILON_MODEL" : "INFORMATION ABOUT K-EPSILON MODEL",
+   "ZONES_FILE" : "ZONES FILE",
+   "SPHERICAL_COORDINATES" : "SPHERICAL COORDINATES",
+   "NORTH" : "NORTH",
+   "TREATMENT_OF_THE_LINEAR_SYSTEM" : "TREATMENT OF THE LINEAR SYSTEM",
+   "REFERENCE_FILE" : "REFERENCE FILE",
+   "DENSITY_EFFECTS" : "DENSITY EFFECTS",
+   "ASCII_DATABASE_FOR_TIDE" : "ASCII DATABASE FOR TIDE",
+   "THRESHOLD_DEPTH_FOR_RECEDING_PROCEDURE" : "THRESHOLD DEPTH FOR RECEDING PROCEDURE",
+   "OIL_SPILL_MODEL" : "OIL SPILL MODEL",
+   "SOLVER" : "SOLVER",
+   "TIME_STEP_REDUCTION_FOR_K_EPSILON_MODEL" : "TIME STEP REDUCTION FOR K-EPSILON MODEL",
+   "STOCHASTIC_DIFFUSION_MODEL" : "STOCHASTIC DIFFUSION MODEL",
+   "ORIGINAL_DATE_OF_TIME" : "ORIGINAL DATE OF TIME",
+   "GEOGRAPHIC_SYSTEM" : "GEOGRAPHIC SYSTEM",
+   "FORTRAN_FILE" : "FORTRAN FILE",
+   "PROPAGATION_OPTION" : "PROPAGATION OPTION",
+   "OIL_SPILL_STEERING_FILE" : "OIL SPILL STEERING FILE",
+   "TIDAL_DATA_BASE" : "TIDAL DATA BASE",
+   "TIDAL_MODEL_FILE" : "TIDAL MODEL FILE",
+   "BREACH" : "BREACH",
+   "TREATMENT_OF_NEGATIVE_DEPTHS" : "TREATMENT OF NEGATIVE DEPTHS",
+   "INITIAL_VALUES_OF_TRACERS" : "INITIAL VALUES OF TRACERS",
+ }
+dicoCasEnToCata = {
+   "COEFFICIENT TO CALIBRATE TIDAL VELOCITIES" : "COEFFICIENT_TO_CALIBRATE_TIDAL_VELOCITIES",
+   "COST FUNCTION" : "COST_FUNCTION",
+   "BOTTOM TOPOGRAPHY FILE" : "BOTTOM_TOPOGRAPHY_FILE",
+   "DENSITY OF ALGAE" : "DENSITY_OF_ALGAE",
+   "STEERING FILE" : "STEERING_FILE",
+   "NUMBER OF CORRECTIONS OF DISTRIBUTIVE SCHEMES" : "NUMBER_OF_CORRECTIONS_OF_DISTRIBUTIVE_SCHEMES",
+   "LONGITUDE OF ORIGIN POINT" : "LONGITUDE_OF_ORIGIN_POINT",
+   "PREVIOUS COMPUTATION FILE" : "PREVIOUS_COMPUTATION_FILE",
+   "DIAMETER OF ROUGHNESS ELEMENTS" : "DIAMETER_OF_ROUGHNESS_ELEMENTS",
+   "THICKNESS OF ALGAE" : "THICKNESS_OF_ALGAE",
+   "CORIOLIS" : "CORIOLIS",
+   "OPTION FOR TIDAL BOUNDARY CONDITIONS" : "OPTION_FOR_TIDAL_BOUNDARY_CONDITIONS",
+   "NUMBER OF TIME STEPS" : "NUMBER_OF_TIME_STEPS",
+   "ADVECTION" : "ADVECTION",
+   "NEWMARK TIME INTEGRATION COEFFICIENT" : "NEWMARK_TIME_INTEGRATION_COEFFICIENT",
+   "TIME STEP" : "TIME_STEP",
+   "VALUE OF ATMOSPHERIC PRESSURE" : "VALUE_OF_ATMOSPHERIC_PRESSURE",
+   "LISTING FOR PRINTOUT PERIOD" : "LISTING_FOR_PRINTOUT_PERIOD",
+   "BINARY DATABASE 2 FOR TIDE" : "BINARY_DATABASE_2_FOR_TIDE",
+   "VOLUMES DELWAQ FILE" : "VOLUMES_DELWAQ_FILE",
+   "DESCRIPTION OF LIBRARIES" : "DESCRIPTION_OF_LIBRARIES",
+   "STOP IF A STEADY STATE IS REACHED" : "STOP_IF_A_STEADY_STATE_IS_REACHED",
+   "SALINITY DELWAQ FILE" : "SALINITY_DELWAQ_FILE",
+   "IMPLICITATION FOR DEPTH" : "IMPLICITATION_FOR_DEPTH",
+   "DROGUES FILE" : "DROGUES_FILE",
+   "TEMPERATURE FOR DELWAQ" : "TEMPERATURE_FOR_DELWAQ",
+   "LANGUAGE" : "LANGUAGE",
+   "INITIAL DEPTH" : "INITIAL_DEPTH",
+   "IDENTIFICATION METHOD" : "IDENTIFICATION_METHOD",
+   "COEFFICIENT FOR DIFFUSION OF TRACERS" : "COEFFICIENT_FOR_DIFFUSION_OF_TRACERS",
+   "NAMES OF DIFFERENTIATORS" : "NAMES_OF_DIFFERENTIATORS",
+   "VELOCITY DIFFUSIVITY" : "VELOCITY_DIFFUSIVITY",
+   "VECTOR LENGTH" : "VECTOR_LENGTH",
+   "GRAPHIC PRINTOUT PERIOD" : "GRAPHIC_PRINTOUT_PERIOD",
+   "LINEARIZED PROPAGATION" : "LINEARIZED_PROPAGATION",
+   "PRECONDITIONING" : "PRECONDITIONING",
+   "MANNING DEFAULT VALUE FOR COLEBROOK-WHITE LAW" : "MANNING_DEFAULT_VALUE_FOR_COLEBROOK_WHITE_LAW",
+   "TURBULENCE MODEL" : "TURBULENCE_MODEL",
+   "PRINTOUT PERIOD FOR DROGUES" : "PRINTOUT_PERIOD_FOR_DROGUES",
+   "DURATION OF RAIN OR EVAPORATION IN HOURS" : "DURATION_OF_RAIN_OR_EVAPORATION_IN_HOURS",
+   "DEBUGGER" : "DEBUGGER",
+   "DICTIONARY" : "DICTIONARY",
+   "SIPHONS DATA FILE" : "SIPHONS_DATA_FILE",
+   "WATER DISCHARGE OF SOURCES" : "WATER_DISCHARGE_OF_SOURCES",
+   "ADVECTION OF U AND V" : "ADVECTION_OF_U_AND_V",
+   "ANTECEDENT MOISTURE CONDITIONS" : "ANTECEDENT_MOISTURE_CONDITIONS",
+   "DIFFUSION OF VELOCITY" : "DIFFUSION_OF_VELOCITY",
+   "WATER DENSITY" : "WATER_DENSITY",
+   "ORIGIN COORDINATES" : "ORIGIN_COORDINATES",
+   "LATITUDE OF ORIGIN POINT" : "LATITUDE_OF_ORIGIN_POINT",
+   "PRESCRIBED TRACERS VALUES" : "PRESCRIBED_TRACERS_VALUES",
+   "MAXIMUM NUMBER OF ITERATIONS FOR SOLVER" : "MAXIMUM_NUMBER_OF_ITERATIONS_FOR_SOLVER",
+   "FLUXLINE" : "FLUXLINE",
+   "INFORMATION ABOUT SPALART-ALLMARAS MODEL" : "INFORMATION_ABOUT_SPALART_ALLMARAS_MODEL",
+   "VELOCITY FOR DELWAQ" : "VELOCITY_FOR_DELWAQ",
+   "PARALLEL PROCESSORS" : "PARALLEL_PROCESSORS",
+   "ROUGHNESS COEFFICIENT OF BOUNDARIES" : "ROUGHNESS_COEFFICIENT_OF_BOUNDARIES",
+   "RAINFALL-RUNOFF MODEL" : "RAINFALL_RUNOFF_MODEL",
+   "PSI SCHEME OPTION" : "PSI_SCHEME_OPTION",
+   "SCHEME OPTION FOR ADVECTION OF VELOCITIES" : "SCHEME_OPTION_FOR_ADVECTION_OF_VELOCITIES",
+   "INITIAL CONDITIONS" : "INITIAL_CONDITIONS",
+   "INITIAL TIME SET TO ZERO" : "INITIAL_TIME_SET_TO_ZERO",
+   "NUMBER OF SUB-ITERATIONS FOR NON-LINEARITIES" : "NUMBER_OF_SUB_ITERATIONS_FOR_NON_LINEARITIES",
+   "OPTION FOR THE DIFFUSION OF TRACERS" : "OPTION_FOR_THE_DIFFUSION_OF_TRACERS",
+   "CULVERTS DATA FILE" : "CULVERTS_DATA_FILE",
+   "DIAMETER OF ALGAE" : "DIAMETER_OF_ALGAE",
+   "ACCURACY OF EPSILON" : "ACCURACY_OF_EPSILON",
+   "MAXIMUM NUMBER OF ITERATIONS FOR DIFFUSION OF TRACERS" : "MAXIMUM_NUMBER_OF_ITERATIONS_FOR_DIFFUSION_OF_TRACERS",
+   "MASS-LUMPING ON VELOCITY" : "MASS_LUMPING_ON_VELOCITY",
+   "FRICTION DATA FILE" : "FRICTION_DATA_FILE",
+   "SCHEME FOR ADVECTION OF K-EPSILON" : "SCHEME_FOR_ADVECTION_OF_K_EPSILON",
+   "SOLVER ACCURACY" : "SOLVER_ACCURACY",
+   "NAMES OF POINTS" : "NAMES_OF_POINTS",
+   "TOMAWAC STEERING FILE" : "TOMAWAC_STEERING_FILE",
+   "BOUNDARY CONDITIONS FILE" : "BOUNDARY_CONDITIONS_FILE",
+   "STOP CRITERIA" : "STOP_CRITERIA",
+   "BINARY RESULTS FILE FORMAT" : "BINARY_RESULTS_FILE_FORMAT",
+   "TEMPERATURE DELWAQ FILE" : "TEMPERATURE_DELWAQ_FILE",
+   "PROPAGATION" : "PROPAGATION",
+   "FINITE VOLUME SCHEME" : "FINITE_VOLUME_SCHEME",
+   "IMPLICITATION COEFFICIENT OF TRACERS" : "IMPLICITATION_COEFFICIENT_OF_TRACERS",
+   "CORIOLIS COEFFICIENT" : "CORIOLIS_COEFFICIENT",
+   "PRESCRIBED FLOWRATES" : "PRESCRIBED_FLOWRATES",
+   "REFINEMENT LEVELS" : "REFINEMENT_LEVELS",
+   "NUMBER OF FIRST TIME STEP FOR LISTING PRINTOUTS" : "NUMBER_OF_FIRST_TIME_STEP_FOR_LISTING_PRINTOUTS",
+   "PRINTING CUMULATED FLOWRATES" : "PRINTING_CUMULATED_FLOWRATES",
+   "NUMBER OF FIRST TIME STEP FOR GRAPHIC PRINTOUTS" : "NUMBER_OF_FIRST_TIME_STEP_FOR_GRAPHIC_PRINTOUTS",
+   "PHYSICAL CHARACTERISTICS OF THE TSUNAMI" : "PHYSICAL_CHARACTERISTICS_OF_THE_TSUNAMI",
+   "MASS-BALANCE" : "MASS_BALANCE",
+   "BINARY DATABASE 1 FOR TIDE" : "BINARY_DATABASE_1_FOR_TIDE",
+   "SOURCES FILE" : "SOURCES_FILE",
+   "LAW OF TRACERS DEGRADATION" : "LAW_OF_TRACERS_DEGRADATION",
+   "SECTIONS INPUT FILE" : "SECTIONS_INPUT_FILE",
+   "CONTROL SECTIONS" : "CONTROL_SECTIONS",
+   "SOLVER FOR DIFFUSION OF TRACERS" : "SOLVER_FOR_DIFFUSION_OF_TRACERS",
+   "RESULTS FILE FORMAT" : "RESULTS_FILE_FORMAT",
+   "SECONDARY CURRENTS" : "SECONDARY_CURRENTS",
+   "OPTION FOR INITIAL ABSTRACTION RATIO" : "OPTION_FOR_INITIAL_ABSTRACTION_RATIO",
+   "TYPE OF WEIRS" : "TYPE_OF_WEIRS",
+   "NUMBER OF SUB-STEPS OF DISTRIBUTIVE SCHEMES" : "NUMBER_OF_SUB_STEPS_OF_DISTRIBUTIVE_SCHEMES",
+   "SPACING OF ROUGHNESS ELEMENTS" : "SPACING_OF_ROUGHNESS_ELEMENTS",
+   "SCHEME OPTION FOR ADVECTION OF K-EPSILON" : "SCHEME_OPTION_FOR_ADVECTION_OF_K_EPSILON",
+   "COUPLING WITH" : "COUPLING_WITH",
+   "LISTING PRINTOUT PERIOD" : "LISTING_PRINTOUT_PERIOD",
+   "THRESHOLD DEPTH FOR WIND" : "THRESHOLD_DEPTH_FOR_WIND",
+   "VELOCITY PROFILES" : "VELOCITY_PROFILES",
+   "ALGAE TYPE" : "ALGAE_TYPE",
+   "TREATMENT OF FLUXES AT THE BOUNDARIES" : "TREATMENT_OF_FLUXES_AT_THE_BOUNDARIES",
+   "MINOR CONSTITUENTS INFERENCE" : "MINOR_CONSTITUENTS_INFERENCE",
+   "STAGE-DISCHARGE CURVES" : "STAGE_DISCHARGE_CURVES",
+   "GLOBAL NUMBER OF THE POINT TO CALIBRATE HIGH WATER" : "GLOBAL_NUMBER_OF_THE_POINT_TO_CALIBRATE_HIGH_WATER",
+   "RAIN OR EVAPORATION IN MM PER DAY" : "RAIN_OR_EVAPORATION_IN_MM_PER_DAY",
+   "REFERENCE FILE FORMAT" : "REFERENCE_FILE_FORMAT",
+   "DIFFUSIVITY FOR DELWAQ" : "DIFFUSIVITY_FOR_DELWAQ",
+   "BOTTOM SURFACES DELWAQ FILE" : "BOTTOM_SURFACES_DELWAQ_FILE",
+   "FORMATTED DATA FILE 1" : "FORMATTED_DATA_FILE_1",
+   "FORMATTED DATA FILE 2" : "FORMATTED_DATA_FILE_2",
+   "COMPUTATION CONTINUED" : "COMPUTATION_CONTINUED",
+   "RECORD NUMBER IN WAVE FILE" : "RECORD_NUMBER_IN_WAVE_FILE",
+   "C-U PRECONDITIONING" : "C_U_PRECONDITIONING",
+   "LIST OF POINTS" : "LIST_OF_POINTS",
+   "TYPE OF ADVECTION" : "TYPE_OF_ADVECTION",
+   "WIND VELOCITY ALONG X" : "WIND_VELOCITY_ALONG_X",
+   "WIND VELOCITY ALONG Y" : "WIND_VELOCITY_ALONG_Y",
+   "TOLERANCES FOR IDENTIFICATION" : "TOLERANCES_FOR_IDENTIFICATION",
+   "PREVIOUS COMPUTATION FILE FORMAT" : "PREVIOUS_COMPUTATION_FILE_FORMAT",
+   "DISCRETIZATIONS IN SPACE" : "DISCRETIZATIONS_IN_SPACE",
+   "BINARY ATMOSPHERIC DATA FILE" : "BINARY_ATMOSPHERIC_DATA_FILE",
+   "BINARY RESULTS FILE" : "BINARY_RESULTS_FILE",
+   "EXCHANGES BETWEEN NODES DELWAQ FILE" : "EXCHANGES_BETWEEN_NODES_DELWAQ_FILE",
+   "CONTINUITY CORRECTION" : "CONTINUITY_CORRECTION",
+   "SCHEME FOR ADVECTION OF VELOCITIES" : "SCHEME_FOR_ADVECTION_OF_VELOCITIES",
+   "EXCHANGE AREAS DELWAQ FILE" : "EXCHANGE_AREAS_DELWAQ_FILE",
+   "SISYPHE STEERING FILE" : "SISYPHE_STEERING_FILE",
+   "IMPLICITATION FOR DIFFUSION OF VELOCITY" : "IMPLICITATION_FOR_DIFFUSION_OF_VELOCITY",
+   "ADVECTION OF K AND EPSILON" : "ADVECTION_OF_K_AND_EPSILON",
+   "FREE SURFACE GRADIENT COMPATIBILITY" : "FREE_SURFACE_GRADIENT_COMPATIBILITY",
+   "VALUES OF THE TRACERS AT THE SOURCES" : "VALUES_OF_THE_TRACERS_AT_THE_SOURCES",
+   "NUMBER OF CULVERTS" : "NUMBER_OF_CULVERTS",
+   "RELEASE" : "RELEASE",
+   "DELWAQ STEERING FILE" : "DELWAQ_STEERING_FILE",
+   "CONVERGENCE STUDY" : "CONVERGENCE_STUDY",
+   "NAMES OF PRIVATE VARIABLES" : "NAMES_OF_PRIVATE_VARIABLES",
+   "PRECONDITIONING FOR DIFFUSION OF TRACERS" : "PRECONDITIONING_FOR_DIFFUSION_OF_TRACERS",
+   "VALIDATION" : "VALIDATION",
+   "NUMBER OF SIPHONS" : "NUMBER_OF_SIPHONS",
+   "BINARY ATMOSPHERIC DATA FILE FORMAT" : "BINARY_ATMOSPHERIC_DATA_FILE_FORMAT",
+   "WEIRS DATA FILE" : "WEIRS_DATA_FILE",
+   "IMPLICITATION FOR VELOCITY" : "IMPLICITATION_FOR_VELOCITY",
+   "DEFINITION OF ZONES" : "DEFINITION_OF_ZONES",
+   "LISTING PRINTOUT" : "LISTING_PRINTOUT",
+   "MEAN DEPTH FOR LINEARIZATION" : "MEAN_DEPTH_FOR_LINEARIZATION",
+   "COUPLING PERIOD FOR TOMAWAC" : "COUPLING_PERIOD_FOR_TOMAWAC",
+   "WAVE ENHANCED FRICTION FACTOR" : "WAVE_ENHANCED_FRICTION_FACTOR",
+   "VARIABLES FOR GRAPHIC PRINTOUTS" : "VARIABLES_FOR_GRAPHIC_PRINTOUTS",
+   "DEPTH IN FRICTION TERMS" : "DEPTH_IN_FRICTION_TERMS",
+   "MASS-LUMPING ON H" : "MASS_LUMPING_ON_H",
+   "NUMBER OF LAGRANGIAN DRIFTS" : "NUMBER_OF_LAGRANGIAN_DRIFTS",
+   "NON-DIMENSIONAL DISPERSION COEFFICIENTS" : "NON_DIMENSIONAL_DISPERSION_COEFFICIENTS",
+   "FOURIER ANALYSIS PERIODS" : "FOURIER_ANALYSIS_PERIODS",
+   "VARIABLES TO BE PRINTED" : "VARIABLES_TO_BE_PRINTED",
+   "EQUATIONS" : "EQUATIONS",
+   "MAXIMUM NUMBER OF ITERATIONS FOR IDENTIFICATION" : "MAXIMUM_NUMBER_OF_ITERATIONS_FOR_IDENTIFICATION",
+   "WIND" : "WIND",
+   "SPEED AND DIRECTION OF WIND" : "SPEED_AND_DIRECTION_OF_WIND",
+   "NAMES OF CLANDESTINE VARIABLES" : "NAMES_OF_CLANDESTINE_VARIABLES",
+   "GEOMETRY FILE FORMAT" : "GEOMETRY_FILE_FORMAT",
+   "NON-SUBMERGED VEGETATION FRICTION" : "NON_SUBMERGED_VEGETATION_FRICTION",
+   "TYPE OF SOURCES" : "TYPE_OF_SOURCES",
+   "TIDAL FLATS" : "TIDAL_FLATS",
+   "TITLE" : "TITLE",
+   "NUMBER OF DIFFERENTIATORS" : "NUMBER_OF_DIFFERENTIATORS",
+   "ORIGINAL HOUR OF TIME" : "ORIGINAL_HOUR_OF_TIME",
+   "TIDE GENERATING FORCE" : "TIDE_GENERATING_FORCE",
+   "LAW OF FRICTION ON LATERAL BOUNDARIES" : "LAW_OF_FRICTION_ON_LATERAL_BOUNDARIES",
+   "STAGE-DISCHARGE CURVES FILE" : "STAGE_DISCHARGE_CURVES_FILE",
+   "DESIRED COURANT NUMBER" : "DESIRED_COURANT_NUMBER",
+   "DISSIPATION COEFFICIENT FOR SECONDARY CURRENTS" : "DISSIPATION_COEFFICIENT_FOR_SECONDARY_CURRENTS",
+   "COUPLING PERIOD FOR SISYPHE" : "COUPLING_PERIOD_FOR_SISYPHE",
+   "ALGAE TRANSPORT MODEL" : "ALGAE_TRANSPORT_MODEL",
+   "ABSCISSAE OF SOURCES" : "ABSCISSAE_OF_SOURCES",
+   "LIQUID BOUNDARIES FILE" : "LIQUID_BOUNDARIES_FILE",
+   "VELOCITIES OF THE SOURCES ALONG X" : "VELOCITIES_OF_THE_SOURCES_ALONG_X",
+   "VELOCITIES OF THE SOURCES ALONG Y" : "VELOCITIES_OF_THE_SOURCES_ALONG_Y",
+   "MAXIMUM NUMBER OF SOURCES" : "MAXIMUM_NUMBER_OF_SOURCES",
+   "SOLVER OPTION FOR TRACERS DIFFUSION" : "SOLVER_OPTION_FOR_TRACERS_DIFFUSION",
+   "INFORMATION ABOUT SOLVER" : "INFORMATION_ABOUT_SOLVER",
+   "BINARY DATA FILE 1 FORMAT" : "BINARY_DATA_FILE_1_FORMAT",
+   "SALINITY FOR DELWAQ" : "SALINITY_FOR_DELWAQ",
+   "COUPLING DIRECTORY" : "COUPLING_DIRECTORY",
+   "DELWAQ PRINTOUT PERIOD" : "DELWAQ_PRINTOUT_PERIOD",
+   "BOTTOM SMOOTHINGS" : "BOTTOM_SMOOTHINGS",
+   "AIR PRESSURE" : "AIR_PRESSURE",
+   "PRESCRIBED ELEVATIONS" : "PRESCRIBED_ELEVATIONS",
+   "MASS-LUMPING FOR WEAK CHARACTERISTICS" : "MASS_LUMPING_FOR_WEAK_CHARACTERISTICS",
+   "GRAVITY ACCELERATION" : "GRAVITY_ACCELERATION",
+   "LIMIT VALUES" : "LIMIT_VALUES",
+   "RESULTS FILE" : "RESULTS_FILE",
+   "SCHEME OPTION FOR ADVECTION OF TRACERS" : "SCHEME_OPTION_FOR_ADVECTION_OF_TRACERS",
+   "OPTION FOR CHARACTERISTICS" : "OPTION_FOR_CHARACTERISTICS",
+   "OPTION FOR THE TREATMENT OF TIDAL FLATS" : "OPTION_FOR_THE_TREATMENT_OF_TIDAL_FLATS",
+   "TIME RANGE FOR FOURIER ANALYSIS" : "TIME_RANGE_FOR_FOURIER_ANALYSIS",
+   "VERTICAL FLUXES DELWAQ FILE" : "VERTICAL_FLUXES_DELWAQ_FILE",
+   "ORDINATES OF SOURCES" : "ORDINATES_OF_SOURCES",
+   "MAXIMUM NUMBER OF TRACERS" : "MAXIMUM_NUMBER_OF_TRACERS",
+   "TURBULENCE REGIME FOR SOLID BOUNDARIES" : "TURBULENCE_REGIME_FOR_SOLID_BOUNDARIES",
+   "LOCAL NUMBER OF THE POINT TO CALIBRATE HIGH WATER" : "LOCAL_NUMBER_OF_THE_POINT_TO_CALIBRATE_HIGH_WATER",
+   "NODES DISTANCES DELWAQ FILE" : "NODES_DISTANCES_DELWAQ_FILE",
+   "NUMBER OF DROGUES" : "NUMBER_OF_DROGUES",
+   "SOLVER FOR K-EPSILON MODEL" : "SOLVER_FOR_K_EPSILON_MODEL",
+   "SECTIONS OUTPUT FILE" : "SECTIONS_OUTPUT_FILE",
+   "HARMONIC CONSTANTS FILE" : "HARMONIC_CONSTANTS_FILE",
+   "OPTION FOR CULVERTS" : "OPTION_FOR_CULVERTS",
+   "ASCII ATMOSPHERIC DATA FILE" : "ASCII_ATMOSPHERIC_DATA_FILE",
+   "INITIAL ELEVATION" : "INITIAL_ELEVATION",
+   "ZERO" : "ZERO",
+   "BREACHES DATA FILE" : "BREACHES_DATA_FILE",
+   "OPTION FOR WIND" : "OPTION_FOR_WIND",
+   "OPTION OF THE HYDROSTATIC RECONSTRUCTION" : "OPTION_OF_THE_HYDROSTATIC_RECONSTRUCTION",
+   "NUMBER OF TRACERS" : "NUMBER_OF_TRACERS",
+   "DIFFUSIVITY DELWAQ FILE" : "DIFFUSIVITY_DELWAQ_FILE",
+   "ADVECTION OF TRACERS" : "ADVECTION_OF_TRACERS",
+   "SOLVER OPTION" : "SOLVER_OPTION",
+   "MATRIX STORAGE" : "MATRIX_STORAGE",
+   "COEFFICIENT TO CALIBRATE TIDAL RANGE" : "COEFFICIENT_TO_CALIBRATE_TIDAL_RANGE",
+   "BINARY DATA FILE 1" : "BINARY_DATA_FILE_1",
+   "BINARY DATA FILE 2" : "BINARY_DATA_FILE_2",
+   "CONTROL OF LIMITS" : "CONTROL_OF_LIMITS",
+   "RECORD NUMBER FOR RESTART" : "RECORD_NUMBER_FOR_RESTART",
+   "NUMBER OF GAUSS POINTS FOR WEAK CHARACTERISTICS" : "NUMBER_OF_GAUSS_POINTS_FOR_WEAK_CHARACTERISTICS",
+   "COEFFICIENT OF WIND INFLUENCE" : "COEFFICIENT_OF_WIND_INFLUENCE",
+   "PRECONDITIONING FOR K-EPSILON MODEL" : "PRECONDITIONING_FOR_K_EPSILON_MODEL",
+   "PRODUCTION COEFFICIENT FOR SECONDARY CURRENTS" : "PRODUCTION_COEFFICIENT_FOR_SECONDARY_CURRENTS",
+   "MINIMUM VALUE OF DEPTH" : "MINIMUM_VALUE_OF_DEPTH",
+   "ELEMENTS MASKED BY USER" : "ELEMENTS_MASKED_BY_USER",
+   "FRICTION COEFFICIENT" : "FRICTION_COEFFICIENT",
+   "PRESCRIBED VELOCITIES" : "PRESCRIBED_VELOCITIES",
+   "NAMES OF TRACERS" : "NAMES_OF_TRACERS",
+   "VELOCITY DELWAQ FILE" : "VELOCITY_DELWAQ_FILE",
+   "H CLIPPING" : "H_CLIPPING",
+   "ZONE NUMBER IN GEOGRAPHIC SYSTEM" : "ZONE_NUMBER_IN_GEOGRAPHIC_SYSTEM",
+   "SUPG OPTION" : "SUPG_OPTION",
+   "PARAMETER ESTIMATION" : "PARAMETER_ESTIMATION",
+   "CHECKING THE MESH" : "CHECKING_THE_MESH",
+   "COMPATIBLE COMPUTATION OF FLUXES" : "COMPATIBLE_COMPUTATION_OF_FLUXES",
+   "LIST OF FILES" : "LIST_OF_FILES",
+   "NUMBER OF PRIVATE ARRAYS" : "NUMBER_OF_PRIVATE_ARRAYS",
+   "MAXIMUM NUMBER OF FRICTION DOMAINS" : "MAXIMUM_NUMBER_OF_FRICTION_DOMAINS",
+   "DURATION" : "DURATION",
+   "ACCURACY OF SPALART-ALLMARAS" : "ACCURACY_OF_SPALART_ALLMARAS",
+   "COEFFICIENT 1 FOR LAW OF TRACERS DEGRADATION" : "COEFFICIENT_1_FOR_LAW_OF_TRACERS_DEGRADATION",
+   "ACCURACY OF K" : "ACCURACY_OF_K",
+   "WATER QUALITY PROCESS" : "WATER_QUALITY_PROCESS",
+   "ADVECTION OF H" : "ADVECTION_OF_H",
+   "SCHEME FOR ADVECTION OF TRACERS" : "SCHEME_FOR_ADVECTION_OF_TRACERS",
+   "BINARY DATA FILE 2 FORMAT" : "BINARY_DATA_FILE_2_FORMAT",
+   "COEFFICIENT TO CALIBRATE SEA LEVEL" : "COEFFICIENT_TO_CALIBRATE_SEA_LEVEL",
+   "OPTION FOR THE DIFFUSION OF VELOCITIES" : "OPTION_FOR_THE_DIFFUSION_OF_VELOCITIES",
+   "INITIAL GUESS FOR H" : "INITIAL_GUESS_FOR_H",
+   "MASS-LUMPING ON TRACERS" : "MASS_LUMPING_ON_TRACERS",
+   "OPTION FOR LIQUID BOUNDARIES" : "OPTION_FOR_LIQUID_BOUNDARIES",
+   "GEOMETRY FILE" : "GEOMETRY_FILE",
+   "WAQTEL STEERING FILE" : "WAQTEL_STEERING_FILE",
+   "MAXIMUM NUMBER OF ITERATIONS FOR ADVECTION SCHEMES" : "MAXIMUM_NUMBER_OF_ITERATIONS_FOR_ADVECTION_SCHEMES",
+   "FLUXLINE INPUT FILE" : "FLUXLINE_INPUT_FILE",
+   "RAIN OR EVAPORATION" : "RAIN_OR_EVAPORATION",
+   "LAW OF BOTTOM FRICTION" : "LAW_OF_BOTTOM_FRICTION",
+   "MATRIX-VECTOR PRODUCT" : "MATRIX_VECTOR_PRODUCT",
+   "ACCURACY FOR DIFFUSION OF TRACERS" : "ACCURACY_FOR_DIFFUSION_OF_TRACERS",
+   "MEAN TEMPERATURE" : "MEAN_TEMPERATURE",
+   "PARTITIONING TOOL" : "PARTITIONING_TOOL",
+   "MAXIMUM NUMBER OF BOUNDARIES" : "MAXIMUM_NUMBER_OF_BOUNDARIES",
+   "OPTION FOR THE SOLVER FOR K-EPSILON MODEL" : "OPTION_FOR_THE_SOLVER_FOR_K_EPSILON_MODEL",
+   "SPATIAL PROJECTION TYPE" : "SPATIAL_PROJECTION_TYPE",
+   "THRESHOLD FOR NEGATIVE DEPTHS" : "THRESHOLD_FOR_NEGATIVE_DEPTHS",
+   "DEFAULT PARALLEL EXECUTABLE" : "DEFAULT_PARALLEL_EXECUTABLE",
+   "INITIAL GUESS FOR U" : "INITIAL_GUESS_FOR_U",
+   "DIFFUSION OF TRACERS" : "DIFFUSION_OF_TRACERS",
+   "DEFAULT EXECUTABLE" : "DEFAULT_EXECUTABLE",
+   "FORMATTED RESULTS FILE" : "FORMATTED_RESULTS_FILE",
+   "VALUES OF TRACERS IN THE RAIN" : "VALUES_OF_TRACERS_IN_THE_RAIN",
+   "VERTICAL STRUCTURES" : "VERTICAL_STRUCTURES",
+   "MAXIMUM NUMBER OF ITERATIONS FOR K AND EPSILON" : "MAXIMUM_NUMBER_OF_ITERATIONS_FOR_K_AND_EPSILON",
+   "UPWIND COEFFICIENTS" : "UPWIND_COEFFICIENTS",
+   "FRICTION DATA" : "FRICTION_DATA",
+   "NUMBER OF WEIRS" : "NUMBER_OF_WEIRS",
+   "OPTION FOR TSUNAMI GENERATION" : "OPTION_FOR_TSUNAMI_GENERATION",
+   "VARIABLE TIME-STEP" : "VARIABLE_TIME_STEP",
+   "WAVE DRIVEN CURRENTS" : "WAVE_DRIVEN_CURRENTS",
+   "INFORMATION ABOUT K-EPSILON MODEL" : "INFORMATION_ABOUT_K_EPSILON_MODEL",
+   "ZONES FILE" : "ZONES_FILE",
+   "SPHERICAL COORDINATES" : "SPHERICAL_COORDINATES",
+   "NORTH" : "NORTH",
+   "TREATMENT OF THE LINEAR SYSTEM" : "TREATMENT_OF_THE_LINEAR_SYSTEM",
+   "REFERENCE FILE" : "REFERENCE_FILE",
+   "DENSITY EFFECTS" : "DENSITY_EFFECTS",
+   "ASCII DATABASE FOR TIDE" : "ASCII_DATABASE_FOR_TIDE",
+   "THRESHOLD DEPTH FOR RECEDING PROCEDURE" : "THRESHOLD_DEPTH_FOR_RECEDING_PROCEDURE",
+   "OIL SPILL MODEL" : "OIL_SPILL_MODEL",
+   "SOLVER" : "SOLVER",
+   "TIME STEP REDUCTION FOR K-EPSILON MODEL" : "TIME_STEP_REDUCTION_FOR_K_EPSILON_MODEL",
+   "STOCHASTIC DIFFUSION MODEL" : "STOCHASTIC_DIFFUSION_MODEL",
+   "ORIGINAL DATE OF TIME" : "ORIGINAL_DATE_OF_TIME",
+   "GEOGRAPHIC SYSTEM" : "GEOGRAPHIC_SYSTEM",
+   "FORTRAN FILE" : "FORTRAN_FILE",
+   "PROPAGATION OPTION" : "PROPAGATION_OPTION",
+   "OIL SPILL STEERING FILE" : "OIL_SPILL_STEERING_FILE",
+   "TIDAL DATA BASE" : "TIDAL_DATA_BASE",
+   "TIDAL MODEL FILE" : "TIDAL_MODEL_FILE",
+   "BREACH" : "BREACH",
+   "TREATMENT OF NEGATIVE DEPTHS" : "TREATMENT_OF_NEGATIVE_DEPTHS",
+   "INITIAL VALUES OF TRACERS" : "INITIAL_VALUES_OF_TRACERS",
+ }
diff --git a/Telemac/dicoCasFrToCata.py b/Telemac/dicoCasFrToCata.py
new file mode 100644 (file)
index 0000000..86ff475
--- /dev/null
@@ -0,0 +1,628 @@
+dicoCataToFrTelemac = {
+   "COEFFICIENT_TO_CALIBRATE_TIDAL_VELOCITIES" : "COEFFICIENT DE CALAGE DES VITESSES DE COURANT",
+   "COST_FUNCTION" : "FONCTION COUT",
+   "BOTTOM_TOPOGRAPHY_FILE" : "FICHIER DES FONDS",
+   "DENSITY_OF_ALGAE" : "MASSE VOLUMIQUE DES ALGUES",
+   "STEERING_FILE" : "FICHIER DES PARAMETRES",
+   "NUMBER_OF_CORRECTIONS_OF_DISTRIBUTIVE_SCHEMES" : "NOMBRE DE CORRECTIONS DES SCHEMAS DISTRIBUTIFS",
+   "LONGITUDE_OF_ORIGIN_POINT" : "LONGITUDE DU POINT ORIGINE",
+   "PREVIOUS_COMPUTATION_FILE" : "FICHIER DU CALCUL PRECEDENT",
+   "DIAMETER_OF_ROUGHNESS_ELEMENTS" : "DIAMETRE DES ELEMENTS DE FROTTEMENT",
+   "THICKNESS_OF_ALGAE" : "EPAISSEUR DES ALGUES",
+   "CORIOLIS" : "CORIOLIS",
+   "OPTION_FOR_TIDAL_BOUNDARY_CONDITIONS" : "OPTION POUR LES CONDITIONS AUX LIMITES DE MAREE",
+   "NUMBER_OF_TIME_STEPS" : "NOMBRE DE PAS DE TEMPS",
+   "ADVECTION" : "CONVECTION",
+   "NEWMARK_TIME_INTEGRATION_COEFFICIENT" : "COEFFICIENT D'INTEGRATION EN TEMPS DE NEWMARK",
+   "TIME_STEP" : "PAS DE TEMPS",
+   "VALUE_OF_ATMOSPHERIC_PRESSURE" : "VALEUR DE LA PRESSION ATMOSPHERIQUE",
+   "LISTING_FOR_PRINTOUT_PERIOD" : "PERIODE POUR LES SORTIES LISTING",
+   "BINARY_DATABASE_2_FOR_TIDE" : "BASE BINAIRE 2 DE DONNEES DE MAREE",
+   "VOLUMES_DELWAQ_FILE" : "FICHIER DELWAQ DES VOLUMES",
+   "DESCRIPTION_OF_LIBRARIES" : "DESCRIPTION DES LIBRAIRIES",
+   "STOP_IF_A_STEADY_STATE_IS_REACHED" : "ARRET SI UN ETAT PERMANENT EST ATTEINT",
+   "SALINITY_DELWAQ_FILE" : "FICHIER DELWAQ DE LA SALINITE",
+   "IMPLICITATION_FOR_DEPTH" : "IMPLICITATION POUR LA HAUTEUR",
+   "DROGUES_FILE" : "FICHIER DES FLOTTEURS",
+   "TEMPERATURE_FOR_DELWAQ" : "TEMPERATURE POUR DELWAQ",
+   "LANGUAGE" : "LANGUE",
+   "INITIAL_DEPTH" : "HAUTEUR INITIALE",
+   "IDENTIFICATION_METHOD" : "METHODE D'IDENTIFICATION",
+   "COEFFICIENT_FOR_DIFFUSION_OF_TRACERS" : "COEFFICIENT DE DIFFUSION DES TRACEURS",
+   "NAMES_OF_DIFFERENTIATORS" : "NOMS DES DIFFERENTIATEURS",
+   "VELOCITY_DIFFUSIVITY" : "COEFFICIENT DE DIFFUSION DES VITESSES",
+   "VECTOR_LENGTH" : "LONGUEUR DU VECTEUR",
+   "GRAPHIC_PRINTOUT_PERIOD" : "PERIODE POUR LES SORTIES GRAPHIQUES",
+   "LINEARIZED_PROPAGATION" : "PROPAGATION LINEARISEE",
+   "PRECONDITIONING" : "PRECONDITIONNEMENT",
+   "MANNING_DEFAULT_VALUE_FOR_COLEBROOK_WHITE_LAW" : "VALEUR PAR DEFAUT DU MANNING POUR LA LOI DE COLEBROOK-WHITE",
+   "TURBULENCE_MODEL" : "MODELE DE TURBULENCE",
+   "PRINTOUT_PERIOD_FOR_DROGUES" : "PERIODE POUR LES SORTIES DE FLOTTEURS",
+   "DURATION_OF_RAIN_OR_EVAPORATION_IN_HOURS" : "DUREE DE LA PLUIE OU EVAPORATION EN HEURES",
+   "DEBUGGER" : "DEBUGGER",
+   "DICTIONARY" : "DICTIONNAIRE",
+   "SIPHONS_DATA_FILE" : "FICHIER DE DONNEES DES SIPHONS",
+   "WATER_DISCHARGE_OF_SOURCES" : "DEBITS DES SOURCES",
+   "ADVECTION_OF_U_AND_V" : "CONVECTION DE U ET V",
+   "ANTECEDENT_MOISTURE_CONDITIONS" : "CONDITIONS D'HUMIDITE PRECEDENTE",
+   "DIFFUSION_OF_VELOCITY" : "DIFFUSION DES VITESSES",
+   "WATER_DENSITY" : "MASSE VOLUMIQUE DE L'EAU",
+   "ORIGIN_COORDINATES" : "COORDONNEES DE L'ORIGINE",
+   "LATITUDE_OF_ORIGIN_POINT" : "LATITUDE DU POINT ORIGINE",
+   "PRESCRIBED_TRACERS_VALUES" : "VALEURS IMPOSEES DES TRACEURS",
+   "MAXIMUM_NUMBER_OF_ITERATIONS_FOR_SOLVER" : "MAXIMUM D'ITERATIONS POUR LE SOLVEUR",
+   "FLUXLINE" : "FLUXLINE",
+   "INFORMATION_ABOUT_SPALART_ALLMARAS_MODEL" : "INFORMATION SUR LE MODELE SPALART-ALLMARAS",
+   "VELOCITY_FOR_DELWAQ" : "VITESSE POUR DELWAQ",
+   "PARALLEL_PROCESSORS" : "PROCESSEURS PARALLELES",
+   "ROUGHNESS_COEFFICIENT_OF_BOUNDARIES" : "COEFFICIENT DE RUGOSITE DES BORDS",
+   "RAINFALL_RUNOFF_MODEL" : "MODELE PLUIE-DEBIT",
+   "PSI_SCHEME_OPTION" : "OPTION DU SCHEMA PSI",
+   "SCHEME_OPTION_FOR_ADVECTION_OF_VELOCITIES" : "OPTION DU SCHEMA POUR LA CONVECTION DES VITESSES",
+   "INITIAL_CONDITIONS" : "CONDITIONS INITIALES",
+   "INITIAL_TIME_SET_TO_ZERO" : "REMISE A ZERO DU TEMPS",
+   "NUMBER_OF_SUB_ITERATIONS_FOR_NON_LINEARITIES" : "NOMBRE DE SOUS-ITERATIONS POUR LES NON-LINEARITES",
+   "OPTION_FOR_THE_DIFFUSION_OF_TRACERS" : "OPTION POUR LA DIFFUSION DES TRACEURS",
+   "CULVERTS_DATA_FILE" : "FICHIER DE DONNEES DES BUSES",
+   "DIAMETER_OF_ALGAE" : "DIAMETRE DES ALGUES",
+   "ACCURACY_OF_EPSILON" : "PRECISION SUR EPSILON",
+   "MAXIMUM_NUMBER_OF_ITERATIONS_FOR_DIFFUSION_OF_TRACERS" : "MAXIMUM D'ITERATIONS POUR LA DIFFUSION DES TRACEURS",
+   "MASS_LUMPING_ON_VELOCITY" : "MASS-LUMPING SUR LA VITESSE",
+   "FRICTION_DATA_FILE" : "FICHIER DE DONNEES POUR LE FROTTEMENT",
+   "SCHEME_FOR_ADVECTION_OF_K_EPSILON" : "SCHEMA POUR LA CONVECTION DU K-EPSILON",
+   "SOLVER_ACCURACY" : "PRECISION DU SOLVEUR",
+   "NAMES_OF_POINTS" : "NOMS DES POINTS",
+   "TOMAWAC_STEERING_FILE" : "FICHIER DES PARAMETRES DE TOMAWAC",
+   "BOUNDARY_CONDITIONS_FILE" : "FICHIER DES CONDITIONS AUX LIMITES",
+   "STOP_CRITERIA" : "CRITERES D'ARRET",
+   "BINARY_RESULTS_FILE_FORMAT" : "FORMAT DU FICHIER DE RESULTATS BINAIRE",
+   "TEMPERATURE_DELWAQ_FILE" : "FICHIER DELWAQ DE LA TEMPERATURE",
+   "PROPAGATION" : "PROPAGATION",
+   "FINITE_VOLUME_SCHEME" : "SCHEMA EN VOLUMES FINIS",
+   "IMPLICITATION_COEFFICIENT_OF_TRACERS" : "COEFFICIENT D'IMPLICITATION DES TRACEURS",
+   "CORIOLIS_COEFFICIENT" : "COEFFICIENT DE CORIOLIS",
+   "PRESCRIBED_FLOWRATES" : "DEBITS IMPOSES",
+   "REFINEMENT_LEVELS" : "NIVEAUX DE RAFFINEMENT",
+   "NUMBER_OF_FIRST_TIME_STEP_FOR_LISTING_PRINTOUTS" : "NUMERO DU PREMIER PAS DE TEMPS POUR LES SORTIES LISTING",
+   "PRINTING_CUMULATED_FLOWRATES" : "IMPRESSION DU CUMUL DES FLUX",
+   "NUMBER_OF_FIRST_TIME_STEP_FOR_GRAPHIC_PRINTOUTS" : "NUMERO DU PREMIER PAS DE TEMPS POUR LES SORTIES GRAPHIQUES",
+   "PHYSICAL_CHARACTERISTICS_OF_THE_TSUNAMI" : "PARAMETRES PHYSIQUES DU TSUNAMI",
+   "MASS_BALANCE" : "BILAN DE MASSE",
+   "BINARY_DATABASE_1_FOR_TIDE" : "BASE BINAIRE 1 DE DONNEES DE MAREE",
+   "SOURCES_FILE" : "FICHIER DES SOURCES",
+   "LAW_OF_TRACERS_DEGRADATION" : "LOI DE DEGRADATION DES TRACEURS",
+   "SECTIONS_INPUT_FILE" : "FICHIER DES SECTIONS DE CONTROLE",
+   "CONTROL_SECTIONS" : "SECTIONS DE CONTROLE",
+   "SOLVER_FOR_DIFFUSION_OF_TRACERS" : "SOLVEUR POUR LA DIFFUSION DES TRACEURS",
+   "RESULTS_FILE_FORMAT" : "FORMAT DU FICHIER DES RESULTATS",
+   "SECONDARY_CURRENTS" : "COURANTS SECONDAIRES",
+   "OPTION_FOR_INITIAL_ABSTRACTION_RATIO" : "OPTION POUR RATIO DES PERTES INITIALES",
+   "TYPE_OF_WEIRS" : "TYPE DES SEUILS",
+   "NUMBER_OF_SUB_STEPS_OF_DISTRIBUTIVE_SCHEMES" : "NOMBRE DE SOUS-PAS DES SCHEMAS DISTRIBUTIFS",
+   "SPACING_OF_ROUGHNESS_ELEMENTS" : "ESPACEMENT DES ELEMENTS DE FROTTEMENT",
+   "SCHEME_OPTION_FOR_ADVECTION_OF_K_EPSILON" : "OPTION DU SCHEMA POUR LA CONVECTION DU K-EPSILON",
+   "COUPLING_WITH" : "COUPLAGE AVEC",
+   "LISTING_PRINTOUT_PERIOD" : "PERIODE DE SORTIE LISTING",
+   "THRESHOLD_DEPTH_FOR_WIND" : "PROFONDEUR LIMITE POUR LE VENT",
+   "VELOCITY_PROFILES" : "PROFILS DE VITESSE",
+   "ALGAE_TYPE" : "TYPE DES ALGUES",
+   "TREATMENT_OF_FLUXES_AT_THE_BOUNDARIES" : "TRAITEMENT DES FLUX AUX FRONTIERES",
+   "MINOR_CONSTITUENTS_INFERENCE" : "INTERPOLATION DE COMPOSANTES MINEURES",
+   "STAGE_DISCHARGE_CURVES" : "COURBES DE TARAGE",
+   "GLOBAL_NUMBER_OF_THE_POINT_TO_CALIBRATE_HIGH_WATER" : "NUMERO GLOBAL DU POINT POUR CALER LA PLEINE MER",
+   "RAIN_OR_EVAPORATION_IN_MM_PER_DAY" : "PLUIE OU EVAPORATION EN MM PAR JOUR",
+   "REFERENCE_FILE_FORMAT" : "FORMAT DU FICHIER DE REFERENCE",
+   "DIFFUSIVITY_FOR_DELWAQ" : "DIFFUSION POUR DELWAQ",
+   "BOTTOM_SURFACES_DELWAQ_FILE" : "FICHIER DELWAQ DES SURFACES DU FOND",
+   "FORMATTED_DATA_FILE_1" : "FICHIER DE DONNEES FORMATE 1",
+   "FORMATTED_DATA_FILE_2" : "FICHIER DE DONNEES FORMATE 2",
+   "COMPUTATION_CONTINUED" : "SUITE DE CALCUL",
+   "RECORD_NUMBER_IN_WAVE_FILE" : "NUMERO DE L'ENREGISTREMENT DANS LE FICHIER DE HOULE",
+   "C_U_PRECONDITIONING" : "PRECONDITIONNEMENT C-U",
+   "LIST_OF_POINTS" : "LISTE DE POINTS",
+   "TYPE_OF_ADVECTION" : "FORME DE LA CONVECTION",
+   "WIND_VELOCITY_ALONG_X" : "VITESSE DU VENT SUIVANT X",
+   "WIND_VELOCITY_ALONG_Y" : "VITESSE DU VENT SUIVANT Y",
+   "TOLERANCES_FOR_IDENTIFICATION" : "PRECISIONS POUR L'IDENTIFICATION",
+   "PREVIOUS_COMPUTATION_FILE_FORMAT" : "FORMAT DU FICHIER DU CALCUL PRECEDENT",
+   "DISCRETIZATIONS_IN_SPACE" : "DISCRETISATIONS EN ESPACE",
+   "BINARY_ATMOSPHERIC_DATA_FILE" : "FICHIER BINAIRE DE DONNEES ATMOSPHERIQUES",
+   "BINARY_RESULTS_FILE" : "FICHIER DE RESULTATS BINAIRE",
+   "EXCHANGES_BETWEEN_NODES_DELWAQ_FILE" : "FICHIER DELWAQ DES ECHANGES ENTRE NOEUDS",
+   "CONTINUITY_CORRECTION" : "CORRECTION DE CONTINUITE",
+   "SCHEME_FOR_ADVECTION_OF_VELOCITIES" : "SCHEMA POUR LA CONVECTION DES VITESSES",
+   "EXCHANGE_AREAS_DELWAQ_FILE" : "FICHIER DELWAQ DES SURFACES DE FLUX",
+   "SISYPHE_STEERING_FILE" : "FICHIER DES PARAMETRES DE SISYPHE",
+   "IMPLICITATION_FOR_DIFFUSION_OF_VELOCITY" : "IMPLICITATION POUR LA DIFFUSION DES VITESSES",
+   "ADVECTION_OF_K_AND_EPSILON" : "CONVECTION DE K ET EPSILON",
+   "FREE_SURFACE_GRADIENT_COMPATIBILITY" : "COMPATIBILITE DU GRADIENT DE SURFACE LIBRE",
+   "VALUES_OF_THE_TRACERS_AT_THE_SOURCES" : "VALEURS DES TRACEURS DES SOURCES",
+   "NUMBER_OF_CULVERTS" : "NOMBRE DE BUSES",
+   "RELEASE" : "NUMERO DE VERSION",
+   "DELWAQ_STEERING_FILE" : "FICHIER DE COMMANDE DELWAQ",
+   "CONVERGENCE_STUDY" : "ETUDE DE CONVERGENCE",
+   "NAMES_OF_PRIVATE_VARIABLES" : "NOMS DES VARIABLES PRIVEES",
+   "PRECONDITIONING_FOR_DIFFUSION_OF_TRACERS" : "PRECONDITIONNEMENT POUR LA DIFFUSION DES TRACEURS",
+   "VALIDATION" : "VALIDATION",
+   "NUMBER_OF_SIPHONS" : "NOMBRE DE SIPHONS",
+   "BINARY_ATMOSPHERIC_DATA_FILE_FORMAT" : "FORMAT DU FICHIER BINAIRE DE DONNEES ATMOSPHERIQUES",
+   "WEIRS_DATA_FILE" : "FICHIER DE DONNEES DES SEUILS",
+   "IMPLICITATION_FOR_VELOCITY" : "IMPLICITATION POUR LA VITESSE",
+   "DEFINITION_OF_ZONES" : "DEFINITION DE ZONES",
+   "LISTING_PRINTOUT" : "SORTIE LISTING",
+   "MEAN_DEPTH_FOR_LINEARIZATION" : "PROFONDEUR MOYENNE POUR LA LINEARISATION",
+   "COUPLING_PERIOD_FOR_TOMAWAC" : "PERIODE DE COUPLAGE POUR TOMAWAC",
+   "WAVE_ENHANCED_FRICTION_FACTOR" : "AUGMENTATION DU FROTTEMENT PAR LA HOULE",
+   "VARIABLES_FOR_GRAPHIC_PRINTOUTS" : "VARIABLES POUR LES SORTIES GRAPHIQUES",
+   "DEPTH_IN_FRICTION_TERMS" : "HAUTEUR DANS LES TERMES DE FROTTEMENT",
+   "MASS_LUMPING_ON_H" : "MASS-LUMPING SUR H",
+   "NUMBER_OF_LAGRANGIAN_DRIFTS" : "NOMBRE DE DERIVES LAGRANGIENNES",
+   "NON_DIMENSIONAL_DISPERSION_COEFFICIENTS" : "COEFFICIENTS ADIMENSIONNELS DE DISPERSION",
+   "FOURIER_ANALYSIS_PERIODS" : "PERIODES D'ANALYSE DE FOURIER",
+   "VARIABLES_TO_BE_PRINTED" : "VARIABLES A IMPRIMER",
+   "EQUATIONS" : "EQUATIONS",
+   "MAXIMUM_NUMBER_OF_ITERATIONS_FOR_IDENTIFICATION" : "MAXIMUM D'ITERATIONS POUR L'IDENTIFICATION",
+   "WIND" : "VENT",
+   "SPEED_AND_DIRECTION_OF_WIND" : "VITESSE ET DIRECTION DU VENT",
+   "NAMES_OF_CLANDESTINE_VARIABLES" : "NOMS DES VARIABLES CLANDESTINES",
+   "GEOMETRY_FILE_FORMAT" : "FORMAT DU FICHIER DE GEOMETRIE",
+   "NON_SUBMERGED_VEGETATION_FRICTION" : "FROTTEMENT POUR LA VEGETATION NON SUBMERGEE",
+   "TYPE_OF_SOURCES" : "TYPE DES SOURCES",
+   "TIDAL_FLATS" : "BANCS DECOUVRANTS",
+   "TITLE" : "TITRE",
+   "NUMBER_OF_DIFFERENTIATORS" : "NOMBRE DE DIFFERENTIATEURS",
+   "ORIGINAL_HOUR_OF_TIME" : "HEURE DE L'ORIGINE DES TEMPS",
+   "TIDE_GENERATING_FORCE" : "FORCE GENERATRICE DE LA MAREE",
+   "LAW_OF_FRICTION_ON_LATERAL_BOUNDARIES" : "LOI DE FROTTEMENT SUR LES PAROIS LATERALES",
+   "STAGE_DISCHARGE_CURVES_FILE" : "FICHIER DES COURBES DE TARAGE",
+   "DESIRED_COURANT_NUMBER" : "NOMBRE DE COURANT SOUHAITE",
+   "DISSIPATION_COEFFICIENT_FOR_SECONDARY_CURRENTS" : "COEFFICIENT DE DISSIPATION POUR COURANTS SECONDAIRES",
+   "COUPLING_PERIOD_FOR_SISYPHE" : "PERIODE DE COUPLAGE POUR SISYPHE",
+   "ALGAE_TRANSPORT_MODEL" : "MODELE DE TRANSPORT DES ALGUES",
+   "ABSCISSAE_OF_SOURCES" : "ABSCISSES DES SOURCES",
+   "LIQUID_BOUNDARIES_FILE" : "FICHIER DES FRONTIERES LIQUIDES",
+   "VELOCITIES_OF_THE_SOURCES_ALONG_X" : "VITESSES DES SOURCES SELON X",
+   "VELOCITIES_OF_THE_SOURCES_ALONG_Y" : "VITESSES DES SOURCES SELON Y",
+   "MAXIMUM_NUMBER_OF_SOURCES" : "NOMBRE MAXIMUM DE SOURCES",
+   "SOLVER_OPTION_FOR_TRACERS_DIFFUSION" : "OPTION DU SOLVEUR POUR LA DIFFUSION DES TRACEURS",
+   "INFORMATION_ABOUT_SOLVER" : "INFORMATIONS SUR LE SOLVEUR",
+   "BINARY_DATA_FILE_1_FORMAT" : "FORMAT DU FICHIER DE DONNEES BINAIRE 1",
+   "SALINITY_FOR_DELWAQ" : "SALINITE POUR DELWAQ",
+   "COUPLING_DIRECTORY" : "DOSSIER DE COUPLAGE",
+   "DELWAQ_PRINTOUT_PERIOD" : "PERIODE DE SORTIE POUR DELWAQ",
+   "BOTTOM_SMOOTHINGS" : "LISSAGES DU FOND",
+   "AIR_PRESSURE" : "PRESSION ATMOSPHERIQUE",
+   "PRESCRIBED_ELEVATIONS" : "COTES IMPOSEES",
+   "MASS_LUMPING_FOR_WEAK_CHARACTERISTICS" : "MASS-LUMPING POUR LES CARACTERISTIQUES FAIBLES",
+   "GRAVITY_ACCELERATION" : "ACCELERATION DE LA PESANTEUR",
+   "LIMIT_VALUES" : "VALEURS LIMITES",
+   "RESULTS_FILE" : "FICHIER DES RESULTATS",
+   "SCHEME_OPTION_FOR_ADVECTION_OF_TRACERS" : "OPTION DU SCHEMA POUR LA CONVECTION DES TRACEURS",
+   "OPTION_FOR_CHARACTERISTICS" : "OPTION POUR LES CARACTERISTIQUES",
+   "OPTION_FOR_THE_TREATMENT_OF_TIDAL_FLATS" : "OPTION DE TRAITEMENT DES BANCS DECOUVRANTS",
+   "TIME_RANGE_FOR_FOURIER_ANALYSIS" : "BORNES EN TEMPS POUR L'ANALYSE DE FOURIER",
+   "VERTICAL_FLUXES_DELWAQ_FILE" : "FICHIER DELWAQ DES FLUX VERTICAUX",
+   "ORDINATES_OF_SOURCES" : "ORDONNEES DES SOURCES",
+   "MAXIMUM_NUMBER_OF_TRACERS" : "NOMBRE MAXIMUM DE TRACEURS",
+   "TURBULENCE_REGIME_FOR_SOLID_BOUNDARIES" : "REGIME DE TURBULENCE POUR LES PAROIS",
+   "LOCAL_NUMBER_OF_THE_POINT_TO_CALIBRATE_HIGH_WATER" : "NUMERO LOCAL DU POINT POUR CALER LA PLEINE MER",
+   "NODES_DISTANCES_DELWAQ_FILE" : "FICHIER DELWAQ DES DISTANCES ENTRE NOEUDS",
+   "NUMBER_OF_DROGUES" : "NOMBRE DE FLOTTEURS",
+   "SOLVER_FOR_K_EPSILON_MODEL" : "SOLVEUR POUR LE MODELE K-EPSILON",
+   "SECTIONS_OUTPUT_FILE" : "FICHIER DE SORTIE DES SECTIONS DE CONTROLE",
+   "HARMONIC_CONSTANTS_FILE" : "FICHIER DES CONSTANTES HARMONIQUES",
+   "OPTION_FOR_CULVERTS" : "OPTION POUR LES BUSES",
+   "ASCII_ATMOSPHERIC_DATA_FILE" : "FICHIER ASCII DE DONNEES ATMOSPHERIQUES",
+   "INITIAL_ELEVATION" : "COTE INITIALE",
+   "ZERO" : "ZERO",
+   "BREACHES_DATA_FILE" : "FICHIER DE DONNEES DES BRECHES",
+   "OPTION_FOR_WIND" : "OPTION DU VENT",
+   "OPTION_OF_THE_HYDROSTATIC_RECONSTRUCTION" : "OPTION DE LA RECONSTRUCION HYDROSTATIQUE",
+   "NUMBER_OF_TRACERS" : "NOMBRE DE TRACEURS",
+   "DIFFUSIVITY_DELWAQ_FILE" : "FICHIER DELWAQ DE LA DIFFUSION",
+   "ADVECTION_OF_TRACERS" : "CONVECTION DES TRACEURS",
+   "SOLVER_OPTION" : "OPTION DU SOLVEUR",
+   "MATRIX_STORAGE" : "STOCKAGE DES MATRICES",
+   "COEFFICIENT_TO_CALIBRATE_TIDAL_RANGE" : "COEFFICIENT DE CALAGE DU MARNAGE",
+   "BINARY_DATA_FILE_1" : "FICHIER DE DONNEES BINAIRE 1",
+   "BINARY_DATA_FILE_2" : "FICHIER DE DONNEES BINAIRE 2",
+   "CONTROL_OF_LIMITS" : "CONTROLE DES LIMITES",
+   "RECORD_NUMBER_FOR_RESTART" : "ENREGISTREMENT POUR SUITE DE CALCUL",
+   "NUMBER_OF_GAUSS_POINTS_FOR_WEAK_CHARACTERISTICS" : "NOMBRE DE POINTS DE GAUSS POUR LES CARACTERISTIQUES FAIBLES",
+   "COEFFICIENT_OF_WIND_INFLUENCE" : "COEFFICIENT D'INFLUENCE DU VENT",
+   "PRECONDITIONING_FOR_K_EPSILON_MODEL" : "PRECONDITIONNEMENT POUR LE MODELE K-EPSILON",
+   "PRODUCTION_COEFFICIENT_FOR_SECONDARY_CURRENTS" : "COEFFICIENT DE PRODUCTION POUR COURANTS SECONDAIRES",
+   "MINIMUM_VALUE_OF_DEPTH" : "VALEUR MINIMUM DE H",
+   "ELEMENTS_MASKED_BY_USER" : "ELEMENTS MASQUES PAR L'UTILISATEUR",
+   "FRICTION_COEFFICIENT" : "COEFFICIENT DE FROTTEMENT",
+   "PRESCRIBED_VELOCITIES" : "VITESSES IMPOSEES",
+   "NAMES_OF_TRACERS" : "NOMS DES TRACEURS",
+   "VELOCITY_DELWAQ_FILE" : "FICHIER DELWAQ DE LA VITESSE",
+   "H_CLIPPING" : "CLIPPING DE H",
+   "ZONE_NUMBER_IN_GEOGRAPHIC_SYSTEM" : "NUMERO DE FUSEAU OU PROJECTION DANS LE SYSTEME GEOGRAPHIQUE",
+   "SUPG_OPTION" : "OPTION DE SUPG",
+   "PARAMETER_ESTIMATION" : "ESTIMATION DE PARAMETRE",
+   "CHECKING_THE_MESH" : "VERIFICATION DU MAILLAGE",
+   "COMPATIBLE_COMPUTATION_OF_FLUXES" : "CALCUL COMPATIBLE DES FLUX",
+   "LIST_OF_FILES" : "LISTE DES FICHIERS",
+   "NUMBER_OF_PRIVATE_ARRAYS" : "NOMBRE DE TABLEAUX PRIVES",
+   "MAXIMUM_NUMBER_OF_FRICTION_DOMAINS" : "NOMBRE MAXIMUM DE DOMAINES DE FROTTEMENT",
+   "DURATION" : "DUREE DU CALCUL",
+   "ACCURACY_OF_SPALART_ALLMARAS" : "PRECISION SUR SPALART-ALLMARAS",
+   "COEFFICIENT_1_FOR_LAW_OF_TRACERS_DEGRADATION" : "COEFFICIENT 1 DE LA LOI DE DEGRADATION DES TRACEURS",
+   "ACCURACY_OF_K" : "PRECISION SUR K",
+   "WATER_QUALITY_PROCESS" : "PROCESSUS QUALITE D'EAU",
+   "ADVECTION_OF_H" : "CONVECTION DE H",
+   "SCHEME_FOR_ADVECTION_OF_TRACERS" : "SCHEMA POUR LA CONVECTION DES TRACEURS",
+   "BINARY_DATA_FILE_2_FORMAT" : "FORMAT DU FICHIER DE DONNEES BINAIRE 2",
+   "COEFFICIENT_TO_CALIBRATE_SEA_LEVEL" : "COEFFICIENT DE CALAGE DU NIVEAU DE MER",
+   "OPTION_FOR_THE_DIFFUSION_OF_VELOCITIES" : "OPTION POUR LA DIFFUSION DES VITESSES",
+   "INITIAL_GUESS_FOR_H" : "ORDRE DU TIR INITIAL POUR H",
+   "MASS_LUMPING_ON_TRACERS" : "MASS-LUMPING SUR LES TRACEURS",
+   "OPTION_FOR_LIQUID_BOUNDARIES" : "OPTION POUR LES FRONTIERES LIQUIDES",
+   "GEOMETRY_FILE" : "FICHIER DE GEOMETRIE",
+   "WAQTEL_STEERING_FILE" : "FICHIER DES PARAMETRES DE WAQTEL",
+   "MAXIMUM_NUMBER_OF_ITERATIONS_FOR_ADVECTION_SCHEMES" : "MAXIMUM D'ITERATIONS POUR LES SCHEMAS DE CONVECTION",
+   "FLUXLINE_INPUT_FILE" : "FICHIER DE FLUXLINE",
+   "RAIN_OR_EVAPORATION" : "PLUIE OU EVAPORATION",
+   "LAW_OF_BOTTOM_FRICTION" : "LOI DE FROTTEMENT SUR LE FOND",
+   "MATRIX_VECTOR_PRODUCT" : "PRODUIT MATRICE-VECTEUR",
+   "ACCURACY_FOR_DIFFUSION_OF_TRACERS" : "PRECISION POUR LA DIFFUSION DES TRACEURS",
+   "MEAN_TEMPERATURE" : "TEMPERATURE MOYENNE",
+   "PARTITIONING_TOOL" : "PARTITIONNEUR",
+   "MAXIMUM_NUMBER_OF_BOUNDARIES" : "NOMBRE MAXIMUM DE FRONTIERES",
+   "OPTION_FOR_THE_SOLVER_FOR_K_EPSILON_MODEL" : "OPTION DU SOLVEUR POUR LE MODELE K-EPSILON",
+   "SPATIAL_PROJECTION_TYPE" : "TYPE DE PROJECTION SPATIALE",
+   "THRESHOLD_FOR_NEGATIVE_DEPTHS" : "SEUIL POUR LES PROFONDEURS NEGATIVES",
+   "DEFAULT_PARALLEL_EXECUTABLE" : "EXECUTABLE PARALLELE PAR DEFAUT",
+   "INITIAL_GUESS_FOR_U" : "ORDRE DU TIR INITIAL POUR U",
+   "DIFFUSION_OF_TRACERS" : "DIFFUSION DES TRACEURS",
+   "DEFAULT_EXECUTABLE" : "EXECUTABLE PAR DEFAUT",
+   "FORMATTED_RESULTS_FILE" : "FICHIER DE RESULTATS FORMATE",
+   "VALUES_OF_TRACERS_IN_THE_RAIN" : "VALEURS DES TRACEURS DANS LA PLUIE",
+   "VERTICAL_STRUCTURES" : "STRUCTURES VERTICALES",
+   "MAXIMUM_NUMBER_OF_ITERATIONS_FOR_K_AND_EPSILON" : "MAXIMUM D'ITERATIONS POUR K ET EPSILON",
+   "UPWIND_COEFFICIENTS" : "COEFFICIENTS DE DECENTREMENT",
+   "FRICTION_DATA" : "DONNEES POUR LE FROTTEMENT",
+   "NUMBER_OF_WEIRS" : "NOMBRE DE SEUILS",
+   "OPTION_FOR_TSUNAMI_GENERATION" : "OPTION POUR LA GENERATION DE TSUNAMI",
+   "VARIABLE_TIME_STEP" : "PAS DE TEMPS VARIABLE",
+   "WAVE_DRIVEN_CURRENTS" : "COURANTS DE HOULE",
+   "INFORMATION_ABOUT_K_EPSILON_MODEL" : "INFORMATIONS SUR LE MODELE K-EPSILON",
+   "ZONES_FILE" : "FICHIER DES ZONES",
+   "SPHERICAL_COORDINATES" : "COORDONNEES SPHERIQUES",
+   "NORTH" : "NORD",
+   "TREATMENT_OF_THE_LINEAR_SYSTEM" : "TRAITEMENT DU SYSTEME LINEAIRE",
+   "REFERENCE_FILE" : "FICHIER DE REFERENCE",
+   "DENSITY_EFFECTS" : "EFFETS DE DENSITE",
+   "ASCII_DATABASE_FOR_TIDE" : "BASE ASCII DE DONNEES DE MAREE",
+   "THRESHOLD_DEPTH_FOR_RECEDING_PROCEDURE" : "PROFONDEUR LIMITE POUR PROCEDURE DE RESSUYAGE",
+   "OIL_SPILL_MODEL" : "MODELE DE NAPPES D'HYDROCARBURES",
+   "SOLVER" : "SOLVEUR",
+   "TIME_STEP_REDUCTION_FOR_K_EPSILON_MODEL" : "REDUCTION DU PAS DE TEMPS POUR LE MODELE K-EPSILON",
+   "STOCHASTIC_DIFFUSION_MODEL" : "MODELE DE DIFFUSION STOCHASTIQUE",
+   "ORIGINAL_DATE_OF_TIME" : "DATE DE L'ORIGINE DES TEMPS",
+   "GEOGRAPHIC_SYSTEM" : "SYSTEME GEOGRAPHIQUE",
+   "FORTRAN_FILE" : "FICHIER FORTRAN",
+   "PROPAGATION_OPTION" : "OPTION DE PROPAGATION",
+   "OIL_SPILL_STEERING_FILE" : "FICHIER DE COMMANDES HYDROCARBURES",
+   "TIDAL_DATA_BASE" : "BASE DE DONNEES DE MAREE",
+   "TIDAL_MODEL_FILE" : "FICHIER DU MODELE DE MAREE",
+   "BREACH" : "BRECHE",
+   "TREATMENT_OF_NEGATIVE_DEPTHS" : "TRAITEMENT DES HAUTEURS NEGATIVES",
+   "INITIAL_VALUES_OF_TRACERS" : "VALEURS INITIALES DES TRACEURS",
+ }
+dicoCasFrToCata = {
+   "COEFFICIENT DE CALAGE DES VITESSES DE COURANT" : "COEFFICIENT_TO_CALIBRATE_TIDAL_VELOCITIES",
+   "FONCTION COUT" : "COST_FUNCTION",
+   "FICHIER DES FONDS" : "BOTTOM_TOPOGRAPHY_FILE",
+   "MASSE VOLUMIQUE DES ALGUES" : "DENSITY_OF_ALGAE",
+   "FICHIER DES PARAMETRES" : "STEERING_FILE",
+   "NOMBRE DE CORRECTIONS DES SCHEMAS DISTRIBUTIFS" : "NUMBER_OF_CORRECTIONS_OF_DISTRIBUTIVE_SCHEMES",
+   "LONGITUDE DU POINT ORIGINE" : "LONGITUDE_OF_ORIGIN_POINT",
+   "FICHIER DU CALCUL PRECEDENT" : "PREVIOUS_COMPUTATION_FILE",
+   "DIAMETRE DES ELEMENTS DE FROTTEMENT" : "DIAMETER_OF_ROUGHNESS_ELEMENTS",
+   "EPAISSEUR DES ALGUES" : "THICKNESS_OF_ALGAE",
+   "CORIOLIS" : "CORIOLIS",
+   "OPTION POUR LES CONDITIONS AUX LIMITES DE MAREE" : "OPTION_FOR_TIDAL_BOUNDARY_CONDITIONS",
+   "NOMBRE DE PAS DE TEMPS" : "NUMBER_OF_TIME_STEPS",
+   "CONVECTION" : "ADVECTION",
+   "COEFFICIENT D'INTEGRATION EN TEMPS DE NEWMARK" : "NEWMARK_TIME_INTEGRATION_COEFFICIENT",
+   "PAS DE TEMPS" : "TIME_STEP",
+   "VALEUR DE LA PRESSION ATMOSPHERIQUE" : "VALUE_OF_ATMOSPHERIC_PRESSURE",
+   "PERIODE POUR LES SORTIES LISTING" : "LISTING_FOR_PRINTOUT_PERIOD",
+   "BASE BINAIRE 2 DE DONNEES DE MAREE" : "BINARY_DATABASE_2_FOR_TIDE",
+   "FICHIER DELWAQ DES VOLUMES" : "VOLUMES_DELWAQ_FILE",
+   "DESCRIPTION DES LIBRAIRIES" : "DESCRIPTION_OF_LIBRARIES",
+   "ARRET SI UN ETAT PERMANENT EST ATTEINT" : "STOP_IF_A_STEADY_STATE_IS_REACHED",
+   "FICHIER DELWAQ DE LA SALINITE" : "SALINITY_DELWAQ_FILE",
+   "IMPLICITATION POUR LA HAUTEUR" : "IMPLICITATION_FOR_DEPTH",
+   "FICHIER DES FLOTTEURS" : "DROGUES_FILE",
+   "TEMPERATURE POUR DELWAQ" : "TEMPERATURE_FOR_DELWAQ",
+   "LANGUE" : "LANGUAGE",
+   "HAUTEUR INITIALE" : "INITIAL_DEPTH",
+   "METHODE D'IDENTIFICATION" : "IDENTIFICATION_METHOD",
+   "COEFFICIENT DE DIFFUSION DES TRACEURS" : "COEFFICIENT_FOR_DIFFUSION_OF_TRACERS",
+   "NOMS DES DIFFERENTIATEURS" : "NAMES_OF_DIFFERENTIATORS",
+   "COEFFICIENT DE DIFFUSION DES VITESSES" : "VELOCITY_DIFFUSIVITY",
+   "LONGUEUR DU VECTEUR" : "VECTOR_LENGTH",
+   "PERIODE POUR LES SORTIES GRAPHIQUES" : "GRAPHIC_PRINTOUT_PERIOD",
+   "PROPAGATION LINEARISEE" : "LINEARIZED_PROPAGATION",
+   "PRECONDITIONNEMENT" : "PRECONDITIONING",
+   "VALEUR PAR DEFAUT DU MANNING POUR LA LOI DE COLEBROOK-WHITE" : "MANNING_DEFAULT_VALUE_FOR_COLEBROOK_WHITE_LAW",
+   "MODELE DE TURBULENCE" : "TURBULENCE_MODEL",
+   "PERIODE POUR LES SORTIES DE FLOTTEURS" : "PRINTOUT_PERIOD_FOR_DROGUES",
+   "DUREE DE LA PLUIE OU EVAPORATION EN HEURES" : "DURATION_OF_RAIN_OR_EVAPORATION_IN_HOURS",
+   "DEBUGGER" : "DEBUGGER",
+   "DICTIONNAIRE" : "DICTIONARY",
+   "FICHIER DE DONNEES DES SIPHONS" : "SIPHONS_DATA_FILE",
+   "DEBITS DES SOURCES" : "WATER_DISCHARGE_OF_SOURCES",
+   "CONVECTION DE U ET V" : "ADVECTION_OF_U_AND_V",
+   "CONDITIONS D'HUMIDITE PRECEDENTE" : "ANTECEDENT_MOISTURE_CONDITIONS",
+   "DIFFUSION DES VITESSES" : "DIFFUSION_OF_VELOCITY",
+   "MASSE VOLUMIQUE DE L'EAU" : "WATER_DENSITY",
+   "COORDONNEES DE L'ORIGINE" : "ORIGIN_COORDINATES",
+   "LATITUDE DU POINT ORIGINE" : "LATITUDE_OF_ORIGIN_POINT",
+   "VALEURS IMPOSEES DES TRACEURS" : "PRESCRIBED_TRACERS_VALUES",
+   "MAXIMUM D'ITERATIONS POUR LE SOLVEUR" : "MAXIMUM_NUMBER_OF_ITERATIONS_FOR_SOLVER",
+   "FLUXLINE" : "FLUXLINE",
+   "INFORMATION SUR LE MODELE SPALART-ALLMARAS" : "INFORMATION_ABOUT_SPALART_ALLMARAS_MODEL",
+   "VITESSE POUR DELWAQ" : "VELOCITY_FOR_DELWAQ",
+   "PROCESSEURS PARALLELES" : "PARALLEL_PROCESSORS",
+   "COEFFICIENT DE RUGOSITE DES BORDS" : "ROUGHNESS_COEFFICIENT_OF_BOUNDARIES",
+   "MODELE PLUIE-DEBIT" : "RAINFALL_RUNOFF_MODEL",
+   "OPTION DU SCHEMA PSI" : "PSI_SCHEME_OPTION",
+   "OPTION DU SCHEMA POUR LA CONVECTION DES VITESSES" : "SCHEME_OPTION_FOR_ADVECTION_OF_VELOCITIES",
+   "CONDITIONS INITIALES" : "INITIAL_CONDITIONS",
+   "REMISE A ZERO DU TEMPS" : "INITIAL_TIME_SET_TO_ZERO",
+   "NOMBRE DE SOUS-ITERATIONS POUR LES NON-LINEARITES" : "NUMBER_OF_SUB_ITERATIONS_FOR_NON_LINEARITIES",
+   "OPTION POUR LA DIFFUSION DES TRACEURS" : "OPTION_FOR_THE_DIFFUSION_OF_TRACERS",
+   "FICHIER DE DONNEES DES BUSES" : "CULVERTS_DATA_FILE",
+   "DIAMETRE DES ALGUES" : "DIAMETER_OF_ALGAE",
+   "PRECISION SUR EPSILON" : "ACCURACY_OF_EPSILON",
+   "MAXIMUM D'ITERATIONS POUR LA DIFFUSION DES TRACEURS" : "MAXIMUM_NUMBER_OF_ITERATIONS_FOR_DIFFUSION_OF_TRACERS",
+   "MASS-LUMPING SUR LA VITESSE" : "MASS_LUMPING_ON_VELOCITY",
+   "FICHIER DE DONNEES POUR LE FROTTEMENT" : "FRICTION_DATA_FILE",
+   "SCHEMA POUR LA CONVECTION DU K-EPSILON" : "SCHEME_FOR_ADVECTION_OF_K_EPSILON",
+   "PRECISION DU SOLVEUR" : "SOLVER_ACCURACY",
+   "NOMS DES POINTS" : "NAMES_OF_POINTS",
+   "FICHIER DES PARAMETRES DE TOMAWAC" : "TOMAWAC_STEERING_FILE",
+   "FICHIER DES CONDITIONS AUX LIMITES" : "BOUNDARY_CONDITIONS_FILE",
+   "CRITERES D'ARRET" : "STOP_CRITERIA",
+   "FORMAT DU FICHIER DE RESULTATS BINAIRE" : "BINARY_RESULTS_FILE_FORMAT",
+   "FICHIER DELWAQ DE LA TEMPERATURE" : "TEMPERATURE_DELWAQ_FILE",
+   "PROPAGATION" : "PROPAGATION",
+   "SCHEMA EN VOLUMES FINIS" : "FINITE_VOLUME_SCHEME",
+   "COEFFICIENT D'IMPLICITATION DES TRACEURS" : "IMPLICITATION_COEFFICIENT_OF_TRACERS",
+   "COEFFICIENT DE CORIOLIS" : "CORIOLIS_COEFFICIENT",
+   "DEBITS IMPOSES" : "PRESCRIBED_FLOWRATES",
+   "NIVEAUX DE RAFFINEMENT" : "REFINEMENT_LEVELS",
+   "NUMERO DU PREMIER PAS DE TEMPS POUR LES SORTIES LISTING" : "NUMBER_OF_FIRST_TIME_STEP_FOR_LISTING_PRINTOUTS",
+   "IMPRESSION DU CUMUL DES FLUX" : "PRINTING_CUMULATED_FLOWRATES",
+   "NUMERO DU PREMIER PAS DE TEMPS POUR LES SORTIES GRAPHIQUES" : "NUMBER_OF_FIRST_TIME_STEP_FOR_GRAPHIC_PRINTOUTS",
+   "PARAMETRES PHYSIQUES DU TSUNAMI" : "PHYSICAL_CHARACTERISTICS_OF_THE_TSUNAMI",
+   "BILAN DE MASSE" : "MASS_BALANCE",
+   "BASE BINAIRE 1 DE DONNEES DE MAREE" : "BINARY_DATABASE_1_FOR_TIDE",
+   "FICHIER DES SOURCES" : "SOURCES_FILE",
+   "LOI DE DEGRADATION DES TRACEURS" : "LAW_OF_TRACERS_DEGRADATION",
+   "FICHIER DES SECTIONS DE CONTROLE" : "SECTIONS_INPUT_FILE",
+   "SECTIONS DE CONTROLE" : "CONTROL_SECTIONS",
+   "SOLVEUR POUR LA DIFFUSION DES TRACEURS" : "SOLVER_FOR_DIFFUSION_OF_TRACERS",
+   "FORMAT DU FICHIER DES RESULTATS" : "RESULTS_FILE_FORMAT",
+   "COURANTS SECONDAIRES" : "SECONDARY_CURRENTS",
+   "OPTION POUR RATIO DES PERTES INITIALES" : "OPTION_FOR_INITIAL_ABSTRACTION_RATIO",
+   "TYPE DES SEUILS" : "TYPE_OF_WEIRS",
+   "NOMBRE DE SOUS-PAS DES SCHEMAS DISTRIBUTIFS" : "NUMBER_OF_SUB_STEPS_OF_DISTRIBUTIVE_SCHEMES",
+   "ESPACEMENT DES ELEMENTS DE FROTTEMENT" : "SPACING_OF_ROUGHNESS_ELEMENTS",
+   "OPTION DU SCHEMA POUR LA CONVECTION DU K-EPSILON" : "SCHEME_OPTION_FOR_ADVECTION_OF_K_EPSILON",
+   "COUPLAGE AVEC" : "COUPLING_WITH",
+   "PERIODE DE SORTIE LISTING" : "LISTING_PRINTOUT_PERIOD",
+   "PROFONDEUR LIMITE POUR LE VENT" : "THRESHOLD_DEPTH_FOR_WIND",
+   "PROFILS DE VITESSE" : "VELOCITY_PROFILES",
+   "TYPE DES ALGUES" : "ALGAE_TYPE",
+   "TRAITEMENT DES FLUX AUX FRONTIERES" : "TREATMENT_OF_FLUXES_AT_THE_BOUNDARIES",
+   "INTERPOLATION DE COMPOSANTES MINEURES" : "MINOR_CONSTITUENTS_INFERENCE",
+   "COURBES DE TARAGE" : "STAGE_DISCHARGE_CURVES",
+   "NUMERO GLOBAL DU POINT POUR CALER LA PLEINE MER" : "GLOBAL_NUMBER_OF_THE_POINT_TO_CALIBRATE_HIGH_WATER",
+   "PLUIE OU EVAPORATION EN MM PAR JOUR" : "RAIN_OR_EVAPORATION_IN_MM_PER_DAY",
+   "FORMAT DU FICHIER DE REFERENCE" : "REFERENCE_FILE_FORMAT",
+   "DIFFUSION POUR DELWAQ" : "DIFFUSIVITY_FOR_DELWAQ",
+   "FICHIER DELWAQ DES SURFACES DU FOND" : "BOTTOM_SURFACES_DELWAQ_FILE",
+   "FICHIER DE DONNEES FORMATE 1" : "FORMATTED_DATA_FILE_1",
+   "FICHIER DE DONNEES FORMATE 2" : "FORMATTED_DATA_FILE_2",
+   "SUITE DE CALCUL" : "COMPUTATION_CONTINUED",
+   "NUMERO DE L'ENREGISTREMENT DANS LE FICHIER DE HOULE" : "RECORD_NUMBER_IN_WAVE_FILE",
+   "PRECONDITIONNEMENT C-U" : "C_U_PRECONDITIONING",
+   "LISTE DE POINTS" : "LIST_OF_POINTS",
+   "FORME DE LA CONVECTION" : "TYPE_OF_ADVECTION",
+   "VITESSE DU VENT SUIVANT X" : "WIND_VELOCITY_ALONG_X",
+   "VITESSE DU VENT SUIVANT Y" : "WIND_VELOCITY_ALONG_Y",
+   "PRECISIONS POUR L'IDENTIFICATION" : "TOLERANCES_FOR_IDENTIFICATION",
+   "FORMAT DU FICHIER DU CALCUL PRECEDENT" : "PREVIOUS_COMPUTATION_FILE_FORMAT",
+   "DISCRETISATIONS EN ESPACE" : "DISCRETIZATIONS_IN_SPACE",
+   "FICHIER BINAIRE DE DONNEES ATMOSPHERIQUES" : "BINARY_ATMOSPHERIC_DATA_FILE",
+   "FICHIER DE RESULTATS BINAIRE" : "BINARY_RESULTS_FILE",
+   "FICHIER DELWAQ DES ECHANGES ENTRE NOEUDS" : "EXCHANGES_BETWEEN_NODES_DELWAQ_FILE",
+   "CORRECTION DE CONTINUITE" : "CONTINUITY_CORRECTION",
+   "SCHEMA POUR LA CONVECTION DES VITESSES" : "SCHEME_FOR_ADVECTION_OF_VELOCITIES",
+   "FICHIER DELWAQ DES SURFACES DE FLUX" : "EXCHANGE_AREAS_DELWAQ_FILE",
+   "FICHIER DES PARAMETRES DE SISYPHE" : "SISYPHE_STEERING_FILE",
+   "IMPLICITATION POUR LA DIFFUSION DES VITESSES" : "IMPLICITATION_FOR_DIFFUSION_OF_VELOCITY",
+   "CONVECTION DE K ET EPSILON" : "ADVECTION_OF_K_AND_EPSILON",
+   "COMPATIBILITE DU GRADIENT DE SURFACE LIBRE" : "FREE_SURFACE_GRADIENT_COMPATIBILITY",
+   "VALEURS DES TRACEURS DES SOURCES" : "VALUES_OF_THE_TRACERS_AT_THE_SOURCES",
+   "NOMBRE DE BUSES" : "NUMBER_OF_CULVERTS",
+   "NUMERO DE VERSION" : "RELEASE",
+   "FICHIER DE COMMANDE DELWAQ" : "DELWAQ_STEERING_FILE",
+   "ETUDE DE CONVERGENCE" : "CONVERGENCE_STUDY",
+   "NOMS DES VARIABLES PRIVEES" : "NAMES_OF_PRIVATE_VARIABLES",
+   "PRECONDITIONNEMENT POUR LA DIFFUSION DES TRACEURS" : "PRECONDITIONING_FOR_DIFFUSION_OF_TRACERS",
+   "VALIDATION" : "VALIDATION",
+   "NOMBRE DE SIPHONS" : "NUMBER_OF_SIPHONS",
+   "FORMAT DU FICHIER BINAIRE DE DONNEES ATMOSPHERIQUES" : "BINARY_ATMOSPHERIC_DATA_FILE_FORMAT",
+   "FICHIER DE DONNEES DES SEUILS" : "WEIRS_DATA_FILE",
+   "IMPLICITATION POUR LA VITESSE" : "IMPLICITATION_FOR_VELOCITY",
+   "DEFINITION DE ZONES" : "DEFINITION_OF_ZONES",
+   "SORTIE LISTING" : "LISTING_PRINTOUT",
+   "PROFONDEUR MOYENNE POUR LA LINEARISATION" : "MEAN_DEPTH_FOR_LINEARIZATION",
+   "PERIODE DE COUPLAGE POUR TOMAWAC" : "COUPLING_PERIOD_FOR_TOMAWAC",
+   "AUGMENTATION DU FROTTEMENT PAR LA HOULE" : "WAVE_ENHANCED_FRICTION_FACTOR",
+   "VARIABLES POUR LES SORTIES GRAPHIQUES" : "VARIABLES_FOR_GRAPHIC_PRINTOUTS",
+   "HAUTEUR DANS LES TERMES DE FROTTEMENT" : "DEPTH_IN_FRICTION_TERMS",
+   "MASS-LUMPING SUR H" : "MASS_LUMPING_ON_H",
+   "NOMBRE DE DERIVES LAGRANGIENNES" : "NUMBER_OF_LAGRANGIAN_DRIFTS",
+   "COEFFICIENTS ADIMENSIONNELS DE DISPERSION" : "NON_DIMENSIONAL_DISPERSION_COEFFICIENTS",
+   "PERIODES D'ANALYSE DE FOURIER" : "FOURIER_ANALYSIS_PERIODS",
+   "VARIABLES A IMPRIMER" : "VARIABLES_TO_BE_PRINTED",
+   "EQUATIONS" : "EQUATIONS",
+   "MAXIMUM D'ITERATIONS POUR L'IDENTIFICATION" : "MAXIMUM_NUMBER_OF_ITERATIONS_FOR_IDENTIFICATION",
+   "VENT" : "WIND",
+   "VITESSE ET DIRECTION DU VENT" : "SPEED_AND_DIRECTION_OF_WIND",
+   "NOMS DES VARIABLES CLANDESTINES" : "NAMES_OF_CLANDESTINE_VARIABLES",
+   "FORMAT DU FICHIER DE GEOMETRIE" : "GEOMETRY_FILE_FORMAT",
+   "FROTTEMENT POUR LA VEGETATION NON SUBMERGEE" : "NON_SUBMERGED_VEGETATION_FRICTION",
+   "TYPE DES SOURCES" : "TYPE_OF_SOURCES",
+   "BANCS DECOUVRANTS" : "TIDAL_FLATS",
+   "TITRE" : "TITLE",
+   "NOMBRE DE DIFFERENTIATEURS" : "NUMBER_OF_DIFFERENTIATORS",
+   "HEURE DE L'ORIGINE DES TEMPS" : "ORIGINAL_HOUR_OF_TIME",
+   "FORCE GENERATRICE DE LA MAREE" : "TIDE_GENERATING_FORCE",
+   "LOI DE FROTTEMENT SUR LES PAROIS LATERALES" : "LAW_OF_FRICTION_ON_LATERAL_BOUNDARIES",
+   "FICHIER DES COURBES DE TARAGE" : "STAGE_DISCHARGE_CURVES_FILE",
+   "NOMBRE DE COURANT SOUHAITE" : "DESIRED_COURANT_NUMBER",
+   "COEFFICIENT DE DISSIPATION POUR COURANTS SECONDAIRES" : "DISSIPATION_COEFFICIENT_FOR_SECONDARY_CURRENTS",
+   "PERIODE DE COUPLAGE POUR SISYPHE" : "COUPLING_PERIOD_FOR_SISYPHE",
+   "MODELE DE TRANSPORT DES ALGUES" : "ALGAE_TRANSPORT_MODEL",
+   "ABSCISSES DES SOURCES" : "ABSCISSAE_OF_SOURCES",
+   "FICHIER DES FRONTIERES LIQUIDES" : "LIQUID_BOUNDARIES_FILE",
+   "VITESSES DES SOURCES SELON X" : "VELOCITIES_OF_THE_SOURCES_ALONG_X",
+   "VITESSES DES SOURCES SELON Y" : "VELOCITIES_OF_THE_SOURCES_ALONG_Y",
+   "NOMBRE MAXIMUM DE SOURCES" : "MAXIMUM_NUMBER_OF_SOURCES",
+   "OPTION DU SOLVEUR POUR LA DIFFUSION DES TRACEURS" : "SOLVER_OPTION_FOR_TRACERS_DIFFUSION",
+   "INFORMATIONS SUR LE SOLVEUR" : "INFORMATION_ABOUT_SOLVER",
+   "FORMAT DU FICHIER DE DONNEES BINAIRE 1" : "BINARY_DATA_FILE_1_FORMAT",
+   "SALINITE POUR DELWAQ" : "SALINITY_FOR_DELWAQ",
+   "DOSSIER DE COUPLAGE" : "COUPLING_DIRECTORY",
+   "PERIODE DE SORTIE POUR DELWAQ" : "DELWAQ_PRINTOUT_PERIOD",
+   "LISSAGES DU FOND" : "BOTTOM_SMOOTHINGS",
+   "PRESSION ATMOSPHERIQUE" : "AIR_PRESSURE",
+   "COTES IMPOSEES" : "PRESCRIBED_ELEVATIONS",
+   "MASS-LUMPING POUR LES CARACTERISTIQUES FAIBLES" : "MASS_LUMPING_FOR_WEAK_CHARACTERISTICS",
+   "ACCELERATION DE LA PESANTEUR" : "GRAVITY_ACCELERATION",
+   "VALEURS LIMITES" : "LIMIT_VALUES",
+   "FICHIER DES RESULTATS" : "RESULTS_FILE",
+   "OPTION DU SCHEMA POUR LA CONVECTION DES TRACEURS" : "SCHEME_OPTION_FOR_ADVECTION_OF_TRACERS",
+   "OPTION POUR LES CARACTERISTIQUES" : "OPTION_FOR_CHARACTERISTICS",
+   "OPTION DE TRAITEMENT DES BANCS DECOUVRANTS" : "OPTION_FOR_THE_TREATMENT_OF_TIDAL_FLATS",
+   "BORNES EN TEMPS POUR L'ANALYSE DE FOURIER" : "TIME_RANGE_FOR_FOURIER_ANALYSIS",
+   "FICHIER DELWAQ DES FLUX VERTICAUX" : "VERTICAL_FLUXES_DELWAQ_FILE",
+   "ORDONNEES DES SOURCES" : "ORDINATES_OF_SOURCES",
+   "NOMBRE MAXIMUM DE TRACEURS" : "MAXIMUM_NUMBER_OF_TRACERS",
+   "REGIME DE TURBULENCE POUR LES PAROIS" : "TURBULENCE_REGIME_FOR_SOLID_BOUNDARIES",
+   "NUMERO LOCAL DU POINT POUR CALER LA PLEINE MER" : "LOCAL_NUMBER_OF_THE_POINT_TO_CALIBRATE_HIGH_WATER",
+   "FICHIER DELWAQ DES DISTANCES ENTRE NOEUDS" : "NODES_DISTANCES_DELWAQ_FILE",
+   "NOMBRE DE FLOTTEURS" : "NUMBER_OF_DROGUES",
+   "SOLVEUR POUR LE MODELE K-EPSILON" : "SOLVER_FOR_K_EPSILON_MODEL",
+   "FICHIER DE SORTIE DES SECTIONS DE CONTROLE" : "SECTIONS_OUTPUT_FILE",
+   "FICHIER DES CONSTANTES HARMONIQUES" : "HARMONIC_CONSTANTS_FILE",
+   "OPTION POUR LES BUSES" : "OPTION_FOR_CULVERTS",
+   "FICHIER ASCII DE DONNEES ATMOSPHERIQUES" : "ASCII_ATMOSPHERIC_DATA_FILE",
+   "COTE INITIALE" : "INITIAL_ELEVATION",
+   "ZERO" : "ZERO",
+   "FICHIER DE DONNEES DES BRECHES" : "BREACHES_DATA_FILE",
+   "OPTION DU VENT" : "OPTION_FOR_WIND",
+   "OPTION DE LA RECONSTRUCION HYDROSTATIQUE" : "OPTION_OF_THE_HYDROSTATIC_RECONSTRUCTION",
+   "NOMBRE DE TRACEURS" : "NUMBER_OF_TRACERS",
+   "FICHIER DELWAQ DE LA DIFFUSION" : "DIFFUSIVITY_DELWAQ_FILE",
+   "CONVECTION DES TRACEURS" : "ADVECTION_OF_TRACERS",
+   "OPTION DU SOLVEUR" : "SOLVER_OPTION",
+   "STOCKAGE DES MATRICES" : "MATRIX_STORAGE",
+   "COEFFICIENT DE CALAGE DU MARNAGE" : "COEFFICIENT_TO_CALIBRATE_TIDAL_RANGE",
+   "FICHIER DE DONNEES BINAIRE 1" : "BINARY_DATA_FILE_1",
+   "FICHIER DE DONNEES BINAIRE 2" : "BINARY_DATA_FILE_2",
+   "CONTROLE DES LIMITES" : "CONTROL_OF_LIMITS",
+   "ENREGISTREMENT POUR SUITE DE CALCUL" : "RECORD_NUMBER_FOR_RESTART",
+   "NOMBRE DE POINTS DE GAUSS POUR LES CARACTERISTIQUES FAIBLES" : "NUMBER_OF_GAUSS_POINTS_FOR_WEAK_CHARACTERISTICS",
+   "COEFFICIENT D'INFLUENCE DU VENT" : "COEFFICIENT_OF_WIND_INFLUENCE",
+   "PRECONDITIONNEMENT POUR LE MODELE K-EPSILON" : "PRECONDITIONING_FOR_K_EPSILON_MODEL",
+   "COEFFICIENT DE PRODUCTION POUR COURANTS SECONDAIRES" : "PRODUCTION_COEFFICIENT_FOR_SECONDARY_CURRENTS",
+   "VALEUR MINIMUM DE H" : "MINIMUM_VALUE_OF_DEPTH",
+   "ELEMENTS MASQUES PAR L'UTILISATEUR" : "ELEMENTS_MASKED_BY_USER",
+   "COEFFICIENT DE FROTTEMENT" : "FRICTION_COEFFICIENT",
+   "VITESSES IMPOSEES" : "PRESCRIBED_VELOCITIES",
+   "NOMS DES TRACEURS" : "NAMES_OF_TRACERS",
+   "FICHIER DELWAQ DE LA VITESSE" : "VELOCITY_DELWAQ_FILE",
+   "CLIPPING DE H" : "H_CLIPPING",
+   "NUMERO DE FUSEAU OU PROJECTION DANS LE SYSTEME GEOGRAPHIQUE" : "ZONE_NUMBER_IN_GEOGRAPHIC_SYSTEM",
+   "OPTION DE SUPG" : "SUPG_OPTION",
+   "ESTIMATION DE PARAMETRE" : "PARAMETER_ESTIMATION",
+   "VERIFICATION DU MAILLAGE" : "CHECKING_THE_MESH",
+   "CALCUL COMPATIBLE DES FLUX" : "COMPATIBLE_COMPUTATION_OF_FLUXES",
+   "LISTE DES FICHIERS" : "LIST_OF_FILES",
+   "NOMBRE DE TABLEAUX PRIVES" : "NUMBER_OF_PRIVATE_ARRAYS",
+   "NOMBRE MAXIMUM DE DOMAINES DE FROTTEMENT" : "MAXIMUM_NUMBER_OF_FRICTION_DOMAINS",
+   "DUREE DU CALCUL" : "DURATION",
+   "PRECISION SUR SPALART-ALLMARAS" : "ACCURACY_OF_SPALART_ALLMARAS",
+   "COEFFICIENT 1 DE LA LOI DE DEGRADATION DES TRACEURS" : "COEFFICIENT_1_FOR_LAW_OF_TRACERS_DEGRADATION",
+   "PRECISION SUR K" : "ACCURACY_OF_K",
+   "PROCESSUS QUALITE D'EAU" : "WATER_QUALITY_PROCESS",
+   "CONVECTION DE H" : "ADVECTION_OF_H",
+   "SCHEMA POUR LA CONVECTION DES TRACEURS" : "SCHEME_FOR_ADVECTION_OF_TRACERS",
+   "FORMAT DU FICHIER DE DONNEES BINAIRE 2" : "BINARY_DATA_FILE_2_FORMAT",
+   "COEFFICIENT DE CALAGE DU NIVEAU DE MER" : "COEFFICIENT_TO_CALIBRATE_SEA_LEVEL",
+   "OPTION POUR LA DIFFUSION DES VITESSES" : "OPTION_FOR_THE_DIFFUSION_OF_VELOCITIES",
+   "ORDRE DU TIR INITIAL POUR H" : "INITIAL_GUESS_FOR_H",
+   "MASS-LUMPING SUR LES TRACEURS" : "MASS_LUMPING_ON_TRACERS",
+   "OPTION POUR LES FRONTIERES LIQUIDES" : "OPTION_FOR_LIQUID_BOUNDARIES",
+   "FICHIER DE GEOMETRIE" : "GEOMETRY_FILE",
+   "FICHIER DES PARAMETRES DE WAQTEL" : "WAQTEL_STEERING_FILE",
+   "MAXIMUM D'ITERATIONS POUR LES SCHEMAS DE CONVECTION" : "MAXIMUM_NUMBER_OF_ITERATIONS_FOR_ADVECTION_SCHEMES",
+   "FICHIER DE FLUXLINE" : "FLUXLINE_INPUT_FILE",
+   "PLUIE OU EVAPORATION" : "RAIN_OR_EVAPORATION",
+   "LOI DE FROTTEMENT SUR LE FOND" : "LAW_OF_BOTTOM_FRICTION",
+   "PRODUIT MATRICE-VECTEUR" : "MATRIX_VECTOR_PRODUCT",
+   "PRECISION POUR LA DIFFUSION DES TRACEURS" : "ACCURACY_FOR_DIFFUSION_OF_TRACERS",
+   "TEMPERATURE MOYENNE" : "MEAN_TEMPERATURE",
+   "PARTITIONNEUR" : "PARTITIONING_TOOL",
+   "NOMBRE MAXIMUM DE FRONTIERES" : "MAXIMUM_NUMBER_OF_BOUNDARIES",
+   "OPTION DU SOLVEUR POUR LE MODELE K-EPSILON" : "OPTION_FOR_THE_SOLVER_FOR_K_EPSILON_MODEL",
+   "TYPE DE PROJECTION SPATIALE" : "SPATIAL_PROJECTION_TYPE",
+   "SEUIL POUR LES PROFONDEURS NEGATIVES" : "THRESHOLD_FOR_NEGATIVE_DEPTHS",
+   "EXECUTABLE PARALLELE PAR DEFAUT" : "DEFAULT_PARALLEL_EXECUTABLE",
+   "ORDRE DU TIR INITIAL POUR U" : "INITIAL_GUESS_FOR_U",
+   "DIFFUSION DES TRACEURS" : "DIFFUSION_OF_TRACERS",
+   "EXECUTABLE PAR DEFAUT" : "DEFAULT_EXECUTABLE",
+   "FICHIER DE RESULTATS FORMATE" : "FORMATTED_RESULTS_FILE",
+   "VALEURS DES TRACEURS DANS LA PLUIE" : "VALUES_OF_TRACERS_IN_THE_RAIN",
+   "STRUCTURES VERTICALES" : "VERTICAL_STRUCTURES",
+   "MAXIMUM D'ITERATIONS POUR K ET EPSILON" : "MAXIMUM_NUMBER_OF_ITERATIONS_FOR_K_AND_EPSILON",
+   "COEFFICIENTS DE DECENTREMENT" : "UPWIND_COEFFICIENTS",
+   "DONNEES POUR LE FROTTEMENT" : "FRICTION_DATA",
+   "NOMBRE DE SEUILS" : "NUMBER_OF_WEIRS",
+   "OPTION POUR LA GENERATION DE TSUNAMI" : "OPTION_FOR_TSUNAMI_GENERATION",
+   "PAS DE TEMPS VARIABLE" : "VARIABLE_TIME_STEP",
+   "COURANTS DE HOULE" : "WAVE_DRIVEN_CURRENTS",
+   "INFORMATIONS SUR LE MODELE K-EPSILON" : "INFORMATION_ABOUT_K_EPSILON_MODEL",
+   "FICHIER DES ZONES" : "ZONES_FILE",
+   "COORDONNEES SPHERIQUES" : "SPHERICAL_COORDINATES",
+   "NORD" : "NORTH",
+   "TRAITEMENT DU SYSTEME LINEAIRE" : "TREATMENT_OF_THE_LINEAR_SYSTEM",
+   "FICHIER DE REFERENCE" : "REFERENCE_FILE",
+   "EFFETS DE DENSITE" : "DENSITY_EFFECTS",
+   "BASE ASCII DE DONNEES DE MAREE" : "ASCII_DATABASE_FOR_TIDE",
+   "PROFONDEUR LIMITE POUR PROCEDURE DE RESSUYAGE" : "THRESHOLD_DEPTH_FOR_RECEDING_PROCEDURE",
+   "MODELE DE NAPPES D'HYDROCARBURES" : "OIL_SPILL_MODEL",
+   "SOLVEUR" : "SOLVER",
+   "REDUCTION DU PAS DE TEMPS POUR LE MODELE K-EPSILON" : "TIME_STEP_REDUCTION_FOR_K_EPSILON_MODEL",
+   "MODELE DE DIFFUSION STOCHASTIQUE" : "STOCHASTIC_DIFFUSION_MODEL",
+   "DATE DE L'ORIGINE DES TEMPS" : "ORIGINAL_DATE_OF_TIME",
+   "SYSTEME GEOGRAPHIQUE" : "GEOGRAPHIC_SYSTEM",
+   "FICHIER FORTRAN" : "FORTRAN_FILE",
+   "OPTION DE PROPAGATION" : "PROPAGATION_OPTION",
+   "FICHIER DE COMMANDES HYDROCARBURES" : "OIL_SPILL_STEERING_FILE",
+   "BASE DE DONNEES DE MAREE" : "TIDAL_DATA_BASE",
+   "FICHIER DU MODELE DE MAREE" : "TIDAL_MODEL_FILE",
+   "BRECHE" : "BREACH",
+   "TRAITEMENT DES HAUTEURS NEGATIVES" : "TREATMENT_OF_NEGATIVE_DEPTHS",
+   "VALEURS INITIALES DES TRACEURS" : "INITIAL_VALUES_OF_TRACERS",
+ }
old mode 100644 (file)
new mode 100755 (executable)
index 509ac1b..79834f1
-DicoEnumCasEn={
-'Psi_Scheme_Option' : { 
-    1 : "Explicit",
-    2 : "Predictor-corrector"
+#/usr/bin/env python
+# -*- coding: latin-1 -*-
+TelemacdicoEn = {
+'VARIABLES_FOR_GRAPHIC_PRINTOUTS' : {
+    'U':"velocity along x axis (m/s)",
+    'V':"velocity along y axis (m/s)",
+    'C':"wave celerity (m/s)",
+    'H':"water depth (m)",
+    'S':"free surface elevation (m)",
+    'B':"bottom elevation (m)",
+    'F':"Froude number",
+    'Q':"scalar flowrate of fluid (m2/s)",
+    'T1':"tracer 1 etc.",
+    'K':"turbulent kinetic energy in k-epsilon model (J/kg)",
+    'E':"dissipation of turbulent energy (W/kg)",
+    'D':"turbulent viscosity (m2/s)",
+    'I':"flowrate along x axis (m2/s)",
+    'J':"flowrate along y axis (m2/s)",
+    'M':"scalar velocity (m/s)",
+    'X':"wind along x axis (m/s)",
+    'Y':"wind along y axis (m/s)",
+    'P':"air pressure (Pa)",
+    'W':"friction coefficient",
+    'A':"drift along x (m)",
+    'G':"drift along y (m)",
+    'L':"Courant number ",
+    'N':"supplementary variable N",
+    'O':"supplementary variable O",
+    'R':"supplementary variable R",
+    'Z':"supplementary variable Z",
+    'MAXZ':"maximum elevation",
+    'TMXZ':"time of maximum elevation",
+    'MAXV':"maximum velocity",
+    'TMXV':"time of maximum velocity",
+    'US':"friction velocity",
+    'G1':"gradient 1, etc. ",
   },
-
-# on regroupe les enum quand on separe
-'Type_Of_Advection' : {
-    1 : "Characteristics", 
-    2 : "SUPG", 
-    3 : "Conservative N-scheme", 
-    4 : "Conservative N-scheme", 
-    5 : "Conservative PSI-scheme", 
-    6 : "Non conservative PSI-scheme", 
-    7 : "Implicit non conservative N-scheme", 
-    13 : "Edge-based N-scheme", 
-    14 : "Edge-based N-scheme" 
+'VARIABLES_TO_BE_PRINTED' : {
+    'U':"velocity along x axis (m/s)",
+    'V':"velocity along y axis (m/s)",
+    'C':"wave celerity (m/s)",
+    'H':"water depth (m)",
+    'S':"free surface elevation (m)",
+    'B':"bottom elevation (m)",
+    'F':"Froude number",
+    'Q':"scalar flowrate of fluid (m2/s)",
+    'Tn':"tracer 1, etc.",
+    'K':"turbulent kinetic energy in k-epsilon model (J/kg)",
+    'E':"dissipation of turbulent energy (W/kg)",
+    'D':"turbulent viscosity of k-epsilon model (m2/s)",
+    'I':"flowrate along x axis (m2/s)",
+    'J':"flowrate along y axis (m2/s)",
+    'M':"scalar velocity (m/s)",
+    'X':"wind along x axis (m/s)",
+    'Y':"wind along y axis (m/s)",
+    'P':"air pressure (Pa)",
+    'W':"friction coefficient",
+    'A':"drift along x (m)",
+    'G':"drift along y (m)",
+    'L':"nombre de courants ",
+    'N':"supplementary variable N",
+    'O':"supplementary variable O",
+    'R':"supplementary variable R",
+    'Z':"supplementary variable Z",
+    'Gn':"gradient 1, etc.",
   },
-
-'Geometry_File_Format' : {
-    'SERAFIN': 'Serafin',
-    'MED': 'MED',
-    'SERAFIND': 'SerafinD',
+'STAGE_DISCHARGE_CURVES' : {
+    0:"no",
+    1:"Z(Q)",
+    2:"Q(Z) not programmed",
   },
-
-'Previous_Computation_File_Format' : {
-    'SERAFIN': 'Serafin',
-    'MED': 'MED',
-    'SERAFIND': 'SerafinD',
+'VELOCITY_PROFILES' : {
+    1:"constant normal profile",
+    2:"u and v given in the conlim file",
+    3:"normal velocity given in ubor in the conlim file",
+    4:"velocity proportional to square root of depth",
+    5:"velocity proportional to square root of depth, variant",
   },
-'Reference_File_Format' : {
-    'SERAFIN': 'Serafin',
-    'MED': 'MED',
-    'SERAFIND': 'SerafinD',
+'OPTION_FOR_LIQUID_BOUNDARIES' : {
+    1:"classical",
+    2:"Thompson method based on characteristics",
   },
-
-'Results_File_Format' : {
-    'SERAFIN': 'Serafin',
-    'MED': 'MED',
-    'SERAFIND': 'SerafinD',
-     },
-
-'Preconditioning'  : {
-    0 : "No preconditioning", 
-    2 : "Diagonal",
-    3 : "Diagonal condensee",
-    7 : "Crout",
-    11 : "Gauss-Seidel", 
-    14 : "Diagonal and Crout", 
-    21 : "Diagonal condensed and Crout"
-   },
-
-'Initial_Guess_For_H'  : {
-    1 : "Previous", 
-    0 : "Zero", 
-    2 : "Extrapolation" 
-  },
-'Law_Of_Bottom_Friction' : {
-    0 : "No friction", 
-    1 : "Haaland", 
-    2 : "Chezy", 
-    3 : "Strickler", 
-    4 : "Manning", 
-    5 : "Nikuradse" 
-  },
-'Solver_For_Diffusion_Of_Tracers' : {
-    1 : "Conjugate gradient", 
-    2 : "Conjugate residual", 
-    3 : "Conjugate gradient on a normal equation", 
-    4 : "Minimum error", 
-    5 : "Squared conjugate gradient", 
-    6 : "CGSTAB", 
-    7 : "GMRES", 
-    8 : "Direct" 
+'LAW_OF_BOTTOM_FRICTION' : {
+    0:"NO FRICTION",
+    1:"HAALAND",
+    2:"CHEZY",
+    3:"STRICKLER",
+    4:"MANNING",
+    5:"NIKURADSE",
   },
-
-'Solver' : {
-    3 : "Conjugate gradient on a normal equation", 
-    1 : "Conjugate gradient", 
-    2 : "Conjugate residual", 
-    4 : "Minimum error", 
-    6 : "CGSTAB", 
-    7 : "GMRES", 
-    8 : "Direct" 
-  },
-'Preconditioning_For_Diffusion_Of_Tracers' : {
-    2 : "Diagonal",
-    0 : "No preconditioning", 
-    3 : "Diagonal condensed",
-    7 : "Crout", 
-    14 : "Diagonal and Crout",
-    21 : "Diagonal condensed and Crout" 
+'DEPTH_IN_FRICTION_TERMS' : {
+    1:"nodal",
+    2:"average",
   },
-
-'Solver_For_K_Epsilon_Model' : {
-    1 : "Conjugate gradient", 
-    2 : "Conjugate residuals", 
-    3 : "Conjugate gradient on normal equation", 
-    4 : "Minimum error", 
-    5 : "Conjugate gradient squared", 
-    6 : "Conjugate gradient squared stabilised (CGSTAB)", 
-    7 : "GMRES", 
-    8 : "Direct" 
+'LAW_OF_FRICTION_ON_LATERAL_BOUNDARIES' : {
+    0:"NO FRICTION",
+    1:"HAALAND",
+    2:"CHEZY",
+    3:"STRICKLER",
+    4:"MANNING",
+    5:"NIKURADSE",
+    6:"LOG LAW",
+    7:"COLEBROOK-WHITE",
   },
-
-'Preconditioning_For_K_Epsilon_Model' : {
-    2 : "Diagonal",
-    0 : "No preconditioning", 
-    3 : "Diagonal condensed",
-    7 : "Crout", 
-    14 : "Diagonal and Crout",
-    21 : "Diagonal condensed and Crout" 
+'OPTION_FOR_WIND' : {
+    1:"constant in time and space",
+    2:"variable in time given by formated file",
+    3:"variable in time and space given by formated file",
   },
-
-'Turbulence_Model_For_Solid_Boundaries' : {
-    1 : "Smooth",
-    2 : "Rough" 
+'RAINFALL_RUNOFF_MODEL' : {
+    0:"No infiltration",
+    1:"CN runoff model",
   },
-
-'PNPN_Friction_Coefficient' : {
-    1 : "Linear coefficient",
-    2 : "Chezy coefficient",
-    3 : "Strickler coefficient",
-    4 : "Manning coefficient",
-    5 : "Nikuradse grain size",
-  },
-
-'Turbulence_Model' : {
-    1 : "Constant Viscosity",
-    2 : "Elder",
-    3 : "K-Epsilon Model", 
-    4 : "Smagorinski",
+'COST_FUNCTION' : {
+    1:"Computed with h,u,v",
+    2:"Computed with c,u,v",
   },
-
-'Roughness_Coefficient_Of_Boundaries' : {
-    1 : "Non programme",
-    2 : "Coefficient de Chezy",
-    3 : "Coefficient de Strickler",
-    4 : "Coefficient de Manning",
-    5 : "Hauteur de rugosite de Nikuradse",
-  },
-
-'Variables_For_Graphic_Printouts' : {
-    "U" : "Velocity along X axis (m/s)", 
-    "V" : "Velocity along Y axis (m/s)", 
-    "C" : "Wave celerity (m/s)", 
-    "H" : "Water depth (m)", 
-    "S" : "Free surface elevation (m)", 
-    "B" : "Bottom elevation (m)", 
-    "F" : "Froude number", 
-    "Q" : "Scalar flowrate of fluid (m2/s)", 
-    "T1" : "Tracer 1 etc. ", 
-    "K" : "Turbulent kinetic energy in K-Epsilon model (J/kg)", 
-    "E" : "Dissipation of turbulent energy (W/kg)", 
-    "D" : "Turbulent viscosity of K-Epsilon model (m2/s)", 
-    "I" : "Flowrate along X axis (m2/s)", 
-    "J" : "Flowrate along Y axis (m2/s)", 
-    "M" : "Scalar velocity (m/s)", 
-    "X" : "Wind along X axis (m/s)", 
-    "Y" : "Wind along Y axis (m/s)", 
-    "P" : "Air pressure (Pa)", 
-    "W" : "Friction coefficient", 
-    "A" : "Drift along X (m)", 
-    "G" : "Drift along Y (m)", 
-    "L" : "Courant number", 
-    "N" : "Supplementary variable N", 
-    "O" : "Supplementary variable O", 
-    "R" : "Supplementary variable R", 
-    "Z" : "Supplementary variable Z", 
-    "MAXZ" : "Maximum elevation", 
-    "TMXZ" : "Time of maximum elevation", 
-    "MAXV" : "Maximum velocity", 
-    "TMXV" : "Time of maximum velocity", 
-    "US" : "Friction velocity" 
-  },
-'Variables_TO_Be_Printed' : {
-    "U" : "Velocity along X axis (m/s)", 
-    "V" : "Velocity along Y axis (m/s)", 
-    "C" : "Wave celerity (m/s)", 
-    "H" : "Water depth (m)", 
-    "S" : "Free surface elevation (m)", 
-    "B" : "Bottom elevation (m)", 
-    "F" : "Froude number", 
-    "Q" : "Scalar flowrate of fluid (m2/s)", 
-    "T" : "Tracer", 
-    "K" : "Turbulent kinetic energy in K-Epsilon model (J/kg)", 
-    "E" : "Dissipation of turbulent energy (W/kg)", 
-    "D" : "Turbulent viscosity of K-Epsilon model (m2/s)", 
-    "I" : "Flowrate along X axis (m2/s)", 
-    "J" : "Flowrate along Y axis (m2/s)", 
-    "M" : "Scalar velocity (m/s)", 
-    "X" : "Wind along X axis (m/s)", 
-    "Y" : "Wind along Y axis (m/s)", 
-    "P" : "Air pressure (Pa)", 
-    "W" : "Friction coefficient", 
-    "A" : "Drift along X  (m)", 
-    "G" : "Drift along Y  (m)", 
-    "L" : "Nombre de courants ", 
-    "N" : "Supplementary variable N", 
-    "O" : "Supplementary variable O", 
-    "R" : "Supplementary variable R", 
-    "Z" : "Supplementary variable Z" 
-  },
-'Initial_Conditions' : {
-    "ZERO ELEVATION" : "Zero elevation",
-    "CONSTANT ELEVATION" :  "Constant elevation", 
-    "ZERO DEPTH" : "Zero depth",
-    "CONSTANT DEPTH" : "Constant depth",
-    "SPECIAL"  : "Special" ,
-    "TPXO SATELLITE ALTIMETRY" : "TPXO satellite altimetry",
-  },
-# on regroupe pour Supg
-'Supg_Option' : {
-   0 : "No upwinding", 
-   1 : "Classical SUPG",
-   2 : "Modified SUPG"
-  }, 
-
-'Option_For_The_Treatment_Of_Tidal_Flats' : {
-    1 : "Equations solved everywhere with correction on tidal flats",
-    2 : "Dry elements frozen",
-    3 : "1 but with porosity (defina method)",
-  },
-'Initial_Guess_For_U' : {
-    0 : "Zero",
-    1 : "Previous",
-    2 : "Extrapolation", 
-  },
-'Discretizations_In_Space' : {
-    11 : "Linear",
-    12 : "Quasi-bubble",
-    13 : "Quadratic",
-  },
-'Matrix_Vector_Product' : {
-    1 : "Classic", 
-    2 : "Frontal"
+'IDENTIFICATION_METHOD' : {
+    0:"list of tests",
+    1:"gradient simple",
+    2:"conj gradient",
+    3:"Lagrange interp.",
   },
-
-'Matrix_Storage' : {
-    1 : "Classical EBE" , 
-    3 : "Edge-based storage" 
-  },
-'Option_For_Liquid_Boundaries' : {
-    1 : "Classical boundary conditions",
-    2 : "Thompson method based on characteristics",
-  },
-'Treatment_Of_The_Linear_System' : {
-    1 : "Coupled",
-    2 : "Wave equation"
-},
-'Equations' : {
-   "SAINT-VENANT EF" : "Saint-Venant EF",
-   "SAINT-VENANT VF" : "Saint-Venant VF",
-   "BOUSSINESQ" : "Boussinesq" 
+'TYPE_OF_SOURCES' : {
+    1:"Normal",
+    2:"Dirac",
   },
-
-'Velocity_ProFiles' : {
-    1 : "Constant normal profile",
-    2 : "U and V given in the conlim file",
-    3 : "Normal velocity given in ubor in the conlim file",
-    4 : "Velocity proportional to square root of depth",
-    5 : "Velocity proportional to square root of depth, variant",
-    5 : "QRT(depth) profile, variant",
-  },
-                                                                    
-'Option_For_The_Diffusion_Of_Tracers' : {
-    1 : "Div( nu grad(T) )",                                           
-    2 : "1/h Div ( h nu grad(T)" ,                                              
+'TREATMENT_OF_THE_LINEAR_SYSTEM' : {
+    1:"coupled",
+    2:"Wave equation",
   },
-
-'Option_For_The_Diffusion_Of_Velocities' : { 
-    1 : "Normal",
-    2 : "Dirac"                                            
-  },
-'Parameter_Estimation' : {
-    "Friction" : "Friction",
-    "FROTTEMENT" : "Frottement", 
-    "STEADY" : "Steady" 
-  },
-
-'Identification_Method' : {
-    0 : "List of tests",  
-    1 : "Gradient simple", 
-    2 : "Conj gradient", 
-    3 : "Lagrange interp." 
+'FINITE_VOLUME_SCHEME' : {
+    0:"Roe scheme",
+    1:"kinetic order 1",
+    2:"kinetic order 2",
+    3:"Zokagoa scheme order 1",
+    4:"Tchamen scheme order 1",
+    5:"HLLC scheme order 1",
+    6:"WAF scheme order 2",
   },
-
-'Finite_Volume_Scheme' : {
-    0 : "Roe scheme",
-    1 : "Kinetic order 1", 
-    2 : "Kinetic order 2", 
-    3 : "Zokagoa scheme order 1", 
-    4 : "Tchamen scheme order 1", 
-    5 : "HLLC scheme order 1", 
-    6 : "WAF scheme order 2"
+'OPTION_FOR_TSUNAMI_GENERATION' : {
+    0:"No Tsunami",
+    1:"Tsunami generated on the basis of the Okada model 1992",
   },
-
-'Stage-Discharge_Curves' : {
-    0 : "No one",
-    1 : "Z(Q)",
-    2 : "Q(Z)" 
+'SPATIAL_PROJECTION_TYPE' : {
+    1:"CARTESIAN, NOT GEOREFERENCED",
+    2:"MERCATOR",
+    3:"LATITUDE LONGITUDE",
   },
-
-'Treatment_Of_Negative_Depths' : {
-    0 : "No treatment",
-    1 : "Smoothing",
-    2 : "Flux control",
+'SOLVER' : {
+    3:"conjugate gradient on a normal equation",
+    1:"conjugate gradient",
+    2:"conjugate residual",
+    4:"minimum error",
+    6:"cgstab",
+    7:"gmres",
+    8:"direct",
   },
-
-'Depth_In_Friction_Terms' : {
-    1 : "Nodal",
-    2 : "Average", 
+'PRECONDITIONING' : {
+    2:"diagonal",
+    0:"no preconditioning",
+    3:"block-diagonal (4-9 matrices)",
+    5:"absolute value of diagonal",
+    7:"crout",
+    11:"gauss-seidel",
+    14:"diagonal and crout",
   },
-
-'Law_Of_Friction_On_Lateral_Boundaries' : {
-    0 : "No friction", 
-    1 : "Haaland", 
-    2 : "Chezy", 
-    3 : "Strickler", 
-    4 : "Manning", 
-    5 : "Nikuradse", 
-    6 : "Log law", 
-    7 : "Colebrook-white" 
-  },
-
-'Treatment_Of_Fluxes_AT_The_Boundaries': {
-    1 : "Priority to prescribed values",
-    2 : "Priority to fluxes",
+'DISCRETIZATIONS_IN_SPACE' : {
+    11:"linear",
+    12:"quasi-bubble",
+    13:"quadratic",
   },
-
-'Option_For_Tidal_Boundary_Conditions': {
-    0 : "No tide",
-    1 : "Real tide (recommended methodology)",
-    2 : "Astronomical tide",
-    3 : "Mean spring tide",
-    4 : "Mean tide",
-    5 : "Mean neap tide",
-    6 : "Astronomical neap tide",
-    7 : "Real tide (methodology before 2010)"
+'INITIAL_GUESS_FOR_H' : {
+    1:"previous",
+    0:"zero",
+    2:"extrapolation",
   },
-
-'Option_For_Tsunami_Generation': {
-    0 : "No Tsunami",
-    1 : "Tsunami generated on the basis of the Okada model 1992"
+'INITIAL_GUESS_FOR_U' : {
+    0:"zero",
+    1:"previous",
+    2:"extrapolation",
   },
-
-#'PHYSICAL Characteristics Of The TSUNAMI': {
-#AIDE1  :      '
-#    Physical characteristics of the chosen Tsunami model:
-# - the focal depth (HH),
-# - the fault length (L),
-# - the fault width (W)
-# - the dislocation (D),
-# - the strike direction (TH),
-# - the dip angle (DL),
-# - the slip (RD),
-# - the epicentre latitude (Y0) and
-# - the epicentre longitude (X0)
-# - the ellipse ( WxL ) area of influence    
-# },
-
-'Tidal_Data_Base': {
-    1 : "JMJ",
-    2 : "TPXO",
-    3 : "Miscellaneous (LEGOS-NEA, FES20XX, PREVIMER...)"
+'TYPE_OF_ADVECTION' : {
+    1:"CHARACTERISTICS",
+    2:"SUPG",
+    3:"CONSERVATIVE N-SCHEME",
+    4:"CONSERVATIVE N-SCHEME",
+    5:"CONSERVATIVE PSI-SCHEME",
+    13:"EDGE-BASED N-SCHEME",
+    14:"EDGE-BASED N-SCHEME",
+    15:"ERIA SCHEME",
   },
-
-'Geographic_System': {
-    0 : "Defined by user",
-    1 : "WGS84 longitude/latitude in real degrees",
-    2 : "WGS84 northern UTM",
-    3 : "WGS84 southern UTM",
-    4 : "Lambert",
-    5 : "Mercator"
+'OPTION_FOR_CHARACTERISTICS' : {
+    1:"strong",
+    2:"weak",
   },
-
-
-'Zone_Number_In_Geographic_System': {
-    1 : "Lambert 1 north",
-    2 : "Lambert 2 center",
-    3 : "Lambert 3 south",
-    4 : "Lambert 4 corsica",
-    22 : "Lambert 2 extended",
-    30 : "UTM zone, E.G."
+'SCHEME_FOR_ADVECTION_OF_VELOCITIES' : {
+    0:"NO ADVECTION",
+    1:"CHARACTERISTICS",
+    2:"EXPLICIT + SUPG",
+    3:"EXPLICIT LEO POSTMA",
+    4:"EXPLICIT + MURD SCHEME N",
+    5:"EXPLICIT + MURD SCHEME PSI",
+    13:"N-SCHEME FOR TIDAL FLATS",
+    14:"N-SCHEME FOR TIDAL FLATS",
+    15:"ERIA SCHEME",
   },
-
-
-'Law_Of_Tracers_Degradation': {
-    0 : "No degradation",
-    1 : "F(T90) law"
+'TREATMENT_OF_FLUXES_AT_THE_BOUNDARIES' : {
+    1:"Priority to prescribed values",
+    2:"Priority to fluxes",
   },
-
-'Spatial_Projection_Type': {
-    1 : "Cartesian, not georeferenced",
-    2 : "Mercator",
-    3 : "Latitude longitude"
+'PSI_SCHEME_OPTION' : {
+    1:"explicit",
+    2:"predictor-corrector",
   },
-
-'Algae_Type': {
-    1 : "Sphere",
-    2 : "Iridaea flaccida (close to ulva)",
-    3 : "Pelvetiopsis limitata",
-    4 : "Gigartina leptorhynchos"
+'OPTION_FOR_THE_DIFFUSION_OF_VELOCITIES' : {
+    1:"div( nu grad(U) )",
+    2:"1/h div ( h nu grad(U)",
   },
-
-'Option_For_Characteristics': {
-    1 : "Strong",
-    2 : "Weak"
+'MATRIX_STORAGE' : {
+    1:"classical EBE",
+    3:"Edge-based storage",
   },
-
-'Stochastic_Diffusion_Model' : {
-    0 : "No model",    
-    2 : "??"
+'TURBULENCE_MODEL' : {
+    1:"CONSTANT VISCOSITY",
+    2:"ELDER",
+    3:"K-EPSILON MODEL",
+    4:"SMAGORINSKI",
+    5:"MIXING LENGTH",
+    6:"SPALART-ALLMARAS",
   },
-
-'Number_Of_Gauss_Points_For_Weak_Characteristics' : {
-    1 : "1 point",
-    3 : "3 points",
-    6 : "6 points"
+'SOLVER_FOR_K_EPSILON_MODEL' : {
+    1:"conjugate gradient",
+    2:"conjugate residuals",
+    3:"conjugate gradient on normal equation",
+    4:"minimum error",
+    5:"conjugate gradient squared",
+    6:"conjugate gradient squared stabilised (cgstab)",
+    7:"gmres (see option for the solver for k-epsilon model)",
+    8:"direct",
   },
-
-'Type_Of_Weirs': {
-    1 : "Horizontal with same number of nodes upstream/downstream (Historical solution with bord)",
-    2 : "General (New solution with sources points)"
+'PRECONDITIONING_FOR_K_EPSILON_MODEL' : {
+    2:"diagonal",
+    0:"no preconditioning",
+    7:"crout",
+    14:"diagonal and crout",
   },
-
-'Scheme_For_Advection_Of_Velocities': {
-    1 : "Characteristics",
-    2 : "Explicit + SUPG",
-    3 : "Explicit leo postma",
-    4 : "Explicit + murd scheme N",
-    5 : "Explicit + murd scheme PSI",
-    13 : "N-scheme for tidal flats",
-    14 : "N-scheme for tidal flats"
+'TURBULENCE_REGIME_FOR_SOLID_BOUNDARIES' : {
+    1:"smooth",
+    2:"rough",
   },
-
-'Scheme_For_Advection_Of_Tracers': {
-    0 : "No advection",
-    1 : "Characteristics",
-    2 : "Explicit + SUPG",
-    3 : "Explicit leo postma",
-    4 : "Explicit + murd scheme N",
-    5 : "Explicit + murd scheme PSI",
-    13 : "Leo postma for tidal flats",
-    14 : "N-scheme for tidal flats"
+'SCHEME_FOR_ADVECTION_OF_K_EPSILON' : {
+    0:"NO ADVECTION",
+    1:"CHARACTERISTICS",
+    2:"EXPLICIT + SUPG",
+    3:"EXPLICIT LEO POSTMA",
+    4:"EXPLICIT + MURD SCHEME N",
+    5:"EXPLICIT + MURD SCHEME PSI",
+    13:"LEO POSTMA FOR TIDAL FLATS",
+    14:"N-SCHEME FOR TIDAL FLATS",
+    15:"ERIA SCHEME FOR TIDAL FLATS",
+  },
+'OPTION_FOR_THE_TREATMENT_OF_TIDAL_FLATS' : {
+    1:"EQUATIONS SOLVED EVERYWHERE WITH CORRECTION ON TIDAL FLATS",
+    2:"DRY ELEMENTS FROZEN",
+    3:"LIKE 1 BUT WITH POROSITY (DEFINA METHOD)",
+  },
+'TREATMENT_OF_NEGATIVE_DEPTHS' : {
+    1:"SMOOTHING",
+    2:"FLUX CONTROL",
+  },
+'SOLVER_FOR_DIFFUSION_OF_TRACERS' : {
+    1:"conjugate gradient",
+    2:"conjugate residual",
+    3:"conjugate gradient on a normal equation",
+    4:"minimum error",
+    5:"squared conjugate gradient",
+    6:"cgstab",
+    7:"gmres (see option for the solver for tracer diffusion)",
+    8:"direct",
+  },
+'PRECONDITIONING_FOR_DIFFUSION_OF_TRACERS' : {
+    2:"diagonal",
+    0:"no preconditioning ",
+    7:"crout",
+    14:"diagonal and crout",
+  },
+'OPTION_FOR_THE_DIFFUSION_OF_TRACERS' : {
+    1:"div( nu grad(T) )",
+    2:"1/h div ( h nu grad(T)",
+  },
+'SCHEME_FOR_ADVECTION_OF_TRACERS' : {
+    0:"NO ADVECTION",
+    1:"CHARACTERISTICS",
+    2:"EXPLICIT + SUPG",
+    3:"EXPLICIT LEO POSTMA",
+    4:"EXPLICIT + MURD SCHEME N",
+    5:"EXPLICIT + MURD SCHEME PSI",
+    13:"LEO POSTMA FOR TIDAL FLATS",
+    14:"N-SCHEME FOR TIDAL FLATS",
+    15:"ERIA SCHEME FOR TIDAL FLATS",
+  },
+'LAW_OF_TRACERS_DEGRADATION' : {
+    0:"NO DEGRADATION",
+    1:"F(T90) LAW",
+  },
+'ALGAE_TYPE' : {
+    1:"SPHERE",
+    2:"IRIDAEA FLACCIDA (CLOSE TO ULVA)",
+    3:"PELVETIOPSIS LIMITATA",
+    4:"GIGARTINA LEPTORHYNCHOS",
+  },
+'STOCHASTIC_DIFFUSION_MODEL' : {
+    0:"No model",
+    1:"brownian movement",
+  },
+'TYPE_OF_WEIRS' : {
+    1:"HORIZONTAL WITH SAME NUMBER OF NODES UPSTREAM/DOWNSTREAM",
+    2:"GENERAL",
+  },
+'TIDAL_DATA_BASE' : {
+    -1:"NO DEFAULT VALUE",
+    1:"JMJ",
+    2:"TPXO",
+    3:"MISCELLANEOUS (LEGOS-NEA, FES20XX, PREVIMER...)",
+  },
+'OPTION_FOR_TIDAL_BOUNDARY_CONDITIONS' : {
+    0:"No tide",
+    1:"Real tide (recommended methodology)",
+    2:"Astronomical tide",
+    3:"Mean spring tide",
+    4:"Mean tide",
+    5:"Mean neap tide",
+    6:"Astronomical neap tide",
+    7:"Real tide (methodology before 2010)",
+  },
+'GEOGRAPHIC_SYSTEM' : {
+    -1:"NO DEFAULT VALUE",
+    0:"DEFINED BY USER",
+    1:"WGS84 LONGITUDE/LATITUDE IN REAL DEGREES",
+    2:"WGS84 NORTHERN UTM",
+    3:"WGS84 SOUTHERN UTM",
+    4:"LAMBERT",
+    5:"MERCATOR FOR TELEMAC",
+  },
+'ZONE_NUMBER_IN_GEOGRAPHIC_SYSTEM' : {
+    -1:"NO DEFAULT VALUE",
+    1:"LAMBERT 1 NORTH",
+    2:"LAMBERT 2 CENTER",
+    3:"LAMBERT 3 SOUTH",
+    4:"LAMBERT 4 CORSICA",
+    22:"LAMBERT 2 EXTENDED",
+    30:"UTM ZONE, E.G.",
+  },
+'LANGUAGE' : {
+    1:"FRANCAIS",
+    2:"ANGLAIS",
+  },
+}
+TelemacdicoFr = {
+'VARIABLES_FOR_GRAPHIC_PRINTOUTS' : {
+    'U':"vitesse suivant l axe des x (m/s)",
+    'V':"vitesse suivant l axe des y (m/s)",
+    'C':"celerite des onde (m/s)",
+    'H':"hauteur d eau (m)",
+    'S':"cote de surface libre (m)",
+    'B':"cote du fond (m)",
+    'F':"nombre de Froude",
+    'Q':"debit scalaire du fluide (m2/s)",
+    'T1':"traceur 1, etc.",
+    'K':"energie turbulente du modele k-epsilon (J/kg)",
+    'E':"dissipation de l energie turbulente (W/kg)",
+    'D':"viscosite turbulente (m2/s)",
+    'I':"debit suivant l axe des x (m2/s)",
+    'J':"debit suivant l axe des y (m2/s)",
+    'M':"vitesse scalaire (m/s)",
+    'X':"vent suivant l axe des x (m/s)",
+    'Y':"vent suivant l axe des y (m/s)",
+    'P':"pression atmospherique (Pa)",
+    'W':"coefficient de frottement sur le fond ",
+    'A':"derive en x (m)",
+    'G':"derive en y (m)",
+    'L':"nombre de Courant ",
+    'N':"variable supplementaire N",
+    'O':"variable supplementaire O",
+    'R':"variable supplementaire R",
+    'Z':"variable supplementaire Z",
+    'MAXZ':"cote maximum",
+    'TMXZ':"temps de la cote maximum",
+    'MAXV':"vitesse maximum",
+    'TMXV':"temps de la vitesse maximum",
+    'US':"vitesse de frottement",
+    'G1':"gradient 1, etc. ",
+  },
+'VARIABLES_TO_BE_PRINTED' : {
+    'U':"vitesse suivant l axe des x (m/s)",
+    'V':"vitesse suivant l axe des y (m/s)",
+    'C':"celerite des ondes (m/s)",
+    'H':"hauteur d eau (m)",
+    'S':"cote de surface libre (m)",
+    'B':"cote du fond (m)",
+    'F':"nombre de Froude",
+    'Q':"debit scalaire du fluide (m2/s)",
+    'Tn':"traceur 1, etc.",
+    'K':"energie turbulente du modele k-epsilon (J/kg)",
+    'E':"dissipation de l energie turbulente (W/kg)",
+    'D':"viscosite turbulente du modele k-epsilon (m2/s)",
+    'I':"debit suivant l axe des x (m2/s)",
+    'J':"debit suivant l axe des y (m2/s)",
+    'M':"vitesse scalaire (m/s)",
+    'X':"vent suivant l axe des x (m/s)",
+    'Y':"vent suivant l axe des y (m/s)",
+    'P':"pression atmospherique (Pa)",
+    'W':"coefficient de frottement sur le fond",
+    'A':"derive en x (m)",
+    'G':"derive en y (m)",
+    'L':"nombre de courants ",
+    'N':"variable supplementaire N",
+    'O':"variable supplementaire O",
+    'R':"variable supplementaire R",
+    'Z':"variable supplementaire Z",
+    'Gn':"gradient 1, etc.",
+  },
+'STAGE_DISCHARGE_CURVES' : {
+    0:"non",
+    1:"Z(Q)",
+    2:"Q(Z) non programme",
+  },
+'VELOCITY_PROFILES' : {
+    1:"Profil normal constant",
+    2:"u et v dans le fichier conlim",
+    3:"Vitesse normale donnee dans ubor dans le fichier conlim",
+    4:"vitesse en racine carree de h",
+    5:"vitesse en racine carree de h, variante",
+  },
+'OPTION_FOR_LIQUID_BOUNDARIES' : {
+    1:"classique",
+    2:"methode de Thompson avec calcul de caracteristiques",
+  },
+'LAW_OF_BOTTOM_FRICTION' : {
+    0:"PAS DE FROTTEMENT",
+    1:"HAALAND",
+    2:"CHEZY",
+    3:"STRICKLER",
+    4:"MANNING",
+    5:"NIKURADSE",
+  },
+'DEPTH_IN_FRICTION_TERMS' : {
+    1:"nodale",
+    2:"moyenne",
+  },
+'LAW_OF_FRICTION_ON_LATERAL_BOUNDARIES' : {
+    0:"PAS DE FROTTEMENT",
+    1:"HAALAND",
+    2:"CHEZY",
+    3:"STRICKLER",
+    4:"MANNING",
+    5:"NIKURADSE",
+    6:"LOG LAW",
+    7:"COLEBROOK-WHITE",
+  },
+'OPTION_FOR_WIND' : {
+    1:"constant en temps et en espace",
+    2:"variable en temps donne par fichier formate",
+    3:"variable en temps et en espace donne par fichier formate",
   },
+'RAINFALL_RUNOFF_MODEL' : {
+    0:"Pas d infiltration",
+    1:"Modele CN",
+  },
+'COST_FUNCTION' : {
+    1:"Calculee sur h,u,v",
+    2:"Calculee avec c,u,v",
+  },
+'IDENTIFICATION_METHOD' : {
+    0:"plan d experience",
+    1:"gradient simple",
+    2:"gradient conj",
+    3:"interp. de Lagrange",
+  },
+'TYPE_OF_SOURCES' : {
+    1:"Normal",
+    2:"Dirac",
+  },
+'TREATMENT_OF_THE_LINEAR_SYSTEM' : {
+    1:"traitement couple",
+    2:"Equation d onde",
+  },
+'FINITE_VOLUME_SCHEME' : {
+    0:"schema de Roe",
+    1:"schéma cinetique ordre 1",
+    2:"schéma cinetique ordre 2",
+    3:"schéma Zokagoa ordre 1",
+    4:"schéma Tchamen ordre 1",
+    5:"schéma HLLC ordre 1",
+    6:"schéma WAF ordre 2",
+  },
+'OPTION_FOR_TSUNAMI_GENERATION' : {
+    0:"Pas de Tsunami",
+    1:"Generation d un Tsunami sur la base du modele de Okada 1992",
+  },
+'SPATIAL_PROJECTION_TYPE' : {
+    1:"CARTESIEN, NON GEOREFERENCE",
+    2:"MERCATOR",
+    3:"LATITUDE LONGITUDE",
+  },
+'SOLVER' : {
+    3:"equation normale",
+    1:"gradient conjuge",
+    2:"residu conjuge",
+    4:"erreur minimale",
+    6:"cgstab",
+    7:"gmres",
+    8:"direct",
+  },
+'PRECONDITIONING' : {
+    2:"diagonal",
+    0:"aucun",
+    3:"bloc-diagonal (4 ou 9 matrices)",
+    5:"valeur absolue diagonale",
+    7:"crout",
+    11:"gauss-seidel",
+    14:"diagonal et crout",
+  },
+'DISCRETIZATIONS_IN_SPACE' : {
+    11:"lineaire",
+    12:"quasi-bulle",
+    13:"quadratique",
+  },
+'INITIAL_GUESS_FOR_H' : {
+    1:"precedent",
+    0:"zero",
+    2:"extrapolation",
+  },
+'INITIAL_GUESS_FOR_U' : {
+    0:"zero",
+    1:"precedent",
+    2:"extrapolation",
+  },
+'TYPE_OF_ADVECTION' : {
+    1:"CARACTERISTIQUES",
+    2:"SUPG",
+    3:"SCHEMA N CONSERVATIF",
+    4:"SCHEMA N CONSERVATIF",
+    5:"SCHEMA PSI CONSERVATIF",
+    13:"SCHEMA N PAR SEGMENTS",
+    14:"SCHEMA N PAR SEGMENTS",
+    15:"SCHEMA ERIA",
+  },
+'OPTION_FOR_CHARACTERISTICS' : {
+    1:"fortes",
+    2:"faibles",
+  },
+'SCHEME_FOR_ADVECTION_OF_VELOCITIES' : {
+    0:"PAS DE CONVECTION",
+    1:"CARACTERISTIQUES",
+    2:"EXPLICITE + SUPG",
+    3:"EXPLICITE LEO POSTMA",
+    4:"EXPLICITE + MURD SCHEMA N",
+    5:"EXPLICITE + MURD SCHEMA PSI",
+    13:"SCHEMA N POUR BANCS DECOUVRANTS",
+    14:"SCHEMA N POUR BANCS DECOUVRANTS",
+    15:"SCHEMA ERIA",
+  },
+'TREATMENT_OF_FLUXES_AT_THE_BOUNDARIES' : {
+    1:"Priorite aux valeurs imposees",
+    2:"Priorite aux flux",
+  },
+'PSI_SCHEME_OPTION' : {
+    1:"explicite",
+    2:"predicteur-correcteur",
+  },
+'OPTION_FOR_THE_DIFFUSION_OF_VELOCITIES' : {
+    1:"div( nu grad(U) )",
+    2:"1/h div ( h nu grad(U)",
+  },
+'MATRIX_STORAGE' : {
+    1:"EBE classique",
+    3:"Stockage par segments",
+  },
+'TURBULENCE_MODEL' : {
+    1:"VISCOSITE CONSTANTE",
+    2:"ELDER",
+    3:"MODELE K-EPSILON",
+    4:"SMAGORINSKI",
+    5:"MIXING LENGTH",
+    6:"SPALART-ALLMARAS",
+  },
+'SOLVER_FOR_K_EPSILON_MODEL' : {
+    1:"gradient conjugue",
+    2:"residu conjuge",
+    3:"gradient conjugue sur equation normal",
+    4:"erreur minimale",
+    5:"gradient conjugue carre",
+    6:"gradient conjugue carre stabilise (cgstab)",
+    7:"gmres (voir aussi option du solveur pour le modele k-epsilon",
+    8:"direct",
+  },
+'PRECONDITIONING_FOR_K_EPSILON_MODEL' : {
+    2:"diagonal",
+    0:"aucun",
+    7:"crout",
+    14:"diagonal et crout",
+  },
+'TURBULENCE_REGIME_FOR_SOLID_BOUNDARIES' : {
+    1:"lisse",
+    2:"rugueux",
+  },
+'SCHEME_FOR_ADVECTION_OF_K_EPSILON' : {
+    0:"PAS DE CONVECTION",
+    1:"CARACTERISTIQUES",
+    2:"EXPLICITE + SUPG",
+    3:"EXPLICITE LEO POSTMA",
+    4:"EXPLICITE + MURD SCHEMA N",
+    5:"EXPLICITE + MURD SCHEMA PSI",
+    13:"LEO POSTMA POUR BANCS DECOUVRANTS",
+    14:"SCHEMA N POUR BANCS DECOUVRANTS",
+    15:"SCHEMA ERIA POUR BANCS DECOUVRANTS",
+  },
+'OPTION_FOR_THE_TREATMENT_OF_TIDAL_FLATS' : {
+    1:"EQUATIONS RESOLUES PARTOUT, CORRECTION SUR LES BANCS DECOUVRANTS",
+    2:"GEL DES ELEMENTS DECOUVRANTS",
+    3:"COMME 1 MAIS AVEC POROSITE (METHODE DEFINA)",
+  },
+'TREATMENT_OF_NEGATIVE_DEPTHS' : {
+    1:"LISSAGE",
+    2:"LIMITATION DES FLUX",
+  },
+'SOLVER_FOR_DIFFUSION_OF_TRACERS' : {
+    1:"gradient conjuge",
+    2:"residu conjuge",
+    3:"gradient conjuge sur equation normale",
+    4:"erreur minimale",
+    5:"gradient conjuge carre",
+    6:"cgstab",
+    7:"gmres (voir ausi option du solveur)",
+    8:"direct",
+  },
+'PRECONDITIONING_FOR_DIFFUSION_OF_TRACERS' : {
+    2:"diagonal",
+    0:"aucun",
+    7:"crout",
+    14:"diagonal et crout",
+  },
+'OPTION_FOR_THE_DIFFUSION_OF_TRACERS' : {
+    1:"div( nu grad(T) )",
+    2:"1/h div ( h nu grad(T)",
+  },
+'SCHEME_FOR_ADVECTION_OF_TRACERS' : {
+    0:"PAS DE CONVECTION",
+    1:"CARACTERISTIQUES",
+    2:"EXPLICITE + SUPG",
+    3:"EXPLICITE LEO POSTMA",
+    4:"EXPLICITE + MURD SCHEMA N",
+    5:"EXPLICITE + MURD SCHEMA PSI",
+    13:"LEO POSTMA POUR BANCS DECOUVRANTS",
+    14:"SCHEMA N POUR BANCS DECOUVRANTS",
+    15:"SCHEMA ERIA POUR BANCS DECOUVRANTS",
+  },
+'LAW_OF_TRACERS_DEGRADATION' : {
+    0:"PAS DE DEGRADATION",
+    1:"LOI EN F(T90)",
+  },
+'ALGAE_TYPE' : {
+    1:"SPHERE",
+    2:"IRIDAEA FLACCIDA (PROCHE DES ULVES)",
+    3:"PELVETIOPSIS LIMITATA",
+    4:"GIGARTINA LEPTORHYNCHOS",
+  },
+'STOCHASTIC_DIFFUSION_MODEL' : {
+    0:"Pas de modele",
+    1:"mouvement brownien",
+  },
+'TYPE_OF_WEIRS' : {
+    1:"HORIZONTAL AVEC MEME NOMBRE DE NOEUDS AMONT/AVAL",
+    2:"GENERALE",
+  },
+'TIDAL_DATA_BASE' : {
+    -1:"PAS DE VALEUR PAR DEFAUT",
+    1:"JMJ",
+    2:"TPXO",
+    3:"DIVERS (LEGOS-NEA, FES20XX, PREVIMER...)",
+  },
+'OPTION_FOR_TIDAL_BOUNDARY_CONDITIONS' : {
+    0:"Pas de maree",
+    1:"Maree reelle (methodologie recommandee)",
+    2:"Maree de vive-eau exceptionnelle (coef. presque 120)",
+    3:"Maree de vive-eau moyenne (coef. presque 95)",
+    4:"Maree moyenne (coef. presque 70)",
+    5:"Maree de morte-eau moyenne (coef. presque 45)",
+    6:"Maree de morte-eau exceptionnelle (coef. presque 20)",
+    7:"Maree reelle (methodologie d avant 2010)",
+  },
+'GEOGRAPHIC_SYSTEM' : {
+    -1:"PAS DE VALEUR PAR DEFAUT",
+    0:"DEFINI PAR L UTILISATEUR",
+    1:"WGS84 LONGITUDE/LATITUDE EN DEGRES REELS",
+    2:"WGS84 NORD UTM",
+    3:"WGS84 SUD UTM",
+    4:"LAMBERT",
+    5:"MERCATOR POUR TELEMAC",
+  },
+'ZONE_NUMBER_IN_GEOGRAPHIC_SYSTEM' : {
+    -1:"PAS DE VALEUR PAR DEFAUT",
+    1:"LAMBERT 1 NORD",
+    2:"LAMBERT 2 CENTRE",
+    3:"LAMBERT 3 SUD",
+    4:"LAMBERT 4 CORSE",
+    22:"LAMBERT 2 ETENDU",
+    30:"ZONE UTM, PAR EXEMPLE",
+  },
+'LANGUAGE' : {
+    1:"FRANCAIS",
+    2:"ANGLAIS",
+  },
+}
 
+DicoCasFrToCata = {
+  "TITRE":"TITLE",
+  "CONDITIONS INITIALES":"INITIAL_CONDITIONS",
+  "COTE INITIALE":"INITIAL_ELEVATION",
+  "HAUTEUR INITIALE":"INITIAL_DEPTH",
+  "FORMAT DU FICHIER DE DONNEES BINAIRE 1":"BINARY_DATA_FILE_1_FORMAT",
+  "FICHIER DE DONNEES BINAIRE 1":"BINARY_DATA_FILE_1",
+  "FORMAT DU FICHIER DE DONNEES BINAIRE 2":"BINARY_DATA_FILE_2_FORMAT",
+  "FICHIER DE DONNEES BINAIRE 2":"BINARY_DATA_FILE_2",
+  "FICHIER DE DONNEES FORMATE 1":"FORMATTED_DATA_FILE_1",
+  "FICHIER DE DONNEES FORMATE 2":"FORMATTED_DATA_FILE_2",
+  "FORMAT DU FICHIER DE GEOMETRIE":"GEOMETRY_FILE_FORMAT",
+  "FICHIER DE GEOMETRIE":"GEOMETRY_FILE",
+  "FICHIER FORTRAN":"FORTRAN_FILE",
+  "FICHIER DES FONDS":"BOTTOM_TOPOGRAPHY_FILE",
+  "LISSAGES DU FOND":"BOTTOM_SMOOTHINGS",
+  "FICHIER DES CONDITIONS AUX LIMITES":"BOUNDARY_CONDITIONS_FILE",
+  "VALIDATION":"VALIDATION",
+  "FORMAT DU FICHIER DE REFERENCE":"REFERENCE_FILE_FORMAT",
+  "FICHIER DE REFERENCE":"REFERENCE_FILE",
+  "PROCESSEURS PARALLELES":"PARALLEL_PROCESSORS",
+  "VERIFICATION DU MAILLAGE":"CHECKING_THE_MESH",
+  "NOMBRE MAXIMUM DE FRONTIERES":"MAXIMUM_NUMBER_OF_BOUNDARIES",
+  "NOMBRE MAXIMUM DE SOURCES":"MAXIMUM_NUMBER_OF_SOURCES",
+  "NOMBRE MAXIMUM DE TRACEURS":"MAXIMUM_NUMBER_OF_TRACERS",
+  "LONGUEUR DU VECTEUR":"VECTOR_LENGTH",
+  "SUITE DE CALCUL":"COMPUTATION_CONTINUED",
+  "FORMAT DU FICHIER DU CALCUL PRECEDENT":"PREVIOUS_COMPUTATION_FILE_FORMAT",
+  "FICHIER DU CALCUL PRECEDENT":"PREVIOUS_COMPUTATION_FILE",
+  "ENREGISTREMENT POUR SUITE DE CALCUL":"RECORD_NUMBER_FOR_RESTART",
+  "REMISE A ZERO DU TEMPS":"INITIAL_TIME_SET_TO_ZERO",
+  "NUMERO DU PREMIER PAS DE TEMPS POUR LES SORTIES GRAPHIQUES":"NUMBER_OF_FIRST_TIME_STEP_FOR_GRAPHIC_PRINTOUTS",
+  "PERIODE POUR LES SORTIES GRAPHIQUES":"GRAPHIC_PRINTOUT_PERIOD",
+  "VARIABLES POUR LES SORTIES GRAPHIQUES":"VARIABLES_FOR_GRAPHIC_PRINTOUTS",
+  "NOMBRE DE TABLEAUX PRIVES":"NUMBER_OF_PRIVATE_ARRAYS",
+  "NOMS DES VARIABLES PRIVEES":"NAMES_OF_PRIVATE_VARIABLES",
+  "FORMAT DU FICHIER DES RESULTATS":"RESULTS_FILE_FORMAT",
+  "FICHIER DES RESULTATS":"RESULTS_FILE",
+  "FORMAT DU FICHIER DE RESULTATS BINAIRE":"BINARY_RESULTS_FILE_FORMAT",
+  "FICHIER DE RESULTATS BINAIRE":"BINARY_RESULTS_FILE",
+  "FICHIER DE RESULTATS FORMATE":"FORMATTED_RESULTS_FILE",
+  "SECTIONS DE CONTROLE":"CONTROL_SECTIONS",
+  "IMPRESSION DU CUMUL DES FLUX":"PRINTING_CUMULATED_FLOWRATES",
+  "CALCUL COMPATIBLE DES FLUX":"COMPATIBLE_COMPUTATION_OF_FLUXES",
+  "FICHIER DES SECTIONS DE CONTROLE":"SECTIONS_INPUT_FILE",
+  "FICHIER DE SORTIE DES SECTIONS DE CONTROLE":"SECTIONS_OUTPUT_FILE",
+  "FLUXLINE":"FLUXLINE",
+  "FICHIER DE FLUXLINE":"FLUXLINE_INPUT_FILE",
+  "NUMERO DU PREMIER PAS DE TEMPS POUR LES SORTIES LISTING":"NUMBER_OF_FIRST_TIME_STEP_FOR_LISTING_PRINTOUTS",
+  "PERIODE DE SORTIE LISTING":"LISTING_PRINTOUT_PERIOD",
+  "PERIODE POUR LES SORTIES LISTING":"LISTING_FOR_PRINTOUT_PERIOD",
+  "SORTIE LISTING":"LISTING_PRINTOUT",
+  "VARIABLES A IMPRIMER":"VARIABLES_TO_BE_PRINTED",
+  "BILAN DE MASSE":"MASS_BALANCE",
+  "INFORMATIONS SUR LE SOLVEUR":"INFORMATION_ABOUT_SOLVER",
+  "LISTE DE POINTS":"LIST_OF_POINTS",
+  "NOMS DES POINTS":"NAMES_OF_POINTS",
+  "PERIODES D'ANALYSE DE FOURIER":"FOURIER_ANALYSIS_PERIODS",
+  "BORNES EN TEMPS POUR L'ANALYSE DE FOURIER":"TIME_RANGE_FOR_FOURIER_ANALYSIS",
+  "COTES IMPOSEES":"PRESCRIBED_ELEVATIONS",
+  "DEBITS IMPOSES":"PRESCRIBED_FLOWRATES",
+  "VITESSES IMPOSEES":"PRESCRIBED_VELOCITIES",
+  "COURBES DE TARAGE":"STAGE_DISCHARGE_CURVES",
+  "FICHIER DES COURBES DE TARAGE":"STAGE_DISCHARGE_CURVES_FILE",
+  "PROFILS DE VITESSE":"VELOCITY_PROFILES",
+  "OPTION POUR LES FRONTIERES LIQUIDES":"OPTION_FOR_LIQUID_BOUNDARIES",
+  "FICHIER DES FRONTIERES LIQUIDES":"LIQUID_BOUNDARIES_FILE",
+  "ELEMENTS MASQUES PAR L'UTILISATEUR":"ELEMENTS_MASKED_BY_USER",
+  "NOMBRE MAXIMUM DE DOMAINES DE FROTTEMENT":"MAXIMUM_NUMBER_OF_FRICTION_DOMAINS",
+  "DONNEES POUR LE FROTTEMENT":"FRICTION_DATA",
+  "FICHIER DE DONNEES POUR LE FROTTEMENT":"FRICTION_DATA_FILE",
+  "LOI DE FROTTEMENT SUR LE FOND":"LAW_OF_BOTTOM_FRICTION",
+  "COEFFICIENT DE FROTTEMENT":"FRICTION_COEFFICIENT",
+  "VALEUR PAR DEFAUT DU MANNING POUR LA LOI DE COLEBROOK-WHITE":"MANNING_DEFAULT_VALUE_FOR_COLEBROOK_WHITE_LAW",
+  "HAUTEUR DANS LES TERMES DE FROTTEMENT":"DEPTH_IN_FRICTION_TERMS",
+  "FROTTEMENT POUR LA VEGETATION NON SUBMERGEE":"NON_SUBMERGED_VEGETATION_FRICTION",
+  "DIAMETRE DES ELEMENTS DE FROTTEMENT":"DIAMETER_OF_ROUGHNESS_ELEMENTS",
+  "ESPACEMENT DES ELEMENTS DE FROTTEMENT":"SPACING_OF_ROUGHNESS_ELEMENTS",
+  "LOI DE FROTTEMENT SUR LES PAROIS LATERALES":"LAW_OF_FRICTION_ON_LATERAL_BOUNDARIES",
+  "COEFFICIENT DE RUGOSITE DES BORDS":"ROUGHNESS_COEFFICIENT_OF_BOUNDARIES",
+  "DEFINITION DE ZONES":"DEFINITION_OF_ZONES",
+  "FICHIER DES ZONES":"ZONES_FILE",
+  "VENT":"WIND",
+  "OPTION DU VENT":"OPTION_FOR_WIND",
+  "COEFFICIENT D'INFLUENCE DU VENT":"COEFFICIENT_OF_WIND_INFLUENCE",
+  "VITESSE DU VENT SUIVANT X":"WIND_VELOCITY_ALONG_X",
+  "VITESSE DU VENT SUIVANT Y":"WIND_VELOCITY_ALONG_Y",
+  "VITESSE ET DIRECTION DU VENT":"SPEED_AND_DIRECTION_OF_WIND",
+  "PROFONDEUR LIMITE POUR LE VENT":"THRESHOLD_DEPTH_FOR_WIND",
+  "PRESSION ATMOSPHERIQUE":"AIR_PRESSURE",
+  "VALEUR DE LA PRESSION ATMOSPHERIQUE":"VALUE_OF_ATMOSPHERIC_PRESSURE",
+  "PLUIE OU EVAPORATION":"RAIN_OR_EVAPORATION",
+  "PLUIE OU EVAPORATION EN MM PAR JOUR":"RAIN_OR_EVAPORATION_IN_MM_PER_DAY",
+  "MODELE PLUIE-DEBIT":"RAINFALL_RUNOFF_MODEL",
+  "CONDITIONS D'HUMIDITE PRECEDENTE":"ANTECEDENT_MOISTURE_CONDITIONS",
+  "DUREE DE LA PLUIE OU EVAPORATION EN HEURES":"DURATION_OF_RAIN_OR_EVAPORATION_IN_HOURS",
+  "FICHIER ASCII DE DONNEES ATMOSPHERIQUES":"ASCII_ATMOSPHERIC_DATA_FILE",
+  "FICHIER BINAIRE DE DONNEES ATMOSPHERIQUES":"BINARY_ATMOSPHERIC_DATA_FILE",
+  "FORMAT DU FICHIER BINAIRE DE DONNEES ATMOSPHERIQUES":"BINARY_ATMOSPHERIC_DATA_FILE_FORMAT",
+  "OPTION POUR RATIO DES PERTES INITIALES":"OPTION_FOR_INITIAL_ABSTRACTION_RATIO",
+  "COURANTS DE HOULE":"WAVE_DRIVEN_CURRENTS",
+  "NUMERO DE L'ENREGISTREMENT DANS LE FICHIER DE HOULE":"RECORD_NUMBER_IN_WAVE_FILE",
+  "AUGMENTATION DU FROTTEMENT PAR LA HOULE":"WAVE_ENHANCED_FRICTION_FACTOR",
+  "ESTIMATION DE PARAMETRE":"PARAMETER_ESTIMATION",
+  "FONCTION COUT":"COST_FUNCTION",
+  "METHODE D'IDENTIFICATION":"IDENTIFICATION_METHOD",
+  "PRECISIONS POUR L'IDENTIFICATION":"TOLERANCES_FOR_IDENTIFICATION",
+  "MAXIMUM D'ITERATIONS POUR L'IDENTIFICATION":"MAXIMUM_NUMBER_OF_ITERATIONS_FOR_IDENTIFICATION",
+  "ABSCISSES DES SOURCES":"ABSCISSAE_OF_SOURCES",
+  "ORDONNEES DES SOURCES":"ORDINATES_OF_SOURCES",
+  "DEBITS DES SOURCES":"WATER_DISCHARGE_OF_SOURCES",
+  "VITESSES DES SOURCES SELON X":"VELOCITIES_OF_THE_SOURCES_ALONG_X",
+  "VITESSES DES SOURCES SELON Y":"VELOCITIES_OF_THE_SOURCES_ALONG_Y",
+  "TYPE DES SOURCES":"TYPE_OF_SOURCES",
+  "FICHIER DES SOURCES":"SOURCES_FILE",
+  "PROCESSUS QUALITE D'EAU":"WATER_QUALITY_PROCESS",
+  "MASSE VOLUMIQUE DE L'EAU":"WATER_DENSITY",
+  "ACCELERATION DE LA PESANTEUR":"GRAVITY_ACCELERATION",
+  "STRUCTURES VERTICALES":"VERTICAL_STRUCTURES",
+  "EQUATIONS":"EQUATIONS",
+  "TRAITEMENT DU SYSTEME LINEAIRE":"TREATMENT_OF_THE_LINEAR_SYSTEM",
+  "SCHEMA EN VOLUMES FINIS":"FINITE_VOLUME_SCHEME",
+  "CORIOLIS":"CORIOLIS",
+  "COEFFICIENT DE CORIOLIS":"CORIOLIS_COEFFICIENT",
+  "OPTION POUR LA GENERATION DE TSUNAMI":"OPTION_FOR_TSUNAMI_GENERATION",
+  "PARAMETRES PHYSIQUES DU TSUNAMI":"PHYSICAL_CHARACTERISTICS_OF_THE_TSUNAMI",
+  "COURANTS SECONDAIRES":"SECONDARY_CURRENTS",
+  "COEFFICIENT DE PRODUCTION POUR COURANTS SECONDAIRES":"PRODUCTION_COEFFICIENT_FOR_SECONDARY_CURRENTS",
+  "COEFFICIENT DE DISSIPATION POUR COURANTS SECONDAIRES":"DISSIPATION_COEFFICIENT_FOR_SECONDARY_CURRENTS",
+  "DEBUGGER":"DEBUGGER",
+  "PAS DE TEMPS":"TIME_STEP",
+  "NOMBRE DE PAS DE TEMPS":"NUMBER_OF_TIME_STEPS",
+  "DUREE DU CALCUL":"DURATION",
+  "DATE DE L'ORIGINE DES TEMPS":"ORIGINAL_DATE_OF_TIME",
+  "HEURE DE L'ORIGINE DES TEMPS":"ORIGINAL_HOUR_OF_TIME",
+  "ARRET SI UN ETAT PERMANENT EST ATTEINT":"STOP_IF_A_STEADY_STATE_IS_REACHED",
+  "CRITERES D'ARRET":"STOP_CRITERIA",
+  "CONTROLE DES LIMITES":"CONTROL_OF_LIMITS",
+  "VALEURS LIMITES":"LIMIT_VALUES",
+  "PAS DE TEMPS VARIABLE":"VARIABLE_TIME_STEP",
+  "NOMBRE DE COURANT SOUHAITE":"DESIRED_COURANT_NUMBER",
+  "COORDONNEES DE L'ORIGINE":"ORIGIN_COORDINATES",
+  "COORDONNEES SPHERIQUES":"SPHERICAL_COORDINATES",
+  "LATITUDE DU POINT ORIGINE":"LATITUDE_OF_ORIGIN_POINT",
+  "LONGITUDE DU POINT ORIGINE":"LONGITUDE_OF_ORIGIN_POINT",
+  "NORD":"NORTH",
+  "TYPE DE PROJECTION SPATIALE":"SPATIAL_PROJECTION_TYPE",
+  "SOLVEUR":"SOLVER",
+  "OPTION DU SOLVEUR":"SOLVER_OPTION",
+  "PRECISION DU SOLVEUR":"SOLVER_ACCURACY",
+  "MAXIMUM D'ITERATIONS POUR LE SOLVEUR":"MAXIMUM_NUMBER_OF_ITERATIONS_FOR_SOLVER",
+  "CORRECTION DE CONTINUITE":"CONTINUITY_CORRECTION",
+  "PRECONDITIONNEMENT":"PRECONDITIONING",
+  "PRECONDITIONNEMENT C-U":"C_U_PRECONDITIONING",
+  "IMPLICITATION POUR LA HAUTEUR":"IMPLICITATION_FOR_DEPTH",
+  "IMPLICITATION POUR LA VITESSE":"IMPLICITATION_FOR_VELOCITY",
+  "DISCRETISATIONS EN ESPACE":"DISCRETIZATIONS_IN_SPACE",
+  "PROPAGATION":"PROPAGATION",
+  "ORDRE DU TIR INITIAL POUR H":"INITIAL_GUESS_FOR_H",
+  "PROPAGATION LINEARISEE":"LINEARIZED_PROPAGATION",
+  "ORDRE DU TIR INITIAL POUR U":"INITIAL_GUESS_FOR_U",
+  "PROFONDEUR MOYENNE POUR LA LINEARISATION":"MEAN_DEPTH_FOR_LINEARIZATION",
+  "CONVECTION":"ADVECTION",
+  "CONVECTION DE H":"ADVECTION_OF_H",
+  "CONVECTION DE U ET V":"ADVECTION_OF_U_AND_V",
+  "FORME DE LA CONVECTION":"TYPE_OF_ADVECTION",
+  "OPTION POUR LES CARACTERISTIQUES":"OPTION_FOR_CHARACTERISTICS",
+  "OPTION DE SUPG":"SUPG_OPTION",
+  "NOMBRE DE POINTS DE GAUSS POUR LES CARACTERISTIQUES FAIBLES":"NUMBER_OF_GAUSS_POINTS_FOR_WEAK_CHARACTERISTICS",
+  "MASS-LUMPING POUR LES CARACTERISTIQUES FAIBLES":"MASS_LUMPING_FOR_WEAK_CHARACTERISTICS",
+  "MAXIMUM D'ITERATIONS POUR LES SCHEMAS DE CONVECTION":"MAXIMUM_NUMBER_OF_ITERATIONS_FOR_ADVECTION_SCHEMES",
+  "COEFFICIENTS DE DECENTREMENT":"UPWIND_COEFFICIENTS",
+  "MASS-LUMPING SUR H":"MASS_LUMPING_ON_H",
+  "MASS-LUMPING SUR LA VITESSE":"MASS_LUMPING_ON_VELOCITY",
+  "SCHEMA POUR LA CONVECTION DES VITESSES":"SCHEME_FOR_ADVECTION_OF_VELOCITIES",
+  "OPTION DU SCHEMA POUR LA CONVECTION DES VITESSES":"SCHEME_OPTION_FOR_ADVECTION_OF_VELOCITIES",
+  "COMPATIBILITE DU GRADIENT DE SURFACE LIBRE":"FREE_SURFACE_GRADIENT_COMPATIBILITY",
+  "NOMBRE DE SOUS-ITERATIONS POUR LES NON-LINEARITES":"NUMBER_OF_SUB_ITERATIONS_FOR_NON_LINEARITIES",
+  "TRAITEMENT DES FLUX AUX FRONTIERES":"TREATMENT_OF_FLUXES_AT_THE_BOUNDARIES",
+  "NOMBRE DE CORRECTIONS DES SCHEMAS DISTRIBUTIFS":"NUMBER_OF_CORRECTIONS_OF_DISTRIBUTIVE_SCHEMES",
+  "NOMBRE DE SOUS-PAS DES SCHEMAS DISTRIBUTIFS":"NUMBER_OF_SUB_STEPS_OF_DISTRIBUTIVE_SCHEMES",
+  "OPTION DU SCHEMA PSI":"PSI_SCHEME_OPTION",
+  "DIFFUSION DES VITESSES":"DIFFUSION_OF_VELOCITY",
+  "OPTION POUR LA DIFFUSION DES VITESSES":"OPTION_FOR_THE_DIFFUSION_OF_VELOCITIES",
+  "IMPLICITATION POUR LA DIFFUSION DES VITESSES":"IMPLICITATION_FOR_DIFFUSION_OF_VELOCITY",
+  "NOMBRE DE DIFFERENTIATEURS":"NUMBER_OF_DIFFERENTIATORS",
+  "NOMS DES DIFFERENTIATEURS":"NAMES_OF_DIFFERENTIATORS",
+  "STOCKAGE DES MATRICES":"MATRIX_STORAGE",
+  "PRODUIT MATRICE-VECTEUR":"MATRIX_VECTOR_PRODUCT",
+  "COEFFICIENT D'INTEGRATION EN TEMPS DE NEWMARK":"NEWMARK_TIME_INTEGRATION_COEFFICIENT",
+  "ZERO":"ZERO",
+  "OPTION DE PROPAGATION":"PROPAGATION_OPTION",
+  "OPTION DE LA RECONSTRUCION HYDROSTATIQUE":"OPTION_OF_THE_HYDROSTATIC_RECONSTRUCTION",
+  "ETUDE DE CONVERGENCE":"CONVERGENCE_STUDY",
+  "NIVEAUX DE RAFFINEMENT":"REFINEMENT_LEVELS",
+  "COEFFICIENT DE DIFFUSION DES VITESSES":"VELOCITY_DIFFUSIVITY",
+  "MODELE DE TURBULENCE":"TURBULENCE_MODEL",
+  "PRECISION SUR SPALART-ALLMARAS":"ACCURACY_OF_SPALART_ALLMARAS",
+  "INFORMATION SUR LE MODELE SPALART-ALLMARAS":"INFORMATION_ABOUT_SPALART_ALLMARAS_MODEL",
+  "SOLVEUR POUR LE MODELE K-EPSILON":"SOLVER_FOR_K_EPSILON_MODEL",
+  "OPTION DU SOLVEUR POUR LE MODELE K-EPSILON":"OPTION_FOR_THE_SOLVER_FOR_K_EPSILON_MODEL",
+  "PRECONDITIONNEMENT POUR LE MODELE K-EPSILON":"PRECONDITIONING_FOR_K_EPSILON_MODEL",
+  "COEFFICIENTS ADIMENSIONNELS DE DISPERSION":"NON_DIMENSIONAL_DISPERSION_COEFFICIENTS",
+  "REGIME DE TURBULENCE POUR LES PAROIS":"TURBULENCE_REGIME_FOR_SOLID_BOUNDARIES",
+  "INFORMATIONS SUR LE MODELE K-EPSILON":"INFORMATION_ABOUT_K_EPSILON_MODEL",
+  "CONVECTION DE K ET EPSILON":"ADVECTION_OF_K_AND_EPSILON",
+  "SCHEMA POUR LA CONVECTION DU K-EPSILON":"SCHEME_FOR_ADVECTION_OF_K_EPSILON",
+  "OPTION DU SCHEMA POUR LA CONVECTION DU K-EPSILON":"SCHEME_OPTION_FOR_ADVECTION_OF_K_EPSILON",
+  "REDUCTION DU PAS DE TEMPS POUR LE MODELE K-EPSILON":"TIME_STEP_REDUCTION_FOR_K_EPSILON_MODEL",
+  "PRECISION SUR K":"ACCURACY_OF_K",
+  "PRECISION SUR EPSILON":"ACCURACY_OF_EPSILON",
+  "MAXIMUM D'ITERATIONS POUR K ET EPSILON":"MAXIMUM_NUMBER_OF_ITERATIONS_FOR_K_AND_EPSILON",
+  "BANCS DECOUVRANTS":"TIDAL_FLATS",
+  "OPTION DE TRAITEMENT DES BANCS DECOUVRANTS":"OPTION_FOR_THE_TREATMENT_OF_TIDAL_FLATS",
+  "TRAITEMENT DES HAUTEURS NEGATIVES":"TREATMENT_OF_NEGATIVE_DEPTHS",
+  "SEUIL POUR LES PROFONDEURS NEGATIVES":"THRESHOLD_FOR_NEGATIVE_DEPTHS",
+  "PROFONDEUR LIMITE POUR PROCEDURE DE RESSUYAGE":"THRESHOLD_DEPTH_FOR_RECEDING_PROCEDURE",
+  "CLIPPING DE H":"H_CLIPPING",
+  "VALEUR MINIMUM DE H":"MINIMUM_VALUE_OF_DEPTH",
+  "VALEURS IMPOSEES DES TRACEURS":"PRESCRIBED_TRACERS_VALUES",
+  "NOMBRE DE TRACEURS":"NUMBER_OF_TRACERS",
+  "NOMS DES TRACEURS":"NAMES_OF_TRACERS",
+  "VALEURS INITIALES DES TRACEURS":"INITIAL_VALUES_OF_TRACERS",
+  "EFFETS DE DENSITE":"DENSITY_EFFECTS",
+  "TEMPERATURE MOYENNE":"MEAN_TEMPERATURE",
+  "SOLVEUR POUR LA DIFFUSION DES TRACEURS":"SOLVER_FOR_DIFFUSION_OF_TRACERS",
+  "OPTION DU SOLVEUR POUR LA DIFFUSION DES TRACEURS":"SOLVER_OPTION_FOR_TRACERS_DIFFUSION",
+  "PRECONDITIONNEMENT POUR LA DIFFUSION DES TRACEURS":"PRECONDITIONING_FOR_DIFFUSION_OF_TRACERS",
+  "PRECISION POUR LA DIFFUSION DES TRACEURS":"ACCURACY_FOR_DIFFUSION_OF_TRACERS",
+  "MAXIMUM D'ITERATIONS POUR LA DIFFUSION DES TRACEURS":"MAXIMUM_NUMBER_OF_ITERATIONS_FOR_DIFFUSION_OF_TRACERS",
+  "VALEURS DES TRACEURS DES SOURCES":"VALUES_OF_THE_TRACERS_AT_THE_SOURCES",
+  "VALEURS DES TRACEURS DANS LA PLUIE":"VALUES_OF_TRACERS_IN_THE_RAIN",
+  "CONVECTION DES TRACEURS":"ADVECTION_OF_TRACERS",
+  "COEFFICIENT D'IMPLICITATION DES TRACEURS":"IMPLICITATION_COEFFICIENT_OF_TRACERS",
+  "DIFFUSION DES TRACEURS":"DIFFUSION_OF_TRACERS",
+  "COEFFICIENT DE DIFFUSION DES TRACEURS":"COEFFICIENT_FOR_DIFFUSION_OF_TRACERS",
+  "OPTION POUR LA DIFFUSION DES TRACEURS":"OPTION_FOR_THE_DIFFUSION_OF_TRACERS",
+  "SCHEMA POUR LA CONVECTION DES TRACEURS":"SCHEME_FOR_ADVECTION_OF_TRACERS",
+  "OPTION DU SCHEMA POUR LA CONVECTION DES TRACEURS":"SCHEME_OPTION_FOR_ADVECTION_OF_TRACERS",
+  "MASS-LUMPING SUR LES TRACEURS":"MASS_LUMPING_ON_TRACERS",
+  "LOI DE DEGRADATION DES TRACEURS":"LAW_OF_TRACERS_DEGRADATION",
+  "COEFFICIENT 1 DE LA LOI DE DEGRADATION DES TRACEURS":"COEFFICIENT_1_FOR_LAW_OF_TRACERS_DEGRADATION",
+  "NOMBRE DE FLOTTEURS":"NUMBER_OF_DROGUES",
+  "PERIODE POUR LES SORTIES DE FLOTTEURS":"PRINTOUT_PERIOD_FOR_DROGUES",
+  "FICHIER DES FLOTTEURS":"DROGUES_FILE",
+  "MODELE DE TRANSPORT DES ALGUES":"ALGAE_TRANSPORT_MODEL",
+  "TYPE DES ALGUES":"ALGAE_TYPE",
+  "DIAMETRE DES ALGUES":"DIAMETER_OF_ALGAE",
+  "MASSE VOLUMIQUE DES ALGUES":"DENSITY_OF_ALGAE",
+  "EPAISSEUR DES ALGUES":"THICKNESS_OF_ALGAE",
+  "MODELE DE NAPPES D'HYDROCARBURES":"OIL_SPILL_MODEL",
+  "FICHIER DE COMMANDES HYDROCARBURES":"OIL_SPILL_STEERING_FILE",
+  "MODELE DE DIFFUSION STOCHASTIQUE":"STOCHASTIC_DIFFUSION_MODEL",
+  "NOMBRE DE DERIVES LAGRANGIENNES":"NUMBER_OF_LAGRANGIAN_DRIFTS",
+  "NOMBRE DE SEUILS":"NUMBER_OF_WEIRS",
+  "FICHIER DE DONNEES DES SEUILS":"WEIRS_DATA_FILE",
+  "TYPE DES SEUILS":"TYPE_OF_WEIRS",
+  "NOMBRE DE SIPHONS":"NUMBER_OF_SIPHONS",
+  "FICHIER DE DONNEES DES SIPHONS":"SIPHONS_DATA_FILE",
+  "NOMBRE DE BUSES":"NUMBER_OF_CULVERTS",
+  "FICHIER DE DONNEES DES BUSES":"CULVERTS_DATA_FILE",
+  "OPTION POUR LES BUSES":"OPTION_FOR_CULVERTS",
+  "BRECHE":"BREACH",
+  "FICHIER DE DONNEES DES BRECHES":"BREACHES_DATA_FILE",
+  "BASE DE DONNEES DE MAREE":"TIDAL_DATA_BASE",
+  "FICHIER DU MODELE DE MAREE":"TIDAL_MODEL_FILE",
+  "BASE ASCII DE DONNEES DE MAREE":"ASCII_DATABASE_FOR_TIDE",
+  "BASE BINAIRE 1 DE DONNEES DE MAREE":"BINARY_DATABASE_1_FOR_TIDE",
+  "BASE BINAIRE 2 DE DONNEES DE MAREE":"BINARY_DATABASE_2_FOR_TIDE",
+  "INTERPOLATION DE COMPOSANTES MINEURES":"MINOR_CONSTITUENTS_INFERENCE",
+  "FICHIER DES CONSTANTES HARMONIQUES":"HARMONIC_CONSTANTS_FILE",
+  "FORCE GENERATRICE DE LA MAREE":"TIDE_GENERATING_FORCE",
+  "OPTION POUR LES CONDITIONS AUX LIMITES DE MAREE":"OPTION_FOR_TIDAL_BOUNDARY_CONDITIONS",
+  "SYSTEME GEOGRAPHIQUE":"GEOGRAPHIC_SYSTEM",
+  "NUMERO DE FUSEAU OU PROJECTION DANS LE SYSTEME GEOGRAPHIQUE":"ZONE_NUMBER_IN_GEOGRAPHIC_SYSTEM",
+  "COEFFICIENT DE CALAGE DU NIVEAU DE MER":"COEFFICIENT_TO_CALIBRATE_SEA_LEVEL",
+  "COEFFICIENT DE CALAGE DU MARNAGE":"COEFFICIENT_TO_CALIBRATE_TIDAL_RANGE",
+  "COEFFICIENT DE CALAGE DES VITESSES DE COURANT":"COEFFICIENT_TO_CALIBRATE_TIDAL_VELOCITIES",
+  "NUMERO LOCAL DU POINT POUR CALER LA PLEINE MER":"LOCAL_NUMBER_OF_THE_POINT_TO_CALIBRATE_HIGH_WATER",
+  "NUMERO GLOBAL DU POINT POUR CALER LA PLEINE MER":"GLOBAL_NUMBER_OF_THE_POINT_TO_CALIBRATE_HIGH_WATER",
+  "COUPLAGE AVEC":"COUPLING_WITH",
+  "NOMS DES VARIABLES CLANDESTINES":"NAMES_OF_CLANDESTINE_VARIABLES",
+  "DOSSIER DE COUPLAGE":"COUPLING_DIRECTORY",
+  "PERIODE DE SORTIE POUR DELWAQ":"DELWAQ_PRINTOUT_PERIOD",
+  "FICHIER DELWAQ DES VOLUMES":"VOLUMES_DELWAQ_FILE",
+  "FICHIER DELWAQ DES SURFACES DE FLUX":"EXCHANGE_AREAS_DELWAQ_FILE",
+  "FICHIER DELWAQ DES FLUX VERTICAUX":"VERTICAL_FLUXES_DELWAQ_FILE",
+  "FICHIER DELWAQ DE LA SALINITE":"SALINITY_DELWAQ_FILE",
+  "FICHIER DELWAQ DES SURFACES DU FOND":"BOTTOM_SURFACES_DELWAQ_FILE",
+  "FICHIER DELWAQ DES ECHANGES ENTRE NOEUDS":"EXCHANGES_BETWEEN_NODES_DELWAQ_FILE",
+  "FICHIER DELWAQ DES DISTANCES ENTRE NOEUDS":"NODES_DISTANCES_DELWAQ_FILE",
+  "FICHIER DELWAQ DE LA TEMPERATURE":"TEMPERATURE_DELWAQ_FILE",
+  "FICHIER DELWAQ DE LA VITESSE":"VELOCITY_DELWAQ_FILE",
+  "FICHIER DELWAQ DE LA DIFFUSION":"DIFFUSIVITY_DELWAQ_FILE",
+  "FICHIER DE COMMANDE DELWAQ":"DELWAQ_STEERING_FILE",
+  "SALINITE POUR DELWAQ":"SALINITY_FOR_DELWAQ",
+  "TEMPERATURE POUR DELWAQ":"TEMPERATURE_FOR_DELWAQ",
+  "VITESSE POUR DELWAQ":"VELOCITY_FOR_DELWAQ",
+  "DIFFUSION POUR DELWAQ":"DIFFUSIVITY_FOR_DELWAQ",
+  "FICHIER DES PARAMETRES DE SISYPHE":"SISYPHE_STEERING_FILE",
+  "PERIODE DE COUPLAGE POUR SISYPHE":"COUPLING_PERIOD_FOR_SISYPHE",
+  "FICHIER DES PARAMETRES DE TOMAWAC":"TOMAWAC_STEERING_FILE",
+  "PERIODE DE COUPLAGE POUR TOMAWAC":"COUPLING_PERIOD_FOR_TOMAWAC",
+  "FICHIER DES PARAMETRES DE WAQTEL":"WAQTEL_STEERING_FILE",
+  "LANGUE":"LANGUAGE",
+  "FICHIER DES PARAMETRES":"STEERING_FILE",
+  "DICTIONNAIRE":"DICTIONARY",
+  "PARTITIONNEUR":"PARTITIONING_TOOL",
+  "NUMERO DE VERSION":"RELEASE",
+  "LISTE DES FICHIERS":"LIST_OF_FILES",
+  "DESCRIPTION DES LIBRAIRIES":"DESCRIPTION_OF_LIBRARIES",
+  "EXECUTABLE PAR DEFAUT":"DEFAULT_EXECUTABLE",
+  "EXECUTABLE PARALLELE PAR DEFAUT":"DEFAULT_PARALLEL_EXECUTABLE",
+}
 
-'Scheme_For_Advection_Of_K_Epsilon': {
-    0 : "No advection",
-    1 : "Characteristics",
-    2 : "Explicit + SUPG",
-    3 : "Explicit leo postma",
-    4 : "Explicit + murd scheme-N",
-    5 : "Explicit + murd scheme-PSI",
-    13 : "Leo postma for tidal flats",
-    14 : "N-scheme for tidal flats"
-  },
+DicoCasEnToCata = {
+  'TITLE':'TITLE',
+  'INITIAL CONDITIONS':'INITIAL_CONDITIONS',
+  'INITIAL ELEVATION':'INITIAL_ELEVATION',
+  'INITIAL DEPTH':'INITIAL_DEPTH',
+  'BINARY DATA FILE 1 FORMAT':'BINARY_DATA_FILE_1_FORMAT',
+  'BINARY DATA FILE 1':'BINARY_DATA_FILE_1',
+  'BINARY DATA FILE 2 FORMAT':'BINARY_DATA_FILE_2_FORMAT',
+  'BINARY DATA FILE 2':'BINARY_DATA_FILE_2',
+  'FORMATTED DATA FILE 1':'FORMATTED_DATA_FILE_1',
+  'FORMATTED DATA FILE 2':'FORMATTED_DATA_FILE_2',
+  'GEOMETRY FILE FORMAT':'GEOMETRY_FILE_FORMAT',
+  'GEOMETRY FILE':'GEOMETRY_FILE',
+  'FORTRAN FILE':'FORTRAN_FILE',
+  'BOTTOM TOPOGRAPHY FILE':'BOTTOM_TOPOGRAPHY_FILE',
+  'BOTTOM SMOOTHINGS':'BOTTOM_SMOOTHINGS',
+  'BOUNDARY CONDITIONS FILE':'BOUNDARY_CONDITIONS_FILE',
+  'VALIDATION':'VALIDATION',
+  'REFERENCE FILE FORMAT':'REFERENCE_FILE_FORMAT',
+  'REFERENCE FILE':'REFERENCE_FILE',
+  'PARALLEL PROCESSORS':'PARALLEL_PROCESSORS',
+  'CHECKING THE MESH':'CHECKING_THE_MESH',
+  'MAXIMUM NUMBER OF BOUNDARIES':'MAXIMUM_NUMBER_OF_BOUNDARIES',
+  'MAXIMUM NUMBER OF SOURCES':'MAXIMUM_NUMBER_OF_SOURCES',
+  'MAXIMUM NUMBER OF TRACERS':'MAXIMUM_NUMBER_OF_TRACERS',
+  'VECTOR LENGTH':'VECTOR_LENGTH',
+  'COMPUTATION CONTINUED':'COMPUTATION_CONTINUED',
+  'PREVIOUS COMPUTATION FILE FORMAT':'PREVIOUS_COMPUTATION_FILE_FORMAT',
+  'PREVIOUS COMPUTATION FILE':'PREVIOUS_COMPUTATION_FILE',
+  'RECORD NUMBER FOR RESTART':'RECORD_NUMBER_FOR_RESTART',
+  'INITIAL TIME SET TO ZERO':'INITIAL_TIME_SET_TO_ZERO',
+  'NUMBER OF FIRST TIME STEP FOR GRAPHIC PRINTOUTS':'NUMBER_OF_FIRST_TIME_STEP_FOR_GRAPHIC_PRINTOUTS',
+  'GRAPHIC PRINTOUT PERIOD':'GRAPHIC_PRINTOUT_PERIOD',
+  'VARIABLES FOR GRAPHIC PRINTOUTS':'VARIABLES_FOR_GRAPHIC_PRINTOUTS',
+  'NUMBER OF PRIVATE ARRAYS':'NUMBER_OF_PRIVATE_ARRAYS',
+  'NAMES OF PRIVATE VARIABLES':'NAMES_OF_PRIVATE_VARIABLES',
+  'RESULTS FILE FORMAT':'RESULTS_FILE_FORMAT',
+  'RESULTS FILE':'RESULTS_FILE',
+  'BINARY RESULTS FILE FORMAT':'BINARY_RESULTS_FILE_FORMAT',
+  'BINARY RESULTS FILE':'BINARY_RESULTS_FILE',
+  'FORMATTED RESULTS FILE':'FORMATTED_RESULTS_FILE',
+  'CONTROL SECTIONS':'CONTROL_SECTIONS',
+  'PRINTING CUMULATED FLOWRATES':'PRINTING_CUMULATED_FLOWRATES',
+  'COMPATIBLE COMPUTATION OF FLUXES':'COMPATIBLE_COMPUTATION_OF_FLUXES',
+  'SECTIONS INPUT FILE':'SECTIONS_INPUT_FILE',
+  'SECTIONS OUTPUT FILE':'SECTIONS_OUTPUT_FILE',
+  'FLUXLINE':'FLUXLINE',
+  'FLUXLINE INPUT FILE':'FLUXLINE_INPUT_FILE',
+  'NUMBER OF FIRST TIME STEP FOR LISTING PRINTOUTS':'NUMBER_OF_FIRST_TIME_STEP_FOR_LISTING_PRINTOUTS',
+  'LISTING PRINTOUT PERIOD':'LISTING_PRINTOUT_PERIOD',
+  'LISTING FOR PRINTOUT PERIOD':'LISTING_FOR_PRINTOUT_PERIOD',
+  'LISTING PRINTOUT':'LISTING_PRINTOUT',
+  'VARIABLES TO BE PRINTED':'VARIABLES_TO_BE_PRINTED',
+  'MASS-BALANCE':'MASS_BALANCE',
+  'INFORMATION ABOUT SOLVER':'INFORMATION_ABOUT_SOLVER',
+  'LIST OF POINTS':'LIST_OF_POINTS',
+  'NAMES OF POINTS':'NAMES_OF_POINTS',
+  'FOURIER ANALYSIS PERIODS':'FOURIER_ANALYSIS_PERIODS',
+  'TIME RANGE FOR FOURIER ANALYSIS':'TIME_RANGE_FOR_FOURIER_ANALYSIS',
+  'PRESCRIBED ELEVATIONS':'PRESCRIBED_ELEVATIONS',
+  'PRESCRIBED FLOWRATES':'PRESCRIBED_FLOWRATES',
+  'PRESCRIBED VELOCITIES':'PRESCRIBED_VELOCITIES',
+  'STAGE-DISCHARGE CURVES':'STAGE_DISCHARGE_CURVES',
+  'STAGE-DISCHARGE CURVES FILE':'STAGE_DISCHARGE_CURVES_FILE',
+  'VELOCITY PROFILES':'VELOCITY_PROFILES',
+  'OPTION FOR LIQUID BOUNDARIES':'OPTION_FOR_LIQUID_BOUNDARIES',
+  'LIQUID BOUNDARIES FILE':'LIQUID_BOUNDARIES_FILE',
+  'ELEMENTS MASKED BY USER':'ELEMENTS_MASKED_BY_USER',
+  'MAXIMUM NUMBER OF FRICTION DOMAINS':'MAXIMUM_NUMBER_OF_FRICTION_DOMAINS',
+  'FRICTION DATA':'FRICTION_DATA',
+  'FRICTION DATA FILE':'FRICTION_DATA_FILE',
+  'LAW OF BOTTOM FRICTION':'LAW_OF_BOTTOM_FRICTION',
+  'FRICTION COEFFICIENT':'FRICTION_COEFFICIENT',
+  'MANNING DEFAULT VALUE FOR COLEBROOK-WHITE LAW':'MANNING_DEFAULT_VALUE_FOR_COLEBROOK_WHITE_LAW',
+  'DEPTH IN FRICTION TERMS':'DEPTH_IN_FRICTION_TERMS',
+  'NON-SUBMERGED VEGETATION FRICTION':'NON_SUBMERGED_VEGETATION_FRICTION',
+  'DIAMETER OF ROUGHNESS ELEMENTS':'DIAMETER_OF_ROUGHNESS_ELEMENTS',
+  'SPACING OF ROUGHNESS ELEMENTS':'SPACING_OF_ROUGHNESS_ELEMENTS',
+  'LAW OF FRICTION ON LATERAL BOUNDARIES':'LAW_OF_FRICTION_ON_LATERAL_BOUNDARIES',
+  'ROUGHNESS COEFFICIENT OF BOUNDARIES':'ROUGHNESS_COEFFICIENT_OF_BOUNDARIES',
+  'DEFINITION OF ZONES':'DEFINITION_OF_ZONES',
+  'ZONES FILE':'ZONES_FILE',
+  'WIND':'WIND',
+  'OPTION FOR WIND':'OPTION_FOR_WIND',
+  'COEFFICIENT OF WIND INFLUENCE':'COEFFICIENT_OF_WIND_INFLUENCE',
+  'WIND VELOCITY ALONG X':'WIND_VELOCITY_ALONG_X',
+  'WIND VELOCITY ALONG Y':'WIND_VELOCITY_ALONG_Y',
+  'SPEED AND DIRECTION OF WIND':'SPEED_AND_DIRECTION_OF_WIND',
+  'THRESHOLD DEPTH FOR WIND':'THRESHOLD_DEPTH_FOR_WIND',
+  'AIR PRESSURE':'AIR_PRESSURE',
+  'VALUE OF ATMOSPHERIC PRESSURE':'VALUE_OF_ATMOSPHERIC_PRESSURE',
+  'RAIN OR EVAPORATION':'RAIN_OR_EVAPORATION',
+  'RAIN OR EVAPORATION IN MM PER DAY':'RAIN_OR_EVAPORATION_IN_MM_PER_DAY',
+  'RAINFALL-RUNOFF MODEL':'RAINFALL_RUNOFF_MODEL',
+  'ANTECEDENT MOISTURE CONDITIONS':'ANTECEDENT_MOISTURE_CONDITIONS',
+  'DURATION OF RAIN OR EVAPORATION IN HOURS':'DURATION_OF_RAIN_OR_EVAPORATION_IN_HOURS',
+  'ASCII ATMOSPHERIC DATA FILE':'ASCII_ATMOSPHERIC_DATA_FILE',
+  'BINARY ATMOSPHERIC DATA FILE':'BINARY_ATMOSPHERIC_DATA_FILE',
+  'BINARY ATMOSPHERIC DATA FILE FORMAT':'BINARY_ATMOSPHERIC_DATA_FILE_FORMAT',
+  'OPTION FOR INITIAL ABSTRACTION RATIO':'OPTION_FOR_INITIAL_ABSTRACTION_RATIO',
+  'WAVE DRIVEN CURRENTS':'WAVE_DRIVEN_CURRENTS',
+  'RECORD NUMBER IN WAVE FILE':'RECORD_NUMBER_IN_WAVE_FILE',
+  'WAVE ENHANCED FRICTION FACTOR':'WAVE_ENHANCED_FRICTION_FACTOR',
+  'PARAMETER ESTIMATION':'PARAMETER_ESTIMATION',
+  'COST FUNCTION':'COST_FUNCTION',
+  'IDENTIFICATION METHOD':'IDENTIFICATION_METHOD',
+  'TOLERANCES FOR IDENTIFICATION':'TOLERANCES_FOR_IDENTIFICATION',
+  'MAXIMUM NUMBER OF ITERATIONS FOR IDENTIFICATION':'MAXIMUM_NUMBER_OF_ITERATIONS_FOR_IDENTIFICATION',
+  'ABSCISSAE OF SOURCES':'ABSCISSAE_OF_SOURCES',
+  'ORDINATES OF SOURCES':'ORDINATES_OF_SOURCES',
+  'WATER DISCHARGE OF SOURCES':'WATER_DISCHARGE_OF_SOURCES',
+  'VELOCITIES OF THE SOURCES ALONG X':'VELOCITIES_OF_THE_SOURCES_ALONG_X',
+  'VELOCITIES OF THE SOURCES ALONG Y':'VELOCITIES_OF_THE_SOURCES_ALONG_Y',
+  'TYPE OF SOURCES':'TYPE_OF_SOURCES',
+  'SOURCES FILE':'SOURCES_FILE',
+  'WATER QUALITY PROCESS':'WATER_QUALITY_PROCESS',
+  'WATER DENSITY':'WATER_DENSITY',
+  'GRAVITY ACCELERATION':'GRAVITY_ACCELERATION',
+  'VERTICAL STRUCTURES':'VERTICAL_STRUCTURES',
+  'EQUATIONS':'EQUATIONS',
+  'TREATMENT OF THE LINEAR SYSTEM':'TREATMENT_OF_THE_LINEAR_SYSTEM',
+  'FINITE VOLUME SCHEME':'FINITE_VOLUME_SCHEME',
+  'CORIOLIS':'CORIOLIS',
+  'CORIOLIS COEFFICIENT':'CORIOLIS_COEFFICIENT',
+  'OPTION FOR TSUNAMI GENERATION':'OPTION_FOR_TSUNAMI_GENERATION',
+  'PHYSICAL CHARACTERISTICS OF THE TSUNAMI':'PHYSICAL_CHARACTERISTICS_OF_THE_TSUNAMI',
+  'SECONDARY CURRENTS':'SECONDARY_CURRENTS',
+  'PRODUCTION COEFFICIENT FOR SECONDARY CURRENTS':'PRODUCTION_COEFFICIENT_FOR_SECONDARY_CURRENTS',
+  'DISSIPATION COEFFICIENT FOR SECONDARY CURRENTS':'DISSIPATION_COEFFICIENT_FOR_SECONDARY_CURRENTS',
+  'DEBUGGER':'DEBUGGER',
+  'TIME STEP':'TIME_STEP',
+  'NUMBER OF TIME STEPS':'NUMBER_OF_TIME_STEPS',
+  'DURATION':'DURATION',
+  'ORIGINAL DATE OF TIME':'ORIGINAL_DATE_OF_TIME',
+  'ORIGINAL HOUR OF TIME':'ORIGINAL_HOUR_OF_TIME',
+  'STOP IF A STEADY STATE IS REACHED':'STOP_IF_A_STEADY_STATE_IS_REACHED',
+  'STOP CRITERIA':'STOP_CRITERIA',
+  'CONTROL OF LIMITS':'CONTROL_OF_LIMITS',
+  'LIMIT VALUES':'LIMIT_VALUES',
+  'VARIABLE TIME-STEP':'VARIABLE_TIME_STEP',
+  'DESIRED COURANT NUMBER':'DESIRED_COURANT_NUMBER',
+  'ORIGIN COORDINATES':'ORIGIN_COORDINATES',
+  'SPHERICAL COORDINATES':'SPHERICAL_COORDINATES',
+  'LATITUDE OF ORIGIN POINT':'LATITUDE_OF_ORIGIN_POINT',
+  'LONGITUDE OF ORIGIN POINT':'LONGITUDE_OF_ORIGIN_POINT',
+  'NORTH':'NORTH',
+  'SPATIAL PROJECTION TYPE':'SPATIAL_PROJECTION_TYPE',
+  'SOLVER':'SOLVER',
+  'SOLVER OPTION':'SOLVER_OPTION',
+  'SOLVER ACCURACY':'SOLVER_ACCURACY',
+  'MAXIMUM NUMBER OF ITERATIONS FOR SOLVER':'MAXIMUM_NUMBER_OF_ITERATIONS_FOR_SOLVER',
+  'CONTINUITY CORRECTION':'CONTINUITY_CORRECTION',
+  'PRECONDITIONING':'PRECONDITIONING',
+  'C-U PRECONDITIONING':'C_U_PRECONDITIONING',
+  'IMPLICITATION FOR DEPTH':'IMPLICITATION_FOR_DEPTH',
+  'IMPLICITATION FOR VELOCITY':'IMPLICITATION_FOR_VELOCITY',
+  'DISCRETIZATIONS IN SPACE':'DISCRETIZATIONS_IN_SPACE',
+  'PROPAGATION':'PROPAGATION',
+  'INITIAL GUESS FOR H':'INITIAL_GUESS_FOR_H',
+  'LINEARIZED PROPAGATION':'LINEARIZED_PROPAGATION',
+  'INITIAL GUESS FOR U':'INITIAL_GUESS_FOR_U',
+  'MEAN DEPTH FOR LINEARIZATION':'MEAN_DEPTH_FOR_LINEARIZATION',
+  'ADVECTION':'ADVECTION',
+  'ADVECTION OF H':'ADVECTION_OF_H',
+  'ADVECTION OF U AND V':'ADVECTION_OF_U_AND_V',
+  'TYPE OF ADVECTION':'TYPE_OF_ADVECTION',
+  'OPTION FOR CHARACTERISTICS':'OPTION_FOR_CHARACTERISTICS',
+  'SUPG OPTION':'SUPG_OPTION',
+  'NUMBER OF GAUSS POINTS FOR WEAK CHARACTERISTICS':'NUMBER_OF_GAUSS_POINTS_FOR_WEAK_CHARACTERISTICS',
+  'MASS-LUMPING FOR WEAK CHARACTERISTICS':'MASS_LUMPING_FOR_WEAK_CHARACTERISTICS',
+  'MAXIMUM NUMBER OF ITERATIONS FOR ADVECTION SCHEMES':'MAXIMUM_NUMBER_OF_ITERATIONS_FOR_ADVECTION_SCHEMES',
+  'UPWIND COEFFICIENTS':'UPWIND_COEFFICIENTS',
+  'MASS-LUMPING ON H':'MASS_LUMPING_ON_H',
+  'MASS-LUMPING ON VELOCITY':'MASS_LUMPING_ON_VELOCITY',
+  'SCHEME FOR ADVECTION OF VELOCITIES':'SCHEME_FOR_ADVECTION_OF_VELOCITIES',
+  'SCHEME OPTION FOR ADVECTION OF VELOCITIES':'SCHEME_OPTION_FOR_ADVECTION_OF_VELOCITIES',
+  'FREE SURFACE GRADIENT COMPATIBILITY':'FREE_SURFACE_GRADIENT_COMPATIBILITY',
+  'NUMBER OF SUB-ITERATIONS FOR NON-LINEARITIES':'NUMBER_OF_SUB_ITERATIONS_FOR_NON_LINEARITIES',
+  'TREATMENT OF FLUXES AT THE BOUNDARIES':'TREATMENT_OF_FLUXES_AT_THE_BOUNDARIES',
+  'NUMBER OF CORRECTIONS OF DISTRIBUTIVE SCHEMES':'NUMBER_OF_CORRECTIONS_OF_DISTRIBUTIVE_SCHEMES',
+  'NUMBER OF SUB-STEPS OF DISTRIBUTIVE SCHEMES':'NUMBER_OF_SUB_STEPS_OF_DISTRIBUTIVE_SCHEMES',
+  'PSI SCHEME OPTION':'PSI_SCHEME_OPTION',
+  'DIFFUSION OF VELOCITY':'DIFFUSION_OF_VELOCITY',
+  'OPTION FOR THE DIFFUSION OF VELOCITIES':'OPTION_FOR_THE_DIFFUSION_OF_VELOCITIES',
+  'IMPLICITATION FOR DIFFUSION OF VELOCITY':'IMPLICITATION_FOR_DIFFUSION_OF_VELOCITY',
+  'NUMBER OF DIFFERENTIATORS':'NUMBER_OF_DIFFERENTIATORS',
+  'NAMES OF DIFFERENTIATORS':'NAMES_OF_DIFFERENTIATORS',
+  'MATRIX STORAGE':'MATRIX_STORAGE',
+  'MATRIX-VECTOR PRODUCT':'MATRIX_VECTOR_PRODUCT',
+  'NEWMARK TIME INTEGRATION COEFFICIENT':'NEWMARK_TIME_INTEGRATION_COEFFICIENT',
+  'ZERO':'ZERO',
+  'PROPAGATION OPTION':'PROPAGATION_OPTION',
+  'OPTION OF THE HYDROSTATIC RECONSTRUCTION':'OPTION_OF_THE_HYDROSTATIC_RECONSTRUCTION',
+  'CONVERGENCE STUDY':'CONVERGENCE_STUDY',
+  'REFINEMENT LEVELS':'REFINEMENT_LEVELS',
+  'VELOCITY DIFFUSIVITY':'VELOCITY_DIFFUSIVITY',
+  'TURBULENCE MODEL':'TURBULENCE_MODEL',
+  'ACCURACY OF SPALART-ALLMARAS':'ACCURACY_OF_SPALART_ALLMARAS',
+  'INFORMATION ABOUT SPALART-ALLMARAS MODEL':'INFORMATION_ABOUT_SPALART_ALLMARAS_MODEL',
+  'SOLVER FOR K-EPSILON MODEL':'SOLVER_FOR_K_EPSILON_MODEL',
+  'OPTION FOR THE SOLVER FOR K-EPSILON MODEL':'OPTION_FOR_THE_SOLVER_FOR_K_EPSILON_MODEL',
+  'PRECONDITIONING FOR K-EPSILON MODEL':'PRECONDITIONING_FOR_K_EPSILON_MODEL',
+  'NON-DIMENSIONAL DISPERSION COEFFICIENTS':'NON_DIMENSIONAL_DISPERSION_COEFFICIENTS',
+  'TURBULENCE REGIME FOR SOLID BOUNDARIES':'TURBULENCE_REGIME_FOR_SOLID_BOUNDARIES',
+  'INFORMATION ABOUT K-EPSILON MODEL':'INFORMATION_ABOUT_K_EPSILON_MODEL',
+  'ADVECTION OF K AND EPSILON':'ADVECTION_OF_K_AND_EPSILON',
+  'SCHEME FOR ADVECTION OF K-EPSILON':'SCHEME_FOR_ADVECTION_OF_K_EPSILON',
+  'SCHEME OPTION FOR ADVECTION OF K-EPSILON':'SCHEME_OPTION_FOR_ADVECTION_OF_K_EPSILON',
+  'TIME STEP REDUCTION FOR K-EPSILON MODEL':'TIME_STEP_REDUCTION_FOR_K_EPSILON_MODEL',
+  'ACCURACY OF K':'ACCURACY_OF_K',
+  'ACCURACY OF EPSILON':'ACCURACY_OF_EPSILON',
+  'MAXIMUM NUMBER OF ITERATIONS FOR K AND EPSILON':'MAXIMUM_NUMBER_OF_ITERATIONS_FOR_K_AND_EPSILON',
+  'TIDAL FLATS':'TIDAL_FLATS',
+  'OPTION FOR THE TREATMENT OF TIDAL FLATS':'OPTION_FOR_THE_TREATMENT_OF_TIDAL_FLATS',
+  'TREATMENT OF NEGATIVE DEPTHS':'TREATMENT_OF_NEGATIVE_DEPTHS',
+  'THRESHOLD FOR NEGATIVE DEPTHS':'THRESHOLD_FOR_NEGATIVE_DEPTHS',
+  'THRESHOLD DEPTH FOR RECEDING PROCEDURE':'THRESHOLD_DEPTH_FOR_RECEDING_PROCEDURE',
+  'H CLIPPING':'H_CLIPPING',
+  'MINIMUM VALUE OF DEPTH':'MINIMUM_VALUE_OF_DEPTH',
+  'PRESCRIBED TRACERS VALUES':'PRESCRIBED_TRACERS_VALUES',
+  'NUMBER OF TRACERS':'NUMBER_OF_TRACERS',
+  'NAMES OF TRACERS':'NAMES_OF_TRACERS',
+  'INITIAL VALUES OF TRACERS':'INITIAL_VALUES_OF_TRACERS',
+  'DENSITY EFFECTS':'DENSITY_EFFECTS',
+  'MEAN TEMPERATURE':'MEAN_TEMPERATURE',
+  'SOLVER FOR DIFFUSION OF TRACERS':'SOLVER_FOR_DIFFUSION_OF_TRACERS',
+  'SOLVER OPTION FOR TRACERS DIFFUSION':'SOLVER_OPTION_FOR_TRACERS_DIFFUSION',
+  'PRECONDITIONING FOR DIFFUSION OF TRACERS':'PRECONDITIONING_FOR_DIFFUSION_OF_TRACERS',
+  'ACCURACY FOR DIFFUSION OF TRACERS':'ACCURACY_FOR_DIFFUSION_OF_TRACERS',
+  'MAXIMUM NUMBER OF ITERATIONS FOR DIFFUSION OF TRACERS':'MAXIMUM_NUMBER_OF_ITERATIONS_FOR_DIFFUSION_OF_TRACERS',
+  'VALUES OF THE TRACERS AT THE SOURCES':'VALUES_OF_THE_TRACERS_AT_THE_SOURCES',
+  'VALUES OF TRACERS IN THE RAIN':'VALUES_OF_TRACERS_IN_THE_RAIN',
+  'ADVECTION OF TRACERS':'ADVECTION_OF_TRACERS',
+  'IMPLICITATION COEFFICIENT OF TRACERS':'IMPLICITATION_COEFFICIENT_OF_TRACERS',
+  'DIFFUSION OF TRACERS':'DIFFUSION_OF_TRACERS',
+  'COEFFICIENT FOR DIFFUSION OF TRACERS':'COEFFICIENT_FOR_DIFFUSION_OF_TRACERS',
+  'OPTION FOR THE DIFFUSION OF TRACERS':'OPTION_FOR_THE_DIFFUSION_OF_TRACERS',
+  'SCHEME FOR ADVECTION OF TRACERS':'SCHEME_FOR_ADVECTION_OF_TRACERS',
+  'SCHEME OPTION FOR ADVECTION OF TRACERS':'SCHEME_OPTION_FOR_ADVECTION_OF_TRACERS',
+  'MASS-LUMPING ON TRACERS':'MASS_LUMPING_ON_TRACERS',
+  'LAW OF TRACERS DEGRADATION':'LAW_OF_TRACERS_DEGRADATION',
+  'COEFFICIENT 1 FOR LAW OF TRACERS DEGRADATION':'COEFFICIENT_1_FOR_LAW_OF_TRACERS_DEGRADATION',
+  'NUMBER OF DROGUES':'NUMBER_OF_DROGUES',
+  'PRINTOUT PERIOD FOR DROGUES':'PRINTOUT_PERIOD_FOR_DROGUES',
+  'DROGUES FILE':'DROGUES_FILE',
+  'ALGAE TRANSPORT MODEL':'ALGAE_TRANSPORT_MODEL',
+  'ALGAE TYPE':'ALGAE_TYPE',
+  'DIAMETER OF ALGAE':'DIAMETER_OF_ALGAE',
+  'DENSITY OF ALGAE':'DENSITY_OF_ALGAE',
+  'THICKNESS OF ALGAE':'THICKNESS_OF_ALGAE',
+  'OIL SPILL MODEL':'OIL_SPILL_MODEL',
+  'OIL SPILL STEERING FILE':'OIL_SPILL_STEERING_FILE',
+  'STOCHASTIC DIFFUSION MODEL':'STOCHASTIC_DIFFUSION_MODEL',
+  'NUMBER OF LAGRANGIAN DRIFTS':'NUMBER_OF_LAGRANGIAN_DRIFTS',
+  'NUMBER OF WEIRS':'NUMBER_OF_WEIRS',
+  'WEIRS DATA FILE':'WEIRS_DATA_FILE',
+  'TYPE OF WEIRS':'TYPE_OF_WEIRS',
+  'NUMBER OF SIPHONS':'NUMBER_OF_SIPHONS',
+  'SIPHONS DATA FILE':'SIPHONS_DATA_FILE',
+  'NUMBER OF CULVERTS':'NUMBER_OF_CULVERTS',
+  'CULVERTS DATA FILE':'CULVERTS_DATA_FILE',
+  'OPTION FOR CULVERTS':'OPTION_FOR_CULVERTS',
+  'BREACH':'BREACH',
+  'BREACHES DATA FILE':'BREACHES_DATA_FILE',
+  'TIDAL DATA BASE':'TIDAL_DATA_BASE',
+  'TIDAL MODEL FILE':'TIDAL_MODEL_FILE',
+  'ASCII DATABASE FOR TIDE':'ASCII_DATABASE_FOR_TIDE',
+  'BINARY DATABASE 1 FOR TIDE':'BINARY_DATABASE_1_FOR_TIDE',
+  'BINARY DATABASE 2 FOR TIDE':'BINARY_DATABASE_2_FOR_TIDE',
+  'MINOR CONSTITUENTS INFERENCE':'MINOR_CONSTITUENTS_INFERENCE',
+  'HARMONIC CONSTANTS FILE':'HARMONIC_CONSTANTS_FILE',
+  'TIDE GENERATING FORCE':'TIDE_GENERATING_FORCE',
+  'OPTION FOR TIDAL BOUNDARY CONDITIONS':'OPTION_FOR_TIDAL_BOUNDARY_CONDITIONS',
+  'GEOGRAPHIC SYSTEM':'GEOGRAPHIC_SYSTEM',
+  'ZONE NUMBER IN GEOGRAPHIC SYSTEM':'ZONE_NUMBER_IN_GEOGRAPHIC_SYSTEM',
+  'COEFFICIENT TO CALIBRATE SEA LEVEL':'COEFFICIENT_TO_CALIBRATE_SEA_LEVEL',
+  'COEFFICIENT TO CALIBRATE TIDAL RANGE':'COEFFICIENT_TO_CALIBRATE_TIDAL_RANGE',
+  'COEFFICIENT TO CALIBRATE TIDAL VELOCITIES':'COEFFICIENT_TO_CALIBRATE_TIDAL_VELOCITIES',
+  'LOCAL NUMBER OF THE POINT TO CALIBRATE HIGH WATER':'LOCAL_NUMBER_OF_THE_POINT_TO_CALIBRATE_HIGH_WATER',
+  'GLOBAL NUMBER OF THE POINT TO CALIBRATE HIGH WATER':'GLOBAL_NUMBER_OF_THE_POINT_TO_CALIBRATE_HIGH_WATER',
+  'COUPLING WITH':'COUPLING_WITH',
+  'NAMES OF CLANDESTINE VARIABLES':'NAMES_OF_CLANDESTINE_VARIABLES',
+  'COUPLING DIRECTORY':'COUPLING_DIRECTORY',
+  'DELWAQ PRINTOUT PERIOD':'DELWAQ_PRINTOUT_PERIOD',
+  'VOLUMES DELWAQ FILE':'VOLUMES_DELWAQ_FILE',
+  'EXCHANGE AREAS DELWAQ FILE':'EXCHANGE_AREAS_DELWAQ_FILE',
+  'VERTICAL FLUXES DELWAQ FILE':'VERTICAL_FLUXES_DELWAQ_FILE',
+  'SALINITY DELWAQ FILE':'SALINITY_DELWAQ_FILE',
+  'BOTTOM SURFACES DELWAQ FILE':'BOTTOM_SURFACES_DELWAQ_FILE',
+  'EXCHANGES BETWEEN NODES DELWAQ FILE':'EXCHANGES_BETWEEN_NODES_DELWAQ_FILE',
+  'NODES DISTANCES DELWAQ FILE':'NODES_DISTANCES_DELWAQ_FILE',
+  'TEMPERATURE DELWAQ FILE':'TEMPERATURE_DELWAQ_FILE',
+  'VELOCITY DELWAQ FILE':'VELOCITY_DELWAQ_FILE',
+  'DIFFUSIVITY DELWAQ FILE':'DIFFUSIVITY_DELWAQ_FILE',
+  'DELWAQ STEERING FILE':'DELWAQ_STEERING_FILE',
+  'SALINITY FOR DELWAQ':'SALINITY_FOR_DELWAQ',
+  'TEMPERATURE FOR DELWAQ':'TEMPERATURE_FOR_DELWAQ',
+  'VELOCITY FOR DELWAQ':'VELOCITY_FOR_DELWAQ',
+  'DIFFUSIVITY FOR DELWAQ':'DIFFUSIVITY_FOR_DELWAQ',
+  'SISYPHE STEERING FILE':'SISYPHE_STEERING_FILE',
+  'COUPLING PERIOD FOR SISYPHE':'COUPLING_PERIOD_FOR_SISYPHE',
+  'TOMAWAC STEERING FILE':'TOMAWAC_STEERING_FILE',
+  'COUPLING PERIOD FOR TOMAWAC':'COUPLING_PERIOD_FOR_TOMAWAC',
+  'WAQTEL STEERING FILE':'WAQTEL_STEERING_FILE',
+  'LANGUAGE':'LANGUAGE',
+  'STEERING FILE':'STEERING_FILE',
+  'DICTIONARY':'DICTIONARY',
+  'PARTITIONING TOOL':'PARTITIONING_TOOL',
+  'RELEASE':'RELEASE',
+  'LIST OF FILES':'LIST_OF_FILES',
+  'DESCRIPTION OF LIBRARIES':'DESCRIPTION_OF_LIBRARIES',
+  'DEFAULT EXECUTABLE':'DEFAULT_EXECUTABLE',
+  'DEFAULT PARALLEL EXECUTABLE':'DEFAULT_PARALLEL_EXECUTABLE',
+}
+DicoEnumCasFrToEnumCasEn = {
+'INITIAL_CONDITIONS':{
+  "COTE NULLE":"ZERO ELEVATION",
+  "COTE CONSTANTE":"CONSTANT ELEVATION",
+  "HAUTEUR NULLE":"ZERO DEPTH",
+  "HAUTEUR CONSTANTE":"CONSTANT DEPTH",
+  "SPECIAL":"SPECIAL",
+  "PARTICULIERES":"PARTICULIERES",
+  "PARTICULAR":"PARTICULAR",
+  "ALTIMETRIE SATELLITE TPXO":"TPXO SATELLITE ALTIMETRY",
+},
 
+'BINARY_DATA_FILE_1_FORMAT':{
+  "BIN":"BIN",
+  "SERAFIN":"SERAFIN",
+  "SERAFIND":"SERAFIND",
+  "MED":"MED",
+},
 
-'Scheme_Option_For_Advection_Of_Tracers': {
-    1 : "explicit",
-    2 : "predictor-corrector",
-  },
+'BINARY_DATA_FILE_2_FORMAT':{
+  "BIN":"BIN",
+  "SERAFIN":"SERAFIN",
+  "SERAFIND":"SERAFIND",
+  "MED":"MED",
+},
 
+'GEOMETRY_FILE_FORMAT':{
+  "SERAFIN?":"SERAFIN?",
+  "SERAFIND":"SERAFIND",
+  "MED":"MED",
+},
 
-'Scheme_Option_For_Advection_Of_Velocities': {
-    1 : "Explicit",
-    2 : "Predictor-corrector",
-  },
+'REFERENCE_FILE_FORMAT':{
+  "SERAFIN?":"SERAFIN?",
+  "SERAFIND":"SERAFIND",
+  "MED":"MED",
+},
 
-'Scheme_Option_For_Advection_Of_K_Epsilon': {
-    1 : "Explicit",
-    2 : "Predictor-corrector",
-  },
+'PREVIOUS_COMPUTATION_FILE_FORMAT':{
+  "SERAFIN?":"SERAFIN?",
+  "SERAFIND":"SERAFIND",
+  "MED":"MED",
+},
 
-'Option_For_Wind': {
-    0 :  "No wind",
-    1 :  "Constant in time and space",
-    2 :  "Variable in time and (constant in space)",
-    3 :  "Variable in time and space"  
-  },
+'RESULTS_FILE_FORMAT':{
+  "SERAFIN?":"SERAFIN?",
+  "SERAFIND":"SERAFIND",
+  "MED":"MED",
+},
 
-'Newmark_Time_Integration_Coefficient' :{
-   1. :  "Euler explicit",
-   0.5 : "Order 2 in time",
-  },
+'BINARY_RESULTS_FILE_FORMAT':{
+  "BIN":"BIN",
+  "SERAFIN":"SERAFIN",
+  "SERAFIND":"SERAFIND",
+  "MED":"MED",
+},
 
- 'Option_For_The_Diffusion_Of_Velocities' : {
-  1: 'Diffusion in the form div( nu grad(U))',
-  2: 'Diffusion in the form 1/h div ( h nu grad(U))',
-  },
+'BINARY_ATMOSPHERIC_DATA_FILE_FORMAT':{
+  "SERAFIN?":"SERAFIN?",
+  "SERAFIND":"SERAFIND",
+  "MED":"MED",
+},
 
-}
-DicoEnumCasEnInverse={}
+'PARAMETER_ESTIMATION':{
+  "":"",
+  "FROTTEMENT":"FRICTION",
+  "FROTTEMENT, PERMANENT":"FROTTEMENT, STEADY",
+},
+
+'EQUATIONS':{
+  "SAINT-VENANT EF":"SAINT-VENANT FE",
+  "SAINT-VENANT VF":"SAINT-VENANT FV",
+  "BOUSSINESQ":"BOUSSINESQ",
+},
+
+'COUPLING_WITH':{
+  "SISYPHE":"SISYPHE",
+  "TOMAWAC":"TOMAWAC",
+  "DELWAQ":"DELWAQ",
+},
+
+'PARTITIONING_TOOL':{
+  "METIS":"METIS",
+  "SCOTCH":"SCOTCH",
+  "PARMETIS":"PARMETIS",
+  "PTSCOTCH":"PTSCOTCH",
+},
 
-for motClef in DicoEnumCasEn.keys():
-    d={}
-    for valTelemac in DicoEnumCasEn[motClef].keys():
-        valEficas= DicoEnumCasEn[motClef][valTelemac]
-        d[valEficas]=valTelemac
-    DicoEnumCasEnInverse[motClef]=d
-    
-#print DicoEnumCasEnInverse
+}
diff --git a/Telemac/mesScripts.py b/Telemac/mesScripts.py
deleted file mode 100644 (file)
index 15f80ed..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-def view_zone(listeparam) :
-    item=listeparam[0]
-    import visu_geom
-    visu_zone = visu_geom.VisuGeom(from_eficas=True,
-                          eficas_item=item,
-                          ligne_arbre=False)
-    visu_zone.visualize()
-
-def view_ligne_arbre(listeparam) :
-    item=listeparam[0]
-    import visu_geom
-    visu_arbre = visu_geom.VisuGeom(from_eficas=True,
-                           eficas_item=item,
-                           ligne_arbre=True)
-    visu_arbre.visualize()
-
-def import_zone(listeparam,appli) :
-    item=listeparam[0]
-    # simulation de la recuperation zone
-    #import eficasSalome
-    #eficasSalome.runEficas(code='MT',fichier='/home/I29518/test_zone.comm')
-    appli.viewmanager.handleOpen(fichier='/home/A96028/Install_EficasV1/EficasV1/MT/MT_include.comm')
-
-def import_zone2(listeparam,appli) :
-    editor=listeparam[0]
-    itemWidget=listeparam[1]
-    texte="sansnom=ZONE(NOEUDS=(_F(NOM='N1', X=0.0,), _F(NOM='N2', X=0.19,),), ELEMENTS=(_F(NOM='E1', DEBUT='N1', FIN='N2', RAFFINAGE='NON', MATERIAU=MAT_R01, SECTION_MASSE=_F(TYPE_SECTION='CONSTANTE', DIAM_EXTERN_DEBUT=0.1, DIAM_INTERN_DEBUT=0,), SECTION_RIGIDITE=_F(TYPE_SECTION='CONSTANTE', DIAM_EXTERN_DEBUT=0.1, DIAM_INTERN_DEBUT=0.0,),), _F(NOM='E2', DEBUT='N2', FIN='N3', RAFFINAGE='NON', MATERIAU=MAT_R01, SECTION_MASSE=_F(TYPE_SECTION='VARIABLE', DIAM_EXTERN_DEBUT=0.1, DIAM_INTERN_DEBUT=0, DIAM_EXTERN_SORTIE=0.2, DIAM_INTERN_SORTIE=0.0,), SECTION_RIGIDITE=_F(TYPE_SECTION='VARIABLE', DIAM_EXTERN_DEBUT=0.1, DIAM_INTERN_DEBUT=0.0, DIAM_EXTERN_SORTIE=0.2, DIAM_INTERN_SORTIE=0.0,),),),);"
-    editor.updateJdc(itemWidget,texte)
-
-def Source():
-    print "jjjjjjjjjjjjjjjjjjj"
-
-dict_commandes={
-       'GENDOF':(Source,"Source",(),False,True,"affiche un message"),
-               }
index 056b9d2e968daefd2f4ce1a50aff82cb3f330900..aa2112ab7cb61fea499934d966f1a5dba40e7ba0 100644 (file)
@@ -29,6 +29,8 @@ sys.path[:0]=[INSTALLDIR]
 
 # lang indique la langue utilisee pour les chaines d'aide : fr ou ang
 lang='ang'
+#lang='fr'
+#force_langue=True
 
 # Codage des strings qui accepte les accents (en remplacement de 'ascii')
 encoding='iso-8859-1'
@@ -37,8 +39,10 @@ docPath=repIni
 #
 catalogues=(
    #('TELEMAC','default',os.path.join(repIni,'Telemac_Cata_nouveau.py'),'TELEMAC','python'),
-   ('TELEMAC','cas',os.path.join(repIni,'Telemac_Cata.py'),'TELEMAC','TELEMAC'),
-   #('TELEMAC','comm',os.path.join(repIni,'Telemac_Cata.py'),'TELEMAC','python'),
+   #('TELEMAC','cas',os.path.join(repIni,'Telemac_Cata.py'),'TELEMAC','TELEMAC'),
+   ('2D','cas',os.path.join(repIni,'Telemac2d_Cata_auto.py'),'TELEMAC3','TELEMAC3'),
+   #('TELEMAC','cas',os.path.join(repIni,'Telemac_Cata.py'),'python','TELEMAC3'),
+   #('TELEMAC','comm',os.path.join(repIni,'Telemac_Cata.py'),'TELEMAC2','python'),
 )
 mode_nouv_commande="figee"
 affiche         = "ordre"
diff --git a/Telemac/reecrit_comm.py b/Telemac/reecrit_comm.py
deleted file mode 100755 (executable)
index 5d613f0..0000000
+++ /dev/null
@@ -1,54 +0,0 @@
-#!/usr/bin/env python
-# -*- coding: utf-8 -*-
-#            CONFIGURATION MANAGEMENT OF EDF VERSION
-# ======================================================================
-# COPYRIGHT (C) 1991 - 2002  EDF R&D                  WWW.CODE-ASTER.ORG
-# THIS PROGRAM IS FREE SOFTWARE; YOU CAN REDISTRIBUTE IT AND/OR MODIFY
-# IT UNDER THE TERMS OF THE GNU GENERAL PUBLIC LICENSE AS PUBLISHED BY
-# THE FREE SOFTWARE FOUNDATION; EITHER VERSION 2 OF THE LICENSE, OR
-# (AT YOUR OPTION) ANY LATER VERSION.
-#
-# THIS PROGRAM IS DISTRIBUTED IN THE HOPE THAT IT WILL BE USEFUL, BUT
-# WITHOUT ANY WARRANTY; WITHOUT EVEN THE IMPLIED WARRANTY OF
-# MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. SEE THE GNU
-# GENERAL PUBLIC LICENSE FOR MORE DETAILS.
-#
-# YOU SHOULD HAVE RECEIVED A COPY OF THE GNU GENERAL PUBLIC LICENSE
-# ALONG WITH THIS PROGRAM; IF NOT, WRITE TO EDF R&D CODE_ASTER,
-#    1 AVENUE DU GENERAL DE GAULLE, 92141 CLAMART CEDEX, FRANCE.
-#
-#
-# ======================================================================
-
-"""
-   Ce module sert a lancer EFICAS  configure pour Code_Aster
-"""
-# Modules Python
-import sys,os
-
-# Modules Eficas
-import prefs
-if hasattr(prefs,'encoding'):
-   # Hack pour changer le codage par defaut des strings
-   import sys
-   reload(sys)
-   sys.setdefaultencoding(prefs.encoding)
-   del sys.setdefaultencoding
-   # Fin hack
-
-
-sys.path.append(os.path.join(os.path.abspath(os.path.dirname(__file__)),'..'))
-from InterfaceQT4 import eficas_go
-
-import subprocess as sub
-p = sub.Popen(['ls','baseCasTestFrancais'],stdout=sub.PIPE,stderr=sub.PIPE)
-output, errors = p.communicate()
-for f in output.split('\n') :
-#for f in ('t2d_breach.cas',) :
-    if f == ' ' : continue
-    print "Traitement de : ", f
-    print "_______________________________________"
-    
-    # on veut ouvrir un fichier directement au lancement d'Eficas
-    eficas_go.lance_eficas_ssIhm_reecrit(code='TELEMAC',fichier = 'baseCasTestFrancais/'+f,ou = 'essaiCom',cr=True)
-    print "________________________________________"
diff --git a/Telemac/telemac2dv6p3.dico b/Telemac/telemac2dv6p3.dico
deleted file mode 100755 (executable)
index 578f26b..0000000
+++ /dev/null
@@ -1,5687 +0,0 @@
-&DYN 
-/ 
-/!RUBRIQUE 'ENTREES-SORTIES, FICHIERS' 
-/!BACKGROUND 'LightGray' 
-/!FOREGROUND 'Brown' 
-/!RUBRIQUE 'ENTREES-SORTIES, GENERALITES' 
-/!BACKGROUND 'LightGray' 
-/!FOREGROUND 'Brown' 
-/!RUBRIQUE 'ENTREES-SORTIES, GRAPHIQUES ET LISTING' 
-/!BACKGROUND 'LightGray' 
-/!FOREGROUND 'Brown' 
-/!RUBRIQUE 'PARAMETRES NUMERIQUES' 
-/!BACKGROUND 'LightGray' 
-/!FOREGROUND 'Brown' 
-/!RUBRIQUE 'PARAMETRES NUMERIQUES, SOLVEUR' 
-/!BACKGROUND 'LightGray' 
-/!FOREGROUND 'Brown' 
-/!RUBRIQUE 'PARAMETRES NUMERIQUES, VITESSE-CELERITE-HAUTEUR' 
-/!BACKGROUND 'LightGray' 
-/!FOREGROUND 'Brown' 
-/!RUBRIQUE 'PARAMETRES NUMERIQUES, MODELE K-EPSILON' 
-/!BACKGROUND 'LightGray' 
-/!FOREGROUND 'Brown' 
-/!RUBRIQUE 'EQUATIONS' 
-/!BACKGROUND 'LightGray' 
-/!FOREGROUND 'Brown' 
-/!RUBRIQUE 'EQUATIONS, CONDITIONS LIMITES' 
-/!BACKGROUND 'LightGray' 
-/!FOREGROUND 'Brown' 
-/!RUBRIQUE 'EQUATIONS, CONDITIONS INITIALES' 
-/!BACKGROUND 'LightGray' 
-/!FOREGROUND 'Brown' 
-/!RUBRIQUE 'EQUATIONS, SOURCES' 
-/!BACKGROUND 'LightGray' 
-/!FOREGROUND 'Brown' 
-/!RUBRIQUE 'CONSTANTES PHYSIQUES' 
-/!BACKGROUND 'LightGray' 
-/!FOREGROUND 'Brown' 
-/---SYSTEME-TELEMAC-V6P3------------------------------TELEMAC-2D------------- 
-/ 
-/Signification des differents mode d'acquisition/restitution 
-/des fichiers vis a vis du parallelisme : 
-/ 
-/  - "SCAL" :   
-/     Meme fichier pour tous les processeurs lu par tous.
-/     Seule la version du maitre est consideree apres calcul.
-/ 
-/  - "SELAFIN" :        
-/     Le fichier est "decompose/regroupe en sous-domaines" avec les outils 
-/      "partel/gretel" (dans le mode par defaut "parallelisme automatique")     
-/     Chaque processeur dispose d'un fichier prive. 
-/  - "SELAFIN-GEOM" : 
-/     idem SELAFIN mais pour le fichier de geometrie ='FICHIER DE GEOMETRIE' 
-/      (usage par le regroupeur GRETEL en parallelisme) 
-/ 
-/  - "PARAL" :  
-/     Le fichier est duplique avant calcul ("LIT") pour chaque processeur 
-/      (avec une extension numerique), sauf s'il pre-existe avec cette   
-/      extension numerique : il est alors utilise (copie).      
-/     En mode "non automatique" : les fichiers lus doivent pre-exister avec  
-/      leur extension numerique.        
-/     S'il s'agit d'un fichier resultat ("ECR"), le fichier est restitue 
-/      avec son extension numerique (fichier specifique a chaque processeur).   
-/ 
-/  - "CONLIM" :         
-/     Cette valeur designe le fichier des "conditions aux limites"      
-/     (utilise par le decoupeur "partel"). 
-/ 
-/  - "SECTION" :  
-/     Sections input file, to be treated in parallel by partel in  
-/     a similar way as CONLIM !jaj #### 
-/ 
-/---SYSTEME-TELEMAC-V6P3------------------------DeltaCAD-/-Septembre-2003---- 
-NOM = 'FICHIER DE GEOMETRIE' 
-NOM1 = 'GEOMETRY FILE' 
-TYPE = CARACTERE 
-INDEX = 6 
-MNEMO = 'T2D_FILES(T2DGEO)%NAME' 
-TAILLE = 0 
-SUBMIT = 'T2DGEO-READ-01;T2DGEO;OBLIG;BIN;LIT;SELAFIN-GEOM' 
-/DEFAUT = ' ' 
-/DEFAUT1 = ' ' 
-RUBRIQUE = 'ENTREES-SORTIES, FICHIERS';'NOMS' 
-RUBRIQUE1 = 'INPUT-OUTPUT, FILES';'NAMES' 
-COMPORT = 
-'Foreground ("ENTREES-SORTIES, FICHIERS*NOMS") 
-IS VALEUR (red)' 
-NIVEAU = 1 
-APPARENCE = 'LISTE IS FICHIER' 
-AIDE = 'Nom du fichier contenant le maillage du calcul a realiser.' 
-AIDE1 = 'Name of the file containing the mesh. This file may also 
-contain the topography and the friction coefficients.' 
-NOM = 'CONTROLE DES LIMITES' 
-NOM1 = 'CONTROL OF LIMITS' 
-TYPE = LOGIQUE 
-INDEX = 23 
-MNEMO = 'VERLIM' 
-TAILLE = 0 
-DEFAUT = NON 
-DEFAUT1 =  NO 
-RUBRIQUE = 'ENTREES-SORTIES, GENERALITES';'CONTROLE' 
-RUBRIQUE1 = 'INPUT-OUTPUT, INFORMATION';'CONTROL' 
-COMPORT = 'Affichage ("VALEURS LIMITES") IS VALEUR ()' 
-NIVEAU = 2 
-AIDE = 'UTILISER AVEC LE MOT-CLE : VALEURS LIMITES, LE PROGRAMME 
-S''ARRETE SI LES LIMITES SUR U,V,H OU T SONT DEPASSEES' 
-AIDE1 = 'USE WITH THE KEY-WORD : LIMIT VALUES, THE PROGRAM IS STOPPED IF 
-THE LIMITS ON U,V,H, OR T ARE TRESPASSED' 
-NOM = 'VALEURS LIMITES' 
-NOM1 = 'LIMIT VALUES' 
-TYPE = REEL 
-INDEX = 15 
-MNEMO = '' 
-TAILLE = 8 
-DEFAUT = -1000.;9000.;-1000.;1000.;-1000.;1000.;-1000.;1000. 
-DEFAUT1 = -1000.;9000.;-1000.;1000.;-1000.;1000.;-1000.;1000. 
-RUBRIQUE = 'ENTREES-SORTIES, GENERALITES';'CONTROLE' 
-RUBRIQUE1 = 'INPUT-OUTPUT, INFORMATION';'CONTROL' 
-COMPORT = 
-'Foreground ("ENTREES-SORTIES, GENERALITES*CONTROLE") 
-IS VALEUR (red)' 
-NIVEAU = 2 
-AIDE = 'Utilise avec le mot-cle CONTROLE DES LIMITES 
-        valeurs mini et maxi acceptables pour H,U,V et T dans l''ordre 
-        suivant : min(H) max(H) min(U) max(U) 
-                  min(V) max(V) min(T) max(T)' 
-AIDE1 = 'To be used with the key-word CONTROL OF LIMITS 
-        min and max acceptable values for H,U,V et T in the following 
-        order   : min(H) max(H) min(U) max(U) 
-                  min(V) max(V) min(T) max(T)' 
-NOM = 'PERIODE POUR LES SORTIES GRAPHIQUES' 
-NOM1 = 'GRAPHIC PRINTOUT PERIOD' 
-TYPE = ENTIER 
-INDEX = 1 
-MNEMO = 'LEOPRD' 
-TAILLE = 0 
-DEFAUT = 1 
-DEFAUT1 = 1 
-RUBRIQUE = 'ENTREES-SORTIES, GRAPHIQUES ET LISTING' 
-RUBRIQUE1 = 'INPUT-OUTPUT, GRAPHICS AND LISTING' 
-COMPORT = 
-'Foreground ("ENTREES-SORTIES, GRAPHIQUES ET LISTING") 
-IS VALEUR (red)' 
-NIVEAU = 1 
-AIDE = 'Determine la periode en nombre de pas de temps d''impression 
-des ''VARIABLES POUR LES SORTIES GRAPHIQUES'' (voir ce mot-cle) 
-dans le FICHIER DES RESULTATS.' 
-AIDE1 = 'Determines, in number of time steps, the printout period for 
-the VARIABLES FOR GRAPHIC PRINTOUTS in the RESULTS FILE.' 
-NOM = 'PERIODE DE SORTIE LISTING' 
-NOM1 = 'LISTING PRINTOUT PERIOD' 
-TYPE = ENTIER 
-INDEX = 2 
-MNEMO = 'LISPRD' 
-TAILLE = 0 
-DEFAUT = 1 
-DEFAUT1 = 1 
-RUBRIQUE = 'ENTREES-SORTIES, GRAPHIQUES ET LISTING' 
-RUBRIQUE1 = 'INPUT-OUTPUT, GRAPHICS AND LISTING' 
-NIVEAU = 1 
-AIDE = 'Determine la periode en nombre de pas de temps d''impression 
-des ''VARIABLES A IMPRIMER'' (voir ce mot-cle) Pour la mise au point, 
-il faut savoir que la sortie des resultats est effectuee 
-systematiquement sur le fichier de retour d''execution du code 
-(actuellement accessible par le menu 3.f de SPF sur IBM, et dans 
-le fichier !CAS.SORTIE sur station de travail)' 
-AIDE1 = 'Determines, in number of time steps, the printout period of 
-the VARIABLES TO BE PRINTED 
-The results are systematically printed out on the listing file 
-(file CAS.SORTIE at the workstation).' 
-NOM = 'NOMBRE DE PAS DE TEMPS' 
-NOM1 = 'NUMBER OF TIME STEPS' 
-TYPE = ENTIER 
-INDEX = 3 
-MNEMO = 'NIT' 
-TAILLE = 0 
-DEFAUT = 1 
-DEFAUT1 = 1 
-RUBRIQUE = 'PARAMETRES NUMERIQUES';'DUREE DU CALCUL' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS';'DURATION' 
-COMPORT = 
-'Foreground ("PARAMETRES NUMERIQUES*DUREE DU CALCUL") 
-IS VALEUR (blue)' 
-NIVEAU = 1 
-AIDE = 'Definit le nombre de pas de temps effectues lors de 
-l''execution du code.' 
-AIDE1 = 'Specifies the number of time steps performed when running 
-the code.' 
-NOM = 'ENTIER LIBRE 1' 
-NOM1 = 'FREE INTEGER 1' 
-TYPE = ENTIER 
-INDEX = 4 
-MNEMO = 'ICONV' 
-TAILLE = 0 
-DEFAUT = 1 
-DEFAUT1 = 1 
-RUBRIQUE = 'PARAMETRES NUMERIQUES';'GENERAL' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS';'GENERAL' 
-NIVEAU = -13 
-AIDE = 'Non active pour l''instant' 
-AIDE1 = 'So far not implemented' 
-NOM = 'FORME DE LA CONVECTION' 
-NOM1 = 'TYPE OF ADVECTION' 
-TYPE = ENTIER 
-INDEX = 5 
-MNEMO = 'ICONVF' 
-TAILLE = 4 
-DEFAUT = 1;5;1;1 
-DEFAUT1 = 1;5;1;1 
-CHOIX = 
-'1="CARACTERISTIQUES"'; 
-'2="SUPG"'; 
-'3="SCHEMA N CONSERVATIF"' ; 
-'4="SCHEMA N CONSERVATIF"' ; 
-'5="SCHEMA PSI CONSERVATIF"'; 
-'6="SCHEMA PSI NON CONSERVATIF"'; 
-'7="SCHEMA N IMPLICITE NON CONSERVATIF"'; 
-'13="SCHEMA N PAR SEGMENTS"'; 
-'14="SCHEMA N PAR SEGMENTS"' 
-CHOIX1 = 
-'1="CHARACTERISTICS"'; 
-'2="SUPG"'; 
-'3="CONSERVATIVE N-SCHEME"'; 
-'4="CONSERVATIVE N-SCHEME"'; 
-'5="CONSERVATIVE PSI-SCHEME"'; 
-'6="NON CONSERVATIVE PSI SCHEME"'; 
-'7="IMPLICIT NON CONSERVATIVE N SCHEME"'; 
-'13="EDGE-BASED N-SCHEME"'; 
-'14="EDGE-BASED N-SCHEME"' 
-RUBRIQUE = 'PARAMETRES NUMERIQUES';'FORME DE LA CONVECTION' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS';'TYPE OF ADVECTION' 
-COMPORT = 
-'Foreground ("PARAMETRES NUMERIQUES*FORME DE LA CONVECTION") 
-IS VALEUR (blue)' 
-NIVEAU = 1 
-AIDE = 'Choix du schema de convection pour chaque variable 
-ces coefficients sont respectivement appliques a 
-1) U et V     2) H     3) T     4) K ET EPSILON 
-1 : caracteristiques sur h 
-2 : SUPG 
-3 : Schema N conservatif 
-4 : Schema N conservatif    
-5 : Schema PSI conservatif 
-6 : Schema PSI non conservatif
-7 : schema N implicite non conservatif
-13 : Schema N par segment
-14 : Schema N par segment
-Second integer must be 5' 
-AIDE1 = 'Choice of advection schemes for every variable 
-These coefficients are applied respectively to 
-1) U et V     2) H     3) T     4) K and EPSILON 
-1: characteristics 
-2: SUPG 
-3: Conservative N-scheme  
-4: Conservative N-scheme  
-5: Conservative PSI-scheme  
-6 : Non conservative PSI scheme
-7 : Implicit non conservative N scheme
-13 : Edge-based N-scheme 
-14 : Edge-based N-scheme 
-Second integer must be 5'
-NOM = 'PRECONDITIONNEMENT' 
-NOM1 = 'PRECONDITIONING' 
-TYPE = ENTIER 
-INDEX = 14 
-MNEMO = 'IPRECO' 
-TAILLE = 0 
-DEFAUT = 2 
-DEFAUT1 = 2 
-CHOIX = '2="diagonal"'; '0="aucun"'; 
-'3="diagonal condensee"'; '7="crout"';'11="gauss-seidel"'; 
-'14="diagonal et crout"'; '21="diagonal condense et crout"' 
-CHOIX1 = '2="diagonal"'; '0="no preconditioning"'; 
-'3="diagonal condensee"'; '7="crout"';'11="gauss-seidel"'; 
-'14="diagonal and crout"'; '21="diagonal condensed and crout"' 
-RUBRIQUE = 'PARAMETRES NUMERIQUES';'GENERAL' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS';'GENERAL' 
-COMPORT = 
-'Foreground ("PARAMETRES NUMERIQUES*GENERAL") 
-IS VALEUR (blue)' 
-NIVEAU = 2 
-AIDE = 'Permet de preconditionner le systeme de l''etape de propagation 
-afin d''accelerer la convergence lors de sa resolution. 
- - 0 : pas de preconditionnement; 
- - 2 : preconditionnement diagonal. 
- - 3 : preconditionnement diagonal-bloc 
- - 7 : preconditionnement de Crout par element ou segment 
- -11 : preconditionnement de Gauss-Seidel par element ou segment 
-Certains preconditionnements sont cumulables 
-(les diagonaux 2 ou 3 avec les autres) 
-Pour cette raison on ne retient que les nombres premiers pour 
-designer les preconditionnements. Si l''on souhaite en cumuler 
-plusieurs on formera le produit des options correspondantes.' 
-AIDE1 = 'Choice of the preconditioning in the propagation step linear 
-system that the convergence is speeded up when it is being solved. 
- 0: no preconditioning 
- 2: diagonal preconditioning 
- 3: diagonal preconditioning with the condensed matrix 
- 7: Crout''s preconditioning per element or segment 
-11: Gauss-Seidel''s preconditioning per element or segment 
-Some operations (either 2 or 3 diagonal preconditioning) can be 
-performed concurrently with the others. 
-Only prime numbers are therefore kept to denote the preconditioning 
-operations. When several of them are to be performed concurrently, 
-the product of relevant options shall be made.' 
-NOM = 'MAXIMUM D''ITERATIONS POUR LE SOLVEUR' 
-NOM1 = 'MAXIMUM NUMBER OF ITERATIONS FOR SOLVER' 
-TYPE = ENTIER 
-INDEX = 10 
-MNEMO = 'NITMAX' 
-TAILLE = 0 
-DEFAUT = 100 
-DEFAUT1 = 100 
-RUBRIQUE = 'PARAMETRES NUMERIQUES, SOLVEUR' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS, SOLVER' 
-COMPORT = 
-'Foreground ("PARAMETRES NUMERIQUES, SOLVEUR") 
-IS VALEUR (blue)' 
-NIVEAU = 2 
-AIDE = 'Les algorithmes utilises pour la resolution de l''etape de 
-propagation etant iteratifs; il est necessaire de limiter le nombre 
-d''iterations autorisees. 
-Remarque : un maximum de 40 iterations par pas de temps semble 
-raisonnable.' 
-AIDE1 = 'Since the algorithms used for solving the propagation step are 
-iterative, the allowed number of iterations should be limited. 
-NOTE: a maximum number of 40 iterations per time step seems to be 
-reasonable.' 
-NOM = 'ORDRE DU TIR INITIAL POUR H' 
-NOM1 = 'INITIAL GUESS FOR H' 
-TYPE = ENTIER 
-INDEX = 15 
-MNEMO = 'IORDRH' 
-TAILLE = 0 
-DEFAUT = 1 
-DEFAUT1 = 1 
-CHOIX = '1=precedent'; 
-'0=zero'; 
-'2=extrapolation' 
-CHOIX1 = '1=previous'; 
-'0=zero'; 
-'2=extrapolation' 
-RUBRIQUE = 'PARAMETRES NUMERIQUES, VITESSE-CELERITE-HAUTEUR' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS, VELOCITY-CELERITY-HIGHT' 
-COMPORT = 
-'Foreground ("PARAMETRES NUMERIQUES, VITESSE-CELERITE-HAUTEUR") 
-IS VALEUR (blue)' 
-NIVEAU = 2 
-AIDE = 'Tir initial du solveur de l''etape de propagation. 
-Offre la possibilite de modifier la valeur i
-nitiale de DH, 
-accroissement de H, a chaque iteration, 
-dans l''etape de propagation en utilisant les valeurs 
-finales de cette variable aux pas de temps precedents. Ceci peut 
-permettre d''accelerer la vitesse de convergence lors de la resolution 
-du systeme. Trois possibilites sont offertes : 
- 0 : DH = 0. 
- 1 : DH = DHn (valeur finale de DH au pas de temps precedent), 
- 2 : DH = 2DHn - DHn-1 (extrapolation).' 
-AIDE1 = 'Initial guess for the solver in the propagation step. 
-Makes it possible to modify the initial value of C, upon each 
-iteration in the propagation step, by using the ultimate values this 
-variable had in the earlier time steps. Thus, the convergence can be 
-speeded up when the system is being solved. 3 options are available: 
- 0: DH = 0 
- 1: DH = DHn (ultimate DH value in the next previous time step) 
- 2: DH = 2DHn - DHn-1 (extrapolation)' 
-NOM = 'MAXIMUM D''ITERATIONS POUR K ET EPSILON' 
-NOM1 = 'MAXIMUM NUMBER OF ITERATIONS FOR K AND EPSILON' 
-TYPE = ENTIER 
-INDEX = 13 
-MNEMO = 'NKEMAX' 
-TAILLE = 0 
-DEFAUT = 50 
-DEFAUT1 = 50 
-RUBRIQUE = 'PARAMETRES NUMERIQUES, MODELE K-EPSILON' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS, K-EPSILON MODEL' 
-COMPORT = 
-'Foreground ("PARAMETRES NUMERIQUES, MODELE K-EPSILON") 
-IS VALEUR (blue)' 
-NIVEAU = 2 
-AIDE = 'Fixe le nombre maximum d''iterations accepte lors de la 
-resolution du systeme diffusion-termes sources du modele k-epsilon.' 
-AIDE1 = 'Sets the maximum number of iterations that are acceptable when 
-solving the diffusion source-terms step of the k-epsilon model.' 
-NOM = 'LOI DE FROTTEMENT SUR LE FOND' 
-NOM1 = 'LAW OF BOTTOM FRICTION' 
-TYPE = ENTIER 
-INDEX = 8 
-MNEMO = 'KFROT' 
-TAILLE = 0 
-DEFAUT = 0 
-DEFAUT1 = 0 
-CHOIX = '0="PAS DE FROTTEMENT"'; 
-'1="HAALAND"'; 
-'2="CHEZY"'; 
-'3="STRICKLER"'; 
-'4="MANNING"'; 
-'5="NIKURADSE"' 
-CHOIX1 = '0="NO FRICTION"'; 
-'1="HAALAND"'; 
-'2="CHEZY"'; 
-'3="STRICKLER"'; 
-'4="MANNING"'; 
-'5="NIKURADSE"' 
-RUBRIQUE = 'EQUATIONS';'FROTTEMENT ET LISSAGE' 
-RUBRIQUE1 = 'EQUATIONS';'FRICTION AND SMOOTHINGS' 
-COMPORT = 
-'Foreground ("EQUATIONS*FROTTEMENT ET LISSAGE") 
-IS VALEUR (brown)' 
-NIVEAU = 1 
-AIDE = 'selectionne le type de formulation utilisee pour le calcul 
-du frottement sur le fond. 
-Les lois possibles sont les suivantes (cf. 
-Note de principe) : - 0 : pas de frottement sur le fond; 
-1 : formule de Haaland 
-2 : formule de Chezy 
-3 : formule de STRICKLER 
-4 : formule de MANNING 
-5 : formule de NIKURADSE ' 
-AIDE1 = 'Selects the type of formulation used for the bottom friction. 
-The possible laws are as follows (refer to the Principle note): 
-0: no friction against bottom, 
-1: Haaland''s formula 
-2: CHEZY''s formula 
-3: STRICKLER''s formula 
-4: MANNING''s formula 
-5: NIKURADSE''s formula ' 
-NOM = 'MAXIMUM D''ITERATIONS POUR LA DIFFUSION DES TRACEURS' 
-NOM1 = 'MAXIMUM NUMBER OF ITERATIONS FOR DIFFUSION OF TRACERS' 
-TYPE = ENTIER 
-INDEX = 9 
-MNEMO = 'NITDIF' 
-TAILLE = 0 
-DEFAUT = 60 
-DEFAUT1 = 60 
-RUBRIQUE = 'EQUATIONS';'TRACEUR';'OPTIONS TRACEUR' 
-RUBRIQUE1 = 'EQUATIONS';'TRACER';'TRACER OPTIONS' 
-COMPORT = 
-'Foreground ("EQUATIONS*TRACEUR*OPTIONS TRACEUR") IS VALEUR (brown)' 
-NIVEAU = 2 
-AIDE = 'Limite le nombre d''iterations du solveur a chaque pas 
-de temps pour le calcul de la diffusion du traceur.' 
-AIDE1 = 'Limits the number of solver iterations at each time step for 
-the diffusion of tracer.' 
-NOM = 'SOLVEUR POUR LA DIFFUSION DES TRACEURS' 
-NOM1 = 'SOLVER FOR DIFFUSION OF TRACERS' 
-TYPE = ENTIER 
-INDEX = 11 
-MNEMO = 'SLVTRA%SLV' 
-TAILLE = 0 
-DEFAUT = 1 
-DEFAUT1 = 1 
-CHOIX = '1="gradient conjuge"'; 
-'2="residu conjuge"'; 
-'3="gradient conjuge sur equation normale"'; 
-'4="erreur minimale"'; 
-'5="gradient conjuge carre"'; 
-'6="cgstab"'; 
-'7="gmres (voir ausi option du solveur)"'; 
-'8="direct"' 
-CHOIX1 = '1="conjugate gradient"'; 
-'2="conjugate residual"'; 
-'3="conjugate gradient on a normal equation"'; 
-'4="minimum error"'; 
-'5="squared conjugate gradient"'; 
-'6="cgstab"'; 
-'7="gmres (see option for the solver for tracer diffusion)"'; 
-'8="direct"' 
-RUBRIQUE = 'PARAMETRES NUMERIQUES, SOLVEUR' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS, SOLVER' 
-NIVEAU = 2 
-AIDE = '1 : gradient conjugue 2 : residu conjugue 3 : gradient conjugue 
-sur equation normale 4 : erreur minimale 5 : gradient conjugue carre' 
-AIDE1 = '1 : conjugate gradient 2 : conjugate gradient 
-3 :  conjugate gradient on a normal equation 4 : minimum error 
-5 : squared conjugate gradient 6 : cgstab 
-7 : gmres (see option for the solver for tracer diffusion) 
-8 : direct' 
-NOM = 'OPTION DE PROPAGATION' 
-NOM1 = 'PROPAGATION OPTION' 
-TYPE = ENTIER 
-INDEX = 12 
-MNEMO = 'OPTPRO' 
-TAILLE = 0 
-DEFAUT = 3 
-DEFAUT1 = 3 
-RUBRIQUE = 'EQUATIONS';'PROPAGATION' 
-RUBRIQUE1 = 'EQUATIONS';'PROPAGATION' 
-COMPORT = 
-'Foreground ("EQUATIONS*PROPAGATION") IS VALEUR (brown)' 
-NIVEAU = -13 
-AIDE = 'Non active pour l''instant.' 
-AIDE1 = 'Not yet implemented.' 
-NOM = 'ENTIER LIBRE 17' 
-NOM1 = 'FREE INTEGER 17' 
-TYPE = ENTIER 
-INDEX = 17 
-MNEMO = 'STDGEO' 
-TAILLE = 0 
-DEFAUT = 3 
-DEFAUT1 = 3 
-NIVEAU = 2 
-RUBRIQUE = 'PARAMETRES NUMERIQUES';'GENERAL' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS';'GENERAL' 
-AIDE = ' ' 
-AIDE1 = ' ' 
-NOM = 'ENTIER LIBRE 18' 
-NOM1 = 'FREE INTEGER 18' 
-TYPE = ENTIER 
-INDEX = 18 
-MNEMO = 'STDRES' 
-TAILLE = 0 
-DEFAUT = 3 
-DEFAUT1 = 3 
-NIVEAU = 2 
-RUBRIQUE = 'PARAMETRES NUMERIQUES';'GENERAL' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS';'GENERAL' 
-AIDE = ' ' 
-AIDE1 = ' ' 
-NOM = 'SOLVEUR' 
-NOM1 = 'SOLVER' 
-TYPE = ENTIER 
-INDEX = 19 
-MNEMO = 'ISOLVE' 
-TAILLE = 0 
-DEFAUT = 3 
-DEFAUT1 = 3 
-CHOIX = '3="equation normale"'; 
-'1="gradient conjuge"'; 
-'2="residu conjuge"'; 
-'4="erreur minimale"'; 
-'6="cgstab"'; 
-'7="gmres"'; 
-'8="direct"' 
-CHOIX1 = '3="conjugate gradient on a normal equation"'; 
-'1="conjugate gradient"'; 
-'2="conjugate residual"'; 
-'4="minimum error"'; 
-'6="cgstab"'; 
-'7="gmres"'; 
-'8="direct"' 
-RUBRIQUE = 'PARAMETRES NUMERIQUES, SOLVEUR' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS, SOLVER' 
-NIVEAU = 2 
-AIDE = 'Permet de choisir le solveur utilise pour la resolution de 
-l''etape de propagation. Toutes les methodes proposees actuellement 
-s''apparentent au Gradient Conjugue. Ce sont : 
-  1 : gradient conjugue 
-  2 : residu conjugue 
-  3 : gradient conjugue sur equation normale 
-  4 : erreur minimale 
-  5 : gradient conjugue carre (non programme) 
-  6 : gradient conjugue carre stabilise (cgstab) 
-  7 : gmres (voir aussi option du solveur) 
-  8 : direct' 
-AIDE1 = 'Makes it possible to select the solver used for solving the 
-propagation step. All the currently available methods are variations 
-of the Conjugate Gradient method. They are as follows: 
-1: conjugate gradient 
-2: conjugate residual 
-3: conjugate gradient on a normal equation 
-4: minimum error 
-5: conjugate gradient squared (not implemented) 
-6: conjugate gradient squared stabilised (cgstab) 
-7: gmres (see option for solver) 
-8: direct' 
-NOM = 'ENTIER LIBRE 20' 
-NOM1 = 'FREE INTEGER 20' 
-TYPE = ENTIER 
-INDEX = 20 
-MNEMO = 'STDPRE' 
-TAILLE = 0 
-DEFAUT = 3 
-DEFAUT1 = 3 
-NIVEAU = 2 
-RUBRIQUE = 'PARAMETRES NUMERIQUES';'GENERAL' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS';'GENERAL' 
-AIDE = ' ' 
-AIDE1 = ' ' 
-NOM = 'NOMBRE DE SOUS-ITERATIONS POUR LES NON-LINEARITES' 
-NOM1 = 'NUMBER OF SUB-ITERATIONS FOR NON-LINEARITIES' 
-TYPE = ENTIER 
-INDEX = 21 
-MNEMO = 'NSOUSI' 
-TAILLE = 0 
-DEFAUT = 1 
-DEFAUT1 = 1 
-RUBRIQUE = 'PARAMETRES NUMERIQUES';'GENERAL' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS';'GENERAL' 
-NIVEAU = 1 
-AIDE = 'Permet de reactualiser, pour un meme pas de temps, les champs 
-convecteur et propagateur au cours de plusieurs sous-iterations. A la 
-premiere sous-iteration, ces champs sont donnes par C et le champ de 
-vitesses au pas de temps precedent. Aux iterations suivantes, ils sont 
-pris egaux au champ de vitesse obtenu a la fin de la sous-iteration 
-precedente. Cette technique permet d''ameliorer la prise en compte des 
-non linearites.' 
-AIDE1 = 'Used for updating, within one time step, the advection and 
-propagation field. 
-upon the first sub-iteration, these fields are given by 
-C and the velocity field in the previous time step. At subsequent 
-iterations, the results of the previous sub-iteration is used to 
-update the advection and propagation field. 
-The non-linearities can be taken into account through this technique.' 
-NOM = 'NUMERO DU PREMIER PAS DE TEMPS POUR LES SORTIES GRAPHIQUES' 
-NOM1 = 'NUMBER OF FIRST TIME STEP FOR GRAPHIC PRINTOUTS' 
-TYPE = ENTIER 
-INDEX = 22 
-MNEMO = 'PTINIG' 
-TAILLE = 0 
-DEFAUT = 0 
-DEFAUT1 = 0 
-RUBRIQUE = 'ENTREES-SORTIES, GRAPHIQUES ET LISTING' 
-RUBRIQUE1 = 'INPUT-OUTPUT, GRAPHICS AND LISTING' 
-NIVEAU = 2 
-AIDE = 'Determine le nombre de pas de temps a partir duquel debute 
-l''ecriture des resultats dans le ''FICHIER DES RESULTATS''.' 
-AIDE1 = 'Determines the number of time steps after which the results 
-are first written into the RESULTS FILE.' 
-NOM = 'NUMERO DU PREMIER PAS DE TEMPS POUR LES SORTIES LISTING' 
-NOM1 = 'NUMBER OF FIRST TIME STEP FOR LISTING PRINTOUTS' 
-TYPE = ENTIER 
-INDEX = 23 
-MNEMO = 'PTINIL' 
-TAILLE = 0 
-DEFAUT = 0 
-DEFAUT1 = 0 
-RUBRIQUE = 'ENTREES-SORTIES, GRAPHIQUES ET LISTING' 
-RUBRIQUE1 = 'INPUT-OUTPUT, GRAPHICS AND LISTING' 
-NIVEAU = 2 
-AIDE = 'Determine le nombre de pas de temps a partir duquel debute 
-l''ecriture des resultats dans le listing.' 
-AIDE1 = 'Determines the number of time steps after which the results 
-are first written into the listing.' 
-NOM = 'PRECONDITIONNEMENT POUR LA DIFFUSION DES TRACEURS' 
-NOM1 = 'PRECONDITIONING FOR DIFFUSION OF TRACERS' 
-TYPE = ENTIER 
-INDEX = 24 
-MNEMO = 'IPREDI' 
-TAILLE = 0 
-DEFAUT = 2 
-DEFAUT1 = 2 
-CHOIX = '2="diagonal"'; '0="aucun"'; 
-'3="diagonal condensee"'; '7="crout"'; 
-'14="diagonal et crout"'; '21="diagonal condense et crout"' 
-CHOIX1 = '2="diagonal"'; '0="no preconditioning "'; 
-'3="diagonal condensed"'; '7="crout"'; 
-'14="diagonal and crout"'; '21="diagonal condensed and crout"' 
-RUBRIQUE = 'EQUATIONS';'TRACEUR';'OPTIONS TRACEUR' 
-RUBRIQUE1 = 'EQUATIONS';'TRACER';'TRACER OPTIONS' 
-NIVEAU = 2 
-AIDE = 'Permet de preconditionner le systeme relatif au traceur. 
-Memes definition et possibilites que pour le mot-cle PRECONDITIONNEMENT. 
-  0 : pas de preconditionnement; 
-  2 : preconditionnement diagonal. 
-  3 : preconditionnement diagonal avec la matrice conde' 
-AIDE1 = 'Preconditioning of the linear system in the tracer diffusion 
-step. 
-Same definition and possibilities as for the keyword  PRECONDITIONING 
- 0: no preconditioning 
- 2: diagonal preconditioning 
- 3: diagonal preconditioning with the condensed matrix 
- 7: Crout''s preconditioning per element.' 
-NOM = 'SOLVEUR POUR LE MODELE K-EPSILON' 
-NOM1 = 'SOLVER FOR K-EPSILON MODEL' 
-TYPE = ENTIER 
-INDEX = 25 
-MNEMO = 'ISOLKE' 
-TAILLE = 0 
-DEFAUT = 1 
-DEFAUT1 = 1 
-CHOIX = '1="gradient conjugue"'; 
-'2="residu conjuge"'; 
-'3="gradient conjugue sur equation normal"'; 
-'4="erreur minimale"'; 
-'5="gradient conjugue carre"'; 
-'6="gradient conjugue carre stabilise (cgstab)"'; 
-'7="gmres (voir aussi option du solveur pour le modele k-epsilon"'; 
-'8="direct"' 
-CHOIX1 = '1="conjugate gradient"'; 
-'2="conjugate residuals"'; 
-'3="conjugate gradient on normal equation"'; 
-'4="minimum error"'; 
-'5="conjugate gradient squared"'; 
-'6="conjugate gradient squared stabilised (cgstab)"'; 
-'7="gmres (see option for the solver for k-epsilon model)"'; 
-'8="direct"' 
-RUBRIQUE = 'EQUATIONS';'MODELE DE TURBULENCE';'MODELE K-EPSILON' 
-RUBRIQUE1 = 'EQUATIONS';'TURBULENCE MODEL';'K-EPSILON MODEL' 
-COMPORT = 
-'Foreground ("EQUATIONS*MODELE DE TURBULENCE*MODELE K-EPSILON") 
-IS VALEUR (brown)' 
-NIVEAU = 2 
-AIDE = 'Permet de choisir le solveur utilise pour la resolution 
-du systeme du modele k-epsilon : 
-1 : gradient conjugue 
-2 : residu conjugue 
-3 : gradient conjugue sur equation normale 
-4 : erreur minimale 
-5 : gradient conjugue carre 
-6 : gradient conjugue carre stabilise (cgstab) 
-7 : gmres (voir aussi option du solveur pour le modele k-epsilon) 
-8 : direct' 
-AIDE1 = 'Makes it possible to select the solver used for solving 
-the system of the k-epsilon model. 
-1: conjugate gradient 
-2: conjugate residuals 
-3: conjugate gradient on normal equation 
-4: minimum error 
-5: conjugate gradient squared 
-6: conjugate gradient squared stabilised (cgstab) 
-7: gmres (see option for the solver for k-epsilon model) 
-8: direct' 
-NOM = 'PRECONDITIONNEMENT POUR LE MODELE K-EPSILON' 
-NOM1 = 'PRECONDITIONING FOR K-EPSILON MODEL' 
-TYPE = ENTIER 
-INDEX = 26 
-MNEMO = 'IPREKE' 
-TAILLE = 0 
-DEFAUT = 2 
-DEFAUT1 = 2 
-CHOIX = '2="diagonal"'; '0="aucun"'; 
-'3="diagonal condensee"'; '7="crout"'; 
-'14="diagonal et crout"'; '21="diagonal condense et crout"' 
-CHOIX1 = '2="diagonal"'; '0="no preconditioning"'; 
-'3="diagonal condensed"'; '7="crout"'; 
-'14="diagonal and crout"'; '21="diagonal condensed and crout"' 
-RUBRIQUE = 'PARAMETRES NUMERIQUES, MODELE K-EPSILON' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS, K-EPSILON MODEL' 
-NIVEAU = 2 
-AIDE = 'Permet de preconditionner le systeme relatif au modele k-epsilon 
-0 : pas de preconditionnement; 
-2 : preconditionnement diagonal. 
-3 : preconditionnement diagonal avec la matrice condensee. 
-7 : preconditionnement de Crout par element.' 
-AIDE1 = 'Preconditioning of the linear system in the diffusion step of 
-the k-epsilon model. 
-0: no preconditioning 
-2: diagonal preconditioning 
-3: diagonal preconditioning with the condensed matrix 
-7: Crout''s preconditioning per element' 
-NOM = 'REGIME DE TURBULENCE POUR LES PAROIS' 
-NOM1 = 'TURBULENCE MODEL FOR SOLID BOUNDARIES' 
-TYPE = ENTIER 
-INDEX = 27 
-MNEMO = 'LISRUG' 
-TAILLE = 0 
-DEFAUT = 2 
-DEFAUT1 = 2 
-CHOIX = '1=lisse'; '2=rugueux' 
-CHOIX1 = '1=smooth'; '2=rough' 
-RUBRIQUE = 'EQUATIONS';'MODELE DE TURBULENCE' 
-RUBRIQUE1 = 'EQUATIONS';'TURBULENCE MODEL' 
-NIVEAU = 1 
-AIDE = 'Permet de choisir le regime de turbulence aux parois  
-   1 : regime turbulent lisse. 
-   2 : regime turbulent rugueux.' 
-AIDE1 = 'Provided for selecting the type of friction on the walls 
-   1: smooth 
-   2: rough' 
-NOM = 'NOMBRE DE FLOTTEURS' 
-NOM1 = 'NUMBER OF DROGUES' 
-TYPE = ENTIER 
-INDEX = 28 
-MNEMO = 'NFLOT' 
-CONTROLE = 0 ; 10 
-TAILLE = 0 
-DEFAUT = 0 
-DEFAUT1 = 0 
-RUBRIQUE = 'ENTREES-SORTIES, GRAPHIQUES ET LISTING' 
-RUBRIQUE1 = 'INPUT-OUTPUT, GRAPHICS AND LISTING' 
-NIVEAU = 2 
-AIDE = 'Permet d''effectuer un suivi de flotteurs' 
-AIDE1 = 'Number of drogues in the computation. 
-The user must then fill the subroutine FLOT specifying 
-the coordinates of the starting points, their departure 
-and arrival times. 
-The trajectory of drogues is recorded in the BINARY RESULTS 
-FILE that must be given in the steering file' 
-NOM = 'PERIODE POUR LES SORTIES DE FLOTTEURS' 
-NOM1 = 'PRINTOUT PERIOD FOR DROGUES' 
-TYPE = ENTIER 
-INDEX = 29 
-MNEMO = 'FLOPRD' 
-TAILLE = 0 
-DEFAUT = 1 
-DEFAUT1 = 1 
-RUBRIQUE = 'ENTREES-SORTIES, GRAPHIQUES ET LISTING' 
-RUBRIQUE1 = 'INPUT-OUTPUT, GRAPHICS AND LISTING' 
-NIVEAU = 2 
-AIDE = 'Nombre de pas de temps entre 2 sorties de positions de 
-flotteurs dans le fichier des resultats binaire supplementaire 
-N affecte pas la qualite du calcul de la trajectoire' 
-AIDE1 = 'Number of time steps between 2 outputs of drogues 
-positions in the binary file' 
-NOM = 'NOMBRE DE DERIVES LAGRANGIENNES' 
-NOM1 = 'NUMBER OF LAGRANGIAN DRIFTS' 
-TYPE = ENTIER 
-INDEX = 30 
-MNEMO = 'NFLAG' 
-CONTROLE = 0; 10 
-TAILLE = 0 
-DEFAUT = 0 
-DEFAUT1 = 0 
-RUBRIQUE = 'PARAMETRES NUMERIQUES';'GENERAL' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS';'GENERAL' 
-NIVEAU = 2 
-AIDE = 'Permet d''effectuer simultanement plusieurs calculs de derives 
-lagrangiennes initiees a des pas differents' 
-AIDE1 = 'Provided for performing several computations of lagrangian 
-drifts starting at different times. 
-Add A and G in the VARIABLES FOR GRAPHIC PRINTOUTS key-word' 
-NOM = 'LISSAGES DU FOND' 
-NOM1 = 'BOTTOM SMOOTHINGS' 
-TYPE = ENTIER 
-INDEX = 31 
-MNEMO = 'LISFOND' 
-TAILLE = 0 
-CONTROLE = 0 ; 10 
-DEFAUT = 0 
-DEFAUT1 = 0 
-RUBRIQUE = 'EQUATIONS';'FROTTEMENT ET LISSAGE' 
-RUBRIQUE1 = 'EQUATIONS';'FRICTION AND SMOOTHINGS' 
-NIVEAU = 2 
-AIDE = 'Nombre de lissages effectues sur la topographie. 
-chaque lissage, effectue a l''aide d''une matrice de masse, 
-est conservatif. 
-Utilise lorsque les donnees de bathymetrie donnent des resultats 
-trop irreguliers apres interpolation.' 
-AIDE1 ='Number of smoothings on bottom topography. 
-each smoothing is mass conservative. 
-to be used when interpolation of bathymetry on the mesh gives 
-very rough results.' 
-NOM = 'OPTION DU SOLVEUR POUR LA DIFFUSION DES TRACEURS' 
-NOM1 = 'SOLVER OPTION FOR TRACERS DIFFUSION' 
-TYPE = ENTIER 
-INDEX = 32 
-MNEMO = 'ISOLDI' 
-TAILLE = 0 
-DEFAUT = 2 
-DEFAUT1 = 2 
-RUBRIQUE = 'EQUATIONS';'TRACEUR';'OPTIONS TRACEUR' 
-RUBRIQUE1 = 'EQUATIONS';'TRACER';'TRACER OPTIONS' 
-NIVEAU = 2 
-AIDE = 'si le solveur est GMRES (7) le mot cle est la dimension de 
-l''espace de KRILOV (valeurs conseillees entre 2 et 15)' 
-AIDE1 = 'WHEN GMRES (7) IS CHOSEN, DIMENSION OF THE KRYLOV SPACE 
-TRY VALUES BETWEEN 2 AND 15' 
-NOM = 'OPTION DU SOLVEUR' 
-NOM1 = 'SOLVER OPTION' 
-TYPE = ENTIER 
-INDEX = 33 
-MNEMO = 'ISOLVE' 
-TAILLE = 0 
-DEFAUT = 2 
-DEFAUT1 = 2 
-RUBRIQUE = 'PARAMETRES NUMERIQUES, SOLVEUR' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS, SOLVER' 
-NIVEAU = 2 
-AIDE = 'si le solveur est GMRES (7) le mot cle est la dimension de 
-l''espace de KRILOV (valeurs conseillees entre 2 et 15)' 
-AIDE1 = 'WHEN GMRES (7) IS CHOSEN, DIMENSION OF THE KRYLOV SPACE 
-TRY VALUES BETWEEN 2 AND 15' 
-NOM = 'OPTION DU SOLVEUR POUR LE MODELE K-EPSILON' 
-NOM1 = 'OPTION FOR THE SOLVER FOR K-EPSILON MODEL' 
-TYPE = ENTIER 
-INDEX = 34 
-MNEMO = 'ISOLKE' 
-TAILLE = 0 
-DEFAUT = 2 
-DEFAUT1 = 2 
-RUBRIQUE = 'EQUATIONS';'MODELE DE TURBULENCE';'MODELE K-EPSILON' 
-RUBRIQUE1 = 'EQUATIONS';'TURBULENCE MODEL';'K-EPSILON MODEL' 
-NIVEAU = 2 
-AIDE = 'si le solveur est GMRES (7) le mot cle est la dimension de 
-l''espace de KRILOV (valeurs conseillees entre 2 et 15)' 
-AIDE1 = 'WHEN GMRES (7) IS CHOSEN, DIMENSION OF THE KRYLOV SPACE 
-TRY VALUES BETWEEN 2 AND 15' 
-NOM = 'PAS DE TEMPS' 
-NOM1 = 'TIME STEP' 
-TYPE = REEL 
-INDEX = 1 
-MNEMO = 'DT' 
-TAILLE = 0 
-DEFAUT = 1. 
-DEFAUT1 = 1. 
-RUBRIQUE = 'PARAMETRES NUMERIQUES';'DUREE DU CALCUL' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS';'DURATION' 
-NIVEAU = 1 
-AIDE = 'Definit le pas de temps en secondes. 
-Remarque : Pour une bonne precision; il est souhaitable de choisir 
-le pas de temps de telle sorte que le nombre de Courant de propagation 
-soit inferieur a 2 ; voir 3.
-Ceci peut etre realisable en hydraulique fluviale ; mais ne l''est 
-pratiquement jamais en hydraulique maritime ou l''on peut atteindre 
-des valeurs de 50.' 
-AIDE1 = 'Specifies the time step in seconds.' 
-NOM = 'ZERO' 
-NOM1 = 'ZERO' 
-TYPE = REEL 
-INDEX = 3 
-MNEMO = 'ZERO' 
-TAILLE = 0 
-DEFAUT = 1.E-12 
-DEFAUT1 = 1.E-12 
-RUBRIQUE = 'PARAMETRES NUMERIQUES';'GENERAL' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS';'GENERAL' 
-NIVEAU = -13 
-AIDE = 'Non active pour l''instant.' 
-AIDE1 = 'Not yet implemented' 
-NOM = 'COEFFICIENT DE FROTTEMENT' 
-NOM1 = 'FRICTION COEFFICIENT' 
-TYPE = REEL 
-INDEX = 4 
-MNEMO = 'FFON' 
-TAILLE = 0 
-DEFAUT = 50. 
-DEFAUT1 = 50. 
-RUBRIQUE = 'EQUATIONS';'FROTTEMENT ET LISSAGE' 
-RUBRIQUE1 = 'EQUATIONS';'FRICTION AND SMOOTHINGS' 
-NIVEAU = 1 
-AIDE = 'Fixe la valeur du coefficient de frottement pour la 
-formulation choisie. 
-Attention; la signification de ce chiffre varie suivant la formule 
-choisie : 
-                    1 : coefficient lineaire 
-                    2 : coefficient de Chezy 
-                    3 : coefficient de Strickler 
-                    4 : coefficient de Manning 
-                    5 : hauteur de rugosite de Nikuradse' 
-AIDE1 = 'Sets the value of the friction coefficient for the selected 
-formulation. It is noteworthy that the meaning of this figure changes 
-according to the selected formula (Chezy, Strickler, etc.) : 
-                    1 : linear coefficient 
-                    2 : Chezy coefficient 
-                    3 : Strickler coefficient 
-                    4 : Manning coefficient 
-                    5 : Nikuradse grain size' 
-NOM = 'COEFFICIENT D''INFLUENCE DU VENT' 
-NOM1 = 'COEFFICIENT OF WIND INFLUENCE' 
-TYPE = REEL 
-INDEX = 6 
-MNEMO = 'FAIR' 
-TAILLE = 0 
-DEFAUT = 0. 
-DEFAUT1 = 0. 
-RUBRIQUE = 'EQUATIONS';'VENT';'VALEURS NUMERIQUES' 
-RUBRIQUE1 = 'EQUATIONS';'WIND';'NUMERICS VALUES' 
-COMPORT = 
-'Foreground ("EQUATIONS*VENT*VALEURS NUMERIQUES") IS VALEUR (brown)' 
-NIVEAU = 1 
-AIDE = 'Fixe la valeur du coefficient d''entrainement du vent (cf. 
-Note de principe).' 
-AIDE1 = 'Sets the value of the wind driving coefficient. 
-Refer to principle note.' 
-NOM = 'VITESSE DU VENT SUIVANT X' 
-NOM1 = 'WIND VELOCITY ALONG X' 
-TYPE = REEL 
-INDEX = 7 
-MNEMO = 'FUAIR' 
-TAILLE = 0 
-DEFAUT = 0. 
-DEFAUT1 = 0. 
-RUBRIQUE = 'EQUATIONS';'VENT';'VALEURS NUMERIQUES' 
-RUBRIQUE1 = 'EQUATIONS';'WIND';'NUMERICS VALUES' 
-NIVEAU = 1 
-AIDE = 'Composante de la vitesse du vent suivant l''axe des x (m/s).' 
-AIDE1 = 'Wind velocity, component along x axis (m/s).' 
-NOM = 'VITESSE DU VENT SUIVANT Y' 
-NOM1 = 'WIND VELOCITY ALONG Y' 
-TYPE = REEL 
-INDEX = 8 
-MNEMO = 'FVAIR' 
-TAILLE = 0 
-DEFAUT = 0. 
-DEFAUT1 = 0. 
-RUBRIQUE = 'EQUATIONS';'VENT';'VALEURS NUMERIQUES' 
-RUBRIQUE1 = 'EQUATIONS';'WIND';'NUMERICS VALUES' 
-NIVEAU = 1 
-AIDE = 'Composante de la vitesse du vent suivant l''axe des y (m/s).' 
-AIDE1 = 'Wind velocity, component along y axis (m/s).' 
-NOM = 'VENT' 
-NOM1 = 'WIND' 
-TYPE = LOGIQUE 
-INDEX = 14 
-MNEMO = 'VENT' 
-TAILLE = 0 
-DEFAUT = NON 
-DEFAUT1 = NO 
-RUBRIQUE = 'EQUATIONS';'VENT' 
-RUBRIQUE1 = 'EQUATIONS';'WIND' 
-COMPORT = 
-'Affichage ("EQUATIONS*VENT*VALEURS NUMERIQUES") IS VALEUR ()'; 
-'Foreground ("EQUATIONS*VENT") IS VALEUR (brown)' 
-NIVEAU = 1 
-AIDE = 'Prise en compte ou non des effets du vent.' 
-AIDE1 = 'Determines whether the wind effects are to be taken into 
-account or not.' 
-NOM = 'VALEURS INITIALES DES TRACEURS' 
-NOM1 = 'INITIAL VALUES OF TRACERS' 
-TYPE = REEL 
-INDEX = 9 
-MNEMO = 'TRAC0' 
-TAILLE = 2 
-DEFAUT = 0.;0. 
-DEFAUT1 = 0.;0. 
-RUBRIQUE = 'EQUATIONS';'TRACEUR';'OPTIONS TRACEUR' 
-RUBRIQUE1 = 'EQUATIONS';'TRACER';'TRACER OPTIONS' 
-NIVEAU = 1 
-AIDE = 'Fixe la valeur initiale du traceur.' 
-AIDE1 = 'Sets the initial value of the tracer.' 
-NOM = 'COEFFICIENT DE DIFFUSION DES TRACEURS' 
-NOM1 = 'COEFFICIENT FOR DIFFUSION OF TRACERS' 
-TYPE = REEL 
-INDEX = 10 
-MNEMO = 'DIFNU' 
-TAILLE = 0 
-DEFAUT = 1.E-6 
-DEFAUT1 = 1.E-6 
-RUBRIQUE = 'EQUATIONS';'TRACEUR';'OPTIONS TRACEUR' 
-RUBRIQUE1 = 'EQUATIONS';'TRACER';'TRACER OPTIONS' 
-NIVEAU = 1 
-AIDE = 'Fixe la valeur du coefficient de diffusion du traceur. 
-L''influence de ce parametre sur l''evolution du traceur dans 
-le temps est importante.' 
-AIDE1 = 'Sets the value of the tracer diffusivity.' 
-NOM = 'PRECISION POUR LA DIFFUSION DES TRACEURS' 
-NOM1 = 'ACCURACY FOR DIFFUSION OF TRACERS' 
-TYPE = REEL 
-INDEX = 11 
-MNEMO = 'EPSDIF' 
-TAILLE = 0 
-DEFAUT = 1.E-6 
-DEFAUT1 = 1.E-6 
-RUBRIQUE = 'EQUATIONS';'SOLVEUR' 
-RUBRIQUE1 = 'EQUATIONS';'SOLVER' 
-COMPORT = 
-'Foreground ("EQUATIONS*SOLVEUR") IS VALEUR (brown)' 
-NIVEAU = 2 
-AIDE = 'Fixe la precision demandee pour le calcul de la diffusion 
-du traceur.' 
-AIDE1 = 'Sets the required accuracy for computing the tracer 
-diffusion.' 
-NOM = 'COEFFICIENT D''IMPLICITATION DES TRACEURS' 
-NOM1 = 'IMPLICITATION COEFFICIENT OF TRACERS' 
-TYPE = REEL 
-INDEX = 12 
-MNEMO = 'TETADF' 
-TAILLE = 0 
-DEFAUT = 0.6 
-DEFAUT1 = 0.6 
-RUBRIQUE = 'EQUATIONS';'TRACEUR';'OPTIONS TRACEUR' 
-RUBRIQUE1 = 'EQUATIONS';'TRACER';'TRACER OPTIONS' 
-NIVEAU = 2 
-AIDE = 'Fixe la valeur du coefficient d''implicitation du traceur' 
-AIDE1 = 'Sets the value of the implicitation coefficient for the tracer' 
-NOM = 'COEFFICIENT DE DIFFUSION DES VITESSES' 
-NOM1 = 'VELOCITY DIFFUSIVITY' 
-TYPE = REEL 
-INDEX = 13 
-MNEMO = 'PROPNU' 
-TAILLE = 0 
-DEFAUT = 1.E-6 
-DEFAUT1 = 1.E-6 
-RUBRIQUE = 'EQUATIONS';'MODELE DE TURBULENCE';'VISCOSITE CONSTANTE' 
-RUBRIQUE1 = 'EQUATIONS';'TURBULENCE MODEL';'CONSTANT VISCOSITY' 
-COMPORT = 
-'Foreground ("EQUATIONS*MODELE DE TURBULENCE*VISCOSITE CONSTANTE") 
-IS VALEUR (brown)' 
-NIVEAU = 1 
-AIDE = 'Fixe de facon uniforme pour l''ensemble du domaine; 
-la valeur du coefficient de diffusion de viscosite globale (dynamique + 
-turbulente). Cette valeur peut avoir une influence non negligeable sur 
-la forme et la taille des recirculations.' 
-AIDE1 = 'Sets, in an even way for the whole domain, the value of the 
-coefficient of global (dynamic+turbulent) viscosity. this value may 
-have a significant effect both on the shapes and sizes of 
-recirculation zones.' 
-NOM = 'MODELE DE TURBULENCE' 
-NOM1 = 'TURBULENCE MODEL' 
-TYPE = ENTIER 
-INDEX = 7 
-MNEMO = 'ITURB' 
-TAILLE = 0 
-DEFAUT = 1 
-DEFAUT1 = 1 
-CHOIX = '1="VISCOSITE CONSTANTE"';'2="ELDER"';'3="MODELE K-EPSILON"' 
-;'4="SMAGORINSKI"' 
-CHOIX1 = '1="CONSTANT VISCOSITY"';'2="ELDER"';'3="K-EPSILON MODEL"' 
-;'4="SMAGORINSKI"' 
-RUBRIQUE = 'EQUATIONS';'MODELE DE TURBULENCE' 
-RUBRIQUE1 = 'EQUATIONS';'TURBULENCE MODEL' 
-COMPORT = 'Affichage 
-("COEFFICIENT DE DIFFUSION DES VITESSES") 
-IS VALEUR (#"MODELE DE TURBULENCE" - 3)'; 
-'Affichage 
-("EQUATIONS*MODELE DE TURBULENCE*MODELE K-EPSILON") IS VALEUR 
-(#"MODELE DE TURBULENCE" - 1)'; 
-'Foreground ("EQUATIONS*MODELE DE TURBULENCE") IS VALEUR (brown)' 
-NIVEAU = 1 
-AIDE = '3 choix sont possibles actuellement : viscosite constante (1) 
-modele de Elder (2) ou modele k-epsilon (3). 
-Attention : si on choisit l''option 1 
-il ne faut pas oublier d''ajuster la valeur du mot-cle COEFFICIENT DE 
-DIFFUSION DES VITESSES. 
-si on choisit l''option 2 
-il ne faut pas oublier d''ajuster les deux valeurs du mot-cle : 
-COEFFICIENTS ADIMENSIONNELS DE DISPERSION 
-Si on choisit l''option 3; 
-ce meme parametre doit retrouver sa vraie valeur physique car elle est 
-utilisee comme telle dans le modele de turbulence' 
-AIDE1 = 'The current alternatives are as follows: constant viscosity (1) 
-elder''s model (2) or k-epsilon model (3). 
-NOTE: when option 1 is chosen, it should be kept in mind that the 
-value of the keyword VELOCITY DIFFUSIVITY has to be ajusted. 
-When option 2 is chosen, the two values of key-word : 
-NON-DIMENSIONAL DISPERSION COEFFICIENTS are used 
-When option 3 is chosen, this parameter should recover its true 
-physical value, since it is used as such in the turbulence model.' 
-NOM = 'PRECISION DU SOLVEUR' 
-NOM1 = 'SOLVER ACCURACY' 
-TYPE = REEL 
-INDEX = 14 
-MNEMO = 'EPSI1' 
-TAILLE = 0 
-DEFAUT = 1.E-4 
-DEFAUT1 = 1.E-4 
-RUBRIQUE = 'PARAMETRES NUMERIQUES, SOLVEUR' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS, SOLVER' 
-NIVEAU = 2 
-AIDE = 'Precision demandee pour la resolution de l''etape de propagation 
- (cf.  Note de principe).' 
-AIDE1 = 'Required accuracy for solving the propagation step 
-(refer to Principle note).' 
-NOM = 'PROFONDEUR LIMITE POUR PROCEDURE DE RESSUYAGE' 
-NOM1 = 'THRESHOLD DEPTH FOR RECEDING PROCEDURE' 
-TYPE = REEL 
-INDEX = 16 
-MNEMO = 'HREC' 
-TAILLE = 0 
-DEFAUT = 0. 
-DEFAUT1 = 0. 
-RUBRIQUE = 'PARAMETRES NUMERIQUES';'GENERAL' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS';'GENERAL' 
-NIVEAU = 2 
-AIDE = 'Si > 0., declenche la procedure de ressuyage qui evite
-le franchissement parasite des digues mal discretisees' 
-AIDE1 = 'If > 0., will trigger the receding procedure that
-avoids overwhelming of dykes which are too loosely 
-discretised ' 
-NOM = 'IMPLICITATION POUR LA HAUTEUR' 
-NOM1 = 'IMPLICITATION FOR DEPTH' 
-TYPE = REEL 
-INDEX = 17 
-MNEMO = 'TETAC' 
-TAILLE = 0 
-DEFAUT = 0.55 
-DEFAUT1 = 0.55 
-RUBRIQUE = 'PARAMETRES NUMERIQUES, VITESSE-CELERITE-HAUTEUR' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS, VELOCITY-CELERITY-HIGHT' 
-NIVEAU = 2 
-CONTROLE = 0.5 
-AIDE = 'Fixe la valeur du coefficient d''implicitation sur C dans 
-l''etape de propagation (cf.  Note de principe). 
-Les valeurs inferieures a 0.5 donnent un schema instable.' 
-AIDE1 = 'Sets the value of the implicitation coefficient for C 
-(the celerity of waves) in the propagation step 
-(refer to principle note). 
-Values below 0.5 result in an unstable scheme.' 
-NOM = 'IMPLICITATION POUR LA VITESSE' 
-NOM1 = 'IMPLICITATION FOR VELOCITY' 
-TYPE = REEL 
-INDEX = 18 
-MNEMO = 'TETAU' 
-TAILLE = 0 
-DEFAUT = 0.55 
-DEFAUT1 = 0.55 
-RUBRIQUE = 'PARAMETRES NUMERIQUES, VITESSE-CELERITE-HAUTEUR' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS, VELOCITY-CELERITY-HIGHT' 
-NIVEAU = 2 
-AIDE = 'Fixe la valeur du coefficient d''implicitation sur la vitesse 
-dans l''etape de propagation (cf.  Note de principe). 
-Les valeurs inferieures a 0.5 donnent un schema instable.' 
-AIDE1 = 'Sets the value of the implicitation coefficient for velocity 
-in the propagation step (refer to principle note). 
-Values below 0.5 result in an unstable condition.' 
-NOM = 'IMPLICITATION POUR LA DIFFUSION DES VITESSES' 
-NOM1 = 'IMPLICITATION FOR DIFFUSION OF VELOCITY' 
-TYPE = REEL 
-INDEX = 19 
-MNEMO = 'TETAD' 
-TAILLE = 0 
-DEFAUT = 1. 
-DEFAUT1 = 1. 
-RUBRIQUE = 'PARAMETRES NUMERIQUES, VITESSE-CELERITE-HAUTEUR' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS, VELOCITY-CELERITY-HIGHT' 
-NIVEAU = 2 
-AIDE = 'Fixe la valeur du coefficient d''implicitation sur les termes de 
-diffusion des vitesses' 
-AIDE1 = 'Sets the value of the implicitation coefficient for 
-the diffusion of velocity' 
-NOM = 'MASS-LUMPING SUR H' 
-NOM1 = 'MASS-LUMPING ON H' 
-TYPE = REEL 
-INDEX = 20 
-MNEMO = 'AGGLOC' 
-TAILLE = 0 
-DEFAUT = 0. 
-DEFAUT1 = 0. 
-RUBRIQUE = 'PARAMETRES NUMERIQUES, VITESSE-CELERITE-HAUTEUR' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS, VELOCITY-CELERITY-HIGHT' 
-NIVEAU = 2 
-AIDE = 'TELEMAC offre la possibilite d''effectuer du mass-lumping 
-sur H ou U. 
-Ceci revient a ramener tout ou partie (suivant la valeur de ce 
-coefficient) des matrices AM1 (h) ou AM2 (U) et AM3 (V) sur 
-leur diagonale. 
-Cette technique permet d''accelerer le code dans des proportions tres 
-importantes et de le rendre egalement beaucoup plus stable. Cependant 
-les solutions obtenues se trouvent lissees. 
-Ce parametre fixe le taux de mass-lumping effectue sur h.' 
-AIDE1 = 'TELEMAC provides an opportunity to carry out mass-lumping 
-either on C,H or on the velocity. 
-This is equivalent to bringing the matrices AM1 (h) or AM2 (U) and 
-AM3 (V) wholly or partly, back onto their diagonal. 
-Thanks to that technique, the code can be speeded up to a quite 
-significant extent and it can also be made much more stable. The 
-resulting solutions, however, become artificially smoothed. 
-This parameter sets the extent of mass-lumping that is performed on h.' 
-NOM = 'MASS-LUMPING SUR LA VITESSE' 
-NOM1 = 'MASS-LUMPING ON VELOCITY' 
-TYPE = REEL 
-INDEX = 21 
-MNEMO = 'AGGLOU' 
-TAILLE = 0 
-DEFAUT = 0. 
-DEFAUT1 = 0. 
-RUBRIQUE = 'PARAMETRES NUMERIQUES, VITESSE-CELERITE-HAUTEUR' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS, VELOCITY-CELERITY-HIGHT' 
-NIVEAU = 2 
-AIDE = 'Fixe le taux de mass-lumping effectue sur la vitesse.' 
-AIDE1 = 'Sets the amount of mass-lumping that is performed on 
-the velocity.' 
-NOM = 'VALEUR MINIMUM DE H' 
-NOM1 = 'MINIMUM VALUE OF DEPTH' 
-TYPE = REEL 
-INDEX = 22 
-MNEMO = 'HMIN' 
-TAILLE = 0 
-DEFAUT = 0. 
-DEFAUT1 = 0. 
-RUBRIQUE = 'PARAMETRES NUMERIQUES, VITESSE-CELERITE-HAUTEUR' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS, VELOCITY-CELERITY-HIGHT' 
-NIVEAU = 3 
-AIDE = 'Fixe la valeur minimale de a lorsque l''option CLIPPING 
-DE H est activee.' 
-AIDE1 = 'Sets the minimum H value when option H CLIPPING is 
-implemented. Not fully implemented.' 
-NOM = 'REDUCTION DU PAS DE TEMPS POUR LE MODELE K-EPSILON' 
-NOM1 = 'TIME STEP REDUCTION FOR K-EPSILON MODEL' 
-TYPE = REEL 
-INDEX = 23 
-MNEMO = 'REDUC' 
-TAILLE = 0 
-DEFAUT = 1. 
-DEFAUT1 = 1. 
-RUBRIQUE = 'PARAMETRES NUMERIQUES, MODELE K-EPSILON' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS, K-EPSILON MODEL' 
-NIVEAU = 3 
-AIDE = 'Coefficient reducteur du pas de temps pour le modele k-epsilon 
-(qui est normalement identique a celui du systeme hydrodynamique).
-Utilisation deconseillee' 
-AIDE1 = 'Time step reduction coefficient for k-epsilon model 
-(which is normally same the same as that of the hydrodynamic system) 
-Not recommended for use.' 
-NOM = 'PRECISION SUR K' 
-NOM1 = 'ACCURACY OF K' 
-TYPE = REEL 
-INDEX = 24 
-MNEMO = 'EPSIK' 
-TAILLE = 0 
-DEFAUT = 1.E-9 
-DEFAUT1 = 1.E-9 
-RUBRIQUE = 'PARAMETRES NUMERIQUES, MODELE K-EPSILON' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS, K-EPSILON MODEL' 
-NIVEAU = 2 
-AIDE = 'Fixe la precision demandee sur k pour le test d''arret dans 
-l''etape de diffusion et termes sources du modele k-epsilon.' 
-AIDE1 = 'Sets the required accuracy for computing k in the diffusion 
-and source terms step of the k-epsilon model.' 
-NOM = 'PRECISION SUR EPSILON' 
-NOM1 = 'ACCURACY OF EPSILON' 
-TYPE = REEL 
-INDEX = 25 
-MNEMO = 'EPSIE' 
-TAILLE = 0 
-DEFAUT = 1.E-9 
-DEFAUT1 = 1.E-9 
-RUBRIQUE = 'PARAMETRES NUMERIQUES, MODELE K-EPSILON' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS, K-EPSILON MODEL' 
-NIVEAU = 2 
-AIDE = 'Fixe la precision demandee sur epsilon pour le test d''arret dan 
-s l''etape de diffusion et termes sources de k et epsilon.' 
-AIDE1 = 'Sets the required accuracy for computing epsilon in 
-the diffusion and source-terms step of the k-epsilon model.' 
-NOM = 'PROFONDEUR MOYENNE POUR LA LINEARISATION' 
-NOM1 = 'MEAN DEPTH FOR LINEARIZATION' 
-TYPE = REEL 
-INDEX = 26 
-MNEMO = 'HAULIN' 
-TAILLE = 0 
-DEFAUT = 0. 
-DEFAUT1 = 0. 
-RUBRIQUE = 'EQUATIONS';'HAUTEUR' 
-RUBRIQUE1 = 'EQUATIONS';'HIGHT' 
-COMPORT = 
-'Foreground ("EQUATIONS*HAUTEUR") IS VALEUR (brown)' 
-NIVEAU = 2 
-AIDE = 'Fixe la hauteur d''eau autour de laquelle s''effectue la 
-linearisation lorsque l''option PROPAGATION LINEARISEE est choisie.' 
-AIDE1 = 'Sets the water depth about which the linearization is made when 
-the LINEARIZED PROPAGATION OPTION is selected.' 
-NOM = 'COEFFICIENT DE RUGOSITE DES BORDS' 
-NOM1 = 'ROUGHNESS COEFFICIENT OF BOUNDARIES' 
-TYPE = REEL 
-INDEX = 29 
-MNEMO = 'SB' 
-TAILLE = 0 
-DEFAUT = 100. 
-DEFAUT1 = 100. 
-RUBRIQUE = 'EQUATIONS' 
-RUBRIQUE1 = 'EQUATIONS' 
-NIVEAU = 1 
-AIDE = 'Fixe la valeur du coefficient de frottement sur les frontieres 
-solides avec un regime turbulent rugueux sur les bords du domaine. 
-meme convention que pour le coefficient de frottement: 
-                    1 : non programme 
-                    2 : coefficient de Chezy 
-                    3 : coefficient de Strickler 
-                    4 : coefficient de Manning 
-                    5 : hauteur de rugosite de Nikuradse' 
-AIDE1 = 'Sets the value of the friction coefficient of the solid boundary 
-with the bed roughness option. Same meaning than friction coefficient' 
-NOM = 'DEBITS IMPOSES' 
-NOM1 = 'PRESCRIBED FLOWRATES' 
-TYPE = REEL 
-INDEX = 30 
-MNEMO = 'DEBIT' 
-TAILLE = 2 
-RUBRIQUE = 'EQUATIONS, CONDITIONS LIMITES' 
-RUBRIQUE1 = 'EQUATIONS, BOUNDARY CONDITIONS' 
-COMPORT = 
-'Foreground ("EQUATIONS, CONDITIONS LIMITES") IS VALEUR (brown)' 
-NIVEAU = 1 
-AIDE = ' Valeurs des debits imposes aux frontieres liquides entrantes. 
-Lire la partie du mode d''emploi consacree aux conditions aux limites' 
-AIDE1 = 'Values of prescribed flowrates at the inflow boundaries. 
-The section about boundary conditions is to be read in the manual' 
-NOM = 'COTES IMPOSEES' 
-NOM1 = 'PRESCRIBED ELEVATIONS' 
-TYPE = REEL 
-INDEX = 31 
-MNEMO = 'COTES' 
-TAILLE = 2 
-RUBRIQUE = 'EQUATIONS, CONDITIONS LIMITES' 
-RUBRIQUE1 = 'EQUATIONS, BOUNDARY CONDITIONS' 
-NIVEAU = 1 
-AIDE = 'Valeurs des cotes imposees aux frontieres liquides entrantes. 
-Lire la partie du mode d''emploi consacree aux conditions aux limites' 
-AIDE1 = 'Values of prescribed elevations at the inflow boundaries. 
-The section about boundary conditions is to be read in the manual' 
-NOM = 'VITESSES IMPOSEES' 
-NOM1 = 'PRESCRIBED VELOCITIES' 
-TYPE = REEL 
-INDEX = 32 
-MNEMO = 'VITES' 
-TAILLE = 2 
-RUBRIQUE = 'EQUATIONS, CONDITIONS LIMITES' 
-RUBRIQUE1 = 'EQUATIONS, BOUNDARY CONDITIONS' 
-COMPORT = 
-'Foreground ("EQUATIONS, CONDITIONS LIMITES") IS VALEUR (brown)' 
-NIVEAU = 1 
-AIDE = 'Valeurs des vitesses imposees aux frontieres liquides entrantes. 
-Lire la partie du mode d''emploi consacree aux conditions aux limites' 
-AIDE1 ='Values of prescribed velocities at the liquid inflow boundaries. 
-Refer to the section dealing with the boundary conditions' 
-NOM = 'COTE INITIALE' 
-NOM1 = 'INITIAL ELEVATION' 
-TYPE = REEL 
-INDEX = 33 
-MNEMO = 'COTINI' 
-TAILLE = 0 
-DEFAUT = 0. 
-DEFAUT1 = 0. 
-RUBRIQUE = 'EQUATIONS, CONDITIONS INITIALES' 
-RUBRIQUE1 = 'EQUATIONS, INITIAL CONDITIONS' 
-COMPORT = 
-'Foreground ("EQUATIONS, CONDITIONS INITIALES") IS VALEUR (brown)' 
-NIVEAU = 1 
-CONTROLE = -427.; 8848. 
-AIDE = 'Valeur utilisee avec l''option : 
-     CONDITIONS INITIALES - COTE CONSTANTE' 
-AIDE1 ='Value to be used with the option : 
-INITIAL CONDITIONS  -CONSTANT ELEVATION' 
-NOM = 'HAUTEUR INITIALE' 
-NOM1 = 'INITIAL DEPTH' 
-TYPE = REEL 
-INDEX = 34 
-MNEMO = 'HAUTINI' 
-TAILLE = 0 
-DEFAUT = 0. 
-DEFAUT1 = 0. 
-RUBRIQUE = 'EQUATIONS, CONDITIONS INITIALES' 
-RUBRIQUE1 = 'EQUATIONS, INITIAL CONDITIONS' 
-NIVEAU = 1 
-CONTROLE = 0; 20 
-AIDE = 'Valeur utilisee avec l''option : 
-CONDITIONS INITIALES :-HAUTEUR CONSTANTE-' 
-AIDE1 = 'Value to be used along with the option: 
-         INITIAL CONDITIONS -CONSTANT DEPTH-' 
-NOM = 'VALEURS IMPOSEES DES TRACEURS' 
-NOM1 = 'PRESCRIBED TRACERS VALUES' 
-TYPE = REEL 
-INDEX = 35 
-MNEMO = 'TRACER' 
-TAILLE = 2 
-RUBRIQUE = 'EQUATIONS, CONDITIONS LIMITES' 
-RUBRIQUE1 = 'EQUATIONS, BOUNDARY CONDITIONS' 
-NIVEAU = 1 
-AIDE = 'Valeurs du traceur imposees aux frontieres liquides entrantes. 
-Lire la partie du mode d''emploi consacree aux conditions aux limites' 
-AIDE1 = 'Tracer values prescribed at the inflow boundaries. 
-Read the usermanual section dealing with the boundary conditions' 
-NOM = 'ABSCISSES DES SOURCES' 
-NOM1 = 'ABSCISSAE OF SOURCES' 
-TYPE = REEL 
-INDEX = 36 
-MNEMO = 'XSCE' 
-CONTROLE = -10000 ; 10000 
-TAILLE = 2 
-RUBRIQUE = 'EQUATIONS, SOURCES' 
-RUBRIQUE1 = 'EQUATIONS, SOURCE TERMS' 
-NIVEAU = 1 
-AIDE = 'Valeurs des abscisses des sources de debit et de traceur.' 
-AIDE1 = 'abscissae of sources of flowrate and/or tracer' 
-NOM = 'ORDONNEES DES SOURCES' 
-NOM1 = 'ORDINATES OF SOURCES' 
-TYPE = REEL 
-INDEX = 37 
-MNEMO = 'YSCE' 
-CONTROLE = -10000 ; 10000 
-TAILLE = 2 
-RUBRIQUE = 'EQUATIONS, SOURCES' 
-RUBRIQUE1 = 'EQUATIONS, SOURCE TERMS' 
-NIVEAU = 1 
-AIDE = 'Valeurs des ordonnees des sources de debit et de traceur.' 
-AIDE1 = 'ordinates of sources of flowrate and/or tracer' 
-NOM = 'DEBITS DES SOURCES' 
-NOM1 = 'WATER DISCHARGE OF SOURCES' 
-TYPE = REEL 
-INDEX = 38 
-MNEMO = 'DSCE' 
-CONTROLE = 0 ; 10000 
-TAILLE = 2 
-RUBRIQUE = 'EQUATIONS, SOURCES' 
-RUBRIQUE1 = 'EQUATIONS, SOURCE TERMS' 
-NIVEAU = 1 
-AIDE = 'Valeurs des debits des sources.' 
-AIDE1 = 'values of water discharge of sources' 
-NOM = 'VALEURS DES TRACEURS DES SOURCES' 
-NOM1 = 'VALUES OF THE TRACERS AT THE SOURCES' 
-TYPE = REEL 
-INDEX = 39 
-MNEMO = 'TSCE' 
-CONTROLE = 0 ; 10000 
-TAILLE = 2 
-RUBRIQUE = 'EQUATIONS, SOURCES' 
-RUBRIQUE1 = 'EQUATIONS, SOURCE TERMS' 
-NIVEAU = 1 
-AIDE = 'Valeurs des traceurs a chacune des sources' 
-AIDE1 = 'Values of the tracers at the sources' 
-NOM = 'VITESSES DES SOURCES SELON X' 
-NOM1 = 'VELOCITIES OF THE SOURCES ALONG X' 
-TYPE = REEL 
-INDEX = 43 
-MNEMO = 'USCE' 
-CONTROLE = 0 ; 10000 
-TAILLE = 2 
-RUBRIQUE = 'EQUATIONS, SOURCES' 
-RUBRIQUE1 = 'EQUATIONS, SOURCE TERMS' 
-NIVEAU = 1 
-AIDE = 'Vitesses du courant a chacune des sources. Si elles ne sont pas 
-donnees, on considere que la vitesse est celle du courant' 
-AIDE1 = 'Velocities at the sources. If they are not given, the velocity 
-of the flow at this location is taken' 
-NOM = 'VITESSES DES SOURCES SELON Y' 
-NOM1 = 'VELOCITIES OF THE SOURCES ALONG Y' 
-TYPE = REEL 
-INDEX = 44 
-MNEMO = 'VSCE' 
-CONTROLE = 0 ; 10000 
-TAILLE = 2 
-RUBRIQUE = 'EQUATIONS, SOURCES' 
-RUBRIQUE1 = 'EQUATIONS, SOURCE TERMS' 
-NIVEAU = 1 
-AIDE = 'Vitesses du courant a chacune des sources' 
-AIDE1 = 'Velocities at the sources' 
-NOM = 'COEFFICIENTS DE DECENTREMENT' 
-NOM1 = 'UPWIND COEFFICIENTS' 
-TYPE = REEL 
-INDEX = 40 
-MNEMO = 'COSUPG' 
-CONTROLE = 0 ; 10 
-TAILLE = 4 
-DEFAUT = 1.;1.;1.;1 
-DEFAUT1 = 1.;1.;1.;1 
-RUBRIQUE = 'PARAMETRES NUMERIQUES';'GENERAL' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS';'GENERAL' 
-NIVEAU = 3 
-AIDE = 'Coefficients utilises par la methode S.U.P.G. 
-ces coefficients sont respectivement appliques a 
-        1) U et V 
-        2) H ou C 
-        3) T 
-        4) K ET EPSILON  ' 
-AIDE1 = 'Upwind coefficients used by the S.U.P.G. method 
-These coefficients are applied respectively to 
-        1) U and V 
-        2) H  or C 
-        3) T 
-        4) K and epsilon  ' 
-NOM = 'CRITERES D''ARRET' 
-NOM1 = 'STOP CRITERIA' 
-TYPE = REEL 
-INDEX = 41 
-MNEMO = 'CRIPER' 
-CONTROLE = 0 ; 10 
-TAILLE = 3 
-DEFAUT = 1.E-4;1.E-4;1.E-4 
-DEFAUT1= 1.E-4;1.E-4;1.E-4 
-RUBRIQUE = 'PARAMETRES NUMERIQUES';'GENERAL' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS';'GENERAL' 
-NIVEAU = 2 
-AIDE = 'Criteres d''arret pour un ecoulement permanent 
-ces coefficients sont respectivement appliques a 
-        1) U et V 
-        2) H 
-        3) T 
-A utiliser avec le mot-cle : ARRET SI UN ETAT PERMANENT EST ATTEINT' 
-AIDE1 = 'Stop criteria for a steady state 
-These coefficients are applied respectively to 
-        1) U and V 
-        2) H 
-        3) T 
-To be used with the key-word: STOP IF A STEADY STATE IS REACHED' 
-NOM = 'DUREE DU CALCUL' 
-NOM1 = 'DURATION' 
-TYPE = REEL 
-INDEX = 45 
-MNEMO = 'DUREE' 
-TAILLE = 0 
-DEFAUT = 0. 
-DEFAUT1= 0. 
-RUBRIQUE = 'PARAMETRES NUMERIQUES';'DUREE DU CALCUL' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS';'DURATION' 
-NIVEAU = 1 
-AIDE = 'duree de la simulation. alternative au parametre nombre de pas 
-de temps. On en deduit le nombre de pas de temps en prenant l''entier le 
-plus proche de (duree du calcul/pas de temps). Si le nombre de pas de 
-temps est aussi donne, on prend la plus grande valeur' 
-AIDE1 = 'duration of simulation. May be used instead of the parameter 
-NUMBER OF TIME STEPS. The nearest integer to (duration/time step) is 
-taken. 
-If NUMBER OF TIME STEPS is also given, the greater value is taken' 
-NOM = 'NORD' 
-NOM1 = 'NORTH' 
-TYPE = REEL 
-INDEX = 46 
-MNEMO = 'NORD' 
-TAILLE = 0 
-DEFAUT = 0. 
-DEFAUT1= 0. 
-RUBRIQUE = 'CONSTANTES PHYSIQUES' 
-RUBRIQUE1 = 'PHYSICAL CONSTANTS' 
-NIVEAU = 2 
-AIDE = 'Direction du nord en degres, par rapport a l''axe des y 
-dans le sens trigonometrique. Notation decimale 10.5 signifie  10 degres 
-et trente minutes.' 
-AIDE1 = 'Angle of the North with the y axis, in degrees. 10.5 means 
-10 degrees and 30 minutes.' 
-NOM = 'TITRE' 
-NOM1 = 'TITLE' 
-TYPE = CARACTERE 
-INDEX = 1 
-MNEMO = 'TITCAS' 
-TAILLE = 0 
-DEFAUT = ' ' 
-DEFAUT1 = ' ' 
-RUBRIQUE = 'ENTREES-SORTIES, GENERALITES';'CALCUL' 
-RUBRIQUE1 = 'INPUT-OUTPUT, INFORMATION';'COMPUTATIONAL INFORMATION' 
-COMPORT = 
-'Foreground ("ENTREES-SORTIES, GENERALITES*CALCUL") 
-IS VALEUR (red)' 
-NIVEAU = 1 
-AIDE = 'Titre du cas etudie. Ce titre figurera sur les dessins.' 
-AIDE1 = 'Title of the case being considered. This title shall be marked 
-on the drawings.' 
-NOM = 'VARIABLES POUR LES SORTIES GRAPHIQUES' 
-NOM1 = 'VARIABLES FOR GRAPHIC PRINTOUTS' 
-TYPE = CARACTERE 
-INDEX = 2 
-MNEMO = 'SORTIE' 
-TAILLE = 0 
-DEFAUT = 'U,V,H,B' 
-DEFAUT1 = 'U,V,H,B' 
-CHOIX = 'U="vitesse suivant l''axe des x  (m/s)"'; 
-'V="vitesse suivant l''axe des y  (m/s)"'; 
-'C="celerite des onde  (m/s)"'; 
-'H="hauteur d''eau  (m)"'; 
-'S="cote de surface libre  (m)"'; 
-'B="cote du fond  (m)"'; 
-'F="nombre de Froude  "'; 
-'Q="debit scalaire du fluide  (m2/s)"'; 
-'T1="traceur 1, etc. "'; 
-'K="energie turbulente du modele k-epsilon  (J/kg)"'; 
-'E="dissipation de l''energie turbulente  (W/kg)"'; 
-'D="viscosite turbulente du modele k-epsilon  (m2/s)"'; 
-'I="debit suivant l''axe des x  (m2/s)"'; 
-'J="debit suivant l''axe des y  (m2/s)"'; 
-'M="vitesse scalaire  (m/s)"'; 
-'X="vent suivant l''axe des x  (m/s)"'; 
-'Y="vent suivant l''axe des y  (m/s)"'; 
-'P="pression atmospherique  (Pa)"'; 
-'W="coefficient de frottement sur le fond  "'; 
-'A="derive en x  (m)"'; 
-'G="derive en y  (m)"'; 
-'L="nombre de Courant  "'; 
-'N="variable supplementaire N "'; 
-'O="variable supplementaire O "'; 
-'R="variable supplementaire R "'; 
-'Z="variable supplementaire Z "'; 
-'MAXZ="cote maximum "'; 
-'TMXZ="temps de la cote maximum "'; 
-'MAXV="vitesse maximum "'; 
-'TMXV="temps de la vitesse maximum "'; 
-'US="vitesse de frottement "' 
-CHOIX1= 'U="velocity along x axis  (m/s)"'; 
-'V="velocity along y axis  (m/s)"'; 
-'C="wave celerity  (m/s)"'; 
-'H="water depth  (m)"'; 
-'S="free surface elevation  (m)"'; 
-'B="bottom elevation  (m)"'; 
-'F="Froude number  "'; 
-'Q="scalar flowrate of fluid  (m2/s)"'; 
-'T1="tracer 1 etc. "'; 
-'K="turbulent kinetic energy in k-epsilon model  (J/kg)"'; 
-'E="dissipation of turbulent energy  (W/kg)"'; 
-'D="turbulent viscosity of k-epsilon model  (m2/s)"'; 
-'I="flowrate along x axis  (m2/s)"'; 
-'J="flowrate along y axis  (m2/s)"'; 
-'M="scalar velocity  (m/s)"'; 
-'X="wind along x axis  (m/s)"'; 
-'Y="wind along y axis  (m/s)"'; 
-'P="air pressure  (Pa)"'; 
-'W="friction coefficient"'; 
-'A="drift along x  (m)"'; 
-'G="drift along y  (m)"'; 
-'L="Courant number "'; 
-'N="supplementary variable N "'; 
-'O="supplementary variable O "'; 
-'R="supplementary variable R "'; 
-'Z="supplementary variable Z  "'; 
-'MAXZ="maximum elevation"'; 
-'TMXZ="time of maximum elevation "'; 
-'MAXV="maximum velocity"'; 
-'TMXV="time of maximum velocity"'; 
-'US="friction velocity  "' 
-COMPOSE=',' 
-APPARENCE = 'packing IS XmPACK_COLUMN' ; 
-    'numColumns IS 26';'LISTE IS EDITABLE' 
-RUBRIQUE = 'ENTREES-SORTIES, GRAPHIQUES ET LISTING' 
-RUBRIQUE1 = 'INPUT-OUTPUT, GRAPHICS AND LISTING' 
-NIVEAU = 1 
-AIDE = 'Noms des variables que l''utilisateur veut ecrire dans 
-le fichier des resultats. 
-Chaque variable est representee par une lettre. 
-Le choix des separateurs est libre. 
-Les possibilites offertes sont les suivantes : 
-   - U : vitesse suivant l''axe des x (m/s), 
-   - V : vitesse suivant l''axe des y (m/s), 
-   - C : celerite des ondes (m/s), 
-   - H : hauteur d''eau (m), 
-   - S : cote de surface libre (m), 
-   - B : cote du fond (m), 
-   - F : nombre de Froude, 
-   - Q : debit scalaire du fluide (m2/s), 
-   - T : traceur, 
-   - K : energie turbulente du modele k-epsilon (J/kg), 
-   - E : dissipation de l''energie turbulente (W/kg), 
-   - D : viscosite turbulente du modele k-epsilon (m2/s), 
-   - I : debit suivant l''axe des x (m2/s), 
-   - J : debit suivant l''axe des y (m2/s), 
-   - M : vitesse scalaire (m/s), 
-   - X : vent suivant l''axe des x (m/s), 
-   - Y : vent suivant l''axe des y (m/s), 
-   - P : pression atmospherique (Pa), 
-   - W : coefficient de frottement sur le fond, 
-   - A : derive en x (m), 
-   - G : derive en y (m), 
-   - L : coefficient de frottement sur le fond. 
-L''utilisateur dispose egalement de 4 champs libres, qu''il peut 
-utiliser pour ecrire dans le fichier des resultats des variables 
-qu''il cree lui-meme. Ces variables propres a l''utlisateur doivent 
-etre calculees dans le sous-programme PRERES et le nom que l''on 
-desire leur donner doit etre ecrit dans le sous-programme NOMVAR. 
-Ces 7 champs sont : 
-  - N, O, R, Z qui correspondent aux tableaux PRIVE(1,1), PRIVE(1,2), 
-PRIVE(1,3), PRIVE(1,4). A la difference des variables 
-precedentes, celles-ci sont conservees dans tout le programme, et 
-peuvent donc etre reutilisees. 
-Dans ce dernier cas ne pas oublier de donner une taille 
-suffisante au tableau PRIVE (dans le programme principal). 
-Il est ainsi possible de limiter, par exemple, la taille des fichiers 
-de resultats pour de tres gros calculs. Cependant, il faut etre 
-conscient du fait que, dans l''eventualite d''une reprise de calcul, 
-le code doit disposer, dans le fichier des resultats, des informations 
-necessaires a sa poursuite, a savoir : 
- - les vitesses U et V, 
- - les hauteurs d''eau H, 
- - les cotes du fond B. 
-Toutefois, TELEMAC peut recalculer certaines de ces variables a partir 
-d''autres qui lui seront fournies (par exemple, il recalculera H a 
-partir de S et B).' 
-AIDE1 = 'Names of variables the user wants to write into the results 
-file. Each variable is represented by a letter. The separators can be 
-freely selected. 
-The available capabilities are as follows: 
-        U     :   velocity along x axis (m/s), 
-        V     :   velocity along y axis (m/s), 
-        C     :   wave celerity (m/s), 
-        H     :   water depth (m), 
-        S     :   free surface elevation (m), 
-        B     :   bottom elevation (m), 
-        F     :   Froude number, 
-        Q     :   scalar flowrate of fluid (m2/s), 
-        T     :   tracer 
-        K     :   turbulent kinetic energy in k-epsilon model (J/kg), 
-        E     :   dissipation of turbulent energy (W/kg), 
-        D     :   turbulent viscosity of k-epsilon model (m2/s), 
-        I     :   flowrate along x axis (m2/s), 
-        J     :   flowrate along y axis (m2/s), 
-        M     :   scalar velocity (m/s), 
-        X     :   wind along x axis (m/s) 
-        Y     :   wind along y axis (m/s), 
-        P     :   air pressure (Pa), 
-        W     :   friction coefficient , 
-        A     :   drift along x, 
-        G     :   drift along y, 
-        L     :   nombre de courant. 
-four other variables are also made available to the user who may use 
-them for writing into the file the results of variables he creates 
-himself. These user-specific variables should be computed in the 
-subroutine PRERES and their desired name should be written 
-into the subroutine NOMVAR. 
-These seven variables are as follows: 
-        -N, O, R, Z which correspond to arrays PRIVE(1,1) up to PRIVE(1, 
-Unlike the preceding variables, they are preserved throughout the 
-program, so that they can be used again. 
-In the latter case, do not forget to provide the array PRIVE with 
-sufficiently large dimensions (in FORTRAN file). 
-With this key-word, one can limit the size of the RESULTS FILE. 
-It should be kept in mind, however, that if a computation has to be 
-continued, the RESULTS FILE should contain the appropriate information 
-for running the code,i.e.: 
- - velocities U and V, 
- - water depths H, 
- - bottom elevations B. 
-TELEMAC, however, can compute some of these variables from others 
-for example, it will compute H from S and B.' 
-NOM = 'VARIABLES A IMPRIMER' 
-NOM1 = 'VARIABLES TO BE PRINTED' 
-TYPE = CARACTERE 
-INDEX = 3 
-MNEMO = 'VARIMP' 
-TAILLE = 0 
-DEFAUT = ' ' 
-DEFAUT1 = ' ' 
-/CHOIX = '" "="pas de variables"'; 
-CHOIX = 'U="vitesse suivant l''axe des x (m/s)"'; 
-'V="vitesse suivant l''axe des y (m/s)"'; 
-'C="celerite des ondes (m/s)"'; 
-'H="hauteur d''eau (m)"'; 
-'S="cote de surface libre (m)"'; 
-'B="cote du fond (m)"'; 
-'F="nombre de Froude"'; 
-'Q="debit scalaire du fluide (m2/s)"'; 
-'T="traceur"'; 
-'K="energie turbulente du modele k-epsilon (J/kg)"'; 
-'E="dissipation de l''energie turbulente (W/kg)"'; 
-'D="viscosite turbulente du modele k-epsilon (m2/s)"'; 
-'I="debit suivant l''axe des x (m2/s)"'; 
-'J="debit suivant l''axe des y (m2/s)"'; 
-'M="vitesse scalaire (m/s)"'; 
-'X="vent suivant l''axe des x (m/s)"'; 
-'Y="vent suivant l''axe des y (m/s)"'; 
-'P="pression atmospherique (Pa)"'; 
-'W="coefficient de frottement sur le fond"'; 
-'A="derive en x  (m)"'; 
-'G="derive en y  (m)"'; 
-'L="nombre de courants "'; 
-'N="variable supplementaire N"'; 
-'O="variable supplementaire O"'; 
-'R="variable supplementaire R"'; 
-'Z="variable supplementaire Z"' 
-CHOIX1 = 'U="velocity along x axis (m/s)"'; 
-'V="velocity along y axis (m/s)"'; 
-'C="wave celerity (m/s)"'; 
-'H="water depth (m)"'; 
-'S="free surface elevation (m)"'; 
-'B="bottom elevation (m)"'; 
-'F="Froude number"'; 
-'Q="scalar flowrate of fluid (m2/s)"'; 
-'T="tracer"'; 
-'K="turbulent kinetic energy in k-epsilon model (J/kg)"'; 
-'E="dissipation of turbulent energy (W/kg)"'; 
-'D="turbulent viscosity of k-epsilon model (m2/s)"'; 
-'I="flowrate along x axis (m2/s)"'; 
-'J="flowrate along y axis (m2/s)"'; 
-'M="scalar velocity (m/s)"'; 
-'X="wind along x axis (m/s)"'; 
-'Y="wind along y axis (m/s)"'; 
-'P="air pressure (Pa)"'; 
-'W="friction coefficient"'; 
-'A="drift along x  (m)"'; 
-'G="drift along y  (m)"'; 
-'L="nombre de courants "'; 
-'N="supplementary variable N"'; 
-'O="supplementary variable O"'; 
-'R="supplementary variable R"'; 
-'Z="supplementary variable Z"' 
-COMPOSE=',' 
-APPARENCE = 'packing IS XmPACK_COLUMN' ; 'numColumns IS 26' ; 
-'LISTE IS EDITABLE' 
-RUBRIQUE = 'ENTREES-SORTIES, GRAPHIQUES ET LISTING' 
-RUBRIQUE1 = 'INPUT-OUTPUT, GRAPHICS AND LISTING' 
-NIVEAU = 1 
-AIDE = 'Nom des variables que l''utilisateur desire ecrire a l''ecran. 
-Meme possibilites que pour les sorties graphiques.' 
-AIDE1 = '' 
-NOM = 'USER CRAY' 
-NOM1 = 'USER CRAY' 
-TYPE = CARACTERE 
-INDEX = 4 
-MNEMO = '' 
-TAILLE = 0 
-DEFAUT = ' ' 
-DEFAUT1 = ' ' 
-RUBRIQUE = 'ENTREES-SORTIES, GENERALITES';'ENVIRONNEMENT' 
-RUBRIQUE1 = 'INPUT-OUTPUT, INFORMATION';'COMPUTATION ENVIRONMENT' 
-COMPORT = 
-'Foreground ("ENTREES-SORTIES, GENERALITES*ENVIRONNEMENT") 
-IS VALEUR (red)' 
-NIVEAU = 2 
-AIDE = 'Userid CRAY de l''utilisateur.' 
-AIDE1 = 'User''s identity on CRAY.' 
-NOM = 'MOT DE PASSE CRAY' 
-NOM1 = 'PASSWORD' 
-TYPE = CARACTERE 
-INDEX = 5 
-MNEMO = '' 
-TAILLE = 0 
-DEFAUT = ' ' 
-DEFAUT1 = ' ' 
-RUBRIQUE = 'ENTREES-SORTIES, GENERALITES';'ENVIRONNEMENT' 
-RUBRIQUE1 = 'INPUT-OUTPUT, INFORMATION';'COMPUTATION ENVIRONMENT' 
-NIVEAU = 2 
-AIDE = 'Mot de passe associe a l''USER CRAY.' 
-AIDE1 = 'Password related to USER CRAY.' 
-NOM = 'FICHIER FORTRAN' 
-NOM1 = 'FORTRAN FILE' 
-TYPE = CARACTERE 
-INDEX = 7 
-MNEMO = 'NOMFOR' 
-SUBMIT = 'INUTILE;t2dfort.f;FACUL;ASC;LIT;FORTRAN' 
-DEFAUT = 'DEFAUT' 
-DEFAUT1 = 'DEFAUT' 
-RUBRIQUE = 'ENTREES-SORTIES, FICHIERS';'NOMS' 
-RUBRIQUE1 = 'INPUT-OUTPUT, FILES';'NAMES' 
-NIVEAU = 1 
-APPARENCE = 'LISTE IS FICHIER' 
-AIDE = 'Nom du fichier FORTRAN a soumettre.' 
-AIDE1 = 'Name of FORTRAN file to be submitted.' 
-NOM = 'FICHIER DES PARAMETRES' 
-NOM1 = 'STEERING FILE' 
-TYPE = CARACTERE 
-INDEX = 8 
-MNEMO = 'NOMCAS' 
-SUBMIT = 'INUTILE;T2DCAS;OBLIG;ASC;LIT;CAS' 
-DEFAUT = ' ' 
-DEFAUT1 = ' ' 
-NIVEAU = 1 
-APPARENCE = 'LISTE IS FICHIER' 
-RUBRIQUE = 'ENTREES-SORTIES, FICHIERS';'NOMS' 
-RUBRIQUE1 = 'INPUT-OUTPUT, FILES';'NAMES' 
-AIDE = 'Nom du fichier contenant les parametres du calcul a realiser.' 
-AIDE1 = 'Name of the file containing the parameters of the computation 
-Written by the user.' 
-NOM = 'FICHIER DES CONDITIONS AUX LIMITES' 
-NOM1 = 'BOUNDARY CONDITIONS FILE' 
-TYPE = CARACTERE 
-INDEX = 9 
-MNEMO = 'T2D_FILES(T2DLIM)%NAME' 
-SUBMIT = 'T2DLIM-READ-07;T2DCLI;OBLIG;ASC;LIT;CONLIM' 
-/DEFAUT = ' ' 
-/DEFAUT1 = ' ' 
-RUBRIQUE = 'ENTREES-SORTIES, FICHIERS';'NOMS' 
-RUBRIQUE1 = 'INPUT-OUTPUT, FILES';'NAMES' 
-APPARENCE = 'LISTE IS FICHIER' 
-NIVEAU = 1 
-AIDE = 'Nom du fichier contenant les types de conditions aux limites. 
-Ce fichier est rempli de facon automatique par le mailleur au moyen de 
-couleurs affectees aux noeuds des frontieres du domaine de calcul.' 
-AIDE1 = 'Name of the file containing the types of boundary conditions. 
-This file is filled automatically by the mesh generator through 
-through colours that are assigned to the boundary nodes.' 
-NOM = 'FICHIER DU CALCUL PRECEDENT' 
-NOM1 = 'PREVIOUS COMPUTATION FILE' 
-TYPE = CARACTERE 
-INDEX = 10 
-MNEMO = 'T2D_FILES(T2DPRE)%NAME' 
-SUBMIT = 'T2DPRE-READ-04;T2DPRE;FACUL;BIN;LIT;SELAFIN' 
-DEFAUT = ' ' 
-DEFAUT1 = ' ' 
-NIVEAU = 1 
-APPARENCE = 'LISTE IS FICHIER' 
-RUBRIQUE = 'ENTREES-SORTIES, FICHIERS';'NOMS' 
-RUBRIQUE1 = 'INPUT-OUTPUT, FILES';'NAMES' 
-AIDE = 'Nom d''un fichier contenant les resultats d''un calcul precedent 
-realise sur le meme maillage et dont le dernier pas de temps enregistre 
-va fournir les conditions initiales pour une suite de de calcul.' 
-AIDE1 = 'Name of a file containing the results of an earlier computation 
-which was made on the same mesh. The last recorded time step will provid 
-the initial conditions for the new computation.' 
-NOM = 'FICHIER DES RESULTATS' 
-NOM1 = 'RESULTS FILE' 
-TYPE = CARACTERE 
-INDEX = 11 
-MNEMO = 'T2D_FILES(T2DRES)%NAME' 
-/ READWRITE CAR RELU EN CAS DE VALIDATION 
-SUBMIT = 'T2DRES-READWRITE-08;T2DRES;OBLIG;BIN;ECR;SELAFIN' 
-DEFAUT = ' ' 
-DEFAUT1 = ' ' 
-NIVEAU = 1 
-APPARENCE = 'LISTE IS FICHIER' 
-RUBRIQUE = 'ENTREES-SORTIES, FICHIERS';'NOMS' 
-RUBRIQUE1 = 'INPUT-OUTPUT, FILES';'NAMES' 
-AIDE = 'Nom du fichier dans lequel seront ecrits les resultats du calcul 
-avec la periodicite donnee par le mot cle ''PERIODE POUR LES SORTIES 
-GRAPHIQUES''.' 
-AIDE1 = 'Name of the file into which the computation results shall be 
-written, 
-the periodicity being given by the key-word: 
-GRAPHIC PRINTOUT PERIOD.' 
-NOM = 'NUMERO DE VERSION' 
-NOM1 = 'RELEASE' 
-TYPE = CARACTERE 
-INDEX = 12 
-MNEMO = '' 
-TAILLE = 0 
-DEFAUT = 'V6P3' 
-DEFAUT1 = 'V6P3' 
-RUBRIQUE = 'ENTREES-SORTIES, GENERALITES';'CALCUL' 
-RUBRIQUE1 = 'INPUT-OUTPUT, INFORMATION';'COMPUTATIONAL INFORMATION' 
-NIVEAU = -3 
-AIDE = 'Numero de version des bibliotheques utilisees par TELEMAC.
-SUR UNE STATION DE TRAVAIL 
-5 versions sont donnees correspondant a : 
-TELEMAC,DAMO,UTILE,BIEF,HP' 
-AIDE1 = 'version number of the libraries used by TELEMAC.
-ON A WORKSTATION 
-5 numbers are given, corresponding to the libraries called: 
-TELEMAC,DAMO,UTILE,BIEF,HP' 
-NOM = 'TEMPS MACHINE CRAY' 
-NOM1 = 'CPU TIME' 
-TYPE = CARACTERE 
-INDEX = 13 
-MNEMO = '' 
-DEFAUT = '10' 
-DEFAUT1 = '10' 
-NIVEAU = 2 
-RUBRIQUE = 'ENTREES-SORTIES, GENERALITES';'ENVIRONNEMENT' 
-RUBRIQUE1 = 'INPUT-OUTPUT, INFORMATION';'COMPUTATION ENVIRONMENT' 
-AIDE = 'Temps CPU (en secondes) alloue pour la realisation du calcul. 
-Attention; il s''agit bien d''une chaine de caracteres.' 
-AIDE1 = 'C.P.U. time (in seconds) allowed for making the computation. 
-Please note that this keyword is a string of characters.' 
-NOM = 'PLACE MEMOIRE CRAY' 
-NOM1 = 'MEMORY SPACE' 
-TYPE = CARACTERE 
-INDEX = 14 
-MNEMO = '' 
-TAILLE = 0 
-DEFAUT = '1500000W' 
-DEFAUT1 = '1500000W' 
-RUBRIQUE = 'ENTREES-SORTIES, GENERALITES';'ENVIRONNEMENT' 
-RUBRIQUE1 = 'INPUT-OUTPUT, INFORMATION';'COMPUTATION ENVIRONMENT' 
-NIVEAU = 2 
-AIDE = 'Place memoire (en mots de 8 octets) reservee en machine pour la 
-realisation du calcul.' 
-AIDE1 = 'Storage capacity (in words of 8 bytes) reserved in machine for 
-making the computation.' 
-NOM = 'FICHIER DES FONDS' 
-NOM1 = 'BOTTOM TOPOGRAPHY FILE' 
-TYPE = CARACTERE 
-INDEX = 15 
-MNEMO = 'T2D_FILES(T2DFON)%NAME' 
-SUBMIT = 'T2DFON-READ-23;T2DFON;FACUL;ASC;LIT;PARAL' 
-DEFAUT = ' ' 
-DEFAUT1 = ' ' 
-NIVEAU = 1 
-APPARENCE = 'LISTE IS FICHIER' 
-RUBRIQUE = 'ENTREES-SORTIES, FICHIERS';'NOMS' 
-RUBRIQUE1 = 'INPUT-OUTPUT, FILES';'NAMES' 
-AIDE = 'Nom du fichier eventuel contenant la bathymetrie associee au 
-maillage. 
-Si ce mot-cle est utilise; c''est cette bathymetrie qui sera utilisee 
-pour le calcul.' 
-AIDE1 = 'Name of the possible file containing the bathymetric data. 
-Where this keyword is used, these bathymetric data shall be used in 
-the computation.' 
-NOM = 'NUMERO DE COMPTE' 
-NOM1 = 'ACCOUNT NUMBER' 
-TYPE = CARACTERE 
-INDEX = 16 
-MNEMO = ' ' 
-DEFAUT = ' ' 
-DEFAUT1 = ' ' 
-NIVEAU = 2 
-RUBRIQUE = 'ENTREES-SORTIES, GENERALITES';'ENVIRONNEMENT' 
-RUBRIQUE1 = 'INPUT-OUTPUT, INFORMATION';'COMPUTATION ENVIRONMENT' 
-AIDE = 'Numero du compte calcul sur lequel sera impute le cout 
-du calcul.' 
-AIDE1 = 'Account number to which the cost of computation shall be 
-charged.' 
-NOM = 'FICHIER DE DONNEES BINAIRE 1' 
-NOM1 = 'BINARY DATA FILE 1' 
-TYPE = CARACTERE 
-INDEX = 17 
-MNEMO = 'T2D_FILES(T2DBI1)%NAME' 
-/WITH WAVE FORCING, IS A SELAFIN FILE 
-SUBMIT = 'T2DBI1-READ-24;T2DBI1;FACUL;BIN;LIT;SELAFIN' 
-/SUBMIT = 'NBI1-READ-24;T2DBI1;FACUL;BIN;LIT;PARAL' 
-DEFAUT = ' ' 
-DEFAUT1 = ' ' 
-APPARENCE = 'LISTE IS FICHIER' 
-NIVEAU = 1 
-RUBRIQUE = 'ENTREES-SORTIES, FICHIERS';'NOMS' 
-RUBRIQUE1 = 'INPUT-OUTPUT, FILES';'NAMES' 
-AIDE = 'Fichier de donnees code en binaire mis a la disposition 
-de l''utilisateur. 
-Les donnees de ce fichier seront a lire sur le canal 24.' 
-AIDE1 = 'Binary-coded data file made available to the user. 
-The data in this file shall be read on channel 24.' 
-NOM = 'FICHIER DE DONNEES BINAIRE 2' 
-NOM1 = 'BINARY DATA FILE 2' 
-TYPE = CARACTERE 
-INDEX = 18 
-MNEMO = 'T2D_FILES(T2DBI2)%NAME' 
-TAILLE = 0 
-SUBMIT = 'T2DBI2-READ-25;T2DBI2;FACUL;BIN;LIT;PARAL' 
-DEFAUT = ' ' 
-DEFAUT1 = ' ' 
-NIVEAU = 1 
-APPARENCE = 'LISTE IS FICHIER' 
-RUBRIQUE = 'ENTREES-SORTIES, FICHIERS';'NOMS' 
-RUBRIQUE1 = 'INPUT-OUTPUT, FILES';'NAMES' 
-AIDE = 'Fichier de donnees code en binaire mis a la disposition 
-de l''utilisateur. 
-Les donnees de ce fichier seront a lire sur le canal 25.' 
-AIDE1 = 'Binary-coded data file made available to the user. 
-The data in this file shall be read on channel 25.' 
-NOM = 'FICHIER DE DONNEES FORMATE 1' 
-NOM1 = 'FORMATTED DATA FILE 1' 
-TYPE = CARACTERE 
-INDEX = 19 
-MNEMO = 'T2D_FILES(T2DFO1)%NAME' 
-SUBMIT = 'T2DFO1-READ-26;T2DFO1;FACUL;ASC;LIT;PARAL' 
-DEFAUT = ' ' 
-DEFAUT1 = ' ' 
-NIVEAU = 1 
-APPARENCE = 'LISTE IS FICHIER' 
-RUBRIQUE = 'ENTREES-SORTIES, FICHIERS';'NOMS' 
-RUBRIQUE1 = 'INPUT-OUTPUT, FILES';'NAMES' 
-AIDE = 'Fichier de donnees formate mis a la disposition de 
-l''utilisateur. 
-Les donnees de ce fichier seront a lire sur le canal 26.' 
-AIDE1 = 'Formatted data file made available to the user. 
-The data in this file shall be read on channel 26.' 
-NOM = 'FICHIER DE DONNEES FORMATE 2' 
-NOM1 = 'FORMATTED DATA FILE 2' 
-TYPE = CARACTERE 
-INDEX = 20 
-MNEMO = 'T2D_FILES(T2DFO2)%NAME' 
-SUBMIT = 'T2DFO2-READ-27;T2DFO2;FACUL;ASC;LIT;PARAL' 
-DEFAUT = ' ' 
-DEFAUT1 = ' ' 
-NIVEAU = 1 
-APPARENCE = 'LISTE IS FICHIER' 
-RUBRIQUE = 'ENTREES-SORTIES, FICHIERS';'NOMS' 
-RUBRIQUE1 = 'INPUT-OUTPUT, FILES';'NAMES' 
-AIDE = 'Fichier de donnees formate mis a la disposition de 
-l''utilisateur. 
-Les donnees de ce fichier seront a lire sur le canal 27.' 
-AIDE1 = 'Formatted data file made available to the user. 
-The data in this file shall be read on channel 27.' 
-NOM = 'DESTINATION' 
-NOM1 = 'DESTINATION' 
-TYPE = CARACTERE 
-INDEX = 21 
-MNEMO = '' 
-DEFAUT = 'CHE43A' 
-DEFAUT1 = 'CHE43A' 
-RUBRIQUE = 'ENTREES-SORTIES, GENERALITES';'ENVIRONNEMENT' 
-RUBRIQUE1 = 'INPUT-OUTPUT, INFORMATION';'COMPUTATION ENVIRONMENT' 
-NIVEAU = 2 
-AIDE = 'Nom eventuel d''une station de travail sur laquelle 
-l''utilisateur desire rediriger le fichier des resultats du calcul.' 
-AIDE1 = 'Possible name of a workstation to which the user wants 
-to reroute the result file.' 
-NOM = 'USER SUR LA DESTINATION' 
-NOM1 = 'USER ON DESTINATION' 
-TYPE = CARACTERE 
-INDEX = 22 
-MNEMO = '' 
-TAILLE = 0 
-DEFAUT = 'JMH' 
-DEFAUT1 = 'JMH' 
-RUBRIQUE = 'ENTREES-SORTIES, GENERALITES';'ENVIRONNEMENT' 
-RUBRIQUE1 = 'INPUT-OUTPUT, INFORMATION';'COMPUTATION ENVIRONMENT' 
-NIVEAU = 2 
-AIDE = 'Nom de l''USER de l''utilisateur sur la station de travail 
-ou l''on desire rediriger le fichier de resultts.' 
-AIDE1 = 'User''s name of USER at the workstation onto which the 
-results file shall desirebly be rerouted.' 
-NOM = 'NOMS DES VARIABLES CLANDESTINES' 
-NOM1 = 'NAMES OF CLANDESTINE VARIABLES' 
-TYPE = CARACTERE 
-INDEX = 23 
-MNEMO = 'VARCLA' 
-TAILLE = 2 
-RUBRIQUE = 'ENTREES-SORTIES, GENERALITES';'CALCUL' 
-RUBRIQUE1 = 'INPUT-OUTPUT, INFORMATION';'COMPUTATIONAL INFORMATION' 
-NIVEAU = 1 
-AIDE = 'Noms de variables qui ne sont pas utilisees par TELEMAC; 
-mais qui doivent etre conservees lors de son execution. 
-Ceci peut etre utilise entre autres lors du couplage de TELEMAC 
-avec un autre code. 
-Les variables clandestines sont alors des variables propres a l''autre 
-code et sont rendues dans le fichier de resultats.' 
-AIDE1 = 'Names of variables that are not used by TELEMAC, but should be 
-preserved when it is being run. This keyword may be used, for instance 
-when it if TELEMAC is coupled with another code. Thus, the clandestine 
-variables belong to the other code and are given back in the results 
-file.' 
-NOM = 'FICHIER DE RESULTATS BINAIRE' 
-NOM1 = 'BINARY RESULTS FILE' 
-TYPE = CARACTERE 
-INDEX = 24 
-MNEMO = 'T2D_FILES(T2DRBI)%NAME' 
-SUBMIT = 'T2DRBI-WRITE-28;T2DRBI;FACUL;BIN;ECR;PARAL' 
-DEFAUT = ' ' 
-DEFAUT1 = ' ' 
-APPARENCE = 'LISTE IS FICHIER' 
-RUBRIQUE = 'ENTREES-SORTIES, FICHIERS';'NOMS' 
-RUBRIQUE1 = 'INPUT-OUTPUT, FILES';'NAMES' 
-NIVEAU = 1 
-AIDE = 'Fichier de resultats code en binaire mis a la disposition 
-de l''utilisateur. Les resultats a placer dans ce fichier seront a 
-ecrire sur le canal 28.' 
-AIDE1 = 'Additional binary-coded result file made available 
-to the user. The results to be entered into this file shall be written 
-on channel 28.' 
-NOM = 'FICHIER DE RESULTATS FORMATE' 
-NOM1 = 'FORMATTED RESULTS FILE' 
-TYPE = CARACTERE 
-INDEX = 25 
-MNEMO = 'T2D_FILES(T2DRFO)%NAME' 
-SUBMIT = 'T2DRFO-WRITE-29;T2DRFO;FACUL;ASC;ECR;PARAL' 
-DEFAUT = ' ' 
-DEFAUT1 = ' ' 
-NIVEAU = 1 
-APPARENCE = 'LISTE IS FICHIER' 
-RUBRIQUE = 'ENTREES-SORTIES, FICHIERS';'NOMS' 
-RUBRIQUE1 = 'INPUT-OUTPUT, FILES';'NAMES' 
-AIDE = 'Fichier de resultats formate mis a la disposition de 
-l''utilisateur. 
-Les resultats a placer dans ce fichier seront a ecrire sur 
-le canal 29.' 
-AIDE1 = 'Formatted file of results made available to the user. 
-The results to be entered into this file shall be written 
-on channel 29.' 
-NOM = 'CONDITIONS INITIALES' 
-NOM1 = 'INITIAL CONDITIONS' 
-TYPE = CARACTERE 
-INDEX = 26 
-MNEMO = 'CDTINI' 
-DEFAUT = 'COTE NULLE' 
-DEFAUT1 = 'ZERO ELEVATION' 
-NIVEAU = 1 
-CHOIX = '"COTE NULLE"'; '"COTE CONSTANTE"'; 
-'"HAUTEUR NULLE"'; '"HAUTEUR CONSTANTE"'; '"PARTICULIERES"' ;
-'"ALTIMETRIE SATELLITE TPXO"'
-CHOIX1 = '"ZERO ELEVATION"'; '"CONSTANT ELEVATION"'; 
-'"ZERO DEPTH"'; '"CONSTANT DEPTH"'; '"SPECIAL"' ;
-'"TPXO SATELLITE ALTIMETRY"'
-RUBRIQUE = 'EQUATIONS, CONDITIONS INITIALES' 
-RUBRIQUE1 = 'EQUATIONS, INITIAL CONDITIONS' 
-AIDE = 'Permet de definir les conditions initiales sur 
-les hauteurs d''eau. 
-Les valeurs possibles sont : 
-   - COTE NULLE. Initialise la cote de surface libre a 0.
-           Les hauteurs d''eau initiales sont alors retrouvees en 
-           faisant la difference entre les cotes de surface libre 
-           et du fond. 
-   - COTE CONSTANTE .Initialise la cote de surface libre a la 
-           valeur donnee par le mot-cle COTE INITIALE. Les hauteurs 
-           d''eau initiales sont calculees comme precedemment. 
-   - HAUTEUR NULLE .Initialise les hauteurs d''eau a 0.
-   - HAUTEUR CONSTANTE. Initialise les hauteurs d''eau a la valeur 
-           donnee par le mot-cle HAUTEUR INITIALE. 
-   - PARTICULIERES. Les conditions initiales sur la hauteur d''eau 
-           doivent etre precisees dans le sous-programme CONDIN.
-   - ALTIMETRIE SATELLITE TPXO. Les conditions initiales sur la hauteur
-           d''eau et les vitesses sont etiblies sur la base des donnees
-           satellite TPXO dont les 8 premiers constistuents ont ete extrait
-           et sauves dans le fichier BASE DE DONNEES DE MAREE.' 
-AIDE1 = 'Makes it possible to define the initial conditions with 
-the water depth. 
-The possible values are as follows: 
-   - ZERO ELEVATION-. Initializes the free surface elevation to 0.
-The initial water depths are then found by computing the difference 
-between the free surface and the bottom. 
-   - CONSTANT ELEVATION-. Initializes the water elevation to the value
-given by the keyword -INITIAL ELEVATION-. The initial water depths 
-are computed as in the previous case. 
-   - ZERO DEPTH-. Initializes the water depths to 0.
-   - CONSTANT DEPTH-. Initializes the water depths to the value given
-by the key-word -INITIAL DEPTH-.
-   - SPECIAL-. The initial conditions with the water depth should be
-stated in the CONDIN subroutine.
-   - TPXO SATELITE ALTIMETRY. The initial conditions on the free surface and
-velocities are established from the TPXO satellite program data, the harmonic
-constituents of which are stored in the TIDE DATA BASE file.' 
-NOM = 'FORMAT DU FICHIER DE GEOMETRIE' 
-NOM1 = 'GEOMETRY FILE FORMAT' 
-TYPE = CARACTERE 
-INDEX = 27 
-MNEMO = '????' 
-DEFAUT = 'SERAFIN ' 
-DEFAUT1 = 'SERAFIN ' 
-NIVEAU = 2 
-CHOIX = 'SERAFIN ';'SERAFIND';'MED     ' 
-RUBRIQUE = 'ENTREES-SORTIES, FICHIERS' 
-RUBRIQUE1 = 'INPUT-OUTPUT, FILES' 
-AIDE = 'Format du fichier de geometrie. 
-Les valeurs possibles sont : 
-- SERAFIN : format standard simple precision pour Telemac;  
-- SERAFIND: format standard double precision pour Telemac; 
-- MED     : format MED base sur HDF5' 
-AIDE1 = 'Geometry file format. 
-Possible values are: 
-- SERAFIN : classical single precision format in Telemac;  
-- SERAFIND: classical double precision format in Telemac; 
-- MED     : MED format based on HDF5' 
-NOM = 'FORMAT DU FICHIER DES RESULTATS' 
-NOM1 = 'RESULTS FILE FORMAT' 
-TYPE = CARACTERE 
-INDEX = 28 
-MNEMO = '?????' 
-DEFAUT = 'SERAFIN ' 
-DEFAUT1 = 'SERAFIN ' 
-CHOIX = 'SERAFIN ';'SERAFIND';'MED     ' 
-NIVEAU = 2 
-RUBRIQUE = 'ENTREES-SORTIES, FICHIERS' 
-RUBRIQUE1 = 'INPUT-OUTPUT, FILES' 
-AIDE = 'Format du fichier de resultats. 
-Les valeurs possibles sont : 
-- SERAFIN : format standard simple precision pour Telemac;  
-- SERAFIND: format standard double precision pour Telemac; 
-- MED     : format MED base sur HDF5' 
-AIDE1 = 'Results file format. Possible values are: 
-- SERAFIN : classical single precision format in Telemac;  
-- SERAFIND: classical double precision format in Telemac; 
-- MED     : MED format based on HDF5' 
-NOM = 'FORMAT DU FICHIER DU CALCUL PRECEDENT' 
-NOM1 = 'PREVIOUS COMPUTATION FILE FORMAT' 
-TYPE = CARACTERE 
-INDEX = 29 
-MNEMO = '?????' 
-DEFAUT = 'SERAFIN ' 
-DEFAUT1 = 'SERAFIN ' 
-CHOIX = 'SERAFIN ';'SERAFIND';'MED     ' 
-NIVEAU = 2 
-RUBRIQUE = 'ENTREES-SORTIES, FICHIERS' 
-RUBRIQUE1 = 'INPUT-OUTPUT, FILES' 
-AIDE = 'Format du fichier de resultats du calcul precedent. 
-Les valeurs possibles sont : 
-- SERAFIN : format standard simple precision pour Telemac;  
-- SERAFIND: format standard double precision pour Telemac; 
-- MED     : format MED base sur HDF5' 
-AIDE1 = 'Previous computation results file format. 
-Possible values are: 
-- SERAFIN : classical single precision format in Telemac;  
-- SERAFIND: classical double precision format in Telemac; 
-- MED     : MED format based on HDF5' 
-NOM = 'BIBLIOTHEQUES' 
-NOM1 = 'LIBRARIES' 
-TYPE = CARACTERE 
-INDEX = 30 
-MNEMO = '' 
-TAILLE = 0 
-DEFAUT =' ' 
-DEFAUT1 =' ' 
-RUBRIQUE = 'ENTREES-SORTIES, GENERALITES';'CALCUL' 
-RUBRIQUE1 = 'INPUT-OUTPUT, INFORMATION';'COMPUTATIONAL INFORMATION' 
-NIVEAU = 1 
-AIDE = 'Obsolete' 
-AIDE1 = 'Obsolete' 
-NOM = 'PRIORITE' 
-NOM1 = 'PRIORITY' 
-TYPE = CARACTERE 
-INDEX = 31 
-MNEMO = '' 
-TAILLE = 0 
-CHOIX = 'JOUR';'NUIT';'WEEK-END' 
-DEFAUT = 'JOUR' 
-DEFAUT1 = 'JOUR' 
-RUBRIQUE = 'ENTREES-SORTIES, GENERALITES';'ENVIRONNEMENT' 
-RUBRIQUE1 = 'INPUT-OUTPUT, INFORMATION';'COMPUTATION ENVIRONMENT' 
-NIVEAU = 2 
-AIDE = 'Utilise par la procedure de lancement sur station de travail' 
-AIDE1 = 'Utilise par la procedure de lancement sur station de travail' 
-NOM = 'SUITE DE CALCUL' 
-NOM1 = 'COMPUTATION CONTINUED' 
-TYPE = LOGIQUE 
-INDEX = 1 
-MNEMO = 'DEBU' 
-TAILLE = 0 
-DEFAUT = NON 
-DEFAUT1 = NO 
-RUBRIQUE = 'ENTREES-SORTIES, GENERALITES';'CALCUL' 
-RUBRIQUE1 = 'INPUT-OUTPUT, INFORMATION';'COMPUTATIONAL INFORMATION' 
-NIVEAU = 1 
-AIDE = 'Determine si le calcul en cours est independant de tout autre 
-resultat ou est une reprise effectuee a partir du resultat d''un calcul 
-precedent. 
-NON : Il s''agit du premier passage pour ce calcul et il est necessaire 
-de definir un jeu complet de conditions initiales 
-OUI : Il s''agit d''une reprise de calcul : 
-les conditions initiales sont constituees par le dernier pas de 
-temps du ''FICHIER DU CALCUL PRECEDENT'' du fichier des parametres 
-utilise pour soumettre le calcul. 
-Par contre, l''ensemble des donnees du fichier des parametres 
-peuvent etre redefinies ; ce qui offre la possibilite de changer 
-par exemple, le pas de temps, le modele de turbulence, le 
-frottement, d''ajouter ou retirer un traceur ... 
-De meme, il est necessaire de definir des conditions aux limites 
-(sous-programme BORD ou valeurs placees dans le fichier des 
-parametres), qui peuvent egalement etre modifiees.' 
-AIDE1 = 'Determines whether the computation under way is independent 
-result or is following an earlier result. 
-NO: It is the first run for this computation and a whole set of 
-initial conditions should be defined. 
-YES: It follows a former computation: 
-the initial conditions consist in the last time step of the 
-PREVIOUS COMPUTATION FILE in the steering file used for submitting 
-the computation. 
-All the data from the steering file may be defined once again, which 
-provides an opportunity to change, for example, the time step, 
-the turbulence model, the friction, to add or remove a tracer... 
-It is also possible to define new boundary conditions.' 
-NOM = 'DIFFUSION DES TRACEURS' 
-NOM1 = 'DIFFUSION OF TRACERS' 
-TYPE = LOGIQUE 
-INDEX = 11 
-MNEMO = 'DIFT' 
-TAILLE = 0 
-DEFAUT = OUI 
-DEFAUT1 = YES 
-RUBRIQUE = 'ENTREES-SORTIES, GENERALITES';'CALCUL' 
-RUBRIQUE1 = 'INPUT-OUTPUT, INFORMATION';'COMPUTATIONAL INFORMATION' 
-NIVEAU = 2 
-AIDE = 'Prise en compte ou non de la diffusion du traceur passif.' 
-AIDE1 = 'The diffusion of the passive tracer is taken into account 
-or ignored.' 
-NOM = 'SORTIE LISTING' 
-NOM1 = 'LISTING PRINTOUT' 
-TYPE = LOGIQUE 
-INDEX = 3 
-MNEMO = 'LISTIN' 
-TAILLE = 0 
-DEFAUT = OUI 
-DEFAUT1 = YES 
-RUBRIQUE = 'ENTREES-SORTIES, GRAPHIQUES ET LISTING' 
-RUBRIQUE1 = 'INPUT-OUTPUT, GRAPHICS AND LISTING' 
-NIVEAU = 1 
-AIDE = 'Sortie des resultats sur support papier. 
-Si l''on met NON le listing ne contient que l''entete et la mention 
-FIN NORMALE DU PROGRAMME 
-Commande a eviter' 
-AIDE1 = 'Result printout on hard copy. 
-When NO is selected, the listing only includes the heading and the 
-phrase "NORMAL END OF PROGRAM" 
-In addition, the options MASS BALANCE and VALIDATION are inhibited. 
-Not recommended for use.' 
-NOM = 'DIFFUSION DES VITESSES' 
-NOM1 = 'DIFFUSION OF VELOCITY' 
-TYPE = LOGIQUE 
-INDEX = 4 
-MNEMO = 'DIFVIT' 
-TAILLE = 0 
-DEFAUT = OUI 
-DEFAUT1 = YES 
-RUBRIQUE = 'EQUATIONS';'DIFFUSION DES VITESSES' 
-RUBRIQUE1 = 'EQUATIONS';'DIFFUSION OF VELOCITY' 
-COMPORT = 
-'Foreground ("EQUATIONS*DIFFUSION DES VITESSES") IS VALEUR (brown)' 
-NIVEAU = 2 
-AIDE = 'Permet de decider si l''on prend ou non en compte la diffusion 
-des vitesses.' 
-AIDE1 = 'Makes it possible to decide whether the diffusion of velocity 
-(i.e. viscosity) is taken into account or not.' 
-NOM = 'PRESSION ATMOSPHERIQUE' 
-NOM1 = 'AIR PRESSURE' 
-TYPE = LOGIQUE 
-INDEX = 5 
-MNEMO = 'ATMOS' 
-TAILLE = 0 
-DEFAUT = NON 
-DEFAUT1 = NO 
-RUBRIQUE = 'EQUATIONS';'PRESSION ATMOSPHERIQUE' 
-RUBRIQUE1 = 'EQUATIONS';'AIR PRESSURE' 
-COMPORT = 
-'Foreground ("EQUATIONS*PRESSION ATMOSPHERIQUE") IS VALEUR (brown)' 
-NIVEAU = 1 
-AIDE = 'Permet de decider si l''on prend ou non en compte l''influence 
-d''un champ de pression.' 
-AIDE1 = 'Provided to decide whether the influence of an atmosphere field 
-is taken into account or not.' 
-NOM = 'CONVECTION' 
-NOM1 = 'ADVECTION' 
-TYPE = LOGIQUE 
-INDEX = 6 
-MNEMO = 'CONV' 
-TAILLE = 0 
-DEFAUT = OUI 
-DEFAUT1 = YES 
-RUBRIQUE = 'EQUATIONS';'CONVECTION' 
-RUBRIQUE1 = 'EQUATIONS';'ADVECTION' 
-COMPORT = 
-'Foreground ("EQUATIONS*CONVECTION") IS VALEUR (brown)' 
-NIVEAU = 2 
-AIDE = 'Prise en compte ou non des termes de convection. 
-En cas de reponse positive; 
-on peut encore supprimer certains termes de convection avec 
-les mots-cles CONVECTION DE ...' 
-AIDE1 = 'Are the advection terms taken into account or not? 
-If YES, some advection terms can still be deleted using the keywords 
--ADVECTION OF ..-' 
-NOM = 'CONVECTION DE U ET V' 
-NOM1 = 'ADVECTION OF U AND V' 
-TYPE = LOGIQUE 
-INDEX = 7 
-MNEMO = 'CONVV(1)' 
-TAILLE = 0 
-DEFAUT = OUI 
-DEFAUT1 = YES 
-RUBRIQUE = 'EQUATIONS';'CONVECTION' 
-RUBRIQUE1 = 'EQUATIONS';'ADVECTION' 
-NIVEAU = 2 
-AIDE = 'Prise en compte ou non de la convection de U et V.' 
-AIDE1= 'The advection of U and V is taken into account or ignored.' 
-NOM = 'CONVECTION DE H' 
-NOM1 = 'ADVECTION OF H' 
-TYPE = LOGIQUE 
-INDEX = 8 
-MNEMO = 'CONVV(2)' 
-TAILLE = 0 
-DEFAUT = OUI 
-DEFAUT1 = YES 
-RUBRIQUE = 'EQUATIONS';'CONVECTION' 
-RUBRIQUE1 = 'EQUATIONS';'ADVECTION' 
-NIVEAU = 2 
-AIDE = 'Prise en compte ou non de la convection de H. 
-Il s''agit en fait dans la version 2.0 de la convection de C' 
-AIDE1 = 'The advection of H  is taken into account or ignored. 
-Actually, in version 2.0, the matter is about C advection.' 
-NOM = 'CONVECTION DES TRACEURS' 
-NOM1 = 'ADVECTION OF TRACERS' 
-TYPE = LOGIQUE 
-INDEX = 9 
-MNEMO = 'CONVV(3)' 
-TAILLE = 0 
-DEFAUT = OUI 
-DEFAUT1 = YES 
-RUBRIQUE = 'EQUATIONS';'CONVECTION' 
-RUBRIQUE1 = 'EQUATIONS';'ADVECTION' 
-NIVEAU = 2 
-AIDE = 'Prise en compte ou non de la convection du traceur passif.' 
-AIDE1 = 'The advection of the passive tracer is taken into account 
-or ignored.' 
-NOM = 'CONVECTION DE K ET EPSILON' 
-NOM1 = 'ADVECTION OF K AND EPSILON' 
-TYPE = LOGIQUE 
-INDEX = 10 
-MNEMO = 'CONVV(4)' 
-TAILLE = 0 
-DEFAUT = OUI 
-DEFAUT1 = YES 
-RUBRIQUE = 'EQUATIONS';'MODELE DE TURBULENCE';'MODELE K-EPSILON' 
-RUBRIQUE1 = 'EQUATIONS';'TURBULENCE MODEL';'K-EPSILON MODEL' 
-NIVEAU = 2 
-AIDE = 'Prise en compte ou non de la convection de k et epsilon.' 
-AIDE1 ='The k and epsilon advection is taken into account or ignored.' 
-NOM = 'PROPAGATION' 
-NOM1 = 'PROPAGATION' 
-TYPE = LOGIQUE 
-INDEX = 12 
-MNEMO = 'PROPA' 
-TAILLE = 0 
-DEFAUT = OUI 
-DEFAUT1 = YES 
-RUBRIQUE = 'EQUATIONS';'PROPAGATION' 
-RUBRIQUE1 = 'EQUATIONS';'PROPAGATION' 
-NIVEAU = 2 
-AIDE = 'Prise en compte ou non de la propagation de la vitesse et de la 
-hauteur d''eau. 
-La diffusion etant contenue dans cette etape sera supprimee aussi.' 
-AIDE1 = 'Determines whether the propagation step is taken into account 
-or not. 
-The diffusion being included in that step will be deleted as well.' 
-NOM = 'CORIOLIS' 
-NOM1 = CORIOLIS 
-TYPE = LOGIQUE 
-INDEX = 13 
-MNEMO = 'CORIOL' 
-TAILLE = 0 
-DEFAUT = NON 
-DEFAUT1 = NO 
-RUBRIQUE = 'EQUATIONS';'CORIOLIS' 
-RUBRIQUE1 = 'EQUATIONS';'CORIOLIS' 
-COMPORT = 
-'Foreground ("EQUATIONS*CORIOLIS") IS VALEUR (brown)' 
-NIVEAU = 1 
-AIDE = 'Prise en compte ou non de la force de Coriolis.' 
-AIDE1 = 'The Coriolis force is taken into account or ignored.' 
-NOM = 'INFORMATIONS SUR LE SOLVEUR' 
-NOM1 = 'INFORMATION ABOUT SOLVER' 
-TYPE = LOGIQUE 
-INDEX = 15 
-MNEMO = 'INFOGR' 
-TAILLE = 0 
-DEFAUT = OUI 
-DEFAUT1 = YES 
-RUBRIQUE = 'ENTREES-SORTIES, GRAPHIQUES ET LISTING' 
-RUBRIQUE1 = 'INPUT-OUTPUT, GRAPHICS AND LISTING' 
-NIVEAU = 2 
-AIDE = 'Donne a chaque pas de temps le nombre d''iterations necessaires 
-a la convergence du solveur de l''etape de propagation.' 
-AIDE1 = 'if YES, prints the number of iterations that have been necessar 
-to get the solution of the linear system.' 
-NOM = 'BILAN DE MASSE' 
-NOM1 = 'MASS-BALANCE' 
-TYPE = LOGIQUE 
-INDEX = 16 
-MNEMO = 'BILMAS' 
-TAILLE = 0 
-DEFAUT = NON 
-DEFAUT1 = NO 
-RUBRIQUE = 'ENTREES-SORTIES, GRAPHIQUES ET LISTING' 
-RUBRIQUE1 = 'INPUT-OUTPUT, GRAPHICS AND LISTING' 
-NIVEAU = 1 
-AIDE = 'Determine si l''on effectue ou non le bilan de masse 
-sur le domaine. 
-Cette procedure calcule a chaque pas de temps : 
- - les flux aux entrees et sorties du domaine; 
- - le flux global a travers l''ensemble des parois du domaine (liquides 
-ou solides) 
-- l''erreur relative sur la masse pour ce pas de temps. 
-En fin de listing, on trouve l''erreur relative sur la masse pour 
-l''ensemble du calcul. 
-Il ne s''agit que d''un calcul indicatif car il n''existe pas 
-d''expression compatible du debit en formulation c,u,v.' 
-AIDE1 = 'Determines whether a check of the mass-balance over 
-the domain is mader or not. 
-This procedures computes the following at each time step: 
-the domain inflows and outflows, 
-the overall flow across all the boundaries, 
-the relative error in the mass for that time step. 
-The relative error in the mass over the whole computation can be found 
-at the end of the listing.' 
-NOM = 'CLIPPING DE H' 
-NOM1 = 'H CLIPPING' 
-TYPE = LOGIQUE 
-INDEX = 17 
-MNEMO = 'CLIPH' 
-TAILLE = 0 
-DEFAUT = NON 
-DEFAUT1 = NO 
-RUBRIQUE = 'PARAMETRES NUMERIQUES, VITESSE-CELERITE-HAUTEUR' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS, VELOCITY-CELERITY-HIGHT' 
-NIVEAU = 2 
-AIDE = 'Determine si l''on desire ou non limiter par valeur inferieure 
-la hauteur d''eau H (dans le cas des bancs decouvrants par exemple).' 
-AIDE1 = 'Determines whether limiting the water depth H by a lower value 
-desirable or not. (for instance in the case of tidal flats) 
-This key-word may have an influence on mass conservation since 
-the truncation of depth is equivalent to adding mass.' 
-NOM = 'COORDONNEES SPHERIQUES' 
-NOM1 = 'SPHERICAL COORDINATES' 
-TYPE = LOGIQUE 
-INDEX = 18 
-MNEMO = 'SPHERI' 
-TAILLE = 0 
-DEFAUT = NON 
-DEFAUT1 = NO 
-RUBRIQUE = 'EQUATIONS';'COORDONNEES SPHERIQUES' 
-RUBRIQUE1 = 'EQUATIONS';'SPHERICAL COORDINATES' 
-COMPORT = 
-'Foreground ("EQUATIONS*COORDONNEES SPHERIQUES") IS VALEUR (brown)' 
-NIVEAU = 1 
-AIDE = 'Choix des coordonnees spheriques pour la realisation du calcul 
-( pour les grands domaines de calcul). 
-Attention : cette option est etroitement liee au maillage qui doit avoir 
-ete saisi sur une carte marine en projection de Mercator. 
-Il faut de plus relever sur la carte la LATITUDE DU POINT ORIGINE 
-(autre mot-cle) qui correspond dans le maillage a l''ordonnee y = 0.' 
-AIDE1 = 'Selection of spherical coordinates to perform the computation 
-(for large computation domains). 
-Warning: this option is closely related to the mesh that should have 
-been entered onto a nautical chart drawn as per Mercator projection 
-The LATITUDE OF ORIGIN POINT (another keyword), which corresponds to 
-ordinate y=0 in the mesh, must moreover be given.' 
-NOM = 'PROPAGATION LINEARISEE' 
-NOM1 = 'LINEARIZED PROPAGATION' 
-TYPE = LOGIQUE 
-INDEX = 20 
-MNEMO = 'PROLIN' 
-TAILLE = 0 
-DEFAUT = NON 
-DEFAUT1 = NO 
-RUBRIQUE = 'EQUATIONS';'PROPAGATION' 
-RUBRIQUE1 = 'EQUATIONS';'PROPAGATION' 
-NIVEAU = 3 
-AIDE = 'Permet de lineariser l''etape de propagation; 
-par exemple lors de la realisation de cas tests pour lesquels on dispose 
-d''une solution analytique dans le cas linearise.' 
-AIDE1 = 'Provided for linearizing the propagation step, e.g. when 
-performing test-cases for which an analytical solution in the linearized 
-case is available.' 
-NOM = 'VALIDATION' 
-NOM1 = 'VALIDATION' 
-TYPE = LOGIQUE 
-INDEX = 21 
-MNEMO = 'VALID' 
-TAILLE = 0 
-DEFAUT = NON 
-DEFAUT1 = NO 
-RUBRIQUE = 'ENTREES-SORTIES, GENERALITES';'CALCUL' 
-RUBRIQUE1 = 'INPUT-OUTPUT, INFORMATION';'COMPUTATIONAL INFORMATION' 
-NIVEAU = 1 
-AIDE = 'Option utilisee principalement pour le dossier de validation. Le 
-fichier des resultats du calcul precedent est alors considere comme une 
-reference a laquelle on va comparer le calcul. La comparaison 
-est effectuee par le sous-programme VALIDA qui peut etre une comparaison 
-avec une solution exacte par exemple.' 
-AIDE1 = 'This option is primarily used for the validation documents. 
-The PREVIOUS COMPUTATION FILE is then considered as a 
-reference which the computation is going to be compared with. 
-The comparison is made by the subroutine VALIDA, which can be 
-modified as to 
-so as to include, for example,a comparison with an exact solution.' 
-NOM = 'INFORMATIONS SUR LE MODELE K-EPSILON' 
-NOM1 = 'INFORMATION ABOUT K-EPSILON MODEL' 
-TYPE = LOGIQUE 
-INDEX = 22 
-MNEMO = 'INFOKE' 
-TAILLE = 0 
-DEFAUT = OUI 
-DEFAUT1 = YES 
-RUBRIQUE = 'PARAMETRES NUMERIQUES, MODELE K-EPSILON' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS, K-EPSILON MODEL' 
-NIVEAU = 2 
-AIDE = 'Donne le nombre d''iterations du solveur de l''etape de 
-diffusion et termes sources du modele k-epsilon.' 
-AIDE1 = 'Gives the number of iterations of the solver in the diffusion 
-and source terms step of the k-epsilon model.' 
-NOM = 'BANCS DECOUVRANTS' 
-NOM1 = 'TIDAL FLATS' 
-TYPE = LOGIQUE 
-INDEX = 24 
-MNEMO = 'BANDEC' 
-TAILLE = 0 
-DEFAUT = OUI 
-DEFAUT1 = YES 
-RUBRIQUE = 'PARAMETRES NUMERIQUES';'GENERAL' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS';'GENERAL' 
-NIVEAU = 1 
-AIDE = 'permet de supprimer les tests sur les bancs decouvrants, dans 
-les cas ou l''on est certain qu''il n''y en aura pas. 
-En cas de doute : oui' 
-AIDE1 = 'When no, the specific treatments for tidal flats are by-passed. 
-This spares time, but of course you must be sure that you have no 
-tidal flats' 
-NOM = 'ARRET SI UN ETAT PERMANENT EST ATTEINT' 
-NOM1 = 'STOP IF A STEADY STATE IS REACHED' 
-TYPE = LOGIQUE 
-INDEX = 25 
-MNEMO = 'STOPER' 
-TAILLE = 0 
-DEFAUT = NON 
-DEFAUT1 = NO 
-RUBRIQUE = 'PARAMETRES NUMERIQUES';'GENERAL' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS';'GENERAL' 
-NIVEAU = 2 
-AIDE = 'A UTILISER AVEC LE MOT-CLE : CRITERES D''ARRET' 
-AIDE1 = 'TO BE USED WITH THE KEY-WORD: STOP CRITERIA' 
-NOM = 'ELEMENTS MASQUES PAR L''UTILISATEUR' 
-NOM1 = 'ELEMENTS MASKED BY USER' 
-TYPE = LOGIQUE 
-INDEX = 26 
-MNEMO = 'MSKUSE' 
-TAILLE = 0 
-DEFAUT = NON 
-DEFAUT1 = NO 
-RUBRIQUE = 'PARAMETRES NUMERIQUES';'GENERAL' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS';'GENERAL' 
-NIVEAU = 2 
-AIDE = 'SI OUI REMPLIR LE SOUS-PROGRAMME MASKOB' 
-AIDE1 = 'IF YES REWRITE SUBROUTINE MASKOB' 
-NOM = 'EFFETS DE DENSITE' 
-NOM1 = 'DENSITY EFFECTS' 
-TYPE = LOGIQUE 
-INDEX = 27 
-MNEMO = 'ROVAR' 
-TAILLE = 0 
-DEFAUT = NON 
-DEFAUT1 = NO 
-RUBRIQUE = 'PARAMETRES NUMERIQUES';'GENERAL' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS';'GENERAL' 
-NIVEAU = 1 
-AIDE = 'PRISE EN COMPTE DU GRADIENT HORIZONTAL DE DENSITE 
-        LE TRACEUR EST ALORS LA SALINITE' 
-AIDE1 = 'THE HORIZONTAL GRADIENT OF DENSITY IS TAKEN INTO ACCOUNT 
-         THE TRACER IS THEN THE SALINITY' 
-NOM = 'OPTION DE TRAITEMENT DES BANCS DECOUVRANTS' 
-NOM1 = 'OPTION FOR THE TREATMENT OF TIDAL FLATS' 
-TYPE = INTEGER 
-INDEX = 35 
-MNEMO = 'OPTBAN' 
-TAILLE = 0 
-DEFAUT = 1 
-DEFAUT1 = 1 
-RUBRIQUE = 'PARAMETRES NUMERIQUES';'GENERAL' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS';'GENERAL' 
-NIVEAU = 1 
-AIDE = 'Utilise si BANCS DECOUVRANTS est vrai 
-1 : EQUATIONS RESOLUES PARTOUT AVEC CORRECTION SUR LES BANCS DECOUVRANTS 
-2 : GEL DES ELEMENTS DECOUVRANTS 
-3 : COMME 1 MAIS AVEC POROSITE (METHODE DEFINA)' 
-AIDE1 = 'Used if TIDAL FLATS is true 
-1 : EQUATIONS SOLVED EVERYWHERE WITH CORRECTION ON TIDAL FLATS 
-2 : DRY ELEMENTS FROZEN 
-3 : LIKE 1 BUT WITH POROSITY (DEFINA METHOD)' 
-NOM = 'LONGUEUR DU VECTEUR' 
-NOM1 = 'VECTOR LENGTH' 
-TYPE = INTEGER 
-INDEX = 36 
-MNEMO = 'LVMAC' 
-TAILLE = 0 
-DEFAUT = 1 
-DEFAUT1 = 1 
-RUBRIQUE = 'PARAMETRES NUMERIQUES';'GENERAL' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS';'GENERAL' 
-NIVEAU = 3 
-AIDE = 'LONGUEUR DU VECTEUR POUR LES MACHINES VECTORIELLES' 
-AIDE1 = 'VECTOR LENGTH ON VECTOR MACHINES' 
-NOM = 'OPTION DE SUPG' 
-NOM1 = 'SUPG OPTION' 
-TYPE = INTEGER 
-INDEX = 37 
-MNEMO = 'OPTSUP' 
-TAILLE = 4 
-DEFAUT = 2;2;2;2 
-DEFAUT1 = 2;2;2;2 
-RUBRIQUE = 'PARAMETRES NUMERIQUES';'GENERAL' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS';'GENERAL' 
-NIVEAU = 1 
-AIDE = '0:pas de decentrement SUPG  1:SUPG classique   2:SUPG modifiee 
-ces coefficients sont respectivement appliques a 
-1) U et V     2) H      3) T     4) K ET EPSILON  ' 
-AIDE1 ='0:no upwinding              1: classical SUPG  2:modified SUPG 
-These coefficients are applied respectively to 
-1) U et V     2) H      3) T     4) K and EPSILON ' 
-NOM = 'ORDRE DU TIR INITIAL POUR U' 
-NOM1 = 'INITIAL GUESS FOR U' 
-TYPE = INTEGER 
-INDEX = 38 
-MNEMO = 'IORDRU' 
-TAILLE = 0 
-DEFAUT = 1 
-DEFAUT1 = 1 
-CHOIX = '0=zero' ; '1=precedent'; '2=extrapolation' 
-CHOIX1 = '0=zero' ; '1=previous';  '2=extrapolation' 
-RUBRIQUE = 'PARAMETRES NUMERIQUES, VITESSE-CELERITE-HAUTEUR' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS, VELOCITY-CELERITY-HIGHT' 
-NIVEAU = 2 
-AIDE = 'Tir initial du solveur de l''etape de propagation. 
-Offre la possibilite de modifier la valeur initiale de U, a chaque 
-iteration, dans l''etape de propagation en utilisant les valeurs 
-finales de cette variable aux pas de temps precedents. Ceci peut 
-permettre d''accelerer la vitesse de convergence lors de la resolution 
-du systeme. Trois possibilites sont offertes : 
- 0 : U = 0 
- 1 : U = U(n) 
- 2 : U = 2 U(n)- U(n-1) (extrapolation)' 
-AIDE1 = 'Initial guess for the solver in the propagation step. 
-Makes it possible to modify the initial value of U, upon each 
-iteration in the propagation step, by using the ultimate values this 
-variable had in the earlier time steps. Thus, the convergence can be 
-speeded up when the system is being solved. 3 options are available: 
- 0 : U = 0 
- 1 : U = U(n) 
- 2 : U = 2 U(n)- U(n-1) (extrapolation)' 
-NOM = 'ENREGISTREMENT POUR SUITE DE CALCUL' 
-NOM1 = 'RECORD NUMBER FOR RESTART' 
-TYPE = ENTIER 
-INDEX = 39 
-MNEMO = 'START_RECORD' 
-TAILLE = 0
-DEFAUT = 0
-DEFAUT1 = 0
-RUBRIQUE = 'PARAMETRES NUMERIQUES';'GENERAL' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS';'GENERAL' 
-NIVEAU = 1 
-AIDE = 'En cas de suite de calcul, numero de l''enregistrement
-de depart dans le fichier du calcul precedent. 0 signifie
-qu''on prend le dernier enregistrement' 
-AIDE1 ='In case of COMPUTATION CONTINUED, record number to
-start from in the PREVIOUS COMPUTATION FILE' 
-NOM = 'MASSE VOLUMIQUE DE L''EAU' 
-NOM1 = 'WATER DENSITY' 
-TYPE = REEL 
-INDEX = 27 
-MNEMO = 'ROEAU' 
-TAILLE = 0 
-DEFAUT = 1000. 
-DEFAUT1 = 1000. 
-RUBRIQUE = 'CONSTANTES PHYSIQUES' 
-RUBRIQUE1 = 'PHYSICAL CONSTANTS' 
-NIVEAU = 1 
-AIDE = 'Fixe la valeur de la masse volumique de l''eau.' 
-AIDE1 = 'set the value of water density' 
-NOM = 'LATITUDE DU POINT ORIGINE' 
-NOM1 = 'LATITUDE OF ORIGIN POINT' 
-TYPE = REEL 
-INDEX = 28 
-MNEMO = 'LAMBD0' 
-TAILLE = 0 
-DEFAUT = 48. 
-DEFAUT1 = 48. 
-RUBRIQUE = 'CONSTANTES PHYSIQUES' 
-RUBRIQUE1 = 'PHYSICAL CONSTANTS' 
-NIVEAU = 1 
-AIDE = 'Determine l''origine utilisee pour le calcul de latitudes 
-lorsque l''on effectue un calcul en coordonnees spheriques.' 
-AIDE1 = 'Determines the origin used for computing latitudes when 
-a computation is made in spherical coordinates. 
-this latitude is in particular used to compute the Coriolis force. 
-In cartesian coordinates, Coriolis coefficient is considered constant.' 
-NOM = 'TEMPERATURE MOYENNE' 
-NOM1 = 'MEAN TEMPERATURE' 
-TYPE = REEL 
-INDEX = 42 
-MNEMO = 'TREF' 
-CONTROLE = 0.; 100. 
-TAILLE = 0 
-DEFAUT = 20. 
-DEFAUT1= 20. 
-RUBRIQUE = 'CONSTANTES PHYSIQUES' 
-RUBRIQUE1 = 'PHYSICAL CONSTANTS' 
-NIVEAU = 1 
-AIDE = 'TEMPERATURE DE REFERENCE POUR LE CALCUL DES EFFETS DE DENSITE 
-        A UTILISER AVEC LE MOT-CLE "EFFETS DE DENSITE"' 
-AIDE1 = 'REFERENCE TEMPERATURE FOR DENSITY EFFECTS 
-        TO BE USED WITH THE KEY-WORD "DENSITY EFFECTS"' 
-NOM = 'ACCELERATION DE LA PESANTEUR' 
-NOM1 = 'GRAVITY ACCELERATION' 
-TYPE = REEL 
-INDEX = 2 
-MNEMO = 'GRAV' 
-TAILLE = 0 
-DEFAUT = 9.81 
-DEFAUT1 = 9.81 
-RUBRIQUE = 'CONSTANTES PHYSIQUES' 
-RUBRIQUE1 = 'PHYSICAL CONSTANTS' 
-COMPORT = 
-'Foreground ("CONSTANTES PHYSIQUES") IS VALEUR (yellow)' 
-NIVEAU = 1 
-AIDE = 'Fixe la valeur de l''acceleration de la pesanteur.' 
-AIDE1 = 'Set the value of the acceleration due to gravity.' 
-NOM = 'COEFFICIENT DE CORIOLIS' 
-NOM1 = 'CORIOLIS COEFFICIENT' 
-TYPE = REEL 
-INDEX = 5 
-MNEMO = 'FCOR' 
-TAILLE = 0 
-DEFAUT = 0. 
-DEFAUT1 = 0. 
-RUBRIQUE = 'CONSTANTES PHYSIQUES' 
-RUBRIQUE1 = 'PHYSICAL CONSTANTS' 
-NIVEAU = 1 
-AIDE = 'Fixe la valeur du coefficient de la force de Coriolis. 
-Celui-ci doit etre calcule en fonction de la latitude l par la formule 
-     FCOR = 2w sin(l) , w etant la vitesse de rotation de la terre. 
-                        w = 7.27 10-5 rad/s 
-Les composantes de la force de Coriolis sont alors : 
-   FU =   FCOR x V 
-   FV = - FCOR x U' 
-AIDE1 = 'Sets the value of the Coriolis force coefficient, in cartesian 
-coordinates. 
-This coefficient, denoted FCOR in the code, should be equal to 
-2 w sin(l)d  where w denotes the earth angular speed of rotation 
-and l the latitude. w = 7.27 10-5 rad/sec 
-The Coriolis force components are then: 
-FU =  FCOR x V, 
-FV = -FCOR x U 
-In spherical coordinates, the latitudes are known' 
-/ 
-/ 
-/ 
-/ 
-/ NOUVEAUTES 3.1 
-/ 
-/ 
-/ 
-/ 
-NOM = 'DISCRETISATIONS EN ESPACE' 
-NOM1 = 'DISCRETIZATIONS IN SPACE' 
-TYPE = ENTIER 
-INDEX = 16 
-MNEMO = 'DISCRE' 
-TAILLE = 4 
-DEFAUT = 11;11;11;11 
-DEFAUT1 = 11;11;11;11 
-RUBRIQUE = 'PARAMETRES NUMERIQUES';'GENERAL' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS';'GENERAL' 
-NIVEAU = 13 
-AIDE = 'Choix de la discretisation pour chaque variable 
-ces coefficients sont respectivement appliques a 
-1) U et V     2) H      3) T     4) K ET EPSILON (NON PROGRAMME) 
-11 : lineaire 
-12 : quasi-bulle 
-13 : quadratique' 
-AIDE1 = 'Choice of space discretisation for every variable 
-These coefficients are applied respectively to 
-1) U and V     2) H      3) T     4) K and EPSILON (NOT IMPLEMENTED) 
-11: linear 
-12: quasi-bubble 
-13: quadratic' 
-NOM = 'STOCKAGE DES MATRICES' 
-NOM1 = 'MATRIX STORAGE' 
-TYPE = ENTIER 
-INDEX = 40 
-MNEMO = 'OPTASS' 
-TAILLE = 0 
-DEFAUT = 3 
-DEFAUT1 = 3 
-CHOIX = '1="EBE classique"'; 
-'3="Stockage par segments"' 
-CHOIX1 = '1="classical EBE"'; 
-'3="Edge-based storage"' 
-RUBRIQUE = 'PARAMETRES NUMERIQUES';'GENERAL' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS';'GENERAL' 
-NIVEAU = 1 
-AIDE = '1 : EBE classique  3 : Stockage par segments' 
-AIDE1 = '1 : classical EBE  3 : Edge-based storage' 
-NOM = 'COEFFICIENTS ADIMENSIONNELS DE DISPERSION' 
-NOM1 = 'NON-DIMENSIONAL DISPERSION COEFFICIENTS' 
-TYPE = REEL 
-INDEX = 47 
-MNEMO = 'ELDER' 
-CONTROLE = 0 ; 10 
-TAILLE = 2 
-DEFAUT = 6. ; 0.6 
-DEFAUT1= 6. ; 0.6 
-RUBRIQUE = 'PARAMETRES NUMERIQUES';'GENERAL' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS';'GENERAL' 
-NIVEAU = 2 
-AIDE = 'coefficients longitudinal et transversal dans la formule de 
-Elder. Utilises uniquement avec le modele de turbulence 2' 
-AIDE1 = 'Longitudinal and transversal coefficients in elder s formula. 
- Used only with turbulence model number 2' 
-NOM = 'DICTIONNAIRE' 
-NOM1 = 'DICTIONARY' 
-TYPE = CARACTERE 
-INDEX = 100 
-MNEMO = '' 
-SUBMIT = 'INUTILE;T2DDICO;OBLIG;ASC;LIT;DICO' 
-DEFAUT = 'telemac2d.dico' 
-DEFAUT1 = 'telemac2d.dico' 
-RUBRIQUE = 'ENTREES-SORTIES, GENERALITES';'ENVIRONNEMENT' 
-RUBRIQUE1 = 'INPUT-OUTPUT, INFORMATION';'COMPUTATION ENVIRONMENT' 
-NIVEAU = -3 
-AIDE ='Dictionnaire des mots cles.' 
-AIDE1 ='Key word dictionary.' 
-NOM = 'DATE DE L''ORIGINE DES TEMPS' 
-NOM1 = 'ORIGINAL DATE OF TIME' 
-TYPE = INTEGER 
-INDEX = 41 
-MNEMO = 'MARDAT' 
-TAILLE = 3 
-DEFAUT = 1900;1;1 
-DEFAUT1 = 1900;1;1 
-RUBRIQUE = 'PARAMETRES NUMERIQUES';'GENERAL' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS';'GENERAL' 
-NIVEAU = 1 
-AIDE = 'Permet de fixer la date d''origine des temps du modele lors 
-de la prise en compte de la force generatrice de la maree.' 
-AIDE1 ='Give the date of the time origin of the model when taking into 
-account the tide generating force.' 
-NOM = 'HEURE DE L''ORIGINE DES TEMPS' 
-NOM1 = 'ORIGINAL HOUR OF TIME' 
-TYPE = INTEGER 
-INDEX = 42 
-MNEMO = 'MARTIM' 
-TAILLE = 3 
-DEFAUT = 0;0;0 
-DEFAUT1 = 0;0;0 
-RUBRIQUE = 'PARAMETRES NUMERIQUES';'GENERAL' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS';'GENERAL' 
-NIVEAU = 1 
-AIDE = 'Permet de fixer l''heure d''origine des temps du modele lors 
-de la prise en compte de la force generatrice de la maree.' 
-AIDE1 ='Give the time of the time origin of the model when taking into 
-account of the tide generator force.' 
-NOM = 'LONGITUDE DU POINT ORIGINE' 
-NOM1 = 'LONGITUDE OF ORIGIN POINT' 
-TYPE = REEL 
-INDEX = 48 
-MNEMO = 'PHI0' 
-TAILLE = 0 
-DEFAUT = 0. 
-DEFAUT1= 0. 
-RUBRIQUE = 'CONSTANTES PHYSIQUES' 
-RUBRIQUE1 = 'PHYSICAL CONSTANTS' 
-NIVEAU = 2 
-AIDE = 'Fixe la valeur de la longitude du point origine du modele, 
-lors de l''utilisation de la force generatrice de la maree.' 
-AIDE1 = 'Give the value of the longitude of the origin point 
-of the model, when taking into account of the tide generator force.' 
-NOM = 'FORCE GENERATRICE DE LA MAREE' 
-NOM1 = 'TIDE GENERATING FORCE' 
-TYPE = LOGIQUE 
-INDEX = 28 
-MNEMO = 'MAREE' 
-TAILLE = 0 
-DEFAUT = NON 
-DEFAUT1 = NO 
-RUBRIQUE = 'PARAMETRES NUMERIQUES';'GENERAL' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS';'GENERAL' 
-NIVEAU = 1 
-AIDE = 'Active la prise en compte de la force generatrice de la maree' 
-AIDE1 = 'The tide generating force is taken into account. ' 
-NOM = 'MASS-LUMPING SUR LES TRACEURS' 
-NOM1 = 'MASS-LUMPING ON TRACERS' 
-TYPE = REEL 
-INDEX = 49 
-MNEMO = 'AGGLOT' 
-TAILLE = 0 
-DEFAUT = 0. 
-DEFAUT1 = 0. 
-RUBRIQUE = 'EQUATIONS';'TRACEUR';'OPTIONS TRACEUR' 
-RUBRIQUE1 = 'EQUATIONS';'TRACER';'TRACER OPTIONS' 
-NIVEAU = 2 
-AIDE = 'Fixe le taux de mass-lumping effectue sur le traceur.' 
-AIDE1 = 'Sets the amount of mass-lumping that is performed on 
- the tracer.' 
-NOM = 'CORRECTION DE CONTINUITE' 
-NOM1 = 'CONTINUITY CORRECTION' 
-TYPE = LOGIQUE 
-INDEX = 29 
-MNEMO = 'CORCON' 
-TAILLE = 0 
-DEFAUT = NON 
-DEFAUT1 =  NO 
-RUBRIQUE = 'PARAMETRES NUMERIQUES';'GENERAL' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS';'GENERAL' 
-NIVEAU = 2 
-AIDE = 'Corrige les vitesses sur les points avec hauteur imposee ou 
-l''equation de continuite n''a pas ete resolue' 
-AIDE1 = 'Correction of the velocities on points with a prescribed 
-elevation, where the continuity equation has not been solved' 
-/ NOUVEAUTES 3.2 
-NOM = 'REMISE A ZERO DU TEMPS' 
-NOM1 = 'INITIAL TIME SET TO ZERO' 
-TYPE = LOGIQUE 
-INDEX = 30 
-MNEMO = 'RAZTIM' 
-TAILLE = 0 
-DEFAUT = NON 
-DEFAUT1 =  NO 
-RUBRIQUE = 'PARAMETRES NUMERIQUES';'GENERAL' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS';'GENERAL' 
-NIVEAU = 2 
-AIDE = 'Remet le temps a zero en cas de suite de calcul' 
-AIDE1 = 'Initial time set to zero in case of restart' 
-NOM = 'PRODUIT MATRICE-VECTEUR' 
-NOM1 = 'MATRIX-VECTOR PRODUCT' 
-TYPE = ENTIER 
-INDEX = 43 
-MNEMO = 'PRODUC' 
-TAILLE = 0 
-DEFAUT = 1 
-DEFAUT1 = 1 
-RUBRIQUE = 'PARAMETRES NUMERIQUES';'GENERAL' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS';'GENERAL' 
-NIVEAU = 1 
-AIDE = '1 : classique  2 : frontal 
-attention, avec 2, il faut une numerotation speciale des points' 
-AIDE1 = '1 : classic    2 : frontal 
-beware, with option 2, a special numbering of points is required' 
-NOM = 'SECTIONS DE CONTROLE' 
-NOM1 = 'CONTROL SECTIONS' 
-TYPE = INTEGER 
-INDEX = 44 
-MNEMO = 'CTRLSC' 
-TAILLE = 2 
-RUBRIQUE = 'PARAMETRES NUMERIQUES';'GENERAL' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS';'GENERAL' 
-NIVEAU = 1 
-AIDE = 'Couples de points (numeros globaux dans le maillage) entre 
-lesquels les debits instantanes et cumules seront donnes.' 
-AIDE1 ='Couples of points (global numbers in the mesh) defining sections 
- where the instantaneous and cumulated discharges will be given' 
-NOM = 'NOMBRE DE SEUILS' 
-NOM1 = 'NUMBER OF WEIRS' 
-TYPE = ENTIER 
-INDEX = 45 
-MNEMO = 'NWEIRS' 
-CONTROLE = 0; 100 
-TAILLE = 0 
-DEFAUT = 0 
-DEFAUT1 = 0 
-RUBRIQUE = 'PARAMETRES NUMERIQUES';'GENERAL' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS';'GENERAL' 
-NIVEAU = 2 
-AIDE = 'Nombre de seuils qui seront traites par des conditions aux 
-limites. Ces seuils doivent etre decrits comme des frontieres du 
-domaine de calcul, et leurs caracteristiques sont donnees dans le 
-fichier de donnees des seuils (voir la documentation ecrite)' 
-AIDE1 = 'Number of weirs that will be treated by boundary conditions. 
-They must be described as boundaries of the domain and their features 
-are given in the weir data file (see written documentation)' 
-NOM = 'NOMBRE DE SIPHONS' 
-NOM1 = 'NUMBER OF CULVERTS' 
-TYPE = ENTIER 
-INDEX = 46 
-MNEMO = 'NSIPH' 
-CONTROLE = 0; 100 
-TAILLE = 0 
-DEFAUT = 0 
-DEFAUT1 = 0 
-RUBRIQUE = 'PARAMETRES NUMERIQUES';'GENERAL' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS';'GENERAL' 
-NIVEAU = 2 
-AIDE = 'Nombre de siphons traites comme des termes sources ou 
-puits. Ces siphons doivent etre decrits comme des sources dans le 
-fichier cas. Leurs caracteristiques sont donnees dans le 
-fichier de donnees des siphons (voir la documentation ecrite)' 
-AIDE1 = 'Number of culverts treated as source terms. 
-They must be described as sources in the domain and their features 
-are given in the culvert data file (see written documentation)' 
-NOM = 'OPTION POUR LES FRONTIERES LIQUIDES' 
-NOM1 = 'OPTION FOR LIQUID BOUNDARIES' 
-TYPE = ENTIER 
-INDEX = 47 
-MNEMO = 'FRTYPE' 
-CONTROLE = 1;2 
-TAILLE = 2 
-RUBRIQUE = 'EQUATIONS, CONDITIONS LIMITES' 
-RUBRIQUE1 = 'EQUATIONS, BOUNDARY CONDITIONS' 
-NIVEAU = 1 
-AIDE = 'On donne 1 entier par frontiere liquide 
-     1 : conditions aux limites classiques 
-     2 : methode de Thompson avec calcul de caracteristiques' 
-AIDE1 = 'One integer per liquid boundary is given 
-     1 : classical boundary conditions 
-     2 : Thompson method based on characteristics' 
-NOM = 'BIBLIOTHEQUE PVM1' 
-NOM1 = 'PVM1 LIBRARY' 
-TYPE = CARACTERE 
-INDEX = 32 
-MNEMO = '' 
-TAILLE = 0 
-/CHOIX= '1="conditions aux limites classiques"'; 
-/       '2="methode de Thompson avec calcul de caracteristiques"' 
-/CHOIX1 = '1="classical boundary conditions"'; 
-/       '2="Thompson method based on characteristics"' 
-DEFAUT = ' ' 
-DEFAUT1 = ' ' 
-CHOIX = '" "="pas de biliotheque"';
-'"$PVM_ROOT/lib/$PVM_ARCH/libpvm3.a"="bibliotheque PVM1"' 
-CHOIX1 = '" "="no library"'; 
-'"$PVM_ROOT/lib/$PVM_ARCH/libpvm3.a"="PVM1 library"' 
-RUBRIQUE = 'ENTREES-SORTIES, GENERALITES';'ENVIRONNEMENT' 
-RUBRIQUE1 = 'INPUT-OUTPUT, INFORMATION';'COMPUTATION ENVIRONMENT' 
-NIVEAU = 2 
-AIDE = 'Utilise par la procedure de lancement sur station de travail' 
-AIDE1 = 'Utilise par la procedure de lancement sur station de travail' 
-NOM = 'BIBLIOTHEQUE PVM2' 
-NOM1 = 'PVM2 LIBRARY' 
-TYPE = CARACTERE 
-INDEX = 33 
-MNEMO = '' 
-TAILLE = 0 
-DEFAUT = ' ' 
-DEFAUT1 = ' ' 
-CHOIX = '" "="pas de biliotheque"';
-'"$PVM_ROOT/lib/$PVM_ARCH/libgpvm3.a"="bibliotheque PVM2"' 
-CHOIX1 = '" "="no library"'; 
-'"$PVM_ROOT/lib/$PVM_ARCH/libgpvm3.a"="PVM2 library"' 
-RUBRIQUE = 'ENTREES-SORTIES, GENERALITES';'ENVIRONNEMENT' 
-RUBRIQUE1 = 'INPUT-OUTPUT, INFORMATION';'COMPUTATION ENVIRONMENT' 
-NIVEAU = 2 
-AIDE = 'Utilise par la procedure de lancement sur station de travail' 
-AIDE1 = 'Utilise par la procedure de lancement sur station de travail' 
-NOM = 'NOM DU CRAY' 
-NOM1 = 'CRAY NAME' 
-TYPE = CARACTERE 
-INDEX = 35 
-DEFAUT = 'clcraya' 
-NIVEAU = 1 
-RUBRIQUE = 'ENTREES-SORTIES, GENERALITES';'ENVIRONNEMENT' 
-RUBRIQUE1 = 'INPUT-OUTPUT, INFORMATION';'COMPUTATION ENVIRONMENT' 
-AIDE = '' 
-AIDE1 = '' 
-/ NOUVEAUTES 4.0 
-NOM = 'PRECONDITIONNEMENT C-U' 
-NOM1 = 'C-U PRECONDITIONING' 
-TYPE = LOGIQUE 
-INDEX = 31 
-MNEMO = 'PRECCU' 
-TAILLE = 0 
-DEFAUT = OUI 
-DEFAUT1 =  YES 
-RUBRIQUE = 'PARAMETRES NUMERIQUES';'GENERAL' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS';'GENERAL' 
-NIVEAU = 2 
-AIDE = 'Changement de variable de H en C dans le systeme lineaire final' 
-AIDE1 = 'Change of variable from H to C in the final linear system' 
-NOM = 'PAS DE TEMPS VARIABLE' 
-NOM1 = 'VARIABLE TIME-STEP' 
-TYPE = LOGIQUE 
-INDEX = 32 
-MNEMO = 'DTVARI' 
-TAILLE = 0 
-DEFAUT = NON 
-DEFAUT1 =  NO 
-RUBRIQUE = 'PARAMETRES NUMERIQUES';'GENERAL' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS';'GENERAL' 
-NIVEAU = 2 
-AIDE = 'Pas de temps variable pour avoir un nombre de courant souhaite' 
-AIDE1 = 'Variable time-step to get a given Courant number' 
-NOM = 'TRAITEMENT DU SYSTEME LINEAIRE' 
-NOM1 = 'TREATMENT OF THE LINEAR SYSTEM' 
-TYPE = ENTIER 
-INDEX = 48 
-MNEMO = 'SOLSYS' 
-CONTROLE = 1;2 
-TAILLE = 0 
-DEFAUT = 1 
-DEFAUT1 =1 
-CHOIX = '1="traitement couple"';'2="Equation d''onde"' 
-CHOIX1 = '1="coupled"';'2="Wave equation"' 
-RUBRIQUE = 'PARAMETRES NUMERIQUES';'GENERAL' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS';'GENERAL' 
-NIVEAU = 2 
-AIDE = '1 : Traitement couple 2 : equation d onde' 
-AIDE1 = '1 : Coupled  2 : wave equation' 
-NOM = 'NOMBRE DE COURANT SOUHAITE' 
-NOM1 = 'DESIRED COURANT NUMBER' 
-TYPE = REEL 
-INDEX = 50 
-MNEMO = 'CFLWTD' 
-TAILLE = 0 
-DEFAUT = 1. 
-DEFAUT1 = 1. 
-RUBRIQUE = 'PARAMETRES NUMERIQUES';'DUREE DU CALCUL' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS';'DURATION' 
-NIVEAU = 2 
-AIDE = 'Nombre de Courant souhaite en cas de pas de temps variable' 
-AIDE1 = 'Desired Courant number when VARIABLE TIME-STEP is set to YES' 
-NOM = 'PROCESSEURS PARALLELES' 
-NOM1 = 'PARALLEL PROCESSORS' 
-TYPE = ENTIER 
-INDEX = 49 
-MNEMO = 'NCSIZE' 
-CONTROLE = 0;256 
-TAILLE = 0 
-DEFAUT = 0 
-DEFAUT1 = 0 
-RUBRIQUE = 'PARAMETRES NUMERIQUES';'GENERAL' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS';'GENERAL' 
-NIVEAU = 2 
-AIDE = 'NOMBRE DE PROCESSEURS EN CALCUL PARALLELE 
-0 : 1 machine, compilation sans bibliotheque de parallelisme 
-1 : 1 machine, compilation avec bibliotheque de parallelisme 
-2 : 2 processeurs ou machines en parallele 
-etc... ' 
-AIDE1 = 'NUMBER OF PROCESSORS FOR PARALLEL PROCESSING 
-0 : 1 machine, compiling without parallel library 
-1 : 1 machine, compiling with a parallel library 
-2 : 2 processors or machines in parallel 
-etc....' 
-NOM = 'EQUATIONS' 
-NOM1 = 'EQUATIONS' 
-TYPE = CARACTERE 
-INDEX = 36 
-MNEMO = 'EQUA' 
-DEFAUT = 'SAINT-VENANT EF' 
-DEFAUT1 = 'SAINT-VENANT EF' 
-CHOIX  = '"SAINT-VENANT EF"';'"SAINT-VENANT VF"';'"BOUSSINESQ"' 
-CHOIX1 = '"SAINT-VENANT EF"';'"SAINT-VENANT VF"';'"BOUSSINESQ"' 
-NIVEAU = 1 
-RUBRIQUE = 'PARAMETRES NUMERIQUES';'GENERAL' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS';'GENERAL' 
-AIDE = 'CHOIX DES EQUATIONS A RESOUDRE : SAINT-VENANT ELEMENTS FINIS, 
-SAINT-VENANT VOLUMES FINIS OU BOUSSINESQ   20 CARACTERES' 
-AIDE1 = 'CHOICE OF EQUATIONS TO SOLVE : SAINT-VENANT FINITE ELEMENTS, 
-SAINT-VENANT FINITE VOLUMES OR BOUSSINESQ   20 CHARACTERS' 
-NOM = 'PROFILS DE VITESSE' 
-NOM1 = 'VELOCITY PROFILES' 
-TYPE = INTEGER 
-INDEX = 50 
-MNEMO = 'PROVEL' 
-TAILLE = 2 
-CHOIX='1="Profil normal constant"';'2="u et v dans le fichier 
- conlim"';'3="Vitesse normale donnee dans ubor dans le fichier 
- conlim"';'4="vitesse en racine carree de h"';
-'5="vitesse en racine carree de h, variante"'
-CHOIX1='1="constant normal profile"';'2="u and v given in the 
- conlim file"';'3="normal velocity given in ubor in the conlim 
- file"';'4="velocity proportional to square root of depth"';
-'5="velocity proportional to square root of depth, variant"'
-RUBRIQUE = 'EQUATIONS, CONDITIONS LIMITES' 
-RUBRIQUE1 = 'EQUATIONS, BOUNDARY CONDITIONS' 
-NIVEAU = 1 
-AIDE = '1:profil normal constant  
-        2:u et v donnes dans le fichier conditions aux limites 
-        3:vitesse normale donnee dans ubor dans le fichier conlim 
-        4:profil en racine de la profondeur
-        5:profil en racine de la profondeur, variante' 
-AIDE1= '1:constant normal profile 
-        2:u and v given in the boudary conditions file 
-        3:normal velocity given in ubor in the conlim file 
-        4:sqrt(depth) profile
-        5:sqrt(depth) profile, variant' 
-                                                                    
-NOM = 'OPTION POUR LA DIFFUSION DES TRACEURS'                               
-NOM1 = 'OPTION FOR THE DIFFUSION OF TRACERS'                               
-TYPE = INTEGER                                                            
-INDEX = 51                                                                
-MNEMO = 'OPDTRA'                                                          
-TAILLE = 0                                                                
-DEFAUT = 1                                                                
-DEFAUT1 = 1                                                                
-CHOIX = '1="div( nu grad(T) )"';                                          
-'2="1/h div ( h nu grad(T)"'                                              
-CHOIX1= '1="div( nu grad(T) )"';                                           
-'2="1/h div ( h nu grad(T)"'                                               
-RUBRIQUE = 'EQUATIONS';'TRACEUR';'OPTIONS TRACEUR'                        
-RUBRIQUE1 = 'EQUATIONS';'TRACER';'TRACER OPTIONS'                          
-NIVEAU = 1                                                                 
-AIDE = '1: Diffusion de la forme div( nu grad(T) )                        
-        2: Diffusion de la forme 1/h div ( h nu grad(T) )'                  
-AIDE1= '1: Diffusion in the form div( nu grad(T) )                          
-        2: Diffusion in the form 1/h div ( h nu grad(T) )'                  
-                                                                            
-NOM = 'OPTION POUR LA DIFFUSION DES VITESSES'                               
-NOM1 = 'OPTION FOR THE DIFFUSION OF VELOCITIES'                             
-TYPE = INTEGER                                                              
-INDEX = 52                                                                  
-MNEMO = 'OPDVIT'                                                            
-TAILLE = 0                                                                  
-DEFAUT = 1                                                                  
-DEFAUT1 = 1                                                                 
-CHOIX = '1="div( nu grad(U) )"';                                            
-'2="1/h div ( h nu grad(U)"'                                                
-CHOIX1= '1="div( nu grad(U) )"';                                            
-'2="1/h div ( h nu grad(U)"'                                                
-RUBRIQUE = 'PARAMETRES NUMERIQUES, VITESSE-CELERITE-HAUTEUR'                
-RUBRIQUE1 = 'NUMERICAL PARAMETERS, VELOCITY-CELERITY-HIGHT'                 
-NIVEAU = 1                                                                  
-AIDE = '1: Diffusion de la forme div( nu grad(U) )                          
-        2: Diffusion de la forme 1/h div ( h nu grad(U) )'                  
-AIDE1= '1: Diffusion in the form div( nu grad(U) )                          
-        2: Diffusion in the form 1/h div ( h nu grad(U) )'                  
-                                                                            
-NOM = 'TYPE DES SOURCES'                                                    
-NOM1 = 'TYPE OF SOURCES'                                                    
-TYPE = ENTIER                                                               
-INDEX = 53                                                                  
-MNEMO = 'OPTSOU'                                                            
-CONTROLE = 1;2                                                              
-TAILLE = 0                                                                  
-DEFAUT = 1                                                                  
-DEFAUT1 =1                                                                  
-CHOIX = '1="Normal"';'2="Dirac"'                                            
-CHOIX1= '1="Normal"';'2="Dirac"'                                            
-RUBRIQUE = 'EQUATIONS, SOURCES'                                             
-RUBRIQUE1 = 'EQUATIONS, SOURCE TERMS'                                       
-NIVEAU = 2                                                                  
-AIDE = '1: Source portee par une base elements finis                        
-        2: Source portee  par une fonction de Dirac'                        
-AIDE1= '1: Source term multiplied by a finite element basis                 
-        2: Source term multiplied by a Dirac function'                      
-/ NOUVEAUTES 5.0 
-NOM = 'NOMBRE DE TABLEAUX PRIVES' 
-NOM1 = 'NUMBER OF PRIVATE ARRAYS' 
-TYPE = ENTIER 
-INDEX = 54 
-MNEMO = 'NPRIV' 
-TAILLE = 0 
-DEFAUT = 0 
-DEFAUT1 = 0 
-RUBRIQUE = 'PARAMETRES NUMERIQUES';'GENERAL' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS';'GENERAL' 
-NIVEAU = 1 
-AIDE = 'Nombre de tableaux mis a disposition de l utilisateur' 
-AIDE1 = 'Number of arrays for own user programming'        
-NOM = 'LANGUE' 
-NOM1 = 'LANGUAGE' 
-TYPE = ENTIER 
-INDEX = 55 
-MNEMO = 'LNG' 
-TAILLE = 0 
-DEFAUT = 1 
-DEFAUT1 = 2 
-CHOIX = '1="FRANCAIS"';'2="ANGLAIS"' 
-CHOIX1 = '1="FRANCAIS"';'2="ANGLAIS"' 
-RUBRIQUE = 'GENERAL' 
-RUBRIQUE1 = 'GENERAL' 
-NIVEAU = 1 
-AIDE = '1 : FRANCAIS   2 : ANGLAIS' 
-AIDE1 = '1: FRENCH   2: ENGLISH'        
-NOM = 'FICHIER DE REFERENCE' 
-NOM1 = 'REFERENCE FILE' 
-TYPE = CARACTERE 
-INDEX = 37 
-MNEMO = 'T2D_FILES(T2DREF)%NAME' 
-SUBMIT = 'T2DREF-READ-22;T2DREF;FACUL;BIN;LIT;SELAFIN' 
-DEFAUT = ' ' 
-DEFAUT1 = ' ' 
-APPARENCE = 'LISTE IS FICHIER' 
-RUBRIQUE = 'ENTREES-SORTIES, FICHIERS';'NOMS' 
-RUBRIQUE1 = 'INPUT-OUTPUT, FILES';'NAMES' 
-NIVEAU = 1 
-AIDE = 'Fichier de resultats de reference pour la validation. Les resultats a placer dans ce fichier seront a 
-ecrire sur le canal 22.' 
-AIDE1 = 'Binary-coded result file for validation. The results to be entered into this file shall be written 
-on channel 22.'  
-NOM = 'FICHIER DES FRONTIERES LIQUIDES' 
-NOM1 = 'LIQUID BOUNDARIES FILE' 
-TYPE = CARACTERE 
-INDEX = 38 
-MNEMO = 'T2D_FILES(T2DIMP)%NAME' 
-SUBMIT = 'T2DIMP-READ-12;T2DIMP;FACUL;ASC;LIT;PARAL' 
-DEFAUT = ' ' 
-DEFAUT1 = ' ' 
-APPARENCE = 'LISTE IS FICHIER' 
-RUBRIQUE = 'ENTREES-SORTIES, FICHIERS';'NOMS' 
-RUBRIQUE1 = 'INPUT-OUTPUT, FILES';'NAMES' 
-NIVEAU = 1 
-AIDE = 'Fichier de variations en temps des conditions aux limites. 
-Les donnees de ce fichier seront a lire sur le canal 12.' 
-AIDE1 = 'Variations in time of boundary conditions. Data of this file are read 
-on channel 12.'  
-NOM = 'COURANTS DE HOULE' 
-NOM1 = 'WAVE DRIVEN CURRENTS' 
-TYPE = LOGIQUE 
-INDEX = 33 
-MNEMO = 'COUROU' 
-TAILLE = 0 
-DEFAUT = NON 
-DEFAUT1 = NO 
-RUBRIQUE = 'PARAMETRES NUMERIQUES';'GENERAL' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS';'GENERAL' 
-NIVEAU = 1 
-AIDE = 'Active la prise en compte des courants de houle' 
-AIDE1 = 'Wave driven currents are taken into account. ' 
-NOM = 'NUMERO DE L''ENREGISTREMENT DANS LE FICHIER DE HOULE' 
-NOM1 = 'RECORD NUMBER IN WAVE FILE' 
-TYPE = ENTIER 
-INDEX = 56 
-MNEMO = 'NPTH' 
-TAILLE = 0 
-DEFAUT = 1 
-DEFAUT1 = 1 
-RUBRIQUE = 'PARAMETRES NUMERIQUES';'GENERAL' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS';'GENERAL' 
-NIVEAU = 1 
-AIDE = 'Numero d enregistrement dans le fichier des courants de houle' 
-AIDE1 = 'Record number to read in the wave driven currents file' 
-/ NOUVEAUTES 5.1 
-NOM = 'STRUCTURES VERTICALES' 
-NOM1 = 'VERTICAL STRUCTURES' 
-TYPE = LOGIQUE 
-INDEX = 34 
-MNEMO = 'VERTIC' 
-TAILLE = 0 
-DEFAUT = NON 
-DEFAUT1 = NO 
-RUBRIQUE = 'PARAMETRES NUMERIQUES';'GENERAL' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS';'GENERAL' 
-NIVEAU = 1 
-AIDE = 'Prise en compte de la force de trainee de structures verticales 
-(il faut alors remplir la subroutine DRAGFO)' 
-AIDE1 = 'drag forces from vertical structures are taken into account. 
-(subroutine DRAGFO must then be implemented) ' 
-NOM = 'SORTIE DES CONDITIONS INITIALES' 
-NOM1 = 'OUTPUT OF INITIAL CONDITIONS' 
-TYPE = LOGIQUE 
-INDEX = 35 
-MNEMO = 'OUTINI' 
-TAILLE = 0 
-DEFAUT = OUI 
-DEFAUT1 = YES 
-RUBRIQUE = 'PARAMETRES NUMERIQUES';'GENERAL' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS';'GENERAL' 
-NIVEAU = 1 
-AIDE = 'Si OUI, impression des conditions initiales dans les resultats' 
-AIDE1 = 'If YES, output of initial conditions in the results' 
-/ NOUVEAUTES 5.2 
-NOM = 'DOSSIER DE COUPLAGE' 
-NOM1 = 'COUPLING DIRECTORY' 
-TYPE = CARACTERE 
-INDEX = 39 
-MNEMO = 'DOSSIER_COUPLAGE' 
-DEFAUT = ' ' 
-DEFAUT1 = ' ' 
-RUBRIQUE = 'ENTREES-SORTIES, FICHIERS';'NOMS' 
-RUBRIQUE1 = 'INPUT-OUTPUT, FILES';'NAMES' 
-NIVEAU = 1 
-AIDE = 'Nom complet du dossier d echange des fichiers 
- pour couplage de codes' 
-AIDE1 = 'Name with full path of the directory where the files will  
- be exchanged for coupling'  
-NOM = 'COUPLAGE AVEC' 
-NOM1 = 'COUPLING WITH' 
-TYPE = CARACTERE 
-INDEX = 40 
-MNEMO = 'COUPLING, IN BIEF' 
-DEFAUT = ' ' 
-DEFAUT1 = ' ' 
-CHOIX = '"SISYPHE"';'"TOMAWAC"';'"DELWAQ"' 
-CHOIX1 = '"SISYPHE"';'"TOMAWAC"';'"DELWAQ"' 
-RUBRIQUE = 'ENTREES-SORTIES, FICHIERS';'NOMS' 
-RUBRIQUE1 = 'INPUT-OUTPUT, FILES';'NAMES' 
-NIVEAU = 1 
-AIDE = 'Liste des codes avec lesquels on couple Telemac-2D 
-        SISYPHE : couplage interne avec Sisyphe 
-        TOMAWAC : couplage interne avec Tomawac 
-        DELWAQ : sortie de fichiers de resultats pour Delwaq' 
-AIDE1 = 'List of codes to be coupled with Telemac-2D 
-        SISYPHE : internal coupling with Sisyphe 
-        TOMAWAC : internal coupling with Tomawac 
-        DELWAQ: will yield results file for Delwaq'  
-NOM = 'ESTIMATION DE PARAMETRE' 
-NOM1 = 'PARAMETER ESTIMATION' 
-TYPE = CARACTERE 
-INDEX = 60 
-MNEMO = 'ESTIME' 
-DEFAUT = ' ' 
-DEFAUT1 = ' ' 
-CHOIX = '"FROTTEMENT"';'"FROTTEMENT, PERMANENT"' 
-CHOIX1 = '"FRICTION"';'"FROTTEMENT, STEADY"' 
-RUBRIQUE = 'ENTREES-SORTIES, FICHIERS';'NOMS' 
-RUBRIQUE1 = 'INPUT-OUTPUT, FILES';'NAMES' 
-NIVEAU = 1 
-AIDE = 'Liste des parametres a estimer, choix : FROTTEMENT 
-        ou FROTTEMENT, PERMANENT' 
-AIDE1 = 'List of parameter to be estimated, choice : FRICTION 
-        or FRICTION, STEADY'  
-NOM = 'DEFINITION DE ZONES' 
-NOM1 = 'DEFINITION OF ZONES' 
-TYPE = LOGIQUE 
-INDEX = 36 
-MNEMO = 'DEFZON' 
-TAILLE = 0 
-DEFAUT = NON 
-DEFAUT1 = NO 
-RUBRIQUE = 'PARAMETRES NUMERIQUES';'GENERAL' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS';'GENERAL' 
-NIVEAU = 1 
-AIDE = 'Declenche l''appel a def_zones, pour donner 
- un numero de zone a chaque point' 
-AIDE1 = 'Triggers the call to def_zones 
- to give a zone number to every point' 
-NOM = 'METHODE D''IDENTIFICATION' 
-NOM1 = 'IDENTIFICATION METHOD' 
-TYPE = ENTIER 
-INDEX = 57 
-MNEMO = 'OPTID' 
-TAILLE = 0 
-DEFAUT = 1 
-DEFAUT1 = 1 
-CHOIX = '0="plan d''experience"'; 
-'1="gradient simple"'; 
-'2="gradient conj"'; 
-'3="interp. de Lagrange"' 
-CHOIX1 = '0="list of tests"';  
-'1="gradient simple"'; 
-'2="conj gradient"'; 
-'3="Lagrange interp."' 
-RUBRIQUE = 'PARAMETRES NUMERIQUES';'GENERAL' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS';'GENERAL' 
-NIVEAU = 1 
-AIDE = '0 : plan d''experience 1 : gradient simple  
-        2 : gradient conj. 3 : interp. de Lagrange' 
-AIDE1 = '0 : list of tests 1: gradient  
-        2 : conj. gradient 3 : lagrange interp.' 
-NOM = 'PERIODES D''ANALYSE DE FOURIER' 
-NOM1 = 'FOURIER ANALYSIS PERIODS' 
-TYPE = REEL 
-INDEX = 51 
-MNEMO = 'PERIAF' 
-TAILLE = 2 
-RUBRIQUE = 'EQUATIONS, SOURCES' 
-RUBRIQUE1 = 'EQUATIONS, SOURCE TERMS' 
-NIVEAU = 1 
-AIDE = 'Liste des periodes que l''on veut analyser' 
-AIDE1 = 'List of periods to be analysed' 
-NOM = 'LISTE DE POINTS' 
-NOM1 = 'LIST OF POINTS' 
-TYPE = INTEGER 
-INDEX = 58 
-MNEMO = 'LIST_PTS' 
-TAILLE = 2 
-RUBRIQUE = 'PARAMETRES NUMERIQUES';'GENERAL' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS';'GENERAL' 
-NIVEAU = 1 
-AIDE = 'Liste de points remarquables pour les impressions' 
-AIDE1= 'List of remarkable points for printouts' 
-NOM = 'NOMS DES POINTS' 
-NOM1 = 'NAMES OF POINTS' 
-TYPE = CARACTERE 
-INDEX = 61 
-MNEMO = 'NAME_PTS' 
-TAILLE = 2 
-RUBRIQUE = 'PARAMETRES NUMERIQUES';'GENERAL' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS';'GENERAL' 
-NIVEAU = 1 
-AIDE = 'Noms des points remarquables pour les impressions' 
-AIDE1= 'Names of remarkable points for printouts' 
-NOM = 'FONCTION COUT' 
-NOM1 = 'COST FUNCTION' 
-TYPE = ENTIER 
-INDEX = 59 
-MNEMO = 'OPTCOST' 
-TAILLE = 0 
-DEFAUT = 1 
-DEFAUT1 = 1 
-RUBRIQUE = 'PARAMETRES NUMERIQUES';'GENERAL' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS';'GENERAL' 
-NIVEAU = 1 
-AIDE = '1 : calculee sur h, u , v  2 : calculee avec c, u , v' 
-AIDE1 = '1: computed with h, u , v 2: computed with c, u , v' 
-NOM = 'MAXIMUM D''ITERATIONS POUR L''IDENTIFICATION' 
-NOM1 = 'MAXIMUM NUMBER OF ITERATIONS FOR IDENTIFICATION' 
-TYPE = ENTIER 
-INDEX = 60 
-MNEMO = 'MAXEST' 
-TAILLE = 0 
-DEFAUT = 20 
-DEFAUT1 = 20 
-RUBRIQUE = 'PARAMETRES NUMERIQUES';'GENERAL' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS';'GENERAL' 
-NIVEAU = 1 
-AIDE = 'chaque iteration comprend au moins un 
- calcul direct et un calcul adjoint' 
-AIDE1 = 'every iteration implies at least a direct and 
- an adjoint computation' 
-  
-NOM = 'PERIODE DE COUPLAGE POUR SISYPHE' 
-NOM1 = 'COUPLING PERIOD FOR SISYPHE' 
-TYPE = ENTIER 
-INDEX = 61 
-MNEMO = 'PERCOU' 
-TAILLE = 0 
-DEFAUT = 1 
-DEFAUT1 = 1 
-RUBRIQUE = 'PARAMETRES NUMERIQUES';'GENERAL' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS';'GENERAL' 
-NIVEAU = 1 
-AIDE = 'pour eviter de faire le couplage a chaque pas de temps' 
-AIDE1 = 'to avoid coupling at every time-step' 
-  
-NOM = 'PRECISIONS POUR L''IDENTIFICATION' 
-NOM1 = 'TOLERANCES FOR IDENTIFICATION' 
-TYPE = REEL 
-INDEX = 52 
-MNEMO = 'TOLEST' 
-TAILLE = 4 
-DEFAUT = 1.E-3;1.E-3;1.E-3;1.E-4 
-DEFAUT1 = 1.E-3;1.E-3;1.E-3;1.E-4 
-RUBRIQUE = 'PARAMETRES NUMERIQUES';'GENERAL' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS';'GENERAL' 
-NIVEAU = 1 
-AIDE = '4 nombres : precision absolue sur H, U, V,
- et precision relative sur la fonction cout' 
-AIDE1 = '4 numbers: absolute precision on H, U V,
- and relative precision on the cost function' 
-/ 
-/ NOUVEAUTES 5.3 
-/ 
-NOM = 'SCHEMA EN VOLUMES FINIS' 
-NOM1 = 'FINITE VOLUME SCHEME' 
-TYPE = ENTIER 
-INDEX = 62 
-MNEMO = 'OPTVF' 
-TAILLE = 0 
-DEFAUT = 1 
-DEFAUT1 = 1 
-CHOIX = '0="schema de Roe"';
-'1="schéma cinetique ordre 1"'; 
-'2="schéma cinetique ordre 2"' ; 
-'3="schéma Zokagoa ordre 1"'; 
-'4="schéma Tchamen ordre 1"'; 
-'5="schéma HLLC ordre 1"'; 
-'6="schéma WAF ordre 2"'
-CHOIX1 = '0="Roe scheme"';
-'1="kinetic order 1"'; 
-'2="kinetic order 2"'; 
-'3="Zokagoa scheme order 1"'; 
-'4="Tchamen scheme order 1"'; 
-'5="HLLC scheme order 1"'; 
-'6="WAF scheme order 2"'
-RUBRIQUE = 'PARAMETRES NUMERIQUES';'GENERAL' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS';'GENERAL' 
-NIVEAU = 1 
-AIDE  = '0 : schema de Roe 1 : cinetique ordre 1  2 : cinetique ordre 2
-3 : schema de Zokagoa 4 : schema de Tchamen 5 : HLLC ordre 1  
-6 : WAF ordre 2'
-AIDE1 = '0: Roe scheme     1: kinetic order 1     2: kinetic order 2 
-3 : Zokagoa scheme 4 : Tchamen scheme 5 : HLLC order 1  
-6 : WAF order 2'
-/ 
-/ NOUVEAUTES 5.4  
-/ 
-NOM = 'FICHIER DES PARAMETRES DE SISYPHE' 
-NOM1 = 'SISYPHE STEERING FILE' 
-TYPE = CARACTERE 
-INDEX = 62 
-MNEMO = 'PAS DE MNEMO' 
-DEFAUT = ' ' 
-DEFAUT1 = ' ' 
-APPARENCE = 'LISTE IS FICHIER' 
-RUBRIQUE = 'ENTREES-SORTIES, FICHIERS';'NOMS' 
-RUBRIQUE1 = 'INPUT-OUTPUT, FILES';'NAMES' 
-NIVEAU = 1 
-AIDE = 'Fichier des parametres de Sisyphe en cas de couplage interne' 
-AIDE1 = 'Sisyphe parameter file in case of internal coupling' 
-/ 
-/ NOUVEAUTES 5.5  
-/ 
-NOM = 'DONNEES POUR LE FROTTEMENT' 
-NOM1 = 'FRICTION DATA' 
-TYPE = LOGIQUE 
-INDEX = 37 
-MNEMO = 'FRICTB' 
-DEFAUT = NON 
-DEFAUT1 = NO 
-RUBRIQUE = 'CONSTANTES PHYSIQUES' 
-RUBRIQUE1 = 'PHYSICAL CONSTANTS' 
-NIVEAU = 1 
-AIDE = 'Lois de frottements definies par zone' 
-AIDE1 = 'Friction law defined by area' 
-NOM = 'NOMBRE MAXIMUM DE DOMAINES DE FROTTEMENT' 
-NOM1 = 'MAXIMUM NUMBER OF FRICTION DOMAINS' 
-TYPE = INTEGER 
-INDEX = 63 
-MNEMO = 'NZONMX' 
-DEFAUT = 10 
-DEFAUT1 = 10 
-RUBRIQUE = 'CONSTANTES PHYSIQUES' 
-RUBRIQUE1 = 'PHYSICAL CONSTANTS' 
-NIVEAU = 1 
-AIDE = 'nombre maximal de zones pouvant etre definies pour le 
-frottement. Peut etre augmente si necessaire' 
-AIDE1 = 'maximal number of zones defined for the friction.  
-Could be increased if needed' 
-NOM = 'FICHIER DE DONNEES POUR LE FROTTEMENT' 
-NOM1 = 'FRICTION DATA FILE' 
-TYPE = CARACTERE 
-INDEX = 63 
-MNEMO = 'T2D_FILES(T2DCOF)%NAME' 
-SUBMIT = 'T2DCOF-READ-35;T2DCOF;FACUL;ASC;LIT;PARAL' 
-DEFAUT = ' ' 
-DEFAUT1 = ' ' 
-APPARENCE = 'LISTE IS FICHIER' 
-RUBRIQUE = 'ENTREES-SORTIES, FICHIERS';'NOMS' 
-RUBRIQUE1 = 'INPUT-OUTPUT, FILES';'NAMES' 
-NIVEAU = 1 
-AIDE = 'fichier de donnees pour le frottement' 
-AIDE1 = 'friction data file' 
-NOM = 'VALEUR PAR DEFAUT DU MANNING POUR LA LOI DE COLEBROOK-WHITE' 
-NOM1 = 'MANNING DEFAULT VALUE FOR COLEBROOK-WHITE LAW' 
-TYPE = REEL 
-INDEX = 53 
-MNEMO = 'NDEF' 
-DEFAUT = 0.02 
-DEFAUT1 = 0.02 
-RUBRIQUE = 'CONSTANTES PHYSIQUES' 
-RUBRIQUE1 = 'PHYSICAL CONSTANTS' 
-NIVEAU = 1 
-AIDE = 'valeur par defaut du manning pour la loi de frottement de  
-Colebrook-White (loi numero 7)' 
-AIDE1 = 'Manning default value for the friction law of Colebrook-White 
-(law number 7)' 
-NOM = 'FROTTEMENT POUR LA VEGETATION NON SUBMERGEE' 
-NOM1 = 'NON-SUBMERGED VEGETATION FRICTION' 
-TYPE = LOGIQUE 
-INDEX = 38 
-MNEMO = 'LINDNER' 
-DEFAUT = NON 
-DEFAUT1 = NO 
-RUBRIQUE = 'CONSTANTES PHYSIQUES' 
-RUBRIQUE1 = 'PHYSICAL CONSTANTS' 
-NIVEAU = 1 
-AIDE = 'calcul du frottement du a la vegetation non submergee' 
-AIDE1 = 'friction calculation of the non-submerged vegetation' 
-NOM = 'DIAMETRE DES ELEMENTS DE FROTTEMENT' 
-NOM1 = 'DIAMETER OF ROUGHNESS ELEMENTS' 
-TYPE = REEL 
-INDEX = 54 
-MNEMO = 'DP' 
-DEFAUT = 0.006 
-DEFAUT1 = 0.006 
-RUBRIQUE = 'CONSTANTES PHYSIQUES' 
-RUBRIQUE1 = 'PHYSICAL CONSTANTS' 
-NIVEAU = 1 
-AIDE = 'diametre des elements de frottements' 
-AIDE1 = 'diameter of roughness element' 
-NOM = 'ESPACEMENT DES ELEMENTS DE FROTTEMENT' 
-NOM1 = 'SPACING OF ROUGHNESS ELEMENTS' 
-TYPE = REEL 
-INDEX = 55 
-MNEMO = 'SP' 
-DEFAUT = 0.14 
-DEFAUT1 = 0.14 
-NIVEAU = 1 
-RUBRIQUE = 'CONSTANTES PHYSIQUES' 
-RUBRIQUE1 = 'PHYSICAL CONSTANTS' 
-AIDE = 'espacement des elements de frottement' 
-AIDE1 = 'spacing of rouhness element' 
-NOM = 'IMPRESSION DU CUMUL DES FLUX' 
-NOM1 = 'PRINTING CUMULATED FLOWRATES' 
-TYPE = LOGIQUE 
-INDEX = 39 
-MNEMO = 'CUMFLO' 
-TAILLE = 0 
-DEFAUT = NON 
-DEFAUT1 =  NO 
-RUBRIQUE = 'ENTREES-SORTIES, GRAPHIQUES ET LISTING' 
-RUBRIQUE1 = 'INPUT-OUTPUT, GRAPHICS AND LISTING' 
-NIVEAU = 1 
-AIDE = 'IMPRESSION DU FLUX CUMULE A TRAVERS LES SECTIONS DE CONTROLE' 
-AIDE1 = 'PRINTING THE CUMULATED FLOWRATES THROUGH CONTROL SECTIONS' 
-NOM = 'CALCUL COMPATIBLE DES FLUX' 
-NOM1 = 'COMPATIBLE COMPUTATION OF FLUXES' 
-TYPE = LOGIQUE 
-INDEX = 40 
-MNEMO = 'COMFLU' 
-TAILLE = 0 
-DEFAUT = NON 
-DEFAUT1 =  NO 
-RUBRIQUE = 'PARAMETRES NUMERIQUES' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS' 
-NIVEAU = 1 
-AIDE = 'FLUX A TRAVERS LES SECTIONS DE CONTROLE, CALCUL COMPATIBLE 
-AVEC L''IMPERMEABILITE SOUS FORME FAIBLE' 
-AIDE1 = 'FLOWRATES THROUGH CONTROL SECTIONS, COMPUTATION COMPATIBLE 
-WITH THE WEAK FORMULATION OF NO-FLUX BOUNDARY CONDITION' 
-/ 
-/ NOUVEAUTES 5.6  
-/ 
-NOM = 'PROFONDEUR LIMITE POUR LE VENT' 
-NOM1 = 'THRESHOLD DEPTH FOR WIND' 
-TYPE = REEL 
-INDEX = 56 
-MNEMO = 'HWIND' 
-DEFAUT = 1. 
-DEFAUT1 = 1. 
-NIVEAU = 1 
-RUBRIQUE = 'CONSTANTES PHYSIQUES' 
-RUBRIQUE1 = 'PHYSICAL CONSTANTS' 
-AIDE = 'Retire la force due au vent dans les petites profondeurs' 
-AIDE1 = 'Wind is not taken into account for small depths' 
-/ 
-NOM = 'SEUIL POUR LES PROFONDEURS NEGATIVES' 
-NOM1 = 'THRESHOLD FOR NEGATIVE DEPTHS' 
-TYPE = REEL 
-INDEX = 57 
-MNEMO = 'HNEG' 
-DEFAUT = 0. 
-DEFAUT1 = 0. 
-RUBRIQUE = 'CONSTANTES PHYSIQUES' 
-RUBRIQUE1 = 'PHYSICAL CONSTANTS' 
-NIVEAU = 1 
-AIDE = 'En dessous du seuil, les hauteurs negatives sont lissees' 
-AIDE1 = 'Below the threshold the negative depths are smoothed' 
-/ 
-/ FOR COMPATIBILITY WITH TELEMAC-3D
-/ SEE TREATMENT IN LECDON_TELEMAC2D 
-/ 
-NOM = 'PERIODE POUR LES SORTIES LISTING' 
-NOM1 = 'LISTING PRINTOUT PERIOD' 
-TYPE = INTEGER 
-INDEX = 64 
-MNEMO = 'LISPRD' 
-DEFAUT = 1 
-DEFAUT1 = 1 
-NIVEAU = 1 
-RUBRIQUE = 'ENTREES-SORTIES, GRAPHIQUES ET LISTING' 
-RUBRIQUE1 = 'INPUT-OUTPUT, GRAPHICS AND LISTING' 
-AIDE = 'Determine la periode en nombre de pas de temps d''impression 
-des ''VARIABLES A IMPRIMER'' (voir ce mot-cle) Pour la mise au point, 
-il faut savoir que la sortie des resultats est effectuee 
-systematiquement sur le fichier de retour d''execution du code 
-(actuellement accessible par le menu 3.f de SPF sur IBM, et dans 
-le fichier !CAS.SORTIE sur station de travail)' 
-AIDE1 = 'Determines, in number of time steps, the printout period of 
-the VARIABLES TO BE PRINTED 
-The results are systematically printed out on the listing file 
-(file CAS.SORTIE at the workstation).' 
-/ 
-/ 
-NOM = 'COORDONNEES DE L''ORIGINE' 
-NOM1 = 'ORIGIN COORDINATES' 
-TYPE = ENTIER 
-INDEX = 65 
-MNEMO = 'I_ORIG,J_ORIG' 
-TAILLE = 2 
-DEFAUT = 0;0 
-DEFAUT1 = 0;0 
-RUBRIQUE = 'ENTREES-SORTIES, GENERALITES';'CONTROLE' 
-RUBRIQUE1 = 'INPUT-OUTPUT, INFORMATION';'CONTROL' 
-NIVEAU = 2 
-AIDE = 'Valeur en metres, utilise pour eviter les trops grands nombres, transmis 
-dans le format Selafin mais pas d''autre traitement pour l''instant' 
-AIDE1 = 'Value in metres, used to avoid large real numbers,  
-added in Selafin format, but so far no other treatment' 
-/ 
-/ NOUVEAUTES 5.7  
-/ 
-NOM = 'PERIODE DE SORTIE POUR DELWAQ' 
-NOM1 = 'DELWAQ PRINTOUT PERIOD' 
-TYPE = ENTIER 
-INDEX = 66 
-MNEMO = 'WAQPRD' 
-TAILLE = 0 
-DEFAUT = 1 
-DEFAUT1 = 1 
-RUBRIQUE = 'ENTREES-SORTIES, GENERALITES';'CONTROLE' 
-RUBRIQUE1 = 'INPUT-OUTPUT, INFORMATION';'CONTROL' 
-NIVEAU = 2 
-AIDE = 'Periode de sortie des resultats pour Delwaq' 
-AIDE1 = 'Printout period for Delwaq file' 
-/ 
-NOM = 'FICHIER DELWAQ DES VOLUMES' 
-NOM1 = 'VOLUMES DELWAQ FILE' 
-TYPE = CARACTERE 
-INDEX = 64 
-MNEMO = 'T2D_FILES(T2DSOU)%NAME' 
-SUBMIT = 'T2DDL1-WRITE-36;T2DDL1;FACUL;BIN;ECR;DELWAQPTS' 
-DEFAUT = ' ' 
-DEFAUT1 = ' ' 
-NIVEAU = 1 
-APPARENCE = 'LISTE IS FICHIER' 
-RUBRIQUE = 'ENTREES-SORTIES, FICHIERS';'NOMS' 
-RUBRIQUE1 = 'INPUT-OUTPUT, FILES';'NAMES' 
-AIDE = 'Fichier de resultats pour le couplage avec Delwaq' 
-AIDE1 = 'Results file for coupling with Delwaq' 
-/ 
-NOM = 'FICHIER DELWAQ DES SURFACES DE FLUX' 
-NOM1 = 'EXCHANGE AREAS DELWAQ FILE' 
-TYPE = CARACTERE 
-INDEX = 65 
-MNEMO = 'T2D_FILES(T2DDL2)%NAME' 
-SUBMIT = 'T2DDL2-WRITE-37;T2DDL2;FACUL;BIN;ECR;DELWAQSEG' 
-DEFAUT = ' ' 
-DEFAUT1 = ' ' 
-NIVEAU = 1 
-APPARENCE = 'LISTE IS FICHIER' 
-RUBRIQUE = 'ENTREES-SORTIES, FICHIERS';'NOMS' 
-RUBRIQUE1 = 'INPUT-OUTPUT, FILES';'NAMES' 
-AIDE = 'Fichier de resultats pour le couplage avec Delwaq' 
-AIDE1 = 'Results file for coupling with Delwaq' 
-/ 
-NOM = 'FICHIER DELWAQ DES FLUX VERTICAUX' 
-NOM1 = 'VERTICAL FLUXES DELWAQ FILE' 
-TYPE = CARACTERE 
-INDEX = 66 
-MNEMO = 'T2D_FILES(T2DDL3)%NAME' 
-SUBMIT = 'T2DDL3-WRITE-38;T2DDL3;FACUL;BIN;ECR;DELWAQSEG' 
-DEFAUT = ' ' 
-DEFAUT1 = ' ' 
-NIVEAU = 1 
-APPARENCE = 'LISTE IS FICHIER' 
-RUBRIQUE = 'ENTREES-SORTIES, FICHIERS';'NOMS' 
-RUBRIQUE1 = 'INPUT-OUTPUT, FILES';'NAMES' 
-AIDE = 'Fichier de resultats pour le couplage avec Delwaq' 
-AIDE1 = 'Results file for coupling with Delwaq' 
-/ 
-NOM = 'FICHIER DELWAQ DE LA SALINITE' 
-NOM1 = 'SALINITY DELWAQ FILE' 
-TYPE = CARACTERE 
-INDEX = 67 
-MNEMO = 'T2D_FILES(T2DDL4)%NAME' 
-SUBMIT = 'T2DDL4-WRITE-39;T2DDL4;FACUL;BIN;ECR;DELWAQPTS' 
-DEFAUT = ' ' 
-DEFAUT1 = ' ' 
-NIVEAU = 1 
-APPARENCE = 'LISTE IS FICHIER' 
-RUBRIQUE = 'ENTREES-SORTIES, FICHIERS';'NOMS' 
-RUBRIQUE1 = 'INPUT-OUTPUT, FILES';'NAMES' 
-AIDE = 'Fichier de resultats pour le couplage avec Delwaq' 
-AIDE1 = 'Results file for coupling with Delwaq' 
-/ 
-NOM = 'FICHIER DELWAQ DES SURFACES DU FOND' 
-NOM1 = 'BOTTOM SURFACES DELWAQ FILE' 
-TYPE = CARACTERE 
-INDEX = 68 
-MNEMO = 'T2D_FILES(T2DDL5)%NAME' 
-SUBMIT = 'T2DDL5-WRITE-40;T2DDL5;FACUL;BIN;ECR;DELWAQMET' 
-DEFAUT = ' ' 
-DEFAUT1 = ' ' 
-NIVEAU = 1 
-APPARENCE = 'LISTE IS FICHIER' 
-RUBRIQUE = 'ENTREES-SORTIES, FICHIERS';'NOMS' 
-RUBRIQUE1 = 'INPUT-OUTPUT, FILES';'NAMES' 
-AIDE = 'Fichier de resultats pour le couplage avec Delwaq' 
-AIDE1 = 'Results file for coupling with Delwaq' 
-/ 
-NOM = 'FICHIER DELWAQ DES ECHANGES ENTRE NOEUDS' 
-NOM1 = 'EXCHANGES BETWEEN NODES DELWAQ FILE' 
-TYPE = CARACTERE 
-INDEX = 69 
-MNEMO = 'T2D_FILES(T2DDL6)%NAME' 
-SUBMIT = 'T2DDL6-WRITE-41;T2DDL6;FACUL;BIN;ECR;DELWAQMET' 
-DEFAUT = ' ' 
-DEFAUT1 = ' ' 
-NIVEAU = 1 
-APPARENCE = 'LISTE IS FICHIER' 
-RUBRIQUE = 'ENTREES-SORTIES, FICHIERS';'NOMS' 
-RUBRIQUE1 = 'INPUT-OUTPUT, FILES';'NAMES' 
-AIDE = 'Fichier de resultats pour le couplage avec Delwaq' 
-AIDE1 = 'Results file for coupling with Delwaq' 
-/ 
-NOM = 'FICHIER DELWAQ DES DISTANCES ENTRE NOEUDS' 
-NOM1 = 'NODES DISTANCES DELWAQ FILE' 
-TYPE = CARACTERE 
-INDEX = 70 
-MNEMO = 'T2D_FILES(T2DDL7)%NAME' 
-SUBMIT = 'T2DDL7-WRITE-42;T2DDL7;FACUL;BIN;ECR;DELWAQMET' 
-DEFAUT = ' ' 
-DEFAUT1 = ' ' 
-NIVEAU = 1 
-APPARENCE = 'LISTE IS FICHIER' 
-RUBRIQUE = 'ENTREES-SORTIES, FICHIERS';'NOMS' 
-RUBRIQUE1 = 'INPUT-OUTPUT, FILES';'NAMES' 
-AIDE = 'Fichier de resultats pour le couplage avec Delwaq' 
-AIDE1 = 'Results file for coupling with Delwaq' 
-/ 
-NOM = 'FICHIER DELWAQ DE LA TEMPERATURE' 
-NOM1 = 'TEMPERATURE DELWAQ FILE' 
-TYPE = CARACTERE 
-INDEX = 72 
-MNEMO = 'T2D_FILES(T2DDL8)%NAME' 
-SUBMIT = 'T2DDL8-WRITE-43;T2DDL8;FACUL;BIN;ECR;DELWAQPTS' 
-DEFAUT = ' ' 
-DEFAUT1 = ' ' 
-NIVEAU = 1 
-APPARENCE = 'LISTE IS FICHIER' 
-RUBRIQUE = 'ENTREES-SORTIES, FICHIERS';'NOMS' 
-RUBRIQUE1 = 'INPUT-OUTPUT, FILES';'NAMES' 
-AIDE = 'Fichier de resultats pour le couplage avec Delwaq' 
-AIDE1 = 'Results file for coupling with Delwaq' 
-/ 
-NOM = 'FICHIER DELWAQ DE LA VITESSE' 
-NOM1 = 'VELOCITY DELWAQ FILE' 
-TYPE = CARACTERE 
-INDEX = 76 
-MNEMO = 'T2D_FILES(T2DDL9)%NAME' 
-SUBMIT = 'T2DDL9-WRITE-33;T2DDL9;FACUL;BIN;ECR;DELWAQPTS' 
-DEFAUT = ' ' 
-DEFAUT1 = ' ' 
-NIVEAU = 1 
-APPARENCE = 'LISTE IS FICHIER' 
-RUBRIQUE = 'ENTREES-SORTIES, FICHIERS';'NOMS' 
-RUBRIQUE1 = 'INPUT-OUTPUT, FILES';'NAMES' 
-AIDE = 'Fichier de resultats pour le couplage avec Delwaq' 
-AIDE1 = 'Results file for coupling with Delwaq' 
-/ 
-NOM = 'FICHIER DELWAQ DE LA DIFFUSION' 
-NOM1 = 'DIFFUSIVITY DELWAQ FILE' 
-TYPE = CARACTERE 
-INDEX = 77 
-MNEMO = 'T2D_FILES(T2DL10)%NAME' 
-SUBMIT = 'T2DL10-WRITE-34;T2DL10;FACUL;BIN;ECR;DELWAQPTS' 
-DEFAUT = ' ' 
-DEFAUT1 = ' ' 
-NIVEAU = 1 
-APPARENCE = 'LISTE IS FICHIER' 
-RUBRIQUE = 'ENTREES-SORTIES, FICHIERS';'NOMS' 
-RUBRIQUE1 = 'INPUT-OUTPUT, FILES';'NAMES' 
-AIDE = 'Fichier de resultats pour le couplage avec Delwaq' 
-AIDE1 = 'Results file for coupling with Delwaq' 
-/ 
-NOM = 'FICHIER DE COMMANDE DELWAQ' 
-NOM1 = 'DELWAQ STEERING FILE' 
-TYPE = CARACTERE 
-INDEX = 71 
-MNEMO = 'T2D_FILES(T2DL11)%NAME' 
-SUBMIT = 'T2DL11-WRITE-44;T2DL11;FACUL;ASC;ECR;DELWAQHYD' 
-DEFAUT = ' ' 
-DEFAUT1 = ' ' 
-NIVEAU = 1 
-APPARENCE = 'LISTE IS FICHIER' 
-RUBRIQUE = 'ENTREES-SORTIES, FICHIERS';'NOMS' 
-RUBRIQUE1 = 'INPUT-OUTPUT, FILES';'NAMES' 
-AIDE = 'Fichier de resultats pour le couplage avec Delwaq' 
-AIDE1 = 'Results file for coupling with Delwaq' 
-/ 
-NOM = 'COMPATIBILITE DU GRADIENT DE SURFACE LIBRE' 
-NOM1 = 'FREE SURFACE GRADIENT COMPATIBILITY' 
-TYPE = REEL 
-INDEX = 58 
-MNEMO = 'TETAZCOMP' 
-TAILLE = 0 
-DEFAUT = 1. 
-DEFAUT1= 1. 
-RUBRIQUE = 'PARAMETRES NUMERIQUES';'DUREE DU CALCUL' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS';'DURATION' 
-NIVEAU = 1 
-AIDE = 'Des valeurs inferieures a 1 suppriment les oscillations 
-parasites' 
-AIDE1 = 'Values less than 1 suppress spurious oscillations' 
-/ 
-NOM = 'BORNES EN TEMPS POUR L''ANALYSE DE FOURIER' 
-NOM1 = 'TIME RANGE FOR FOURIER ANALYSIS' 
-TYPE = REEL 
-INDEX = 59 
-MNEMO = 'TAFBGN,TAFEND' 
-TAILLE = 2 
-DEFAUT = 0.;0. 
-DEFAUT1= 0.;0. 
-RUBRIQUE = 'PARAMETRES NUMERIQUES';'DUREE DU CALCUL' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS';'DURATION' 
-NIVEAU = 1 
-AIDE = 'Pour le calcul du marnage et de la phase de la maree' 
-AIDE1 = 'For computing tidal range and phase of tide' 
-/ 
-/ NOUVEAUTES 5.8 (SAUF DEUX FICHIERS POUR DELWAQ MIS CI-DESSUS) 
-/ 
-NOM = 'NOMBRE DE TRACEURS' 
-NOM1 = 'NUMBER OF TRACERS' 
-TYPE = ENTIER 
-INDEX = 67 
-MNEMO = 'NTRAC' 
-TAILLE = 0 
-DEFAUT = 0 
-DEFAUT1 = 0 
-RUBRIQUE = 'EQUATIONS, TRACEUR' 
-RUBRIQUE1 = 'EQUATIONS';'TRACER' 
-NIVEAU = 1 
-/COMPORT = 'Affichage ("EQUATIONS*TRACEUR*OPTIONS TRACEUR") 
-/IS VALEUR ()'; 
-/'Foreground ("EQUATIONS*TRACEUR") IS VALEUR (brown)' 
-AIDE = 'Definit le nombre de traceurs.' 
-AIDE1 = 'Defines the number of tracers' 
-/ 
-NOM = 'NOMS DES TRACEURS' 
-NOM1 = 'NAMES OF TRACERS' 
-TYPE = CARACTERE 
-INDEX = 74 
-MNEMO = 'NAMETRAC' 
-TAILLE = 2 
-RUBRIQUE = 'ENTREES-SORTIES, FICHIERS';'NOMS' 
-RUBRIQUE1 = 'INPUT-OUTPUT, FILES';'NAMES' 
-NIVEAU = 1 
-COMPORT = 
-'Foreground ("ENTREES-SORTIES, FICHIERS*NOMS") 
-IS BRUT (red)' 
-AIDE = 'Noms des traceurs en 32 caracteres, 16 pour le nom 
-         16 pour l''unite' 
-AIDE1 = 'Name of tracers in 32 characters, 16 for the name, 
-         16 for the unit.' 
-/ 
-NOM = 'SALINITE POUR DELWAQ' 
-NOM1 = 'SALINITY FOR DELWAQ' 
-TYPE = LOGIQUE 
-INDEX = 41 
-MNEMO = 'SALI_DEL' 
-DEFAUT = NON 
-DEFAUT1 = NO 
-NIVEAU = 1 
-RUBRIQUE = 'ENTREES-SORTIES, GRAPHIQUES ET LISTING' 
-RUBRIQUE1 = 'INPUT-OUTPUT, GRAPHICS AND LISTING' 
-AIDE = 'Decide de la sortie de la salinite pour Delwaq' 
-AIDE1 = 'Triggers output of salinity for Delwaq' 
-/ 
-NOM = 'TEMPERATURE POUR DELWAQ' 
-NOM1 = 'TEMPERATURE FOR DELWAQ' 
-TYPE = LOGIQUE 
-INDEX = 42 
-MNEMO = 'TEMP_DEL' 
-DEFAUT = NON 
-DEFAUT1 = NO 
-NIVEAU = 1 
-RUBRIQUE = 'ENTREES-SORTIES, GRAPHIQUES ET LISTING' 
-RUBRIQUE1 = 'INPUT-OUTPUT, GRAPHICS AND LISTING' 
-AIDE = 'Decide de la sortie de la temperature pour Delwaq' 
-AIDE1 = 'Triggers output of temperature for Delwaq' 
-/ 
-NOM = 'VITESSE POUR DELWAQ' 
-NOM1 = 'VELOCITY FOR DELWAQ' 
-TYPE = LOGIQUE 
-INDEX = 43 
-MNEMO = 'VELO_DEL' 
-DEFAUT = NON 
-DEFAUT1 = NO 
-NIVEAU = 1 
-RUBRIQUE = 'ENTREES-SORTIES, GRAPHIQUES ET LISTING' 
-RUBRIQUE1 = 'INPUT-OUTPUT, GRAPHICS AND LISTING' 
-AIDE = 'Decide de la sortie de la vitesse pour Delwaq' 
-AIDE1 = 'Triggers output of velocity for Delwaq' 
-/ 
-NOM = 'DIFFUSION POUR DELWAQ' 
-NOM1 = 'DIFFUSIVITY FOR DELWAQ' 
-TYPE = LOGIQUE 
-INDEX = 44 
-MNEMO = 'DIFF_DEL' 
-DEFAUT = NON 
-DEFAUT1 = NO 
-NIVEAU = 1 
-RUBRIQUE = 'ENTREES-SORTIES, GRAPHIQUES ET LISTING' 
-RUBRIQUE1 = 'INPUT-OUTPUT, GRAPHICS AND LISTING' 
-AIDE = 'Decide de la sortie du coefficient de diffusion pour Delwaq' 
-AIDE1 = 'Triggers output of diffusion for Delwaq' 
-/ 
-/ NOUVEAUTES 5.9  
-/ 
-NOM = 'COURBES DE TARAGE' 
-NOM1 = 'STAGE-DISCHARGE CURVES' 
-TYPE = ENTIER 
-INDEX = 68 
-MNEMO = 'STA_DIS_CURVES' 
-TAILLE = 2 
-CHOIX = '0="non"';'1="Z(Q)"';'non programme 2="Q(Z)"' 
-CHOIX1 = '0="no"';'1="Z(Q)"';'not programmed 2="Q(Z)"' 
-RUBRIQUE = 'CONDITIONS LIMITES' 
-RUBRIQUE1 = 'BOUNDARY CONDITIONS' 
-NIVEAU = 1 
-AIDE = 'Indique si une courbe de tarage doit etre utilisee 
-pour une frontiere 0:non 1:Z(Q) 2: Q(Z) (2 non programme)' 
-AIDE1 = 'Says if a discharge-elevation curve must be used 
-for a given boundary :NO 1:Z(Q) 2: Q(Z) (2 not programmed)' 
-/ 
-NOM = 'FICHIER DES COURBES DE TARAGE' 
-NOM1 = 'STAGE-DISCHARGE CURVES FILE' 
-TYPE = CARACTERE 
-INDEX = 73 
-MNEMO = 'T2D_FILES(T2DMAB)%NAME' 
-TAILLE = 0 
-SUBMIT = 'T2DMAB-READ-11;T2DMAB;FACUL;ASC;LIT;PARAL' 
-DEFAUT = ' ' 
-DEFAUT1 = ' ' 
-RUBRIQUE = 'ENTREES-SORTIES, FICHIERS';'NOMS' 
-RUBRIQUE1 = 'INPUT-OUTPUT, FILES';'NAMES' 
-COMPORT = 
-'Foreground ("ENTREES-SORTIES, FICHIERS*NOMS") 
-IS VALEUR (red)' 
-NIVEAU = 1 
-APPARENCE = 'LISTE IS FICHIER' 
-AIDE = 'Nom du fichier contenant les courbes de tarage' 
-AIDE1 = 'Name of the file containing stage-discharge curves' 
-/ 
-NOM = 'FICHIER DES SOURCES' 
-NOM1 = 'SOURCES FILE' 
-TYPE = CARACTERE 
-INDEX = 75 
-MNEMO = 'T2D_FILES(T2DVEF)%NAME' 
-TAILLE = 0 
-SUBMIT = 'T2DVEF-READ-10;T2DVEF;FACUL;ASC;LIT;PARAL' 
-DEFAUT = ' ' 
-DEFAUT1 = ' ' 
-RUBRIQUE = 'ENTREES-SORTIES, FICHIERS';'NOMS' 
-RUBRIQUE1 = 'INPUT-OUTPUT, FILES';'NAMES' 
-COMPORT = 
-'Foreground ("ENTREES-SORTIES, FICHIERS*NOMS") 
-IS VALEUR (red)' 
-NIVEAU = 1 
-APPARENCE = 'LISTE IS FICHIER' 
-AIDE = 'Nom du fichier contenant les informations variables 
-en temps des sources' 
-AIDE1 = 'Name of the file containing time-dependent 
-information on sources' 
-/ 
-NOM = 'DEBUGGER' 
-NOM1 = 'DEBUGGER' 
-TYPE = INTEGER 
-INDEX = 69 
-MNEMO = 'DEBUG' 
-TAILLE = 0 
-DEFAUT = 0 
-DEFAUT1 = 0 
-RUBRIQUE = 'PARAMETRES NUMERIQUES' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS' 
-NIVEAU = 1 
-AIDE= 'Pour imprimer la sequence des appels, mettre 1' 
-AIDE1 = 'If 1, calls of subroutines will be printed in the listing' 
-/ 
-NOM = 'TRAITEMENT DES HAUTEURS NEGATIVES' 
-NOM1 = 'TREATMENT OF NEGATIVE DEPTHS' 
-TYPE = INTEGER 
-INDEX = 70 
-MNEMO = 'OPT_HNEG' 
-TAILLE = 0 
-DEFAUT = 1 
-DEFAUT1 = 1 
-RUBRIQUE = 'PARAMETRES NUMERIQUES' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS' 
-NIVEAU = 1 
-AIDE= 'Seulement avec OPTION DE TRAITEMENT DES BANCS DECOUVRANTS = 1 
-       0 : pas de traitement 1 : lissage 2 : limitation des flux' 
-AIDE1 = 'Only with OPTION FOR THE TREATMENT OF TIDAL FLATS=1 
-       0: no treatment 1:smoothing 2:flux control' 
-/ 
-NOM = 'FORMAT DU FICHIER DE REFERENCE' 
-NOM1 = 'REFERENCE FILE FORMAT' 
-TYPE = CARACTERE 
-INDEX = 78 
-MNEMO = '?????' 
-DEFAUT = 'SERAFIN ' 
-DEFAUT1 = 'SERAFIN ' 
-CHOIX = 'SERAFIN ';'SERAFIND';'MED     ' 
-CHOIX1 = 'SERAFIN ';'SERAFIND';'MED     ' 
-NIVEAU = 2 
-RUBRIQUE = 'ENTREES-SORTIES, FICHIERS' 
-RUBRIQUE1 = 'INPUT-OUTPUT, FILES' 
-AIDE = 'Format du fichier de resultats du calcul precedent. 
-Les valeurs possibles sont : 
-- SERAFIN : format standard simple precision pour Telemac;  
-- SERAFIND: format standard double precision pour Telemac; 
-- MED     : format MED base sur HDF5' 
-AIDE1 = 'Previous computation results file format. 
-Possible values are: 
-- SERAFIN : classical single precision format in Telemac;  
-- SERAFIND: classical double precision format in Telemac; 
-- MED     : MED format based on HDF5' 
-/ 
-/ NOUVEAUTES 6.0  
-/ 
-NOM = 'HAUTEUR DANS LES TERMES DE FROTTEMENT' 
-NOM1 = 'DEPTH IN FRICTION TERMS' 
-TYPE = ENTIER 
-INDEX = 71 
-MNEMO = 'HFROT' 
-TAILLE = 0 
-DEFAUT = 1 
-DEFAUT1 = 1 
-CHOIX = '1="nodale"';'2="moyenne"' 
-CHOIX1 = '1="nodal"';'2="average"' 
-RUBRIQUE = 'PARAMETRES NUMERIQUES';'GENERAL' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS';'GENERAL' 
-NIVEAU = 1 
-AIDE  = '1 : nodale 2 : moyenne' 
-AIDE1 = '1: nodal   2: average' 
-/ 
-// jaj #### added 
-/ 
-NOM = 'FICHIER DES SECTIONS DE CONTROLE' 
-NOM1 = 'SECTIONS INPUT FILE' 
-TYPE = CARACTERE 
-INDEX = 79 
-MNEMO = 'T2D_FILES%ADR(T2DSEC)' 
-SUBMIT = 'NSCS-READ-45;T2DSEC;FACUL;ASC;LIT;SECTION' 
-DEFAUT = ' ' 
-DEFAUT1 = ' ' 
-RUBRIQUE = 'ENTREES-SORTIES, FICHIERS';'NOMS' 
-RUBRIQUE1 = 'INPUT-OUTPUT, FILES';'NAMES' 
-NIVEAU = 1 
-APPARENCE = 'LISTE IS FICHIER' 
-AIDE = 'sections input file, partitioned' 
-AIDE1 = 'sections input file, partitioned' 
-NOM = 'FICHIER DE SORTIE DES SECTIONS DE CONTROLE' 
-NOM1 = 'SECTIONS OUTPUT FILE' 
-TYPE = CARACTERE 
-INDEX = 80 
-MNEMO = 'T2D_FILES%ADR(T2DSEO)' 
-SUBMIT = 'NSEO-WRITE-46;T2DSEO;FACUL;ASC;ECR;SCAL' 
-DEFAUT = ' ' 
-DEFAUT1 = ' ' 
-RUBRIQUE = 'ENTREES-SORTIES, FICHIERS';'NOMS' 
-RUBRIQUE1 = 'INPUT-OUTPUT, FILES';'NAMES' 
-NIVEAU = 1 
-AIDE = 'sections output file, written by the master' 
-AIDE1 = 'sections output file, written by the master' 
-/ 
-// end of jaj #### added 
-/ 
-NOM = 'FICHIER DE COMMANDES HYDROCARBURES' 
-NOM1 = 'OILSPILL STEERING FILE' 
-TYPE = CARACTERE 
-INDEX = 81 
-MNEMO = 'T2D_FILES(T2DMIG)' 
-SUBMIT = 'NMIG-READ-47;T2DMIG;FACUL;ASC;LIT;PARAL' 
-DEFAUT = ' ' 
-DEFAUT1 = ' ' 
-RUBRIQUE = 'ENTREES-SORTIES, FICHIERS';'NOMS' 
-RUBRIQUE1 = 'INPUT-OUTPUT, FILES';'NAMES' 
-NIVEAU = 1 
-AIDE = 'Contient les donnees pour le modele de derive de nappes' 
-AIDE1 = 'Contains data for the oil spill model' 
-NOM = 'MODELE DE NAPPES D''HYDROCARBURES' 
-NOM1 = 'OIL SPILL MODEL' 
-TYPE = LOGIQUE 
-INDEX = 45 
-MNEMO = 'SPILL_MODEL' 
-TAILLE = 0 
-DEFAUT = NON 
-DEFAUT1 =  NO 
-RUBRIQUE = 'ENTREES-SORTIES, GENERALITES';'CONTROLE' 
-RUBRIQUE1 = 'INPUT-OUTPUT, INFORMATION';'CONTROL' 
-NIVEAU = 1 
-AIDE = 'POUR DECLENCHER LE MODELE DE DERIVE DE NAPPES, DANS 
-CE CAS LE FICHIER DE COMMANDES MIGRHYCAR EST NECESSAIRE' 
-AIDE1 = 'WILL TRIGGER THE OIL SPILL MODEL, IN THIS CASE 
-THE MIGRHYCAR STEERING FILE IS NEEDED' 
-/ 
-/ VERSION 6.1 
-/ 
-NOM = 'LOI DE FROTTEMENT SUR LES PAROIS LATERALES' 
-NOM1 = 'LAW OF FRICTION ON LATERAL BOUNDARIES' 
-TYPE = ENTIER 
-INDEX = 72 
-MNEMO = 'KFROTL' 
-TAILLE = 0 
-DEFAUT = 0 
-DEFAUT1 = 0 
-CHOIX = '0="PAS DE FROTTEMENT"'; 
-'1="HAALAND"'; 
-'2="CHEZY"'; 
-'3="STRICKLER"'; 
-'4="MANNING"'; 
-'5="NIKURADSE"'; 
-'6="LOG LAW"'; 
-'7="COLEBROOK-WHITE"' 
-CHOIX1 = '0="NO FRICTION"'; 
-'1="HAALAND"'; 
-'2="CHEZY"'; 
-'3="STRICKLER"'; 
-'4="MANNING"'; 
-'5="NIKURADSE"'; 
-'6="LOG LAW"'; 
-'7="COLEBROOK-WHITE"' 
-RUBRIQUE = 'EQUATIONS';'FROTTEMENT' 
-RUBRIQUE1 = 'EQUATIONS';'FRICTION' 
-NIVEAU = 1 
-AIDE = 'selectionne le type de formulation utilisee pour le calcul 
-du frottement sur les parois laterales. 
-Les lois possibles sont les suivantes (cf. Note de principe) :   
-0 : pas de frottement  
-1 : lineaire   
-2 : Chezy  
-3 : Strickler  
-4 : Manning   
-5 : formule de NIKURADSE  
-6 : loi en log 
-7 : Colebrook-White' 
-AIDE1 = 'Selects the type of formulation used for the friction on lateral boundaries. 
-The possible laws are as follows (refer to the Principle note): 
-0: no friction 
-1: linear  
-2: Chezy  
-3: Strickler   
-4: Manning   
-5: NIKURADSE''s formula  
-6 : law log 
-7 : Colebrook-White' 
-NOM = 'FICHIER DES PARAMETRES DE TOMAWAC' 
-NOM1 = 'TOMAWAC STEERING FILE' 
-TYPE = CARACTERE 
-INDEX = 82 
-MNEMO = 'PAS DE MNEMO' 
-DEFAUT = ' ' 
-DEFAUT1 = ' ' 
-NIVEAU = 1 
-APPARENCE = 'LISTE IS FICHIER' 
-RUBRIQUE = 'ENTREES-SORTIES, FICHIERS';'NOMS' 
-RUBRIQUE1 = 'INPUT-OUTPUT, FILES';'NAMES' 
-AIDE = 'Fichier des parametres de Tomawac en cas de couplage interne' 
-AIDE1 = 'Tomawac parameter file in case of internal coupling' 
-NOM = 'PERIODE DE COUPLAGE POUR TOMAWAC' 
-NOM1 = 'COUPLING PERIOD FOR TOMAWAC' 
-TYPE = ENTIER 
-INDEX = 73 
-MNEMO = 'PERCOU_WAC' 
-TAILLE = 0 
-DEFAUT = 1 
-DEFAUT1 = 1 
-RUBRIQUE = 'PARAMETRES NUMERIQUES';'GENERAL' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS';'GENERAL' 
-NIVEAU = 1 
-AIDE = 'pour eviter de faire le couplage a chaque pas de temps' 
-AIDE1 = 'to avoid coupling at every time-step' 
-
-NOM = 'COEFFICIENT D''INTEGRATION EN TEMPS DE NEWMARK' 
-NOM1 = 'NEWMARK TIME INTEGRATION COEFFICIENT' 
-TYPE = REEL 
-INDEX = 60 
-MNEMO = 'GAMMA' 
-TAILLE = 0 
-DEFAUT = 1. 
-DEFAUT1= 1. 
-RUBRIQUE = 'PARAMETRES NUMERIQUES';'DUREE DU CALCUL' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS';'DURATION' 
-NIVEAU = 1 
-AIDE = '1. : Euler explicite 0.5 : ordre 2 en temps' 
-AIDE1 = '1. : Euler explicit 0.5 : order 2 in time' 
-
-NOM = 'TRAITEMENT DES FLUX AUX FRONTIERES'
-NOM1 = 'TREATMENT OF FLUXES AT THE BOUNDARIES'
-TYPE = INTEGER
-INDEX = 74
-MNEMO = 'DIRFLU'
-TAILLE = 0
-DEFAUT = 1 
-DEFAUT1= 1  
-CHOIX='1="Priorite aux valeurs imposees"';'2="Priorite aux flux"'
-CHOIX1='1="Priority to prescribed values"';'2="Priority to fluxes"'
-RUBRIQUE = 'PARAMETRES NUMERIQUES';'GENERAL' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS';'GENERAL' 
-NIVEAU = 1
-AIDE = 'Utilise pour les schemas SUPG, PSI et N, avec option 2, on ne retrouve
-pas exactement les valeurs imposees des traceurs,
-mais le flux est correct'
-AIDE1= 'Used so far only with the SUPG, PSI and N schemes.
-With option 2, Dirichlet prescribed values are not obeyed,
-but the fluxes are correct'
-
-NOM = 'OPTION POUR LES CONDITIONS AUX LIMITES DE MAREE'
-NOM1 = 'OPTION FOR TIDAL BOUNDARY CONDITIONS'
-TYPE = INTEGER
-INDEX = 75
-MNEMO = 'TIDALTYPE'
-TAILLE = 0
-DEFAUT = 0
-DEFAUT1= 0
-CHOIX=
-'0="Pas de maree"';
-'1="Maree reelle (methodologie recommandee)"';
-'2="Maree de vive-eau exceptionnelle (coef. presque 120)"';
-'3="Maree de vive-eau moyenne (coef. presque 95)"';
-'4="Maree moyenne (coef. presque 70)"';
-'5="Maree de morte-eau moyenne (coef. presque 45)"';
-'6="Maree de morte-eau exceptionnelle (coef. presque 20)"';
-'7="Maree reelle (methodologie d avant 2010)"'
-CHOIX1=
-'0="No tide"';
-'1="Real tide (recommended methodology)"';
-'2="Astronomical tide"';
-'3="Mean spring tide"';
-'4="Mean tide"';
-'5="Mean neap tide"';
-'6="Astronomical neap tide"';
-'7="Real tide (methodology before 2010)"'
-RUBRIQUE = 'PARAMETRES NUMERIQUES';'GENERAL' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS';'GENERAL' 
-NIVEAU = 1
-AIDE = 'Option pour les conditions aux limites de maree.
-Pour des marees reelles, l option 1 est recommandee.
-Calage possible par les mots-cles COEFFICIENT POUR CALAGE EN MARNAGE
-et COEFFICIENT POUR CALAGE EN NIVEAU.'
-AIDE1= 'Option for tidal boundary conditions.
-For real tides, option 1 is recommended.
-Possible calibration with keywords COEFFICIENT TO ADJUST TIDAL RANGE
-and COEFFICIENT TO ADJUST SEA LEVEL.'
-
-NOM = 'FICHIER DES CONSTANTES HARMONIQUES' 
-NOM1 = 'HARMONIC CONSTANTS FILE' 
-TYPE = CARACTERE 
-INDEX = 83 
-MNEMO = 'T2D_FILES(T2DHAR)' 
-SUBMIT = 'NHAR-READWRITE-13;T2DHAR;FACUL;ASC;ECRLIT;PARAL' 
-DEFAUT = ' ' 
-DEFAUT1 = ' ' 
-RUBRIQUE = 'ENTREES-SORTIES, FICHIERS';'NOMS' 
-RUBRIQUE1 = 'INPUT-OUTPUT, FILES';'NAMES' 
-NIVEAU = 1 
-AIDE = 'Constantes harmoniques extraites du fichier du modele de maree' 
-AIDE1 = 'Harmonic constants extracted from the tidalmodel file' 
-
-NOM = 'FICHIER DU MODELE DE MAREE' 
-NOM1 = 'TIDAL MODEL FILE' 
-TYPE = CARACTERE 
-INDEX = 84 
-MNEMO = 'T2D_FILES(T2DTID)' 
-SUBMIT = 'NTID-READ-14;T2DTID;FACUL;BIN;LIT;SCAL' 
-DEFAUT = ' ' 
-DEFAUT1 = ' ' 
-RUBRIQUE = 'ENTREES-SORTIES, FICHIERS';'NOMS' 
-RUBRIQUE1 = 'INPUT-OUTPUT, FILES';'NAMES' 
-NIVEAU = 1 
-AIDE = 'Fichier de geometrie du modele dont sont extraites 
-les constantes harmoniques' 
-AIDE1 = 'Geometry file of the model from which harmonic constituents 
-are extracted' 
-
-NOM = 'BASE ASCII DE DONNEES DE MAREE' 
-NOM1 = 'ASCII DATABASE FOR TIDE' 
-TYPE = CARACTERE 
-INDEX = 85 
-MNEMO = 'T2D_FILES(T2DBDD)' 
-SUBMIT = 'NBDD-READ-15;T2DBDD;FACUL;ASC;LIT;PARAL' 
-DEFAUT = ' ' 
-DEFAUT1 = ' ' 
-RUBRIQUE = 'ENTREES-SORTIES, FICHIERS';'NOMS' 
-RUBRIQUE1 = 'INPUT-OUTPUT, FILES';'NAMES' 
-NIVEAU = 1 
-AIDE = 'Base de donnees de constantes harmoniques 
-tirees du fichier du modele de maree. 
-Ancien nom en version 6.1 : BASE DE DONNEES DE MAREE' 
-AIDE1 = 'Tide data base of harmonic constituents 
-extracted from the tidal model file.
-Old name in 6.1 version: TIDE DATA BASE' 
-/ 
-/ VERSION 6.2
-/
-NOM = 'PLUIE OU EVAPORATION'
-NOM1 = 'RAIN OR EVAPORATION'
-TYPE = LOGIQUE
-INDEX = 19
-MNEMO = 'RAIN'
-TAILLE = 0
-DEFAUT = NON
-DEFAUT1 = NO
-RUBRIQUE = 'PARAMETRES NUMERIQUES';'GENERAL'
-RUBRIQUE1 = 'NUMERICAL PARAMETERS';'GENERAL'
-NIVEAU = 1
-AIDE  = 'Pour ajouter un apport ou une perte d''eau en surface.
-Voir le mot-cle PLUIE OU EVAPORATION EN MM PAR JOUR'
-AIDE1 = 'to add or remove water at the free surface. See the key-word
-RAIN OR EVAPORATION IN MM PER DAY'
-/ 
-NOM = 'PLUIE OU EVAPORATION EN MM PAR JOUR'
-NOM1 = 'RAIN OR EVAPORATION IN MM PER DAY'
-TYPE = REAL
-INDEX = 61
-MNEMO = 'RAIN_MMPD'
-TAILLE = 0
-DEFAUT = 0.D0
-DEFAUT1 = 0.D0
-RUBRIQUE = 'PARAMETRES NUMERIQUES';'GENERAL'
-RUBRIQUE1 = 'NUMERICAL PARAMETERS';'GENERAL'
-NIVEAU = 1
-AIDE  = 'Pour ajouter un apport ou une perte d''eau en surface'
-AIDE1 = 'to add or remove water at the free surface'
-/
-NOM = 'BASE BINAIRE 1 DE DONNEES DE MAREE'
-NOM1 = 'BINARY DATABASE 1 FOR TIDE'
-TYPE = CARACTERE
-INDEX = 86
-MNEMO = 'T2D_FILES(T2DBB1)'
-SUBMIT = 'NBB1-READ-16;T2DBB1;FACUL;BIN;LIT;PARAL'
-DEFAUT = ' '
-DEFAUT1 = ' '
-RUBRIQUE = 'ENTREES-SORTIES, FICHIERS';'NOMS'
-RUBRIQUE1 = 'INPUT-OUTPUT, FILES';'NAMES'
-NIVEAU = 1
-AIDE = 'Base de donnees binaire 1 tiree du fichier du modele de maree.
- Dans le cas des donnees satellitaires de TPXO, ce fichier correspond
- aux donnees de niveau d''eau, par exemple h_tpxo7.2'
-AIDE1 = 'Binary database 1 extracted from the tidal model file.
- In the case of the TPXO satellite altimetry model, this file should
- be for free surface level, for instance h_tpxo7.2'
-
-NOM = 'BASE BINAIRE 2 DE DONNEES DE MAREE'
-NOM1 = 'BINARY DATABASE 2 FOR TIDE'
-TYPE = CARACTERE
-INDEX = 87
-MNEMO = 'T2D_FILES(T2DBB2)'
-SUBMIT = 'NBB2-READ-17;T2DBB2;FACUL;BIN;LIT;PARAL'
-DEFAUT = ' '
-DEFAUT1 = ' '
-RUBRIQUE = 'ENTREES-SORTIES, FICHIERS';'NOMS'
-RUBRIQUE1 = 'INPUT-OUTPUT, FILES';'NAMES'
-NIVEAU = 1
-AIDE = 'Base de donnees binaire 2 tiree du fichier du modele de maree.
- Dans le cas des donnees satellitaires de TPXO, ce fichier correspond
- aux donnees de vitesse de marrees, par exemple u_tpxo7.2'
-AIDE1 = 'Binary database 2 extracted from the tidal model file.
- In the case of the TPXO satellite altimetry model, this file should
- be for tidal velocities, for instance u_tpxo7.2'
-
-NOM = 'OPTION POUR LA GENERATION DE TSUNAMI'
-NOM1 = 'OPTION FOR TSUNAMI GENERATION'
-TYPE = INTEGER
-INDEX = 76
-MNEMO = 'OPTTSUNAMI'
-TAILLE = 0
-DEFAUT = 0
-DEFAUT1= 0
-CHOIX=
-'0="Pas de Tsunami"';
-'1="Generation d''un Tsunami sur la base du modele de Okada 1992"'
-CHOIX1=
-'0="No Tsunami"';
-'1="Tsunami generated on the basis of the Okada model 1992"'
-RUBRIQUE = 'PARAMETRES PHYSIQUES, CONDITIONS INITIALES'
-RUBRIQUE1 = 'PHYSICAL PARAMETERS, INITIAL CONDITIONS'
-NIVEAU = 1
-AIDE = ''
-/'Option pour la generation de Tsunami.
-/Pour l''instant, seul de modele de Okada est programme.
-/Les parametres physiques du modele chosit sont definis avec
-/PARAMETRES PHYSIQUES DU TSUNAMI.'
-AIDE1= ''
-/'Option for the generation of Tsunami.
-/Only the Okada model 1992 is programmed.
-/The physical characteristics of the chosen Tsunami are set in
-/PHYSICAL CHARACTERISTICS OF THE TSUNAMI.'
-
-NOM = 'PARAMETRES PHYSIQUES DU TSUNAMI'
-NOM1 = 'PHYSICAL CHARACTERISTICS OF THE TSUNAMI'
-TYPE = REEL
-INDEX = 62
-MNEMO = 'COETSUNAMI'
-TAILLE = 10
-DEFAUT = 100.;210000.;75000.;13.6;81.;41.;110.;0.;0.;3.
-DEFAUT1= 100.;210000.;75000.;13.6;81.;41.;110.;0.;0.;3.
-RUBRIQUE = 'PARAMETRES PHYSIQUES, CONDITIONS INITIALES'
-RUBRIQUE1 = 'PHYSICAL PARAMETERS, INITIAL CONDITIONS'
-NIVEAU = 1
-AIDE = ''
-/'Parametres physiques du modele de generation de tsunami'
-AIDE1 = ''
-/'Physical characteristics of the chosen Tsunami model:
-/ - the focal depth (HH),
-/ - the fault length (L),
-/ - the fault width (W)
-/ - the dislocation (D),
-/ - the strike direction (TH),
-/ - the dip angle (DL),
-/ - the slip (RD),
-/ - the epicentre latitude (Y0) and
-/ - the epicentre longitude (X0)
-/ - the ellipse ( WxL ) area of influence'
-
-NOM = 'VALEURS DES TRACEURS DANS LA PLUIE'
-NOM1 = 'VALUES OF TRACERS IN THE RAIN'
-TYPE = REEL
-INDEX = 63
-MNEMO = 'TRAIN'
-TAILLE = 2
-RUBRIQUE = 'PARAMETRES NUMERIQUES'
-RUBRIQUE1 = 'NUMERICAL PARAMETERS'
-NIVEAU = 1
-AIDE = ''
-AIDE1 = ''
-
-NOM = 'NOMBRE DE BUSES' 
-NOM1 = 'NUMBER OF TUBES' 
-TYPE = ENTIER 
-INDEX = 6 
-MNEMO = 'NBUSE' 
-CONTROLE = 0; 100 
-TAILLE = 0 
-DEFAUT = 0 
-DEFAUT1 = 0 
-RUBRIQUE = 'PARAMETRES NUMERIQUES';'GENERAL' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS';'GENERAL' 
-NIVEAU = 2 
-AIDE = 'Nombre de buses ou ponts traites comme des termes sources ou 
-puits. Ces buses doivent etre decrits comme des sources dans le 
-fichier cas. Leurs caracteristiques sont donnees dans le 
-fichier de donnees des buses (voir la documentation ecrite)' 
-AIDE1 = 'Number of tubes or bridges treated as source terms. 
-They must be described as sources in the domain and their features 
-are given in the tubes data file (see written documentation)' 
-
-NOM = 'FICHIER DE DONNEES DES SEUILS'
-NOM1 = 'WEIRS DATA FILE'
-TYPE = CARACTERE
-INDEX = 88
-MNEMO = 'T2D_FILES(T2DSEU)%NAME' 
-SUBMIT = 'T2DSEU-READ-18;T2DSEU;FACUL;ASC;LIT;SCAL' 
-DEFAUT = ' ' 
-DEFAUT1 = ' ' 
-RUBRIQUE = 'ENTREES-SORTIES, FICHIERS';'NOMS' 
-RUBRIQUE1 = 'INPUT-OUTPUT, FILES';'NAMES' 
-NIVEAU = 1 
-AIDE = 'Fichier de description des seuils presents dans le modele' 
-AIDE1 = 'Description of weirs existing in the model' 
-
-NOM = 'FICHIER DE DONNEES DES SIPHONS'
-NOM1 = 'CULVERT DATA FILE'
-TYPE = CARACTERE
-INDEX = 89
-MNEMO = 'T2D_FILES(T2DSIP)%NAME' 
-SUBMIT = 'T2DSIP-READ-19;T2DSIP;FACUL;ASC;LIT;SCAL' 
-DEFAUT = ' ' 
-DEFAUT1 = ' ' 
-RUBRIQUE = 'ENTREES-SORTIES, FICHIERS';'NOMS' 
-RUBRIQUE1 = 'INPUT-OUTPUT, FILES';'NAMES' 
-NIVEAU = 1 
-AIDE = 'Fichier de description des siphons presents dans le modele' 
-AIDE1 = 'Description of culvert existing in the model' 
-
-NOM = 'FICHIER DE DONNEES DES BUSES'
-NOM1 = 'TUBES DATA FILE'
-TYPE = CARACTERE 
-INDEX = 90
-MNEMO = 'T2D_FILES(T2DBUS)%NAME' 
-SUBMIT = 'T2DBUS-READ-20;T2DBUS;FACUL;ASC;LIT;SCAL' 
-DEFAUT = ' ' 
-DEFAUT1 = ' ' 
-RUBRIQUE = 'ENTREES-SORTIES, FICHIERS';'NOMS' 
-RUBRIQUE1 = 'INPUT-OUTPUT, FILES';'NAMES' 
-NIVEAU = 1 
-AIDE = 'Fichier de description des buses/ponts presents dans le modele' 
-AIDE1 = 'Description of tubes/bridges existing in the model' 
-
-NOM = 'COEFFICIENT DE CALAGE DU MARNAGE'
-NOM1 = 'COEFFICIENT TO CALIBRATE TIDAL RANGE'
-TYPE = REEL
-INDEX = 64
-MNEMO = 'CTIDE'
-TAILLE = 0
-DEFAUT = 1. 
-DEFAUT1 = 1. 
-RUBRIQUE = 'PARAMETRES NUMERIQUES'
-RUBRIQUE1 = 'NUMERICAL PARAMETERS'
-NIVEAU = 1
-AIDE = 'Coefficient pour ajuster le marnage de l''onde de maree 
-aux frontieres maritimes'
-AIDE1 = 'Coefficient to calibrate the tidal range of tidal wave 
-at tidal open boundary conditions'
-
-NOM = 'COEFFICIENT DE CALAGE DES VITESSES DE COURANT'
-NOM1 = 'COEFFICIENT TO CALIBRATE TIDAL VELOCITIES'
-TYPE = REEL
-INDEX = 65
-MNEMO = 'CTIDEV'
-TAILLE = 0
-DEFAUT = 999999. 
-DEFAUT1 = 999999. 
-RUBRIQUE = 'PARAMETRES NUMERIQUES'
-RUBRIQUE1 = 'NUMERICAL PARAMETERS'
-NIVEAU = 1
-AIDE = 'Coefficient pour ajuster les composantes de vitesse 
-de l''onde de maree aux frontieres maritimes.
-La valeur par defaut 999999. signifie que c''est la racine carree 
-du COEFFICIENT DE CALAGE DU MARNAGE qui est prise'
-AIDE1 = 'Coefficient to calibrate the tidal velocities of tidal wave 
-at tidal open boundary conditions.
-Default value 999999. means that the square root of 
-COEFFICIENT TO CALIBRATE TIDAL RANGE is taken'
-
-NOM = 'COEFFICIENT DE CALAGE DU NIVEAU DE MER'
-NOM1 = 'COEFFICIENT TO CALIBRATE SEA LEVEL'
-TYPE = REEL
-INDEX = 66
-MNEMO = 'MSL'
-TAILLE = 0
-DEFAUT = 0. 
-DEFAUT1 = 0. 
-RUBRIQUE = 'PARAMETRES NUMERIQUES'
-RUBRIQUE1 = 'NUMERICAL PARAMETERS'
-NIVEAU = 1
-AIDE = 'Coefficient pour ajuster le niveau de mer'
-AIDE1 = 'Coefficient to calibrate the sea level'
-
-NOM = 'BASE DE DONNEES DE MAREE'
-NOM1 = 'TIDAL DATA BASE'
-TYPE = ENTIER
-INDEX = 77
-MNEMO = 'TIDALDB'
-TAILLE = 0
-DEFAUT = -1 
-DEFAUT1 = -1 
-CHOIX=
-'-1="PAS DE VALEUR PAR DEFAUT. CHOISIR LA BASE PARMI LES CHOIX POSSIBLES"';
-'1="JMJ"';
-'2="TPXO"';
-'3="LEGOS-NEA"';
-'4="FES2004"'
-CHOIX1=
-'-1="NO DEFAULT VALUE. CHOOSE THE BASE AMONG THE POSSIBLE CHOICES"';
-'1="JMJ"';
-'2="TPXO"';
-'3="LEGOS-NEA"';
-'4="FES2004"'
-RUBRIQUE = 'PARAMETRES NUMERIQUES'
-RUBRIQUE1 = 'NUMERICAL PARAMETERS'
-NIVEAU = 1
-AIDE = 'Pour JMJ, renseigner la localisation du fichier bdd_jmj et geofin
-dans les mots-cles BASE DE DONNEES DE MAREE et FICHIER DU MODELE DE MAREE.
-Pour TPXO et LEGOS-NEA, l''utilisateur doit telecharger
-les fichiers de constantes harmoniques sur internet.
-Pour FES2004 : pas encore disponible'
-AIDE1 = 'For JMJ, indicate the location of the files bdd_jmj and geofin with keywords 
-TIDE DATA BASE and TIDAL MODEL FILE.
-For TPXO and LEGOS-NEA, the user have to download
-files of harmonic constituents on the internet.
-For FES2004: not yet available'
-
-NOM = 'SYSTEME GEOGRAPHIQUE'
-NOM1 = 'GEOGRAPHIC SYSTEM'
-TYPE = ENTIER
-INDEX = 78
-MNEMO = 'GEOSYST'
-TAILLE = 0
-DEFAUT = -1 
-DEFAUT1 = -1 
-CHOIX=
-'-1="PAS DE VALEUR PAR DEFAUT. CHOISIR LE SYSTEME PARMI LES CHOIX POSSIBLES"';
-'0="DEFINI PAR L''UTILISATEUR"';
-'1="WGS84 LONGITUDE/LATITUDE EN DEGRES REELS"';
-'2="WGS84 NORD UTM"';
-'3="WGS84 SUD UTM"';
-'4="LAMBERT"';
-'5="MERCATOR POUR TELEMAC"'
-CHOIX1=
-'-1="NO DEFAULT VALUE. CHOOSE THE SYSTEM AMONG THE POSSIBLE CHOICES"';
-'0="DEFINED BY USER"';
-'1="WGS84 LONGITUDE/LATITUDE IN REAL DEGREES"';
-'2="WGS84 NORTHERN UTM"';
-'3="WGS84 SOUTHERN UTM"';
-'4="LAMBERT"';
-'5="MERCATOR FOR TELEMAC"'
-RUBRIQUE = 'PARAMETRES NUMERIQUES'
-RUBRIQUE1 = 'NUMERICAL PARAMETERS'
-NIVEAU = 1
-AIDE = 'Systeme de coordonnees geographiques dans lequel est construit 
-le modele numerique. 
-Indiquer la zone correspondante avec le mot-cle '
-AIDE1 = 'Geographic coordinates system in which the numerical model is built.
-Indicate the corresponding zone with the keyword '
-
-NOM = 'NUMERO DE FUSEAU OU PROJECTION DANS LE SYSTEME GEOGRAPHIQUE'
-NOM1 = 'ZONE NUMBER IN GEOGRAPHIC SYSTEM'
-TYPE = ENTIER
-INDEX = 79
-MNEMO = 'NUMZONE'
-TAILLE = 0
-DEFAUT = -1 
-DEFAUT1 = -1 
-CHOIX=
-'-1="PAS DE VALEUR PAR DEFAUT. CHOISIR LE NUMERO PARMI LES CHOIX POSSIBLES"';
-'1="LAMBERT 1 NORD"';
-'2="LAMBERT 2 CENTRE"';
-'3="LAMBERT 3 SUD"';
-'4="LAMBERT 4 CORSE"';
-'22="LAMBERT 2 ETENDU"';
-'30="ZONE UTM, PAR EXEMPLE"'
-CHOIX1=
-'-1="NO DEFAULT VALUE. CHOOSE THE NUMBER AMONG THE POSSIBLE CHOICES"';
-'1="LAMBERT 1 NORTH"';
-'2="LAMBERT 2 CENTER"';
-'3="LAMBERT 3 SOUTH"';
-'4="LAMBERT 4 CORSICA"';
-'22="LAMBERT 2 EXTENDED"';
-'30="UTM ZONE, E.G."'
-RUBRIQUE = 'PARAMETRES NUMERIQUES'
-RUBRIQUE1 = 'NUMERICAL PARAMETERS'
-NIVEAU = 1
-AIDE = 'Numero de zone (fuseau ou type de projection) 
-lors de l''utilisation d''une projection plane. 
-Indiquer le systeme geographique dans lequel est construit le modele numerique 
-avec le mot-cle SYSTEME GEOGRAPHIQUE'
-AIDE1 = 'Number of zone when using a plane projection. 
-Indicate the geographic system in which the numerical model is built 
-with the keyword GEOGRAPHIC SYSTEM'
-
-NOM = 'INTERPOLATION DE COMPOSANTES MINEURES'
-NOM1 = 'MINOR CONSTITUENTS INFERENCE'
-TYPE = LOGIQUE
-INDEX = 46
-MNEMO = 'INTMICON'
-TAILLE = 0
-DEFAUT = NON
-DEFAUT1 = NO
-RUBRIQUE = 'PARAMETRES NUMERIQUES'
-RUBRIQUE1 = 'NUMERICAL PARAMETERS'
-NIVEAU = 1
-AIDE  = 'Pour la base de donnees TPXO uniquement. 
-Interpolation de composantes harmoniques mineures 
-a partir de celles lues dans les fichiers d''entree 
-lies aux mots-cles BASE BINAIRE 1 DE DONNEES DE MAREE
-et BASE BINAIRE 2 DE DONNEES DE MAREE'
-AIDE1 = 'For TPXO tidal data base only. 
-Inference of minor constituents from the one read in input files 
-linked to keywords BINARY DATABASE 1 FOR TIDE 
-and BINARY DATABASE 2 FOR TIDE'
-
-NOM = 'LOI DE DEGRADATION DES TRACEURS'
-NOM1 = 'LAW OF TRACERS DEGRADATION'
-TYPE = ENTIER
-INDEX = 80
-MNEMO = 'LOITRAC'
-TAILLE = 2
-DEFAUT = 0;0
-DEFAUT1 = 0;0
-CHOIX=
-'0="PAS DE DEGRADATION"';
-'1="LOI EN F(T90)"'
-CHOIX1=
-'0="NO DEGRADATION"';
-'1="F(T90) LAW"'
-RUBRIQUE = 'EQUATIONS';'TRACEUR';'OPTIONS TRACEUR' 
-RUBRIQUE1 = 'EQUATIONS';'TRACER';'TRACER OPTIONS' 
-NIVEAU = 1
-AIDE = 'Prise en compte d''une loi de decroissance des traceurs'
-AIDE1 = 'Take in account a law for tracers decrease'
-
-NOM = 'COEFFICIENT 1 DE LA LOI DE DEGRADATION DES TRACEURS'
-NOM1 = 'COEFFICIENT 1 FOR LAW OF TRACERS DEGRADATION'
-TYPE = REAL
-INDEX = 67
-MNEMO = 'COEF1TRAC'
-TAILLE = 2
-RUBRIQUE = 'EQUATIONS';'TRACEUR';'OPTIONS TRACEUR' 
-RUBRIQUE1 = 'EQUATIONS';'TRACER';'TRACER OPTIONS' 
-NIVEAU = 1
-AIDE = 'Coefficient 1 de la loi de decroissance des traceurs'
-AIDE1 = 'Coefficient 1 of law for tracers decrease'
-
-NOM = 'BRECHE' 
-NOM1 = 'BREACH' 
-TYPE = LOGIQUE 
-INDEX = 2 
-MNEMO = 'BRECHE' 
-TAILLE = 0 
-DEFAUT = NON 
-DEFAUT1 = NO 
-RUBRIQUE = 'PARAMETRES PHYSIQUES'
-RUBRIQUE1 = 'PHYSICAL PARAMETERS'
-NIVEAU = 1 
-AIDE = 'Prise en compte de breches dans le calcul par 
-modification altimetrique dans le maillage. La description 
-des breches se fait avec le fichier de donnees des breches.' 
-AIDE1 = 'Take in account some breaches during the computation
-by modifying the bottom level of the mesh. Brech description 
-is done with the breaches data file.' 
-NOM = 'FICHIER DE DONNEES DES BRECHES'
-NOM1 = 'BREACHES DATA FILE'
-TYPE = CARACTERE 
-INDEX = 91
-MNEMO = 'T2D_FILES(T2DBRC)%NAME' 
-SUBMIT = 'T2DBUS-READ-21;T2DBRC;FACUL;ASC;LIT;SCAL' 
-DEFAUT = ' ' 
-DEFAUT1 = ' ' 
-RUBRIQUE = 'ENTREES-SORTIES, FICHIERS';'NOMS' 
-RUBRIQUE1 = 'INPUT-OUTPUT, FILES';'NAMES' 
-NIVEAU = 1 
-AIDE = 'Fichier de description des breches' 
-AIDE1 = 'Description of breaches' 
-/ 
-/ VERSION 6.3
-/
-NOM = 'FICHIER DES FLOTTEURS'
-NOM1 = 'DROGUES FILE'
-TYPE = CARACTERE 
-INDEX = 92
-MNEMO = 'T2D_FILES(T2DFLO)%NAME' 
-SUBMIT = 'T2DFLO-WRITE-09;T2DFLO;FACUL;ASC;ECR;SCAL' 
-DEFAUT = ' ' 
-DEFAUT1 = ' ' 
-RUBRIQUE = 'ENTREES-SORTIES, FICHIERS';'NOMS' 
-RUBRIQUE1 = 'INPUT-OUTPUT, FILES';'NAMES' 
-NIVEAU = 1 
-AIDE = 'Fichier de resultat avec les positions des flotteurs' 
-AIDE1 = 'Results file with positions of drogues' 
-
-NOM = 'TYPE DE PROJECTION SPATIALE'
-NOM1 = 'SPATIAL PROJECTION TYPE'
-TYPE = ENTIER
-INDEX = 81
-MNEMO = 'PROTYP'
-TAILLE = 0
-DEFAUT = 1
-DEFAUT1 = 1
-CHOIX = '1="CARTESIEN, NON GEOREFERENCE"';
-        '2="MERCATOR"';
-        '3="LATITUDE LONGITUDE"'
-CHOIX1 = '1="CARTESIAN, NOT GEOREFERENCED"';
-         '2="MERCATOR"';
-         '3="LATITUDE LONGITUDE"'
-CONTROLE = 1 ; 3
-RUBRIQUE = 'EQUATIONS';'GENERAL'
-RUBRIQUE1 = 'EQUATIONS';'GENERAL'
-NIVEAU = 1
-AIDE = 'Option 2 ou 3 obligatoire pour les coordonnees spheriques'
-AIDE1 = 'Option 2 or 3 mandatory for spherical coordinates'
-
-NOM = 'MODELE DE TRANSPORT DES ALGUES' 
-NOM1 = 'ALGAE TRANSPORT MODEL' 
-TYPE = LOGIQUE 
-INDEX = 47 
-MNEMO = 'ALGAE' 
-TAILLE = 0 
-DEFAUT = NON 
-DEFAUT1 = NO 
-RUBRIQUE = 'PARAMETRES PHYSIQUES'
-RUBRIQUE1 = 'PHYSICAL PARAMETERS'
-NIVEAU = 2
-AIDE = 'Si oui, les flotteurs seront des algues' 
-AIDE1 = 'If yes, the floats or particles will be algae' 
-
-NOM = 'DIAMETRE DES ALGUES'
-NOM1 = 'DIAMETRE OF ALGAE'
-TYPE = REAL
-INDEX = 68
-MNEMO = 'DALGAE'
-TAILLE = 0
-DEFAUT = 0.1
-DEFAUT1 = 0.1
-RUBRIQUE = 'PARAMETRES PHYSIQUES'
-RUBRIQUE1 = 'PHYSICAL PARAMETERS'
-NIVEAU = 2
-AIDE = 'Diametre des algues en m'
-AIDE1 = 'Diametre of algae in m'
-
-NOM = 'MASSE VOLUMIQUE DES ALGUES'
-NOM1 = 'DENSITY OF ALGAE'
-TYPE = REAL
-INDEX = 69
-MNEMO = 'RALGAE'
-TAILLE = 0
-DEFAUT = 1050.
-DEFAUT1 = 1050.
-RUBRIQUE = 'PARAMETRES PHYSIQUES'
-RUBRIQUE1 = 'PHYSICAL PARAMETERS'
-NIVEAU = 2
-AIDE = 'Masse volumique des algues en kg/m3'
-AIDE1 = 'Density of algae in kg/m3'
-
-NOM = 'EPAISSEUR DES ALGUES'
-NOM1 = 'THICKNESS OF ALGAE'
-TYPE = REAL
-INDEX = 70
-MNEMO = 'EALGAE'
-TAILLE = 0
-DEFAUT = 0.01
-DEFAUT1 = 0.01
-RUBRIQUE = 'PARAMETRES PHYSIQUES'
-RUBRIQUE1 = 'PHYSICAL PARAMETERS'
-NIVEAU = 2
-AIDE = 'Epaisseur des algues en m'
-AIDE1 = 'Thickness of algae in m'
-
-NOM = 'TYPE DES ALGUES'
-NOM1 = 'ALGAE TYPE'
-TYPE = ENTIER
-INDEX = 82
-MNEMO = 'ALGTYP'
-TAILLE = 0
-DEFAUT = 1
-DEFAUT1 = 1
-CHOIX = '1="SPHERE"';
-        '2="IRIDAEA FLACCIDA (PROCHE DES ULVES)"';
-        '3="PELVETIOPSIS LIMITATA"';
-        '4="GIGARTINA LEPTORHYNCHOS"'
-CHOIX1= '1="SPHERE"';
-        '2="IRIDAEA FLACCIDA (CLOSE TO ULVA)"';
-        '3="PELVETIOPSIS LIMITATA"';
-        '4="GIGARTINA LEPTORHYNCHOS"'
-RUBRIQUE = 'PARAMETRES PHYSIQUES'
-RUBRIQUE1 = 'PHYSICAL PARAMETERS' 
-NIVEAU = 2
-AIDE = 'Type des algues. Pour le choix 1 les algues seront 
-modelisees comme des spheres, pour les autres choix voir Gaylord 
-et al. (1994).'
-AIDE1 = 'Algae type. For choice 1 the algae particles will be 
-modeled as spheres, and for the other choices see Gaylord et
-al. (1994)'
-
-NOM = 'OPTION POUR LES CARACTERISTIQUES'
-NOM1 = 'OPTION FOR CHARACTERISTICS'
-TYPE = ENTIER
-INDEX = 83
-MNEMO = 'OPTCHA'
-TAILLE = 0
-DEFAUT = 1
-DEFAUT1 = 1
-CHOIX='1="fortes"';'2="faibles"'
-CHOIX1='1="strong"';'2="weak"'
-RUBRIQUE = 'PARAMETRES PHYSIQUES'
-RUBRIQUE1 = 'PHYSICAL PARAMETERS' 
-NIVEAU = 2
-AIDE = '1: forme forte 2: forme faible'
-AIDE1 = '1: strong form 2: weak form'
-
-NOM = 'MAXIMUM D''ITERATIONS POUR LES SCHEMAS DE CONVECTION' 
-NOM1 = 'MAXIMUM NUMBER OF ITERATIONS FOR ADVECTION SCHEMES' 
-TYPE = ENTIER
-INDEX = 84
-MNEMO = 'MAXADV'
-TAILLE = 0
-DEFAUT = 10
-DEFAUT1 = 10
-RUBRIQUE = 'PARAMETRES NUMERIQUES'
-RUBRIQUE1 = 'NUMERICAL PARAMETERS'
-NIVEAU = 2
-AIDE = 'Seulement pour schemes 13 et 14'
-AIDE1 = 'Only for schemes 13 and 14'
-
-NOM = 'MODELE DE DIFFUSION STOCHASTIQUE' 
-NOM1 = 'STOCHASTIC DIFFUSION MODEL' 
-TYPE = ENTIER
-INDEX = 85
-MNEMO = 'STOCHA'
-TAILLE = 0
-DEFAUT = 0
-DEFAUT1 = 0
-CHOIX='0="Pas de modele"';'1="??"';'2="??"'
-CHOIX1='0="No model"';'1="??"';'2="??"'
-RUBRIQUE = 'PARAMETRES NUMERIQUES'
-RUBRIQUE1 = 'NUMERICAL PARAMETERS'
-NIVEAU = 2
-AIDE = 'Pour les particules : flotteurs, algues, hydrocarbures'
-AIDE1 = 'Meant for particles: drogues, algae, oil spills'
-
-NOM = 'NOMBRE DE POINTS DE GAUSS POUR LES CARACTERISTIQUES FAIBLES' 
-NOM1 = 'NUMBER OF GAUSS POINTS FOR WEAK CHARACTERISTICS' 
-TYPE = ENTIER
-INDEX = 86
-MNEMO = 'NGAUSS'
-TAILLE = 0
-DEFAUT = 3
-DEFAUT1 = 3
-CHOIX='1="1 point"';'3="3 points"';'6="6 points"'
-CHOIX1='1="1 point"';'3="3 points"';'6="6 points"'
-RUBRIQUE = 'PARAMETRES NUMERIQUES'
-RUBRIQUE1 = 'NUMERICAL PARAMETERS'
-NIVEAU = 2
-AIDE = 'Voir les release notes 6.3'
-AIDE1 = 'See release notes 6.3'
-
-NOM = 'MASS-LUMPING POUR LES CARACTERISTIQUES FAIBLES'
-NOM1 = 'MASS-LUMPING FOR WEAK CHARACTERISTICS'
-TYPE = REAL
-INDEX = 71
-MNEMO = 'AGGLOW'
-TAILLE = 0
-DEFAUT = 0.
-DEFAUT1 = 0.
-RUBRIQUE = 'PARAMETRES PHYSIQUES'
-RUBRIQUE1 = 'PHYSICAL PARAMETERS'
-NIVEAU = 2
-AIDE = 'Applique a la matrice de masse'
-AIDE1 = 'To be applied to the mass matrix'
-
-NOM = 'TYPE DES SEUILS'
-NOM1 = 'TYPE OF WEIRS'
-TYPE = ENTIER
-INDEX = 87
-MNEMO = 'TYPSEUIL'
-TAILLE = 1
-DEFAUT = 1
-DEFAUT1 = 1
-CHOIX=
-'1="HORIZONTAL AVEC MEME NOMBRE DE NOEUDS AMONT/AVAL (Solution historique avec bord)"';
-'2="GENERALE (Nouvelle solution avec pts sources)"'
-CHOIX1=
-'1="HORIZONTAL WITH SAME NUMBER OF NODES UPSTREAM/DOWNSTREAM (Historical solution with bord)"';
-'2="GENERAL (New solution with sources points)"'
-RUBRIQUE = 'PARAMETRES NUMERIQUES';'GENERAL' 
-RUBRIQUE1 = 'NUMERICAL PARAMETERS';'GENERAL' 
-NIVEAU = 1
-AIDE = 'Méthode de traitement des seuils'
-AIDE1 = 'Method for treatment of weirs'
-
-/ 
-/ POUR LES LANCEURS PERL : 
-/ 
-
-NOM = 'LISTE DES FICHIERS' 
-NOM1 = 'LIST OF FILES' 
-TYPE = CARACTERE 
-INDEX = 99 
-MNEMO = '' 
-TAILLE = 43
-DEFAUT = 'FICHIER DES PARAMETRES'; 
-         'DICTIONNAIRE'; 
-         'FICHIER FORTRAN'; 
-         'FICHIER DE GEOMETRIE'; 
-         'FICHIER DES CONDITIONS AUX LIMITES'; 
-         'FICHIER DES RESULTATS'; 
-         'FICHIER DU CALCUL PRECEDENT'; 
-         'FICHIER DES FONDS'; 
-         'FICHIER DE DONNEES BINAIRE 1'; 
-         'FICHIER DE DONNEES BINAIRE 2'; 
-         'FICHIER DE DONNEES FORMATE 1'; 
-         'FICHIER DE DONNEES FORMATE 2'; 
-         'FICHIER DE RESULTATS BINAIRE'; 
-         'FICHIER DE RESULTATS FORMATE'; 
-         'FICHIER DE REFERENCE'; 
-         'FICHIER DES FRONTIERES LIQUIDES'; 
-         'FICHIER DE DONNEES POUR LE FROTTEMENT'; 
-         'FICHIER DELWAQ DES VOLUMES'; 
-         'FICHIER DELWAQ DES SURFACES DE FLUX'; 
-         'FICHIER DELWAQ DES FLUX VERTICAUX'; 
-         'FICHIER DELWAQ DE LA SALINITE'; 
-         'FICHIER DELWAQ DES SURFACES DU FOND'; 
-         'FICHIER DELWAQ DES ECHANGES ENTRE NOEUDS'; 
-         'FICHIER DELWAQ DES DISTANCES ENTRE NOEUDS'; 
-         'FICHIER DELWAQ DE LA TEMPERATURE'; 
-         'FICHIER DELWAQ DE LA VITESSE'; 
-         'FICHIER DELWAQ DE LA DIFFUSION'; 
-         'FICHIER DE COMMANDE DELWAQ'; 
-         'FICHIER DES COURBES DE TARAGE'; 
-         'FICHIER DES SOURCES'; 
-         'FICHIER DES SECTIONS DE CONTROLE'; 
-         'FICHIER DE SORTIE DES SECTIONS DE CONTROLE'; 
-         'FICHIER DE COMMANDES HYDROCARBURES';
-         'FICHIER DES CONSTANTES HARMONIQUES';
-         'FICHIER DU MODELE DE MAREE';
-         'BASE ASCII DE DONNEES DE MAREE';
-         'BASE BINAIRE 1 DE DONNEES DE MAREE';
-         'BASE BINAIRE 2 DE DONNEES DE MAREE';
-         'FICHIER DE DONNEES DES SEUILS';
-         'FICHIER DE DONNEES DES SIPHONS';
-         'FICHIER DE DONNEES DES BUSES';
-         'FICHIER DE DONNEES DES BRECHES';
-         'FICHIER DES FLOTTEURS'
-DEFAUT1 ='STEERING FILE'; 
-         'DICTIONARY'; 
-         'FORTRAN FILE'; 
-         'GEOMETRY FILE'; 
-         'BOUNDARY CONDITIONS FILE'; 
-         'RESULTS FILE'; 
-         'PREVIOUS COMPUTATION FILE'; 
-         'BOTTOM TOPOGRAPHY FILE'; 
-         'BINARY DATA FILE 1'; 
-         'BINARY DATA FILE 2'; 
-         'FORMATTED DATA FILE 1'; 
-         'FORMATTED DATA FILE 2'; 
-         'BINARY RESULTS FILE'; 
-         'FORMATTED RESULTS FILE'; 
-         'REFERENCE FILE'; 
-         'LIQUID BOUNDARIES FILE'; 
-         'FRICTION DATA FILE'; 
-         'VOLUMES DELWAQ FILE'; 
-         'EXCHANGE AREAS DELWAQ FILE'; 
-         'VERTICAL FLUXES DELWAQ FILE'; 
-         'SALINITY DELWAQ FILE'; 
-         'VELOCITY DELWAQ FILE'; 
-         'DIFFUSIVITY DELWAQ FILE'; 
-         'BOTTOM SURFACES DELWAQ FILE'; 
-         'EXCHANGES BETWEEN NODES DELWAQ FILE'; 
-         'NODES DISTANCES DELWAQ FILE'; 
-         'TEMPERATURE DELWAQ FILE'; 
-         'DELWAQ STEERING FILE'; 
-         'STAGE-DISCHARGE CURVES FILE'; 
-         'SOURCES FILE'; 
-         'SECTIONS INPUT FILE'; 
-         'SECTIONS OUTPUT FILE'; 
-         'OILSPILL STEERING FILE';
-         'HARMONIC CONSTANTS FILE';
-         'TIDAL MODEL FILE';
-         'ASCII DATABASE FOR TIDE';
-         'BINARY DATABASE 1 FOR TIDE';
-         'BINARY DATABASE 2 FOR TIDE'; 
-         'WEIRS DATA FILE';
-         'CULVERT DATA FILE';
-         'TUBES DATA FILE';
-         'BREACHES DATA FILE';
-         'DROGUES FILE'
-RUBRIQUE  = 'FICHIERS' 
-RUBRIQUE1 = 'FILES' 
-NIVEAU = 1 
-AIDE = 'Noms des fichiers exploites par le code' 
-AIDE1= 'File names of the used files' 
-// 
-//----Librairies du code------------------------------------------- 
-// 
-//Conventions de notation : 
-//   VVV = version 
-//   MMM = mode (debug ou non) 
-//   PPP = plateforme 
-//   LLL = extension d'une librairie ("a" ou "lib") 
-//    |  = separateur dans un path (/ sous Unix, \ sous NT) 
-// 
-//    ex : "telemac2d|tel2d_VVV|PPP|telemac2dMMMVVV.LLL" 
-NOM = 'DESCRIPTION DES LIBRAIRIES' 
-NOM1 = 'DESCRIPTION OF LIBRARIES' 
-TYPE = CARACTERE 
-INDEX = 54 
-MNEMO = 'LINKLIBS' 
-TAILLE = 8
-DEFAUT = 'builds|PPP|lib|telemac2dMMMVVV.LLL'; 
-'builds|PPP|lib|sisypheMMMVVV.LLL'; 
-'builds|PPP|lib|tomawacMMMVVV.LLL'; 
-'builds|PPP|lib|dredgesimMMMVVV.LLL'; 
-'builds|PPP|lib|biefMMMVVV.LLL'; 
-'builds|PPP|lib|damoMMMVVV.LLL'; 
-'builds|PPP|lib|parallelMMMVVV.LLL'; 
-'builds|PPP|lib|specialMMMVVV.LLL' 
-DEFAUT1 = 'builds|PPP|lib|telemac2dMMMVVV.LLL';  
-'builds|PPP|lib|sisypheMMMVVV.LLL'; 
-'builds|PPP|lib|tomawacMMMVVV.LLL'; 
-'builds|PPP|lib|dredgesimMMMVVV.LLL';
-'builds|PPP|lib|biefMMMVVV.LLL'; 
-'builds|PPP|lib|damoMMMVVV.LLL'; 
-'builds|PPP|lib|parallelMMMVVV.LLL'; 
-'builds|PPP|lib|specialMMMVVV.LLL' 
-RUBRIQUE = 'ENTREES-SORTIES, GENERALITES';'CALCUL' 
-RUBRIQUE1 = 'INPUT-OUTPUT, INFORMATION';'COMPUTATIONAL INFORMATION' 
-NIVEAU = 1 
-AIDE  = 'Description des librairies de T2D' 
-AIDE1 = 'LIBRARIES description' 
-//----Executable par defaut du code--------------------------------- 
-// 
-//Conventions de notation : 
-//   VVV = version 
-//   MMM = mode (debug ou non) 
-//   PPP = plateforme 
-//    |  = separateur dans un path (/ sous Unix, \ sous NT) 
-// 
-//    ex : "telemac2d|tel2d_VVV|PPP|telemac2dMMMVVV.LLL" 
-NOM = 'EXECUTABLE PAR DEFAUT' 
-NOM1 = 'DEFAULT EXECUTABLE' 
-TYPE = CARACTERE 
-INDEX = 57 
-MNEMO = 'EXEDEF' 
-TAILLE = 1 
-DEFAUT = 'builds|PPP|bin|telemac2dMMMVVV.exe' 
-DEFAUT1 = 'builds|PPP|bin|telemac2dMMMVVV.exe' 
-RUBRIQUE = 'ENTREES-SORTIES, GENERALITES';'CALCUL' 
-RUBRIQUE1 = 'INPUT-OUTPUT, INFORMATION';'COMPUTATIONAL INFORMATION' 
-NIVEAU = 1 
-AIDE  = 'Executable par defaut de T2D' 
-AIDE1 = 'Default executable for T2D' 
-NOM = 'EXECUTABLE PARALLELE PAR DEFAUT' 
-NOM1 = 'DEFAULT PARALLEL EXECUTABLE' 
-TYPE = CARACTERE 
-INDEX = 58 
-MNEMO = 'EXEDEFPARA' 
-TAILLE = 1 
-DEFAUT = 'builds|PPP|bin|telemac2dMMMVVV.exe' 
-DEFAUT1 = 'builds|PPP|bin|telemac2dMMMVVV.exe' 
-RUBRIQUE = 'ENTREES-SORTIES, GENERALITES';'CALCUL' 
-RUBRIQUE1 = 'INPUT-OUTPUT, INFORMATION';'COMPUTATIONAL INFORMATION' 
-NIVEAU = 1 
-AIDE  = 'Executable parallele par defaut de T2D' 
-AIDE1 = 'Default parallel executable for T2D' 
-
diff --git a/Telemac/transforme/ReadMe b/Telemac/transforme/ReadMe
new file mode 100644 (file)
index 0000000..538db52
--- /dev/null
@@ -0,0 +1,9 @@
+il faut les 2 fichiers cata_name2eng_name.ts et cata_name2fra_name.ts
+./reEcrittsEn.py -i cata_name2eng_name.ts -d dicoCasEnToCata.py -t labelCataToIhmEn.ts
+regler Ã  la main les histoires de ""
+modifier  DicoCasEnToCata en dicoCataToEng
+
+
+./reEcrittsFr.py -i cata_name2fra_name.ts -d dicoCasFrToCata.py -t labelCataToIhmFr.ts
+regler Ã  la main les histoires de ""
+modifier  DicoCasEnToCata en dicoCataToFr
diff --git a/Telemac/transforme/reEcrittsEn.py b/Telemac/transforme/reEcrittsEn.py
new file mode 100755 (executable)
index 0000000..2613e0a
--- /dev/null
@@ -0,0 +1,139 @@
+#!/usr/bin/env python
+import sys, re
+dicoCataToLabel={}
+dicoCataToTelemac={}
+Entete  = '<?xml version="1.0" encoding="utf-8"?>'
+Entete +='<!DOCTYPE TS><TS version="1.1" language="en">'
+Entete +='<context>\n'
+Entete +='    <name>@defaut</name>\n'
+
+Fin ='</context>\n</TS>\n'
+
+pattern_In=re.compile(r'^\s*<source>(?P<ident>.*)</source>\s*$')
+pattern_Out=re.compile(r'^\s*<translation>(?P<traduit>.*)</translation>\s*$')
+
+listeMaj=[]
+listeMaj.append(('for h','for H'))
+listeMaj.append(('pour h','pour H'))
+listeMaj.append(('for u','for U'))
+listeMaj.append(('pour u','pour U'))
+listeMaj.append(('of k','of K'))
+listeMaj.append(('de k','de K'))
+listeMaj.append(('of h','of H'))
+listeMaj.append(('de h','de H'))
+listeMaj.append(('u and v','U and V'))
+listeMaj.append(('u et v','U et V'))
+listeMaj.append(('on h','on H'))
+listeMaj.append(('sur h','sur H'))
+listeMaj.append(('supg','SUPG'))
+listeMaj.append(('k and epsilon','K and Epsilon'))
+listeMaj.append(('k-epsilon','K-Epsilon'))
+listeMaj.append(('gmres','GMRES'))
+listeMaj.append(('cgstab','CGSTAB'))
+listeMaj.append(('q(z)','Q(Z)'))
+listeMaj.append(('z(q)','Z(Q)'))
+listeMaj.append(('wgs84','WGS84'))
+listeMaj.append(('wgs84','UTM'))
+listeMaj.append(('n-scheme','N-Scheme'))
+listeMaj.append(('scheme n','Scheme N'))
+listeMaj.append(('psi-scheme','PSI-Scheme'))
+listeMaj.append((' psi',' PSI'))
+listeMaj.append(('f(t90)','F(T90)'))
+listeMaj.append(('(pa)','(Pa)'))
+listeMaj.append(('h clipping','H clipping'))
+listeMaj.append(('delwaq','DELWAQ'))
+listeMaj.append(('tomawac','TOMAWAC'))
+listeMaj.append(('chezy','CHEZY'))
+listeMaj.append(('hllc','HLLC'))
+listeMaj.append(('c-u','C-U'))
+listeMaj.append(('c,u,v','C,U,V'))
+listeMaj.append(('h,u,v','H,U,V'))
+listeMaj.append(('previmer','PREVIMER'))
+listeMaj.append(('fes20xx','FES20XX'))
+listeMaj.append(('legos-nea','LEGOS-NEA'))
+listeMaj.append(('tpxo','TPXO'))
+listeMaj.append((' x',' X'))
+listeMaj.append((' y',' Y'))
+listeMaj.append(('waf','WAF'))
+listeMaj.append(('(w/kg)','(W/kg)'))
+listeMaj.append(('(j/kg)','(W/kg)'))
+listeMaj.append(('zokagoa','Zokagoa'))
+listeMaj.append(('nikuradse','Nikuradse'))
+listeMaj.append(('froude','Froude'))
+listeMaj.append(('gauss','Gauss'))
+listeMaj.append(('seidel','Seidel'))
+listeMaj.append(('leo','Leo'))
+listeMaj.append(('postma','Postma'))
+listeMaj.append(('crout','Crout'))
+listeMaj.append(('okada','Okada'))
+listeMaj.append(('jmj','JMJ'))
+listeMaj.append(('haaland','HAALAND'))
+listeMaj.append(('grad(u)','grad(U)'))
+listeMaj.append(('variable z','variable Z'))
+listeMaj.append(('variable r','variable R'))
+listeMaj.append(('ascii','ASCII'))
+
+
+def traite(fichier,fichierDico, fichierTs):
+  f=open(fichier,'r')
+  t=f.read()
+  for ligne in t.split('\n'):
+     if pattern_In.match(ligne): 
+        m=pattern_In.match(ligne)
+        ident=m.group('ident')
+     if pattern_Out.match(ligne): 
+        m=pattern_Out.match(ligne)
+        traduit=m.group('traduit')
+        dicoCataToTelemac[ident]=traduit
+        traduitMin=traduit.lower()
+        for t in listeMaj :
+           traduit=traduitMin.replace(t[0],t[1])
+           traduitMin=traduit
+        chaine=traduitMin[0].upper()+traduitMin[1:]
+        dicoCataToLabel[ident]=chaine
+  f.close()
+
+  f=open(fichierDico,'w')
+  f.write ("dicoCataToEngTelemac = {\n")
+  for k in dicoCataToTelemac.keys() :
+       l= '   "'+  k +'" : "'+ dicoCataToTelemac[k]+'",\n'
+       f.write(l)
+  f.write(" }\n")
+  f.write( "dicoCasEnToCata = {\n")
+  for k in dicoCataToTelemac.keys() :
+      l= '   "'+ dicoCataToTelemac[k] +'" : "'+ k+'",\n'
+      f.write(l)
+  f.write( " }\n")
+  f.close()
+
+  f=open(fichierTs,'w')
+  f.write( Entete)
+  for k in dicoCataToTelemac.keys() :
+      texte = "    <message>\n        <source>"
+      texte+= k
+      texte+= "</source>\n        <translation>"
+      texte+= dicoCataToLabel[k]
+      texte+= "</translation>\n    </message>\n"
+      f.write( texte)
+
+  f.write( Fin)
+
+    
+if __name__ == "__main__":
+  import optparse
+  parser=optparse.OptionParser(usage="utilisation : %prog [options]")
+  parser.add_option(u"-i","--input",dest="fichierIn",type='string',
+                    help=("nom du fichier ts a traduire"))
+  parser.add_option(u"-d","--dico",dest="fichierDico",type='string',
+                    help=("nom du fichier contenant les dictionnaires labelTelemac:labelCata en sortie"))
+  parser.add_option(u"-t","--tsFile",dest="fichierTs",type='string',
+                    help=("nom du fichier ts contenant labelCata vers label IHM"))
+
+
+  (options,args)=parser.parse_args(sys.argv[1:])
+  if options.fichierIn == None or options.fichierDico == None or options.fichierTs==None :
+      print 'reEcrittsEn.py -i <inputfile> -d <dicofile> -t <tsfile>'
+      print './reEcrittsEn.py -i cata_name2eng_name.ts -d dicoCasEnToCata.py -t labelCataToIhmEn.ts'
+      sys.exit(1)
+  traite(options.fichierIn,options.fichierDico,options.fichierTs)
+
diff --git a/Telemac/transforme/reEcrittsFr.py b/Telemac/transforme/reEcrittsFr.py
new file mode 100755 (executable)
index 0000000..5d486c7
--- /dev/null
@@ -0,0 +1,139 @@
+#!/usr/bin/env python
+import sys, re
+dicoCataToLabel={}
+dicoCataToTelemac={}
+Entete  = '<?xml version="1.0" encoding="utf-8"?>'
+Entete +='<!DOCTYPE TS><TS version="1.1" language="en">'
+Entete +='<context>\n'
+Entete +='    <name>@defaut</name>\n'
+
+Fin ='</context>\n</TS>\n'
+
+pattern_In=re.compile(r'^\s*<source>(?P<ident>.*)</source>\s*$')
+pattern_Out=re.compile(r'^\s*<translation>(?P<traduit>.*)</translation>\s*$')
+
+listeMaj=[]
+listeMaj.append(('for h','for H'))
+listeMaj.append(('pour h','pour H'))
+listeMaj.append(('for u','for U'))
+listeMaj.append(('pour u','pour U'))
+listeMaj.append(('of k','of K'))
+listeMaj.append(('de k','de K'))
+listeMaj.append(('of h','of H'))
+listeMaj.append(('de h','de H'))
+listeMaj.append(('u and v','U and V'))
+listeMaj.append(('u et v','U et V'))
+listeMaj.append(('on h','on H'))
+listeMaj.append(('sur h','sur H'))
+listeMaj.append(('supg','SUPG'))
+listeMaj.append(('k and epsilon','K and Epsilon'))
+listeMaj.append(('k-epsilon','K-Epsilon'))
+listeMaj.append(('gmres','GMRES'))
+listeMaj.append(('cgstab','CGSTAB'))
+listeMaj.append(('q(z)','Q(Z)'))
+listeMaj.append(('z(q)','Z(Q)'))
+listeMaj.append(('wgs84','WGS84'))
+listeMaj.append(('wgs84','UTM'))
+listeMaj.append(('n-scheme','N-Scheme'))
+listeMaj.append(('scheme n','Scheme N'))
+listeMaj.append(('psi-scheme','PSI-Scheme'))
+listeMaj.append((' psi',' PSI'))
+listeMaj.append(('f(t90)','F(T90)'))
+listeMaj.append(('(pa)','(Pa)'))
+listeMaj.append(('h clipping','H clipping'))
+listeMaj.append(('delwaq','DELWAQ'))
+listeMaj.append(('tomawac','TOMAWAC'))
+listeMaj.append(('chezy','CHEZY'))
+listeMaj.append(('hllc','HLLC'))
+listeMaj.append(('c-u','C-U'))
+listeMaj.append(('c,u,v','C,U,V'))
+listeMaj.append(('h,u,v','H,U,V'))
+listeMaj.append(('previmer','PREVIMER'))
+listeMaj.append(('fes20xx','FES20XX'))
+listeMaj.append(('legos-nea','LEGOS-NEA'))
+listeMaj.append(('tpxo','TPXO'))
+listeMaj.append((' x',' X'))
+listeMaj.append((' y',' Y'))
+listeMaj.append(('waf','WAF'))
+listeMaj.append(('(w/kg)','(W/kg)'))
+listeMaj.append(('(j/kg)','(W/kg)'))
+listeMaj.append(('zokagoa','Zokagoa'))
+listeMaj.append(('nikuradse','Nikuradse'))
+listeMaj.append(('froude','Froude'))
+listeMaj.append(('gauss','Gauss'))
+listeMaj.append(('seidel','Seidel'))
+listeMaj.append(('leo','Leo'))
+listeMaj.append(('postma','Postma'))
+listeMaj.append(('crout','Crout'))
+listeMaj.append(('okada','Okada'))
+listeMaj.append(('jmj','JMJ'))
+listeMaj.append(('haaland','HAALAND'))
+listeMaj.append(('grad(u)','grad(U)'))
+listeMaj.append(('variable z','variable Z'))
+listeMaj.append(('variable r','variable R'))
+listeMaj.append(('ascii','ASCII'))
+
+
+def traite(fichier,fichierDico, fichierTs):
+  f=open(fichier,'r')
+  t=f.read()
+  for ligne in t.split('\n'):
+     if pattern_In.match(ligne): 
+        m=pattern_In.match(ligne)
+        ident=m.group('ident')
+     if pattern_Out.match(ligne): 
+        m=pattern_Out.match(ligne)
+        traduit=m.group('traduit')
+        dicoCataToTelemac[ident]=traduit
+        traduitMin=traduit.lower()
+        for t in listeMaj :
+           traduit=traduitMin.replace(t[0],t[1])
+           traduitMin=traduit
+        chaine=traduitMin[0].upper()+traduitMin[1:]
+        dicoCataToLabel[ident]=chaine
+  f.close()
+
+  f=open(fichierDico,'w')
+  f.write ("dicoCataToFrTelemac = {\n")
+  for k in dicoCataToTelemac.keys() :
+       l= '   "'+  k +'" : "'+ dicoCataToTelemac[k]+'",\n'
+       f.write(l)
+  f.write(" }\n")
+  f.write( "dicoCasFrToCata = {\n")
+  for k in dicoCataToTelemac.keys() :
+      l= '   "'+ dicoCataToTelemac[k] +'" : "'+ k+'",\n'
+      f.write(l)
+  f.write( " }\n")
+  f.close()
+
+  f=open(fichierTs,'w')
+  f.write( Entete)
+  for k in dicoCataToTelemac.keys() :
+      texte = "    <message>\n        <source>"
+      texte+= k
+      texte+= "</source>\n        <translation>"
+      texte+= dicoCataToLabel[k]
+      texte+= "</translation>\n    </message>\n"
+      f.write( texte)
+
+  f.write( Fin)
+
+    
+if __name__ == "__main__":
+  import optparse
+  parser=optparse.OptionParser(usage="utilisation : %prog [options]")
+  parser.add_option(u"-i","--input",dest="fichierIn",type='string',
+                    help=("nom du fichier ts a traduire"))
+  parser.add_option(u"-d","--dico",dest="fichierDico",type='string',
+                    help=("nom du fichier contenant les dictionnaires labelTelemac:labelCata en sortie"))
+  parser.add_option(u"-t","--tsFile",dest="fichierTs",type='string',
+                    help=("nom du fichier ts contenant labelCata vers label IHM"))
+
+
+  (options,args)=parser.parse_args(sys.argv[1:])
+  if options.fichierIn == None or options.fichierDico == None or options.fichierTs==None :
+      print 'reEcritts.py -i <inputfile> -d <dicofile> -t <tsfile>'
+      print './reEcritts.py -i cata_name2eng_name.ts -d dicoCasEnToCata.py -t tsfile'
+      sys.exit(1)
+  traite(options.fichierIn,options.fichierDico,options.fichierTs)
+
index 8a30e3f1a3f9804bc4c66e7a00b48c11df46e840..2adc29093e21ff128e9d55f794b8709a6dcdb147 100644 (file)
@@ -36,6 +36,7 @@ eficas_compile_ui ( desBaseWidget.ui )
 eficas_compile_ui ( desChoixCata.ui )
 eficas_compile_ui ( desChoixCode.ui )
 eficas_compile_ui ( desChoixCommandes.ui )
+eficas_compile_ui ( desChoixLangue.ui )
 eficas_compile_ui ( desRecherche.ui )
 eficas_compile_ui ( desRechercheCatalogue.ui )
 eficas_compile_ui ( desSelectVal.ui )
index 17afb422ad7c7ef0082751d409c1e94e29bc5174..02623555e2d1e6e89dda894f74287fbd42f4997a 100644 (file)
 <?xml version="1.0" encoding="utf-8"?>
 <!DOCTYPE TS><TS version="1.1" language="en">
 <context>
-    <name>@defaut</name>
+    <name>@default</name>
     <message>
-        <source>TITLE</source>
-        <translation>Title</translation>
+        <source>NUMERICAL_PARAMETERS_HYDRO</source>
+        <translation>NUMERICAL_PARAMETERS</translation>
     </message>
     <message>
-        <source>GEOMETRY_FILE_FORMAT</source>
-        <translation>Geometry File Format</translation>
+        <source>PHYSICAL_PARAMETERS_HYDRO</source>
+        <translation>PHYSICAL_PARAMETERS</translation>
     </message>
     <message>
-        <source>GEOMETRY_FILE</source>
-        <translation>Geometry File</translation>
+        <source>COEFFICIENT_TO_CALIBRATE_TIDAL_VELOCITIES</source>
+        <translation>Coefficient to calibrate tidal velocities</translation>
     </message>
     <message>
-        <source>FORTRAN_FILE</source>
-        <translation>Fortran File</translation>
+        <source>"FLUX_CONTROL"</source>
+        <translation>"flux control"</translation>
     </message>
     <message>
         <source>BOTTOM_TOPOGRAPHY_FILE</source>
-        <translation>Bottom Topography File</translation>
+        <translation>Bottom topography file</translation>
     </message>
     <message>
-        <source>BOTTOM_SMOOTHINGS</source>
-        <translation>Bottom Smoothings</translation>
+        <source>"gmres_(see_option_for_the_solver_for_tracer_diffusion)"</source>
+        <translation>"GMRES (see option for the solver for tracer diffusion)"</translation>
     </message>
     <message>
-        <source>BOUNDARY_CONDITIONS_FILE</source>
-        <translation>Boundary Conditions File</translation>
+        <source>NUMBER_OF_CORRECTIONS_OF_DISTRIBUTIVE_SCHEMES</source>
+        <translation>Number of corrections of distributive schemes</translation>
     </message>
     <message>
-        <source>VALIDATION</source>
-        <translation>Validation</translation>
+        <source>WATER_DENSITY</source>
+        <translation>Water density</translation>
     </message>
     <message>
-        <source>REFERENCE_FILE_FORMAT</source>
-        <translation>Reference File Format</translation>
+        <source>"STRICKLER"</source>
+        <translation>"strickler"</translation>
     </message>
     <message>
-        <source>REFERENCE_FILE</source>
-        <translation>Reference File</translation>
+        <source>VALUE_OF_ATMOSPHERIC_PRESSURE</source>
+        <translation>Value of atmospheric pressure</translation>
     </message>
     <message>
-        <source>BINARY_DATA_FILE_1_FORMAT</source>
-        <translation>Binary Data File 1 Format</translation>
+        <source>LISTING_FOR_PRINTOUT_PERIOD</source>
+        <translation>Listing for printout period</translation>
     </message>
     <message>
-        <source>BINARY_DATA_FILE_1</source>
-        <translation>Binary Data File 1</translation>
+        <source>"WAF_scheme_order_2"</source>
+        <translation>"WAF scheme order 2"</translation>
     </message>
     <message>
-        <source>BINARY_DATA_FILE_2_FORMAT</source>
-        <translation>Binary Data File 2 Format</translation>
+        <source>"NO_FRICTION"</source>
+        <translation>"no friction"</translation>
     </message>
     <message>
-        <source>BINARY_DATA_FILE_2</source>
-        <translation>Binary Data File 2</translation>
+        <source>VELOCITY_DIFFUSIVITY</source>
+        <translation>Velocity diffusivity</translation>
     </message>
     <message>
-        <source>FORMATTED_DATA_FILE_1</source>
-        <translation>Formatted Data File 1</translation>
+        <source>LINEARIZED_PROPAGATION</source>
+        <translation>Linearized propagation</translation>
     </message>
     <message>
-        <source>FORMATTED_DATA_FILE_2</source>
-        <translation>Formatted Data File 2</translation>
+        <source>"gradient_1,_etc._"</source>
+        <translation>"gradient 1, etc. "</translation>
     </message>
     <message>
-        <source>INITIAL_CONDITIONS</source>
-        <translation>Initial Conditions</translation>
+        <source>"zero"</source>
+        <translation>"zero"</translation>
     </message>
     <message>
-        <source>INITIAL_ELEVATION</source>
-        <translation>Initial Elevation</translation>
+        <source>PRINTOUT_PERIOD_FOR_DROGUES</source>
+        <translation>Printout period for drogues</translation>
     </message>
     <message>
-        <source>INITIAL_DEPTH</source>
-        <translation>Initial Depth</translation>
+        <source>SIPHONS_DATA_FILE</source>
+        <translation>Siphons data file</translation>
     </message>
     <message>
-        <source>COMPUTATION_CONTINUED</source>
-        <translation>Computation Continued</translation>
+        <source>"NO_DEFAULT_VALUE"</source>
+        <translation>"no default value"</translation>
     </message>
     <message>
-        <source>PREVIOUS_COMPUTATION_FILE_FORMAT</source>
-        <translation>Previous Computation File Format</translation>
+        <source>"wind_along_y_axis_(m/s)"</source>
+        <translation>"wind along Y axis (m/s)"</translation>
     </message>
     <message>
-        <source>PREVIOUS_COMPUTATION_FILE</source>
-        <translation>Previous Computation File</translation>
+        <source>"supplementary_variable_Z"</source>
+        <translation>"supplementary variable Z"</translation>
     </message>
     <message>
-        <source>RECORD_NUMBER_FOR_RESTART</source>
-        <translation>Record Number For Restart</translation>
+        <source>COMPUTATION_CONTINUED</source>
+        <translation>Computation continued</translation>
     </message>
     <message>
-        <source>INITIAL_TIME_SET_TO_ZERO</source>
-        <translation>Initial Time Set To Zero</translation>
+        <source>FLUXLINE</source>
+        <translation>Fluxline</translation>
     </message>
     <message>
         <source>PARALLEL_PROCESSORS</source>
-        <translation>Parallel Processors</translation>
+        <translation>Parallel processors</translation>
     </message>
     <message>
-        <source>CHECKING_THE_MESH</source>
-        <translation>Checking The Mesh</translation>
+        <source>COEFFICIENT_FOR_DIFFUSION_OF_TRACERS</source>
+        <translation>Coefficient for diffusion of tracers</translation>
     </message>
     <message>
-        <source>MAXIMUM_NUMBER_OF_BOUNDARIES</source>
-        <translation>Maximum Number Of Boundaries</translation>
+        <source>"SUPG"</source>
+        <translation>"SUPG"</translation>
     </message>
     <message>
-        <source>MAXIMUM_NUMBER_OF_SOURCES</source>
-        <translation>Maximum Number Of Sources</translation>
+        <source>BINARY_DATA_FILE_2</source>
+        <translation>Binary data file 2</translation>
     </message>
     <message>
-        <source>MAXIMUM_NUMBER_OF_TRACERS</source>
-        <translation>Maximum Number Of Tracers</translation>
+        <source>"SPALART_ALLMARAS"</source>
+        <translation>"spalart-allmaras"</translation>
     </message>
     <message>
-        <source>PRESCRIBED_ELEVATIONS</source>
-        <translation>Prescribed Elevations</translation>
+        <source>CULVERTS_DATA_FILE</source>
+        <translation>Culverts data file</translation>
     </message>
     <message>
-        <source>PRESCRIBED_FLOWRATES</source>
-        <translation>Prescribed Flowrates</translation>
+        <source>DIAMETER_OF_ALGAE</source>
+        <translation>Diameter of algae</translation>
     </message>
     <message>
-        <source>PRESCRIBED_VELOCITIES</source>
-        <translation>Prescribed Velocities</translation>
+        <source>OPTION_FOR_CULVERTS</source>
+        <translation>Option for culverts</translation>
     </message>
     <message>
-        <source>STAGE_DISCHARGE_CURVES</source>
-        <translation>Stage-discharge Curves</translation>
+        <source>FRICTION_DATA_FILE</source>
+        <translation>Friction data file</translation>
     </message>
     <message>
-        <source>STAGE_DISCHARGE_CURVES_FILE</source>
-        <translation>Stage-discharge Curves File</translation>
+        <source>NAMES_OF_POINTS</source>
+        <translation>Names of points</translation>
     </message>
     <message>
-        <source>VELOCITY_PROFILES</source>
-        <translation>Velocity Profiles</translation>
+        <source>TOMAWAC_STEERING_FILE</source>
+        <translation>TOMAWAC steering file</translation>
     </message>
     <message>
-        <source>OPTION_FOR_LIQUID_BOUNDARIES</source>
-        <translation>Option For Liquid Boundaries</translation>
+        <source>"velocity_along_y_axis_(m/s)"</source>
+        <translation>"velocity along Y axis (m/s)"</translation>
     </message>
     <message>
-        <source>LIQUID_BOUNDARIES_FILE</source>
-        <translation>Liquid Boundaries File</translation>
+        <source>FINITE_VOLUME_SCHEME</source>
+        <translation>Finite volume scheme</translation>
     </message>
     <message>
-        <source>ELEMENTS_MASKED_BY_USER</source>
-        <translation>Elements Masked By User</translation>
+        <source>"constant_normal_profile"</source>
+        <translation>"constant normal profile"</translation>
     </message>
     <message>
-        <source>DEBUGGER</source>
-        <translation>Debugger</translation>
+        <source>SPATIAL_PROJECTION_TYPE</source>
+        <translation>Spatial projection type</translation>
     </message>
     <message>
-        <source>TIME_STEP</source>
-        <translation>Time Step</translation>
+        <source>PHYSICAL_CHARACTERISTICS_OF_THE_TSUNAMI</source>
+        <translation>Physical characteristics of the tsunami</translation>
     </message>
     <message>
-        <source>NUMBER_OF_TIME_STEPS</source>
-        <translation>Number Of Time Steps</translation>
+        <source>MASS_BALANCE</source>
+        <translation>Mass-balance</translation>
     </message>
     <message>
-        <source>DURATION</source>
-        <translation>Duration</translation>
+        <source>RESULTS_FILE_FORMAT</source>
+        <translation>Results file format</translation>
     </message>
     <message>
-        <source>ORIGINAL_DATE_OF_TIME</source>
-        <translation>Original Date Of Time</translation>
+        <source>BREACHES_DATA_FILE</source>
+        <translation>Breaches data file</translation>
     </message>
     <message>
-        <source>ORIGINAL_HOUR_OF_TIME</source>
-        <translation>Original Hour Of Time</translation>
+        <source>COEFFICIENT_1_FOR_LAW_OF_TRACERS_DEGRADATION</source>
+        <translation>Coefficient 1 for law of tracers degradation</translation>
     </message>
     <message>
-        <source>STOP_IF_A_STEADY_STATE_IS_REACHED</source>
-        <translation>Stop If A Steady State Is Reached</translation>
+        <source>"variable_in_time_given_by_formated_file"</source>
+        <translation>"variable in time given by formated file"</translation>
     </message>
     <message>
-        <source>STOP_CRITERIA</source>
-        <translation>Stop Criteria</translation>
+        <source>"LIKE_1_BUT_WITH_POROSITY_(DEFINA_METHOD)"</source>
+        <translation>"like 1 but with porosity (defina method)"</translation>
     </message>
     <message>
-        <source>CONTROL_OF_LIMITS</source>
-        <translation>Control Of Limits</translation>
+        <source>TREATMENT_OF_FLUXES_AT_THE_BOUNDARIES</source>
+        <translation>Treatment of fluxes at the boundaries</translation>
     </message>
     <message>
-        <source>LIMIT_VALUES</source>
-        <translation>Limit Values</translation>
+        <source>GLOBAL_NUMBER_OF_THE_POINT_TO_CALIBRATE_HIGH_WATER</source>
+        <translation>Global number of the point to calibrate high water</translation>
     </message>
     <message>
-        <source>VARIABLE_TIME_STEP</source>
-        <translation>Variable Time-step</translation>
+        <source>REFERENCE_FILE_FORMAT</source>
+        <translation>Reference file format</translation>
     </message>
     <message>
-        <source>DESIRED_COURANT_NUMBER</source>
-        <translation>Desired Courant Number</translation>
+        <source>BOTTOM_SURFACES_DELWAQ_FILE</source>
+        <translation>Bottom surfaces DELWAQ file</translation>
     </message>
     <message>
-        <source>ORIGIN_COORDINATES</source>
-        <translation>Origin Coordinates</translation>
+        <source>"time_of_maximum_velocity"</source>
+        <translation>"time of maximum velocity"</translation>
     </message>
     <message>
-        <source>SPHERICAL_COORDINATES</source>
-        <translation>Spherical Coordinates</translation>
+        <source>"gauss_seidel"</source>
+        <translation>"Gauss-Seidel"</translation>
     </message>
     <message>
-        <source>LATITUDE_OF_ORIGIN_POINT</source>
-        <translation>Latitude Of Origin Point</translation>
+        <source>"DRY_ELEMENTS_FROZEN"</source>
+        <translation>"dry elements frozen"</translation>
     </message>
     <message>
-        <source>LONGITUDE_OF_ORIGIN_POINT</source>
-        <translation>Longitude Of Origin Point</translation>
+        <source>"supplementary_variable_O"</source>
+        <translation>"supplementary variable o"</translation>
     </message>
     <message>
-        <source>NORTH</source>
-        <translation>North</translation>
+        <source>BINARY_ATMOSPHERIC_DATA_FILE</source>
+        <translation>Binary atmospheric data file</translation>
     </message>
     <message>
-        <source>SPATIAL_PROJECTION_TYPE</source>
-        <translation>Spatial Projection Type</translation>
+        <source>CONTINUITY_CORRECTION</source>
+        <translation>Continuity correction</translation>
     </message>
     <message>
-        <source>MAXIMUM_NUMBER_OF_FRICTION_DOMAINS</source>
-        <translation>Maximum Number Of Friction Domains</translation>
+        <source>FREE_SURFACE_GRADIENT_COMPATIBILITY</source>
+        <translation>Free surface gradient compatibility</translation>
     </message>
     <message>
-        <source>FRICTION_DATA</source>
-        <translation>Friction Data</translation>
+        <source>CONVERGENCE_STUDY</source>
+        <translation>Convergence study</translation>
     </message>
     <message>
-        <source>FRICTION_DATA_FILE</source>
-        <translation>Friction Data File</translation>
+        <source>"EXPLICIT_+_MURD_SCHEME_PSI"</source>
+        <translation>"explicit + murd scheme PSI"</translation>
     </message>
     <message>
-        <source>LAW_OF_BOTTOM_FRICTION</source>
-        <translation>Law Of Bottom Friction</translation>
+        <source>NAMES_OF_PRIVATE_VARIABLES</source>
+        <translation>Names of private variables</translation>
     </message>
     <message>
-        <source>FRICTION_COEFFICIENT</source>
-        <translation>Friction Coefficient</translation>
+        <source>NODES_DISTANCES_DELWAQ_FILE</source>
+        <translation>Nodes distances DELWAQ file</translation>
     </message>
     <message>
-        <source>MANNING_DEFAULT_VALUE_FOR_COLEBROOK_WHITE_LAW</source>
-        <translation>Manning Default Value For Colebrook-white Law</translation>
+        <source>"EXPLICIT_+_MURD_SCHEME_N"</source>
+        <translation>"explicit + murd Scheme N"</translation>
     </message>
     <message>
-        <source>DEPTH_IN_FRICTION_TERMS</source>
-        <translation>Depth In Friction Terms</translation>
+        <source>"EDGE_BASED_N_SCHEME"</source>
+        <translation>"edge-based N-Scheme"</translation>
     </message>
     <message>
-        <source>NON_SUBMERGED_VEGETATION_FRICTION</source>
-        <translation>Non-submerged Vegetation Friction</translation>
+        <source>TIME_STEP_REDUCTION_FOR_K_EPSILON_MODEL</source>
+        <translation>Time step reduction for K-Epsilon model</translation>
     </message>
     <message>
-        <source>DIAMETER_OF_ROUGHNESS_ELEMENTS</source>
-        <translation>Diameter Of Roughness Elements</translation>
+        <source>"velocity_along_x_axis_(m/s)"</source>
+        <translation>"velocity along X axis (m/s)"</translation>
     </message>
     <message>
-        <source>SPACING_OF_ROUGHNESS_ELEMENTS</source>
-        <translation>Spacing Of Roughness Elements</translation>
+        <source>NON_DIMENSIONAL_DISPERSION_COEFFICIENTS</source>
+        <translation>Non-dimensional dispersion coefficients</translation>
     </message>
     <message>
-        <source>LAW_OF_FRICTION_ON_LATERAL_BOUNDARIES</source>
-        <translation>Law Of Friction On Lateral Boundaries</translation>
+        <source>"supplementary_variable_N"</source>
+        <translation>"supplementary variable n"</translation>
     </message>
     <message>
-        <source>ROUGHNESS_COEFFICIENT_OF_BOUNDARIES</source>
-        <translation>Roughness Coefficient Of Boundaries</translation>
+        <source>"drift_along_y_(m)"</source>
+        <translation>"drift along Y (m)"</translation>
     </message>
     <message>
-        <source>DEFINITION_OF_ZONES</source>
-        <translation>Definition Of Zones</translation>
+        <source>"Astronomical_tide"</source>
+        <translation>"astronomical tide"</translation>
     </message>
     <message>
-        <source>ZONES_FILE</source>
-        <translation>Zones File</translation>
+        <source>GEOMETRY_FILE_FORMAT</source>
+        <translation>Geometry file format</translation>
     </message>
     <message>
-        <source>WIND</source>
-        <translation>Wind</translation>
+        <source>ORIGINAL_HOUR_OF_TIME</source>
+        <translation>Original hour of time</translation>
     </message>
     <message>
-        <source>OPTION_FOR_WIND</source>
-        <translation>Option For Wind</translation>
+        <source>DIFFUSIVITY_FOR_DELWAQ</source>
+        <translation>Diffusivity for DELWAQ</translation>
     </message>
     <message>
-        <source>COEFFICIENT_OF_WIND_INFLUENCE</source>
-        <translation>Coefficient Of Wind Influence</translation>
+        <source>DISSIPATION_COEFFICIENT_FOR_SECONDARY_CURRENTS</source>
+        <translation>Dissipation coefficient for secondary currents</translation>
     </message>
     <message>
-        <source>WIND_VELOCITY_ALONG_X</source>
-        <translation>Wind Velocity Along X</translation>
+        <source>"TPXO"</source>
+        <translation>"TPXO"</translation>
     </message>
     <message>
-        <source>WIND_VELOCITY_ALONG_Y</source>
-        <translation>Wind Velocity Along Y</translation>
+        <source>ALGAE_TRANSPORT_MODEL</source>
+        <translation>Algae transport model</translation>
     </message>
     <message>
-        <source>SPEED_AND_DIRECTION_OF_WIND</source>
-        <translation>Speed And Direction Of Wind</translation>
+        <source>TOLERANCES_FOR_IDENTIFICATION</source>
+        <translation>Tolerances for identification</translation>
     </message>
     <message>
-        <source>THRESHOLD_DEPTH_FOR_WIND</source>
-        <translation>Threshold Depth For Wind</translation>
+        <source>"SMOOTHING"</source>
+        <translation>"smoothing"</translation>
     </message>
     <message>
-        <source>AIR_PRESSURE</source>
-        <translation>Air Pressure</translation>
+        <source>LOCAL_NUMBER_OF_THE_POINT_TO_CALIBRATE_HIGH_WATER</source>
+        <translation>Local number of the point to calibrate high water</translation>
     </message>
     <message>
-        <source>VALUE_OF_ATMOSPHERIC_PRESSURE</source>
-        <translation>Value Of Atmospheric Pressure</translation>
+        <source>DELWAQ_PRINTOUT_PERIOD</source>
+        <translation>DELWAQ printout period</translation>
     </message>
     <message>
-        <source>RAIN_OR_EVAPORATION</source>
-        <translation>Rain Or Evaporation</translation>
+        <source>DROGUES_FILE</source>
+        <translation>Drogues file</translation>
     </message>
     <message>
-        <source>RAIN_OR_EVAPORATION_IN_MM_PER_DAY</source>
-        <translation>Rain Or Evaporation In Mm Per Day</translation>
+        <source>MASS_LUMPING_FOR_WEAK_CHARACTERISTICS</source>
+        <translation>Mass-lumping for weak characteristics</translation>
     </message>
     <message>
-        <source>WAVE_DRIVEN_CURRENTS</source>
-        <translation>Wave Driven Currents</translation>
+        <source>GRAVITY_ACCELERATION</source>
+        <translation>Gravity acceleration</translation>
     </message>
     <message>
-        <source>RECORD_NUMBER_IN_WAVE_FILE</source>
-        <translation>Record Number In Wave File</translation>
+        <source>BINARY_DATABASE_2_FOR_TIDE</source>
+        <translation>Binary database 2 for tide</translation>
     </message>
     <message>
-        <source>PARAMETER_ESTIMATION</source>
-        <translation>Parameter Estimation</translation>
+        <source>"No_tide"</source>
+        <translation>"no tide"</translation>
     </message>
     <message>
-        <source>COST_FUNCTION</source>
-        <translation>Cost Function</translation>
+        <source>"SMAGORINSKI"</source>
+        <translation>"smagorinski"</translation>
     </message>
     <message>
-        <source>IDENTIFICATION_METHOD</source>
-        <translation>Identification Method</translation>
+        <source>"CONSERVATIVE_N_SCHEME"</source>
+        <translation>"conservative N-Scheme"</translation>
     </message>
     <message>
-        <source>TOLERANCES_FOR_IDENTIFICATION</source>
-        <translation>Tolerances For Identification</translation>
+        <source>SECTIONS_OUTPUT_FILE</source>
+        <translation>Sections output file</translation>
     </message>
     <message>
-        <source>MAXIMUM_NUMBER_OF_ITERATIONS_FOR_IDENTIFICATION</source>
-        <translation>Maximum Number Of Iterations For Identification</translation>
+        <source>"ERIA_SCHEME_FOR_TIDAL_FLATS"</source>
+        <translation>"eria scheme for tidal flats"</translation>
     </message>
     <message>
-        <source>ABSCISSAE_OF_SOURCES</source>
-        <translation>Abscissae Of Sources</translation>
+        <source>"absolute_value_of_diagonal"</source>
+        <translation>"absolute value of diagonal"</translation>
     </message>
     <message>
-        <source>ORDINATES_OF_SOURCES</source>
-        <translation>Ordinates Of Sources</translation>
+        <source>"gradient_simple"</source>
+        <translation>"gradient simple"</translation>
     </message>
     <message>
-        <source>WATER_DISCHARGE_OF_SOURCES</source>
-        <translation>Water Discharge Of Sources</translation>
+        <source>ELEMENTS_MASKED_BY_USER</source>
+        <translation>Elements masked by user</translation>
     </message>
     <message>
-        <source>VELOCITIES_OF_THE_SOURCES_ALONG_X</source>
-        <translation>Velocities Of The Sources Along X</translation>
+        <source>"ELDER"</source>
+        <translation>"elder"</translation>
     </message>
     <message>
-        <source>VELOCITIES_OF_THE_SOURCES_ALONG_Y</source>
-        <translation>Velocities Of The Sources Along Y</translation>
+        <source>DEFINITION_OF_ZONES</source>
+        <translation>Definition of zones</translation>
     </message>
     <message>
-        <source>TYPE_OF_SOURCES</source>
-        <translation>Type Of Sources</translation>
+        <source>"MISCELLANEOUS_(LEGOS_NEA,_FES20XX,_PREVIMER...)"</source>
+        <translation>"miscellaneous (LEGOS-NEA, FES20XX, PREVIMER...)"</translation>
     </message>
     <message>
-        <source>SOURCES_FILE</source>
-        <translation>Sources File</translation>
+        <source>H_CLIPPING</source>
+        <translation>H clipping</translation>
     </message>
     <message>
-        <source>WATER_QUALITY</source>
-        <translation>Water Quality</translation>
+        <source>"dissipation_of_turbulent_energy_(W/kg)"</source>
+        <translation>"dissipation of turbulent energy (W/kg)"</translation>
     </message>
     <message>
-        <source>WATER_QUALITY_PROCESS</source>
-        <translation>Water Quality Process</translation>
+        <source>PARAMETER_ESTIMATION</source>
+        <translation>Parameter estimation</translation>
     </message>
     <message>
-        <source>CORIOLIS</source>
-        <translation>Coriolis</translation>
+        <source>"rough"</source>
+        <translation>"rough"</translation>
     </message>
     <message>
-        <source>CORIOLIS_COEFFICIENT</source>
-        <translation>Coriolis Coefficient</translation>
+        <source>CHECKING_THE_MESH</source>
+        <translation>Checking the mesh</translation>
     </message>
     <message>
-        <source>OPTION_FOR_TSUNAMI_GENERATION</source>
-        <translation>Option For Tsunami Generation</translation>
+        <source>SOLVER_FOR_K_EPSILON_MODEL</source>
+        <translation>Solver for K-Epsilon model</translation>
     </message>
     <message>
-        <source>PHYSICAL_CHARACTERISTICS_OF_THE_TSUNAMI</source>
-        <translation>Physical Characteristics Of The Tsunami</translation>
+        <source>LIST_OF_FILES</source>
+        <translation>List of files</translation>
     </message>
     <message>
-        <source>WATER_DENSITY</source>
-        <translation>Water Density</translation>
+        <source>"UTM_ZONE,_E.G."</source>
+        <translation>"utm zone, e.g."</translation>
     </message>
     <message>
-        <source>GRAVITY_ACCELERATION</source>
-        <translation>Gravity Acceleration</translation>
+        <source>"scalar_velocity_(m/s)"</source>
+        <translation>"scalar velocity (m/s)"</translation>
     </message>
     <message>
-        <source>VERTICAL_STRUCTURES</source>
-        <translation>Vertical Structures</translation>
+        <source>WAVE_ENHANCED_FRICTION_FACTOR</source>
+        <translation>Wave enhanced friction factor</translation>
     </message>
     <message>
-        <source>SECONDARY_CURRENTS</source>
-        <translation>Secondary Currents</translation>
+        <source>NAMES_OF_CLANDESTINE_VARIABLES</source>
+        <translation>Names of clandestine variables</translation>
     </message>
     <message>
-        <source>PRODUCTION_COEFFICIENT_FOR_SECONDARY_CURRENTS</source>
-        <translation>Production Coefficient For Secondary Currents</translation>
+        <source>WAQTEL_STEERING_FILE</source>
+        <translation>Waqtel steering file</translation>
     </message>
     <message>
-        <source>DISSIPATION_COEFFICIENT_FOR_SECONDARY_CURRENTS</source>
-        <translation>Dissipation Coefficient For Secondary Currents</translation>
+        <source>MAXIMUM_NUMBER_OF_ITERATIONS_FOR_ADVECTION_SCHEMES</source>
+        <translation>Maximum number of iterations for advection schemes</translation>
     </message>
     <message>
-        <source>VELOCITY_DIFFUSIVITY</source>
-        <translation>Velocity Diffusivity</translation>
+        <source>"ANGLAIS"</source>
+        <translation>"anglais"</translation>
     </message>
     <message>
-        <source>TURBULENCE_MODEL</source>
-        <translation>Turbulence Model</translation>
+        <source>LAW_OF_BOTTOM_FRICTION</source>
+        <translation>Law of bottom friction</translation>
     </message>
     <message>
-        <source>SOLVER_FOR_K_EPSILON_MODEL</source>
-        <translation>Solver For K-epsilon Model</translation>
+        <source>MATRIX_VECTOR_PRODUCT</source>
+        <translation>Matrix-vector product</translation>
     </message>
     <message>
-        <source>OPTION_FOR_THE_SOLVER_FOR_K_EPSILON_MODEL</source>
-        <translation>Option For The Solver For K-epsilon Model</translation>
+        <source>ACCURACY_FOR_DIFFUSION_OF_TRACERS</source>
+        <translation>Accuracy for diffusion of tracers</translation>
     </message>
     <message>
-        <source>PRECONDITIONING_FOR_K_EPSILON_MODEL</source>
-        <translation>Preconditioning For K-epsilon Model</translation>
+        <source>SCHEME_FOR_ADVECTION_OF_TRACERS</source>
+        <translation>Scheme for advection of tracers</translation>
     </message>
     <message>
-        <source>ACCURACY_OF_K</source>
-        <translation>Accuracy Of K</translation>
+        <source>"div(_nu_grad(U)_)"</source>
+        <translation>"div( nu grad(U) )"</translation>
     </message>
     <message>
-        <source>ACCURACY_OF_EPSILON</source>
-        <translation>Accuracy Of Epsilon</translation>
+        <source>"No_infiltration"</source>
+        <translation>"no infiltration"</translation>
     </message>
     <message>
-        <source>MAXIMUM_NUMBER_OF_ITERATIONS_FOR_K_AND_EPSILON</source>
-        <translation>Maximum Number Of Iterations For K And Epsilon</translation>
+        <source>"velocity_proportional_to_square_root_of_depth,_variant"</source>
+        <translation>"velocity proportional to square root of depth, variant"</translation>
     </message>
     <message>
-        <source>NON_DIMENSIONAL_DISPERSION_COEFFICIENTS</source>
-        <translation>Non-dimensional Dispersion Coefficients</translation>
+        <source>"no_preconditioning_"</source>
+        <translation>"no preconditioning "</translation>
     </message>
     <message>
-        <source>TURBULENCE_MODEL_FOR_SOLID_BOUNDARIES</source>
-        <translation>Turbulence Model For Solid Boundaries</translation>
+        <source>"average"</source>
+        <translation>"average"</translation>
     </message>
     <message>
-        <source>INFORMATION_ABOUT_K_EPSILON_MODEL</source>
-        <translation>Information About K-epsilon Model</translation>
+        <source>FRICTION_DATA</source>
+        <translation>Friction data</translation>
     </message>
     <message>
-        <source>ADVECTION_OF_K_AND_EPSILON</source>
-        <translation>Advection Of K And Epsilon</translation>
+        <source>"wave_celerity_(m/s)"</source>
+        <translation>"wave celerity (m/s)"</translation>
     </message>
     <message>
-        <source>SCHEME_FOR_ADVECTION_OF_K_EPSILON</source>
-        <translation>Scheme For Advection Of K-epsilon</translation>
+        <source>"Lagrange_interp."</source>
+        <translation>"lagrange interp."</translation>
     </message>
     <message>
-        <source>SCHEME_OPTION_FOR_ADVECTION_OF_K_EPSILON</source>
-        <translation>Scheme Option For Advection Of K-epsilon</translation>
+        <source>ZONES_FILE</source>
+        <translation>Zones file</translation>
     </message>
     <message>
-        <source>TIME_STEP_REDUCTION_FOR_K_EPSILON_MODEL</source>
-        <translation>Time Step Reduction For K-epsilon Model</translation>
+        <source>"drift_along_x_(m)"</source>
+        <translation>"drift along X (m)"</translation>
     </message>
     <message>
-        <source>EQUATIONS</source>
-        <translation>Equations</translation>
+        <source>THRESHOLD_DEPTH_FOR_RECEDING_PROCEDURE</source>
+        <translation>Threshold depth for receding procedure</translation>
     </message>
     <message>
-        <source>TREATMENT_OF_THE_LINEAR_SYSTEM</source>
-        <translation>Treatment Of The Linear System</translation>
+        <source>"friction_velocity"</source>
+        <translation>"friction velocity"</translation>
     </message>
     <message>
-        <source>FINITE_VOLUME_SCHEME</source>
-        <translation>Finite Volume Scheme</translation>
+        <source>"bottom_elevation_(m)"</source>
+        <translation>"bottom elevation (m)"</translation>
     </message>
     <message>
-        <source>SOLVER</source>
-        <translation>Solver</translation>
+        <source>"diagonal_and_crout"</source>
+        <translation>"diagonal and Crout"</translation>
     </message>
     <message>
-        <source>SOLVER_OPTION</source>
-        <translation>Solver Option</translation>
+        <source>TREATMENT_OF_NEGATIVE_DEPTHS</source>
+        <translation>Treatment of negative depths</translation>
     </message>
     <message>
-        <source>SOLVER_ACCURACY</source>
-        <translation>Solver Accuracy</translation>
+        <source>"No_Tsunami"</source>
+        <translation>"no tsunami"</translation>
     </message>
     <message>
-        <source>MAXIMUM_NUMBER_OF_ITERATIONS_FOR_SOLVER</source>
-        <translation>Maximum Number Of Iterations For Solver</translation>
+        <source>"conj_gradient"</source>
+        <translation>"conj gradient"</translation>
     </message>
     <message>
-        <source>CONTINUITY_CORRECTION</source>
-        <translation>Continuity Correction</translation>
+        <source>"cgstab"</source>
+        <translation>"CGSTAB"</translation>
     </message>
     <message>
-        <source>PRECONDITIONING</source>
-        <translation>Preconditioning</translation>
+        <source>STEERING_FILE</source>
+        <translation>Steering file</translation>
     </message>
     <message>
-        <source>C_U_PRECONDITIONING</source>
-        <translation>C-u Preconditioning</translation>
+        <source>ZONE_NUMBER_IN_GEOGRAPHIC_SYSTEM</source>
+        <translation>Zone number in geographic system</translation>
     </message>
     <message>
-        <source>DISCRETIZATIONS_IN_SPACE</source>
-        <translation>Discretizations In Space</translation>
+        <source>DIFFUSION_OF_TRACERS</source>
+        <translation>Diffusion of tracers</translation>
     </message>
     <message>
-        <source>IMPLICITATION_FOR_DEPTH</source>
-        <translation>Implicitation For Depth</translation>
+        <source>PREVIOUS_COMPUTATION_FILE</source>
+        <translation>Previous computation file</translation>
     </message>
     <message>
-        <source>IMPLICITATION_FOR_VELOCITY</source>
-        <translation>Implicitation For Velocity</translation>
+        <source>DIAMETER_OF_ROUGHNESS_ELEMENTS</source>
+        <translation>Diameter of roughness elements</translation>
     </message>
     <message>
-        <source>PROPAGATION</source>
-        <translation>Propagation</translation>
+        <source>NUMBER_OF_TIME_STEPS</source>
+        <translation>Number of time steps</translation>
     </message>
     <message>
-        <source>INITIAL_GUESS_FOR_H</source>
-        <translation>Initial Guess For H</translation>
+        <source>"JMJ"</source>
+        <translation>"JMJ"</translation>
     </message>
     <message>
-        <source>LINEARIZED_PROPAGATION</source>
-        <translation>Linearized Propagation</translation>
+        <source>INFORMATION_ABOUT_K_EPSILON_MODEL</source>
+        <translation>Information about K-Epsilon model</translation>
     </message>
     <message>
-        <source>INITIAL_GUESS_FOR_U</source>
-        <translation>Initial Guess For U</translation>
+        <source>DESCRIPTION_OF_LIBRARIES</source>
+        <translation>Description of libraries</translation>
     </message>
     <message>
-        <source>MEAN_DEPTH_FOR_LINEARIZATION</source>
-        <translation>Mean Depth For Linearization</translation>
+        <source>INITIAL_DEPTH</source>
+        <translation>Initial depth</translation>
     </message>
     <message>
-        <source>ADVECTION</source>
-        <translation>Advection</translation>
+        <source>"MIXING_LENGTH"</source>
+        <translation>"mixing length"</translation>
     </message>
     <message>
-        <source>ADVECTION_OF_H</source>
-        <translation>Advection Of H</translation>
+        <source>"Priority_to_prescribed_values"</source>
+        <translation>"priority to prescribed values"</translation>
     </message>
     <message>
-        <source>ADVECTION_OF_U_AND_V</source>
-        <translation>Advection Of U And V</translation>
+        <source>OPTION_FOR_THE_SOLVER_FOR_K_EPSILON_MODEL</source>
+        <translation>Option for the solver for K-Epsilon model</translation>
     </message>
     <message>
-        <source>TYPE_OF_ADVECTION</source>
-        <translation>Type Of Advection</translation>
+        <source>"strong"</source>
+        <translation>"strong"</translation>
     </message>
     <message>
-        <source>OPTION_FOR_CHARACTERISTICS</source>
-        <translation>Option For Characteristics</translation>
+        <source>MAXIMUM_NUMBER_OF_ITERATIONS_FOR_DIFFUSION_OF_TRACERS</source>
+        <translation>Maximum number of iterations for diffusion of tracers</translation>
     </message>
     <message>
-        <source>SUPG_OPTION</source>
-        <translation>Supg Option</translation>
+        <source>DICTIONARY</source>
+        <translation>Dictionary</translation>
     </message>
     <message>
-        <source>NUMBER_OF_GAUSS_POINTS_FOR_WEAK_CHARACTERISTICS</source>
-        <translation>Number Of Gauss Points For Weak Characteristics</translation>
+        <source>"MANNING"</source>
+        <translation>"manning"</translation>
     </message>
     <message>
-        <source>MASS_LUMPING_FOR_WEAK_CHARACTERISTICS</source>
-        <translation>Mass-lumping For Weak Characteristics</translation>
+        <source>REFINEMENT_LEVELS</source>
+        <translation>Refinement levels</translation>
     </message>
     <message>
-        <source>MAXIMUM_NUMBER_OF_ITERATIONS_FOR_ADVECTION_SCHEMES</source>
-        <translation>Maximum Number Of Iterations For Advection Schemes</translation>
+        <source>"CN_runoff_model"</source>
+        <translation>"cn runoff model"</translation>
     </message>
     <message>
-        <source>UPWIND_COEFFICIENTS</source>
-        <translation>Upwind Coefficients</translation>
+        <source>ASCII_DATABASE_FOR_TIDE</source>
+        <translation>ASCII database for tide</translation>
     </message>
     <message>
-        <source>MASS_LUMPING_ON_H</source>
-        <translation>Mass-lumping On H</translation>
+        <source>"DEFINED_BY_USER"</source>
+        <translation>"defined by user"</translation>
     </message>
     <message>
-        <source>MASS_LUMPING_ON_VELOCITY</source>
-        <translation>Mass-lumping On Velocity</translation>
+        <source>COUPLING_PERIOD_FOR_SISYPHE</source>
+        <translation>Coupling period for sisyphe</translation>
     </message>
     <message>
-        <source>SCHEME_FOR_ADVECTION_OF_VELOCITIES</source>
-        <translation>Scheme For Advection Of Velocities</translation>
+        <source>"Mean_tide"</source>
+        <translation>"mean tide"</translation>
+    </message>
+    <message>
+        <source>"variable_in_time_and_space_given_by_formated_file"</source>
+        <translation>"variable in time and space given by formated file"</translation>
+    </message>
+    <message>
+        <source>INITIAL_CONDITIONS</source>
+        <translation>Initial conditions</translation>
+    </message>
+    <message>
+        <source>OPTION_FOR_THE_DIFFUSION_OF_TRACERS</source>
+        <translation>Option for the diffusion of tracers</translation>
+    </message>
+    <message>
+        <source>ACCURACY_OF_EPSILON</source>
+        <translation>Accuracy of epsilon</translation>
+    </message>
+    <message>
+        <source>"Tsunami_generated_on_the_basis_of_the_Okada_model_1992"</source>
+        <translation>"tsunami generated on the basis of the Okada model 1992"</translation>
+    </message>
+    <message>
+        <source>THRESHOLD_DEPTH_FOR_WIND</source>
+        <translation>Threshold depth for wind</translation>
+    </message>
+    <message>
+        <source>SOLVER_ACCURACY</source>
+        <translation>Solver accuracy</translation>
+    </message>
+    <message>
+        <source>BOUNDARY_CONDITIONS_FILE</source>
+        <translation>Boundary conditions file</translation>
+    </message>
+    <message>
+        <source>BINARY_RESULTS_FILE_FORMAT</source>
+        <translation>Binary results file format</translation>
+    </message>
+    <message>
+        <source>TIDE_GENERATING_FORCE</source>
+        <translation>Tide generating force</translation>
+    </message>
+    <message>
+        <source>"Normal"</source>
+        <translation>"normal"</translation>
+    </message>
+    <message>
+        <source>PRESCRIBED_FLOWRATES</source>
+        <translation>Prescribed flowrates</translation>
+    </message>
+    <message>
+        <source>"Edge_based_storage"</source>
+        <translation>"edge-based storage"</translation>
+    </message>
+    <message>
+        <source>BINARY_DATABASE_1_FOR_TIDE</source>
+        <translation>Binary database 1 for tide</translation>
+    </message>
+    <message>
+        <source>LAW_OF_TRACERS_DEGRADATION</source>
+        <translation>Law of tracers degradation</translation>
+    </message>
+    <message>
+        <source>SECTIONS_INPUT_FILE</source>
+        <translation>Sections input file</translation>
+    </message>
+    <message>
+        <source>MINIMUM_VALUE_OF_DEPTH</source>
+        <translation>Minimum value of depth</translation>
+    </message>
+    <message>
+        <source>"Mean_neap_tide"</source>
+        <translation>"mean neap tide"</translation>
+    </message>
+    <message>
+        <source>SPACING_OF_ROUGHNESS_ELEMENTS</source>
+        <translation>Spacing of roughness elements</translation>
+    </message>
+    <message>
+        <source>SCHEME_OPTION_FOR_ADVECTION_OF_K_EPSILON</source>
+        <translation>Scheme option for advection of K-epsilon</translation>
+    </message>
+    <message>
+        <source>LISTING_PRINTOUT_PERIOD</source>
+        <translation>Listing printout period</translation>
+    </message>
+    <message>
+        <source>MINOR_CONSTITUENTS_INFERENCE</source>
+        <translation>Minor constituents inference</translation>
+    </message>
+    <message>
+        <source>"turbulent_viscosity_(m2/s)"</source>
+        <translation>"turbulent viscosity (m2/s)"</translation>
+    </message>
+    <message>
+        <source>"linear"</source>
+        <translation>"linear"</translation>
+    </message>
+    <message>
+        <source>PREVIOUS_COMPUTATION_FILE_FORMAT</source>
+        <translation>Previous computation file format</translation>
+    </message>
+    <message>
+        <source>VALUES_OF_THE_TRACERS_AT_THE_SOURCES</source>
+        <translation>Values of the tracers at the sources</translation>
+    </message>
+    <message>
+        <source>BINARY_RESULTS_FILE</source>
+        <translation>Binary results file</translation>
+    </message>
+    <message>
+        <source>EXCHANGE_AREAS_DELWAQ_FILE</source>
+        <translation>Exchange areas DELWAQ file</translation>
+    </message>
+    <message>
+        <source>"COLEBROOK_WHITE"</source>
+        <translation>"colebrook-white"</translation>
+    </message>
+    <message>
+        <source>IMPLICITATION_FOR_DIFFUSION_OF_VELOCITY</source>
+        <translation>Implicitation for diffusion of velocity</translation>
+    </message>
+    <message>
+        <source>STOP_CRITERIA</source>
+        <translation>Stop criteria</translation>
+    </message>
+    <message>
+        <source>"velocity_proportional_to_square_root_of_depth"</source>
+        <translation>"velocity proportional to square root of depth"</translation>
+    </message>
+    <message>
+        <source>WEIRS_DATA_FILE</source>
+        <translation>Weirs data file</translation>
+    </message>
+    <message>
+        <source>IMPLICITATION_FOR_VELOCITY</source>
+        <translation>Implicitation for velocity</translation>
+    </message>
+    <message>
+        <source>"Real_tide_(methodology_before_2010)"</source>
+        <translation>"real tide (methodology before 2010)"</translation>
+    </message>
+    <message>
+        <source>"maximum_velocity"</source>
+        <translation>"maximum velocity"</translation>
+    </message>
+    <message>
+        <source>LISTING_PRINTOUT</source>
+        <translation>Listing printout</translation>
+    </message>
+    <message>
+        <source>MEAN_DEPTH_FOR_LINEARIZATION</source>
+        <translation>Mean depth for linearization</translation>
+    </message>
+    <message>
+        <source>"Mean_spring_tide"</source>
+        <translation>"mean spring tide"</translation>
+    </message>
+    <message>
+        <source>"kinetic_order_2"</source>
+        <translation>"kinetic order 2"</translation>
+    </message>
+    <message>
+        <source>"NIKURADSE"</source>
+        <translation>"Nikuradse"</translation>
+    </message>
+    <message>
+        <source>IMPLICITATION_COEFFICIENT_OF_TRACERS</source>
+        <translation>Implicitation coefficient of tracers</translation>
+    </message>
+    <message>
+        <source>"MERCATOR"</source>
+        <translation>"mercator"</translation>
+    </message>
+    <message>
+        <source>LAW_OF_FRICTION_ON_LATERAL_BOUNDARIES</source>
+        <translation>Law of friction on lateral boundaries</translation>
+    </message>
+    <message>
+        <source>"no_preconditioning"</source>
+        <translation>"no preconditioning"</translation>
+    </message>
+    <message>
+        <source>SCHEME_OPTION_FOR_ADVECTION_OF_VELOCITIES</source>
+        <translation>Scheme option for advection of velocities</translation>
+    </message>
+    <message>
+        <source>DESIRED_COURANT_NUMBER</source>
+        <translation>Desired courant number</translation>
+    </message>
+    <message>
+        <source>"no"</source>
+        <translation>"no"</translation>
+    </message>
+    <message>
+        <source>SUPG_OPTION</source>
+        <translation>SUPG option</translation>
+    </message>
+    <message>
+        <source>STOP_IF_A_STEADY_STATE_IS_REACHED</source>
+        <translation>Stop if a steady state is reached</translation>
+    </message>
+    <message>
+        <source>DEFAULT_PARALLEL_EXECUTABLE</source>
+        <translation>Default parallel executable</translation>
+    </message>
+    <message>
+        <source>DURATION_OF_RAIN_OR_EVAPORATION_IN_HOURS</source>
+        <translation>Duration of rain or evaporation in hours</translation>
+    </message>
+    <message>
+        <source>INFORMATION_ABOUT_SOLVER</source>
+        <translation>Information about solver</translation>
+    </message>
+    <message>
+        <source>BINARY_ATMOSPHERIC_DATA_FILE_FORMAT</source>
+        <translation>Binary atmospheric data file format</translation>
+    </message>
+    <message>
+        <source>AIR_PRESSURE</source>
+        <translation>Air pressure</translation>
+    </message>
+    <message>
+        <source>VERTICAL_FLUXES_DELWAQ_FILE</source>
+        <translation>Vertical fluxes DELWAQ file</translation>
+    </message>
+    <message>
+        <source>DENSITY_EFFECTS</source>
+        <translation>Density effects</translation>
+    </message>
+    <message>
+        <source>TURBULENCE_REGIME_FOR_SOLID_BOUNDARIES</source>
+        <translation>Turbulence regime for solid boundaries</translation>
+    </message>
+    <message>
+        <source>DELWAQ_STEERING_FILE</source>
+        <translation>DELWAQ steering file</translation>
+    </message>
+    <message>
+        <source>"Roe_scheme"</source>
+        <translation>"roe scheme"</translation>
+    </message>
+    <message>
+        <source>"Zokagoa_scheme_order_1"</source>
+        <translation>"Zokagoa scheme order 1"</translation>
+    </message>
+    <message>
+        <source>"air_pressure_(Pa)"</source>
+        <translation>"air pressure (Pa)"</translation>
+    </message>
+    <message>
+        <source>ASCII_ATMOSPHERIC_DATA_FILE</source>
+        <translation>ASCII atmospheric data file</translation>
+    </message>
+    <message>
+        <source>"brownian_movement"</source>
+        <translation>"brownian movement"</translation>
+    </message>
+    <message>
+        <source>OPTION_FOR_TIDAL_BOUNDARY_CONDITIONS</source>
+        <translation>Option for tidal boundary conditions</translation>
+    </message>
+    <message>
+        <source>"CONSERVATIVE_PSI_SCHEME"</source>
+        <translation>"conservative PSI-Scheme"</translation>
+    </message>
+    <message>
+        <source>ADVECTION_OF_TRACERS</source>
+        <translation>Advection of tracers</translation>
+    </message>
+    <message>
+        <source>DIFFUSION_OF_VELOCITY</source>
+        <translation>Diffusion of velocity</translation>
+    </message>
+    <message>
+        <source>"coupled"</source>
+        <translation>"coupled"</translation>
+    </message>
+    <message>
+        <source>COEFFICIENT_OF_WIND_INFLUENCE</source>
+        <translation>Coefficient of wind influence</translation>
+    </message>
+    <message>
+        <source>PRODUCTION_COEFFICIENT_FOR_SECONDARY_CURRENTS</source>
+        <translation>Production coefficient for secondary currents</translation>
+    </message>
+    <message>
+        <source>"1/h_div_(_h_nu_grad(U)"</source>
+        <translation>"1/h div ( h nu grad(U)"</translation>
+    </message>
+    <message>
+        <source>"SPHERE"</source>
+        <translation>"sphere"</translation>
+    </message>
+    <message>
+        <source>FRICTION_COEFFICIENT</source>
+        <translation>Friction coefficient</translation>
+    </message>
+    <message>
+        <source>COUPLING_PERIOD_FOR_TOMAWAC</source>
+        <translation>Coupling period for TOMAWAC</translation>
+    </message>
+    <message>
+        <source>"GIGARTINA_LEPTORHYNCHOS"</source>
+        <translation>"gigartina leptorhynchos"</translation>
+    </message>
+    <message>
+        <source>ORDINATES_OF_SOURCES</source>
+        <translation>Ordinates of sources</translation>
+    </message>
+    <message>
+        <source>NUMBER_OF_PRIVATE_ARRAYS</source>
+        <translation>Number of private arrays</translation>
+    </message>
+    <message>
+        <source>MAXIMUM_NUMBER_OF_FRICTION_DOMAINS</source>
+        <translation>Maximum number of friction domains</translation>
+    </message>
+    <message>
+        <source>"flowrate_along_x_axis_(m2/s)"</source>
+        <translation>"flowrate along X axis (m2/s)"</translation>
+    </message>
+    <message>
+        <source>BINARY_DATA_FILE_2_FORMAT</source>
+        <translation>Binary data file 2 format</translation>
+    </message>
+    <message>
+        <source>OPTION_FOR_THE_DIFFUSION_OF_VELOCITIES</source>
+        <translation>Option for the diffusion of velocities</translation>
+    </message>
+    <message>
+        <source>MASS_LUMPING_ON_TRACERS</source>
+        <translation>Mass-lumping on tracers</translation>
+    </message>
+    <message>
+        <source>"CHARACTERISTICS"</source>
+        <translation>"characteristics"</translation>
+    </message>
+    <message>
+        <source>NORTH</source>
+        <translation>North</translation>
+    </message>
+    <message>
+        <source>FLUXLINE_INPUT_FILE</source>
+        <translation>Fluxline input file</translation>
+    </message>
+    <message>
+        <source>"LEO_POSTMA_FOR_TIDAL_FLATS"</source>
+        <translation>"Leo Postma for tidal flats"</translation>
+    </message>
+    <message>
+        <source>RAIN_OR_EVAPORATION</source>
+        <translation>Rain or evaporation</translation>
+    </message>
+    <message>
+        <source>PARTITIONING_TOOL</source>
+        <translation>Partitioning tool</translation>
+    </message>
+    <message>
+        <source>"WGS84_NORTHERN_UTM"</source>
+        <translation>"WGS84 northern utm"</translation>
+    </message>
+    <message>
+        <source>FORMATTED_RESULTS_FILE</source>
+        <translation>Formatted results file</translation>
+    </message>
+    <message>
+        <source>"No_model"</source>
+        <translation>"no model"</translation>
+    </message>
+    <message>
+        <source>VERTICAL_STRUCTURES</source>
+        <translation>Vertical structures</translation>
+    </message>
+    <message>
+        <source>"WGS84_LONGITUDE/LATITUDE_IN_REAL_DEGREES"</source>
+        <translation>"WGS84 longitude/latitude in real degrees"</translation>
+    </message>
+    <message>
+        <source>OPTION_FOR_TSUNAMI_GENERATION</source>
+        <translation>Option for tsunami generation</translation>
+    </message>
+    <message>
+        <source>"Tchamen_scheme_order_1"</source>
+        <translation>"tchamen scheme order 1"</translation>
+    </message>
+    <message>
+        <source>VARIABLE_TIME_STEP</source>
+        <translation>Variable time-step</translation>
+    </message>
+    <message>
+        <source>PROPAGATION_OPTION</source>
+        <translation>Propagation option</translation>
+    </message>
+    <message>
+        <source>REFERENCE_FILE</source>
+        <translation>Reference file</translation>
+    </message>
+    <message>
+        <source>TIDAL_DATA_BASE</source>
+        <translation>Tidal data base</translation>
+    </message>
+    <message>
+        <source>INITIAL_ELEVATION</source>
+        <translation>Initial elevation</translation>
+    </message>
+    <message>
+        <source>STOCHASTIC_DIFFUSION_MODEL</source>
+        <translation>Stochastic diffusion model</translation>
+    </message>
+    <message>
+        <source>FORTRAN_FILE</source>
+        <translation>Fortran file</translation>
+    </message>
+    <message>
+        <source>"turbulent_viscosity_of_k_epsilon_model_(m2/s)"</source>
+        <translation>"turbulent viscosity of K-epsilon model (m2/s)"</translation>
+    </message>
+    <message>
+        <source>BREACH</source>
+        <translation>Breach</translation>
+    </message>
+    <message>
+        <source>TIME_STEP</source>
+        <translation>Time step</translation>
+    </message>
+    <message>
+        <source>"time_of_maximum_elevation"</source>
+        <translation>"time of maximum elevation"</translation>
+    </message>
+    <message>
+        <source>SALINITY_DELWAQ_FILE</source>
+        <translation>Salinity DELWAQ file</translation>
+    </message>
+    <message>
+        <source>"LAMBERT_3_SOUTH"</source>
+        <translation>"lambert 3 south"</translation>
+    </message>
+    <message>
+        <source>IMPLICITATION_FOR_DEPTH</source>
+        <translation>Implicitation for depth</translation>
+    </message>
+    <message>
+        <source>NUMBER_OF_LAGRANGIAN_DRIFTS</source>
+        <translation>Number of lagrangian drifts</translation>
+    </message>
+    <message>
+        <source>"quadratic"</source>
+        <translation>"quadratic"</translation>
+    </message>
+    <message>
+        <source>TEMPERATURE_FOR_DELWAQ</source>
+        <translation>Temperature for DELWAQ</translation>
+    </message>
+    <message>
+        <source>"NO_DEGRADATION"</source>
+        <translation>"no degradation"</translation>
+    </message>
+    <message>
+        <source>"LAMBERT_2_EXTENDED"</source>
+        <translation>"lambert 2 extended"</translation>
+    </message>
+    <message>
+        <source>NAMES_OF_DIFFERENTIATORS</source>
+        <translation>Names of differentiators</translation>
+    </message>
+    <message>
+        <source>SECONDARY_CURRENTS</source>
+        <translation>Secondary currents</translation>
+    </message>
+    <message>
+        <source>"LATITUDE_LONGITUDE"</source>
+        <translation>"latitude longitude"</translation>
+    </message>
+    <message>
+        <source>PRECONDITIONING</source>
+        <translation>Preconditioning</translation>
+    </message>
+    <message>
+        <source>FORMATTED_DATA_FILE_1</source>
+        <translation>Formatted data file 1</translation>
+    </message>
+    <message>
+        <source>ADVECTION_OF_H</source>
+        <translation>Advection of H</translation>
+    </message>
+    <message>
+        <source>DEBUGGER</source>
+        <translation>Debugger</translation>
+    </message>
+    <message>
+        <source>SOLVER_OPTION</source>
+        <translation>Solver option</translation>
+    </message>
+    <message>
+        <source>LATITUDE_OF_ORIGIN_POINT</source>
+        <translation>Latitude of origin point</translation>
+    </message>
+    <message>
+        <source>PRESCRIBED_TRACERS_VALUES</source>
+        <translation>Prescribed tracers values</translation>
+    </message>
+    <message>
+        <source>"1/h_div_(_h_nu_grad(T)"</source>
+        <translation>"1/h div ( h nu grad(t)"</translation>
+    </message>
+    <message>
+        <source>LIST_OF_POINTS</source>
+        <translation>List of points</translation>
+    </message>
+    <message>
+        <source>"nodal"</source>
+        <translation>"nodal"</translation>
+    </message>
+    <message>
+        <source>CORIOLIS_COEFFICIENT</source>
+        <translation>Coriolis coefficient</translation>
+    </message>
+    <message>
+        <source>"classical_EBE"</source>
+        <translation>"classical ebe"</translation>
+    </message>
+    <message>
+        <source>TURBULENCE_MODEL</source>
+        <translation>Turbulence model</translation>
+    </message>
+    <message>
+        <source>NUMBER_OF_FIRST_TIME_STEP_FOR_LISTING_PRINTOUTS</source>
+        <translation>Number of first time step for listing printouts</translation>
+    </message>
+    <message>
+        <source>PRINTING_CUMULATED_FLOWRATES</source>
+        <translation>Printing cumulated flowrates</translation>
+    </message>
+    <message>
+        <source>OPTION_FOR_THE_TREATMENT_OF_TIDAL_FLATS</source>
+        <translation>Option for the treatment of tidal flats</translation>
+    </message>
+    <message>
+        <source>"Thompson_method_based_on_characteristics"</source>
+        <translation>"thompson method based on characteristics"</translation>
+    </message>
+    <message>
+        <source>CONTROL_SECTIONS</source>
+        <translation>Control sections</translation>
+    </message>
+    <message>
+        <source>SOLVER_FOR_DIFFUSION_OF_TRACERS</source>
+        <translation>Solver for diffusion of tracers</translation>
+    </message>
+    <message>
+        <source>OPTION_FOR_INITIAL_ABSTRACTION_RATIO</source>
+        <translation>Option for initial abstraction ratio</translation>
+    </message>
+    <message>
+        <source>NUMBER_OF_SUB_STEPS_OF_DISTRIBUTIVE_SCHEMES</source>
+        <translation>Number of sub-steps of distributive schemes</translation>
+    </message>
+    <message>
+        <source>UPWIND_COEFFICIENTS</source>
+        <translation>Upwind coefficients</translation>
+    </message>
+    <message>
+        <source>ALGAE_TYPE</source>
+        <translation>Algae type</translation>
+    </message>
+    <message>
+        <source>RAIN_OR_EVAPORATION_IN_MM_PER_DAY</source>
+        <translation>Rain or evaporation in mm per day</translation>
+    </message>
+    <message>
+        <source>PRECONDITIONING_FOR_K_EPSILON_MODEL</source>
+        <translation>Preconditioning for K-Epsilon model</translation>
+    </message>
+    <message>
+        <source>"FRANCAIS"</source>
+        <translation>"francais"</translation>
+    </message>
+    <message>
+        <source>"previous"</source>
+        <translation>"previous"</translation>
+    </message>
+    <message>
+        <source>MANNING_DEFAULT_VALUE_FOR_COLEBROOK_WHITE_LAW</source>
+        <translation>Manning default value for colebrook-white law</translation>
+    </message>
+    <message>
+        <source>FORMATTED_DATA_FILE_2</source>
+        <translation>Formatted data file 2</translation>
+    </message>
+    <message>
+        <source>"Computed_with_c,u,v"</source>
+        <translation>"computed with C,U,V"</translation>
+    </message>
+    <message>
+        <source>C_U_PRECONDITIONING</source>
+        <translation>C-U preconditioning</translation>
+    </message>
+    <message>
+        <source>"LOG_LAW"</source>
+        <translation>"log law"</translation>
+    </message>
+    <message>
+        <source>"scalar_flowrate_of_fluid_(m2/s)"</source>
+        <translation>"scalar flowrate of fluid (m2/s)"</translation>
+    </message>
+    <message>
+        <source>SCHEME_FOR_ADVECTION_OF_VELOCITIES</source>
+        <translation>Scheme for advection of velocities</translation>
+    </message>
+    <message>
+        <source>"Real_tide_(recommended_methodology)"</source>
+        <translation>"real tide (recommended methodology)"</translation>
+    </message>
+    <message>
+        <source>"CARTESIAN,_NOT_GEOREFERENCED"</source>
+        <translation>"cartesian, not georeferenced"</translation>
+    </message>
+    <message>
+        <source>VARIABLES_FOR_GRAPHIC_PRINTOUTS</source>
+        <translation>Variables for graphic printouts</translation>
+    </message>
+    <message>
+        <source>DEPTH_IN_FRICTION_TERMS</source>
+        <translation>Depth in friction terms</translation>
+    </message>
+    <message>
+        <source>"LAMBERT"</source>
+        <translation>"lambert"</translation>
+    </message>
+    <message>
+        <source>"GENERAL"</source>
+        <translation>"general"</translation>
+    </message>
+    <message>
+        <source>FOURIER_ANALYSIS_PERIODS</source>
+        <translation>Fourier analysis periods</translation>
+    </message>
+    <message>
+        <source>EQUATIONS</source>
+        <translation>Equations</translation>
+    </message>
+    <message>
+        <source>MAXIMUM_NUMBER_OF_ITERATIONS_FOR_IDENTIFICATION</source>
+        <translation>Maximum number of iterations for identification</translation>
+    </message>
+    <message>
+        <source>"classical"</source>
+        <translation>"classical"</translation>
+    </message>
+    <message>
+        <source>SPEED_AND_DIRECTION_OF_WIND</source>
+        <translation>Speed and direction of wind</translation>
+    </message>
+    <message>
+        <source>"Computed_with_h,u,v"</source>
+        <translation>"computed with H,U,V"</translation>
+    </message>
+    <message>
+        <source>TYPE_OF_SOURCES</source>
+        <translation>Type of sources</translation>
+    </message>
+    <message>
+        <source>TITLE</source>
+        <translation>Title</translation>
+    </message>
+    <message>
+        <source>NUMBER_OF_DIFFERENTIATORS</source>
+        <translation>Number of differentiators</translation>
+    </message>
+    <message>
+        <source>MASS_LUMPING_ON_H</source>
+        <translation>Mass-lumping on H</translation>
+    </message>
+    <message>
+        <source>NUMBER_OF_SUB_ITERATIONS_FOR_NON_LINEARITIES</source>
+        <translation>Number of sub-iterations for non-linearities</translation>
+    </message>
+    <message>
+        <source>"free_surface_elevation_(m)"</source>
+        <translation>"free surface elevation (m)"</translation>
+    </message>
+    <message>
+        <source>LIQUID_BOUNDARIES_FILE</source>
+        <translation>Liquid boundaries file</translation>
+    </message>
+    <message>
+        <source>VELOCITIES_OF_THE_SOURCES_ALONG_X</source>
+        <translation>Velocities of the sources along X</translation>
+    </message>
+    <message>
+        <source>VELOCITIES_OF_THE_SOURCES_ALONG_Y</source>
+        <translation>Velocities of the sources along Y</translation>
+    </message>
+    <message>
+        <source>"direct"</source>
+        <translation>"direct"</translation>
+    </message>
+    <message>
+        <source>BOTTOM_SMOOTHINGS</source>
+        <translation>Bottom smoothings</translation>
+    </message>
+    <message>
+        <source>"conjugate_gradient_on_normal_equation"</source>
+        <translation>"conjugate gradient on normal equation"</translation>
+    </message>
+    <message>
+        <source>SALINITY_FOR_DELWAQ</source>
+        <translation>Salinity for DELWAQ</translation>
+    </message>
+    <message>
+        <source>SCHEME_OPTION_FOR_ADVECTION_OF_TRACERS</source>
+        <translation>Scheme option for advection of tracers</translation>
+    </message>
+    <message>
+        <source>OPTION_FOR_CHARACTERISTICS</source>
+        <translation>Option for characteristics</translation>
+    </message>
+    <message>
+        <source>"Priority_to_fluxes"</source>
+        <translation>"priority to fluxes"</translation>
+    </message>
+    <message>
+        <source>MAXIMUM_NUMBER_OF_TRACERS</source>
+        <translation>Maximum number of tracers</translation>
+    </message>
+    <message>
+        <source>"kinetic_order_1"</source>
+        <translation>"kinetic order 1"</translation>
+    </message>
+    <message>
+        <source>"explicit"</source>
+        <translation>"explicit"</translation>
+    </message>
+    <message>
+        <source>"smooth"</source>
+        <translation>"smooth"</translation>
+    </message>
+    <message>
+        <source>ZERO</source>
+        <translation>Zero</translation>
+    </message>
+    <message>
+        <source>OPTION_FOR_WIND</source>
+        <translation>Option for wind</translation>
+    </message>
+    <message>
+        <source>"Astronomical_neap_tide"</source>
+        <translation>"astronomical neap tide"</translation>
+    </message>
+    <message>
+        <source>"NO_ADVECTION"</source>
+        <translation>"no advection"</translation>
+    </message>
+    <message>
+        <source>"EXPLICIT_+_SUPG"</source>
+        <translation>"explicit + SUPG"</translation>
+    </message>
+    <message>
+        <source>BINARY_DATA_FILE_1</source>
+        <translation>Binary data file 1</translation>
+    </message>
+    <message>
+        <source>"conjugate_gradient_squared_stabilised_(cgstab)"</source>
+        <translation>"conjugate gradient squared stabilised (CGSTAB)"</translation>
+    </message>
+    <message>
+        <source>"K_EPSILON_MODEL"</source>
+        <translation>"K-Epsilon model"</translation>
+    </message>
+    <message>
+        <source>"gradient_1,_etc."</source>
+        <translation>"gradient 1, etc."</translation>
+    </message>
+    <message>
+        <source>"crout"</source>
+        <translation>"Crout"</translation>
+    </message>
+    <message>
+        <source>COUPLING_WITH</source>
+        <translation>Coupling with</translation>
+    </message>
+    <message>
+        <source>PRESCRIBED_VELOCITIES</source>
+        <translation>Prescribed velocities</translation>
+    </message>
+    <message>
+        <source>VELOCITY_DELWAQ_FILE</source>
+        <translation>Velocity DELWAQ file</translation>
+    </message>
+    <message>
+        <source>NAMES_OF_TRACERS</source>
+        <translation>Names of tracers</translation>
+    </message>
+    <message>
+        <source>COMPATIBLE_COMPUTATION_OF_FLUXES</source>
+        <translation>Compatible computation of fluxes</translation>
+    </message>
+    <message>
+        <source>NUMBER_OF_TRACERS</source>
+        <translation>Number of tracers</translation>
+    </message>
+    <message>
+        <source>DURATION</source>
+        <translation>Duration</translation>
+    </message>
+    <message>
+        <source>ACCURACY_OF_SPALART_ALLMARAS</source>
+        <translation>Accuracy of spalart-allmaras</translation>
+    </message>
+    <message>
+        <source>"3_points"</source>
+        <translation>"3 points"</translation>
+    </message>
+    <message>
+        <source>"gmres"</source>
+        <translation>"GMRES"</translation>
+    </message>
+    <message>
+        <source>COUPLING_DIRECTORY</source>
+        <translation>Coupling directory</translation>
+    </message>
+    <message>
+        <source>"conjugate_gradient_on_a_normal_equation"</source>
+        <translation>"conjugate gradient on a normal equation"</translation>
     </message>
     <message>
-        <source>SCHEME_OPTION_FOR_ADVECTION_OF_VELOCITIES</source>
-        <translation>Scheme Option For Advection Of Velocities</translation>
+        <source>DEFAULT_EXECUTABLE</source>
+        <translation>Default executable</translation>
     </message>
     <message>
-        <source>FREE_SURFACE_GRADIENT_COMPATIBILITY</source>
-        <translation>Free Surface Gradient Compatibility</translation>
+        <source>GEOMETRY_FILE</source>
+        <translation>Geometry file</translation>
     </message>
     <message>
-        <source>NUMBER_OF_SUB_ITERATIONS_FOR_NON_LINEARITIES</source>
-        <translation>Number Of Sub-iterations For Non-linearities</translation>
+        <source>NUMBER_OF_FIRST_TIME_STEP_FOR_GRAPHIC_PRINTOUTS</source>
+        <translation>Number of first time step for graphic printouts</translation>
     </message>
     <message>
-        <source>TREATMENT_OF_FLUXES_AT_THE_BOUNDARIES</source>
-        <translation>Treatment Of Fluxes At The Boundaries</translation>
+        <source>NEWMARK_TIME_INTEGRATION_COEFFICIENT</source>
+        <translation>Newmark time integration coefficient</translation>
     </message>
     <message>
-        <source>DIFFUSION_OF_VELOCITY</source>
-        <translation>Diffusion Of Velocity</translation>
+        <source>OIL_SPILL_STEERING_FILE</source>
+        <translation>Oil spill steering file</translation>
     </message>
     <message>
-        <source>OPTION_FOR_THE_DIFFUSION_OF_VELOCITIES</source>
-        <translation>Option For The Diffusion Of Velocities</translation>
+        <source>MAXIMUM_NUMBER_OF_BOUNDARIES</source>
+        <translation>Maximum number of boundaries</translation>
     </message>
     <message>
-        <source>IMPLICITATION_FOR_DIFFUSION_OF_VELOCITY</source>
-        <translation>Implicitation For Diffusion Of Velocity</translation>
+        <source>DIFFUSIVITY_DELWAQ_FILE</source>
+        <translation>Diffusivity DELWAQ file</translation>
     </message>
     <message>
-        <source>MATRIX_STORAGE</source>
-        <translation>Matrix Storage</translation>
+        <source>INITIAL_GUESS_FOR_H</source>
+        <translation>Initial guess for H</translation>
     </message>
     <message>
-        <source>MATRIX_VECTOR_PRODUCT</source>
-        <translation>Matrix-vector Product</translation>
+        <source>"WGS84_SOUTHERN_UTM"</source>
+        <translation>"WGS84 southern utm"</translation>
     </message>
     <message>
-        <source>NEWMARK_TIME_INTEGRATION_COEFFICIENT</source>
-        <translation>Newmark Time Integration Coefficient</translation>
+        <source>MAXIMUM_NUMBER_OF_ITERATIONS_FOR_K_AND_EPSILON</source>
+        <translation>Maximum number of iterations for K and Epsilon</translation>
     </message>
     <message>
-        <source>ZERO</source>
-        <translation>Zero</translation>
+        <source>"flowrate_along_y_axis_(m2/s)"</source>
+        <translation>"flowrate along Y axis (m2/s)"</translation>
     </message>
     <message>
-        <source>TIDAL_FLATS</source>
-        <translation>Tidal Flats</translation>
+        <source>NUMBER_OF_WEIRS</source>
+        <translation>Number of weirs</translation>
     </message>
     <message>
-        <source>OPTION_FOR_THE_TREATMENT_OF_TIDAL_FLATS</source>
-        <translation>Option For The Treatment Of Tidal Flats</translation>
+        <source>"tracer_1,_etc."</source>
+        <translation>"tracer 1, etc."</translation>
     </message>
     <message>
-        <source>TREATMENT_OF_NEGATIVE_DEPTHS</source>
-        <translation>Treatment Of Negative Depths</translation>
+        <source>"list_of_tests"</source>
+        <translation>"list of tests"</translation>
     </message>
     <message>
-        <source>THRESHOLD_FOR_NEGATIVE_DEPTHS</source>
-        <translation>Threshold For Negative Depths</translation>
+        <source>"friction_coefficient"</source>
+        <translation>"friction coefficient"</translation>
     </message>
     <message>
-        <source>THRESHOLD_DEPTH_FOR_RECEDING_PROCEDURE</source>
-        <translation>Threshold Depth For Receding Procedure</translation>
+        <source>WIND</source>
+        <translation>Wind</translation>
     </message>
     <message>
-        <source>H_CLIPPING</source>
-        <translation>H Clipping</translation>
+        <source>EXCHANGES_BETWEEN_NODES_DELWAQ_FILE</source>
+        <translation>Exchanges between nodes DELWAQ file</translation>
     </message>
     <message>
-        <source>MINIMUM_VALUE_OF_DEPTH</source>
-        <translation>Minimum Value Of Depth</translation>
+        <source>"predictor_corrector"</source>
+        <translation>"predictor-corrector"</translation>
     </message>
     <message>
-        <source>NUMBER_OF_TRACERS</source>
-        <translation>Number Of Tracers</translation>
+        <source>SOLVER_OPTION_FOR_TRACERS_DIFFUSION</source>
+        <translation>Solver option for tracers diffusion</translation>
     </message>
     <message>
-        <source>NAMES_OF_TRACERS</source>
-        <translation>Names Of Tracers</translation>
+        <source>"Q(Z)_not_programmed"</source>
+        <translation>"Q(Z) not programmed"</translation>
     </message>
     <message>
         <source>INITIAL_VALUES_OF_TRACERS</source>
-        <translation>Initial Values Of Tracers</translation>
+        <translation>Initial values of tracers</translation>
     </message>
     <message>
-        <source>DENSITY_EFFECTS</source>
-        <translation>Density Effects</translation>
+        <source>LONGITUDE_OF_ORIGIN_POINT</source>
+        <translation>Longitude of origin point</translation>
     </message>
     <message>
-        <source>MEAN_TEMPERATURE</source>
-        <translation>Mean Temperature</translation>
+        <source>MAXIMUM_NUMBER_OF_ITERATIONS_FOR_SOLVER</source>
+        <translation>Maximum number of iterations for solver</translation>
     </message>
     <message>
-        <source>PRESCRIBED_TRACERS_VALUES</source>
-        <translation>Prescribed Tracers Values</translation>
+        <source>CORIOLIS</source>
+        <translation>Coriolis</translation>
     </message>
     <message>
-        <source>SOLVER_FOR_DIFFUSION_OF_TRACERS</source>
-        <translation>Solver For Diffusion Of Tracers</translation>
+        <source>"diagonal"</source>
+        <translation>"diagonal"</translation>
     </message>
     <message>
-        <source>SOLVER_OPTION_FOR_TRACERS_DIFFUSION</source>
-        <translation>Solver Option For Tracers Diffusion</translation>
+        <source>ADVECTION</source>
+        <translation>Advection</translation>
     </message>
     <message>
-        <source>PRECONDITIONING_FOR_DIFFUSION_OF_TRACERS</source>
-        <translation>Preconditioning For Diffusion Of Tracers</translation>
+        <source>"Wave_equation"</source>
+        <translation>"wave equation"</translation>
     </message>
     <message>
-        <source>ACCURACY_FOR_DIFFUSION_OF_TRACERS</source>
-        <translation>Accuracy For Diffusion Of Tracers</translation>
+        <source>"minimum_error"</source>
+        <translation>"minimum error"</translation>
     </message>
     <message>
-        <source>MAXIMUM_NUMBER_OF_ITERATIONS_FOR_DIFFUSION_OF_TRACERS</source>
-        <translation>Maximum Number Of Iterations For Diffusion Of Tracers</translation>
+        <source>ABSCISSAE_OF_SOURCES</source>
+        <translation>Abscissae of sources</translation>
     </message>
     <message>
-        <source>VALUES_OF_THE_TRACERS_AT_THE_SOURCES</source>
-        <translation>Values Of The Tracers At The Sources</translation>
+        <source>VECTOR_LENGTH</source>
+        <translation>Vector length</translation>
     </message>
     <message>
-        <source>VALUES_OF_TRACERS_IN_THE_RAIN</source>
-        <translation>Values Of Tracers In The Rain</translation>
+        <source>GRAPHIC_PRINTOUT_PERIOD</source>
+        <translation>Graphic printout period</translation>
     </message>
     <message>
-        <source>ADVECTION_OF_TRACERS</source>
-        <translation>Advection Of Tracers</translation>
+        <source>"maximum_elevation"</source>
+        <translation>"maximum elevation"</translation>
     </message>
     <message>
-        <source>IMPLICITATION_COEFFICIENT_OF_TRACERS</source>
-        <translation>Implicitation Coefficient Of Tracers</translation>
+        <source>WATER_DISCHARGE_OF_SOURCES</source>
+        <translation>Water discharge of sources</translation>
     </message>
     <message>
-        <source>DIFFUSION_OF_TRACERS</source>
-        <translation>Diffusion Of Tracers</translation>
+        <source>ADVECTION_OF_U_AND_V</source>
+        <translation>Advection of U and V</translation>
     </message>
     <message>
-        <source>COEFFICIENT_FOR_DIFFUSION_OF_TRACERS</source>
-        <translation>Coefficient For Diffusion Of Tracers</translation>
+        <source>ANTECEDENT_MOISTURE_CONDITIONS</source>
+        <translation>Antecedent moisture conditions</translation>
     </message>
     <message>
-        <source>OPTION_FOR_THE_DIFFUSION_OF_TRACERS</source>
-        <translation>Option For The Diffusion Of Tracers</translation>
+        <source>"gmres_(see_option_for_the_solver_for_k_epsilon_model)"</source>
+        <translation>"GMRES (see option for the solver for K-Epsilon model)"</translation>
     </message>
     <message>
-        <source>SCHEME_FOR_ADVECTION_OF_TRACERS</source>
-        <translation>Scheme For Advection Of Tracers</translation>
+        <source>INFORMATION_ABOUT_SPALART_ALLMARAS_MODEL</source>
+        <translation>Information about spalart-allmaras model</translation>
     </message>
     <message>
-        <source>SCHEME_OPTION_FOR_ADVECTION_OF_TRACERS</source>
-        <translation>Scheme Option For Advection Of Tracers</translation>
+        <source>VELOCITY_FOR_DELWAQ</source>
+        <translation>Velocity for DELWAQ</translation>
     </message>
     <message>
-        <source>MASS_LUMPING_ON_TRACERS</source>
-        <translation>Mass-lumping On Tracers</translation>
+        <source>ROUGHNESS_COEFFICIENT_OF_BOUNDARIES</source>
+        <translation>Roughness coefficient of boundaries</translation>
     </message>
     <message>
-        <source>LAW_OF_TRACERS_DEGRADATION</source>
-        <translation>Law Of Tracers Degradation</translation>
+        <source>INITIAL_TIME_SET_TO_ZERO</source>
+        <translation>Initial time set to zero</translation>
     </message>
     <message>
-        <source>COEFFICIENT_1_FOR_LAW_OF_TRACERS_DEGRADATION</source>
-        <translation>Coefficient 1 For Law Of Tracers Degradation</translation>
+        <source>"supplementary_variable_R"</source>
+        <translation>"supplementary variable R"</translation>
     </message>
     <message>
-        <source>NUMBER_OF_DROGUES</source>
-        <translation>Number Of Drogues</translation>
+        <source>"HLLC_scheme_order_1"</source>
+        <translation>"HLLC scheme order 1"</translation>
     </message>
     <message>
-        <source>PRINTOUT_PERIOD_FOR_DROGUES</source>
-        <translation>Printout Period For Drogues</translation>
+        <source>INITIAL_GUESS_FOR_U</source>
+        <translation>Initial guess for U</translation>
     </message>
     <message>
-        <source>DROGUES_FILE</source>
-        <translation>Drogues File</translation>
+        <source>SCHEME_FOR_ADVECTION_OF_K_EPSILON</source>
+        <translation>Scheme for advection of K-epsilon</translation>
     </message>
     <message>
-        <source>ALGAE_TRANSPORT_MODEL</source>
-        <translation>Algae Transport Model</translation>
+        <source>"EQUATIONS_SOLVED_EVERYWHERE_WITH_CORRECTION_ON_TIDAL_FLATS"</source>
+        <translation>"equations solved everywhere with correction on tidal flats"</translation>
     </message>
     <message>
-        <source>ALGAE_TYPE</source>
-        <translation>Algae Type</translation>
+        <source>TEMPERATURE_DELWAQ_FILE</source>
+        <translation>Temperature DELWAQ file</translation>
     </message>
     <message>
-        <source>DIAMETER_OF_ALGAE</source>
-        <translation>Diameter Of Algae</translation>
+        <source>"conjugate_residual"</source>
+        <translation>"conjugate residual"</translation>
     </message>
     <message>
-        <source>DENSITY_OF_ALGAE</source>
-        <translation>Density Of Algae</translation>
+        <source>SOURCES_FILE</source>
+        <translation>Sources file</translation>
     </message>
     <message>
-        <source>THICKNESS_OF_ALGAE</source>
-        <translation>Thickness Of Algae</translation>
+        <source>CONTROL_OF_LIMITS</source>
+        <translation>Control of limits</translation>
     </message>
     <message>
-        <source>OIL_SPILL_MODEL</source>
-        <translation>Oil Spill Model</translation>
+        <source>NUMBER_OF_GAUSS_POINTS_FOR_WEAK_CHARACTERISTICS</source>
+        <translation>Number of Gauss points for weak characteristics</translation>
     </message>
     <message>
-        <source>OIL_SPILL_STEERING_FILE</source>
-        <translation>Oil Spill Steering File</translation>
+        <source>"wind_along_x_axis_(m/s)"</source>
+        <translation>"wind along X axis (m/s)"</translation>
     </message>
     <message>
-        <source>STOCHASTIC_DIFFUSION_MODEL</source>
-        <translation>Stochastic Diffusion Model</translation>
+        <source>"turbulent_kinetic_energy_in_k_epsilon_model_(J/kg)"</source>
+        <translation>"turbulent kinetic energy in K-Epsilon model (W/kg)"</translation>
     </message>
     <message>
-        <source>NUMBER_OF_LAGRANGIAN_DRIFTS</source>
-        <translation>Number Of Lagrangian Drifts</translation>
+        <source>"Z(Q)"</source>
+        <translation>"Z(Q)"</translation>
     </message>
     <message>
-        <source>NUMBER_OF_WEIRS</source>
-        <translation>Number Of Weirs</translation>
+        <source>TYPE_OF_WEIRS</source>
+        <translation>Type of weirs</translation>
     </message>
     <message>
-        <source>WEIRS_DATA_FILE</source>
-        <translation>Weirs Data File</translation>
+        <source>THRESHOLD_FOR_NEGATIVE_DEPTHS</source>
+        <translation>Threshold for negative depths</translation>
     </message>
     <message>
-        <source>TYPE_OF_WEIRS</source>
-        <translation>Type Of Weirs</translation>
+        <source>VELOCITY_PROFILES</source>
+        <translation>Velocity profiles</translation>
     </message>
     <message>
-        <source>NUMBER_OF_CULVERTS</source>
-        <translation>Number Of Culverts</translation>
+        <source>"ERIA_SCHEME"</source>
+        <translation>"eria scheme"</translation>
     </message>
     <message>
-        <source>CULVERT_DATA_FILE</source>
-        <translation>Culvert Data File</translation>
+        <source>LANGUAGE</source>
+        <translation>Language</translation>
     </message>
     <message>
-        <source>NUMBER_OF_TUBES</source>
-        <translation>Number Of Tubes</translation>
+        <source>STAGE_DISCHARGE_CURVES</source>
+        <translation>Stage-discharge curves</translation>
     </message>
     <message>
-        <source>TUBES_DATA_FILE</source>
-        <translation>Tubes Data File</translation>
+        <source>COST_FUNCTION</source>
+        <translation>Cost function</translation>
     </message>
     <message>
-        <source>BREACH</source>
-        <translation>Breach</translation>
+        <source>ORIGIN_COORDINATES</source>
+        <translation>Origin coordinates</translation>
     </message>
     <message>
-        <source>BREACHES_DATA_FILE</source>
-        <translation>Breaches Data File</translation>
+        <source>RECORD_NUMBER_IN_WAVE_FILE</source>
+        <translation>Record number in wave file</translation>
     </message>
     <message>
-        <source>TIDAL_DATA_BASE</source>
-        <translation>Tidal Data Base</translation>
+        <source>TYPE_OF_ADVECTION</source>
+        <translation>Type of advection</translation>
     </message>
     <message>
-        <source>TIDAL_MODEL_FILE</source>
-        <translation>Tidal Model File</translation>
+        <source>WIND_VELOCITY_ALONG_X</source>
+        <translation>Wind velocity along X</translation>
     </message>
     <message>
-        <source>ASCII_DATABASE_FOR_TIDE</source>
-        <translation>Ascii Database For Tide</translation>
+        <source>WIND_VELOCITY_ALONG_Y</source>
+        <translation>Wind velocity along Y</translation>
     </message>
     <message>
-        <source>BINARY_DATABASE_1_FOR_TIDE</source>
-        <translation>Binary Database 1 For Tide</translation>
+        <source>MAXIMUM_NUMBER_OF_SOURCES</source>
+        <translation>Maximum number of sources</translation>
     </message>
     <message>
-        <source>BINARY_DATABASE_2_FOR_TIDE</source>
-        <translation>Binary Database 2 For Tide</translation>
+        <source>DISCRETIZATIONS_IN_SPACE</source>
+        <translation>Discretizations in space</translation>
     </message>
     <message>
-        <source>MINOR_CONSTITUENTS_INFERENCE</source>
-        <translation>Minor Constituents Inference</translation>
+        <source>"F(T90)_LAW"</source>
+        <translation>"F(T90) law"</translation>
     </message>
     <message>
-        <source>HARMONIC_CONSTANTS_FILE</source>
-        <translation>Harmonic Constants File</translation>
+        <source>"MERCATOR_FOR_TELEMAC"</source>
+        <translation>"mercator for telemac"</translation>
     </message>
     <message>
-        <source>GEOGRAPHIC_SYSTEM</source>
-        <translation>Geographic System</translation>
+        <source>SISYPHE_STEERING_FILE</source>
+        <translation>Sisyphe steering file</translation>
     </message>
     <message>
-        <source>ZONE_NUMBER_IN_GEOGRAPHIC_SYSTEM</source>
-        <translation>Zone Number In Geographic System</translation>
+        <source>ADVECTION_OF_K_AND_EPSILON</source>
+        <translation>Advection of K and epsilon</translation>
     </message>
     <message>
-        <source>COEFFICIENT_TO_CALIBRATE_SEA_LEVEL</source>
-        <translation>Coefficient To Calibrate Sea Level</translation>
+        <source>NUMBER_OF_CULVERTS</source>
+        <translation>Number of culverts</translation>
     </message>
     <message>
-        <source>COEFFICIENT_TO_CALIBRATE_TIDAL_RANGE</source>
-        <translation>Coefficient To Calibrate Tidal Range</translation>
+        <source>RELEASE</source>
+        <translation>Release</translation>
     </message>
     <message>
-        <source>COEFFICIENT_TO_CALIBRATE_TIDAL_VELOCITIES</source>
-        <translation>Coefficient To Calibrate Tidal Velocities</translation>
+        <source>PRECONDITIONING_FOR_DIFFUSION_OF_TRACERS</source>
+        <translation>Preconditioning for diffusion of tracers</translation>
     </message>
     <message>
-        <source>TIDE_GENERATING_FORCE</source>
-        <translation>Tide Generating Force</translation>
+        <source>VALIDATION</source>
+        <translation>Validation</translation>
     </message>
     <message>
-        <source>OPTION_FOR_TIDAL_BOUNDARY_CONDITIONS</source>
-        <translation>Option For Tidal Boundary Conditions</translation>
+        <source>"EXPLICIT_LEO_POSTMA"</source>
+        <translation>"explicit Leo Postma"</translation>
     </message>
     <message>
-        <source>COUPLING_WITH</source>
-        <translation>Coupling With</translation>
+        <source>"CONSTANT_VISCOSITY"</source>
+        <translation>"constant viscosity"</translation>
     </message>
     <message>
-        <source>NAMES_OF_CLANDESTINE_VARIABLES</source>
-        <translation>Names Of Clandestine Variables</translation>
+        <source>"LAMBERT_2_CENTER"</source>
+        <translation>"lambert 2 center"</translation>
     </message>
     <message>
-        <source>COUPLING_DIRECTORY</source>
-        <translation>Coupling Directory</translation>
+        <source>"CHEZY"</source>
+        <translation>"CHEZY"</translation>
     </message>
     <message>
-        <source>DELWAQ_PRINTOUT_PERIOD</source>
-        <translation>Delwaq Printout Period</translation>
+        <source>"6_points"</source>
+        <translation>"6 points"</translation>
     </message>
     <message>
-        <source>VOLUMES_DELWAQ_FILE</source>
-        <translation>Volumes Delwaq File</translation>
+        <source>TREATMENT_OF_THE_LINEAR_SYSTEM</source>
+        <translation>Treatment of the linear system</translation>
     </message>
     <message>
-        <source>EXCHANGE_AREAS_DELWAQ_FILE</source>
-        <translation>Exchange Areas Delwaq File</translation>
+        <source>VARIABLES_TO_BE_PRINTED</source>
+        <translation>Variables to be printed</translation>
     </message>
     <message>
-        <source>VERTICAL_FLUXES_DELWAQ_FILE</source>
-        <translation>Vertical Fluxes Delwaq File</translation>
+        <source>"HAALAND"</source>
+        <translation>"HAALAND"</translation>
     </message>
     <message>
-        <source>SALINITY_DELWAQ_FILE</source>
-        <translation>Salinity Delwaq File</translation>
+        <source>"water_depth_(m)"</source>
+        <translation>"water depth (m)"</translation>
     </message>
     <message>
-        <source>BOTTOM_SURFACES_DELWAQ_FILE</source>
-        <translation>Bottom Surfaces Delwaq File</translation>
+        <source>DENSITY_OF_ALGAE</source>
+        <translation>Density of algae</translation>
     </message>
     <message>
-        <source>EXCHANGES_BETWEEN_NODES_DELWAQ_FILE</source>
-        <translation>Exchanges Between Nodes Delwaq File</translation>
+        <source>NON_SUBMERGED_VEGETATION_FRICTION</source>
+        <translation>Non-submerged vegetation friction</translation>
     </message>
     <message>
-        <source>NODES_DISTANCES_DELWAQ_FILE</source>
-        <translation>Nodes Distances Delwaq File</translation>
+        <source>TIDAL_FLATS</source>
+        <translation>Tidal flats</translation>
     </message>
     <message>
-        <source>TEMPERATURE_DELWAQ_FILE</source>
-        <translation>Temperature Delwaq File</translation>
+        <source>"u_and_v_given_in_the_conlim_file"</source>
+        <translation>"U and V given in the conlim file"</translation>
     </message>
     <message>
-        <source>VELOCITY_DELWAQ_FILE</source>
-        <translation>Velocity Delwaq File</translation>
+        <source>"div(_nu_grad(T)_)"</source>
+        <translation>"div( nu grad(t) )"</translation>
     </message>
     <message>
-        <source>DIFFUSIVITY_DELWAQ_FILE</source>
-        <translation>Diffusivity Delwaq File</translation>
+        <source>"constant_in_time_and_space"</source>
+        <translation>"constant in time and space"</translation>
     </message>
     <message>
-        <source>DELWAQ_STEERING_FILE</source>
-        <translation>Delwaq Steering File</translation>
+        <source>HARMONIC_CONSTANTS_FILE</source>
+        <translation>Harmonic constants file</translation>
     </message>
     <message>
-        <source>SALINITY_FOR_DELWAQ</source>
-        <translation>Salinity For Delwaq</translation>
+        <source>"IRIDAEA_FLACCIDA_(CLOSE_TO_ULVA)"</source>
+        <translation>"iridaea flaccida (close to ulva)"</translation>
     </message>
     <message>
-        <source>TEMPERATURE_FOR_DELWAQ</source>
-        <translation>Temperature For Delwaq</translation>
+        <source>BINARY_DATA_FILE_1_FORMAT</source>
+        <translation>Binary data file 1 format</translation>
     </message>
     <message>
-        <source>VELOCITY_FOR_DELWAQ</source>
-        <translation>Velocity For Delwaq</translation>
+        <source>"quasi_bubble"</source>
+        <translation>"quasi-bubble"</translation>
     </message>
     <message>
-        <source>DIFFUSIVITY_FOR_DELWAQ</source>
-        <translation>Diffusivity For Delwaq</translation>
+        <source>PRESCRIBED_ELEVATIONS</source>
+        <translation>Prescribed elevations</translation>
     </message>
     <message>
-        <source>SISYPHE_STEERING_FILE</source>
-        <translation>Sisyphe Steering File</translation>
+        <source>LIMIT_VALUES</source>
+        <translation>Limit values</translation>
     </message>
     <message>
-        <source>COUPLING_PERIOD_FOR_SISYPHE</source>
-        <translation>Coupling Period For Sisyphe</translation>
+        <source>RESULTS_FILE</source>
+        <translation>Results file</translation>
     </message>
     <message>
-        <source>TOMAWAC_STEERING_FILE</source>
-        <translation>Tomawac Steering File</translation>
+        <source>STAGE_DISCHARGE_CURVES_FILE</source>
+        <translation>Stage-discharge curves file</translation>
     </message>
     <message>
-        <source>COUPLING_PERIOD_FOR_TOMAWAC</source>
-        <translation>Coupling Period For Tomawac</translation>
+        <source>"Courant_number_"</source>
+        <translation>"courant number "</translation>
     </message>
     <message>
-        <source>WAQTEL_STEERING_FILE</source>
-        <translation>Waqtel Steering File</translation>
+        <source>"nombre_de_courants_"</source>
+        <translation>"nombre de courants "</translation>
     </message>
     <message>
-        <source>NUMBER_OF_FIRST_TIME_STEP_FOR_GRAPHIC_PRINTOUTS</source>
-        <translation>Number Of First Time Step For Graphic Printouts</translation>
+        <source>NUMBER_OF_DROGUES</source>
+        <translation>Number of drogues</translation>
     </message>
     <message>
-        <source>GRAPHIC_PRINTOUT_PERIOD</source>
-        <translation>Graphic Printout Period</translation>
+        <source>PROPAGATION</source>
+        <translation>Propagation</translation>
     </message>
     <message>
-        <source>VARIABLES_FOR_GRAPHIC_PRINTOUTS</source>
-        <translation>Variables For Graphic Printouts</translation>
+        <source>OPTION_OF_THE_HYDROSTATIC_RECONSTRUCTION</source>
+        <translation>Option of the hydrostatic reconstruction</translation>
     </message>
     <message>
-        <source>NUMBER_OF_PRIVATE_ARRAYS</source>
-        <translation>Number Of Private Arrays</translation>
+        <source>TIME_RANGE_FOR_FOURIER_ANALYSIS</source>
+        <translation>Time range for fourier analysis</translation>
     </message>
     <message>
-        <source>NAMES_OF_PRIVATE_VARIABLES</source>
-        <translation>Names Of Private Variables</translation>
+        <source>"weak"</source>
+        <translation>"weak"</translation>
     </message>
     <message>
-        <source>RESULTS_FILE_FORMAT</source>
-        <translation>Results File Format</translation>
+        <source>MATRIX_STORAGE</source>
+        <translation>Matrix storage</translation>
     </message>
     <message>
-        <source>RESULTS_FILE</source>
-        <translation>Results File</translation>
+        <source>COEFFICIENT_TO_CALIBRATE_TIDAL_RANGE</source>
+        <translation>Coefficient to calibrate tidal range</translation>
     </message>
     <message>
-        <source>BINARY_RESULTS_FILE_FORMAT</source>
-        <translation>Binary Results File Format</translation>
+        <source>RAINFALL_RUNOFF_MODEL</source>
+        <translation>Rainfall-runoff model</translation>
     </message>
     <message>
-        <source>BINARY_RESULTS_FILE</source>
-        <translation>Binary Results File</translation>
+        <source>SOLVER</source>
+        <translation>Solver</translation>
     </message>
     <message>
-        <source>FORMATTED_RESULTS_FILE</source>
-        <translation>Formatted Results File</translation>
+        <source>RECORD_NUMBER_FOR_RESTART</source>
+        <translation>Record number for restart</translation>
     </message>
     <message>
-        <source>CONTROL_SECTIONS</source>
-        <translation>Control Sections</translation>
+        <source>"N_SCHEME_FOR_TIDAL_FLATS"</source>
+        <translation>"N-Scheme for tidal flats"</translation>
     </message>
     <message>
-        <source>PRINTING_CUMULATED_FLOWRATES</source>
-        <translation>Printing Cumulated Flowrates</translation>
+        <source>"PELVETIOPSIS_LIMITATA"</source>
+        <translation>"pelvetiopsis limitata"</translation>
     </message>
     <message>
-        <source>COMPATIBLE_COMPUTATION_OF_FLUXES</source>
-        <translation>Compatible Computation Of Fluxes</translation>
+        <source>FREE_INTEGER_20</source>
+        <translation>Free integer 20</translation>
     </message>
     <message>
-        <source>SECTIONS_INPUT_FILE</source>
-        <translation>Sections Input File</translation>
+        <source>"Froude_number"</source>
+        <translation>"Froude number"</translation>
     </message>
     <message>
-        <source>SECTIONS_OUTPUT_FILE</source>
-        <translation>Sections Output File</translation>
+        <source>"conjugate_gradient"</source>
+        <translation>"conjugate gradient"</translation>
     </message>
     <message>
-        <source>NUMBER_OF_FIRST_TIME_STEP_FOR_LISTING_PRINTOUTS</source>
-        <translation>Number Of First Time Step For Listing Printouts</translation>
+        <source>ACCURACY_OF_K</source>
+        <translation>Accuracy of K</translation>
     </message>
     <message>
-        <source>LISTING_PRINTOUT_PERIOD</source>
-        <translation>Listing Printout Period</translation>
+        <source>WATER_QUALITY_PROCESS</source>
+        <translation>Water quality process</translation>
     </message>
     <message>
-        <source>LISTING_FOR_PRINTOUT_PERIOD</source>
-        <translation>Listing For Printout Period</translation>
+        <source>PSI_SCHEME_OPTION</source>
+        <translation>Psi scheme option</translation>
     </message>
     <message>
-        <source>LISTING_PRINTOUT</source>
-        <translation>Listing Printout</translation>
+        <source>"normal_velocity_given_in_ubor_in_the_conlim_file"</source>
+        <translation>"normal velocity given in ubor in the conlim file"</translation>
     </message>
     <message>
-        <source>VARIABLES_TO_BE_PRINTED</source>
-        <translation>Variables To Be Printed</translation>
+        <source>OPTION_FOR_LIQUID_BOUNDARIES</source>
+        <translation>Option for liquid boundaries</translation>
     </message>
     <message>
-        <source>MASS_BALANCE</source>
-        <translation>Mass-balance</translation>
+        <source>COEFFICIENT_TO_CALIBRATE_SEA_LEVEL</source>
+        <translation>Coefficient to calibrate sea level</translation>
     </message>
     <message>
-        <source>INFORMATION_ABOUT_SOLVER</source>
-        <translation>Information About Solver</translation>
+        <source>NUMBER_OF_SIPHONS</source>
+        <translation>Number of siphons</translation>
     </message>
     <message>
-        <source>LIST_OF_POINTS</source>
-        <translation>List Of Points</translation>
+        <source>"Dirac"</source>
+        <translation>"dirac"</translation>
     </message>
     <message>
-        <source>NAMES_OF_POINTS</source>
-        <translation>Names Of Points</translation>
+        <source>SPHERICAL_COORDINATES</source>
+        <translation>Spherical coordinates</translation>
     </message>
     <message>
-        <source>FOURIER_ANALYSIS_PERIODS</source>
-        <translation>Fourier Analysis Periods</translation>
+        <source>THICKNESS_OF_ALGAE</source>
+        <translation>Thickness of algae</translation>
     </message>
     <message>
-        <source>TIME_RANGE_FOR_FOURIER_ANALYSIS</source>
-        <translation>Time Range For Fourier Analysis</translation>
+        <source>MEAN_TEMPERATURE</source>
+        <translation>Mean temperature</translation>
     </message>
     <message>
-        <source>NUMBER_OF_CORRECTIONS_OF_DISTRIBUTIVE_SCHEMES</source>
-        <translation>Number Of Corrections Of Distributive Schemes</translation>
+        <source>"extrapolation"</source>
+        <translation>"extrapolation"</translation>
     </message>
     <message>
-        <source>NUMBER_OF_SUB_STEPS_OF_DISTRIBUTIVE_SCHEMES</source>
-        <translation>Number Of Sub-steps Of Distributive Schemes</translation>
+        <source>IDENTIFICATION_METHOD</source>
+        <translation>Identification method</translation>
     </message>
     <message>
-        <source>WAVE_ENHANCED_FRICTION_FACTOR</source>
-        <translation>Wave Enhanced Friction Factor</translation>
+        <source>"conjugate_residuals"</source>
+        <translation>"conjugate residuals"</translation>
     </message>
     <message>
-        <source>LOCAL_NUMBER_OF_THE_POINT_TO_CALIBRATE_HIGH_WATER</source>
-        <translation>Local Number Of The Point To Calibrate High Water</translation>
+        <source>"LAMBERT_4_CORSICA"</source>
+        <translation>"lambert 4 corsica"</translation>
     </message>
     <message>
-        <source>GLOBAL_NUMBER_OF_THE_POINT_TO_CALIBRATE_HIGH_WATER</source>
-        <translation>Global Number Of The Point To Calibrate High Water</translation>
+        <source>"1_point"</source>
+        <translation>"1 point"</translation>
     </message>
     <message>
-        <source>PSI_SCHEME_OPTION</source>
-        <translation>Psi Scheme Option</translation>
+        <source>MASS_LUMPING_ON_VELOCITY</source>
+        <translation>Mass-lumping on velocity</translation>
     </message>
     <message>
-        <source>PROPAGATION_OPTION</source>
-        <translation>Propagation Option</translation>
+        <source>VALUES_OF_TRACERS_IN_THE_RAIN</source>
+        <translation>Values of tracers in the rain</translation>
     </message>
     <message>
-        <source>FREE_INTEGER_20</source>
-        <translation>Free Integer 20</translation>
+        <source>VOLUMES_DELWAQ_FILE</source>
+        <translation>Volumes DELWAQ file</translation>
     </message>
     <message>
-        <source>VECTOR_LENGTH</source>
-        <translation>Vector Length</translation>
+        <source>"conjugate_gradient_squared"</source>
+        <translation>"conjugate gradient squared"</translation>
     </message>
     <message>
-        <source>LANGUAGE</source>
-        <translation>Language</translation>
+        <source>"block_diagonal_(4_9_matrices)"</source>
+        <translation>"block-diagonal (4-9 matrices)"</translation>
     </message>
     <message>
-        <source>STEERING_FILE</source>
-        <translation>Steering File</translation>
+        <source>"LAMBERT_1_NORTH"</source>
+        <translation>"lambert 1 north"</translation>
     </message>
     <message>
-        <source>DICTIONARY</source>
-        <translation>Dictionary</translation>
+        <source>WAVE_DRIVEN_CURRENTS</source>
+        <translation>Wave driven currents</translation>
     </message>
     <message>
-        <source>PARTITIONING_TOOL</source>
-        <translation>Partitioning Tool</translation>
+        <source>"tracer_1_etc."</source>
+        <translation>"tracer 1 etc."</translation>
     </message>
     <message>
-        <source>RELEASE</source>
-        <translation>Release</translation>
+        <source>OIL_SPILL_MODEL</source>
+        <translation>Oil spill model</translation>
     </message>
     <message>
-        <source>LIST_OF_FILES</source>
-        <translation>List Of Files</translation>
+        <source>ORIGINAL_DATE_OF_TIME</source>
+        <translation>Original date of time</translation>
     </message>
     <message>
-        <source>DESCRIPTION_OF_LIBRARIES</source>
-        <translation>Description Of Libraries</translation>
+        <source>GEOGRAPHIC_SYSTEM</source>
+        <translation>Geographic system</translation>
     </message>
     <message>
-        <source>DEFAULT_EXECUTABLE</source>
-        <translation>Default Executable</translation>
+        <source>"HORIZONTAL_WITH_SAME_NUMBER_OF_NODES_UPSTREAM/DOWNSTREAM"</source>
+        <translation>"horizontal with same number of nodes upstream/downstream"</translation>
     </message>
     <message>
-        <source>DEFAULT_PARALLEL_EXECUTABLE</source>
-        <translation>Default Parallel Executable</translation>
+        <source>TIDAL_MODEL_FILE</source>
+        <translation>Tidal model file</translation>
     </message>
-    <name>@default</name>
+    <message>
+        <source>"squared_conjugate_gradient"</source>
+        <translation>"squared conjugate gradient"</translation>
+    </message>
+
+
+
+
+
     <message>
         <location filename="../../convert/convert_ini.py" line="81"/>
         <source>lecture du fichier impossible :</source>
@@ -3397,8 +4229,6 @@ Le fichier associe n&apos;est pas defini</source>
         <source>Objet commande commentaris&#xe9; invalide</source>
         <translation type="unfinished"></translation>
     </message>
-</context>
-<context>
     <name>ChoixCode</name>
     <message>
         <location filename="../../UiQT4/desChoixCode.ui" line="20"/>
@@ -3425,8 +4255,6 @@ Le fichier associe n&apos;est pas defini</source>
         <source>&amp;OK</source>
         <translation></translation>
     </message>
-</context>
-<context>
     <name>ChoixCommandes</name>
     <message>
         <location filename="../../UiQT4/desChoixCommandes.ui" line="26"/>
@@ -3508,8 +4336,6 @@ Le fichier associe n&apos;est pas defini</source>
         <source>ré-affiche toutes les commandes</source>
         <translation>re-display the list of commands</translation>
     </message>
-</context>
-<context>
     <name>DChoixCata</name>
     <message>
         <location filename="../../UiQT4/desChoixCata.ui" line="14"/>
@@ -3578,9 +4404,6 @@ p, li { white-space: pre-wrap; }
         <source>Importer Tout</source>
         <translation>imports all values</translation>
     </message>
-</context>
-<context>
-    <name>DVisu</name>
     <message>
         <location filename="../../UiQT4/desVisu.ui" line="14"/>
         <source>Visualisation Include Materiau</source>
index 8af3cd5d8d31a031602a31f197f53d64fe279855..6b5eeab956a19fe412b27cd97f4e623ee77a61e6 100644 (file)
 <context>
     <name>@defaut</name>
     <message>
-        <source>TITLE</source>
-        <translation>Titre</translation>
+        <source>COEFFICIENT_TO_CALIBRATE_TIDAL_VELOCITIES</source>
+        <translation>Coefficient de calage des vitesses de courant</translation>
     </message>
     <message>
-        <source>GEOMETRY_FILE_FORMAT</source>
-        <translation>Format Du Fichier De Geometrie</translation>
+        <source>BOTTOM_TOPOGRAPHY_FILE</source>
+        <translation>Fichier des fonds</translation>
     </message>
     <message>
-        <source>GEOMETRY_FILE</source>
-        <translation>Fichier De Geometrie</translation>
+        <source>NUMBER_OF_CORRECTIONS_OF_DISTRIBUTIVE_SCHEMES</source>
+        <translation>Nombre de corrections des schemas distributifs</translation>
     </message>
     <message>
-        <source>FORTRAN_FILE</source>
-        <translation>Fichier Fortran</translation>
+        <source>WATER_DENSITY</source>
+        <translation>Masse volumique de l'eau</translation>
     </message>
     <message>
-        <source>BOTTOM_TOPOGRAPHY_FILE</source>
-        <translation>Fichier Des Fonds</translation>
+        <source>VALUE_OF_ATMOSPHERIC_PRESSURE</source>
+        <translation>Valeur de la pression atmospherique</translation>
     </message>
     <message>
-        <source>BOTTOM_SMOOTHINGS</source>
-        <translation>Lissages Du Fond</translation>
+        <source>LISTING_FOR_PRINTOUT_PERIOD</source>
+        <translation>Periode pour les sorties listing</translation>
     </message>
     <message>
-        <source>BOUNDARY_CONDITIONS_FILE</source>
-        <translation>Fichier Des Conditions Aux Limites</translation>
+        <source>CONSERVATIVE_N_SCHEME</source>
+        <translation>Schema n conservatif</translation>
     </message>
     <message>
-        <source>VALIDATION</source>
-        <translation>Validation</translation>
+        <source>wave_celerity_(m/s)</source>
+        <translation>Celerite des ondes (m/s)</translation>
     </message>
     <message>
-        <source>REFERENCE_FILE_FORMAT</source>
-        <translation>Format Du Fichier De Reference</translation>
+        <source>scalar_flowrate_of_fluid_(m2/s)</source>
+        <translation>Debit scalaire du fluide (m2/s)</translation>
     </message>
     <message>
-        <source>REFERENCE_FILE</source>
-        <translation>Fichier De Reference</translation>
+        <source>constant_normal_profile</source>
+        <translation>Profil normal constant</translation>
     </message>
     <message>
-        <source>BINARY_DATA_FILE_1_FORMAT</source>
-        <translation>Format Du Fichier De Donnees Binaire 1</translation>
+        <source>LAMBERT_4_CORSICA</source>
+        <translation>Lambert 4 corse</translation>
     </message>
     <message>
-        <source>BINARY_DATA_FILE_1</source>
-        <translation>Fichier De Donnees Binaire 1</translation>
+        <source>MERCATOR</source>
+        <translation>Mercator</translation>
     </message>
     <message>
-        <source>BINARY_DATA_FILE_2_FORMAT</source>
-        <translation>Format Du Fichier De Donnees Binaire 2</translation>
+        <source>VELOCITY_DIFFUSIVITY</source>
+        <translation>Coefficient de diffusion des vitesses</translation>
     </message>
     <message>
-        <source>BINARY_DATA_FILE_2</source>
-        <translation>Fichier De Donnees Binaire 2</translation>
+        <source>LINEARIZED_PROPAGATION</source>
+        <translation>Propagation linearisee</translation>
     </message>
     <message>
-        <source>FORMATTED_DATA_FILE_1</source>
-        <translation>Fichier De Donnees Formate 1</translation>
+        <source>PRINTOUT_PERIOD_FOR_DROGUES</source>
+        <translation>Periode pour les sorties de flotteurs</translation>
     </message>
     <message>
-        <source>FORMATTED_DATA_FILE_2</source>
-        <translation>Fichier De Donnees Formate 2</translation>
+        <source>BINARY_RESULTS_FILE_FORMAT</source>
+        <translation>Format du fichier de resultats binaire</translation>
     </message>
     <message>
-        <source>INITIAL_CONDITIONS</source>
-        <translation>Conditions Initiales</translation>
+        <source>COMPUTATION_CONTINUED</source>
+        <translation>Suite de calcul</translation>
     </message>
     <message>
-        <source>INITIAL_ELEVATION</source>
-        <translation>Cote Initiale</translation>
+        <source>PARALLEL_PROCESSORS</source>
+        <translation>Processeurs paralleles</translation>
     </message>
     <message>
-        <source>INITIAL_DEPTH</source>
-        <translation>Hauteur Initiale</translation>
+        <source>COEFFICIENT_FOR_DIFFUSION_OF_TRACERS</source>
+        <translation>Coefficient de diffusion des traceurs</translation>
     </message>
     <message>
-        <source>COMPUTATION_CONTINUED</source>
-        <translation>Suite De Calcul</translation>
+        <source>LAMBERT_3_SOUTH</source>
+        <translation>Lambert 3 sud</translation>
     </message>
     <message>
-        <source>PREVIOUS_COMPUTATION_FILE_FORMAT</source>
-        <translation>Format Du Fichier Du Calcul Precedent</translation>
+        <source>DIAMETER_OF_ALGAE</source>
+        <translation>Diametre des algues</translation>
     </message>
     <message>
-        <source>PREVIOUS_COMPUTATION_FILE</source>
-        <translation>Fichier Du Calcul Precedent</translation>
+        <source>FRICTION_DATA_FILE</source>
+        <translation>Fichier de donnees pour le frottement</translation>
     </message>
     <message>
-        <source>RECORD_NUMBER_FOR_RESTART</source>
-        <translation>Enregistrement Pour Suite De Calcul</translation>
+        <source>Real_tide_(recommended_methodology)</source>
+        <translation>Maree reelle (methodologie recommandee)</translation>
     </message>
     <message>
-        <source>INITIAL_TIME_SET_TO_ZERO</source>
-        <translation>Remise A Zero Du Temps</translation>
+        <source>NAMES_OF_POINTS</source>
+        <translation>Noms des points</translation>
     </message>
     <message>
-        <source>PARALLEL_PROCESSORS</source>
-        <translation>Processeurs Paralleles</translation>
+        <source>GIGARTINA_LEPTORHYNCHOS</source>
+        <translation>Gigartina leptorhynchos</translation>
     </message>
     <message>
-        <source>CHECKING_THE_MESH</source>
-        <translation>Verification Du Maillage</translation>
+        <source>STOP_CRITERIA</source>
+        <translation>Criteres d'arret</translation>
     </message>
     <message>
-        <source>MAXIMUM_NUMBER_OF_BOUNDARIES</source>
-        <translation>Nombre Maximum De Frontieres</translation>
+        <source>Roe_scheme</source>
+        <translation>Schema de roe</translation>
     </message>
     <message>
-        <source>MAXIMUM_NUMBER_OF_SOURCES</source>
-        <translation>Nombre Maximum De Sources</translation>
+        <source>FINITE_VOLUME_SCHEME</source>
+        <translation>Schema en volumes finis</translation>
     </message>
     <message>
-        <source>MAXIMUM_NUMBER_OF_TRACERS</source>
-        <translation>Nombre Maximum De Traceurs</translation>
+        <source>IMPLICITATION_COEFFICIENT_OF_TRACERS</source>
+        <translation>Coefficient d'implicitation des traceurs</translation>
     </message>
     <message>
-        <source>PRESCRIBED_ELEVATIONS</source>
-        <translation>Cotes Imposees</translation>
+        <source>gradient_simple</source>
+        <translation>Gradient simple</translation>
     </message>
     <message>
-        <source>PRESCRIBED_FLOWRATES</source>
-        <translation>Debits Imposes</translation>
+        <source>SPATIAL_PROJECTION_TYPE</source>
+        <translation>Type de projection spatiale</translation>
     </message>
     <message>
-        <source>PRESCRIBED_VELOCITIES</source>
-        <translation>Vitesses Imposees</translation>
+        <source>PHYSICAL_CHARACTERISTICS_OF_THE_TSUNAMI</source>
+        <translation>Parametres physiques du tsunami</translation>
     </message>
     <message>
-        <source>STAGE_DISCHARGE_CURVES</source>
-        <translation>Courbes De Tarage</translation>
+        <source>direct</source>
+        <translation>Direct</translation>
     </message>
     <message>
-        <source>STAGE_DISCHARGE_CURVES_FILE</source>
-        <translation>Fichier Des Courbes De Tarage</translation>
+        <source>zero</source>
+        <translation>Zero</translation>
     </message>
     <message>
-        <source>VELOCITY_PROFILES</source>
-        <translation>Profils De Vitesse</translation>
+        <source>FRICTION_COEFFICIENT</source>
+        <translation>Coefficient de frottement</translation>
     </message>
     <message>
-        <source>OPTION_FOR_LIQUID_BOUNDARIES</source>
-        <translation>Option Pour Les Frontieres Liquides</translation>
+        <source>BREACHES_DATA_FILE</source>
+        <translation>Fichier de donnees des breches</translation>
     </message>
     <message>
-        <source>LIQUID_BOUNDARIES_FILE</source>
-        <translation>Fichier Des Frontieres Liquides</translation>
+        <source>COEFFICIENT_1_FOR_LAW_OF_TRACERS_DEGRADATION</source>
+        <translation>Coefficient 1 de la loi de degradation des traceurs</translation>
     </message>
     <message>
-        <source>ELEMENTS_MASKED_BY_USER</source>
-        <translation>Elements Masques Par L'utilisateur</translation>
+        <source>TREATMENT_OF_FLUXES_AT_THE_BOUNDARIES</source>
+        <translation>Traitement des flux aux frontieres</translation>
     </message>
     <message>
-        <source>DEBUGGER</source>
-        <translation>Debugger</translation>
+        <source>GLOBAL_NUMBER_OF_THE_POINT_TO_CALIBRATE_HIGH_WATER</source>
+        <translation>Numero global du point pour caler la pleine mer</translation>
     </message>
     <message>
-        <source>TIME_STEP</source>
-        <translation>Pas De Temps</translation>
+        <source>REFERENCE_FILE_FORMAT</source>
+        <translation>Format du fichier de reference</translation>
     </message>
     <message>
-        <source>NUMBER_OF_TIME_STEPS</source>
-        <translation>Nombre De Pas De Temps</translation>
+        <source>conjugate_residual</source>
+        <translation>Residu conjuge</translation>
     </message>
     <message>
-        <source>DURATION</source>
-        <translation>Duree Du Calcul</translation>
+        <source>BOTTOM_SURFACES_DELWAQ_FILE</source>
+        <translation>Fichier DELWAQ des surfaces du fond</translation>
     </message>
     <message>
-        <source>ORIGINAL_DATE_OF_TIME</source>
-        <translation>Date De L'origine Des Temps</translation>
+        <source>N_SCHEME_FOR_TIDAL_FLATS</source>
+        <translation>Schema n pour bancs decouvrants</translation>
     </message>
     <message>
-        <source>ORIGINAL_HOUR_OF_TIME</source>
-        <translation>Heure De L'origine Des Temps</translation>
+        <source>NO_FRICTION</source>
+        <translation>Pas de frottement</translation>
     </message>
     <message>
-        <source>STOP_IF_A_STEADY_STATE_IS_REACHED</source>
-        <translation>Arret Si Un Etat Permanent Est Atteint</translation>
+        <source>no_preconditioning_</source>
+        <translation>Aucun</translation>
     </message>
     <message>
-        <source>STOP_CRITERIA</source>
-        <translation>Criteres D'arret</translation>
+        <source>CONTINUITY_CORRECTION</source>
+        <translation>Correction de continuite</translation>
     </message>
     <message>
-        <source>CONTROL_OF_LIMITS</source>
-        <translation>Controle Des Limites</translation>
+        <source>F(T90)_LAW</source>
+        <translation>Loi en F(T90)</translation>
     </message>
     <message>
-        <source>LIMIT_VALUES</source>
-        <translation>Valeurs Limites</translation>
+        <source>FREE_SURFACE_GRADIENT_COMPATIBILITY</source>
+        <translation>Compatibilite du gradient de surface libre</translation>
     </message>
     <message>
-        <source>VARIABLE_TIME_STEP</source>
-        <translation>Pas De Temps Variable</translation>
+        <source>gmres</source>
+        <translation>GMRES</translation>
     </message>
     <message>
-        <source>DESIRED_COURANT_NUMBER</source>
-        <translation>Nombre De Courant Souhaite</translation>
+        <source>strong</source>
+        <translation>Fortes</translation>
     </message>
     <message>
-        <source>ORIGIN_COORDINATES</source>
-        <translation>Coordonnees De L'origine</translation>
+        <source>1/h_div_(_h_nu_grad(U)</source>
+        <translation>1/h div ( h nu grad(U)</translation>
     </message>
     <message>
-        <source>SPHERICAL_COORDINATES</source>
-        <translation>Coordonnees Spheriques</translation>
+        <source>SMAGORINSKI</source>
+        <translation>Smagorinski</translation>
     </message>
     <message>
-        <source>LATITUDE_OF_ORIGIN_POINT</source>
-        <translation>Latitude Du Point Origine</translation>
+        <source>NAMES_OF_PRIVATE_VARIABLES</source>
+        <translation>Noms des variables privees</translation>
     </message>
     <message>
-        <source>LONGITUDE_OF_ORIGIN_POINT</source>
-        <translation>Longitude Du Point Origine</translation>
+        <source>NODES_DISTANCES_DELWAQ_FILE</source>
+        <translation>Fichier DELWAQ des distances entre noeuds</translation>
     </message>
     <message>
-        <source>NORTH</source>
-        <translation>Nord</translation>
+        <source>SCHEME_OPTION_FOR_ADVECTION_OF_TRACERS</source>
+        <translation>Option du schema pour la convection des traceurs</translation>
     </message>
     <message>
-        <source>SPATIAL_PROJECTION_TYPE</source>
-        <translation>Type De Projection Spatiale</translation>
+        <source>MERCATOR_FOR_TELEMAC</source>
+        <translation>Mercator pour telemac</translation>
     </message>
     <message>
-        <source>MAXIMUM_NUMBER_OF_FRICTION_DOMAINS</source>
-        <translation>Nombre Maximum De Domaines De Frottement</translation>
+        <source>TIME_STEP_REDUCTION_FOR_K_EPSILON_MODEL</source>
+        <translation>Reduction du pas de temps pour le modele K-Epsilon</translation>
     </message>
     <message>
-        <source>FRICTION_DATA</source>
-        <translation>Donnees Pour Le Frottement</translation>
+        <source>quasi_bubble</source>
+        <translation>Quasi-bulle</translation>
     </message>
     <message>
-        <source>FRICTION_DATA_FILE</source>
-        <translation>Fichier De Donnees Pour Le Frottement</translation>
+        <source>NON_DIMENSIONAL_DISPERSION_COEFFICIENTS</source>
+        <translation>Coefficients adimensionnels de dispersion</translation>
     </message>
     <message>
-        <source>LAW_OF_BOTTOM_FRICTION</source>
-        <translation>Loi De Frottement Sur Le Fond</translation>
+        <source>classical_EBE</source>
+        <translation>Ebe classique</translation>
     </message>
     <message>
-        <source>FRICTION_COEFFICIENT</source>
-        <translation>Coefficient De Frottement</translation>
+        <source>IMPLICIT_NON_CONSERVATIVE_N_SCHEME</source>
+        <translation>Schema n implicite non conservatif</translation>
     </message>
     <message>
-        <source>MANNING_DEFAULT_VALUE_FOR_COLEBROOK_WHITE_LAW</source>
-        <translation>Valeur Par Defaut Du Manning Pour La Loi De Colebrook-white</translation>
+        <source>GEOMETRY_FILE_FORMAT</source>
+        <translation>Format du fichier de geometrie</translation>
     </message>
     <message>
-        <source>DEPTH_IN_FRICTION_TERMS</source>
-        <translation>Hauteur Dans Les Termes De Frottement</translation>
+        <source>ORIGINAL_HOUR_OF_TIME</source>
+        <translation>Heure de l'origine des temps</translation>
     </message>
     <message>
-        <source>NON_SUBMERGED_VEGETATION_FRICTION</source>
-        <translation>Frottement Pour La Vegetation Non Submergee</translation>
+        <source>DIFFUSIVITY_FOR_DELWAQ</source>
+        <translation>Diffusion pour DELWAQ</translation>
     </message>
     <message>
-        <source>DIAMETER_OF_ROUGHNESS_ELEMENTS</source>
-        <translation>Diametre Des Elements De Frottement</translation>
+        <source>Q(Z)_not_programmed</source>
+        <translation>Q(Z) non programme</translation>
     </message>
     <message>
-        <source>SPACING_OF_ROUGHNESS_ELEMENTS</source>
-        <translation>Espacement Des Elements De Frottement</translation>
+        <source>DISSIPATION_COEFFICIENT_FOR_SECONDARY_CURRENTS</source>
+        <translation>Coefficient de dissipation pour courants secondaires</translation>
     </message>
     <message>
-        <source>LAW_OF_FRICTION_ON_LATERAL_BOUNDARIES</source>
-        <translation>Loi De Frottement Sur Les Parois Laterales</translation>
+        <source>ALGAE_TRANSPORT_MODEL</source>
+        <translation>Modele de transport des algues</translation>
     </message>
     <message>
-        <source>ROUGHNESS_COEFFICIENT_OF_BOUNDARIES</source>
-        <translation>Coefficient De Rugosite Des Bords</translation>
+        <source>TOLERANCES_FOR_IDENTIFICATION</source>
+        <translation>Precisions pour l'identification</translation>
     </message>
     <message>
-        <source>DEFINITION_OF_ZONES</source>
-        <translation>Definition De Zones</translation>
+        <source>WGS84_SOUTHERN_UTM</source>
+        <translation>WGS84 sud utm</translation>
     </message>
     <message>
-        <source>ZONES_FILE</source>
-        <translation>Fichier Des Zones</translation>
+        <source>air_pressure_(Pa)</source>
+        <translation>Pression atmospherique (Pa)</translation>
     </message>
     <message>
-        <source>WIND</source>
-        <translation>Vent</translation>
+        <source>No_model</source>
+        <translation>Pas de modele</translation>
     </message>
     <message>
-        <source>OPTION_FOR_WIND</source>
-        <translation>Option Du Vent</translation>
+        <source>DELWAQ_PRINTOUT_PERIOD</source>
+        <translation>Periode de sortie pour DELWAQ</translation>
     </message>
     <message>
-        <source>COEFFICIENT_OF_WIND_INFLUENCE</source>
-        <translation>Coefficient D'influence Du Vent</translation>
+        <source>DROGUES_FILE</source>
+        <translation>Fichier des flotteurs</translation>
     </message>
     <message>
-        <source>WIND_VELOCITY_ALONG_X</source>
-        <translation>Vitesse Du Vent Suivant X</translation>
+        <source>MASS_LUMPING_FOR_WEAK_CHARACTERISTICS</source>
+        <translation>Mass-lumping pour les caracteristiques faibles</translation>
     </message>
     <message>
-        <source>WIND_VELOCITY_ALONG_Y</source>
-        <translation>Vitesse Du Vent Suivant Y</translation>
+        <source>GRAVITY_ACCELERATION</source>
+        <translation>Acceleration de la pesanteur</translation>
     </message>
     <message>
-        <source>SPEED_AND_DIRECTION_OF_WIND</source>
-        <translation>Vitesse Et Direction Du Vent</translation>
+        <source>BINARY_DATABASE_2_FOR_TIDE</source>
+        <translation>Base binaire 2 de donnees de maree</translation>
     </message>
     <message>
-        <source>THRESHOLD_DEPTH_FOR_WIND</source>
-        <translation>Profondeur Limite Pour Le Vent</translation>
+        <source>6_points</source>
+        <translation>6 points</translation>
     </message>
     <message>
-        <source>AIR_PRESSURE</source>
-        <translation>Pression Atmospherique</translation>
+        <source>TIME_RANGE_FOR_FOURIER_ANALYSIS</source>
+        <translation>Bornes en temps pour l'analyse de fourier</translation>
     </message>
     <message>
-        <source>VALUE_OF_ATMOSPHERIC_PRESSURE</source>
-        <translation>Valeur De La Pression Atmospherique</translation>
+        <source>EDGE_BASED_N_SCHEME</source>
+        <translation>Schema n par segments</translation>
     </message>
     <message>
-        <source>RAIN_OR_EVAPORATION</source>
-        <translation>Pluie Ou Evaporation</translation>
+        <source>Priority_to_fluxes</source>
+        <translation>Priorite aux flux</translation>
     </message>
     <message>
-        <source>RAIN_OR_EVAPORATION_IN_MM_PER_DAY</source>
-        <translation>Pluie Ou Evaporation En Mm Par Jour</translation>
+        <source>LAMBERT_1_NORTH</source>
+        <translation>Lambert 1 nord</translation>
     </message>
     <message>
-        <source>WAVE_DRIVEN_CURRENTS</source>
-        <translation>Courants De Houle</translation>
+        <source>velocity_proportional_to_square_root_of_depth</source>
+        <translation>Vitesse en racine carree de H</translation>
     </message>
     <message>
-        <source>RECORD_NUMBER_IN_WAVE_FILE</source>
-        <translation>Numero De L'enregistrement Dans Le Fichier De Houle</translation>
+        <source>STRICKLER</source>
+        <translation>Strickler</translation>
+    </message>
+    <message>
+        <source>LAMBERT_2_EXTENDED</source>
+        <translation>Lambert 2 etendu</translation>
+    </message>
+    <message>
+        <source>ELEMENTS_MASKED_BY_USER</source>
+        <translation>Elements masques par l'utilisateur</translation>
+    </message>
+    <message>
+        <source>NAMES_OF_TRACERS</source>
+        <translation>Noms des traceurs</translation>
+    </message>
+    <message>
+        <source>H_CLIPPING</source>
+        <translation>Clipping de H</translation>
+    </message>
+    <message>
+        <source>conjugate_residuals</source>
+        <translation>Residu conjuge</translation>
     </message>
     <message>
         <source>PARAMETER_ESTIMATION</source>
-        <translation>Estimation De Parametre</translation>
+        <translation>Estimation de parametre</translation>
     </message>
     <message>
-        <source>COST_FUNCTION</source>
-        <translation>Fonction Cout</translation>
+        <source>CHECKING_THE_MESH</source>
+        <translation>Verification du maillage</translation>
     </message>
     <message>
-        <source>IDENTIFICATION_METHOD</source>
-        <translation>Methode D'identification</translation>
+        <source>SOLVER_FOR_K_EPSILON_MODEL</source>
+        <translation>Solveur pour le modele K-Epsilon</translation>
     </message>
     <message>
-        <source>TOLERANCES_FOR_IDENTIFICATION</source>
-        <translation>Precisions Pour L'identification</translation>
+        <source>LIST_OF_FILES</source>
+        <translation>Liste des fichiers</translation>
     </message>
     <message>
-        <source>MAXIMUM_NUMBER_OF_ITERATIONS_FOR_IDENTIFICATION</source>
-        <translation>Maximum D'iterations Pour L'identification</translation>
+        <source>Wave_equation</source>
+        <translation>Equation d'onde</translation>
     </message>
     <message>
-        <source>ABSCISSAE_OF_SOURCES</source>
-        <translation>Abscisses Des Sources</translation>
+        <source>NAMES_OF_CLANDESTINE_VARIABLES</source>
+        <translation>Noms des variables clandestines</translation>
     </message>
     <message>
-        <source>ORDINATES_OF_SOURCES</source>
-        <translation>Ordonnees Des Sources</translation>
+        <source>WAQTEL_STEERING_FILE</source>
+        <translation>Fichier des parametres de waqtel</translation>
     </message>
     <message>
-        <source>WATER_DISCHARGE_OF_SOURCES</source>
-        <translation>Debits Des Sources</translation>
+        <source>MAXIMUM_NUMBER_OF_ITERATIONS_FOR_ADVECTION_SCHEMES</source>
+        <translation>Maximum d'iterations pour les schemas de convection</translation>
     </message>
     <message>
-        <source>VELOCITIES_OF_THE_SOURCES_ALONG_X</source>
-        <translation>Vitesses Des Sources Selon X</translation>
+        <source>squared_conjugate_gradient</source>
+        <translation>Gradient conjuge carre</translation>
     </message>
     <message>
-        <source>VELOCITIES_OF_THE_SOURCES_ALONG_Y</source>
-        <translation>Vitesses Des Sources Selon Y</translation>
+        <source>LAW_OF_BOTTOM_FRICTION</source>
+        <translation>Loi de frottement sur le fond</translation>
     </message>
     <message>
-        <source>TYPE_OF_SOURCES</source>
-        <translation>Type Des Sources</translation>
+        <source>MATRIX_VECTOR_PRODUCT</source>
+        <translation>Produit matrice-vecteur</translation>
     </message>
     <message>
-        <source>SOURCES_FILE</source>
-        <translation>Fichier Des Sources</translation>
+        <source>ACCURACY_FOR_DIFFUSION_OF_TRACERS</source>
+        <translation>Precision pour la diffusion des traceurs</translation>
     </message>
     <message>
-        <source>WATER_QUALITY</source>
-        <translation>Qualite D'eau</translation>
+        <source>cgstab</source>
+        <translation>CGSTAB</translation>
     </message>
     <message>
-        <source>WATER_QUALITY_PROCESS</source>
-        <translation>Processus Qualite D'eau</translation>
+        <source>MANNING</source>
+        <translation>Manning</translation>
     </message>
     <message>
-        <source>CORIOLIS</source>
-        <translation>Coriolis</translation>
+        <source>SCHEME_FOR_ADVECTION_OF_TRACERS</source>
+        <translation>Schema pour la convection des traceurs</translation>
     </message>
     <message>
-        <source>CORIOLIS_COEFFICIENT</source>
-        <translation>Coefficient De Coriolis</translation>
+        <source>OPTION_FOR_THE_SOLVER_FOR_K_EPSILON_MODEL</source>
+        <translation>Option du solveur pour le modele K-Epsilon</translation>
     </message>
     <message>
-        <source>OPTION_FOR_TSUNAMI_GENERATION</source>
-        <translation>Option Pour La Generation De Tsunami</translation>
+        <source>conjugate_gradient_squared_stabilised_(cgstab)</source>
+        <translation>Gradient conjugue carre stabilise (CGSTAB)</translation>
     </message>
     <message>
-        <source>PHYSICAL_CHARACTERISTICS_OF_THE_TSUNAMI</source>
-        <translation>Parametres Physiques Du Tsunami</translation>
+        <source>PELVETIOPSIS_LIMITATA</source>
+        <translation>Pelvetiopsis limitata</translation>
     </message>
     <message>
-        <source>WATER_DENSITY</source>
-        <translation>Masse Volumique De L'eau</translation>
+        <source>LIKE_1_BUT_WITH_POROSITY_(DEFINA_METHOD)</source>
+        <translation>Comme 1 mais avec porosite (methode defina)</translation>
     </message>
     <message>
-        <source>GRAVITY_ACCELERATION</source>
-        <translation>Acceleration De La Pesanteur</translation>
+        <source>FRICTION_DATA</source>
+        <translation>Donnees pour le frottement</translation>
     </message>
     <message>
-        <source>VERTICAL_STRUCTURES</source>
-        <translation>Structures Verticales</translation>
+        <source>TUBES_DATA_FILE</source>
+        <translation>Fichier de donnees des buses</translation>
     </message>
     <message>
-        <source>SECONDARY_CURRENTS</source>
-        <translation>Courants Secondaires</translation>
+        <source>ZONES_FILE</source>
+        <translation>Fichier des zones</translation>
     </message>
     <message>
-        <source>PRODUCTION_COEFFICIENT_FOR_SECONDARY_CURRENTS</source>
-        <translation>Coefficient De Production Pour Courants Secondaires</translation>
+        <source>Mean_tide</source>
+        <translation>Maree moyenne (coef. presque 70)</translation>
     </message>
     <message>
-        <source>DISSIPATION_COEFFICIENT_FOR_SECONDARY_CURRENTS</source>
-        <translation>Coefficient De Dissipation Pour Courants Secondaires</translation>
+        <source>DENSITY_EFFECTS</source>
+        <translation>Effets de densite</translation>
     </message>
     <message>
-        <source>VELOCITY_DIFFUSIVITY</source>
-        <translation>Coefficient De Diffusion Des Vitesses</translation>
+        <source>THRESHOLD_DEPTH_FOR_RECEDING_PROCEDURE</source>
+        <translation>Profondeur limite pour procedure de ressuyage</translation>
     </message>
     <message>
-        <source>TURBULENCE_MODEL</source>
-        <translation>Modele De Turbulence</translation>
+        <source>explicit</source>
+        <translation>Explicite</translation>
     </message>
     <message>
-        <source>SOLVER_FOR_K_EPSILON_MODEL</source>
-        <translation>Solveur Pour Le Modele K-epsilon</translation>
+        <source>DRY_ELEMENTS_FROZEN</source>
+        <translation>Gel des elements decouvrants</translation>
     </message>
     <message>
-        <source>OPTION_FOR_THE_SOLVER_FOR_K_EPSILON_MODEL</source>
-        <translation>Option Du Solveur Pour Le Modele K-epsilon</translation>
+        <source>extrapolation</source>
+        <translation>Extrapolation</translation>
     </message>
     <message>
-        <source>PRECONDITIONING_FOR_K_EPSILON_MODEL</source>
-        <translation>Preconditionnement Pour Le Modele K-epsilon</translation>
+        <source>conjugate_gradient_on_normal_equation</source>
+        <translation>Gradient conjugue sur equation normal</translation>
     </message>
     <message>
-        <source>ACCURACY_OF_K</source>
-        <translation>Precision Sur K</translation>
+        <source>TREATMENT_OF_NEGATIVE_DEPTHS</source>
+        <translation>Traitement des hauteurs negatives</translation>
     </message>
     <message>
-        <source>ACCURACY_OF_EPSILON</source>
-        <translation>Precision Sur Epsilon</translation>
+        <source>STEERING_FILE</source>
+        <translation>Fichier des parametres</translation>
     </message>
     <message>
-        <source>MAXIMUM_NUMBER_OF_ITERATIONS_FOR_K_AND_EPSILON</source>
-        <translation>Maximum D'iterations Pour K Et Epsilon</translation>
+        <source>ZONE_NUMBER_IN_GEOGRAPHIC_SYSTEM</source>
+        <translation>Numero de fuseau ou projection dans le systeme geographique</translation>
     </message>
     <message>
-        <source>NON_DIMENSIONAL_DISPERSION_COEFFICIENTS</source>
-        <translation>Coefficients Adimensionnels De Dispersion</translation>
+        <source>DIFFUSION_OF_TRACERS</source>
+        <translation>Diffusion des traceurs</translation>
     </message>
     <message>
-        <source>TURBULENCE_MODEL_FOR_SOLID_BOUNDARIES</source>
-        <translation>Regime De Turbulence Pour Les Parois</translation>
+        <source>PREVIOUS_COMPUTATION_FILE</source>
+        <translation>Fichier du calcul precedent</translation>
     </message>
     <message>
-        <source>INFORMATION_ABOUT_K_EPSILON_MODEL</source>
-        <translation>Informations Sur Le Modele K-epsilon</translation>
+        <source>DIAMETER_OF_ROUGHNESS_ELEMENTS</source>
+        <translation>Diametre des elements de frottement</translation>
     </message>
     <message>
-        <source>ADVECTION_OF_K_AND_EPSILON</source>
-        <translation>Convection De K Et Epsilon</translation>
+        <source>friction_velocity</source>
+        <translation>Vitesse de frottement</translation>
     </message>
     <message>
-        <source>SCHEME_FOR_ADVECTION_OF_K_EPSILON</source>
-        <translation>Schema Pour La Convection Du K-epsilon</translation>
+        <source>NUMBER_OF_TIME_STEPS</source>
+        <translation>Nombre de pas de temps</translation>
     </message>
     <message>
-        <source>SCHEME_OPTION_FOR_ADVECTION_OF_K_EPSILON</source>
-        <translation>Option Du Schema Pour La Convection Du K-epsilon</translation>
+        <source>NEWMARK_TIME_INTEGRATION_COEFFICIENT</source>
+        <translation>Coefficient d'integration en temps de newmark</translation>
     </message>
     <message>
-        <source>TIME_STEP_REDUCTION_FOR_K_EPSILON_MODEL</source>
-        <translation>Reduction Du Pas De Temps Pour Le Modele K-epsilon</translation>
+        <source>TOMAWAC_STEERING_FILE</source>
+        <translation>Fichier des parametres de TOMAWAC</translation>
     </message>
     <message>
-        <source>EQUATIONS</source>
-        <translation>Equations</translation>
+        <source>CONSTANT_VISCOSITY</source>
+        <translation>Viscosite constante</translation>
     </message>
     <message>
-        <source>TREATMENT_OF_THE_LINEAR_SYSTEM</source>
-        <translation>Traitement Du Systeme Lineaire</translation>
+        <source>INITIAL_DEPTH</source>
+        <translation>Hauteur initiale</translation>
     </message>
     <message>
-        <source>FINITE_VOLUME_SCHEME</source>
-        <translation>Schema En Volumes Finis</translation>
+        <source>WATER_QUALITY</source>
+        <translation>Qualite d'eau</translation>
     </message>
     <message>
-        <source>SOLVER</source>
-        <translation>Solveur</translation>
+        <source>MAXIMUM_NUMBER_OF_ITERATIONS_FOR_DIFFUSION_OF_TRACERS</source>
+        <translation>Maximum d'iterations pour la diffusion des traceurs</translation>
     </message>
     <message>
-        <source>SOLVER_OPTION</source>
-        <translation>Option Du Solveur</translation>
+        <source>ANGLAIS</source>
+        <translation>Anglais</translation>
     </message>
     <message>
-        <source>SOLVER_ACCURACY</source>
-        <translation>Precision Du Solveur</translation>
+        <source>EQUATIONS_SOLVED_EVERYWHERE_WITH_CORRECTION_ON_TIDAL_FLATS</source>
+        <translation>Equations resolues partout, correction sur les bancs decouvrants</translation>
     </message>
     <message>
-        <source>MAXIMUM_NUMBER_OF_ITERATIONS_FOR_SOLVER</source>
-        <translation>Maximum D'iterations Pour Le Solveur</translation>
+        <source>LAW_OF_FRICTION_ON_LATERAL_BOUNDARIES</source>
+        <translation>Loi de frottement sur les parois laterales</translation>
     </message>
     <message>
-        <source>CONTINUITY_CORRECTION</source>
-        <translation>Correction De Continuite</translation>
+        <source>COUPLING_PERIOD_FOR_SISYPHE</source>
+        <translation>Periode de couplage pour sisyphe</translation>
     </message>
     <message>
-        <source>PRECONDITIONING</source>
-        <translation>Preconditionnement</translation>
+        <source>NON_CONSERVATIVE_PSI_SCHEME</source>
+        <translation>Schema PSI non conservatif</translation>
     </message>
     <message>
-        <source>C_U_PRECONDITIONING</source>
-        <translation>Preconditionnement C-u</translation>
+        <source>STAGE_DISCHARGE_CURVES_FILE</source>
+        <translation>Fichier des courbes de tarage</translation>
     </message>
     <message>
-        <source>DISCRETIZATIONS_IN_SPACE</source>
-        <translation>Discretisations En Espace</translation>
+        <source>INITIAL_CONDITIONS</source>
+        <translation>Conditions initiales</translation>
     </message>
     <message>
-        <source>IMPLICITATION_FOR_DEPTH</source>
-        <translation>Implicitation Pour La Hauteur</translation>
+        <source>predictor_corrector</source>
+        <translation>Predicteur-correcteur</translation>
     </message>
     <message>
-        <source>IMPLICITATION_FOR_VELOCITY</source>
-        <translation>Implicitation Pour La Vitesse</translation>
+        <source>LAMBERT</source>
+        <translation>Lambert</translation>
     </message>
     <message>
-        <source>PROPAGATION</source>
-        <translation>Propagation</translation>
+        <source>OPTION_FOR_THE_DIFFUSION_OF_TRACERS</source>
+        <translation>Option pour la diffusion des traceurs</translation>
     </message>
     <message>
-        <source>INITIAL_GUESS_FOR_H</source>
-        <translation>Ordre Du Tir Initial Pour H</translation>
+        <source>ACCURACY_OF_EPSILON</source>
+        <translation>Precision sur epsilon</translation>
     </message>
     <message>
-        <source>LINEARIZED_PROPAGATION</source>
-        <translation>Propagation Linearisee</translation>
+        <source>THRESHOLD_DEPTH_FOR_WIND</source>
+        <translation>Profondeur limite pour le vent</translation>
     </message>
     <message>
-        <source>INITIAL_GUESS_FOR_U</source>
-        <translation>Ordre Du Tir Initial Pour U</translation>
+        <source>SOLVER_ACCURACY</source>
+        <translation>Precision du solveur</translation>
     </message>
     <message>
-        <source>MEAN_DEPTH_FOR_LINEARIZATION</source>
-        <translation>Profondeur Moyenne Pour La Linearisation</translation>
+        <source>TURBULENCE_MODEL_FOR_SOLID_BOUNDARIES</source>
+        <translation>Regime de turbulence pour les parois</translation>
     </message>
     <message>
-        <source>ADVECTION</source>
-        <translation>Convection</translation>
+        <source>BOUNDARY_CONDITIONS_FILE</source>
+        <translation>Fichier des conditions aux limites</translation>
+    </message>
+    <message>
+        <source>VALIDATION</source>
+        <translation>Validation</translation>
+    </message>
+    <message>
+        <source>tracer</source>
+        <translation>Traceur</translation>
+    </message>
+    <message>
+        <source>TIDE_GENERATING_FORCE</source>
+        <translation>Force generatrice de la maree</translation>
+    </message>
+    <message>
+        <source>SUPG</source>
+        <translation>SUPG</translation>
+    </message>
+    <message>
+        <source>PRESCRIBED_FLOWRATES</source>
+        <translation>Debits imposes</translation>
+    </message>
+    <message>
+        <source>Mean_spring_tide</source>
+        <translation>Maree de vive-eau moyenne (coef. presque 95)</translation>
+    </message>
+    <message>
+        <source>BINARY_DATABASE_1_FOR_TIDE</source>
+        <translation>Base binaire 1 de donnees de maree</translation>
+    </message>
+    <message>
+        <source>LAW_OF_TRACERS_DEGRADATION</source>
+        <translation>Loi de degradation des traceurs</translation>
+    </message>
+    <message>
+        <source>SECTIONS_INPUT_FILE</source>
+        <translation>Fichier des sections de controle</translation>
+    </message>
+    <message>
+        <source>MINIMUM_VALUE_OF_DEPTH</source>
+        <translation>Valeur minimum de H</translation>
+    </message>
+    <message>
+        <source>No_tide</source>
+        <translation>Pas de maree</translation>
+    </message>
+    <message>
+        <source>SPACING_OF_ROUGHNESS_ELEMENTS</source>
+        <translation>Espacement des elements de frottement</translation>
+    </message>
+    <message>
+        <source>SCHEME_OPTION_FOR_ADVECTION_OF_K_EPSILON</source>
+        <translation>Option du schema pour la convection du K-Epsilon</translation>
+    </message>
+    <message>
+        <source>LISTING_PRINTOUT_PERIOD</source>
+        <translation>Periode de sortie listing</translation>
+    </message>
+    <message>
+        <source>COLEBROOK_WHITE</source>
+        <translation>Colebrook-white</translation>
+    </message>
+    <message>
+        <source>MINOR_CONSTITUENTS_INFERENCE</source>
+        <translation>Interpolation de composantes mineures</translation>
+    </message>
+    <message>
+        <source>CARTESIAN,_NOT_GEOREFERENCED</source>
+        <translation>Cartesien, non georeference</translation>
+    </message>
+    <message>
+        <source>No_Tsunami</source>
+        <translation>Pas de tsunami</translation>
+    </message>
+    <message>
+        <source>drift_along_x_(m)</source>
+        <translation>Derive en X (m)</translation>
+    </message>
+    <message>
+        <source>UTM_ZONE,_E.G.</source>
+        <translation>Zone utm, par exemple</translation>
+    </message>
+    <message>
+        <source>CONSERVATIVE_PSI_SCHEME</source>
+        <translation>Schema PSI conservatif</translation>
+    </message>
+    <message>
+        <source>PREVIOUS_COMPUTATION_FILE_FORMAT</source>
+        <translation>Format du fichier du calcul precedent</translation>
+    </message>
+    <message>
+        <source>VALUES_OF_THE_TRACERS_AT_THE_SOURCES</source>
+        <translation>Valeurs des traceurs des sources</translation>
+    </message>
+    <message>
+        <source>linear</source>
+        <translation>Lineaire</translation>
+    </message>
+    <message>
+        <source>BINARY_RESULTS_FILE</source>
+        <translation>Fichier de resultats binaire</translation>
+    </message>
+    <message>
+        <source>diagonal</source>
+        <translation>Diagonal</translation>
+    </message>
+    <message>
+        <source>EXCHANGE_AREAS_DELWAQ_FILE</source>
+        <translation>Fichier DELWAQ des surfaces de flux</translation>
+    </message>
+    <message>
+        <source>IMPLICITATION_FOR_DIFFUSION_OF_VELOCITY</source>
+        <translation>Implicitation pour la diffusion des vitesses</translation>
+    </message>
+    <message>
+        <source>conjugate_gradient</source>
+        <translation>Gradient conjuge</translation>
+    </message>
+    <message>
+        <source>WGS84_NORTHERN_UTM</source>
+        <translation>WGS84 nord utm</translation>
+    </message>
+    <message>
+        <source>WEIRS_DATA_FILE</source>
+        <translation>Fichier de donnees des seuils</translation>
+    </message>
+    <message>
+        <source>IMPLICITATION_FOR_VELOCITY</source>
+        <translation>Implicitation pour la vitesse</translation>
+    </message>
+    <message>
+        <source>DEFINITION_OF_ZONES</source>
+        <translation>Definition de zones</translation>
+    </message>
+    <message>
+        <source>MAXIMUM_NUMBER_OF_ITERATIONS_FOR_K_AND_EPSILON</source>
+        <translation>Maximum d'iterations pour k et epsilon</translation>
+    </message>
+    <message>
+        <source>MEAN_DEPTH_FOR_LINEARIZATION</source>
+        <translation>Profondeur moyenne pour la linearisation</translation>
+    </message>
+    <message>
+        <source>3_points</source>
+        <translation>3 points</translation>
+    </message>
+    <message>
+        <source>wind_along_y_axis_(m/s)</source>
+        <translation>Vent suivant l'axe des Y (m/s)</translation>
+    </message>
+    <message>
+        <source>div(_nu_grad(T)_)</source>
+        <translation>Div( nu grad(t) )</translation>
+    </message>
+    <message>
+        <source>minimum_error</source>
+        <translation>Erreur minimale</translation>
+    </message>
+    <message>
+        <source>SCHEME_OPTION_FOR_ADVECTION_OF_VELOCITIES</source>
+        <translation>Option du schema pour la convection des vitesses</translation>
+    </message>
+    <message>
+        <source>DESIRED_COURANT_NUMBER</source>
+        <translation>Nombre de courant souhaite</translation>
+    </message>
+    <message>
+        <source>flowrate_along_x_axis_(m2/s)</source>
+        <translation>Debit suivant l'axe des X (m2/s)</translation>
+    </message>
+    <message>
+        <source>SUPG_OPTION</source>
+        <translation>Option de SUPG</translation>
+    </message>
+    <message>
+        <source>1/h_div_(_h_nu_grad(T)</source>
+        <translation>1/h div ( h nu grad(t)</translation>
+    </message>
+    <message>
+        <source>crout</source>
+        <translation>Crout</translation>
+    </message>
+    <message>
+        <source>conjugate_gradient_squared</source>
+        <translation>Gradient conjugue carre</translation>
+    </message>
+    <message>
+        <source>STOP_IF_A_STEADY_STATE_IS_REACHED</source>
+        <translation>Arret si un etat permanent est atteint</translation>
+    </message>
+    <message>
+        <source>DEFAULT_PARALLEL_EXECUTABLE</source>
+        <translation>Executable parallele par defaut</translation>
+    </message>
+    <message>
+        <source>INFORMATION_ABOUT_SOLVER</source>
+        <translation>Informations sur le solveur</translation>
+    </message>
+    <message>
+        <source>K_EPSILON_MODEL</source>
+        <translation>Modele K-Epsilon</translation>
+    </message>
+    <message>
+        <source>AIR_PRESSURE</source>
+        <translation>Pression atmospherique</translation>
+    </message>
+    <message>
+        <source>RESULTS_FILE</source>
+        <translation>Fichier des resultats</translation>
+    </message>
+    <message>
+        <source>VERTICAL_FLUXES_DELWAQ_FILE</source>
+        <translation>Fichier DELWAQ des flux verticaux</translation>
+    </message>
+    <message>
+        <source>DELWAQ_STEERING_FILE</source>
+        <translation>Fichier de commande DELWAQ</translation>
+    </message>
+    <message>
+        <source>wind_along_x_axis_(m/s)</source>
+        <translation>Vent suivant l'axe des X (m/s)</translation>
+    </message>
+    <message>
+        <source>Lagrange_interp.</source>
+        <translation>Interp. de lagrange</translation>
+    </message>
+    <message>
+        <source>MASS_BALANCE</source>
+        <translation>Bilan de masse</translation>
+    </message>
+    <message>
+        <source>turbulent_viscosity_(m2/s)</source>
+        <translation>Viscosite turbulente (m2/s)</translation>
+    </message>
+    <message>
+        <source>OPTION_FOR_TIDAL_BOUNDARY_CONDITIONS</source>
+        <translation>Option pour les conditions aux limites de maree</translation>
+    </message>
+    <message>
+        <source>ADVECTION_OF_TRACERS</source>
+        <translation>Convection des traceurs</translation>
+    </message>
+    <message>
+        <source>DIFFUSION_OF_VELOCITY</source>
+        <translation>Diffusion des vitesses</translation>
+    </message>
+    <message>
+        <source>scalar_velocity_(m/s)</source>
+        <translation>Vitesse scalaire (m/s)</translation>
+    </message>
+    <message>
+        <source>COEFFICIENT_OF_WIND_INFLUENCE</source>
+        <translation>Coefficient d'influence du vent</translation>
+    </message>
+    <message>
+        <source>PRODUCTION_COEFFICIENT_FOR_SECONDARY_CURRENTS</source>
+        <translation>Coefficient de production pour courants secondaires</translation>
+    </message>
+    <message>
+        <source>HLLC_scheme_order_1</source>
+        <translation>Schéma HLLC ordre 1</translation>
+    </message>
+    <message>
+        <source>RESULTS_FILE_FORMAT</source>
+        <translation>Format du fichier des resultats</translation>
+    </message>
+    <message>
+        <source>COUPLING_PERIOD_FOR_TOMAWAC</source>
+        <translation>Periode de couplage pour TOMAWAC</translation>
+    </message>
+    <message>
+        <source>NUMBER_OF_PRIVATE_ARRAYS</source>
+        <translation>Nombre de tableaux prives</translation>
+    </message>
+    <message>
+        <source>MAXIMUM_NUMBER_OF_FRICTION_DOMAINS</source>
+        <translation>Nombre maximum de domaines de frottement</translation>
+    </message>
+    <message>
+        <source>DURATION</source>
+        <translation>Duree du calcul</translation>
+    </message>
+    <message>
+        <source>BINARY_DATA_FILE_2_FORMAT</source>
+        <translation>Format du fichier de donnees binaire 2</translation>
+    </message>
+    <message>
+        <source>HORIZONTAL_WITH_SAME_NUMBER_OF_NODES_UPSTREAM/DOWNSTREAM</source>
+        <translation>Horizontal avec meme nombre de noeuds amont/aval</translation>
+    </message>
+    <message>
+        <source>OPTION_FOR_THE_DIFFUSION_OF_VELOCITIES</source>
+        <translation>Option pour la diffusion des vitesses</translation>
+    </message>
+    <message>
+        <source>MASS_LUMPING_ON_TRACERS</source>
+        <translation>Mass-lumping sur les traceurs</translation>
+    </message>
+    <message>
+        <source>NORTH</source>
+        <translation>Nord</translation>
+    </message>
+    <message>
+        <source>RAIN_OR_EVAPORATION</source>
+        <translation>Pluie ou evaporation</translation>
+    </message>
+    <message>
+        <source>FRANCAIS</source>
+        <translation>Francais</translation>
+    </message>
+    <message>
+        <source>PARTITIONING_TOOL</source>
+        <translation>Partitionneur</translation>
+    </message>
+    <message>
+        <source>FORMATTED_RESULTS_FILE</source>
+        <translation>Fichier de resultats formate</translation>
+    </message>
+    <message>
+        <source>VERTICAL_STRUCTURES</source>
+        <translation>Structures verticales</translation>
+    </message>
+    <message>
+        <source>OPTION_FOR_TSUNAMI_GENERATION</source>
+        <translation>Option pour la generation de tsunami</translation>
+    </message>
+    <message>
+        <source>VARIABLE_TIME_STEP</source>
+        <translation>Pas de temps variable</translation>
+    </message>
+    <message>
+        <source>IRIDAEA_FLACCIDA_(CLOSE_TO_ULVA)</source>
+        <translation>Iridaea flaccida (proche des ulves)</translation>
+    </message>
+    <message>
+        <source>PROPAGATION_OPTION</source>
+        <translation>Option de propagation</translation>
+    </message>
+    <message>
+        <source>REFERENCE_FILE</source>
+        <translation>Fichier de reference</translation>
+    </message>
+    <message>
+        <source>TIDAL_DATA_BASE</source>
+        <translation>Base de donnees de maree</translation>
+    </message>
+    <message>
+        <source>INITIAL_ELEVATION</source>
+        <translation>Cote initiale</translation>
+    </message>
+    <message>
+        <source>average</source>
+        <translation>Moyenne</translation>
+    </message>
+    <message>
+        <source>STOCHASTIC_DIFFUSION_MODEL</source>
+        <translation>Modele de diffusion stochastique</translation>
+    </message>
+    <message>
+        <source>FORTRAN_FILE</source>
+        <translation>Fichier fortran</translation>
+    </message>
+    <message>
+        <source>BREACH</source>
+        <translation>Breche</translation>
+    </message>
+    <message>
+        <source>Z(Q)</source>
+        <translation>Z(Q)</translation>
+    </message>
+    <message>
+        <source>NO_DEFAULT_VALUE</source>
+        <translation>Pas de valeur par defaut</translation>
+    </message>
+    <message>
+        <source>no_preconditioning</source>
+        <translation>Aucun</translation>
+    </message>
+    <message>
+        <source>TIME_STEP</source>
+        <translation>Pas de temps</translation>
+    </message>
+    <message>
+        <source>rough</source>
+        <translation>Rugueux</translation>
+    </message>
+    <message>
+        <source>SALINITY_DELWAQ_FILE</source>
+        <translation>Fichier DELWAQ de la salinite</translation>
+    </message>
+    <message>
+        <source>IMPLICITATION_FOR_DEPTH</source>
+        <translation>Implicitation pour la hauteur</translation>
+    </message>
+    <message>
+        <source>NUMBER_OF_LAGRANGIAN_DRIFTS</source>
+        <translation>Nombre de derives lagrangiennes</translation>
+    </message>
+    <message>
+        <source>TEMPERATURE_FOR_DELWAQ</source>
+        <translation>Temperature pour DELWAQ</translation>
+    </message>
+    <message>
+        <source>GENERAL</source>
+        <translation>Generale</translation>
+    </message>
+    <message>
+        <source>SECONDARY_CURRENTS</source>
+        <translation>Courants secondaires</translation>
+    </message>
+    <message>
+        <source>PRECONDITIONING</source>
+        <translation>Preconditionnement</translation>
+    </message>
+    <message>
+        <source>MANNING_DEFAULT_VALUE_FOR_COLEBROOK_WHITE_LAW</source>
+        <translation>Valeur par defaut du manning pour la loi de colebrook-white</translation>
+    </message>
+    <message>
+        <source>ADVECTION_OF_H</source>
+        <translation>Convection de H</translation>
+    </message>
+    <message>
+        <source>DEBUGGER</source>
+        <translation>Debugger</translation>
+    </message>
+    <message>
+        <source>LATITUDE_OF_ORIGIN_POINT</source>
+        <translation>Latitude du point origine</translation>
+    </message>
+    <message>
+        <source>PRESCRIBED_TRACERS_VALUES</source>
+        <translation>Valeurs imposees des traceurs</translation>
+    </message>
+    <message>
+        <source>RECORD_NUMBER_FOR_RESTART</source>
+        <translation>Enregistrement pour suite de calcul</translation>
+    </message>
+    <message>
+        <source>turbulent_viscosity_of_k_epsilon_model_(m2/s)</source>
+        <translation>Viscosite turbulente du modele K-Epsilon (m2/s)</translation>
+    </message>
+    <message>
+        <source>LISTING_PRINTOUT</source>
+        <translation>Sortie listing</translation>
+    </message>
+    <message>
+        <source>CORIOLIS_COEFFICIENT</source>
+        <translation>Coefficient de coriolis</translation>
+    </message>
+    <message>
+        <source>TURBULENCE_MODEL</source>
+        <translation>Modele de turbulence</translation>
+    </message>
+    <message>
+        <source>NUMBER_OF_FIRST_TIME_STEP_FOR_LISTING_PRINTOUTS</source>
+        <translation>Numero du premier pas de temps pour les sorties listing</translation>
+    </message>
+    <message>
+        <source>PRINTING_CUMULATED_FLOWRATES</source>
+        <translation>Impression du cumul des flux</translation>
+    </message>
+    <message>
+        <source>OPTION_FOR_THE_TREATMENT_OF_TIDAL_FLATS</source>
+        <translation>Option de traitement des bancs decouvrants</translation>
+    </message>
+    <message>
+        <source>variable_in_time_and_space_given_by_formated_file</source>
+        <translation>Variable en temps et en espace donne par fichier formate</translation>
+    </message>
+    <message>
+        <source>CONTROL_SECTIONS</source>
+        <translation>Sections de controle</translation>
+    </message>
+    <message>
+        <source>SOLVER_FOR_DIFFUSION_OF_TRACERS</source>
+        <translation>Solveur pour la diffusion des traceurs</translation>
+    </message>
+    <message>
+        <source>SECTIONS_OUTPUT_FILE</source>
+        <translation>Fichier de sortie des sections de controle</translation>
+    </message>
+    <message>
+        <source>NUMBER_OF_SUB_STEPS_OF_DISTRIBUTIVE_SCHEMES</source>
+        <translation>Nombre de sous-pas des schemas distributifs</translation>
+    </message>
+    <message>
+        <source>UPWIND_COEFFICIENTS</source>
+        <translation>Coefficients de decentrement</translation>
+    </message>
+    <message>
+        <source>time_of_maximum_elevation</source>
+        <translation>Temps de la cote maximum</translation>
+    </message>
+    <message>
+        <source>ALGAE_TYPE</source>
+        <translation>Type des algues</translation>
+    </message>
+    <message>
+        <source>RAIN_OR_EVAPORATION_IN_MM_PER_DAY</source>
+        <translation>Pluie ou evaporation en mm par jour</translation>
+    </message>
+    <message>
+        <source>FORMATTED_DATA_FILE_1</source>
+        <translation>Fichier de donnees formate 1</translation>
+    </message>
+    <message>
+        <source>FORMATTED_DATA_FILE_2</source>
+        <translation>Fichier de donnees formate 2</translation>
+    </message>
+    <message>
+        <source>C_U_PRECONDITIONING</source>
+        <translation>Preconditionnement C-U</translation>
+    </message>
+    <message>
+        <source>LIST_OF_POINTS</source>
+        <translation>Liste de points</translation>
+    </message>
+    <message>
+        <source>WGS84_LONGITUDE/LATITUDE_IN_REAL_DEGREES</source>
+        <translation>WGS84 longitude/latitude en degres reels</translation>
+    </message>
+    <message>
+        <source>MISCELLANEOUS_(LEGOS_NEA,_FES20XX,_PREVIMER...)</source>
+        <translation>Divers (LEGOS-NEA, FES20XX, PREVIMER...)</translation>
+    </message>
+    <message>
+        <source>conj_gradient</source>
+        <translation>Gradient conj</translation>
+    </message>
+    <message>
+        <source>weak</source>
+        <translation>Faibles</translation>
+    </message>
+    <message>
+        <source>SCHEME_FOR_ADVECTION_OF_VELOCITIES</source>
+        <translation>Schema pour la convection des vitesses</translation>
+    </message>
+    <message>
+        <source>gmres_(see_option_for_the_solver_for_k_epsilon_model)</source>
+        <translation>GMRES (voir aussi option du solveur pour le modele K-Epsilon</translation>
+    </message>
+    <message>
+        <source>NO_ADVECTION</source>
+        <translation>Pas de convection</translation>
+    </message>
+    <message>
+        <source>NUMBER_OF_FIRST_TIME_STEP_FOR_GRAPHIC_PRINTOUTS</source>
+        <translation>Numero du premier pas de temps pour les sorties graphiques</translation>
+    </message>
+    <message>
+        <source>DEPTH_IN_FRICTION_TERMS</source>
+        <translation>Hauteur dans les termes de frottement</translation>
+    </message>
+    <message>
+        <source>FOURIER_ANALYSIS_PERIODS</source>
+        <translation>Periodes d'analyse de fourier</translation>
+    </message>
+    <message>
+        <source>EQUATIONS</source>
+        <translation>Equations</translation>
+    </message>
+    <message>
+        <source>MAXIMUM_NUMBER_OF_ITERATIONS_FOR_IDENTIFICATION</source>
+        <translation>Maximum d'iterations pour l'identification</translation>
+    </message>
+    <message>
+        <source>WIND</source>
+        <translation>Vent</translation>
+    </message>
+    <message>
+        <source>SPEED_AND_DIRECTION_OF_WIND</source>
+        <translation>Vitesse et direction du vent</translation>
+    </message>
+    <message>
+        <source>TYPE_OF_SOURCES</source>
+        <translation>Type des sources</translation>
+    </message>
+    <message>
+        <source>TITLE</source>
+        <translation>Titre</translation>
+    </message>
+    <message>
+        <source>MASS_LUMPING_ON_H</source>
+        <translation>Mass-lumping sur H</translation>
+    </message>
+    <message>
+        <source>NUMBER_OF_SUB_ITERATIONS_FOR_NON_LINEARITIES</source>
+        <translation>Nombre de sous-iterations pour les non-linearites</translation>
+    </message>
+    <message>
+        <source>PSI_SCHEME_OPTION</source>
+        <translation>Option du schema PSI</translation>
+    </message>
+    <message>
+        <source>LIQUID_BOUNDARIES_FILE</source>
+        <translation>Fichier des frontieres liquides</translation>
+    </message>
+    <message>
+        <source>VELOCITIES_OF_THE_SOURCES_ALONG_X</source>
+        <translation>Vitesses des sources selon X</translation>
+    </message>
+    <message>
+        <source>VELOCITIES_OF_THE_SOURCES_ALONG_Y</source>
+        <translation>Vitesses des sources selon Y</translation>
+    </message>
+    <message>
+        <source>CHARACTERISTICS</source>
+        <translation>Caracteristiques</translation>
+    </message>
+    <message>
+        <source>BOTTOM_SMOOTHINGS</source>
+        <translation>Lissages du fond</translation>
+    </message>
+    <message>
+        <source>SALINITY_FOR_DELWAQ</source>
+        <translation>Salinite pour DELWAQ</translation>
+    </message>
+    <message>
+        <source>OPTION_FOR_CHARACTERISTICS</source>
+        <translation>Option pour les caracteristiques</translation>
+    </message>
+    <message>
+        <source>MAXIMUM_NUMBER_OF_TRACERS</source>
+        <translation>Nombre maximum de traceurs</translation>
+    </message>
+    <message>
+        <source>maximum_velocity</source>
+        <translation>Vitesse maximum</translation>
+    </message>
+    <message>
+        <source>FREE_INTEGER_20</source>
+        <translation>Entier libre 20</translation>
+    </message>
+    <message>
+        <source>ZERO</source>
+        <translation>Zero</translation>
+    </message>
+    <message>
+        <source>OPTION_FOR_WIND</source>
+        <translation>Option du vent</translation>
+    </message>
+    <message>
+        <source>BINARY_DATA_FILE_1</source>
+        <translation>Fichier de donnees binaire 1</translation>
+    </message>
+    <message>
+        <source>BINARY_DATA_FILE_2</source>
+        <translation>Fichier de donnees binaire 2</translation>
+    </message>
+    <message>
+        <source>free_surface_elevation_(m)</source>
+        <translation>Cote de surface libre (m)</translation>
+    </message>
+    <message>
+        <source>PRESCRIBED_VELOCITIES</source>
+        <translation>Vitesses imposees</translation>
+    </message>
+    <message>
+        <source>water_depth_(m)</source>
+        <translation>Hauteur d'eau (m)</translation>
+    </message>
+    <message>
+        <source>VELOCITY_DELWAQ_FILE</source>
+        <translation>Fichier DELWAQ de la vitesse</translation>
+    </message>
+    <message>
+        <source>kinetic_order_2</source>
+        <translation>Schéma cinetique ordre 2</translation>
+    </message>
+    <message>
+        <source>kinetic_order_1</source>
+        <translation>Schéma cinetique ordre 1</translation>
+    </message>
+    <message>
+        <source>coupled</source>
+        <translation>Traitement couple</translation>
+    </message>
+    <message>
+        <source>LAMBERT_2_CENTER</source>
+        <translation>Lambert 2 centre</translation>
+    </message>
+    <message>
+        <source>COMPATIBLE_COMPUTATION_OF_FLUXES</source>
+        <translation>Calcul compatible des flux</translation>
+    </message>
+    <message>
+        <source>Astronomical_neap_tide</source>
+        <translation>Maree de morte-eau exceptionnelle (coef. presque 20)</translation>
+    </message>
+    <message>
+        <source>NUMBER_OF_TRACERS</source>
+        <translation>Nombre de traceurs</translation>
+    </message>
+    <message>
+        <source>Dirac</source>
+        <translation>Dirac</translation>
+    </message>
+    <message>
+        <source>COUPLING_DIRECTORY</source>
+        <translation>Dossier de couplage</translation>
+    </message>
+    <message>
+        <source>DEFAULT_EXECUTABLE</source>
+        <translation>Executable par defaut</translation>
     </message>
     <message>
-        <source>ADVECTION_OF_H</source>
-        <translation>Convection De H</translation>
+        <source>GEOMETRY_FILE</source>
+        <translation>Fichier de geometrie</translation>
     </message>
     <message>
-        <source>ADVECTION_OF_U_AND_V</source>
-        <translation>Convection De U Et V</translation>
+        <source>DICTIONARY</source>
+        <translation>Dictionnaire</translation>
     </message>
     <message>
-        <source>TYPE_OF_ADVECTION</source>
-        <translation>Forme De La Convection</translation>
+        <source>WAF_scheme_order_2</source>
+        <translation>Schéma WAF ordre 2</translation>
     </message>
     <message>
-        <source>OPTION_FOR_CHARACTERISTICS</source>
-        <translation>Option Pour Les Caracteristiques</translation>
+        <source>VARIABLES_FOR_GRAPHIC_PRINTOUTS</source>
+        <translation>Variables pour les sorties graphiques</translation>
     </message>
     <message>
-        <source>SUPG_OPTION</source>
-        <translation>Option De Supg</translation>
+        <source>INFORMATION_ABOUT_K_EPSILON_MODEL</source>
+        <translation>Informations sur le modele K-Epsilon</translation>
     </message>
     <message>
-        <source>NUMBER_OF_GAUSS_POINTS_FOR_WEAK_CHARACTERISTICS</source>
-        <translation>Nombre De Points De Gauss Pour Les Caracteristiques Faibles</translation>
+        <source>OIL_SPILL_STEERING_FILE</source>
+        <translation>Fichier de commandes hydrocarbures</translation>
     </message>
     <message>
-        <source>MASS_LUMPING_FOR_WEAK_CHARACTERISTICS</source>
-        <translation>Mass-lumping Pour Les Caracteristiques Faibles</translation>
+        <source>MAXIMUM_NUMBER_OF_BOUNDARIES</source>
+        <translation>Nombre maximum de frontieres</translation>
     </message>
     <message>
-        <source>MAXIMUM_NUMBER_OF_ITERATIONS_FOR_ADVECTION_SCHEMES</source>
-        <translation>Maximum D'iterations Pour Les Schemas De Convection</translation>
+        <source>DIFFUSIVITY_DELWAQ_FILE</source>
+        <translation>Fichier DELWAQ de la diffusion</translation>
     </message>
     <message>
-        <source>UPWIND_COEFFICIENTS</source>
-        <translation>Coefficients De Decentrement</translation>
+        <source>Thompson_method_based_on_characteristics</source>
+        <translation>Methode de thompson avec calcul de caracteristiques</translation>
     </message>
     <message>
-        <source>MASS_LUMPING_ON_H</source>
-        <translation>Mass-lumping Sur H</translation>
+        <source>DESCRIPTION_OF_LIBRARIES</source>
+        <translation>Description des librairies</translation>
     </message>
     <message>
-        <source>MASS_LUMPING_ON_VELOCITY</source>
-        <translation>Mass-lumping Sur La Vitesse</translation>
+        <source>NUMBER_OF_WEIRS</source>
+        <translation>Nombre de seuils</translation>
     </message>
     <message>
-        <source>SCHEME_FOR_ADVECTION_OF_VELOCITIES</source>
-        <translation>Schema Pour La Convection Des Vitesses</translation>
+        <source>SPHERE</source>
+        <translation>Sphere</translation>
     </message>
     <message>
-        <source>SCHEME_OPTION_FOR_ADVECTION_OF_VELOCITIES</source>
-        <translation>Option Du Schema Pour La Convection Des Vitesses</translation>
+        <source>Computed_with_c,u,v</source>
+        <translation>Calculee avec C,U,V</translation>
     </message>
     <message>
-        <source>FREE_SURFACE_GRADIENT_COMPATIBILITY</source>
-        <translation>Compatibilite Du Gradient De Surface Libre</translation>
+        <source>Astronomical_tide</source>
+        <translation>Maree de vive-eau exceptionnelle (coef. presque 120)</translation>
     </message>
     <message>
-        <source>NUMBER_OF_SUB_ITERATIONS_FOR_NON_LINEARITIES</source>
-        <translation>Nombre De Sous-iterations Pour Les Non-linearites</translation>
+        <source>velocity_along_y_axis_(m/s)</source>
+        <translation>Vitesse suivant l'axe des Y (m/s)</translation>
     </message>
     <message>
-        <source>TREATMENT_OF_FLUXES_AT_THE_BOUNDARIES</source>
-        <translation>Traitement Des Flux Aux Frontieres</translation>
+        <source>CULVERT_DATA_FILE</source>
+        <translation>Fichier de donnees des siphons</translation>
     </message>
     <message>
-        <source>DIFFUSION_OF_VELOCITY</source>
-        <translation>Diffusion Des Vitesses</translation>
+        <source>bottom_elevation_(m)</source>
+        <translation>Cote du fond (m)</translation>
     </message>
     <message>
-        <source>OPTION_FOR_THE_DIFFUSION_OF_VELOCITIES</source>
-        <translation>Option Pour La Diffusion Des Vitesses</translation>
+        <source>EXCHANGES_BETWEEN_NODES_DELWAQ_FILE</source>
+        <translation>Fichier DELWAQ des echanges entre noeuds</translation>
     </message>
     <message>
-        <source>IMPLICITATION_FOR_DIFFUSION_OF_VELOCITY</source>
-        <translation>Implicitation Pour La Diffusion Des Vitesses</translation>
+        <source>SOLVER_OPTION_FOR_TRACERS_DIFFUSION</source>
+        <translation>Option du solveur pour la diffusion des traceurs</translation>
     </message>
     <message>
-        <source>MATRIX_STORAGE</source>
-        <translation>Stockage Des Matrices</translation>
+        <source>INITIAL_VALUES_OF_TRACERS</source>
+        <translation>Valeurs initiales des traceurs</translation>
     </message>
     <message>
-        <source>MATRIX_VECTOR_PRODUCT</source>
-        <translation>Produit Matrice-vecteur</translation>
+        <source>flowrate_along_y_axis_(m2/s)</source>
+        <translation>Debit suivant l'axe des Y (m2/s)</translation>
     </message>
     <message>
-        <source>NEWMARK_TIME_INTEGRATION_COEFFICIENT</source>
-        <translation>Coefficient D'integration En Temps De Newmark</translation>
+        <source>NUMBER_OF_TUBES</source>
+        <translation>Nombre de buses</translation>
     </message>
     <message>
-        <source>ZERO</source>
-        <translation>Zero</translation>
+        <source>LONGITUDE_OF_ORIGIN_POINT</source>
+        <translation>Longitude du point origine</translation>
     </message>
     <message>
-        <source>TIDAL_FLATS</source>
-        <translation>Bancs Decouvrants</translation>
+        <source>MAXIMUM_NUMBER_OF_ITERATIONS_FOR_SOLVER</source>
+        <translation>Maximum d'iterations pour le solveur</translation>
     </message>
     <message>
-        <source>OPTION_FOR_THE_TREATMENT_OF_TIDAL_FLATS</source>
-        <translation>Option De Traitement Des Bancs Decouvrants</translation>
+        <source>CORIOLIS</source>
+        <translation>Coriolis</translation>
     </message>
     <message>
-        <source>TREATMENT_OF_NEGATIVE_DEPTHS</source>
-        <translation>Traitement Des Hauteurs Negatives</translation>
+        <source>ADVECTION</source>
+        <translation>Convection</translation>
     </message>
     <message>
-        <source>THRESHOLD_FOR_NEGATIVE_DEPTHS</source>
-        <translation>Seuil Pour Les Profondeurs Negatives</translation>
+        <source>Edge_based_storage</source>
+        <translation>Stockage par segments</translation>
     </message>
     <message>
-        <source>THRESHOLD_DEPTH_FOR_RECEDING_PROCEDURE</source>
-        <translation>Profondeur Limite Pour Procedure De Ressuyage</translation>
+        <source>EXPLICIT_+_MURD_SCHEME_PSI</source>
+        <translation>Explicite + murd schema PSI</translation>
     </message>
     <message>
-        <source>H_CLIPPING</source>
-        <translation>Clipping De H</translation>
+        <source>previous</source>
+        <translation>Precedent</translation>
     </message>
     <message>
-        <source>MINIMUM_VALUE_OF_DEPTH</source>
-        <translation>Valeur Minimum De H</translation>
+        <source>ABSCISSAE_OF_SOURCES</source>
+        <translation>Abscisses des sources</translation>
     </message>
     <message>
-        <source>NUMBER_OF_TRACERS</source>
-        <translation>Nombre De Traceurs</translation>
+        <source>VECTOR_LENGTH</source>
+        <translation>Longueur du vecteur</translation>
     </message>
     <message>
-        <source>NAMES_OF_TRACERS</source>
-        <translation>Noms Des Traceurs</translation>
+        <source>GRAPHIC_PRINTOUT_PERIOD</source>
+        <translation>Periode pour les sorties graphiques</translation>
     </message>
     <message>
-        <source>INITIAL_VALUES_OF_TRACERS</source>
-        <translation>Valeurs Initiales Des Traceurs</translation>
+        <source>COUPLING_WITH</source>
+        <translation>Couplage avec</translation>
     </message>
     <message>
-        <source>DENSITY_EFFECTS</source>
-        <translation>Effets De Densite</translation>
+        <source>CHEZY</source>
+        <translation>CHEZY</translation>
     </message>
     <message>
-        <source>MEAN_TEMPERATURE</source>
-        <translation>Temperature Moyenne</translation>
+        <source>variable_in_time_given_by_formated_file</source>
+        <translation>Variable en temps donne par fichier formate</translation>
     </message>
     <message>
-        <source>PRESCRIBED_TRACERS_VALUES</source>
-        <translation>Valeurs Imposees Des Traceurs</translation>
+        <source>WATER_DISCHARGE_OF_SOURCES</source>
+        <translation>Debits des sources</translation>
     </message>
     <message>
-        <source>SOLVER_FOR_DIFFUSION_OF_TRACERS</source>
-        <translation>Solveur Pour La Diffusion Des Traceurs</translation>
+        <source>ADVECTION_OF_U_AND_V</source>
+        <translation>Convection de U et V</translation>
     </message>
     <message>
-        <source>SOLVER_OPTION_FOR_TRACERS_DIFFUSION</source>
-        <translation>Option Du Solveur Pour La Diffusion Des Traceurs</translation>
+        <source>Zokagoa_scheme_order_1</source>
+        <translation>Schéma Zokagoa ordre 1</translation>
     </message>
     <message>
-        <source>PRECONDITIONING_FOR_DIFFUSION_OF_TRACERS</source>
-        <translation>Preconditionnement Pour La Diffusion Des Traceurs</translation>
+        <source>DEFINED_BY_USER</source>
+        <translation>Defini par l'utilisateur</translation>
     </message>
     <message>
-        <source>ACCURACY_FOR_DIFFUSION_OF_TRACERS</source>
-        <translation>Precision Pour La Diffusion Des Traceurs</translation>
+        <source>LATITUDE_LONGITUDE</source>
+        <translation>Latitude longitude</translation>
     </message>
     <message>
-        <source>MAXIMUM_NUMBER_OF_ITERATIONS_FOR_DIFFUSION_OF_TRACERS</source>
-        <translation>Maximum D'iterations Pour La Diffusion Des Traceurs</translation>
+        <source>VOLUMES_DELWAQ_FILE</source>
+        <translation>Fichier DELWAQ des volumes</translation>
     </message>
     <message>
-        <source>VALUES_OF_THE_TRACERS_AT_THE_SOURCES</source>
-        <translation>Valeurs Des Traceurs Des Sources</translation>
+        <source>VELOCITY_FOR_DELWAQ</source>
+        <translation>Vitesse pour DELWAQ</translation>
     </message>
     <message>
-        <source>VALUES_OF_TRACERS_IN_THE_RAIN</source>
-        <translation>Valeurs Des Traceurs Dans La Pluie</translation>
+        <source>ROUGHNESS_COEFFICIENT_OF_BOUNDARIES</source>
+        <translation>Coefficient de rugosite des bords</translation>
     </message>
     <message>
-        <source>ADVECTION_OF_TRACERS</source>
-        <translation>Convection Des Traceurs</translation>
+        <source>TPXO</source>
+        <translation>TPXO</translation>
     </message>
     <message>
-        <source>IMPLICITATION_COEFFICIENT_OF_TRACERS</source>
-        <translation>Coefficient D'implicitation Des Traceurs</translation>
+        <source>INITIAL_TIME_SET_TO_ZERO</source>
+        <translation>Remise a zero du temps</translation>
     </message>
     <message>
-        <source>DIFFUSION_OF_TRACERS</source>
-        <translation>Diffusion Des Traceurs</translation>
+        <source>EXPLICIT_+_SUPG</source>
+        <translation>Explicite + SUPG</translation>
     </message>
     <message>
-        <source>COEFFICIENT_FOR_DIFFUSION_OF_TRACERS</source>
-        <translation>Coefficient De Diffusion Des Traceurs</translation>
+        <source>INITIAL_GUESS_FOR_U</source>
+        <translation>Ordre du tir initial pour U</translation>
     </message>
     <message>
-        <source>OPTION_FOR_THE_DIFFUSION_OF_TRACERS</source>
-        <translation>Option Pour La Diffusion Des Traceurs</translation>
+        <source>SCHEME_FOR_ADVECTION_OF_K_EPSILON</source>
+        <translation>Schema pour la convection du K-Epsilon</translation>
     </message>
     <message>
-        <source>SCHEME_FOR_ADVECTION_OF_TRACERS</source>
-        <translation>Schema Pour La Convection Des Traceurs</translation>
+        <source>NO_DEGRADATION</source>
+        <translation>Pas de degradation</translation>
     </message>
     <message>
-        <source>SCHEME_OPTION_FOR_ADVECTION_OF_TRACERS</source>
-        <translation>Option Du Schema Pour La Convection Des Traceurs</translation>
+        <source>TEMPERATURE_DELWAQ_FILE</source>
+        <translation>Fichier DELWAQ de la temperature</translation>
     </message>
     <message>
-        <source>MASS_LUMPING_ON_TRACERS</source>
-        <translation>Mass-lumping Sur Les Traceurs</translation>
+        <source>Froude_number</source>
+        <translation>Nombre de Froude</translation>
     </message>
     <message>
-        <source>LAW_OF_TRACERS_DEGRADATION</source>
-        <translation>Loi De Degradation Des Traceurs</translation>
+        <source>classical</source>
+        <translation>Classique</translation>
     </message>
     <message>
-        <source>COEFFICIENT_1_FOR_LAW_OF_TRACERS_DEGRADATION</source>
-        <translation>Coefficient 1 De La Loi De Degradation Des Traceurs</translation>
+        <source>nombre_de_courants_</source>
+        <translation>Nombre de courants </translation>
     </message>
     <message>
-        <source>NUMBER_OF_DROGUES</source>
-        <translation>Nombre De Flotteurs</translation>
+        <source>SOURCES_FILE</source>
+        <translation>Fichier des sources</translation>
     </message>
     <message>
-        <source>PRINTOUT_PERIOD_FOR_DROGUES</source>
-        <translation>Periode Pour Les Sorties De Flotteurs</translation>
+        <source>LOG_LAW</source>
+        <translation>Log law</translation>
     </message>
     <message>
-        <source>DROGUES_FILE</source>
-        <translation>Fichier Des Flotteurs</translation>
+        <source>CONTROL_OF_LIMITS</source>
+        <translation>Controle des limites</translation>
     </message>
     <message>
-        <source>ALGAE_TRANSPORT_MODEL</source>
-        <translation>Modele De Transport Des Algues</translation>
+        <source>NUMBER_OF_GAUSS_POINTS_FOR_WEAK_CHARACTERISTICS</source>
+        <translation>Nombre de points de Gauss pour les caracteristiques faibles</translation>
     </message>
     <message>
-        <source>ALGAE_TYPE</source>
-        <translation>Type Des Algues</translation>
+        <source>TYPE_OF_WEIRS</source>
+        <translation>Type des seuils</translation>
     </message>
     <message>
-        <source>DIAMETER_OF_ALGAE</source>
-        <translation>Diametre Des Algues</translation>
+        <source>THRESHOLD_FOR_NEGATIVE_DEPTHS</source>
+        <translation>Seuil pour les profondeurs negatives</translation>
     </message>
     <message>
-        <source>DENSITY_OF_ALGAE</source>
-        <translation>Masse Volumique Des Algues</translation>
+        <source>velocity_proportional_to_square_root_of_depth,_variant</source>
+        <translation>Vitesse en racine carree de H, variante</translation>
     </message>
     <message>
-        <source>THICKNESS_OF_ALGAE</source>
-        <translation>Epaisseur Des Algues</translation>
+        <source>VELOCITY_PROFILES</source>
+        <translation>Profils de vitesse</translation>
     </message>
     <message>
-        <source>OIL_SPILL_MODEL</source>
-        <translation>Modele De Nappes D'hydrocarbures</translation>
+        <source>LANGUAGE</source>
+        <translation>Langue</translation>
     </message>
     <message>
-        <source>OIL_SPILL_STEERING_FILE</source>
-        <translation>Fichier De Commandes Hydrocarbures</translation>
+        <source>STAGE_DISCHARGE_CURVES</source>
+        <translation>Courbes de tarage</translation>
     </message>
     <message>
-        <source>STOCHASTIC_DIFFUSION_MODEL</source>
-        <translation>Modele De Diffusion Stochastique</translation>
+        <source>Courant_number_</source>
+        <translation>Nombre de courant </translation>
     </message>
     <message>
-        <source>NUMBER_OF_LAGRANGIAN_DRIFTS</source>
-        <translation>Nombre De Derives Lagrangiennes</translation>
+        <source>COST_FUNCTION</source>
+        <translation>Fonction cout</translation>
     </message>
     <message>
-        <source>NUMBER_OF_WEIRS</source>
-        <translation>Nombre De Seuils</translation>
+        <source>JMJ</source>
+        <translation>JMJ</translation>
     </message>
     <message>
-        <source>WEIRS_DATA_FILE</source>
-        <translation>Fichier De Donnees Des Seuils</translation>
+        <source>ORIGIN_COORDINATES</source>
+        <translation>Coordonnees de l'origine</translation>
     </message>
     <message>
-        <source>TYPE_OF_WEIRS</source>
-        <translation>Type Des Seuils</translation>
+        <source>RECORD_NUMBER_IN_WAVE_FILE</source>
+        <translation>Numero de l'enregistrement dans le fichier de Houle</translation>
     </message>
     <message>
-        <source>NUMBER_OF_CULVERTS</source>
-        <translation>Nombre De Siphons</translation>
+        <source>tracer_1_etc.</source>
+        <translation>Traceur 1, etc.</translation>
     </message>
     <message>
-        <source>CULVERT_DATA_FILE</source>
-        <translation>Fichier De Donnees Des Siphons</translation>
+        <source>TYPE_OF_ADVECTION</source>
+        <translation>Forme de la convection</translation>
     </message>
     <message>
-        <source>NUMBER_OF_TUBES</source>
-        <translation>Nombre De Buses</translation>
+        <source>WIND_VELOCITY_ALONG_X</source>
+        <translation>Vitesse du vent suivant X</translation>
     </message>
     <message>
-        <source>TUBES_DATA_FILE</source>
-        <translation>Fichier De Donnees Des Buses</translation>
+        <source>WIND_VELOCITY_ALONG_Y</source>
+        <translation>Vitesse du vent suivant Y</translation>
     </message>
     <message>
-        <source>BREACH</source>
-        <translation>Breche</translation>
+        <source>MAXIMUM_NUMBER_OF_SOURCES</source>
+        <translation>Nombre maximum de sources</translation>
     </message>
     <message>
-        <source>BREACHES_DATA_FILE</source>
-        <translation>Fichier De Donnees Des Breches</translation>
+        <source>HAALAND</source>
+        <translation>HAALAND</translation>
     </message>
     <message>
-        <source>TIDAL_DATA_BASE</source>
-        <translation>Base De Donnees De Maree</translation>
+        <source>div(_nu_grad(U)_)</source>
+        <translation>Div( nu grad(U) )</translation>
     </message>
     <message>
-        <source>TIDAL_MODEL_FILE</source>
-        <translation>Fichier Du Modele De Maree</translation>
+        <source>DISCRETIZATIONS_IN_SPACE</source>
+        <translation>Discretisations en espace</translation>
     </message>
     <message>
-        <source>ASCII_DATABASE_FOR_TIDE</source>
-        <translation>Base Ascii De Donnees De Maree</translation>
+        <source>SISYPHE_STEERING_FILE</source>
+        <translation>Fichier des parametres de sisyphe</translation>
     </message>
     <message>
-        <source>BINARY_DATABASE_1_FOR_TIDE</source>
-        <translation>Base Binaire 1 De Donnees De Maree</translation>
+        <source>ADVECTION_OF_K_AND_EPSILON</source>
+        <translation>Convection de K et epsilon</translation>
     </message>
     <message>
-        <source>BINARY_DATABASE_2_FOR_TIDE</source>
-        <translation>Base Binaire 2 De Donnees De Maree</translation>
+        <source>NUMBER_OF_CULVERTS</source>
+        <translation>Nombre de siphons</translation>
     </message>
     <message>
-        <source>MINOR_CONSTITUENTS_INFERENCE</source>
-        <translation>Interpolation De Composantes Mineures</translation>
+        <source>RELEASE</source>
+        <translation>Numero de version</translation>
     </message>
     <message>
-        <source>HARMONIC_CONSTANTS_FILE</source>
-        <translation>Fichier Des Constantes Harmoniques</translation>
+        <source>list_of_tests</source>
+        <translation>Plan d'experience</translation>
     </message>
     <message>
-        <source>GEOGRAPHIC_SYSTEM</source>
-        <translation>Systeme Geographique</translation>
+        <source>PRECONDITIONING_FOR_DIFFUSION_OF_TRACERS</source>
+        <translation>Preconditionnement pour la diffusion des traceurs</translation>
     </message>
     <message>
-        <source>ZONE_NUMBER_IN_GEOGRAPHIC_SYSTEM</source>
-        <translation>Numero De Fuseau Ou Projection Dans Le Systeme Geographique</translation>
+        <source>EXPLICIT_LEO_POSTMA</source>
+        <translation>Explicite Leo Postma</translation>
     </message>
     <message>
-        <source>COEFFICIENT_TO_CALIBRATE_SEA_LEVEL</source>
-        <translation>Coefficient De Calage Du Niveau De Mer</translation>
+        <source>LOCAL_NUMBER_OF_THE_POINT_TO_CALIBRATE_HIGH_WATER</source>
+        <translation>Numero local du point pour caler la pleine mer</translation>
     </message>
     <message>
-        <source>COEFFICIENT_TO_CALIBRATE_TIDAL_RANGE</source>
-        <translation>Coefficient De Calage Du Marnage</translation>
+        <source>Tchamen_scheme_order_1</source>
+        <translation>Schéma tchamen ordre 1</translation>
     </message>
     <message>
-        <source>COEFFICIENT_TO_CALIBRATE_TIDAL_VELOCITIES</source>
-        <translation>Coefficient De Calage Des Vitesses De Courant</translation>
+        <source>supplementary_variable_O</source>
+        <translation>Variable supplementaire o</translation>
     </message>
     <message>
-        <source>TIDE_GENERATING_FORCE</source>
-        <translation>Force Generatrice De La Maree</translation>
+        <source>WAVE_ENHANCED_FRICTION_FACTOR</source>
+        <translation>Augmentation du frottement par la houle</translation>
     </message>
     <message>
-        <source>OPTION_FOR_TIDAL_BOUNDARY_CONDITIONS</source>
-        <translation>Option Pour Les Conditions Aux Limites De Maree</translation>
+        <source>ELDER</source>
+        <translation>Elder</translation>
     </message>
     <message>
-        <source>COUPLING_WITH</source>
-        <translation>Couplage Avec</translation>
+        <source>supplementary_variable_N</source>
+        <translation>Variable supplementaire n</translation>
     </message>
     <message>
-        <source>NAMES_OF_CLANDESTINE_VARIABLES</source>
-        <translation>Noms Des Variables Clandestines</translation>
+        <source>gauss_seidel</source>
+        <translation>Gauss-Seidel</translation>
     </message>
     <message>
-        <source>COUPLING_DIRECTORY</source>
-        <translation>Dossier De Couplage</translation>
+        <source>TREATMENT_OF_THE_LINEAR_SYSTEM</source>
+        <translation>Traitement du systeme lineaire</translation>
     </message>
     <message>
-        <source>DELWAQ_PRINTOUT_PERIOD</source>
-        <translation>Periode De Sortie Pour Delwaq</translation>
+        <source>VARIABLES_TO_BE_PRINTED</source>
+        <translation>Variables a imprimer</translation>
     </message>
     <message>
-        <source>VOLUMES_DELWAQ_FILE</source>
-        <translation>Fichier Delwaq Des Volumes</translation>
+        <source>normal_velocity_given_in_ubor_in_the_conlim_file</source>
+        <translation>Vitesse normale donnee dans ubor dans le fichier conlim</translation>
     </message>
     <message>
-        <source>EXCHANGE_AREAS_DELWAQ_FILE</source>
-        <translation>Fichier Delwaq Des Surfaces De Flux</translation>
+        <source>DENSITY_OF_ALGAE</source>
+        <translation>Masse volumique des algues</translation>
     </message>
     <message>
-        <source>VERTICAL_FLUXES_DELWAQ_FILE</source>
-        <translation>Fichier Delwaq Des Flux Verticaux</translation>
+        <source>NON_SUBMERGED_VEGETATION_FRICTION</source>
+        <translation>Frottement pour la vegetation non submergee</translation>
     </message>
     <message>
-        <source>SALINITY_DELWAQ_FILE</source>
-        <translation>Fichier Delwaq De La Salinite</translation>
+        <source>TIDAL_FLATS</source>
+        <translation>Bancs decouvrants</translation>
     </message>
     <message>
-        <source>BOTTOM_SURFACES_DELWAQ_FILE</source>
-        <translation>Fichier Delwaq Des Surfaces Du Fond</translation>
+        <source>diagonal_and_crout</source>
+        <translation>Diagonal et Crout</translation>
     </message>
     <message>
-        <source>EXCHANGES_BETWEEN_NODES_DELWAQ_FILE</source>
-        <translation>Fichier Delwaq Des Echanges Entre Noeuds</translation>
+        <source>HARMONIC_CONSTANTS_FILE</source>
+        <translation>Fichier des constantes harmoniques</translation>
     </message>
     <message>
-        <source>NODES_DISTANCES_DELWAQ_FILE</source>
-        <translation>Fichier Delwaq Des Distances Entre Noeuds</translation>
+        <source>Priority_to_prescribed_values</source>
+        <translation>Priorite aux valeurs imposees</translation>
     </message>
     <message>
-        <source>TEMPERATURE_DELWAQ_FILE</source>
-        <translation>Fichier Delwaq De La Temperature</translation>
+        <source>BINARY_DATA_FILE_1_FORMAT</source>
+        <translation>Format du fichier de donnees binaire 1</translation>
     </message>
     <message>
-        <source>VELOCITY_DELWAQ_FILE</source>
-        <translation>Fichier Delwaq De La Vitesse</translation>
+        <source>Normal</source>
+        <translation>Normal</translation>
     </message>
     <message>
-        <source>DIFFUSIVITY_DELWAQ_FILE</source>
-        <translation>Fichier Delwaq De La Diffusion</translation>
+        <source>nodal</source>
+        <translation>Nodale</translation>
     </message>
     <message>
-        <source>DELWAQ_STEERING_FILE</source>
-        <translation>Fichier De Commande Delwaq</translation>
+        <source>PRESCRIBED_ELEVATIONS</source>
+        <translation>Cotes imposees</translation>
     </message>
     <message>
-        <source>SALINITY_FOR_DELWAQ</source>
-        <translation>Salinite Pour Delwaq</translation>
+        <source>LIMIT_VALUES</source>
+        <translation>Valeurs limites</translation>
     </message>
     <message>
-        <source>TEMPERATURE_FOR_DELWAQ</source>
-        <translation>Temperature Pour Delwaq</translation>
+        <source>quadratic</source>
+        <translation>Quadratique</translation>
     </message>
     <message>
-        <source>VELOCITY_FOR_DELWAQ</source>
-        <translation>Vitesse Pour Delwaq</translation>
+        <source>ORDINATES_OF_SOURCES</source>
+        <translation>Ordonnees des sources</translation>
     </message>
     <message>
-        <source>DIFFUSIVITY_FOR_DELWAQ</source>
-        <translation>Diffusion Pour Delwaq</translation>
+        <source>Real_tide_(methodology_before_2010)</source>
+        <translation>Maree reelle (methodologie d avant 2010)</translation>
     </message>
     <message>
-        <source>SISYPHE_STEERING_FILE</source>
-        <translation>Fichier Des Parametres De Sisyphe</translation>
+        <source>NUMBER_OF_DROGUES</source>
+        <translation>Nombre de flotteurs</translation>
     </message>
     <message>
-        <source>COUPLING_PERIOD_FOR_SISYPHE</source>
-        <translation>Periode De Couplage Pour Sisyphe</translation>
+        <source>maximum_elevation</source>
+        <translation>Cote maximum</translation>
     </message>
     <message>
-        <source>TOMAWAC_STEERING_FILE</source>
-        <translation>Fichier Des Parametres De Tomawac</translation>
+        <source>dissipation_of_turbulent_energy_(W/kg)</source>
+        <translation>Dissipation de l'energie turbulente (W/kg)</translation>
     </message>
     <message>
-        <source>COUPLING_PERIOD_FOR_TOMAWAC</source>
-        <translation>Periode De Couplage Pour Tomawac</translation>
+        <source>PROPAGATION</source>
+        <translation>Propagation</translation>
     </message>
     <message>
-        <source>WAQTEL_STEERING_FILE</source>
-        <translation>Fichier Des Parametres De Waqtel</translation>
+        <source>constant_in_time_and_space</source>
+        <translation>Constant en temps et en espace</translation>
     </message>
     <message>
-        <source>NUMBER_OF_FIRST_TIME_STEP_FOR_GRAPHIC_PRINTOUTS</source>
-        <translation>Numero Du Premier Pas De Temps Pour Les Sorties Graphiques</translation>
+        <source>Mean_neap_tide</source>
+        <translation>Maree de morte-eau moyenne (coef. presque 45)</translation>
     </message>
     <message>
-        <source>GRAPHIC_PRINTOUT_PERIOD</source>
-        <translation>Periode Pour Les Sorties Graphiques</translation>
+        <source>gmres_(see_option_for_the_solver_for_tracer_diffusion)</source>
+        <translation>GMRES (voir ausi option du solveur)</translation>
     </message>
     <message>
-        <source>VARIABLES_FOR_GRAPHIC_PRINTOUTS</source>
-        <translation>Variables Pour Les Sorties Graphiques</translation>
+        <source>SOLVER_OPTION</source>
+        <translation>Option du solveur</translation>
     </message>
     <message>
-        <source>NUMBER_OF_PRIVATE_ARRAYS</source>
-        <translation>Nombre De Tableaux Prives</translation>
+        <source>MATRIX_STORAGE</source>
+        <translation>Stockage des matrices</translation>
     </message>
     <message>
-        <source>NAMES_OF_PRIVATE_VARIABLES</source>
-        <translation>Noms Des Variables Privees</translation>
+        <source>COEFFICIENT_TO_CALIBRATE_TIDAL_RANGE</source>
+        <translation>Coefficient de calage du marnage</translation>
     </message>
     <message>
-        <source>RESULTS_FILE_FORMAT</source>
-        <translation>Format Du Fichier Des Resultats</translation>
+        <source>brownian_movement</source>
+        <translation>Mouvement brownien</translation>
     </message>
     <message>
-        <source>RESULTS_FILE</source>
-        <translation>Fichier Des Resultats</translation>
+        <source>SOLVER</source>
+        <translation>Solveur</translation>
     </message>
     <message>
-        <source>BINARY_RESULTS_FILE_FORMAT</source>
-        <translation>Format Du Fichier De Resultats Binaire</translation>
+        <source>smooth</source>
+        <translation>Lisse</translation>
     </message>
     <message>
-        <source>BINARY_RESULTS_FILE</source>
-        <translation>Fichier De Resultats Binaire</translation>
+        <source>turbulent_kinetic_energy_in_k_epsilon_model_(J/kg)</source>
+        <translation>Energie turbulente du modele K-Epsilon (W/kg)</translation>
     </message>
     <message>
-        <source>FORMATTED_RESULTS_FILE</source>
-        <translation>Fichier De Resultats Formate</translation>
+        <source>NIKURADSE</source>
+        <translation>Nikuradse</translation>
     </message>
     <message>
-        <source>CONTROL_SECTIONS</source>
-        <translation>Sections De Controle</translation>
+        <source>PRECONDITIONING_FOR_K_EPSILON_MODEL</source>
+        <translation>Preconditionnement pour le modele K-Epsilon</translation>
     </message>
     <message>
-        <source>PRINTING_CUMULATED_FLOWRATES</source>
-        <translation>Impression Du Cumul Des Flux</translation>
+        <source>drift_along_y_(m)</source>
+        <translation>Derive en Y (m)</translation>
     </message>
     <message>
-        <source>COMPATIBLE_COMPUTATION_OF_FLUXES</source>
-        <translation>Calcul Compatible Des Flux</translation>
+        <source>velocity_along_x_axis_(m/s)</source>
+        <translation>Vitesse suivant l'axe des X (m/s)</translation>
     </message>
     <message>
-        <source>SECTIONS_INPUT_FILE</source>
-        <translation>Fichier Des Sections De Controle</translation>
+        <source>LEO_POSTMA_FOR_TIDAL_FLATS</source>
+        <translation>Leo Postma pour bancs decouvrants</translation>
     </message>
     <message>
-        <source>SECTIONS_OUTPUT_FILE</source>
-        <translation>Fichier De Sortie Des Sections De Controle</translation>
+        <source>block_diagonal_(4_9_matrices)</source>
+        <translation>Bloc-diagonal (4 ou 9 matrices)</translation>
     </message>
     <message>
-        <source>NUMBER_OF_FIRST_TIME_STEP_FOR_LISTING_PRINTOUTS</source>
-        <translation>Numero Du Premier Pas De Temps Pour Les Sorties Listing</translation>
+        <source>Computed_with_h,u,v</source>
+        <translation>Calculee sur H,u,v</translation>
     </message>
     <message>
-        <source>LISTING_PRINTOUT_PERIOD</source>
-        <translation>Periode De Sortie Listing</translation>
+        <source>ACCURACY_OF_K</source>
+        <translation>Precision sur k</translation>
     </message>
     <message>
-        <source>LISTING_FOR_PRINTOUT_PERIOD</source>
-        <translation>Periode Pour Les Sorties Listing</translation>
+        <source>WATER_QUALITY_PROCESS</source>
+        <translation>Processus qualite d'eau</translation>
     </message>
     <message>
-        <source>LISTING_PRINTOUT</source>
-        <translation>Sortie Listing</translation>
+        <source>OPTION_FOR_LIQUID_BOUNDARIES</source>
+        <translation>Option pour les frontieres liquides</translation>
     </message>
     <message>
-        <source>VARIABLES_TO_BE_PRINTED</source>
-        <translation>Variables A Imprimer</translation>
+        <source>COEFFICIENT_TO_CALIBRATE_SEA_LEVEL</source>
+        <translation>Coefficient de calage du niveau de mer</translation>
     </message>
     <message>
-        <source>MASS_BALANCE</source>
-        <translation>Bilan De Masse</translation>
+        <source>INITIAL_GUESS_FOR_H</source>
+        <translation>Ordre du tir initial pour H</translation>
     </message>
     <message>
-        <source>INFORMATION_ABOUT_SOLVER</source>
-        <translation>Informations Sur Le Solveur</translation>
+        <source>SPHERICAL_COORDINATES</source>
+        <translation>Coordonnees spheriques</translation>
     </message>
     <message>
-        <source>LIST_OF_POINTS</source>
-        <translation>Liste De Points</translation>
+        <source>no</source>
+        <translation>Non</translation>
     </message>
     <message>
-        <source>NAMES_OF_POINTS</source>
-        <translation>Noms Des Points</translation>
+        <source>THICKNESS_OF_ALGAE</source>
+        <translation>Epaisseur des algues</translation>
     </message>
     <message>
-        <source>FOURIER_ANALYSIS_PERIODS</source>
-        <translation>Periodes D'analyse De Fourier</translation>
+        <source>MEAN_TEMPERATURE</source>
+        <translation>Temperature moyenne</translation>
     </message>
     <message>
-        <source>TIME_RANGE_FOR_FOURIER_ANALYSIS</source>
-        <translation>Bornes En Temps Pour L'analyse De Fourier</translation>
+        <source>IDENTIFICATION_METHOD</source>
+        <translation>Methode d'identification</translation>
     </message>
     <message>
-        <source>NUMBER_OF_CORRECTIONS_OF_DISTRIBUTIVE_SCHEMES</source>
-        <translation>Nombre De Corrections Des Schemas Distributifs</translation>
+        <source>friction_coefficient</source>
+        <translation>Coefficient de frottement sur le fond</translation>
     </message>
     <message>
-        <source>NUMBER_OF_SUB_STEPS_OF_DISTRIBUTIVE_SCHEMES</source>
-        <translation>Nombre De Sous-pas Des Schemas Distributifs</translation>
+        <source>MASS_LUMPING_ON_VELOCITY</source>
+        <translation>Mass-lumping sur la vitesse</translation>
     </message>
     <message>
-        <source>WAVE_ENHANCED_FRICTION_FACTOR</source>
-        <translation>Augmentation Du Frottement Par La Houle</translation>
+        <source>time_of_maximum_velocity</source>
+        <translation>Temps de la vitesse maximum</translation>
     </message>
     <message>
-        <source>LOCAL_NUMBER_OF_THE_POINT_TO_CALIBRATE_HIGH_WATER</source>
-        <translation>Numero Local Du Point Pour Caler La Pleine Mer</translation>
+        <source>VALUES_OF_TRACERS_IN_THE_RAIN</source>
+        <translation>Valeurs des traceurs dans la pluie</translation>
     </message>
     <message>
-        <source>GLOBAL_NUMBER_OF_THE_POINT_TO_CALIBRATE_HIGH_WATER</source>
-        <translation>Numero Global Du Point Pour Caler La Pleine Mer</translation>
+        <source>supplementary_variable_Z</source>
+        <translation>Variable supplementaire z</translation>
     </message>
     <message>
-        <source>PSI_SCHEME_OPTION</source>
-        <translation>Option Du Schema Psi</translation>
+        <source>supplementary_variable_R</source>
+        <translation>Variable supplementaire r</translation>
     </message>
     <message>
-        <source>PROPAGATION_OPTION</source>
-        <translation>Option De Propagation</translation>
+        <source>EXPLICIT_+_MURD_SCHEME_N</source>
+        <translation>Explicite + murd schema n</translation>
     </message>
     <message>
-        <source>FREE_INTEGER_20</source>
-        <translation>Entier Libre 20</translation>
+        <source>conjugate_gradient_on_a_normal_equation</source>
+        <translation>Gradient conjuge sur equation normale</translation>
     </message>
     <message>
-        <source>VECTOR_LENGTH</source>
-        <translation>Longueur Du Vecteur</translation>
+        <source>WAVE_DRIVEN_CURRENTS</source>
+        <translation>Courants de Houle</translation>
     </message>
     <message>
-        <source>LANGUAGE</source>
-        <translation>Langue</translation>
+        <source>Tsunami_generated_on_the_basis_of_the_Okada_model_1992</source>
+        <translation>Generation d'un tsunami sur la base du modele de Okada 1992</translation>
     </message>
     <message>
-        <source>STEERING_FILE</source>
-        <translation>Fichier Des Parametres</translation>
+        <source>ASCII_DATABASE_FOR_TIDE</source>
+        <translation>Base ASCII de donnees de maree</translation>
     </message>
     <message>
-        <source>DICTIONARY</source>
-        <translation>Dictionnaire</translation>
+        <source>OIL_SPILL_MODEL</source>
+        <translation>Modele de nappes d'hydrocarbures</translation>
     </message>
     <message>
-        <source>PARTITIONING_TOOL</source>
-        <translation>Partitionneur</translation>
+        <source>1_point</source>
+        <translation>1 point</translation>
     </message>
     <message>
-        <source>RELEASE</source>
-        <translation>Numero De Version</translation>
+        <source>ORIGINAL_DATE_OF_TIME</source>
+        <translation>Date de l'origine des temps</translation>
     </message>
     <message>
-        <source>LIST_OF_FILES</source>
-        <translation>Liste Des Fichiers</translation>
+        <source>GEOGRAPHIC_SYSTEM</source>
+        <translation>Systeme geographique</translation>
     </message>
     <message>
-        <source>DESCRIPTION_OF_LIBRARIES</source>
-        <translation>Description Des Librairies</translation>
+        <source>TIDAL_MODEL_FILE</source>
+        <translation>Fichier du modele de maree</translation>
     </message>
     <message>
-        <source>DEFAULT_EXECUTABLE</source>
-        <translation>Executable Par Defaut</translation>
+        <source>absolute_value_of_diagonal</source>
+        <translation>Valeur absolue diagonale</translation>
     </message>
     <message>
-        <source>DEFAULT_PARALLEL_EXECUTABLE</source>
-        <translation>Executable Parallele Par Defaut</translation>
+        <source>u_and_v_given_in_the_conlim_file</source>
+        <translation>U et V dans le fichier conlim</translation>
     </message>
-    <name>@default</name>
     <message>
         <location filename="../../convert/convert_ini.py" line="81"/>
         <source>lecture du fichier impossible :</source>
index 121bd5b7d06961437a4438f37d8489cb555413cd..6bbb49995a55dd4d000bbfa1b64e2a6b697cb74d 100644 (file)
@@ -26,16 +26,19 @@ pattern_comment_slash   = re.compile(r"^\s*/")
 pattern_eta   = re.compile(r".*&ETA.*")
 pattern_fin   = re.compile(r".*&FIN.*")
 pattern_oui   = re.compile(r"^\s*(oui|OUI|YES|yes|TRUE|VRAI)\s*$")
-pattern_non   = re.compile(r"^\s*(non|NON|NO|no|FALSE|FAUX)\*s$")
+pattern_non   = re.compile(r"^\s*(non|NON|NO|no|FALSE|FAUX)\s*$")
 pattern_blanc = re.compile(r"^\s*$")
 pattern_listeVide = re.compile(r"^\s*'\s*'\s*$")
+pattern_commence_par_quote=re.compile(r'^\s*[\'"].*')
+pattern_finit_par_virgule_ou_affect=re.compile(r'^.*(,|;|=|:)\s*$')
 
 pattern_ligne=re.compile(r'^\s*(?P<ident>[^=:]*)\s*[:=]\s*(?P<reste>.*)$')
 
-pattern_variables=re.compile (r"^\s*(?P<ident>VARIABLES POUR LES SORTIES GRAPHIQUES)\s*[:=]\s*(?P<valeur>\w(,\w)*)\s*(?P<reste>.*)$")
+pattern_variables=re.compile (r"^\s*(?P<ident>VARIABLES FOR GRAPHIC PRINTOUTS|VARIABLES POUR LES SORTIES GRAPHIQUES)\s*[:=]\s*(?P<valeur>[A-Za-z]+(\d*|\*)(,[A-Za-z]+(\d*|\*))*)\s*(?P<reste>.*)$")
 
 # Attention aux listes de flottants
 pattern_liste=re.compile(r'^\s*(?P<valeur>[+-.\w]+(\s*;\s*[+-.\w]+)+)\s*(?P<reste>.*)$')
+pattern_liste_texte=re.compile(r"^\s*(?P<valeur>('.*(';\s*))+('.*'\s*)?)(?P<reste>.*)$")
 pattern_flottant=re.compile(r'^\s*(?P<valeur>[+-]?((\d+(\.\d*)?)|(\.\d+))([dDeE][+-]?\d+)?)\s*(?P<reste>.*)$')
 pattern_texteQuote  = re.compile (r"^\s*(?P<valeur>'[^']+(''[^']+)*')\s*(?P<reste>.*)$")
 pattern_texteSimple = re.compile (r"(?P<valeur>(^|\s)\s*[\w\.-]+)\s*(?P<reste>.*)$")
@@ -43,7 +46,6 @@ pattern_texteVide   = re.compile (r"^\s*(?P<valeur>'')\s*(?P<reste>.*)$")
 
 pattern_ContientDouble=re.compile (r"^.*''.*$")
 
-
 # le pattern texte reconnait 
 #nom1 nom 2 : ou = chaine entre ' 
 # avec eventuellement  des quotes au milieu par exemple
@@ -53,9 +55,9 @@ pattern_ContientDouble=re.compile (r"^.*''.*$")
 
 #Si le code n est pas Telemac
 try :
-   from aideAuxConvertisseurs import DicoEficasToCas, ListeSupprimeCasToEficas
-   from aideAuxConvertisseurs import ListeCalculCasToEficas, DicoAvecMajuscules
-   from enumDicoTelemac       import DicoEnumCasEn
+#if 1 :
+   from aideAuxConvertisseurs import ListeSupprimeCasToEficas
+   from enumDicoTelemac       import TelemacdicoEn
 except :
    pass
 
@@ -70,7 +72,7 @@ def entryPoint():
    Return a dictionary containing the description needed to load the plugin
    """
    return {
-          'name' : 'TELEMAC',
+          'name' : 'TELEMAC3',
           'factory' : TELEMACParser
           }
 
@@ -82,22 +84,46 @@ class TELEMACParser(PythonParser):
    """
 
    def convert(self, outformat, appli=None):
+
       from Accas import A_BLOC, A_FACT, A_SIMP
-      self.dicoInverseFrancais=appli.readercata.dicoInverseFrancais
-      self.dicoAnglaisFrancais=appli.readercata.dicoAnglaisFrancais
-      self.dicoFrancaisAnglais=appli.readercata.dicoFrancaisAnglais
+      self.dicoCasToCata=appli.readercata.dicoCasToCata
+      self.dicoInverse=appli.readercata.dicoInverse
       self.dicoMC=appli.readercata.dicoMC
       self.Ordre_Des_Commandes=appli.readercata.Ordre_Des_Commandes
-   
 
-      #print self.dicoInverseFrancais
-      #text = PythonParser.convert(self, outformat, appli)
-      
+      if appli.langue=='fr' :
+          from enumDicoTelemac       import DicoEnumCasFrToEnumCasEn
+          for k in DicoEnumCasFrToEnumCasEn.keys() :
+              TelemacdicoEn[k]=DicoEnumCasFrToEnumCasEn[k]
+
       text=""
-      l_lignes = string.split(self.text,'\n')
       self.dictSimp={}
-      for ligne in l_lignes :
 
+      l_lignes_texte_all = string.split(self.text,'\n')
+      l_lignes_texte = []
+      for l  in l_lignes_texte_all :
+        if not(pattern_comment_slash.match(l)): l_lignes_texte.append(l)
+
+      l_lignes=[]
+      i=0
+      while (i < len(l_lignes_texte)) :
+          ligne=l_lignes_texte[i]
+          i=i+1
+          if not(pattern_finit_par_virgule_ou_affect.match(ligne)):
+             l_lignes.append(ligne)
+             continue
+          nouvelle_ligne=ligne
+          while (i < len(l_lignes_texte)):
+             ligne_traitee=l_lignes_texte[i]
+             i=i+1
+             nouvelle_ligne += ligne_traitee
+             if not(pattern_finit_par_virgule_ou_affect.match(ligne_traitee)):
+                l_lignes.append(nouvelle_ligne)
+                break
+  
+
+      for ligne in l_lignes :
           if pattern_comment_slash.match(ligne) : continue
           if pattern_eta.match(ligne) : continue
           if pattern_fin.match(ligne) : continue
@@ -106,17 +132,17 @@ class TELEMACParser(PythonParser):
 
           finLigne=ligne
           while finLigne != "" :
-              #print finLigne
               if pattern_comment_slash.match(finLigne) : finLigne=""; continue
               valeur=""
               if pattern_variables.match(finLigne) :
                  m=pattern_variables.match(finLigne)
+                 simpCas=self.traiteIdent(m.group('ident'))
                  valeur=m.group('valeur')
-                 simp=self.traiteIdent(m.group('ident'))
                  finLigne=m.group('reste')
-                 self.dictSimp[simp]=valeur
+                 self.dictSimp[simpCas]=valeur
                  continue
 
+              
               m=pattern_ligne.match(finLigne)
               if m == None : 
                  #print "________________________________________________"
@@ -124,12 +150,17 @@ class TELEMACParser(PythonParser):
                  #print "________________________________________________"
                  break
       
-              simp=self.traiteIdent(m.group('ident'))
-              finLigne=m.group('reste')
+              simpCas=self.traiteIdent(m.group('ident'))
+              if not simpCas : 
+                 finLigne=m.group('reste')
+                 continue
 
+              finLigne=m.group('reste')
               # attention, l ordre des if est important
               if pattern_liste.match(finLigne) :
                  m=pattern_liste.match(finLigne)
+              elif pattern_liste_texte.match(finLigne) :
+                 m=pattern_liste_texte.match(finLigne)
               elif pattern_texteQuote.match(finLigne) :
                  m=pattern_texteQuote.match(finLigne)
               elif pattern_flottant.match(finLigne) : 
@@ -145,6 +176,7 @@ class TELEMACParser(PythonParser):
                  #print "________________________________________________"
                  break
               
+
               valeur=m.group('valeur')
               if pattern_blanc.match(valeur) : valeur=None
 
@@ -152,34 +184,31 @@ class TELEMACParser(PythonParser):
                  valeur=re.sub("d","e",valeur)
                  valeur=re.sub("D","E",valeur)
 
-              if pattern_liste.match(finLigne):
+              if pattern_liste.match(finLigne) or pattern_liste_texte.match(finLigne):
                  valeur=valeur.split(";")
 
+
               finLigne=m.group('reste')
-              #print simp 
-              #print valeur
-              #print finLigne
-              self.dictSimp[simp]=valeur
+              self.dictSimp[simpCas]=valeur
+              #print self.dictSimp
       
-      if 'Title' not in self.dictSimp.keys() and 'Titre' not in self.dictSimp.keys():
+      if 'TITLE' not in self.dictSimp.keys() :
           import os
-          self.dictSimp['Titre']=os.path.basename(self.filename)
+          #self.dictSimp['TITLE']=os.path.basename(self.filename)
       
       dicoParMC={}
       for simp in self.dictSimp.keys():
-          #print simp, " : ", self.dictSimp[simp]
-           
           if simp in TELEMACParser.__dict__.keys() : apply(TELEMACParser.__dict__[simp],(self,))
 
       for simp in self.dictSimp.keys():
           if simp in ListeSupprimeCasToEficas: continue
-          if simp not in self.dicoInverseFrancais.keys() : 
-             print "************"
-             print "pb avec dans dicoInverseFrancais", simp,'------'
-             print "************"
+          if simp not in self.dicoInverse.keys() : 
+             #print "************"
+             print "pb avec dans dicoInverse", simp,'------'
+             #print "************"
              #print poum
              continue
-          listeGenea=self.dicoInverseFrancais[simp]
+          listeGenea=self.dicoInverse[simp]
           listeGeneaReverse=[]
           for (u,v) in listeGenea : 
               if isinstance(v,A_BLOC.BLOC): continue
@@ -202,47 +231,29 @@ class TELEMACParser(PythonParser):
       listeMC=self.tri(dicoParMC.keys())
       for k in listeMC :
           #print "----------- traitement de " , k
-          self.textePy += self.dicoFrancaisAnglais[k] + "("
+          self.textePy += str(k )+ "("
           self.traiteMC(dicoParMC[k])
           self.textePy += ");\n"
           #print "----------- " 
            
               
-      #print self.textePy
-      return self.textePy 
+      appli.listeTelemac=self.dictSimp.keys()  
+      return self.textePy
 
-   #----------------------------------------
-   def redecoupeSimp(self,simp): 
-   # traite les - dans les identifants python
-   # les remplace par des _
-   #----------------------------------------
-      # replace('-','_')  uniquement dans les identifiants
-      while simp.find('-') > 0 : 
-        ind=simp.find('-')
-        if ind==len(simp)-1 : break
-        simp=simp[0:ind]+'_'+simp[ind+1].upper()+simp[ind+2:]
-      return simp
 
    #----------------------------------------
-   def traiteIdent(self,listeIdent):
-   # Recree l identifiant Python
+   def traiteIdent(self,ident):
+   # enleve les espaces de part et autre
+   # traduit du langage Telemac vers le langage Catalogue
    #----------------------------------------
-          while listeIdent[-1] == " " or listeIdent[-1] == '\t' : listeIdent=listeIdent[0:-1]
-          while listeIdent[0]  == " " or listeIdent[0]  == '\t' : listeIdent=listeIdent[1:]
-          
-          listeIdent=re.sub("'"," ",listeIdent)
-          motsInIdent=string.split(listeIdent,' ')
-          simp=""
-          for mot in motsInIdent:
-              if re.compile(r"^\s*$").match(mot) : continue
-              mot=mot.replace('_','__')
-              simp=simp+mot[0].upper() +mot[1:].lower()+'_'
-
-          simp=simp[0:-1]
-          while simp[-1] == " " : simp=simp[0:-1]
-          if simp.find('-') > 0 : simp=self.redecoupeSimp(simp)
-
-          return simp
+          #print ident
+          while ident[-1] == " " or ident[-1] == '\t' : ident=ident[0:-1]
+          while ident[0]  == " " or ident[0]  == '\t' : ident=ident[1:]
+          try : identCata=self.dicoCasToCata[ident]
+          except :  
+            print  "---> ", "pb mot clef  pour", ident
+            identCata=None
+          return identCata
 
 
    def traiteMC(self,dico) :
@@ -260,6 +271,7 @@ class TELEMACParser(PythonParser):
            #print "_____________"
 
    def convertFACT(self,obj,nom,valeur):
+       #print "convertFACT", nom,valeur
        if nom in TELEMACParser.__dict__.keys() : 
           apply(TELEMACParser.__dict__[nom],(self,))
           return
@@ -273,7 +285,8 @@ class TELEMACParser(PythonParser):
        print nom
 
    def convertSIMP(self,obj,nom,valeur):
-       if nom in ("Prescribed_Flowrates", "Prescribed_Velocities", "Prescribed_Elevations" ): return
+       #print 'in convertSIMP', nom,valeur
+       if nom in ("PRESCRIBED_FLOWRATES", "PRESCRIBED_VELOCITIES", "PRESCRIBED_ELEVATIONS" ): return
        if obj.max==1 : 
           if hasattr(obj.type[0],'ntuple') : 
              lval=[]
@@ -300,10 +313,10 @@ class TELEMACParser(PythonParser):
           # Pour les enum
           try    : valeur=eval(valeur,{})
           except : pass
-          if nom in DicoEnumCasEn.keys(): 
-             #print "est dans le dico des enum, valeur simple"
+
+          if nom in TelemacdicoEn.keys(): 
              try    : 
-               valeur=DicoEnumCasEn[nom][valeur]
+               valeur=TelemacdicoEn[nom][valeur]
                self.textePy += nom + "= '" + str(valeur) +"',"
                return
              except : pass
@@ -321,10 +334,14 @@ class TELEMACParser(PythonParser):
                      valeur=possible
                      break
                 except:
-                   print "pb avec le type de ", obj.nom, obj.type, 'et la valeur ', valeur
+                   if valeur != None :
+                      print "pb avec le type de ", obj.nom, obj.type, 'et la valeur ', valeur
 
           if 'Fichier' in obj.type or 'TXM' in obj.type or 'Repertoire' in obj.type :
               valeur=str(valeur)
+              if valeur == "" or valeur == " " : 
+                 self.textePy += nom + "= '" + str(valeur) +"' ,"
+                 return
               while valeur[-1] == " " : valeur=valeur[0:-1]
               while valeur[0]  == " " : valeur=valeur[1:]
               self.textePy += nom + "= '" + str(valeur) +"' ,"
@@ -340,23 +357,38 @@ class TELEMACParser(PythonParser):
           self.textePy += nom + "=" + str(valeur) +","
 
        else :
-          if pattern_listeVide.match(valeur) :
+          if valeur == () or valeur ==[] or pattern_listeVide.match(str(valeur)) :
              self.textePy += nom + "= None,"
              return
+
+          # les 4 lignes suivantes sont probablement inutiles
           while valeur[-1] == " " or  valeur[-1]=="'" : valeur=valeur[0:-1]
           while valeur[0]  == " " or  valeur[-0]=="'" : valeur=valeur[1:]
-
-          if   ";" in valeur : valeur=valeur.split(';')
-          elif "," in valeur : valeur=valeur.split(',')
-
+          oldValeur=valeur
+          if isinstance(valeur, basestring) :
+             if   ";" in valeur : valeur=valeur.split(';')
+             else  : valeur=valeur.split(',')
+
+          if len(valeur)< 2 and pattern_flottant.match(oldValeur):
+          # Attention : on attend une liste mais on a une seule valeur!
+             try :    oldValeur=eval(oldValeur,{})
+             except : pass
+             if nom in TelemacdicoEn.keys() :  
+                v=TelemacdicoEn[nom][oldValeur]
+                self.textePy += nom + "= ('" + str(v) +"',),"
+             else :  
+                self.textePy += nom + "= (" + str(oldValeur) +",),"
+             return
+           
           if valeur == None : return
           newVal=[]
           for v in valeur :
             try :    v=eval(v,{})
             except : pass
-            if nom in DicoEnumCasEn.keys():
+            if nom in TelemacdicoEn.keys():
                #print "est dans le dico des enum, valeurs multiples"
-               try    : v=DicoEnumCasEn[nom][v]
+               try    : v=TelemacdicoEn[nom][v]
                except : pass
             newVal.append(v)
           self.textePy += nom + "=" + str(newVal) +","
@@ -366,127 +398,75 @@ class TELEMACParser(PythonParser):
    def tri(self, listeIn):
       if len(listeIn) == 1 : return listeIn
       if self.Ordre_Des_Commandes == None : return listeIn
-      #print self.Ordre_Des_Commandes
+      #print listeIn
       listeOut=[listeIn[0],]
-      for kF in listeIn[1:]:
-          k=str(self.dicoFrancaisAnglais[kF])
+      for k in listeIn[1:]:
+          #k=str(self.dicoFrancaisAnglais[kF])
           ordreK=self.Ordre_Des_Commandes.index(k)
           i=0
           while i < len(listeOut):
-             ordreI=self.Ordre_Des_Commandes.index(self.dicoFrancaisAnglais[listeOut[i]])
+             #ordreI=self.Ordre_Des_Commandes.index(self.dicoFrancaisAnglais[listeOut[i]])
+             ordreI=self.Ordre_Des_Commandes.index(listeOut[i])
              if ordreK < ordreI : break
              i=i+1
-          listeOut.insert(i,kF)
+          #listeOut.insert(i,kF)
+          listeOut.insert(i,k)
       return listeOut
 
-   def Processeurs_Paralleles(self):
-      #YOANN
-      if self.dictSimp["Processeurs_Paralleles"] == 0 : del  self.dictSimp["Processeurs_Paralleles"]
-      else : self.dictSimp["Parallel_Computation"]="Parallel"
-   def decoupeListe(self,valeurs,label):
-      #print "decoupeListe"
-      #print valeurs
-      i=0
-      for prefixe in ('_U_And_V','_H'):
-          labelComplet=label+prefixe
-          valeur=valeurs[i]
-          try    : valeur=eval(valeur,{})
-          except : pass
-          if tr(label) in DicoEnumCasEn.keys(): 
-             try    : valeur=DicoEnumCasEn[tr(label)][valeur]
-             except : pass
-          self.dictSimp[labelComplet]=valeur
-          i=i+1
-      if len(valeurs)==2 : return
-      for prefixe in ('_K_And_Epsilon','_Tracers'):
-          labelComplet=label+prefixe
-          valeur=valeurs[i]
-          try    : valeur=eval(valeur,{})
-          except : pass
-          if tr(label) in DicoEnumCasEn.keys(): 
-             try    : valeur=DicoEnumCasEn[tr(label)][valeur]
-             except : pass
-          self.dictSimp[labelComplet]=valeur
-          i=i+1
+   def LIQUID_BOUNDARIES(self):
+       print 'Liquid Boundaries'
+       texte_Boundaries="LIQUID_BOUNDARIES=( "
+       if 'PRESCRIBED_ELEVATIONS' in self.dictSimp.keys(): 
+              valeursPE=self.dictSimp["PRESCRIBED_ELEVATIONS"]
+              if not type(valeursPE)==list : valeursPE = (valeursPE,)
+              longueur=len(self.dictSimp["PRESCRIBED_ELEVATIONS"])
+       else : valeursPE=None
+       if 'PRESCRIBED_FLOWRATES' in self.dictSimp.keys(): 
+              valeursPF=self.dictSimp["PRESCRIBED_FLOWRATES"]
+              if not type(valeursPF)==list : valeursPF = (valeursPF,)
+              longueur=len(self.dictSimp["PRESCRIBED_FLOWRATES"])
+       else : valeursPF=None
+       if 'PRESCRIBED_VELOCITIES' in self.dictSimp.keys(): 
+              valeursPV=self.dictSimp["PRESCRIBED_VELOCITIES"]
+              if not type(valeursPV)==list : valeursPV = (valeursPV,)
+              longueur=len(self.dictSimp["PRESCRIBED_VELOCITIES"])
+       else : valeursPV=None
+
+       if valeursPE == None and valeursPF == None and valeursPV == None :
+             texte_Boundaries +="),\n"
+             return
+
+       if valeursPE == None or valeursPF == None or valeursPV == None :
+          listNulle=[]
+          for i in range(longueur) : listNulle.append('0') 
+
+
+       if valeursPE == None : valeursPE = listNulle
+       if valeursPF == None : valeursPF = listNulle
+       if valeursPV == None : valeursPV = listNulle
       
-   def Option_De_Supg(self):
-       #print "ds Option_De_Supg"
-       self.decoupeListe( self.dictSimp["Option_De_Supg"],"Option_De_Supg")
-       del self.dictSimp["Option_De_Supg"]
-
-   def Forme_De_La_Convection(self):
-       self.decoupeListe( self.dictSimp["Forme_De_La_Convection"],"Forme_De_La_Convection")
-       valeurs=self.dictSimp["Forme_De_La_Convection"]
-       del self.dictSimp["Forme_De_La_Convection"]
-       self.dictSimp['Convection_De_U_Et_V']=True
-       self.dictSimp['Convection_De_H']=True
-       if len(valeurs)==2 : return
-       self.dictSimp['Convection_De_K_Et_Epsilon']=True
-       self.dictSimp['Convection_Des_Traceurs']=True
-
-   def Discretisations_En_Espace(self):
-       self.decoupeListe( self.dictSimp["Discretisations_En_Espace"],"Discretisations_En_Espace")
-       del self.dictSimp["Discretisations_En_Espace"]
-       
-   def Date_De_L_Origine_Des_Temps (self):
-       valeurs=self.dictSimp["Date_De_L_Origine_Des_Temps"]
-       self.dictSimp['Annee']=valeurs[0]
-       self.dictSimp['Mois']=valeurs[1]
-       self.dictSimp['Jour']=valeurs[2]
-       del  self.dictSimp["Date_De_L_Origine_Des_Temps"]
-       
-   
-   def Heure_De_L_Origine_Des_Temps (self):
-       valeurs=self.dictSimp["Heure_De_L_Origine_Des_Temps"]
-       self.dictSimp['Heure']=valeurs[0]
-       self.dictSimp['Minute']=valeurs[1]
-       self.dictSimp['Seconde']=valeurs[2]
-       del  self.dictSimp["Heure_De_L_Origine_Des_Temps"]
-
-   def Liquid_Boundaries(self):
-       #print 'Liquid Boundaries'
-       texte_Boundaries="Liquid_Boundaries=( "
-       premier=0
-       if 'Prescribed_Elevations' in self.dictSimp.keys(): 
-           valeurs=self.dictSimp["Prescribed_Elevations"]
-       elif 'Cotes_Imposees' in self.dictSimp.keys(): 
-           valeurs=self.dictSimp["Cotes_Imposees"]
-       else : valeurs=()
-       #print valeurs
-       for e in range(len(valeurs)):
-          if valeurs[e] == "" or valeurs[e] == "\n" : continue
-          if eval(valeurs[e],{})==0 : continue
-          if not premier : premier=1
-          texte_Boundaries += "_F(Type_Condition = 'Prescribed Elevations',\n"
-          texte_Boundaries += "Prescribed_Elevations = " + str(valeurs[e]) + "),\n"
-               
-       if 'Prescribed_Flowrates' in self.dictSimp.keys(): 
-          valeurs=self.dictSimp["Prescribed_Flowrates"]
-       elif 'Debits_Imposes' in self.dictSimp.keys(): 
-          valeurs=self.dictSimp["Debits_Imposes"]
-       else : valeurs=()
-       #print valeurs
-       for e in range(len(valeurs)):
-          if valeurs[e] == "" or valeurs[e] == "\n" : continue
-          if eval(valeurs[e],{})==0 : continue
-          if not premier : premier=1
-          texte_Boundaries += "_F(Type_Condition = 'Prescribed Flowrates',\n"
-          texte_Boundaries += "Prescribed_Flowrates = " + str(valeurs[e]) + "),\n"
+       #print valeursPE,valeursPF,valeursPV
+
+       for e in range(len(valeursPE)):
+          if valeursPE[e] != "" or valeursPE[e] != "\n" :
+            if eval(valeursPE[e],{}) != 0 : 
+               texte_Boundaries += "_F(BOUNDARY_TYPE = 'Prescribed Elevations',\n"
+               texte_Boundaries += "PRESCRIBED_ELEVATIONS = " + str(valeursPE[e]) + "),\n"
+               continue
+
+          if valeursPF[e] != "" or valeursPF[e] != "\n" :
+            if eval(valeursPF[e],{}) != 0 : 
+               texte_Boundaries += "_F(BOUNDARY_TYPE = 'Prescribed Flowrates',\n"
+               texte_Boundaries += "PRESCRIBED_FLOWRATES = " + str(valeursPF[e]) + "),\n"
+               continue
                
-       if 'Prescribed_Velocity' in self.dictSimp.keys(): 
-           valeurs=self.dictSimp["Prescribed_Velocity"]
-       elif 'Vitesses_Imposees' in self.dictSimp.keys(): 
-           valeurs=self.dictSimp["Vitesses_Imposees"]
-       else : valeurs=()
-       #print valeurs
-       for e in range(len(valeurs)):
-          if valeurs[e] == "" or valeurs[e] == "\n" : continue
-          if eval(valeurs[e],{})==0 : continue
-          if not premier : premier=1
-          texte_Boundaries += "_F(Type_Condition = 'Prescribed Velocity',\n"
-          texte_Boundaries += "Prescribed_Velocity = " + str(valeurs[e]) + "),\n"
-       if premier :  texte_Boundaries +="),\n"
-       else : texte_Boundaries="" ; print "pb texte_Boundaries "
+          if valeursPV[e] != "" or valeursPV[e] != "\n" :
+             if eval(valeursPV[e],{})!=0 : 
+                texte_Boundaries += "_F( BOUNDARY_TYPE= 'Prescribed Velocity',\n"
+                texte_Boundaries += "PRESCRIBED_VELOCITIES = " + str(valeursPV[e]) + "),\n"
+                continue
+          print "pb texte_Boundaries avec la valeur numero ", e
+
+       texte_Boundaries +="),\n"
        self.textePy += texte_Boundaries
       
diff --git a/convert/convert_TELEMAC3.py b/convert/convert_TELEMAC3.py
deleted file mode 100644 (file)
index 6bbb499..0000000
+++ /dev/null
@@ -1,472 +0,0 @@
-# Copyright (C) 2007-2013   EDF R&D
-#
-# This library is free software; you can redistribute it and/or
-# modify it under the terms of the GNU Lesser General Public
-# License as published by the Free Software Foundation; either
-# version 2.1 of the License.
-#
-# This library is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-# Lesser General Public License for more details.
-#
-# You should have received a copy of the GNU Lesser General Public
-# License along with this library; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
-#
-# See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
-#
-import re, string
-from Extensions.i18n import tr
-
-                                                                                        
-from convert_python import PythonParser
-
-pattern_comment_slash   = re.compile(r"^\s*/")
-pattern_eta   = re.compile(r".*&ETA.*")
-pattern_fin   = re.compile(r".*&FIN.*")
-pattern_oui   = re.compile(r"^\s*(oui|OUI|YES|yes|TRUE|VRAI)\s*$")
-pattern_non   = re.compile(r"^\s*(non|NON|NO|no|FALSE|FAUX)\s*$")
-pattern_blanc = re.compile(r"^\s*$")
-pattern_listeVide = re.compile(r"^\s*'\s*'\s*$")
-pattern_commence_par_quote=re.compile(r'^\s*[\'"].*')
-pattern_finit_par_virgule_ou_affect=re.compile(r'^.*(,|;|=|:)\s*$')
-
-pattern_ligne=re.compile(r'^\s*(?P<ident>[^=:]*)\s*[:=]\s*(?P<reste>.*)$')
-
-pattern_variables=re.compile (r"^\s*(?P<ident>VARIABLES FOR GRAPHIC PRINTOUTS|VARIABLES POUR LES SORTIES GRAPHIQUES)\s*[:=]\s*(?P<valeur>[A-Za-z]+(\d*|\*)(,[A-Za-z]+(\d*|\*))*)\s*(?P<reste>.*)$")
-
-# Attention aux listes de flottants
-pattern_liste=re.compile(r'^\s*(?P<valeur>[+-.\w]+(\s*;\s*[+-.\w]+)+)\s*(?P<reste>.*)$')
-pattern_liste_texte=re.compile(r"^\s*(?P<valeur>('.*(';\s*))+('.*'\s*)?)(?P<reste>.*)$")
-pattern_flottant=re.compile(r'^\s*(?P<valeur>[+-]?((\d+(\.\d*)?)|(\.\d+))([dDeE][+-]?\d+)?)\s*(?P<reste>.*)$')
-pattern_texteQuote  = re.compile (r"^\s*(?P<valeur>'[^']+(''[^']+)*')\s*(?P<reste>.*)$")
-pattern_texteSimple = re.compile (r"(?P<valeur>(^|\s)\s*[\w\.-]+)\s*(?P<reste>.*)$")
-pattern_texteVide   = re.compile (r"^\s*(?P<valeur>'')\s*(?P<reste>.*)$")
-
-pattern_ContientDouble=re.compile (r"^.*''.*$")
-
-# le pattern texte reconnait 
-#nom1 nom 2 : ou = chaine entre ' 
-# avec eventuellement  des quotes au milieu par exemple
-# TITRE = 'TELEMAC 2D : GOUTTE D''EAU DANS UN BASSIN$'
-# m.group("texte") va rendre 'TELEMAC 2D : GOUTTE D''EAU DANS UN BASSIN$' 
-
-
-#Si le code n est pas Telemac
-try :
-#if 1 :
-   from aideAuxConvertisseurs import ListeSupprimeCasToEficas
-   from enumDicoTelemac       import TelemacdicoEn
-except :
-   pass
-
-from Extensions import localisation
-
-from determine import monEnvQT5
-
-
-
-def entryPoint():
-   """
-   Return a dictionary containing the description needed to load the plugin
-   """
-   return {
-          'name' : 'TELEMAC3',
-          'factory' : TELEMACParser
-          }
-
-class TELEMACParser(PythonParser):
-   """
-   This converter works like PythonParser, except that it also initializes all
-   model variables to None in order to avoid Python syntax errors when loading
-   a file with a different or inexistent definition of variables.
-   """
-
-   def convert(self, outformat, appli=None):
-
-      from Accas import A_BLOC, A_FACT, A_SIMP
-      self.dicoCasToCata=appli.readercata.dicoCasToCata
-      self.dicoInverse=appli.readercata.dicoInverse
-      self.dicoMC=appli.readercata.dicoMC
-      self.Ordre_Des_Commandes=appli.readercata.Ordre_Des_Commandes
-
-      if appli.langue=='fr' :
-          from enumDicoTelemac       import DicoEnumCasFrToEnumCasEn
-          for k in DicoEnumCasFrToEnumCasEn.keys() :
-              TelemacdicoEn[k]=DicoEnumCasFrToEnumCasEn[k]
-
-      text=""
-      self.dictSimp={}
-
-      l_lignes_texte_all = string.split(self.text,'\n')
-      l_lignes_texte = []
-      for l  in l_lignes_texte_all :
-        if not(pattern_comment_slash.match(l)): l_lignes_texte.append(l)
-
-      l_lignes=[]
-      i=0
-      while (i < len(l_lignes_texte)) :
-          ligne=l_lignes_texte[i]
-          i=i+1
-          if not(pattern_finit_par_virgule_ou_affect.match(ligne)):
-             l_lignes.append(ligne)
-             continue
-          nouvelle_ligne=ligne
-          while (i < len(l_lignes_texte)):
-             ligne_traitee=l_lignes_texte[i]
-             i=i+1
-             nouvelle_ligne += ligne_traitee
-             if not(pattern_finit_par_virgule_ou_affect.match(ligne_traitee)):
-                l_lignes.append(nouvelle_ligne)
-                break
-  
-
-      for ligne in l_lignes :
-          if pattern_comment_slash.match(ligne) : continue
-          if pattern_eta.match(ligne) : continue
-          if pattern_fin.match(ligne) : continue
-          if pattern_blanc.match(ligne) : continue
-
-          finLigne=ligne
-          while finLigne != "" :
-              if pattern_comment_slash.match(finLigne) : finLigne=""; continue
-              valeur=""
-              if pattern_variables.match(finLigne) :
-                 m=pattern_variables.match(finLigne)
-                 simpCas=self.traiteIdent(m.group('ident'))
-                 valeur=m.group('valeur')
-                 finLigne=m.group('reste')
-                 self.dictSimp[simpCas]=valeur
-                 continue
-
-              
-              m=pattern_ligne.match(finLigne)
-              if m == None : 
-                 #print "________________________________________________"
-                 print 'pb avec ****', finLigne , '**** dans ', ligne
-                 #print "________________________________________________"
-                 break
-      
-              simpCas=self.traiteIdent(m.group('ident'))
-              if not simpCas : 
-                 finLigne=m.group('reste')
-                 continue
-
-              finLigne=m.group('reste')
-              # attention, l ordre des if est important
-              if pattern_liste.match(finLigne) :
-                 m=pattern_liste.match(finLigne)
-              elif pattern_liste_texte.match(finLigne) :
-                 m=pattern_liste_texte.match(finLigne)
-              elif pattern_texteQuote.match(finLigne) :
-                 m=pattern_texteQuote.match(finLigne)
-              elif pattern_flottant.match(finLigne) : 
-                 m=pattern_flottant.match(finLigne)
-              elif pattern_texteVide.match(finLigne):
-                 m=pattern_texteVide.match(finLigne)
-              elif pattern_texteSimple.match(finLigne):
-                 m=pattern_texteSimple.match(finLigne)
-              else :
-                 #print "________________________________________________"
-                 print 'pb avec ****', finLigne , '**** dans ', ligne
-                 print "non match"
-                 #print "________________________________________________"
-                 break
-              
-
-              valeur=m.group('valeur')
-              if pattern_blanc.match(valeur) : valeur=None
-
-              if pattern_flottant.match(finLigne) : 
-                 valeur=re.sub("d","e",valeur)
-                 valeur=re.sub("D","E",valeur)
-
-              if pattern_liste.match(finLigne) or pattern_liste_texte.match(finLigne):
-                 valeur=valeur.split(";")
-
-
-              finLigne=m.group('reste')
-              self.dictSimp[simpCas]=valeur
-              #print self.dictSimp
-      
-      if 'TITLE' not in self.dictSimp.keys() :
-          import os
-          #self.dictSimp['TITLE']=os.path.basename(self.filename)
-      
-      dicoParMC={}
-      for simp in self.dictSimp.keys():
-          if simp in TELEMACParser.__dict__.keys() : apply(TELEMACParser.__dict__[simp],(self,))
-
-      for simp in self.dictSimp.keys():
-          if simp in ListeSupprimeCasToEficas: continue
-          if simp not in self.dicoInverse.keys() : 
-             #print "************"
-             print "pb avec dans dicoInverse", simp,'------'
-             #print "************"
-             #print poum
-             continue
-          listeGenea=self.dicoInverse[simp]
-          listeGeneaReverse=[]
-          for (u,v) in listeGenea : 
-              if isinstance(v,A_BLOC.BLOC): continue
-              listeGeneaReverse.append(u)
-          listeGeneaReverse.reverse()
-          dicoTravail=dicoParMC
-          i=0
-          #print (listeGeneaReverse[0:-1])
-          while i < len(listeGeneaReverse[0:-1]) : 
-            mot=listeGeneaReverse[i]
-            i=i+1
-            if mot not in dicoTravail.keys(): dicoTravail[mot]={}
-            dicoTravail=dicoTravail[mot]
-          dicoTravail[simp]=self.dictSimp[simp]
-        
-      self.textePy=""
-      #print "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%"
-      #print dicoParMC
-      #print "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%"
-      listeMC=self.tri(dicoParMC.keys())
-      for k in listeMC :
-          #print "----------- traitement de " , k
-          self.textePy += str(k )+ "("
-          self.traiteMC(dicoParMC[k])
-          self.textePy += ");\n"
-          #print "----------- " 
-           
-              
-      appli.listeTelemac=self.dictSimp.keys()  
-      return self.textePy
-
-
-   #----------------------------------------
-   def traiteIdent(self,ident):
-   # enleve les espaces de part et autre
-   # traduit du langage Telemac vers le langage Catalogue
-   #----------------------------------------
-          #print ident
-          while ident[-1] == " " or ident[-1] == '\t' : ident=ident[0:-1]
-          while ident[0]  == " " or ident[0]  == '\t' : ident=ident[1:]
-          try : identCata=self.dicoCasToCata[ident]
-          except :  
-            print  "---> ", "pb mot clef  pour", ident
-            identCata=None
-          return identCata
-
-
-   def traiteMC(self,dico) :
-       from Accas import A_BLOC, A_FACT, A_SIMP
-       for k in dico.keys() :
-           valeur= dico[k]
-           if k not in self.dicoMC.keys() : kA=self.dicoFrancaisAnglais[k] 
-           else : kA=k
-           obj=self.dicoMC[kA]
-           if isinstance(obj,A_FACT.FACT):   self.convertFACT(obj,kA,valeur)
-           elif isinstance(obj,A_BLOC.BLOC): self.convertBLOC(obj,kA,valeur)
-           elif isinstance(obj,A_SIMP.SIMP): self.convertSIMP(obj,kA,valeur)
-           else : print "%%%%%%%%%%%\n", "pb conversion type pour", k, obj, "\n%%%%%%%%%%%"
-
-           #print "_____________"
-
-   def convertFACT(self,obj,nom,valeur):
-       #print "convertFACT", nom,valeur
-       if nom in TELEMACParser.__dict__.keys() : 
-          apply(TELEMACParser.__dict__[nom],(self,))
-          return
-       self.textePy +=  nom + "=_F( "
-       self.traiteMC(valeur)
-       self.textePy += '),\n'
-
-
-   def convertBLOC(self,obj,nom,valeur):
-       print "BLOC "
-       print nom
-
-   def convertSIMP(self,obj,nom,valeur):
-       #print 'in convertSIMP', nom,valeur
-       if nom in ("PRESCRIBED_FLOWRATES", "PRESCRIBED_VELOCITIES", "PRESCRIBED_ELEVATIONS" ): return
-       if obj.max==1 : 
-          if hasattr(obj.type[0],'ntuple') : 
-             lval=[]
-             for v in valeur : 
-               try :    v=eval(v,{})
-               except : pass
-               lval.append(v)
-             self.textePy += nom + "=" + str(lval) +","
-             return
-          if 'TXM' in obj.type :
-
-              if pattern_ContientDouble.match(str(valeur)):
-                 valeur=re.sub("''","\'\'",str(valeur))
-                 self.textePy += nom + "=" + str(valeur) +","
-                 return
-              valeur=str(valeur)
-
-              # ceinture et bretelle si les re sont correctes -)
-              while valeur[-1] == " " or valeur[-1] == '\t' : valeur=valeur[0:-1]
-              while valeur[0]  == " " or valeur[0]  == '\t' : valeur=valeur[1:]
-
-
-
-          # Pour les enum
-          try    : valeur=eval(valeur,{})
-          except : pass
-
-          if nom in TelemacdicoEn.keys(): 
-             try    : 
-               valeur=TelemacdicoEn[nom][valeur]
-               self.textePy += nom + "= '" + str(valeur) +"',"
-               return
-             except : pass
-
-
-          if obj.into != [] and obj.into != None and not('R' in obj.type) and not('I' in obj.type):
-             for possible in obj.into :
-                try :
-                  if possible.upper() == valeur.upper():
-                     valeur=possible
-                     break
-                  v=valeur[0].upper()+valeur[1:].lower()
-                  v2=tr(v)
-                  if possible.upper() == v2.upper():
-                     valeur=possible
-                     break
-                except:
-                   if valeur != None :
-                      print "pb avec le type de ", obj.nom, obj.type, 'et la valeur ', valeur
-
-          if 'Fichier' in obj.type or 'TXM' in obj.type or 'Repertoire' in obj.type :
-              valeur=str(valeur)
-              if valeur == "" or valeur == " " : 
-                 self.textePy += nom + "= '" + str(valeur) +"' ,"
-                 return
-              while valeur[-1] == " " : valeur=valeur[0:-1]
-              while valeur[0]  == " " : valeur=valeur[1:]
-              self.textePy += nom + "= '" + str(valeur) +"' ,"
-              return
-
-          if bool in obj.type :
-            if   valeur == True  :  self.textePy += nom + "= True,"
-            elif valeur == False :  self.textePy += nom + "= False,"
-            elif pattern_oui.match(valeur) : self.textePy += nom + "= True,"
-            elif pattern_non.match(valeur) : self.textePy += nom + "= False,"
-            else :  self.textePy += nom + "= None,"
-            return
-          self.textePy += nom + "=" + str(valeur) +","
-
-       else :
-          if valeur == () or valeur ==[] or pattern_listeVide.match(str(valeur)) :
-             self.textePy += nom + "= None,"
-             return
-
-          # les 4 lignes suivantes sont probablement inutiles
-          while valeur[-1] == " " or  valeur[-1]=="'" : valeur=valeur[0:-1]
-          while valeur[0]  == " " or  valeur[-0]=="'" : valeur=valeur[1:]
-          oldValeur=valeur
-          if isinstance(valeur, basestring) :
-             if   ";" in valeur : valeur=valeur.split(';')
-             else  : valeur=valeur.split(',')
-
-          if len(valeur)< 2 and pattern_flottant.match(oldValeur):
-          # Attention : on attend une liste mais on a une seule valeur!
-             try :    oldValeur=eval(oldValeur,{})
-             except : pass
-             if nom in TelemacdicoEn.keys() :  
-                v=TelemacdicoEn[nom][oldValeur]
-                self.textePy += nom + "= ('" + str(v) +"',),"
-             else :  
-                self.textePy += nom + "= (" + str(oldValeur) +",),"
-             return
-           
-          if valeur == None : return
-          newVal=[]
-          for v in valeur :
-            try :    v=eval(v,{})
-            except : pass
-            if nom in TelemacdicoEn.keys():
-               #print "est dans le dico des enum, valeurs multiples"
-               try    : v=TelemacdicoEn[nom][v]
-               except : pass
-            newVal.append(v)
-          self.textePy += nom + "=" + str(newVal) +","
-          
-
-
-   def tri(self, listeIn):
-      if len(listeIn) == 1 : return listeIn
-      if self.Ordre_Des_Commandes == None : return listeIn
-      #print listeIn
-      listeOut=[listeIn[0],]
-      for k in listeIn[1:]:
-          #k=str(self.dicoFrancaisAnglais[kF])
-          ordreK=self.Ordre_Des_Commandes.index(k)
-          i=0
-          while i < len(listeOut):
-             #ordreI=self.Ordre_Des_Commandes.index(self.dicoFrancaisAnglais[listeOut[i]])
-             ordreI=self.Ordre_Des_Commandes.index(listeOut[i])
-             if ordreK < ordreI : break
-             i=i+1
-          #listeOut.insert(i,kF)
-          listeOut.insert(i,k)
-      return listeOut
-
-   def LIQUID_BOUNDARIES(self):
-       print 'Liquid Boundaries'
-       texte_Boundaries="LIQUID_BOUNDARIES=( "
-       if 'PRESCRIBED_ELEVATIONS' in self.dictSimp.keys(): 
-              valeursPE=self.dictSimp["PRESCRIBED_ELEVATIONS"]
-              if not type(valeursPE)==list : valeursPE = (valeursPE,)
-              longueur=len(self.dictSimp["PRESCRIBED_ELEVATIONS"])
-       else : valeursPE=None
-       if 'PRESCRIBED_FLOWRATES' in self.dictSimp.keys(): 
-              valeursPF=self.dictSimp["PRESCRIBED_FLOWRATES"]
-              if not type(valeursPF)==list : valeursPF = (valeursPF,)
-              longueur=len(self.dictSimp["PRESCRIBED_FLOWRATES"])
-       else : valeursPF=None
-       if 'PRESCRIBED_VELOCITIES' in self.dictSimp.keys(): 
-              valeursPV=self.dictSimp["PRESCRIBED_VELOCITIES"]
-              if not type(valeursPV)==list : valeursPV = (valeursPV,)
-              longueur=len(self.dictSimp["PRESCRIBED_VELOCITIES"])
-       else : valeursPV=None
-
-       if valeursPE == None and valeursPF == None and valeursPV == None :
-             texte_Boundaries +="),\n"
-             return
-
-       if valeursPE == None or valeursPF == None or valeursPV == None :
-          listNulle=[]
-          for i in range(longueur) : listNulle.append('0') 
-
-
-       if valeursPE == None : valeursPE = listNulle
-       if valeursPF == None : valeursPF = listNulle
-       if valeursPV == None : valeursPV = listNulle
-      
-       #print valeursPE,valeursPF,valeursPV
-
-       for e in range(len(valeursPE)):
-          if valeursPE[e] != "" or valeursPE[e] != "\n" :
-            if eval(valeursPE[e],{}) != 0 : 
-               texte_Boundaries += "_F(BOUNDARY_TYPE = 'Prescribed Elevations',\n"
-               texte_Boundaries += "PRESCRIBED_ELEVATIONS = " + str(valeursPE[e]) + "),\n"
-               continue
-
-          if valeursPF[e] != "" or valeursPF[e] != "\n" :
-            if eval(valeursPF[e],{}) != 0 : 
-               texte_Boundaries += "_F(BOUNDARY_TYPE = 'Prescribed Flowrates',\n"
-               texte_Boundaries += "PRESCRIBED_FLOWRATES = " + str(valeursPF[e]) + "),\n"
-               continue
-               
-          if valeursPV[e] != "" or valeursPV[e] != "\n" :
-             if eval(valeursPV[e],{})!=0 : 
-                texte_Boundaries += "_F( BOUNDARY_TYPE= 'Prescribed Velocity',\n"
-                texte_Boundaries += "PRESCRIBED_VELOCITIES = " + str(valeursPV[e]) + "),\n"
-                continue
-          print "pb texte_Boundaries avec la valeur numero ", e
-
-       texte_Boundaries +="),\n"
-       self.textePy += texte_Boundaries
-      
index ac407e048622adcc039a521ffd64b8c0bd10e5fe..9e01ebf1c98024958fd51dfb318cc6a2753601fa 100644 (file)
@@ -48,7 +48,7 @@ def entryPoint():
    """
    return {
         # Le nom du plugin
-          'name' : 'TELEMAC3',
+          'name' : 'TELEMAC',
         # La factory pour creer une instance du plugin
           'factory' : TELEMACGenerator,
           }
@@ -63,8 +63,9 @@ class TELEMACGenerator(PythonGenerator):
    """
 
 #----------------------------------------------------------------------------------------
-   def gener(self,obj,format='brut',config=None,appli=None):
+   def gener(self,obj,format='brut',config=None,appli=None,statut="Entier"):
        
+      self.statut=statut
       self.langue=appli.langue
       self.initDico()
       # Pour Simplifier les verifs d ecriture
@@ -107,16 +108,27 @@ class TELEMACGenerator(PythonGenerator):
 
 
 #----------------------------------------------------------------------------------------
-# ecriture
+# ecriture de tout
 #----------------------------------------------------------------------------------------
 
    def writeDefault(self,fn) :
        self.texteDico+='\n&ETA\n&FIN\n'
-       fileDico = fn[:fn.rfind(".")] + '.py'
+       if self.statut == 'Leger' : extension = ".Lcas"
+       else                      : extension = ".cas"
+       fileDico = fn[:fn.rfind(".")] + extension 
        f = open( str(fileDico), 'wb')
        f.write( self.texteDico )
        f.close()
 
+#----------------------------------------------------------------------------------------
+# ecriture de Leger
+#----------------------------------------------------------------------------------------
+
+   def writeLeger(self,fn,jdc,config,appli) :
+       jdc_formate=self.gener(jdc,config=config,appli=appli,statut="Leger")
+       self.writeDefault(fn) 
+
+
 #----------------------------------------------------------------------------------------
 #  analyse de chaque noeud de l'arbre 
 #----------------------------------------------------------------------------------------
@@ -144,8 +156,9 @@ class TELEMACGenerator(PythonGenerator):
         # Attention pas sur --> ds certains cas non traite par MCFACT ?
         # a reflechir avec Yoann 
         # ajouter le statut ?
-        if hasattr(obj.definition,'defaut') and (obj.definition.defaut == obj.valeur) and (obj.nom not in self.listeTelemac) : return s
-        if hasattr(obj.definition,'defaut') and obj.definition.defaut != None and (type(obj.valeur) == types.TupleType or type(obj.valeur) == types.ListType) and (tuple(obj.definition.defaut) == tuple(obj.valeur)) and (obj.nom not in self.listeTelemac) : return s
+        if self.statut == 'Leger' :
+          if hasattr(obj.definition,'defaut') and (obj.definition.defaut == obj.valeur) and (obj.nom not in self.listeTelemac) : return s
+          if hasattr(obj.definition,'defaut') and obj.definition.defaut != None and (type(obj.valeur) == types.TupleType or type(obj.valeur) == types.ListType) and (tuple(obj.definition.defaut) == tuple(obj.valeur)) and (obj.nom not in self.listeTelemac) : return s
  
 
         #nomMajuscule=obj.nom.upper()
@@ -193,11 +206,13 @@ class TELEMACGenerator(PythonGenerator):
            return s
 
         if obj.nom not in self.dicoCataToCas :
+           if obj.nom == 'Consigne' : return ""
            print obj.nom , ' non traite'
            return s
 
         nom=self.dicoCataToCas[obj.nom]
         if nom == "VARIABLES FOR GRAPHIC PRINTOUTS" : s3=s3.replace(';',',')
+        if nom == "VARIABLES POUR LES SORTIES GRAPHIQUES" : s3=s3.replace(';',',')
         if s3 == "" or s3 == " " : s3 = "None"
         ligne=nom+ " : " + s3 + "\n"
         if len(ligne) > 72 : ligne=self.redecoupeLigne(nom,s3)