From b8538e9b2594d493c469a58cfaa2b988e6b32f94 Mon Sep 17 00:00:00 2001 From: YOANN AUDOUIN Date: Tue, 23 Mar 2021 11:41:57 +0100 Subject: [PATCH] [Telemac] Update of catalog + adding khione --- Telemac/CMakeLists.txt | 6 + Telemac/artemis_cata_auto.py | 3149 +++++----- Telemac/artemis_dicoCasEnToCata.py | 78 +- Telemac/artemis_dicoCasFrToCata.py | 78 +- Telemac/artemis_enum_auto.py | 176 +- Telemac/artemis_labelCataToIhm_en.qm | Bin 16916 -> 14032 bytes Telemac/artemis_labelCataToIhm_fr.qm | Bin 19233 -> 16080 bytes Telemac/gaia_cata_auto.py | 42 +- Telemac/gaia_enum_auto.py | 7992 +++++++++++++++++++++++- Telemac/khione_cata_auto.py | 1313 ++++ Telemac/khione_dicoCasEnToCata.py | 206 + Telemac/khione_dicoCasFrToCata.py | 206 + Telemac/khione_enum_auto.py | 2180 +++++++ Telemac/khione_labelCataToIhm_en.qm | Bin 0 -> 14330 bytes Telemac/khione_labelCataToIhm_fr.qm | Bin 0 -> 16130 bytes Telemac/postel3d_cata_auto.py | 766 +-- Telemac/postel3d_dicoCasEnToCata.py | 66 +- Telemac/postel3d_dicoCasFrToCata.py | 66 +- Telemac/postel3d_enum_auto.py | 88 +- Telemac/postel3d_labelCataToIhm_en.qm | Bin 7479 -> 6601 bytes Telemac/postel3d_labelCataToIhm_fr.qm | Bin 7718 -> 6608 bytes Telemac/sisyphe_cata_auto.py | 241 +- Telemac/sisyphe_dicoCasEnToCata.py | 442 +- Telemac/sisyphe_dicoCasFrToCata.py | 442 +- Telemac/sisyphe_enum_auto.py | 5034 ++++++++++++++- Telemac/sisyphe_labelCataToIhm_en.qm | Bin 21020 -> 20800 bytes Telemac/sisyphe_labelCataToIhm_fr.qm | Bin 22438 -> 22212 bytes Telemac/stbtel_cata_auto.py | 1111 ++-- Telemac/stbtel_dicoCasEnToCata.py | 140 +- Telemac/stbtel_dicoCasFrToCata.py | 140 +- Telemac/stbtel_enum_auto.py | 148 +- Telemac/stbtel_labelCataToIhm_en.qm | Bin 6754 -> 6906 bytes Telemac/stbtel_labelCataToIhm_fr.qm | Bin 7972 -> 8133 bytes Telemac/telemac2d_cata_auto.py | 4774 +++++++++----- Telemac/telemac2d_dicoCasEnToCata.py | 156 +- Telemac/telemac2d_dicoCasFrToCata.py | 164 +- Telemac/telemac2d_enum_auto.py | 849 ++- Telemac/telemac2d_labelCataToIhm_en.qm | Bin 39970 -> 44907 bytes Telemac/telemac2d_labelCataToIhm_fr.qm | Bin 44443 -> 50264 bytes Telemac/telemac3d_cata_auto.py | 1647 +++-- Telemac/telemac3d_dicoCasEnToCata.py | 82 +- Telemac/telemac3d_dicoCasFrToCata.py | 82 +- Telemac/telemac3d_enum_auto.py | 2525 +++++++- Telemac/telemac3d_labelCataToIhm_en.qm | Bin 42600 -> 44474 bytes Telemac/telemac3d_labelCataToIhm_fr.qm | Bin 46823 -> 48864 bytes Telemac/tomawac_cata_auto.py | 142 +- Telemac/tomawac_dicoCasEnToCata.py | 14 +- Telemac/tomawac_dicoCasFrToCata.py | 14 +- Telemac/tomawac_enum_auto.py | 38 +- Telemac/tomawac_labelCataToIhm_en.qm | Bin 26950 -> 27201 bytes Telemac/tomawac_labelCataToIhm_fr.qm | Bin 28995 -> 29193 bytes Telemac/waqtel_cata_auto.py | 1860 +++--- Telemac/waqtel_dicoCasEnToCata.py | 196 +- Telemac/waqtel_dicoCasFrToCata.py | 200 +- Telemac/waqtel_enum_auto.py | 259 +- Telemac/waqtel_labelCataToIhm_en.qm | Bin 12631 -> 12378 bytes Telemac/waqtel_labelCataToIhm_fr.qm | Bin 13658 -> 13423 bytes 57 files changed, 28911 insertions(+), 8201 deletions(-) create mode 100644 Telemac/khione_cata_auto.py create mode 100644 Telemac/khione_dicoCasEnToCata.py create mode 100644 Telemac/khione_dicoCasFrToCata.py create mode 100644 Telemac/khione_enum_auto.py create mode 100644 Telemac/khione_labelCataToIhm_en.qm create mode 100644 Telemac/khione_labelCataToIhm_fr.qm diff --git a/Telemac/CMakeLists.txt b/Telemac/CMakeLists.txt index 400e4f35..831eba38 100644 --- a/Telemac/CMakeLists.txt +++ b/Telemac/CMakeLists.txt @@ -76,6 +76,12 @@ install ( FILES aideAuxConvertisseurs.py gaia_labelCataToIhm_en.qm gaia_labelCataToIhm_fr.qm gaia_cata_auto.py + khione_dicoCasEnToCata.py + khione_dicoCasFrToCata.py + khione_enum_auto.py + khione_labelCataToIhm_en.qm + khione_labelCataToIhm_fr.qm + khione_cata_auto.py prefs.py prefs_TELEMAC.py properties.py diff --git a/Telemac/artemis_cata_auto.py b/Telemac/artemis_cata_auto.py index 6589b102..9dad6ec0 100644 --- a/Telemac/artemis_cata_auto.py +++ b/Telemac/artemis_cata_auto.py @@ -44,1177 +44,927 @@ JdC = JDC_CATA (code = 'ARTEMIS', # Catalog entry for the MAP function : c_pre_interfaceBody_mesh # ======================================================================= -VERSION_CATALOGUE="TRUNK_20180306" +VERSION_CATALOGUE="TRUNK_20210323" # ----------------------------------------------------------------------- -INPUT_OUTPUT_FILES = PROC(nom= "INPUT_OUTPUT_FILES",op = None, +COMPUTATION_ENVIRONMENT = PROC(nom= "COMPUTATION_ENVIRONMENT",op = None, # ----------------------------------------------------------------------- # ----------------------------------- - NAMES = FACT(statut='f', + INPUT = FACT(statut='o', # ----------------------------------- # ----------------------------------- - GEOMETRY_FILE = SIMP(statut ='f', + DATA = FACT(statut='o', # ----------------------------------- - typ = ('Fichier','All Files (*)'), max='**', - fr = """Nom du fichier contenant le maillage du calcul a realiser.""", - ang = """Name of the file which contains the computational mesh.""", - ), -# ----------------------------------- - FORTRAN_FILE = SIMP(statut ='f', -# ----------------------------------- - typ = ('Fichier','All Files (*)'), max='**', - defaut = 'DEFAUT', - fr = """Nom du fichier FORTRAN a soumettre.""", - ang = """Name of the FORTRAN file used for the computation.""", - ), -# ----------------------------------- - STEERING_FILE = SIMP(statut ='f', -# ----------------------------------- - typ = ('Fichier','All Files (*)'), max='**', - defaut = '', - fr = """Nom du fichier contenant les parametres du calcul a realiser.""", - ang = """Name of the steering file used for the computation.""", - ), -# ----------------------------------- - BOUNDARY_CONDITIONS_FILE = SIMP(statut ='f', -# ----------------------------------- - typ = ('Fichier','All Files (*)'), max='**', - fr = """Nom du fichier contenant les types de conditions aux limites. -Ce fichier est construit de facon automatique par le mailleur et STBTEL +# ----------------------------------- + GEOMETRY_FILE = SIMP(statut ='f', +# ----------------------------------- + typ = ('Fichier','All Files (*)'), max='**', + fr = """Nom du fichier contenant le maillage du calcul a realiser.""", + ang = """Name of the file which contains the computational mesh.""", + ), +# ----------------------------------- + BOTTOM_TOPOGRAPHY_SMOOTHING = SIMP(statut ='f', +# ----------------------------------- + typ = 'I', + defaut = 0, + fr = """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.""", + ang = """Number of smoothings done on the topography. +Each smoothing, using a mass matrix, is conservative. +It is used when bathymetric data provide too irregular results +after interpolation.""", + ), +# ----------------------------------- + FORTRAN_FILE = SIMP(statut ='f', +# ----------------------------------- + typ = 'FichierOuRepertoire', + defaut = '', + fr = """Nom du fichier FORTRAN a soumettre, contenant les +sous-programmes specifiques au modele.""", + ang = """Name of the FORTRAN file to be submitted, including specific +subroutines of the model.""", + ), +# ----------------------------------- + BOUNDARY_CONDITIONS_FILE = SIMP(statut ='f', +# ----------------------------------- + typ = ('Fichier','All Files (*)'), max='**', + fr = """Nom du fichier contenant les types de conditions aux limites. +Ce fichier est construit de facon automatique par le mailleur et \stbtel au moyen de couleurs affectees aux noeuds des frontieres du domaine de calcul.""", - ang = """Name of the boundary conditions file. It is automatically built -by STBTEL or by the mesh generator MATISSE.""", - ), -# ----------------------------------- - RESULTS_FILE = SIMP(statut ='f', -# ----------------------------------- - typ = ('Fichier','All Files (*)','Sauvegarde'), max='**', - defaut = '', - fr = """Nom du fichier dans lequel seront ecrits les resultats du calcul, -avec la periodicite donnee par le mot cle PERIODE POUR LES SORTIES -GRAPHIQUES. -Sur IBM, ce fichier est alloue automatiquement s''il n''existe pas, -avec les caracteristiques suivantes : - Format d''enregistrement : VBS - Longueur d''enregistrement : X - Taille de bloc : 6204 - Nombre de pistes : 50 en primaire, 10 en secondaire -La place memoire ainsi reservee est suffisante pour la plupart des -calculs de dimension moyenne.""", - ang = """Name of the results file corresponding to the computations and -which contains the variables specified by the key-word -VARIABLES FOR GRAPHIC PRINTOUTS.""", - ), -# ----------------------------------- - BOTTOM_TOPOGRAPHY_FILE = SIMP(statut ='f', -# ----------------------------------- - typ = ('Fichier','All Files (*)'), max='**', - defaut = '', - fr = """Nom du fichier eventuel contenant la bathymetrie associee au + ang = """Name of the boundary conditions file. It is automatically built +by \stbtel or by the mesh generator MATISSE.""", + ), +# ----------------------------------- + BOTTOM_TOPOGRAPHY_FILE = SIMP(statut ='f', +# ----------------------------------- + typ = ('Fichier','All Files (*)'), max='**', + defaut = '', + fr = """Nom du fichier eventuel contenant la bathymetrie associee au maillage. -Si ce mot-cle est utilise, c''est cette bathymetrie qui sera +Si ce mot-cle est utilise, c est cette bathymetrie qui sera utilisee pour le calcul.""", - ang = """Name of a potential bathymetry file. If this key-word is specified, + ang = """Name of a potential bathymetry file. If this keyword is specified, the bathymetry which it is defining is accounted for.""", - ), -# ----------------------------------- - TOMAWAC_DATA_FILE_1 = SIMP(statut ='f', -# ----------------------------------- - typ = ('Fichier','All Files (*)'), max='**', - defaut = '', - fr = """Fichier binaire contenant un spectre issu de TOMAWAC. -Les donnees de ce fichier seront a lire sur le canal 30.""", - ang = """Data file, written in binary mode, given a tomawac spectrum. -Data of this file must be read on unit 30.""", - ), -# ----------------------------------- - BINARY_DATA_FILE_1 = SIMP(statut ='f', -# ----------------------------------- - typ = ('Fichier','All Files (*)'), max='**', - defaut = '', - fr = """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.""", - ang = """Data file, written in binary mode, at the disposal of the user. -Data of this file must be read on unit 24.""", - ), -# ----------------------------------- - BINARY_DATA_FILE_2 = SIMP(statut ='f', -# ----------------------------------- - typ = ('Fichier','All Files (*)'), max='**', - defaut = '', - fr = """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.""", - ang = """Data file, written in binary mode, at the disposal of the user. -Data of this file must be read on unit 25.""", - ), -# ----------------------------------- - FORMATTED_DATA_FILE_1 = SIMP(statut ='f', -# ----------------------------------- - typ = ('Fichier','All Files (*)'), max='**', - defaut = '', - fr = """Fichier de donnees formate mis a la disposition de l''utilisateur. -Les donnees de ce fichier seront a lire sur le canal 26.""", - ang = """Data file, written in ASCII mode, at the disposal of the user. -Data of this file must be read on unit 26.""", - ), -# ----------------------------------- - FORMATTED_DATA_FILE_2 = SIMP(statut ='f', -# ----------------------------------- - typ = ('Fichier','All Files (*)'), max='**', - defaut = '', - fr = """Fichier de donnees formate mis a la disposition de l''utilisateur. -Les donnees de ce fichier seront a lire sur le canal 27.""", - ang = """Data file, written in ASCII mode, at the disposal of the user. -Data of this file must be read on unit 27.""", - ), -# ----------------------------------- - BINARY_RESULTS_FILE = SIMP(statut ='f', -# ----------------------------------- - typ = ('Fichier','All Files (*)','Sauvegarde'), max='**', - defaut = '', - fr = """Fichier des 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.""", - ang = """Results file, written in binary mode, at the disposal of the user. -Data of this file must be written on unit 28.""", - ), -# ----------------------------------- - FORMATTED_RESULTS_FILE = SIMP(statut ='f', -# ----------------------------------- - typ = ('Fichier','All Files (*)','Sauvegarde'), max='**', - defaut = '', - fr = """Fichier des resultats formate mis a la disposition de l''utilisateur. -Les resultats a placer dans ce fichier seront a ecrire sur -le canal 29.""", - ang = """Results file, written in ASCII mode, at the disposal of the user. -Data of this file must be written on unit 29.""", - ), -# ----------------------------------- - REFERENCE_FILE = SIMP(statut ='f', -# ----------------------------------- - typ = ('Fichier','All Files (*)'), max='**', - defaut = '', - 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""", - ), -# ----------------------------------- - AMPLITUDE_AND_PHASE_FILE = SIMP(statut ='f', -# ----------------------------------- - typ = ('Fichier','All Files (*)','Sauvegarde'), max='**', - defaut = '', - fr = """Nom du fichier dans lequel seront ecrits les phases et amplitudes -pour toutes les periodes et directions simulees dans le fichier des -parametres.""", - ang = """Name of the results file corresponding to the computations and -which contains the phase and amplitude at every point for all the -periods and directions specified in the steering file.""", - ), -# ----------------------------------- - FREE_SURFACE_FILE = SIMP(statut ='f', -# ----------------------------------- - typ = 'TXM', max='**', - defaut = '', - fr = """Nom du fichier dans lequel sera ecrite la surface libre fonction du -temps pour permettre une animation du fichier.""", - ang = """Name of the results file corresponding to the computations and -which contains the free surface at every point as a function of time. -This file can be animated to check free surface variations with time.""", - ), -# ----------------------------------- - LIST_OF_FILES = SIMP(statut ='f', -# ----------------------------------- - typ = 'TXM', min=16, max=16, - defaut = 'STEERING FILE;DICTIONARY;FORTRAN FILE;GEOMETRY FILE;BOUNDARY CONDITIONS FILE;RESULTS 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;TOMAWAC DATA FILE 1;AMPLITUDE AND PHASE FILE', - fr = """Liste des fichiers""", - ang = """List of files""", - ), - ), -# ----------------------------------- - TYPE_OF_BINARY = FACT(statut='f', -# ----------------------------------- -# ----------------------------------- - RESULTS_FILE_BINARY = SIMP(statut ='f', -# ----------------------------------- - typ = 'TXM', max='**', - into = ['IBM','I3E','STD'], - defaut = 'STD', - fr = """Type du binaire utilise pour l''ecriture du fichier des resultats. -Ce type depend de la machine sur laquelle le fichier a ete genere. -Les valeurs possibles sont les memes que pour le fichier de geometrie.""", - ang = """Binary type used to write on the results file. This type depends on -the machine used to create this file. Allowed values are the same -as used for the geometry file.""", - ), -# ----------------------------------- - GEOMETRY_FILE_BINARY = SIMP(statut ='f', -# ----------------------------------- - typ = 'TXM', max='**', - into = ['IBM','I3E','STD'], - defaut = 'STD', - fr = """Type du binaire utilise pour l''ecriture du fichier de geometrie. -Ce type depend de la machine sur laquelle le fichier a ete genere. + ), +# ----------------------------------- + BINARY_DATA_FILE_1 = SIMP(statut ='f', +# ----------------------------------- + typ = ('Fichier','All Files (*)'), max='**', + defaut = '', + fr = """Fichier de donnees, code en binaire, mis a la disposition de +l utilisateur.""", + ang = """Data file, written in binary mode, at the disposal of the user.""", + ), +# ----------------------------------- + BINARY_DATA_FILE_2 = SIMP(statut ='f', +# ----------------------------------- + typ = ('Fichier','All Files (*)'), max='**', + defaut = '', + fr = """Fichier de donnees, code en binaire, mis a la disposition de +l utilisateur.""", + ang = """Data file, written in binary mode, at the disposal of the user.""", + ), +# ----------------------------------- + FORMATTED_DATA_FILE_1 = SIMP(statut ='f', +# ----------------------------------- + typ = ('Fichier','All Files (*)'), max='**', + defaut = '', + fr = """Fichier de donnees formate mis a la disposition de l utilisateur.""", + ang = """Data file, written in ASCII mode, at the disposal of the user.""", + ), +# ----------------------------------- + FORMATTED_DATA_FILE_2 = SIMP(statut ='f', +# ----------------------------------- + typ = ('Fichier','All Files (*)'), max='**', + defaut = '', + fr = """Fichier de donnees formate mis a la disposition de l utilisateur.""", + ang = """Data file, written in ASCII mode, at the disposal of the user.""", + ), +# ----------------------------------- + VALIDATION = SIMP(statut ='f', +# ----------------------------------- + typ = bool, + defaut = False, + fr = """Option utilisee principalement pour le dossier de validation. +Le \telkey{FICHIER DE REFERENCE} est alors considere comme une +reference a laquelle on va comparer le calcul. La comparaison est +effectuee par le sous-programme \telfile{BIEF\_VALIDA} qui peut etre une +comparaison avec une solution exacte par exemple.""", + ang = """This option is primarily used for the validation documents. +The \telkey{REFERENCE FILE} is then considered as a +reference which the computation is going to be compared with. +The comparison is made by the subroutine \telfile{BIEF\_VALIDA}, +which can be modified as to +so as to include, for example, a comparison with an exact solution.""", + ), +# ----------------------------------- + b_VALIDATIONG = BLOC(condition="VALIDATION == True", +# ----------------------------------- +# ----------------------------------- + REFERENCE_FILE_FORMAT = SIMP(statut ='f', +# ----------------------------------- + typ = 'TXM', + into = ['SERAFIN','SERAFIND','MED'], + defaut = 'SERAFIN', + fr = """Format du \telkey{FICHIER DE REFERENCE}. Les valeurs possibles sont : - - IBM, pour un fichier cree sur IBM, - - I3E, pour un fichier cree sur HP, - - STD, permet de prendre par defaut le type de binaire associe - a la machine sur laquelle l''utilisateur travaille. - Il s''agit alors d''ordres READ et WRITE normaux.""", - ang = """Type of binary mode used for geometry file writing. -It depends on the machine used for the file generation. -Possible values are : - - IBM : for a file created on IBM, - - I3E : for a file created on HP, - - STD : enables to take the default binary type associated to - the machine on which the user is working. - It then concerns usual READ and WRITE instructiions.""", - ), - ), -# ----------------------------------- - STANDARD = FACT(statut='f', -# ----------------------------------- -# ----------------------------------- - GEOMETRY_FILE_STANDARD = SIMP(statut ='f', -# ----------------------------------- - typ = 'TXM', max='**', - into = ["LEONARD","RUBENS","SELAFIN"], - defaut = ["SELAFIN"], - fr = """Adapte la lecture du FICHIER DE GEOMETRIE au standard choisi pour -celui-ci. Ce peut etre : - - 1 : un maillage regulier au standard LEONARD, - - 2 : un maillage quelconque au standard RUBENS, - - 3 : un maillage quelconque au standard SELAFIN.""", - ang = """Adapts the reading of the GEOMETRY FILE to the specific standard : - - 1 : regular mesh on standard LEONARD - - 2 : any mesh on standard RUBENS - - 3 : any mesh on standard SELAFIN""", - ), -# ----------------------------------- - RESULTS_FILE_STANDARD = SIMP(statut ='f', -# ----------------------------------- - typ = 'TXM', max='**', - into = ["LEONARD","RUBENS","SELAFIN"], - defaut = ["SELAFIN"], - fr = """Standard du fichier des resultats : - - 1 : un maillage regulier au standard LEONARD, - - 2 : un maillage quelconque au standard RUBENS, - - 3 : un maillage quelconque au standard SELAFIN.""", - ang = """Specific standard of the results file : - - 1 : regular mesh on standard LEONARD - - 2 : any mesh on standard RUBENS - - 3 : any mesh on standard SELAFIN""", +\begin{itemize} +\item SERAFIN : format standard simple precision pour \tel ; +\item SERAFIND: format standard double precision pour \tel ; +\item MED : format MED double precision base sur HDF5. +\end{itemize}""", + ang = """\telkey{REFERENCE FILE} format. +Possible values are: +\begin{itemize} +\item SERAFIN : classical single precision format in \tel, +\item SERAFIND: classical double precision format in \tel, +\item MED : MED double precision format based on HDF5. +\end{itemize}""", + ), +# ----------------------------------- + REFERENCE_FILE = SIMP(statut ='f', +# ----------------------------------- + typ = ('Fichier','All Files (*)'), max='**', + defaut = '', + fr = """Fichier de resultats de reference pour la validation.""", + ang = """Binary-coded result file for validation.""", + ), + ), +# ----------------------------------- + GEOMETRY_FILE_FORMAT = SIMP(statut ='f', +# ----------------------------------- + typ = 'TXM', + into = ['SERAFIN','SERAFIND','MED'], + defaut = 'SERAFIN', + fr = """Format du \telkey{FICHIER DE GEOMETRIE}. +Les valeurs possibles sont : +\begin{itemize} +\item SERAFIN : format standard simple precision pour \tel ; +\item SERAFIND: format standard double precision pour \tel ; +\item MED : format MED double precision base sur HDF5. +\end{itemize}""", + ang = """Format of the \telkey{GEOMETRY FILE}. +Possible values are: +\begin{itemize} +\item SERAFIN : classical single precision format in \tel, +\item SERAFIND: classical double precision format in \tel, +\item MED : MED double precision format based on HDF5. +\end{itemize}""", + ), +# ----------------------------------- + BINARY_DATA_FILE_1_FORMAT = SIMP(statut ='f', +# ----------------------------------- + typ = 'TXM', + into = ['SERAFIN','SERAFIND','MED'], + defaut = 'SERAFIN', + fr = """Format du \telkey{FICHIER DE DONNEES BINAIRE 1}. +Les valeurs possibles sont : +\begin{itemize} +\item SERAFIN : format standard simple precision pour \tel ; +\item SERAFIND: format standard double precision pour \tel ; +\item MED : format MED double precision base sur HDF5. +\end{itemize}""", + ang = """\telkey{BINARY DATA FILE 1} format. +Possible values are: +\begin{itemize} +\item SERAFIN : classical single precision format in \tel, +\item SERAFIND: classical double precision format in \tel, +\item MED : MED double precision format based on HDF5. +\end{itemize}""", + ), +# ----------------------------------- + BINARY_DATA_FILE_2_FORMAT = SIMP(statut ='f', +# ----------------------------------- + typ = 'TXM', + into = ['SERAFIN','SERAFIND','MED'], + defaut = 'SERAFIN', + fr = """Format du \telkey{FICHIER DE DONNEES BINAIRE 2}. +Les valeurs possibles sont : +\begin{itemize} +\item SERAFIN : format standard simple precision pour \tel ; +\item SERAFIND: format standard double precision pour \tel ; +\item MED : format MED double precision base sur HDF5. +\end{itemize}""", + ang = """\telkey{BINARY DATA FILE 2} format. +Possible values are: +\begin{itemize} +\item SERAFIN : classical single precision format in \tel, +\item SERAFIND: classical double precision format in \tel, +\item MED : MED double precision format based on HDF5. +\end{itemize}""", + ), ), ), -) -# ----------------------------------------------------------------------- -INPUT_OUTPUT_INFORMATION = PROC(nom= "INPUT_OUTPUT_INFORMATION",op = None, -# ----------------------------------------------------------------------- # ----------------------------------- - COMPUTATIONAL_INFORMATION = FACT(statut='f', + GLOBAL = FACT(statut='o', # ----------------------------------- # ----------------------------------- TITLE = SIMP(statut ='f', # ----------------------------------- typ = 'TXM', - defaut = 'NO TITLE IN THE STEERING FILE', + defaut = '', fr = """Titre du cas etudie.""", ang = """Title of the studied case.""", ), -# ----------------------------------- - RELEASE = SIMP(statut ='f', -# ----------------------------------- - typ = 'TXM', - defaut = 'TRUNK', - fr = """Numero de version des bibliotheques ARTEMIS TELEMAC2D UTILE DAMO -BIEF et HP. -Si ce nom commence par D il s''agit de l''option Debug (exemple DV1P0) -Si ce nom commence par F il s''agit de l''option Flowtrace.""", - ang = """Number of the release of the ARTEMIS TELEMAC2D UTILE DAMO BIEF -and HP libraries. -If this number begins by D, it corresponds to the Debug option -(example : DV3P0). -If this number begins by F, it corresponds to the Flowtrace option.""", - ), - ), -# ----------------------------------- - COMPUTATION_ENVIRONMENT = FACT(statut='f', -# ----------------------------------- # ----------------------------------- VECTOR_LENGTH = SIMP(statut ='f', # ----------------------------------- typ = 'I', - defaut = [1], - fr = """LONGUEUR DU VECTEUR POUR LES MACHINES VECTORIELLES""", - ang = """VECTOR LENGTH ON VECTOR MACHINES""", - ), -# ----------------------------------- - USER_CRAY = SIMP(statut ='f', -# ----------------------------------- - typ = 'TXM', - defaut = '', - fr = """Userid CRAY de l''utilisateur.""", - ang = """Userid CRAY of the user.""", + defaut = 1, + fr = """Longueur du vecteur pour les machines vectorielles.""", + ang = """Vector length on vector machines.""", ), # ----------------------------------- - PASSWORD = SIMP(statut ='f', -# ----------------------------------- - typ = 'TXM', - defaut = '', - fr = """Mot de passe associe a l''USER CRAY.""", - ang = """Password associated to the CRAY Userid.""", - ), -# ----------------------------------- - LIBRARIES = SIMP(statut ='f', -# ----------------------------------- - typ = 'TXM', - defaut = 'artemis,telemac,util,damo,bief,hp', - fr = """Ensemble des bibliotheques utilises pour un calcul.""", - ang = """Set of libraries required for an ARTEMIS computation.""", - ), -# ----------------------------------- - CPU_TIME = SIMP(statut ='f', -# ----------------------------------- - typ = 'TXM', - defaut = '10', - fr = """Temps CPU (en secondes) alloue pour la realisation du calcul. -Attention, il s''agit bien d''une chaine de caracteres.""", - ang = """CPU time (in sec) specified for a computation on CRAY. -Warning : it is written as a Character.""", - ), -# ----------------------------------- - MEMORY_SPACE = SIMP(statut ='f', -# ----------------------------------- - typ = 'TXM', - defaut = '1500000W', - fr = """Place memoire (en mots de 8 octets) reservee en machine pour la -realisation du calcul.""", - ang = """Memory space (in words of 8 bytes) reserved for a computation on -CRAY.""", - ), -# ----------------------------------- - PRIORITY = SIMP(statut ='f', -# ----------------------------------- - typ = 'TXM', - defaut = 'JOUR', - fr = """Classe de facturation demandee pour le calcul : il y a trois -possibilites : jour, nuit et weekend.""", - ang = """Type of invoice requested for CRAY computation : there are -3 possibilities : jour, nuit, and weekend.""", - ), -# ----------------------------------- - ACCOUNT_NUMBER = SIMP(statut ='f', -# ----------------------------------- - typ = 'TXM', - defaut = '', - 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.""", - ), - ), -) -# ----------------------------------------------------------------------- -NUMERICAL_PARAMETERS = PROC(nom= "NUMERICAL_PARAMETERS",op = None, -# ----------------------------------------------------------------------- -# ----------------------------------- - DEBUGGER = SIMP(statut ='f', -# ----------------------------------- - typ = 'I', - defaut = [0], - fr = """Pour imprimer la sequence des appels, mettre 1""", - ang = """If 1, calls of subroutines will be printed in the listing""", - ), -# ----------------------------------- - MATRIX_STORAGE = SIMP(statut ='f', -# ----------------------------------- - typ = 'I', - defaut = [3], - fr = """1 : EBE classique 2 : EBE assemble 3 : par segment - attention, avec 2, il faut une numerotation speciale des points""", - ang = """1 : classical EBE 2 : assembled EBE 3 : edge by edge - beware, with option 2, a special numbering of points is required""", - ), -# ----------------------------------- - MATRIX_VECTOR_PRODUCT = SIMP(statut ='f', -# ----------------------------------- - typ = 'I', - defaut = [1], - fr = """1 : Ancien Produit 2 : Nouveau Produit Frontal""", - ang = """1 : Classical Product 2 : New Frontal Product""", - ), -# ----------------------------------- - NUMBER_OF_PRIVATE_VARIABLES = SIMP(statut ='f', -# ----------------------------------- - typ = 'I', - defaut = [0], - fr = """Permet de fixer le nombre de variables privees""", - ang = """Give the number of private variables""", - ), -# ----------------------------------- - PARALLEL_PROCESSORS = SIMP(statut ='f', -# ----------------------------------- - typ = 'I', - defaut = [0], - fr = """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...""", - ang = """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....""", - ), -# ----------------------------------- - GENERAL = FACT(statut='f', -# ----------------------------------- -# ----------------------------------- - ORIGINAL_DATE_OF_TIME = SIMP(statut ='f', -# ----------------------------------- - typ = 'I', min= 3, max= 3, - defaut = [0,0,0], - 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.""", - ), -# ----------------------------------- - PARTITIONING_TOOL = SIMP(statut ='f', -# ----------------------------------- - typ = 'TXM', - into = ['METIS','SCOTCH','PARMETIS','PTSCOTCH'], - defaut = 'METIS', - fr = """CHOIX DU PARTITIONNEUR -1 : METIS -2 : SCOTCH -3 : PARMETIS -4 : PTSCOTCH -etc...""", - ang = """PARTITIONING TOOL SELECTION -1 : METIS -2 : SCOTCH -3 : PARMETIS -4 : PTSCOTCH -etc...""", - ), - ), -) -# ----------------------------------------------------------------------- -DISSIPATION = PROC(nom= "DISSIPATION",op = None, -# ----------------------------------------------------------------------- -# ----------------------------------- - GAMMAS = SIMP(statut ='f', -# ----------------------------------- - typ = 'R', - defaut = [0.88], - fr = """Donne le coefficient Gammas dans le critere de la hauteur de -deferlement. Ne pas confondre avec le coefficient Gamma qui -intervient dans la formule du spectre de Jonswap""", - ang = """Fixes the coefficient Gammas used in the criterion of the critical -breaking wave height. Do not confuse with coefficient Gamma -used in the JONSAP spectrum.""", - ), -# ----------------------------------- - BOTTOM_FRICTION = FACT(statut='f', -# ----------------------------------- -# ----------------------------------- - LAW_OF_BOTTOM_FRICTION = SIMP(statut ='f', + PARALLEL_PROCESSORS = SIMP(statut ='f', # ----------------------------------- typ = 'I', - defaut = [0], - fr = """Non utilise dans ARTEMIS. On le laisse par coherence avec TELEMAC2D""", - ang = """Not used in ARTEMIS. It is kept for consistence with TELEMAC2D""", - ), -# ----------------------------------- - FRICTION = SIMP(statut ='f', + defaut = 0, + fr = """Nombre de processeurs pour la decomposition en parallele : +\begin{itemize} +\item 0 : 1 machine, compilation sans bibliotheque de parallelisme ; +\item 1 : 1 machine, compilation avec bibliotheque de parallelisme ; +\item 2 : 2 processeurs ou machines en parallele. +etc... +\end{itemize}""", + ang = """Number of processors for domain partition: +\begin{itemize} +\item 0: 1 machine, compiling without parallel library, +\item 1: 1 machine, compiling with a parallel library, +\item 2: 2 processors or machines in parallel. +etc... +\end{itemize}""", + ), +# ----------------------------------- + CHECKING_THE_MESH = SIMP(statut ='f', # ----------------------------------- typ = bool, - defaut = [False], - fr = """Oui, si on veut prendre en compte le frottement sur le fond dans -la simulation.""", - ang = """Yes, if one wants to include dissipation through bottom friction -in the computation.""", - ), -# ----------------------------------- - FRICTION_COEFFICIENT = SIMP(statut ='f', -# ----------------------------------- - typ = 'R', - defaut = [0.], - fr = """A ne pas confondre avec le FACTEUR DE FROTTEMENT. -Non utilise dans ARTEMIS. On le laisse par coherence avec TELEMAC2D""", - ang = """Do not confuse with the FRICTION FACTOR. -Not used in ARTEMIS. It is let here for consistence with TELEMAC2D.""", - ), -# ----------------------------------- - FORMULATION = FACT(statut='f', -# ----------------------------------- -# ----------------------------------- - BOTTOM_FRICTION_LAW = SIMP(statut ='f', -# ----------------------------------- - typ = 'TXM', max='**', - into = ["Formulation de Kostense integrant le calcul de Ue (1986)","Formulation de Putnam \& Johnson (1949)"], - defaut = ["Formulation de Kostense integrant le calcul de Ue (1986)"], - fr = """Utilise avec l''option FROTTEMENT = OUI. -Fixe le choix de la formulation du frottement : - 1 : Kostense et al., 1986 - 2 : Putnam \& Johnson, 1949.""", - ang = """Used with the option FRICTION = YES. -Fixes the formulation used for bottom friction law : - 1 : Kostense et al., 1986 - 2 : Putnam \& Johnson, 1949.""", - ), + defaut = False, + fr = """Si OUI on appelle le sous-programme \telfile{CHECKMESH} +qui verifie la coherence du maillage, points superposes, etc.""", + ang = """If this keyword is equal to YES, a call to subroutine +\telfile{CHECKMESH} will look for errors in the mesh, +superimposed points, etc.""", ), + ), +# ----------------------------------- + OUTPUT = FACT(statut='o', +# ----------------------------------- # ----------------------------------- - INFORMATION = FACT(statut='f', + RESULTS = FACT(statut='o', # ----------------------------------- # ----------------------------------- - FLUID_KINEMATIC_VISCOSITY = SIMP(statut ='f', + GRAPHIC_PRINTOUT_PERIOD = SIMP(statut ='f', # ----------------------------------- - typ = 'R', max='**', - defaut = [1.0E-6], - fr = """viscosite cinematique du fluide (eau) en m2/s. -1.793E-6 : Pour une temperature de 0 C. -1.567E-6 : Pour une temperature de 4 C. -1.237E-6 : Pour une temperature de 12 C. -1.112E-6 : Pour une temperature de 16 C. -1.011E-6 : Pour une temperature de 20 C. -0.802E-6 : Pour une temperature de 30 C. -0.661E-6 : Pour une temperature de 40 C. -1.0E-6 : Valeur par defaut""", - ang = """Kinematic viscosity of the fluid (water) in m2/s. -1.793E-6 : Pour une temperature de 0 C. -1.567E-6 : Pour une temperature de 4 C. -1.237E-6 : Pour une temperature de 12 C. -1.112E-6 : Pour une temperature de 16 C. -1.011E-6 : Pour une temperature de 20 C. -0.802E-6 : Pour une temperature de 30 C. -0.661E-6 : Pour une temperature de 40 C. -1.0E-6 : Valeur par defaut""", + typ = 'I', + defaut = 1, + fr = """Determine la periode, en nombre de periodes de houle, +d impression des \telkey{VARIABLES POUR LES SORTIES GRAPHIQUES} +(voir ce mot-cle) dans le \telkey{FICHIER DES RESULTATS}.""", + ang = """Fixes the period, in number of wave periods, for the writing +of the \telkey{VARIABLES FOR GRAPHIC PRINTOUTS} (see this keyword) +in the \telkey{RESULTS FILE}.""", ), # ----------------------------------- - DIAMETER90 = SIMP(statut ='f', + VARIABLES_FOR_GRAPHIC_PRINTOUTS = SIMP(statut ='f', # ----------------------------------- - typ = 'R', max='**', - defaut = [0.15E-3], - fr = """DIAM90 represente le diametre maximum, en m, de 90% en poids des -sediments. -1.0E-3 : Pour des sables tres grossiers -0.5E-3 : Pour des sables grossiers -0.25E-3 : Pour des sables moyens -0.125E-3 : Pour des sables fins -0.062E-3 : Pour des sables tres fins -0.15E-3 : Valeur par defaut""", - ang = """DIAM90 is the maximum grain diameter, in m, which defines 90% of -the total weight of sediment. -1.0E-3 : Pour des sables tres grossiers -0.5E-3 : Pour des sables grossiers -0.25E-3 : Pour des sables moyens -0.125E-3 : Pour des sables fins -0.062E-3 : Pour des sables tres fins -0.15E-3 : Valeur par defaut""", + typ = 'TXM', min=0, max='**', + into = ["wave height","wave phase","velocity u (free surface)(t=0)","velocity v (free surface)(t=0)","free surface elevation (t=0)","bottom elevation","still water height","phase velocity","group velocity","wave number","real potential","imaginal potential","prive(1,1)","prive(1,2)","prive(1,3)","prive(1,4)","first mean spectral period","second mean spectral period","third mean spectral period","force along X","force along Y","wave incidence radian","breaking rate","SXX stress","SXY stress","SYY stress"], + defaut = [], + fr = """Noms des variables que l utilisateur veut ecrire dans +le \telkey{FICHIER DES RESULTATS}. +Le choix des separateurs est libre. +Les possibilites offertes sont les suivantes : +\begin{itemize} +\item HS hauteur de la houle ; +\item PHAS phase de la houle ; +\item U0 vitesse u en surface (a $t$ = 0) ; +\item V0 vitesse v en surface (a $t$ = 0) ; +\item ZS cote de la surface libre (a $t$ = 0) ; +\item ZF fond ; +\item HW hauteur d eau au repos ; +\item C vitesse de phase ; +\item CG vitesse de groupe ; +\item K nombre d onde ; +\item PHIR potentiel reel ; +\item PHII potentiel imaginaire ; +\item D prive(1,1) (variable 13) ; +\item E prive(1,2) (variable 14) ; +\item F prive(1,3) (variable 15) ; +\item G prive(1,4) (variable 16) ; +\item T01 premiere periode moyenne spectrale ; +\item T02 deuxieme periode moyenne spectrale ; +\item TM troisieme periode moyenne spectrale ; +\item FX force en X ; +\item FY force en Y ; +\item INC incidence de la houle ; +\item QB taux de deferlement ; +\item SXX contrainte SXX ; +\item SXY contrainte SXY ; +\item SYY contrainte SYY. +\end{itemize} +L utilisateur dispose 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 \telfile{CALRES} et le nom que +l on desire leur donner doit etre ecrit dans le sous-programme +\telfile{NOMVAR}. +Ces 4 champs sont : +\telfile{D, E, F, G} qui correspondent aux tableaux +\telfile{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, +en precisant le parametre \telfile{NPRIV} +(dans le programme principal).""", + ang = """Names of the variables that the user wants to write in the +\telkey{RESULTS FILE}. +Separators between variable names can be choosen free. + The allowable values are: +\begin{itemize} +\item HS=wave height, +\item PHAS=wave phase, +\item U0=velocity u (free surface at $t$ = 0), +\item V0=velocity v (free surface at $t$ = 0), +\item ZS=free surface elevation (at $t$ = 0), +\item ZF=bottom elevation, +\item HW=still water height, +\item C=phase velocity, +\item CG=group velocity, +\item K=wave number, +\item PHIR=real potential, +\item PHII=imaginal potential, +\item D=prive(1,1), +\item E=prive(1,2), +\item F=prive(1,3), +\item G=prive(1,4), +\item T01=first mean spectral period, +\item T02=second mean spectral period, +\item TM=third mean spectral period, +\item FX=force along X, +\item FY=force along Y, +\item INC=wave incidence radian, +\item QB=breaking rate, +\item SXX=SXX stress, +\item SXY=SXY stress, +\item SYY=SYY stress. +\end{itemize} +The user has 4 free variables at his/her disposal to create other +variables by him/herself. These variables have to be computed +in the \telfile{CALRES} subroutine, and the name that we want to +attribute has to be precibed in the \telfile{NOMVAR} subroutine. +The 4 free variable fields are: +\telfile{D, E, F, G} which corresponds to the private arrays +\telfile{PRIVE(1,1), PRIVE(1,2), PRIVE(1,3) and PRIVE (1,4)}. +Contrary to the previous + variables, these are conserved all through the computation, and can + be used again. + Do not forget to specify the number of private arrays you want to +use in the principal programme (variable \telfile{NPRIV}).""", ), # ----------------------------------- - DIAMETER50 = SIMP(statut ='f', + RESULTS_FILE = SIMP(statut ='f', # ----------------------------------- - typ = 'R', max='**', - defaut = [0.10E-3], - fr = """DIAM50 represente le diametre maximum de 50% en poids des -sediments. En general, on a DIAM90 = 1.5 * DIAM50 -DIAM50 est plus souvent donne dans des tables -0.66E-3 : Pour des sables tres grossiers -0.33E-3 : Pour des sables grossiers -0.17E-3 : Pour des sables moyens -0.083E-3 : Pour des sables fins -0.040E-3 : Pour des sables tres fins -0.10E-3 : Valeur par defaut""", - ang = """DIAM50 is the maximum grain diameter, in m, which defines 50% of -the total weight of sediment. Usually, we have -DIAM90 = 1.5 * DIAM50. DIAM50 is a more common value used. -0.66E-3 : Pour des sables tres grossiers -0.33E-3 : Pour des sables grossiers -0.17E-3 : Pour des sables moyens -0.083E-3 : Pour des sables fins -0.040E-3 : Pour des sables tres fins -0.10E-3 : Valeur par defaut""", + typ = ('Fichier','All Files (*)','Sauvegarde'), max='**', + defaut = '', + fr = """Nom du fichier dans lequel seront ecrits les resultats du calcul, +avec la periodicite donnee par le mot cle +\telkey{PERIODE DE SORTIE GRAPHIQUE}. +Sur IBM, ce fichier est alloue automatiquement s il n existe pas, +avec les caracteristiques suivantes : + Format d enregistrement : VBS ; + Longueur d enregistrement : X ; + Taille de bloc : 6204 ; + Nombre de pistes : 50 en primaire, 10 en secondaire. +La place memoire ainsi reservee est suffisante pour la plupart des +calculs de dimension moyenne.""", + ang = """Name of the results file corresponding to the computations and +which contains the variables specified by the keyword +\telkey{VARIABLES FOR GRAPHIC PRINTOUTS}.""", ), # ----------------------------------- - SEDIMENT_SPECIFIC_WEIGHT = SIMP(statut ='f', + BINARY_RESULTS_FILE = SIMP(statut ='f', # ----------------------------------- - typ = 'R', - defaut = [2650.0], - fr = """Masse volumique du sediment en Kg/m3.""", - ang = """Sediment specific weight in Kg/m3.""", + typ = ('Fichier','All Files (*)','Sauvegarde'), max='**', + defaut = '', + fr = """Fichier des resultats, code en binaire, mis a la disposition de +l utilisateur.""", + ang = """Results file, written in binary mode, at the disposal of the user.""", ), # ----------------------------------- - FLUID_SPECIFIC_MASS = SIMP(statut ='f', + FORMATTED_RESULTS_FILE = SIMP(statut ='f', # ----------------------------------- - typ = 'R', - defaut = [1000.0], - fr = """Masse volumique du fluide (eau) en Kg/m3.""", - ang = """Fluid specific weight (water) in Kg/m3.""", + typ = ('Fichier','All Files (*)','Sauvegarde'), max='**', + defaut = '', + fr = """Fichier des resultats formate mis a la disposition de l utilisateur.""", + ang = """Results file, written in ASCII mode, at the disposal of the user.""", ), # ----------------------------------- - RIPPLES_COEFFICIENT = SIMP(statut ='f', + NUMBER_OF_PRIVATE_VARIABLES = SIMP(statut ='f', # ----------------------------------- - typ = 'R', max='**', - defaut = [0.7], - fr = """Specifie le coefficient de rides utilise dans la formule de -Van Rijn pour calculer le facteur de frottement. -1.0 : Pour des rides seules -0.7 : Pour des rides superposees a des vagues de sable""", - ang = """Fixes the ripples coefficient used in the formulae of Van Rijn -to calculate the friction factor. -1.0 : Pour des rides seules -0.7 : Pour des rides superposees a des vagues de sable""", + typ = 'I', + defaut = 0, + fr = """Permet de fixer le nombre de variables privees.""", + ang = """Give the number of private variables.""", + ), +# ----------------------------------- + RESULTS_FILE_FORMAT = SIMP(statut ='f', +# ----------------------------------- + typ = 'TXM', + into = ['SERAFIN','SERAFIND','MED'], + defaut = 'SERAFIN', + fr = """Format du \telkey{FICHIER DE RESULTATS}. +Les valeurs possibles sont : +\begin{itemize} +\item SERAFIN : format standard simple precision pour \tel ; +\item SERAFIND: format standard double precision pour \tel ; +\item MED : format MED double precision base sur HDF5. +\end{itemize}""", + ang = """Format of the \telkey{RESULTS FILE}. Possible values are: +\begin{itemize} +\item SERAFIN : classical single precision format in \tel, +\item SERAFIND: classical double precision format in \tel, +\item MED : MED double precision format based on HDF5. +\end{itemize}""", ), ), # ----------------------------------- - FORMULATION_OF_REGIME = FACT(statut='f', + LISTING = FACT(statut='o', # ----------------------------------- # ----------------------------------- - HYDRAULIC_REGIME_IMPOSED = SIMP(statut ='f', + LISTING_PRINTOUT_PERIOD = SIMP(statut ='f', # ----------------------------------- - typ = bool, - defaut = [False], - fr = """Utilise avec l''option FROTTEMENT = OUI. -Permet de choisir d''imposer le regime hydraulique dans le cas -d''un calcul automatique du facteur de frottement sur fonds sableux.""", - ang = """Used with the option FRICTION = YES. -Enables to impose the hydraulic regime in the case of an automatic -calculation of the friction factor for sandy beds.""", + typ = 'I', + defaut = 1, + fr = """Determine la periode, en nombre de periodes de houle, +d impression des \telkey{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.e de SPF sur IBM).""", + ang = """Fixes the period, in number of wave periods, for the writing +of the \telkey{VARIABLES TO BE PRINTED} (see this keyword).""", ), # ----------------------------------- - HYDRAULIC_REGIME_TYPE = SIMP(statut ='f', + LISTING_PRINTOUT = SIMP(statut ='f', # ----------------------------------- - typ = 'TXM', max='**', - into = ["regime laminaire","regime turbulent lisse","regime turbulent rugueux","regime transitoire"], - defaut = ["regime laminaire"], - fr = """Utilise si le mot-cle REGIME HYDRAULIQUE IMPOSE = OUI. -Determine le regime hydraulique""", - ang = """Used with option HYDRAULIC REGIME IMPOSED = YES. -Determines the type of the hydraulic regime (laminar, -smooth-turbulent, rough-turbulent, transient).""", + typ = bool, + defaut = True, + fr = """Sortie des resultats sur support papier. +Si l on met NON le listing ne contient que l en-tete et la mention +FIN NORMALE DU PROGRAMME. +Commande a eviter.""", + ang = """If NO is specified for this keyword, the printout listing just +contains the head and the sentence END OF PROGRAM. +It is advised not to use this way.""", ), - ), -# ----------------------------------- - FORMULATION_OF_RUGOSITE = FACT(statut='f', -# ----------------------------------- # ----------------------------------- - SKIN_ROUGHNESS_ONLY = SIMP(statut ='f', + INFORMATIONS_ABOUT_SOLVER = SIMP(statut ='f', # ----------------------------------- typ = bool, - defaut = [False], - fr = """Utilise avec l''option FROTTEMENT = OUI. -Permet de choisir de ne prendre en compte -que la rugosite de peau dans le cas d''un calcul automatique -du facteur de frottement sur fonds sableux.""", - ang = """Used with the option FRICTION = YES. -Enables to restrict the total roughness to the skin roughnes -in the case of an automatic calculation of the friction -factor for sandy beds.""", + defaut = True, + fr = """Donne le nombre d iterations necessaires a la convergence du solveur.""", + ang = """Gives the iterations number which was necessary for the solver +to converge.""", + ), +# ----------------------------------- + VARIABLES_TO_BE_PRINTED = SIMP(statut ='f', +# ----------------------------------- + typ = 'TXM', + into = ["wave height","wave phase","velocity u (free surface)(t=0)","velocity v (free surface)(t=0)","free surface elevation (t=0)","bottom elevation","still water height","phase velocity","group velocity","wave number","real potential","imaginal potential","prive(1,1)","prive(1,2)","prive(1,3)","prive(1,4)","first mean spectral period","second mean spectral period","third mean spectral period","force along X","force along Y","wave incidence radian","breaking rate","SXX stress","SXY stress","SYY stress"], + defaut = '', + fr = """Nom des variables que l utilisateur desire ecrire a l ecran. +Memes possibilites que pour les sorties graphiques.""", + ang = """Name of variables taht the user whishes to write on the screen. +Possibilities are the same as for graphic outputs.""", ), ), # ----------------------------------- - FORMULATION_OF_FW = FACT(statut='f', + FREE_SURFACE = FACT(statut='o', # ----------------------------------- # ----------------------------------- - FRICTION_FACTOR_IMPOSED = SIMP(statut ='f', + FREE_SURFACE_ANIMATION = SIMP(statut ='f', # ----------------------------------- typ = bool, defaut = [False], - fr = """Utilise avec l''option FROTTEMENT = OUI. -Oui, permet de choisir d''imposer un facteur de frottement, par un -mot-cle s''il est uniforme (voir le reel d''index 29) ou en -programmant dans le sous-programme FWSPEC. -Si Non, ARTEMIS considere par defaut que les fonds sont sableux, -et calcule automatiquement le facteur de frottement avec les -caracteristiques du sediment et de l''ecoulement.""", - ang = """Used with the option FRICTION = YES. -Yes, enables the user to impose a friction factor, by a key-word -for a constant value (see real of index 29) or by programming in -the FWSPEC sub-routine for non-uniform value. -If Not, ARTEMIS automatically computes the friction factor assuming -that the bottom is sandy and uses the characteristics of sediment -and of motion.""", + fr = """Option utilisee si l on veut produire le fichier de phases +et amplitudes qui servira a calculer la position de la surface libre +en tout point du maillage. +A besoin des noms de \telkey{FICHIER DES PHASES ET AMPLITUDES} et +\telkey{FICHIER DE SURFACE LIBRE}.""", + ang = """This option informs that the phase and amplitude file is to +be generated. This file will be used to determine the free surface +elevation throughout the model area. +Remember to give \telkey{AMPLITUDE AND PHASE FILE} and +\telkey{FREE SURFACE FILE}.""", ), # ----------------------------------- - FRICTION_FACTOR = SIMP(statut ='f', + AMPLITUDE_AND_PHASE_FILE = SIMP(statut ='f', # ----------------------------------- - typ = 'R', - defaut = [0.], - fr = """Utilise si le mot-cle FACTEUR DE FROTTEMENT IMPOSE = OUI. -Fixe le facteur de frottement choisi uniforme sur le domaine""", - ang = """Used with the option FRICTION FACTOR IMPOSED = YES. -Fixes the value of the friction factor uniform over the domain.""", + typ = ('Fichier','All Files (*)','Sauvegarde'), max='**', + defaut = '', + fr = """Nom du fichier dans lequel seront ecrits les phases et amplitudes +pour toutes les periodes et directions simulees dans le fichier des +parametres.""", + ang = """Name of the results file corresponding to the computations and +which contains the phase and amplitude at every point for all the +periods and directions specified in the steering file.""", ), - ), - ), -# ----------------------------------- - INFORMATION = FACT(statut='f', -# ----------------------------------- -# ----------------------------------- - SUB_ITERATIONS_ACCURACY_FOR_DISSIPATION = SIMP(statut ='f', -# ----------------------------------- - typ = 'R', - defaut = [1.E-2], - fr = """Donne la precision requise pour les sous-iterations du calcul -du coefficient de dissipation.""", - ang = """Fixes the accuracy requested for sub-iterations necessary to -determine the dissipation coefficients.""", - ), -# ----------------------------------- - MAXIMUM_OF_SUB_ITERATIONS = SIMP(statut ='f', -# ----------------------------------- - typ = 'I', - defaut = [15], - fr = """Donne le nombre maximum admis de sous-iterations pour le calcul -du coefficient de dissipation""", - ang = """Fixes the maximum number of sub-iterations for the computation -of dissipation.""", - ), -# ----------------------------------- - DISSIPATION_RELAXATION = SIMP(statut ='f', -# ----------------------------------- - typ = 'R', - defaut = [0.5], - fr = """Donne le coefficient de relaxation entre deux sous-iterations -pour le calcul du coefficient de dissipation.""", - ang = """Fixes the relaxation coefficient used between two sub-iterations -for the computation of the dissipation term.""", - ), -# ----------------------------------- - MAXIMUM_OF_SUB_ITERATIONS_FOR_TETAP = SIMP(statut ='f', -# ----------------------------------- - typ = 'I', - defaut = [15], - fr = """Donne le nombre maximum admis de sous-iterations pour le calcul -automatique de tetap""", - ang = """Fixes the maximum number of sub-iterations for the automatic -computation of tetap""", - ), -# ----------------------------------- - RELAXATION_ON_TETAP = SIMP(statut ='f', -# ----------------------------------- - typ = 'R', - defaut = [1.], - fr = """Donne le coefficient de relaxation entre deux sous-iterations -pour le calcul de l angle d incidence automatique.""", - ang = """Fixes the relaxation coefficient used between two sub-iterations -for the computation of automatic tetap.""", - ), - ), -# ----------------------------------- - BREAKING = FACT(statut='f', -# ----------------------------------- -# ----------------------------------- - BREAKING = SIMP(statut ='f', -# ----------------------------------- - typ = bool, - defaut = [False], - fr = """oui, si l''on souhaite integrer le processus de deferlement -bathymetrique (voir reels index 18, 19, 20, 21, 22, 23 -et entiers index 12, 13).""", - ang = """Yes, if one wants to account for breaking process (see also -reals of index 18, 19, 20, 21, 22, 23, and integer of index -12, 13).""", - ), -# ----------------------------------- - FORMULATION_OF_DALLY = FACT(statut='f', -# ----------------------------------- # ----------------------------------- - KDALLY = SIMP(statut ='f', + AMPLITUDE_AND_PHASE_FILE_FORMAT = SIMP(statut ='f', # ----------------------------------- - typ = 'R', - defaut = [0.1], - fr = """Donne le coefficient K dans la Formulation de la dissipation -par deferlement d''apres Dally et al., 1984""", - ang = """Fixes the coefficient K used in the formulation of the dissipation -coefficient proposed by Dally et al. 1984.""", + typ = 'TXM', + defaut = 'SERAFIN', + fr = """Format du \telkey{FICHIER DES PHASES ET AMPLITUDES}. +Les valeurs possibles sont : +\begin{itemize} +\item SERAFIN : format standard simple precision pour \tel ; +\item SERAFIND: format standard double precision pour \tel ; +\item MED : format MED double precision base sur HDF5. +\end{itemize}""", + ang = """Format of the \telkey{AMPLITUDE AND PHASE FILE}. +Possible choices are: +\begin{itemize} +\item SERAFIN : classical single precision format in \tel, +\item SERAFIND: classical double precision format in \tel, +\item MED : MED double precision format based on HDF5. +\end{itemize}""", ), # ----------------------------------- - GDALLY = SIMP(statut ='f', + FREE_SURFACE_FILE = SIMP(statut ='f', # ----------------------------------- - typ = 'R', - defaut = [0.4], - fr = """Donne le coefficient Gammad dans la Formulation de la dissipation par -Dally et al., 1984. Ne pas confondre avec Gamma (Formule de Jonswap) et -Gammas (Critere de deferlement)""", - ang = """Fixes the Gamma coefficient used in the formulation of Dally et al., -1984, for the dissipation coefficient in surf-breaking. Do not confuse -with the coefficient GAMMA used in the JONSWAP formulae and coefficient -gammas used to determine the breaking wave height criterion.""", + typ = 'TXM', max='**', + defaut = '', + fr = """Nom du fichier dans lequel sera ecrite la surface libre fonction du +temps pour permettre une animation du fichier.""", + ang = """Name of the results file corresponding to the computations and +which contains the free surface at every point as a function of time. +This file can be animated to check free surface variations with time.""", ), - ), -# ----------------------------------- - FORMULATION = FACT(statut='f', -# ----------------------------------- # ----------------------------------- - BREAKING_LAW = SIMP(statut ='f', + FREE_SURFACE_FILE_FORMAT = SIMP(statut ='f', # ----------------------------------- typ = 'TXM', - into = ["BATTJES \& JANSSEN","DALLY"], - defaut = ["BATTJES \& JANSSEN"], - fr = """Specifie la formulation choisie pour le coefficient de dissipation -par deferlement. N''est effectif qu''en Houle reguliere. - 1 : Formulation de Battjes \& Jansen, 1978 - 2 : Formulation de Dally et al., 1984 -En Houle aleatoire, la seule formulation utilisee est celle de -Battjes \& Janssen, 1978""", - ang = """Specifies the formulation choosen for calculating the dissipation -coefficient through breaking. Only effective for Monochromatic wave -mode. - 1 : Formulation of Battjes \& Janssen, 1978 - 2 : Formulation of Dally et al., 1984 -In random wave mode, the formulation of B \& J, 1978 is the only one -to be used.""", + defaut = 'SERAFIN', + fr = """Format du \telkey{FICHIER DE SURFACE LIBRE}. +Les valeurs possibles sont : +\begin{itemize} +\item SERAFIN : format standard simple precision pour \tel ; +\item SERAFIND: format standard double precision pour \tel ; +\item MED : format MED double precision base sur HDF5. +\end{itemize}""", + ang = """Format of the \telkey{FREE SURFACE FILE}. +Possible values are: +\begin{itemize} +\item SERAFIN : classical single precision format in \tel, +\item SERAFIND: classical double precision format in \tel, +\item MED : MED double precision format based on HDF5. +\end{itemize}""", ), - ), -# ----------------------------------- - FORMULATION_DE_BATTJES = FACT(statut='f', -# ----------------------------------- # ----------------------------------- - ALPHA = SIMP(statut ='f', + FIRST_TIME_IN_THE_FREE_SURFACE_FILE = SIMP(statut ='f', # ----------------------------------- typ = 'R', - defaut = [1.0], - fr = """Donne le coefficient Alpha dans la Formulation de la dissipation -par deferlement en houle aleatoire d''apres Battjes \& Janssen""", - ang = """Fixes the coefficient Alpha used in the formulation of the dissipation -coefficient through breaking proposed by Battjes \& Janssen, 1978 -for random waves.""", + defaut = [10000.], + fr = """Determine le temps a partir duquel debute l ecriture +des resultats dans le \telkey{FICHIER DE SURFACE LIBRE}.""", + ang = """Determines the time from which the results are written +in the \telkey{FREE SURFACE FILE}.""", + ), +# ----------------------------------- + TIME_STEP = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = 0.25, + fr = """Definit le pas de temps en secondes pour la sortie graphique +\telkey{FICHIER DE SURFACE LIBRE}.""", + ang = """Specifies the time step in seconds in + \telkey{FREE SURFACE FILE}.""", + ), +# ----------------------------------- + NUMBER_OF_TIME_STEPS = SIMP(statut ='f', +# ----------------------------------- + typ = 'I', + defaut = 0, + fr = """Definit le nombre de pas de temps pour la sortie graphique +\telkey{FICHIER DE SURFACE LIBRE}.""", + ang = """Specifies the number of time steps in + \telkey{FREE SURFACE FILE}.""", ), ), ), ) # ----------------------------------------------------------------------- -INPUT_OUTPUT_GRAPHICS_AND_LISTING = PROC(nom= "INPUT_OUTPUT_GRAPHICS_AND_LISTING",op = None, +GENERAL_PARAMETERS = PROC(nom= "GENERAL_PARAMETERS",op = None, # ----------------------------------------------------------------------- # ----------------------------------- - GRAPHIC_PRINTOUT_PERIOD = SIMP(statut ='f', -# ----------------------------------- - typ = 'I', - defaut = [1], - fr = """Determine la periode, en nombre de periodes de houle, -d''impression des VARIABLES POUR LES SORTIES GRAPHIQUES (voir ce mot- -cle) dans le FICHIER DES RESULTATS""", - ang = """Fixes the period, in number of wave periods, for the writing -of the VARIABLES FOR GRAPHIC PRINTOUTS (see this key-word) in the -RESULTS FILE""", - ), -# ----------------------------------- - LISTING_PRINTOUT_PERIOD = SIMP(statut ='f', + DEBUGGER = SIMP(statut ='f', # ----------------------------------- typ = 'I', - defaut = [1], - fr = """Determine la periode, en nombre de periodes de houle, -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.e de SPF sur IBM)""", - ang = """Fixes the period, in number of wave periods, for the writing -of the VARIABLES TO BE PRINTED (see this key-word)""", - ), -# ----------------------------------- - WAVE_HEIGHTS_SMOOTHING = SIMP(statut ='f', -# ----------------------------------- - typ = bool, - defaut = [False], - fr = """OUI si on souhaite lisser les hauteurs de houle -pour ameliorer le calcul des contraintes de radiation -(actif uniquement en houle reguliere). -Valeur par defaut = NON.""", - ang = """YES when one wants to smooth the wave heights -to improve the radiation stresses computation -(only used in regular wave mode). -Default value = NO.""", - ), -# ----------------------------------- - FREE_SURFACE_ANIMATION = SIMP(statut ='f', -# ----------------------------------- - typ = bool, - defaut = [False], - fr = """Option utilisee si l on veut produire le fichier de phases -et amplitudes qui servira a calculer la position de la surface libre -en tout point du maillage. -A besoin des noms de FICHIER DES PHASES ET AMPLITUDES et -FICHIER DE SURFACE LIBRE""", - ang = """This option informs that the phase and amplitude file is to -be generated. This file will be used to determine the free surface -elevation throughout the model area. -Remember to give AMPLITUDE AND PHASE FILE and FREE SURFACE FILE""", + defaut = 0, + fr = """Pour imprimer la sequence des appels, mettre 1.""", + ang = """If 1, calls of subroutines will be printed in the listing.""", ), # ----------------------------------- - INFORMATION_SOLVER = FACT(statut='f', + TIME = FACT(statut='o', # ----------------------------------- # ----------------------------------- - RELAXATION_COEFFICIENT = SIMP(statut ='f', -# ----------------------------------- - typ = 'R', - defaut = [1.4], - fr = """ Non utilise dans la version 3.0 . - Ce coefficient doit etre compris entre 0 et 2. - coefficient de relaxation dans le cas d''une resolution par la - methode de panchang et al. - voir Solution of the Mild Slope Wave Problem by Iteration - Applied Ocean Research, 1991, Vol. 13, No. 4.""", - ang = """ Not used in version 3.0 . - This coefficient is a real between 0 and 2. - It is a relaxation coefficient used in the solving method proposed - by Panchang et al. - See Solution of the Mild Slope Wave Problem by Iteration - Applied Ocean Research, 1991, Vol. 13, No. 4.""", - ), -# ----------------------------------- - LISTING_PRINTOUT = SIMP(statut ='f', -# ----------------------------------- - typ = bool, - defaut = [True ], - fr = """Sortie des resultats sur support papier. -Si l''on met NON le listing ne contient que l''en-tete et la mention -FIN NORMALE DU PROGRAMME -Commande a eviter.""", - ang = """If NOT is specified for this key-word, the printout listing just -contains the head and the sentence END OF PROGRAM. -It is adviced not to use this way.""", - ), -# ----------------------------------- - INFORMATIONS_ABOUT_SOLVER = SIMP(statut ='f', + ORIGINAL_DATE_OF_TIME = SIMP(statut ='f', # ----------------------------------- - typ = bool, - defaut = [True ], - fr = """Donne le nombre d''iterations necessaires a la convergence du solveur.""", - ang = """Gives the iterations number which was necessary for the solver -to converge.""", + typ = 'I', min= 3, max= 3, + defaut = [0,0,0], + 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.""", ), # ----------------------------------- - VALIDATION = SIMP(statut ='f', + ORIGINAL_HOUR_OF_TIME = SIMP(statut ='f', # ----------------------------------- - typ = bool, - defaut = [False], - fr = """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.""", - ang = """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.""", + typ = 'I', min= 3, max= 3, + defaut = [0,0,0], + 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.""", ), -# ----------------------------------- - b_VALIDATIONG = BLOC(condition="VALIDATION == True", -# ----------------------------------- -# ----------------------------------- - REFERENCE_FILE_FORMAT = SIMP(statut ='f', -# ----------------------------------- - typ = 'TXM', - into = ['SERAFIN','SERAFIND','MED'], - defaut = 'SERAFIN?', - fr = """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""", - ang = """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""", - ), + ), +# ----------------------------------- + LOCATION = FACT(statut='o', +# ----------------------------------- +# ----------------------------------- + ORIGIN_COORDINATES = SIMP(statut ='f', +# ----------------------------------- + typ = 'I', min= 2, max= 2, + defaut = [0,0], + fr = """Valeur en metres, utilise pour eviter les trop grands +nombres, transmis +dans le format SERAFIN mais pas d autre traitement pour l instant.""", + ang = """Value in metres, used to avoid large real numbers, +added in SERAFIN format, but so far no other treatment.""", ), ), ) # ----------------------------------------------------------------------- -NUMERICAL_PARAMETERS_SOLVER = PROC(nom= "NUMERICAL_PARAMETERS_SOLVER",op = None, +NUMERICAL_PARAMETERS = PROC(nom= "NUMERICAL_PARAMETERS",op = None, # ----------------------------------------------------------------------- # ----------------------------------- - MAXIMUM_NUMBER_OF_ITERATIONS_FOR_SOLVER = SIMP(statut ='f', -# ----------------------------------- - typ = 'I', - defaut = [60000], - fr = """Les algorithmes utilises pour la resolution du systeme -matriciel etant iteratifs, il est necessaire de limiter le nombre -d''iterations autorisees""", - ang = """Algorithms used for solving the matrix system are iterative. -It is then necessary to limit the maximum number of iterations""", - ), -# ----------------------------------- - PRECONDITIONING = SIMP(statut ='f', -# ----------------------------------- - typ = 'TXM', - into = ["no preconditioning","diagonal preconditioning","block-diagonal preconditioning","absolute value diagonal preconditioning","Crout preconditioning"], - defaut = ["diagonal preconditioning"], - fr = """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 bloc-diagonal. - - 5 : preconditionnement diagonal en valeur absolue. - - 7 : preconditionnement de Crout par element. -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.""", - ang = """Enables to apply preconditionning the matrix system to accelerate -the convergence of the solver. - - 0 : no preconditionning - - 2 : diagonal preconditionning - - 3 : block-diagonal preconditionning - - 5 : diagonal preconditionning in absolute value - - 7 : Element Crout preconditionning. -Few of them can be combined -(numbers 2 or 3 with the other) -To combine some preconditionning, impose the product of the previous -numbers : example 6 means preconditionnig 2 and 3 applied.""", - ), -# ----------------------------------- - SOLVER = SIMP(statut ='f', + MATRIX_STORAGE = SIMP(statut ='f', # ----------------------------------- typ = 'TXM', - into = ["conjugate gradient","conjugate residual","conjugate gradient on a normal equation","minimum error","squared conjugate gradient","CGSTAB","GMRES","direct"], - defaut = ["direct"], - fr = """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 de type CGSTAB - 7 : GMRES - 8 : solveur direct""", - ang = """Enables to choose the solver used for solving the matrix system. -They are : - 1 : conjugate gradient - 2 : conjugate residual - 3 : conjugate gradient on the normal equation - 4 : minimum error - 5 : squarred conjugate gradient (not programmed) - 6 : CGSTAB conjugate gradient - 7 : GMRES - 8 : direct solver""", + into = ["Classical EBE","Assembled EBE","Edge-based storage"], + defaut = "Edge-based storage", + fr = """Permet de definir la methode de stockage des matrices. +Les choix possibles sont : +\begin{itemize} +\item 1 : EBE classique ; +\item 2 : EBE assemble ; +\item 3 : stockage par segments. +\end{itemize} +Attention, avec 2, il faut une numerotation speciale des points.""", + ang = """Defines the method to store matrices. The possible choices are: +\begin{itemize} +\item 1: classical EBE, +\item 2: assembled EBE, +\item 3: edge-based storage. +\end{itemize} +Beware, with option 2, a special numbering of points is required.""", ), # ----------------------------------- - SOLVER_OPTION = SIMP(statut ='f', + MATRIX_VECTOR_PRODUCT = SIMP(statut ='f', # ----------------------------------- typ = 'I', - defaut = [3], - fr = """Parametre definissant la dimension de l''espace de Krylov -pour le solveur 7 (GMRES)""", - ang = """Defines the dimension of the Krylov space when using -the solver 7 (GMRES)""", + defaut = 1, + fr = """Les choix possibles sont : +\begin{itemize} +\item 1 : Ancien Produit ; +\item 2 : Nouveau Produit Frontal. +\end{itemize}""", + ang = """Possible choices are: +\begin{itemize} +\item 1: Classical Product, +\item 2: New Frontal Product. +\end{itemize}""", ), # ----------------------------------- - SOLVER_ACCURACY = SIMP(statut ='f', + ZERO = SIMP(statut ='f', # ----------------------------------- typ = 'R', - defaut = [1.E-4], - fr = """Precision demandee pour la resolution de l''equation de Berkhoff.""", - ang = """Accuracy requested for the linear system solver.""", + defaut = [1.E-12], + fr = """Non active pour l instant.""", + ang = """Non active at the moment.""", ), # ----------------------------------- - INFORMATION = FACT(statut='f', + SOLVER_INFO = FACT(statut='o', # ----------------------------------- # ----------------------------------- - DISCRETIZATION_IN_SPACE = SIMP(statut ='f', + MAXIMUM_NUMBER_OF_ITERATIONS_FOR_SOLVER = SIMP(statut ='f', # ----------------------------------- typ = 'I', - defaut = [1], - fr = """ NON ACTIVE POUR LE MOMENT""", - ang = """NOT ACTIVE FOR THE MOMENT""", + defaut = 60000, + fr = """Les algorithmes utilises pour la resolution du systeme +matriciel etant iteratifs, il est necessaire de limiter le nombre +d iterations autorisees.""", + ang = """Algorithms used for solving the matrix system are iterative. +It is then necessary to limit the maximum number of iterations.""", ), # ----------------------------------- - ZERO = SIMP(statut ='f', + PRECONDITIONING = SIMP(statut ='f', # ----------------------------------- - typ = 'R', - defaut = [1.E-12], - fr = """Non active pour l''instant.""", - ang = """Non active at the moment.""", + typ = 'TXM', + into = ["no preconditioning","diagonal preconditioning","block-diagonal preconditioning","absolute value diagonal preconditioning","Crout preconditioning"], + defaut = "diagonal preconditioning", + fr = """Permet de preconditionner le systeme de l etape de propagation afin +d accelerer la convergence lors de sa resolution. +\begin{itemize} +\item 0 : pas de preconditionnement ; +\item 2 : preconditionnement diagonal ; +\item 3 : preconditionnement bloc-diagonal ; +\item 5 : preconditionnement diagonal en valeur absolue ; +\item 7 : preconditionnement de Crout par element. +\end{itemize} +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.""", + ang = """Enables to apply preconditionning the matrix system to accelerate +the convergence of the solver. +\begin{itemize} +\item 0: no preconditionning, +\item 2: diagonal preconditionning, +\item 3: block-diagonal preconditionning, +\item 5: diagonal preconditionning in absolute value, +\item 7: Element Crout preconditionning. +\end{itemize} +Few of them can be combined +(numbers 2 or 3 with the other). +To combine some preconditionnings, impose the product of the previous +numbers: example 6 means preconditioning 2 and 3 applied.""", ), # ----------------------------------- - BIDON_STRING = SIMP(statut ='f', + SOLVER = SIMP(statut ='f', # ----------------------------------- typ = 'TXM', - defaut = '', - fr = """TABLEAU DE CARACTERES DE TAILLE :4 -Place reservee pour eventuellement introduire - de nouvelles - chaines de caracteres (nouveaux fichiers...).""", - ang = """Character Array of size : 4 -Reserved to introduce new character strings (new file names...).""", + into = ["conjugate gradient","conjugate residual","conjugate gradient on a normal equation","minimum error","squared conjugate gradient","CGSTAB","GMRES","direct","parallel direct (MUMPS)"], + defaut = "direct", + fr = """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 : +\begin{itemize} +\item 1 : gradient conjugue ; +\item 2 : residu conjugue ; +\item 3 : gradient conjugue sur equation normale ; +\item 4 : erreur minimale ; +\item 5 : gradient conjugue carre (non programme) ; +\item 6 : gradient conjugue de type CGSTAB ; +\item 7 : GMRES ; +\item 8 : solveur direct. +\end{itemize}""", + ang = """Enables to choose the solver used for solving the matrix system. +They are: +\begin{itemize} +\item 1: conjugate gradient, +\item 2: conjugate residual, +\item 3: conjugate gradient on the normal equation, +\item 4: minimum error, +\item 5: squared conjugate gradient (not programmed), +\item 6: CGSTAB conjugate gradient, +\item 7: GMRES, +\item 8: direct solver. +\end{itemize}""", + ), +# ----------------------------------- + SOLVER_OPTION = SIMP(statut ='f', +# ----------------------------------- + typ = 'I', + defaut = 3, + fr = """Parametre definissant la dimension de l espace de Krylov +pour le solveur 7 (GMRES).""", + ang = """Defines the dimension of the Krylov space when using +the solver 7 (GMRES).""", + ), +# ----------------------------------- + SOLVER_ACCURACY = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = 1.E-4, + fr = """Precision demandee pour la resolution de l equation de Berkhoff.""", + ang = """Accuracy requested for the linear system solver.""", + ), + ), +# ----------------------------------- + DISSIPATION = FACT(statut='o', +# ----------------------------------- +# ----------------------------------- + SUB_ITERATIONS_ACCURACY_FOR_DISSIPATION = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = [1.E-2], + fr = """Donne la precision requise pour les sous-iterations du calcul +du coefficient de dissipation.""", + ang = """Fixes the accuracy requested for sub-iterations necessary to +determine the dissipation coefficients.""", + ), +# ----------------------------------- + MAXIMUM_OF_SUB_ITERATIONS = SIMP(statut ='f', +# ----------------------------------- + typ = 'I', + defaut = [15], + fr = """Donne le nombre maximum admis de sous-iterations pour le calcul +du coefficient de dissipation.""", + ang = """Fixes the maximum number of sub-iterations for the computation +of dissipation.""", + ), +# ----------------------------------- + DISSIPATION_RELAXATION = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = [0.5], + fr = """Donne le coefficient de relaxation entre deux sous-iterations +pour le calcul du coefficient de dissipation.""", + ang = """Fixes the relaxation coefficient used between two sub-iterations +for the computation of the dissipation term.""", ), ), ) # ----------------------------------------------------------------------- -PHYSICAL_PARAMETERS = PROC(nom= "PHYSICAL_PARAMETERS",op = None, +BOUNDARY_CONDITIONS = PROC(nom= "BOUNDARY_CONDITIONS",op = None, # ----------------------------------------------------------------------- # ----------------------------------- - RANDOM_WAVE = FACT(statut='f', + PHASE_REFERENCE_COORDINATES = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', min= 2, max= 2, + defaut = [0.,0.], + fr = """Coordonnees pour l origine des phases. Ne change rien +aux hauteurs de vagues calculees.""", + ang = """Coordinates of reference point for phase. Will +not change the wave height computed.""", + ), +# ----------------------------------- + RANDOM_WAVE = FACT(statut='o', # ----------------------------------- # ----------------------------------- NUMBER_OF_PERIODS = SIMP(statut ='f', # ----------------------------------- typ = 'I', defaut = [5], - fr = """Valeur utilisee avec l''option : - HOULE ALEATOIRE MONODIRECTIONNELLE = OUI - ou avec l''option - HOULE ALEATOIRE MULTIDIRECTIONNELLE = OUI + fr = """Valeur utilisee avec l option +\telkey{HOULE ALEATOIRE MONODIRECTIONNELLE} = OUI + ou avec l option +\telkey{HOULE ALEATOIRE MULTIDIRECTIONNELLE} = OUI. Pour un calcul en houle aleatoire monodirectionnelle ou -multidirectionnelle, nombre de bandes d''egale energie servant a -discretiser le spectre d''energie en frequence.""", - ang = """Used with otion : - MONODIRECTIONAL RANDOM WAVE = YES +multidirectionnelle, nombre de bandes d egale energie servant a +discretiser le spectre d energie en frequence.""", + ang = """Used with option +\telkey{MONODIRECTIONAL RANDOM WAVE} = YES or - MULTIDIRECTIONAL RANDOM WAVE = YES +\telkey{MULTIDIRECTIONAL RANDOM WAVE} = YES. It fixes the number of iso-energy frequency bands which discretize -the enrgy spectrum.""", +the energy spectrum.""", ), # ----------------------------------- PEAK_PERIOD = SIMP(statut ='f', # ----------------------------------- typ = 'R', defaut = [10.0], - fr = """Valeur utilisee avec l''option : - HOULE ALEATOIRE MONODIRECTIONNELLE = OUI - ou avec l''option - HOULE ALEATOIRE MULTIDIRECTIONNELLE = OUI -Fixe la periode de pic (en sec) du spectre d''energie.""", - ang = """Used with otion : - MONODIRECTIONAL RANDOM WAVE = YES + fr = """Valeur utilisee avec l option +\telkey{HOULE ALEATOIRE MONODIRECTIONNELLE} = OUI + ou avec l option +\telkey{HOULE ALEATOIRE MULTIDIRECTIONNELLE} = OUI. +Fixe la periode de pic (en secondes) du spectre d energie.""", + ang = """Used with option +\telkey{MONODIRECTIONAL RANDOM WAVE} = YES or - MULTIDIRECTIONAL RANDOM WAVE = YES -Fixes the peak period (in sec) of the energy spectrum""", +\telkey{MULTIDIRECTIONAL RANDOM WAVE} = YES. +Fixes the peak period (in seconds) of the energy spectrum.""", ), # ----------------------------------- GAMMA = SIMP(statut ='f', # ----------------------------------- - typ = 'TXM', - into = ["Pierson-Moskowitz","JONSWAP moyen","any spectre"], - defaut = ["JONSWAP moyen"], - fr = """Valeur utilisee avec l''option : - HOULE ALEATOIRE MONODIRECTIONNELLE = OUI - ou avec l''option - HOULE ALEATOIRE MULTIDIRECTIONNELLE = OUI -Indique la valeur de gamma pour le spectre d''energie - GAMMA = 1 spectre de Pierson-Moskowitz - GAMMA = 3.3 spectre de JONSWAP moyen (valeur par defaut).""", - ang = """Used with otion : - MONODIRECTIONAL RANDOM WAVE = YES + typ = 'R', + defaut = [3.3], + fr = """Valeur utilisee avec l option +\telkey{HOULE ALEATOIRE MONODIRECTIONNELLE} = OUI + ou avec l option +\telkey{HOULE ALEATOIRE MULTIDIRECTIONNELLE} = OUI. +Indique la valeur de $\gamma$ pour le spectre d energie : +\begin{itemize} +\item GAMMA = 1 : spectre de Pierson-Moskowitz ; +\item GAMMA = 3.3 : spectre de JONSWAP moyen (valeur par defaut). +\end{itemize}""", + ang = """Used with option +\telkey{MONODIRECTIONAL RANDOM WAVE} = YES or - MULTIDIRECTIONAL RANDOM WAVE = YES -Fixes the gamma value tor the JONSWAP wave energy spectrum : - GAMMA = 1 : Pierson-Moskowitz - GAMMA = 3.3 : mean JONSWAP spectrum (default value).""", +\telkey{MULTIDIRECTIONAL RANDOM WAVE} = YES. +Fixes the $\gamma$ value tor the JONSWAP wave energy spectrum: +\begin{itemize} +\item GAMMA = 1: Pierson-Moskowitz, +\item GAMMA = 3.3: mean JONSWAP spectrum (default value). +\end{itemize}""", ), # ----------------------------------- MINIMUM_SPECTRAL_PERIOD = SIMP(statut ='f', @@ -1223,11 +973,11 @@ Fixes the gamma value tor the JONSWAP wave energy spectrum : defaut = [0.02], fr = """Valeur de la periode minimum voulue en secondes si on veut tronquer le spectre pour le calcul -des periodes en houle aleatoire (voir PERALE).""", +des periodes en houle aleatoire (voir sous-programme \telfile{PERALE}).""", ang = """Minimum period value requested in seconds if it is necessary to alter the energy spectrum for the computation of the periods in the case -of random waves (see PERALE).""", +of random waves (see \telfile{PERALE} subroutine).""", ), # ----------------------------------- MAXIMUM_SPECTRAL_PERIOD = SIMP(statut ='f', @@ -1236,56 +986,52 @@ of random waves (see PERALE).""", defaut = [200.], fr = """Valeur de la periode maximum voulue en secondes si on veut tronquer le spectre pour le calcul -des periodes en houle aleatoire (voir PERALE).""", +des periodes en houle aleatoire (voir sous-programme \telfile{PERALE}).""", ang = """Maximum period value requested in seconds if it is necessary to alter the energy spectrum for the computation of the periods in the case -of random waves (see PERALE).""", +of random waves (see \telfile{PERALE} subroutine).""", ), - ), -# ----------------------------------- - MONODIRECTIONAL_RANDOM_WAVE = FACT(statut='f', -# ----------------------------------- # ----------------------------------- - MONODIRECTIONAL_RANDOM_WAVE = SIMP(statut ='f', + MONODIRECTIONAL = FACT(statut='o', # ----------------------------------- - typ = bool, - defaut = [False], - fr = """oui, si l''on veut effectuer un calcul en houle aleatoire +# ----------------------------------- + MONODIRECTIONAL_RANDOM_WAVE = SIMP(statut ='f', +# ----------------------------------- + typ = bool, + defaut = [False], + fr = """Oui, si l on veut effectuer un calcul en houle aleatoire monodirectionnelle (voir reels index 12, 13 et entier index 10).""", - ang = """Yes, if one wants to run computation in random monodirectional waves -(see reals key-words of index 12, 13 and integer of index 10).""", + ang = """Yes, if one wants to run computation in random monodirectional waves +(see real keywords of index 12, 13 and integer of index 10).""", + ), ), - ), -# ----------------------------------- - MULTIDIRECTIONAL_RANDOM_WAVE = FACT(statut='f', -# ----------------------------------- # ----------------------------------- - MULTIDIRECTIONAL_RANDOM_WAVE = SIMP(statut ='f', + MULTIDIRECTIONAL = FACT(statut='o', # ----------------------------------- - typ = bool, - defaut = [False], - fr = """oui, si l''on veut effectuer un calcul en houle aleatoire +# ----------------------------------- + MULTIDIRECTIONAL_RANDOM_WAVE = SIMP(statut ='f', +# ----------------------------------- + typ = bool, + defaut = [False], + fr = """Oui, si l on veut effectuer un calcul en houle aleatoire multidirectionnelle (voir les reels index 12, 13, 14, 15 et 16 et les entiers index 10 et 11.""", - ang = """Yes, if one wants to run computation in random multidirectional waves -(see reals key-words of index 12, 13 and integer of index 10).""", - ), -# ----------------------------------- - DONNEES = FACT(statut='f', -# ----------------------------------- + ang = """Yes, if one wants to run computation in random multidirectional waves +(see real keywords of index 12, 13 and integer of index 10).""", + ), # ----------------------------------- NUMBER_OF_DIRECTIONS = SIMP(statut ='f', # ----------------------------------- typ = 'I', defaut = [5], - fr = """Valeur utilisee avec l''option : - HOULE ALEATOIRE MULTIDIRECTIONNELLE = OUI + fr = """Valeur utilisee avec l option +\telkey{HOULE ALEATOIRE MULTIDIRECTIONNELLE} = OUI. Pour un calcul en houle aleatoire multidirectionnelle, -nombre de bandes d''egale energie servant a discretiser le spectre -directionnel d''energie.""", - ang = """Used with the option : - MULTIDIRECTIONAL RANDOM WAVE = YES +nombre de bandes d egale energie servant a discretiser le spectre +directionnel d energie.""", + ang = """Used with the option +\telkey{MULTIDIRECTIONAL RANDOM WAVE} = YES. It fixes the number of iso-energy bands which discretizes the wave directional spectrum.""", ), @@ -1294,16 +1040,16 @@ directional spectrum.""", # ----------------------------------- typ = 'R', defaut = [-180.], - fr = """Valeur utilisee avec l''option : - HOULE ALEATOIRE MULTIDIRECTIONNELLE = OUI - indique la borne inferieure de l''intervalle des directions de - propagation dans le cas d''une houle aleatoire multidirectionnelle - L''angle est donne en degres et est compte positivement dans le sens - direct a partir de l''axe x.""", - ang = """Used with the option : - MULTIDIRECTIONAL RANDOM WAVE = YES -Fixes the minimum value (in deg) of the directions range. It is -counted positively in the trigonometric sense relatively to the x + fr = """Valeur utilisee avec l option +\telkey{HOULE ALEATOIRE MULTIDIRECTIONNELLE} = OUI. +Indique la borne inferieure de l intervalle des directions de + propagation dans le cas d une houle aleatoire multidirectionnelle + L angle est donne en degres et est compte positivement dans le sens + direct a partir de l axe $x$.""", + ang = """Used with the option +\telkey{MULTIDIRECTIONAL RANDOM WAVE} = YES. +Fixes the minimum value (in degrees) of the directions range. It is +counted positively in the trigonometric sense relatively to the $x$ axis.""", ), # ----------------------------------- @@ -1311,16 +1057,16 @@ axis.""", # ----------------------------------- typ = 'R', defaut = [180.], - fr = """Valeur utilisee avec l''option : - HOULE ALEATOIRE MULTIDIRECTIONNELLE = OUI - indique la borne superieure de l''intervalle des directions de - propagation dans le cas d''une houle aleatoire multidirectionnelle - L''angle est donne en degres et est compte positivement dans le sens - direct a partir de l''axe x.""", - ang = """Used with the option : - MULTIDIRECTIONAL RANDOM WAVE = YES -Fixes the maximum value (in deg) of the directions range. It is -counted positively in the trigonometric sense relatively to the x + fr = """Valeur utilisee avec l option +\telkey{HOULE ALEATOIRE MULTIDIRECTIONNELLE} = OUI. +Indique la borne superieure de l intervalle des directions de + propagation dans le cas d une houle aleatoire multidirectionnelle. + L angle est donne en degres et est compte positivement dans le sens + direct a partir de l axe $x$.""", + ang = """Used with the option +\telkey{MULTIDIRECTIONAL RANDOM WAVE} = YES. +Fixes the maximum value (in degrees) of the directions range. It is +counted positively in the trigonometric sense relatively to the $x$ axis.""", ), # ----------------------------------- @@ -1328,17 +1074,17 @@ axis.""", # ----------------------------------- typ = 'R', defaut = [20.], - fr = """Valeur utilisee avec l''option : - HOULE ALEATOIRE MULTIDIRECTIONNELLE = OUI - indique la valeur maximale de l''exposant s dans l''expression donnant + fr = """Valeur utilisee avec l option +\telkey{HOULE ALEATOIRE MULTIDIRECTIONNELLE} = OUI. +Indique la valeur maximale de l exposant $s$ dans l expression donnant la repartition directionnelle de la houle. Cette expression est celle donnee par Goda dans Random Seas and - Design of Maritime Structures - University of Tokyo Press : + Design of Maritime Structures - University of Tokyo Press: G(f,teta) = G0 * (cos(teta/2))**2s. f est la frequence et teta est la direction de propagation de la houle.""", - ang = """Used with the option : - MULTIDIRECTIONAL RANDOM WAVE = YES -Fixes the maximum value of exponent S in the Goda formula used to + ang = """Used with the option +\telkey{MULTIDIRECTIONAL RANDOM WAVE} = YES. +Fixes the maximum value of exponent $S$ in the Goda formula used to express the directional wave energy spreading. See GODA Y., Random Seas and Design of Maritime Structures - Univ. of Tokyo Press, 1987.""", @@ -1346,33 +1092,33 @@ of Tokyo Press, 1987.""", ), ), # ----------------------------------- - PERIOD_SCANNING = FACT(statut='f', + PERIODS_SCANNING = FACT(statut='o', # ----------------------------------- # ----------------------------------- PERIOD_SCANNING = SIMP(statut ='f', # ----------------------------------- typ = bool, defaut = [False], - fr = """oui, si l''on veut effectuer plusieurs calculs en balayant un + fr = """Oui, si l on veut effectuer plusieurs calculs en balayant un intervalle de periodes (voir reels index 8,9 et 10).""", ang = """Yes, if one wants to run computations by scanning a period range (resonance computations, see also reals of index 8, 9, and 10).""", ), # ----------------------------------- - DONNEES = FACT(statut='f', + DATA = FACT(statut='o', # ----------------------------------- # ----------------------------------- BEGINNING_PERIOD_FOR_PERIOD_SCANNING = SIMP(statut ='f', # ----------------------------------- typ = 'R', defaut = [0.], - fr = """Valeur utilisee avec l''option : - BALAYAGE EN PERIODE = OUI - indique la borne gauche de l''intervalle de periodes a parcourir + fr = """Valeur utilisee avec l option +\telkey{BALAYAGE EN PERIODE} = OUI. +Indique la borne gauche de l intervalle de periodes a parcourir (pour par exemple rechercher les periodes de resonances).""", - ang = """Used with the option : - PERIOD SCANNING = YES -Fixes the minimum value (in sec) of the period range to be used for + ang = """Used with the option +\telkey{PERIOD SCANNING} = YES. +Fixes the minimum value (in seconds) of the period range to be used for the period scanning.""", ), # ----------------------------------- @@ -1380,13 +1126,13 @@ the period scanning.""", # ----------------------------------- typ = 'R', defaut = [0.], - fr = """Valeur utilisee avec l''option : - BALAYAGE EN PERIODE = OUI - indique la borne droite de l''intervalle de periodes a parcourir + fr = """Valeur utilisee avec l option +\telkey{BALAYAGE EN PERIODE} = OUI. +Indique la borne droite de l intervalle de periodes a parcourir (pour par exemple rechercher les periodes de resonances).""", - ang = """Used with the option : - PERIOD SCANNING = YES -Fixes the maximum value (in sec) of the period range to be used for + ang = """Used with the option +\telkey{PERIOD SCANNING} = YES. +Fixes the maximum value (in seconds) of the period range to be used for the period scanning.""", ), # ----------------------------------- @@ -1394,30 +1140,20 @@ the period scanning.""", # ----------------------------------- typ = 'R', defaut = [0.], - fr = """Valeur utilisee avec l''option : - BALAYAGE EN PERIODE = OUI - indique le pas a prendre pour effectuer le balayage en periodes + fr = """Valeur utilisee avec l option +\telkey{BALAYAGE EN PERIODE} = OUI. +Indique le pas a prendre pour effectuer le balayage en periodes (pour par exemple rechercher les periodes de resonances).""", - ang = """Used with the option : - PERIOD SCANNING = YES -Fixes the value of the period step (in sec) to be used for + ang = """Used with the option +\telkey{PERIOD SCANNING} = YES. +Fixes the value of the period step (in seconds) to be used for the period scanning.""", ), ), ), # ----------------------------------- - INFORMATION = FACT(statut='f', + MONOCHROMATIC_WAVE = FACT(statut='o', # ----------------------------------- -# ----------------------------------- - MINIMUM_VALUE_FOR_H = SIMP(statut ='f', -# ----------------------------------- - typ = 'R', - defaut = [1.E-7], - fr = """Fixe la valeur minimale de H -Non active pour l''instant.""", - ang = """Fixes the minimum value of H -Non active at the moment.""", - ), # ----------------------------------- WAVE_PERIOD = SIMP(statut ='f', # ----------------------------------- @@ -1431,684 +1167,795 @@ Non active at the moment.""", # ----------------------------------- typ = 'R', defaut = [0.0], - fr = """Donne la direction du vecteur d''onde de la houle incidente. L''angle + fr = """Donne la direction du vecteur d onde de la houle incidente. L angle est donne en degres et est compte positivement dans le sens direct -a partir de l''axe des x. -Il s''agit de la direction principale de propagation. +a partir de l axe des $x$. +Il s agit de la direction principale de propagation. Cette direction est la meme a toutes les frontieres maritimes. -Si l''utilisateur veut specifier des directions differentes sur +Si l utilisateur veut specifier des directions differentes sur differentes frontieres, il doit le faire dans son FORTRAN dans le -sous-programme BORH en specifiant la variable TETAB.""", +sous-programme \telfile{BORH} en specifiant la variable +\telfile{TETAB}.""", ang = """Fixes the direction towards the incident waves at boundaries go to. -It is counted in degress and positively in the trigonometric sense -relatively to the x axis. +It is counted in degrees and positively in the trigonometric sense +relatively to the $x$ axis. This value is prescribed as a constant value along all the wave incident type boundaries. If one wants to specify a non uniform value, -the user has to specify the value TETAB in the sub-routine BORH.""", +the user has to specify the value \telfile{TETAB} in the subroutine + \telfile{BORH}.""", ), # ----------------------------------- - ORIGINAL_HOUR_OF_TIME = SIMP(statut ='f', + WAVE_HEIGHTS_SMOOTHING = SIMP(statut ='f', # ----------------------------------- - typ = 'I', min= 3, max= 3, - defaut = [0,0,0], - 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.""", + typ = bool, + defaut = [False], + fr = """OUI si on souhaite lisser les hauteurs de houle +pour ameliorer le calcul des contraintes de radiation +(actif uniquement en houle reguliere). +Valeur par defaut = NON.""", + ang = """YES when one wants to smooth the wave heights +to improve the radiation stresses computation +(only used in regular wave mode). +Default value = NO.""", ), ), -) -# ----------------------------------------------------------------------- -EQUATIONS_SMOOTHINGS = PROC(nom= "EQUATIONS_SMOOTHINGS",op = None, -# ----------------------------------------------------------------------- -# ----------------------------------- - BOTTOM_TOPOGRAPHY_SMOOTHING = SIMP(statut ='f', -# ----------------------------------- - typ = 'I', - defaut = [0], - fr = """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.""", - ang = """Number of smoothings done on the topography. -Each smoothing, using a mass matrix, is conservative. -It is used when bathymetric data provide too irregular results -after interpolation.""", - ), -) -# ----------------------------------------------------------------------- -INITIAL_CONDITIONS_EQUATIONS = PROC(nom= "INITIAL_CONDITIONS_EQUATIONS",op = None, -# ----------------------------------------------------------------------- -# ----------------------------------- - INITIAL_WATER_LEVEL = SIMP(statut ='f', -# ----------------------------------- - typ = 'R', - defaut = [0.], - fr = """Valeur utilisee avec l''option CONDITIONS INITIALES : COTE CONSTANTE.""", - ang = """Used with the option INITIAL CONDITIONS : CONSTANT ELEVATION.""", - ), -# ----------------------------------- - INITIAL_DEPTH = SIMP(statut ='f', -# ----------------------------------- - typ = 'R', - defaut = [0.], - fr = """Valeur utilisee avec l''option : - CONDITIONS INITIALES : HAUTEUR CONSTANTE.""", - ang = """Value specified when using the option : - INITIAL CONDITIONS : CONSTANT DEPTH.""", - ), -# ----------------------------------- - INITIAL_CONDITIONS = SIMP(statut ='f', -# ----------------------------------- - typ = 'TXM', - into = ['ZERO ELEVATION','CONSTANT ELEVATION','ZERO DEPTH','CONSTANT DEPTH','SPECIAL'], - defaut = 'ZERO ELEVATION', - fr = """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 CONDIH.""", - ang = """Enables to define the initial conditions on water depths. -Allowable values are : - - ZERO ELEVATION : fixes the free surface level to 0. - Water depths are then equal to the difference between - free surface level and bottom level. - - CONSTANT ELEVATION : fixes the free surface level to the value - specified by the key-word INITIAL WATER LEVEL. Water - level are then computed as before. - - ZERO DEPTH : initializes the water depths to 0. - - CONSTANT DEPTH : initializes the water depths to the value - specified by the key-word INITIAL DEPTH. - - SPECIAL : initial conditions on water depths are to be - precised in the sub-routine CONDIH.""", - ), -) -# ----------------------------------------------------------------------- -PHYSICAL_CONSTANTS = PROC(nom= "PHYSICAL_CONSTANTS",op = None, -# ----------------------------------------------------------------------- -# ----------------------------------- - GRAVITY_ACCELERATION = SIMP(statut ='f', -# ----------------------------------- - typ = 'R', - defaut = [9.81], - fr = """Fixe la valeur de l''acceleration de la pesanteur.""", - ang = """Fixes the gravity acceleration value.""", - ), -) -# ----------------------------------------------------------------------- -RESULTS = PROC(nom= "RESULTS",op = None, -# ----------------------------------------------------------------------- -# ----------------------------------- - VARIABLES_FOR_GRAPHIC_PRINTOUTS = SIMP(statut ='f', -# ----------------------------------- - typ = 'TXM', - into = ["wave height","wave phase","velocity u (free surface)(t=0)","velocity v (free surface)(t=0)","free surface elevation (t=0)","bottom elevation","still water height","phase velocity","group velocity","wave number","real potential","imaginal potential","prive(1,1)","prive(1,2)","prive(1,3)","prive(1,4)","first mean spectral period","second mean spectral period","third mean spectral period","force along X","force along Y","wave incidence radian","breaking rate","SXX stress","SXY stress","SYY stress"], - defaut = [], - fr = """Noms des variables que l''utilisateur veut ecrire dans le fichier des -resultats. -Le choix des separateurs est libre. -Les possibilites offertes sont les suivantes : - - HS hauteur de la houle - - PHAS phase de la houle - - U0 vitesse u en surface (a t=0) - - V0 vitesse v en surface (a t=0) - - ZS cote de la surface libre (a t=0) - - ZF fond - - HW hauteur d''eau au repos - - C vitesse de phase - - CG vitesse de groupe - - K nombre d''onde - - PHIR potentiel reel - - PHII potentiel imaginaire - - D prive(1,1) (variable 13) - - E prive(1,2) (variable 14) - - F prive(1,3) (variable 15) - - G prive(1,4) (variable 16) - - T01 premiere periode moyenne spectrale - - T02 deuxieme periode moyenne spectrale - - TM troisieme periode moyenne spectrale - - FX force en X - - FY force en Y - - INC incidence de la houle - - QB taux de deferlement - - SXX contrainte SXX - - SXY contrainte SXY - - SYY contrainte SYY -L''utilisateur dispose 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 CALRES et le nom que l''on -desire leur donner doit etre ecrit dans le sous-programme NOMVAR. -Ces 4 champs sont : - - D, E, F, G 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, - en precisant le parametre NPRIV (dans le programme principal).""", - ang = """Names of the variables that the user wants to write in the results -file. Separators between variable names can be choosen free. - The allowable values are : - - HS=wave height - - PHAS=wave phase - - U0=velocity u (free surface at t=0) - - V0=velocity v (free surface at t=0) - - ZS=free surface elevation (at t=0) - - ZF=bottom elevation - - HW=still water height - - C=phase velocity - - CG=group velocity - - K=wave number - - PHIR=real potential - - PHII=imaginal potential - - D=prive(1,1) - - E=prive(1,2) - - F=prive(1,3) - - G=prive(1,4) - - T01=first mean spectral period - - T02=second mean spectral period - - TM=third mean spectral period - - FX=force along X - - FY=force along Y - - INC=wave incidence radian - - QB=breaking rate - - SXX=SXX stress - - SXY=SXY stress - - SYY=SYY stress -The user has 4 free variables at his/her disposal to create other -variables by him/herself. These variables have to be computed -in the CALRES sub-routine, and the name that we want to attribute -has to be precibed in the NOMVAR sub-routine. -The 4 free variable fields are : - - D, E, F, G which corresponds to the private arrays PRIVE(1,1), - PRIVE(1,2), PRIVE(1,3) and PRIVE (1,4). Contrarily to the previous - variables, these are conserved all through the computation, and can - be used again. - Do not forget to specify the number of private arrays you want to - use in the principal programme (variable NPRIV).""", - ), -# ----------------------------------- - VARIABLES_TO_BE_PRINTED = SIMP(statut ='f', -# ----------------------------------- - typ = 'TXM', - into = ["wave height","wave phase","velocity u (free surface)(t=0)","velocity v (free surface)(t=0)","free surface elevation (t=0)","bottom elevation","still water height","phase velocity","group velocity","wave number","real potential","imaginal potential","prive(1,1)","prive(1,2)","prive(1,3)","prive(1,4)","first mean spectral period","second mean spectral period","third mean spectral period","force along X","force along Y","wave incidence radian","breaking rate","SXX stress","SXY stress","SYY stress"], - defaut = '', - fr = """Nom des variables que l''utilisateur desire ecrire a l''ecran. -Memes possibilites que pour les sorties graphiques.""", - ang = """Name of variables taht the user whishes to write on the screen. -Possibilities are the same as for graphic outputs.""", - ), -) -# ----------------------------------------------------------------------- -CURRENT = PROC(nom= "CURRENT",op = None, -# ----------------------------------------------------------------------- # ----------------------------------- - INFORMATION = FACT(statut='f', + AUTOMATIC_TETAP_ANGLE = FACT(statut='o', # ----------------------------------- # ----------------------------------- - SUB_ITERATIONS_ACCURACY_FOR_CURRENT = SIMP(statut ='f', + SUB_ITERATIONS_ACCURACY_FOR_TETAP = SIMP(statut ='f', # ----------------------------------- typ = 'R', defaut = [1.E-2], fr = """Donne la precision requise pour les sous-iterations du calcul -du nombre d''onde en presencede courant (vecteur d''onde).""", +automatique de cos($\theta_p$).""", ang = """Fixes the accuracy requested for sub-iterations necessary to -determine the wave vector.""", +determine value of $\theta_p$ (criterion on cos($\theta_p$)).""", ), - ), -# ----------------------------------- - CURRENT = FACT(statut='f', -# ----------------------------------- # ----------------------------------- - CURRENT = SIMP(statut ='f', + AUTOMATIC_TETAP_CALCULATION = SIMP(statut ='f', # ----------------------------------- typ = bool, defaut = [False], - fr = """TRUE : PRISE EN COMPTE DE LA REFRACTION DE LA HOULE PAR - LE COURANT. - Modele retenu : Kostense et Al. (1988)""", - ang = """TRUE : WAVE REFRACTION DUE TO CURRENT IS - DESCRIBED USING KOSTENSE MODEL (1988)""", + fr = """Si = OUI : calcul automatique des angles $\theta_p$ +(basee sur la direction de la vitesse).""", + ang = """If = TRUE: automatic calculation of $\theta_p$ +(based on velocity direction).""", ), - ), -) -# ----------------------------------------------------------------------- -TETAP_CONVERGENCE = PROC(nom= "TETAP_CONVERGENCE",op = None, -# ----------------------------------------------------------------------- -# ----------------------------------- - INFORMATION = FACT(statut='f', -# ----------------------------------- # ----------------------------------- - SUB_ITERATIONS_ACCURACY_FOR_TETAP = SIMP(statut ='f', + MAXIMUM_OF_SUB_ITERATIONS_FOR_TETAP = SIMP(statut ='f', # ----------------------------------- - typ = 'R', - defaut = [1.E-2], - fr = """Donne la precision requise pour les sous-iterations du calcul -automatique de cos(TETAP).""", - ang = """Fixes the accuracy requested for sub-iterations necessary to -determine value of TETAP (criterion on cos(TETAP)).""", + typ = 'I', + defaut = [15], + fr = """Donne le nombre maximum admis de sous-iterations pour le calcul +automatique de $\theta_p$.""", + ang = """Fixes the maximum number of sub-iterations for the automatic +computation of $\theta_p$.""", ), - ), -) -# ----------------------------------------------------------------------- -REFLEXION_ANGLE = PROC(nom= "REFLEXION_ANGLE",op = None, -# ----------------------------------------------------------------------- -# ----------------------------------- - TETAP = FACT(statut='f', -# ----------------------------------- # ----------------------------------- - AUTOMATIC_TETAP_CALCULATION = SIMP(statut ='f', + RELAXATION_ON_TETAP = SIMP(statut ='f', # ----------------------------------- - typ = bool, - defaut = [False], - fr = """TRUE : CALCUL AUTO DES ANGLES TETAP - (basee sur la direction de la vitesse)""", - ang = """TRUE : AUTOMATIC CALCULATION OF TETAP - (based on velocity direction)""", + typ = 'R', + defaut = [1.], + fr = """Donne le coefficient de relaxation entre deux sous-iterations +pour le calcul de l angle d incidence automatique.""", + ang = """Fixes the relaxation coefficient used between two sub-iterations +for the computation of automatic $\theta_p$.""", ), ), -) -# ----------------------------------------------------------------------- -INCIDENT_WAVE_PHASE = PROC(nom= "INCIDENT_WAVE_PHASE",op = None, -# ----------------------------------------------------------------------- # ----------------------------------- - PHASE = FACT(statut='f', + AUTOMATIC_PHASE = FACT(statut='o', # ----------------------------------- # ----------------------------------- AUTOMATIC_CALCULATION_OF_PHASE = SIMP(statut ='f', # ----------------------------------- typ = bool, defaut = [False], - fr = """TRUE : CALCUL AUTOMATIQUE DE LA PHASE - (basee sur une profondeur de reference)""", - ang = """TRUE : AUTOMATIC CALCULATION OF INCIDENTE PHASE - (based on reference water depth)""", + fr = """OUI : calcul automatique de la phase +(basee sur une profondeur de reference).""", + ang = """TRUE: automatic calculation of incident phase +(based on reference water depth).""", ), - ), -) -# ----------------------------------------------------------------------- -PHASE_DEFINITION = PROC(nom= "PHASE_DEFINITION",op = None, -# ----------------------------------------------------------------------- -# ----------------------------------- - REFERENCE_WATER_DEPTH = FACT(statut='f', -# ----------------------------------- # ----------------------------------- REFERENCE_WATER_DEPTH_FOR_AUTOMATIC_PHASE = SIMP(statut ='f', # ----------------------------------- typ = 'R', defaut = [-1.0], - fr = """PROFONDEUR DE REFERENCE POUR LE CALCUL DE LA PHASE. - ESSAYEZ DE METTRE LA FRONTIERE INCIDENTE SUR UNE ZONE - DE BATHYMETRIE HOMOGENE. LA PROFONDEUR A RENSEIGNER - DOIT ETRE REPRESENTATIVE DE LA PROFONDEUR D EAU SUR - LA FRONTIERE""", - ang = """WATER DEPTH FOR AUTOMATIC INCIDENT PHASE CALCULATION. - TRY TO PUT THE INCIDENT WAVE BOUNDARY ON A REGULAR - TOPOGRAPHY ZONE. THE REFERENCE WATER DEPTH SHOULD BE - REPRESENTATIVE OF THE WATER DEPTH ON THE BOUNDARY""", + fr = """Profondeur de reference pour le calcul de la phase. +Essayez de mettre la frontiere incidente sur une zone +de bathymetrie homogene. +La profondeur a renseigner doit etre representative de la profondeur +d eau sur la frontiere.""", + ang = """Water depth for automatic incident phase calculation. +Try to put the incident wave boundary on a regular topography zone. +The reference water depth should be representative of the water depth +on the boundary.""", ), ), ) # ----------------------------------------------------------------------- -INFORMATION = PROC(nom= "INFORMATION",op = None, +PHYSICAL_PARAMETERS = PROC(nom= "PHYSICAL_PARAMETERS",op = None, # ----------------------------------------------------------------------- # ----------------------------------- - PHASE_DEFINITION = FACT(statut='f', + GRAVITY_ACCELERATION = SIMP(statut ='f', # ----------------------------------- -# ----------------------------------- - PHASE_REFERENCE_COORDINATES = SIMP(statut ='f', -# ----------------------------------- - typ = 'R', min= 2, max= 2, - defaut = [0,0], - fr = """Coordonnees pour l origine des phases. Ne change rien - aux hauteurs de vagues calculees""", - ang = """Coordinates of reference point for phase.Will - not change the wave height computed""", - ), + typ = 'R', + defaut = 9.81, + fr = """Fixe la valeur de l acceleration de la pesanteur en m/s$^2$.""", + ang = """Sets the value of the acceleration due to gravity in m/s$^2$.""", ), -) -# ----------------------------------------------------------------------- -CHAINING = PROC(nom= "CHAINING",op = None, -# ----------------------------------------------------------------------- # ----------------------------------- - TOMAWAC = FACT(statut='f', -# ----------------------------------- -# ----------------------------------- - CHAINING_TOMAWAC_1 = SIMP(statut ='f', -# ----------------------------------- - typ = bool, - defaut = [False], - fr = """Oui, si on imposer un spectre tomawac unique sur la frontiere -onde incidente.""", - ang = """Yes, if one wants to use a spectrum from TOMAWAC on the incident -boundary.""", - ), + INITIALIZATION = FACT(statut='o', +# ----------------------------------- # ----------------------------------- - NUMBER_OF_DIRECTIONS_IN_TOMAWAC_SPECTRUM = SIMP(statut ='f', + INITIAL_WATER_LEVEL = SIMP(statut ='f', # ----------------------------------- - typ = 'I', - defaut = [0], - fr = """Indique le nombre de directions dans le spectre importe -depuis TOMAWAC""", - ang = """Give the number of direction in the TOMAWAC imported -spectrum""", + typ = 'R', + defaut = 0., + fr = """Valeur utilisee avec l option +\telkey{CONDITIONS INITIALES} : ''COTE CONSTANTE''.""", + ang = """Value to be used with the option +\telkey{INITIAL CONDITIONS}: ''CONSTANT ELEVATION''.""", ), # ----------------------------------- - NUMBER_OF_FREQUENCIES_IN_TOMAWAC_SPECTRUM = SIMP(statut ='f', + INITIAL_DEPTH = SIMP(statut ='f', # ----------------------------------- - typ = 'I', - defaut = [0], - fr = """Indique le nombre de frequences dans le spectre importe -depuis TOMAWAC""", - ang = """Give the number of frequences in the TOMAWAC imported -spectrum""", + typ = 'R', + defaut = [0.], + fr = """Valeur utilisee avec l option +\telkey{CONDITIONS INITIALES} : ''HAUTEUR CONSTANTE''.""", + ang = """Value to be used along with the option +\telkey{INITIAL CONDITIONS}: ''CONSTANT DEPTH''.""", ), # ----------------------------------- - INSTANT_FOR_READING_TOMAWAC_SPECTRUM = SIMP(statut ='f', + INITIAL_CONDITIONS = SIMP(statut ='f', # ----------------------------------- - typ = 'R', - defaut = [0.], - fr = """Indique l instant de calcul TOMAWAC associe au spectre -qui doit etre importe dans ARTEMIS""", - ang = """Give the instant of the TOMAWAC computation at which we -want to import the spectrum for ARTEMIS""", + typ = 'TXM', + into = ['ZERO ELEVATION','CONSTANT ELEVATION','ZERO DEPTH','CONSTANT DEPTH','SPECIAL'], + defaut = 'ZERO ELEVATION', + fr = """Permet de definir les conditions initiales sur les hauteurs d eau. +Les valeurs possibles sont : +\begin{itemize} +\item 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 ; +\item COTE CONSTANTE : Initialise la cote de surface libre a la +valeur donnee par le mot-cle \telkey{COTE INITIALE}. Les hauteurs +d eau initiales sont calculees comme precedemment. +\item HAUTEUR NULLE : Initialise les hauteurs d eau a 0. +\item HAUTEUR CONSTANTE : Initialise les hauteurs d eau a la valeur +donnee par le mot-cle \telkey{HAUTEUR INITIALE}. +\item PARTICULIERES : Les conditions initiales sur la hauteur d eau +doivent etre precisees dans le sous-programme \telfile{CONDIH}. +\end{itemize}""", + ang = """Enables to define the initial conditions on water depths. +The possible values are as follows: +\begin{itemize} +\item ZERO ELEVATION: fixes the free surface level to 0. +Water depths are then equal to the difference between +free surface level and bottom level, +\item CONSTANT ELEVATION: fixes the free surface level to the value +specified by the keyword \telkey{INITIAL WATER LEVEL}. Water +level are then computed as before, +\item ZERO DEPTH: initializes the water depths to 0, +\item CONSTANT DEPTH: initializes the water depths to the value +specified by the keyword \telkey{INITIAL DEPTH}, +\item SPECIAL: initial conditions on water depths are to be +precised in the subroutine \telfile{CONDIH}. +\end{itemize}""", ), ), -) -# ----------------------------------------------------------------------- -INPUT_OUTPUT__INFORMATION = PROC(nom= "INPUT_OUTPUT__INFORMATION",op = None, -# ----------------------------------------------------------------------- # ----------------------------------- - COMPUTATIONAL_INFORMATION = FACT(statut='f', + DISSIPATION = FACT(statut='o', # ----------------------------------- # ----------------------------------- - DESCRIPTION_DES_LIBRARIES = SIMP(statut ='f', -# ----------------------------------- - typ = 'TXM', min= 6, max= 6, - defaut = 'builds|PPP|lib|artemisMMMVVV.LLL;builds|PPP|lib|biefMMMVVV.LLL;builds|PPP|lib|hermesMMMVVV.LLL;builds|PPP|lib|damoMMMVVV.LLL;builds|PPP|lib|parallelMMMVVV.LLL;builds|PPP|lib|specialMMMVVV.LLL', - fr = """Description des librairies de ARTEMIS""", - ang = """ARTEMIS LIBRARIES description""", - ), -# ----------------------------------- - DEFAULT_EXECUTABLE = SIMP(statut ='f', + BATHYMETRIC_BREAKING = FACT(statut='o', # ----------------------------------- - typ = 'TXM', - defaut = 'builds|PPP|bin|artemisMMMVVV.exe', - fr = """Executable par defaut de ARTEMIS""", - ang = """Default executable for ARTEMIS""", +# ----------------------------------- + BREAKING = SIMP(statut ='f', +# ----------------------------------- + typ = bool, + defaut = [False], + fr = """Oui, si l on souhaite integrer le processus de deferlement +bathymetrique (voir reels index 18, 19, 20, 21, 22, 23 +et entiers index 12, 13).""", + ang = """Yes, if one wants to account for breaking process (see also +reals of index 18, 19, 20, 21, 22, 23, and integer of index +12, 13).""", + ), +# ----------------------------------- + KDALLY = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = [0.1], + fr = """Donne le coefficient $K$ dans la formulation de la dissipation +par deferlement d apres Dally et al., 1984.""", + ang = """Fixes the coefficient $K$ used in the formulation of the dissipation +coefficient proposed by Dally et al. 1984.""", + ), +# ----------------------------------- + BREAKING_LAW = SIMP(statut ='f', +# ----------------------------------- + typ = 'TXM', + into = ["BATTJES \& JANSSEN","DALLY"], + defaut = ["BATTJES \& JANSSEN"], + fr = """Specifie la formulation choisie pour le coefficient de dissipation +par deferlement. N est effectif qu en houle reguliere. +\begin{itemize} +\item 1 : Formulation de Battjes \& Jansen, 1978 ; +\item 2 : Formulation de Dally et al., 1984. +\end{itemize} +En houle aleatoire, la seule formulation utilisee est celle de +Battjes \& Janssen, 1978.""", + ang = """Specifies the formulation chosen for calculating the dissipation +coefficient through breaking. Only effective for monochromatic wave +mode. +\begin{itemize} +\item 1: Formulation of Battjes \& Janssen, 1978, +\item 2: Formulation of Dally et al., 1984. +\end{itemize} +In random wave mode, the formulation of B \& J, 1978 is the only one +to be used.""", + ), +# ----------------------------------- + ALPHA = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = [1.0], + fr = """Donne le coefficient $\alpha$ dans la formulation de la dissipation +par deferlement en houle aleatoire d apres Battjes \& Janssen.""", + ang = """Fixes the coefficient $\alpha$ used in the formulation of the +dissipation coefficient through breaking proposed by Battjes \& Janssen, +1978 for random waves.""", + ), +# ----------------------------------- + GAMMAS = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = [0.88], + fr = """Donne le coefficient $\gamma_s$ dans le critere de la hauteur de +deferlement. Ne pas confondre avec le coefficient $\gamma$ qui +intervient dans la formule du spectre de JONSWAP.""", + ang = """Fixes the coefficient $\gamma_s$ used in the criterion of the critical +breaking wave height. Do not confuse with coefficient $\gamma$ +used in the JONSWAP spectrum.""", + ), +# ----------------------------------- + GDALLY = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = [0.4], + fr = """Donne le coefficient $\Gamma$ dans la formulation de la dissipation par +Dally et al., 1984. Ne pas confondre avec $\gamma$ (Formule de JONSWAP) +et Gammas (Critere de deferlement).""", + ang = """Fixes the $\Gamma$ coefficient used in the formulation of Dally et al., +1984, for the dissipation coefficient in surf-breaking. Do not confuse +with the coefficient $\gamma$ used in the JONSWAP formulae and +coefficient gammas used to determine the breaking wave height +criterion.""", + ), ), # ----------------------------------- - DEFAULT_PARALLEL_EXECUTABLE = SIMP(statut ='f', + BOTTOM_FRICTION = FACT(statut='o', # ----------------------------------- - typ = 'TXM', - defaut = 'builds|PPP|bin|artemisMMMVVV.exe', - fr = """Executable parallele par defaut de Artemis""", - ang = """Default parallel executable for Artemis""", +# ----------------------------------- + FRICTION = SIMP(statut ='f', +# ----------------------------------- + typ = bool, + defaut = [False], + fr = """Oui, si on veut prendre en compte le frottement sur le fond dans +la simulation.""", + ang = """Yes, if one wants to include dissipation through bottom friction +in the computation.""", + ), +# ----------------------------------- + FLUID_KINEMATIC_VISCOSITY = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', max='**', + defaut = [1.0E-6], + fr = """Viscosite cinematique du fluide (eau) en m$^2$/s. +\begin{itemize} +\item 1.793E-6 : Pour une temperature de 0 C ; +\item 1.567E-6 : Pour une temperature de 4 C ; +\item 1.237E-6 : Pour une temperature de 12 C ; +\item 1.112E-6 : Pour une temperature de 16 C ; +\item 1.011E-6 : Pour une temperature de 20 C ; +\item 0.802E-6 : Pour une temperature de 30 C ; +\item 0.661E-6 : Pour une temperature de 40 C. +\item 1.0E-6 : Valeur par defaut. +\end{itemize}""", + ang = """Kinematic viscosity of the fluid (water) in m$^2$/s. +\begin{itemize} +\item 1.793E-6: for a temperature of 0 C, +\item 1.567E-6: for a temperature of 4 C, +\item 1.237E-6: for a temperature of 12 C, +\item 1.112E-6: for a temperature of 16 C, +\item 1.011E-6: for a temperature of 20 C, +\item 0.802E-6: for a temperature of 30 C, +\item 0.661E-6: for a temperature of 40 C, +\item 1.0E-6: default value. +\end{itemize}""", + ), +# ----------------------------------- + DIAMETER90 = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', max='**', + defaut = [0.15E-3], + fr = """\telfile{DIAM90} represente le diametre maximum, en m, de 90 \% +en poids des sediments. +\begin{itemize} +\item 1.0E-3 : Pour des sables tres grossiers ; +\item 0.5E-3 : Pour des sables grossiers ; +\item 0.25E-3 : Pour des sables moyens ; +\item 0.125E-3 : Pour des sables fins ; +\item 0.062E-3 : Pour des sables tres fins ; +\item 0.15E-3 : Valeur par defaut. +\end{itemize}""", + ang = """\telfile{DIAM90} is the maximum grain diameter, in m, which defines +90 \% of the total weight of sediment. +\begin{itemize} +\item 1.0E-3: for very coarse sand, +\item 0.5E-3: for coarse sand, +\item 0.25E-3: for medium sand, +\item 0.125E-3: for fine sand, +\item 0.062E-3: for very fine sand, +\item 0.15E-3: default value. +\end{itemize}""", + ), +# ----------------------------------- + DIAMETER50 = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', max='**', + defaut = [0.10E-3], + fr = """\telfile{DIAM50} represente le diametre maximum de 50 \% en poids des +sediments. En general, on a \telfile{DIAM90} = 1.5 $\times$ +\telfile{DIAM50} +\telfile{DIAM50} est plus souvent donne dans des tables +\begin{itemize} +\item 0.66E-3 : Pour des sables tres grossiers ; +\item 0.33E-3 : Pour des sables grossiers ; +\item 0.17E-3 : Pour des sables moyens ; +\item 0.083E-3 : Pour des sables fins ; +\item 0.040E-3 : Pour des sables tres fins ; +\item 0.10E-3 : Valeur par defaut. +\end{itemize}""", + ang = """\telfile{DIAM50} is the maximum grain diameter, in m, which defines +50 \% of the total weight of sediment. Usually, we have +\telfile{DIAM90} = 1.5 $\times$ \telfile{DIAM50}. +\telfile{DIAM50} is a more common value used. +\begin{itemize} +\item 0.66E-3: for very coarse sand, +\item 0.33E-3: for coarse sand, +\item 0.17E-3: for medium sand, +\item 0.083E-3: for fine sand, +\item 0.040E-3: for very fine sand, +\item 0.10E-3: default value. +\end{itemize}""", + ), +# ----------------------------------- + SEDIMENT_SPECIFIC_WEIGHT = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = [2650.0], + fr = """Masse volumique du sediment en kg/m$^3$.""", + ang = """Sediment specific weight in kg/m$^3$.""", + ), +# ----------------------------------- + FLUID_SPECIFIC_MASS = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = [1000.0], + fr = """Masse volumique du fluide (eau) en kg/m$^3$.""", + ang = """Fluid specific weight (water) in kg/m$^3$.""", + ), +# ----------------------------------- + HYDRAULIC_REGIME_IMPOSED = SIMP(statut ='f', +# ----------------------------------- + typ = bool, + defaut = [False], + fr = """Utilise avec l option \telkey{FROTTEMENT} = OUI. +Permet de choisir d imposer le regime hydraulique dans le cas +d un calcul automatique du facteur de frottement sur fonds sableux.""", + ang = """Used with the option \telkey{FRICTION} = YES. +Enables to impose the hydraulic regime in the case of an automatic +calculation of the friction factor for sandy beds.""", + ), +# ----------------------------------- + SKIN_ROUGHNESS_ONLY = SIMP(statut ='f', +# ----------------------------------- + typ = bool, + defaut = [False], + fr = """Utilise avec l option \telkey{FROTTEMENT} = OUI. +Permet de choisir de ne prendre en compte +que la rugosite de peau dans le cas d un calcul automatique +du facteur de frottement sur fonds sableux.""", + ang = """Used with the option \telkey{FRICTION} = YES. +Enables to restrict the total roughness to the skin roughness +in the case of an automatic calculation of the friction +factor for sandy beds.""", + ), +# ----------------------------------- + HYDRAULIC_REGIME_TYPE = SIMP(statut ='f', +# ----------------------------------- + typ = 'TXM', max='**', + into = ["laminar regime","smooth-turbulent regime","rough-turbulent regime","transient regime"], + defaut = ["laminar regime"], + fr = """Utilise si le mot-cle \telkey{REGIME HYDRAULIQUE IMPOSE} = OUI. +Determine le regime hydraulique. +\begin{itemize} +\item regime laminaire ; +\item turbulent lisse ; +\item turbulent rugueux ; +\item transitoire. +\end{itemize}""", + ang = """Used with option \telkey{HYDRAULIC REGIME IMPOSED} = YES. +Determines the type of the hydraulic regime (laminar, +smooth-turbulent, rough-turbulent, transient). +\begin{itemize} +\item laminar regime, +\item smooth-turbulent regime, +\item rough-turbulent regime, +\item transient regime. +\end{itemize}""", + ), +# ----------------------------------- + BOTTOM_FRICTION_LAW = SIMP(statut ='f', +# ----------------------------------- + typ = 'TXM', max='**', + into = ["Kostense formulation integrating Ue calculation (1986)","Putnam \& Johnson formulation (1949)"], + defaut = ["Kostense formulation integrating Ue calculation (1986)"], + fr = """Utilise avec l option \telkey{FROTTEMENT} = OUI. +Fixe le choix de la formulation du frottement : +\begin{itemize} +\item 1 : Kostense et al., 1986 ; +\item 2 : Putnam \& Johnson, 1949. +\end{itemize}""", + ang = """Used with the option \telkey{FRICTION} = YES. +Fixes the formulation used for bottom friction law: +\begin{itemize} +\item 1: Kostense et al., 1986, +\item 2: Putnam \& Johnson, 1949. +\end{itemize}""", + ), +# ----------------------------------- + FRICTION_FACTOR_IMPOSED = SIMP(statut ='f', +# ----------------------------------- + typ = bool, + defaut = [False], + fr = """Utilise avec l option \telkey{FROTTEMENT} = OUI. +OUI permet de choisir d imposer un facteur de frottement, par un +mot-cle s il est uniforme (voir le reel d index 29) ou en +programmant dans le sous-programme \telfile{FWSPEC}. +Si NON, \artemis considere par defaut que les fonds sont sableux, +et calcule automatiquement le facteur de frottement avec les +caracteristiques du sediment et de l ecoulement.""", + ang = """Used with the option \telkey{FRICTION} = YES. +If YES, enables the user to impose a friction factor, by a keyword +for a constant value (see real of index 29) or by programming in +the \telfile{FWSPEC} subroutine for non-uniform value. +If NO, \artemis automatically computes the friction factor assuming +that the bottom is sandy and uses the characteristics of sediment +and of motion.""", + ), +# ----------------------------------- + FRICTION_FACTOR = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = [0.], + fr = """Utilise si le mot-cle \telkey{FACTEUR DE FROTTEMENT IMPOSE} = OUI. +Fixe le facteur de frottement choisi uniforme sur le domaine.""", + ang = """Used with the option \telkey{FRICTION FACTOR IMPOSED} = YES. +Fixes the value of the friction factor uniform over the domain.""", + ), +# ----------------------------------- + FRICTION_COEFFICIENT = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = [0.], + fr = """A ne pas confondre avec le \telkey{FACTEUR DE FROTTEMENT}. +Non utilise dans \artemis. +On le laisse par coherence avec \telemac{2d}.""", + ang = """Do not confuse with the \telkey{FRICTION FACTOR}. +Not used in \artemis. +It is let here for consistence with \telemac{2d}.""", + ), +# ----------------------------------- + RIPPLES_COEFFICIENT = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', max='**', + defaut = [0.7], + fr = """Specifie le coefficient de rides utilise dans la formule de +Van Rijn pour calculer le facteur de frottement : +\begin{itemize} +\item 1.0 : pour des rides seules, +\item 0.7 : pour des rides superposees a des vagues de sable. +\end{itemize}""", + ang = """Fixes the ripples coefficient used in the formulae of Van Rijn +to calculate the friction factor: +\begin{itemize} +\item 1.0: for single ripples, +\item 0.7: for ripples superimposed to sand waves. +\end{itemize}""", + ), ), ), # ----------------------------------- - COMPUTATION_ENVIRONMENT = FACT(statut='f', + CURRENT_INFO = FACT(statut='o', # ----------------------------------- # ----------------------------------- - DICTIONARY = SIMP(statut ='f', + SUB_ITERATIONS_ACCURACY_FOR_CURRENT = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = [1.E-2], + fr = """Donne la precision requise pour les sous-iterations du calcul +du nombre d onde en presence de courant (vecteur d onde).""", + ang = """Fixes the accuracy requested for sub-iterations necessary to +determine the wave vector.""", + ), # ----------------------------------- - typ = ('Fichier','All Files (*)'), - defaut = 'artemis.dico', - fr = """Dictionnaire des mots cles.""", - ang = """Key word dictionary.""", + CURRENT = SIMP(statut ='f', +# ----------------------------------- + typ = bool, + defaut = [False], + fr = """Si = OUI : Prise en compte de la refraction de la houle par le courant. +Modele retenu : Kostense et Al. (1988).""", + ang = """If = TRUE: Wave refraction due to current is described using + Kostense model (1988).""", ), ), # ----------------------------------- - CONTROL = FACT(statut='f', + VARYING_TOPOGRAPHY = FACT(statut='o', # ----------------------------------- # ----------------------------------- - ORIGIN_COORDINATES = SIMP(statut ='f', + RAPIDLY_VARYING_TOPOGRAPHY = SIMP(statut ='f', # ----------------------------------- - typ = 'I', min= 2, max= 2, - defaut = [0,0], - fr = """Valeur en metres, utilise pour eviter les trops 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""", + typ = 'TXM', + into = ["mild-slope equation","gradient second order term","curvature second order term","gradient + curvature second order terms"], + defaut = ["mild-slope equation"], + fr = """Prise en compte des fortes pentes et courbures dans Berkhoff +\begin{itemize} +\item 0 : Berkhoff simple ; +\item 1 : prise en compte terme pente en grad($h$)$^2$ ; +\item 2 : prise en compte terme courbure en laplacien($h$) ; +\item 3 : prise en compte des termes de pente et courbure. +\end{itemize} +Modele retenu pour les fonctions E1 et E2 : Chamberlain +et Porter (1995).""", + ang = """Extension of mild-slope equation with second + order bottom effects +\begin{itemize} +\item 0: mild-slope equation, +\item 1: gradient second order term: grad($h$)$^2$, +\item 2: curvature second order term: laplacian($h$), +\item 3: gradient + curvature second order terms. +\end{itemize} +Model used for functions E1 and E2 expression: Chamberlain +and Porter (1995).""", ), ), ) # ----------------------------------------------------------------------- -INPUT_OUTPUT__FILES = PROC(nom= "INPUT_OUTPUT__FILES",op = None, +INTERNAL = PROC(nom= "INTERNAL",op = None, # ----------------------------------------------------------------------- + UIinfo = {"groupes": ("CACHE")}, # ----------------------------------- - GEOMETRY_FILE_FORMAT = SIMP(statut ='f', -# ----------------------------------- - typ = 'TXM', - into = ['SERAFIN','SERAFIND','MED'], - defaut = 'SERAFIN?', - fr = """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""", - ang = """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""", - ), -# ----------------------------------- - RESULTS_FILE_FORMAT = SIMP(statut ='f', -# ----------------------------------- - typ = 'TXM', - into = ['SERAFIN','SERAFIND','MED'], - defaut = 'SERAFIN?', - fr = """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""", - ang = """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""", - ), -# ----------------------------------- - TOMAWAC_DATA_FILE_1_FORMAT = SIMP(statut ='f', -# ----------------------------------- - typ = 'TXM', - into = ['SERAFIN','SERAFIND','MED'], - defaut = 'SERAFIN?', - fr = """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""", - ang = """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""", - ), -# ----------------------------------- - BINARY_DATA_FILE_1_FORMAT = SIMP(statut ='f', -# ----------------------------------- - typ = 'TXM', - into = ['SERAFIN','SERAFIND','MED'], - defaut = 'SERAFIN?', - fr = """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""", - ang = """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""", - ), -# ----------------------------------- - BINARY_DATA_FILE_2_FORMAT = SIMP(statut ='f', + STEERING_FILE = SIMP(statut ='f', # ----------------------------------- - typ = 'TXM', - into = ['SERAFIN','SERAFIND','MED'], - defaut = 'SERAFIN?', - fr = """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""", - ang = """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""", + typ = ('Fichier','All Files (*)'), max='**', + defaut = '', + fr = """Nom du fichier contenant les parametres du calcul a realiser.""", + ang = """Name of the steering file used for the computation.""", ), # ----------------------------------- - AMPLITUDE_AND_PHASE_FILE_FORMAT = SIMP(statut ='f', + PARTITIONING_TOOL = SIMP(statut ='f', # ----------------------------------- typ = 'TXM', - defaut = 'SERAFIN', - fr = """""", - ang = """""", + into = ['METIS','SCOTCH','PARMETIS','PTSCOTCH'], + defaut = 'METIS', + fr = """Choix du partitionneur : +\begin{itemize} +\item 1 : METIS ; +\item 2 : SCOTCH ; +\item 3 : PARMETIS ; +\item 4 : PTSCOTCH. +\end{itemize}""", + ang = """Partitioning tool selection: +\begin{itemize} +\item 1: METIS, +\item 2: SCOTCH, +\item 3: PARMETIS, +\item 4: PTSCOTCH. +\end{itemize}""", ), # ----------------------------------- - FREE_SURFACE_FILE_FORMAT = SIMP(statut ='f', + DICTIONARY = SIMP(statut ='f', # ----------------------------------- - typ = 'TXM', - defaut = 'SERAFIN', - fr = """""", - ang = """""", + typ = ('Fichier','All Files (*)'), + defaut = 'artemis.dico', + fr = """Dictionnaire des mots cles.""", + ang = """Key word dictionary.""", ), # ----------------------------------- - NAMES = FACT(statut='f', + CONCATENATE_PARTEL_OUTPUT = SIMP(statut ='o', # ----------------------------------- -# ----------------------------------- - AD_NUMBER_OF_DERIVATIVES = SIMP(statut ='f', -# ----------------------------------- - typ = 'I', - defaut = [0], - fr = """Definit le nombre de derivees utilisateurs, dans le cadre -de la differentiation algorithmique.""", - ang = """Defines the number of user derivatives, within the framework -of the algorithmic differentiation.""", - ), -# ----------------------------------- - AD_NAMES_OF_DERIVATIVES = SIMP(statut ='f', -# ----------------------------------- - typ = 'TXM', min= 2, max= 2, - fr = """Noms des derivees utilisateurs en 32 caracteres, - 16 pour le nom, 16 pour l''unite""", - ang = """Name of user derivatives in 32 characters, - 16 for the name, 16 for the unit.""", - ), + typ = bool, + defaut = False, + fr = """Avec cette option, partel ne generera plus un fichier (GEO/CLI/PAR) +par processeur mais une concatenation de ceux-ci, ainsi qu un fichier +d index associe. Ainsi plutot que d avoir 3P fichiers, il n y en a +plus que 6.""", + ang = """With this option, partel no more generates a file (GEO/CLI/PAR) per +process but a single concatenate file of them, associated to an index +file. Then instead of having partel generating 3P files, it only +generates 6 files.""", ), ) # ----------------------------------------------------------------------- -TOPOGRAPHY_EFFECTS_EXTENDED_MILD_SLOPE_EQUATION = PROC(nom= "TOPOGRAPHY_EFFECTS_EXTENDED_MILD_SLOPE_EQUATION",op = None, +NESTING_WITH_TOMAWAC = PROC(nom= "NESTING_WITH_TOMAWAC",op = None, # ----------------------------------------------------------------------- # ----------------------------------- - RAPIDLY_VARYING_TOPOGRAPHY = SIMP(statut ='f', + NESTING_WITHIN_TOMAWAC_OUTER_MODEL = SIMP(statut ='f', # ----------------------------------- typ = 'TXM', - into = ["BERKHOFF SIMPLE","PRISE EN COMPTE TERME DE PENTE","PRISE EN COMPTE TERME DE COURBURE","PRISE EN COMPTE DES TERMES DE PENTE ET COURBURE"], - defaut = ["BERKHOFF SIMPLE"], - fr = """PRISE EN COMPTE DES FORTES PENTES ET COURBURES DANS BERKHOFF - 0=> BERKHOFF SIMPLE - 1=> PRISE EN COMPTE TERME PENTE en grad(H) **2 - 2=> PRISE EN COMPTE TERME COURBURE en laplacien(H) - 3=> PRISE EN COMPTE DES TERMES PENTE ET COURBURE - Modele retenu pour les fonctions E1 et E2 : Chamberlain - et Porter (1995)""", - ang = """EXTENSION OF MILD-SLOPE EQUATION WITH SECOND - ORDER BOTTOM EFFECTS - 0=> MILD-SLOPE EQUATION - 1=> GRADIENT SECOND ORDER TERM : grad(H) **2 - 2=> CURVATURE SECOND ORDER TERM : laplacian(H) - 3=> GRADIENT + CURVATURE SECOND ORDER TERMS - Model used for functions E1 and E2 expression : Chamberlain - et Porter 1995""", + into = ["No nesting","Uses a TOMAWAC spectrum (1 point) as input to ARTEMIS","Uses several TOMAWAC spectra located along ARTEMIS boundary"], + defaut = ["No nesting"], + fr = """A besoin de NOMBRE DE DIRECTION DANS LE SPECTRE TOMAWAC et +NOMBRE DE FREQUENCES DANS LE SPECTRE TOMAWAC pour l option 1. +A besoin des noms de \telkey{FICHIER DE RESULTATS GLOBAL TOMAWAC}, +\telkey{FICHIER DE SPECTRE GLOBAL TOMAWAC} et +\telkey{COORDONNEES POUR LE SPECTRE F DE REFERENCE} pour l option 2. +Donner \telkey{INSTANT DE LECTURE DU SPECTRE TOMAWAC} pour 1 et 2""", + ang = """Remember to give NUMBER OF DIRECTIONS IN TOMAWAC SPECTRUM +and NUMBER OF FREQUENCIES IN TOMAWAC SPECTRUM with option 1. +Remember to give \telkey{TOMAWAC OUTER RESULT FILE}, +\telkey{TOMAWAC OUTER SPECTRAL FILE} and +\telkey{COORDINATES OF THE REFERENCE F SPECTRUM} if using option 2. +\telkey{INSTANT FOR READING TOMAWAC SPECTRUM} required +in cases 1 and 2.""", ), -) -# ----------------------------------------------------------------------- -GENERAL = PROC(nom= "GENERAL",op = None, -# ----------------------------------------------------------------------- # ----------------------------------- - CHECKING_THE_MESH = SIMP(statut ='f', + INSTANT_FOR_READING_TOMAWAC_SPECTRUM = SIMP(statut ='f', # ----------------------------------- - typ = bool, - defaut = [False], - fr = """Si oui on appelle le sous-programme checkmesh qui verifie -la coherence du maillage, points superposes, etc.""", - ang = """if this key word is equal to yes, a call to subroutine -checkmesh will look for errors in the mesh, superimposed points, etc.""", + typ = 'R', + defaut = [0.], + fr = """Indique l instant de calcul \tomawac associe au spectre +qui doit etre importe dans \artemis.""", + ang = """Give the instant of the \tomawac computation at which we +want to import the spectrum for \artemis.""", ), -) -# ----------------------------------------------------------------------- -INPUT_OUTPUT__GRAPHICS_AND_LISTING = PROC(nom= "INPUT_OUTPUT__GRAPHICS_AND_LISTING",op = None, -# ----------------------------------------------------------------------- # ----------------------------------- - FIRST_TIME_IN_THE_FREE_SURFACE_FILE = SIMP(statut ='f', + COORDINATES_OF_THE_REFERENCE_F_SPECTRUM = SIMP(statut ='f', # ----------------------------------- - typ = 'R', - defaut = [10000.], - fr = """Determine le temps a partir duquel debute l ecriture -des resultats dans le FICHIER DE SURFACE LIBRE.""", - ang = """Determines the time from which the results are written -in the FREE SURFACE FILE.""", + typ = 'R', min= 2, max= 2, + defaut = [-99999.9,-99999.9], + fr = """Coordonnees du point de reference pour le spectre en +frequence.""", + ang = """Coordinates for the frequency spectrum reference point.""", ), # ----------------------------------- - TIME_STEP = SIMP(statut ='f', + INPUT = FACT(statut='o', # ----------------------------------- - typ = 'R', - defaut = [0.25], - fr = """Definit le pas de temps en secondes.""", - ang = """Specifies the time step in seconds.""", +# ----------------------------------- + DATA = FACT(statut='o', +# ----------------------------------- +# ----------------------------------- + TOMAWAC_OUTER_SPECTRAL_FILE = SIMP(statut ='f', +# ----------------------------------- + typ = ('Fichier','All Files (*)'), max='**', + defaut = '', + fr = """Nom du fichier de spectre provenant d un modele global +\tomawac.""", + ang = """Name of the spectral file from an outer \tomawac wave +model.""", + ), +# ----------------------------------- + TOMAWAC_OUTER_SPECTRAL_FILE_FORMAT = SIMP(statut ='f', +# ----------------------------------- + typ = 'TXM', + defaut = 'SERAFIN', + fr = """Format du \telkey{FICHIER DE SPECTRE GLOBAL TOMAWAC}. +Les valeurs possibles sont : +\begin{itemize} +\item SERAFIN : format standard simple precision pour \tel ; +\item SERAFIND: format standard double precision pour \tel ; +\item MED : format MED double precision base sur HDF5. +\end{itemize}""", + ang = """Format of the \telkey{TOMAWAC OUTER SPECTRAL FILE}. +Possible choices are: +\begin{itemize} +\item SERAFIN : classical single precision format in \tel, +\item SERAFIND: classical double precision format in \tel, +\item MED : MED double precision format based on HDF5. +\end{itemize}""", + ), +# ----------------------------------- + TOMAWAC_LIQUID_BOUNDARY_FILE = SIMP(statut ='f', +# ----------------------------------- + typ = ('Fichier','All Files (*)'), max='**', + defaut = '', + fr = """Nom du fichier de frontieres liquides provenant d un modele +global \tomawac.""", + ang = """Name of a file containing the liquid boundaries derived +from an outer \tomawac wave model.""", + ), +# ----------------------------------- + TOMAWAC_LIQUID_BOUNDARY_FILE_FORMAT = SIMP(statut ='f', +# ----------------------------------- + typ = 'TXM', max='**', + defaut = 'SERAFIN', + fr = """Format du \telkey{FICHIER DE FRONTIERES LIQUIDES TOMAWAC}. +Les valeurs possibles sont : +\begin{itemize} +\item SERAFIN : format standard simple precision pour \tel ; +\item SERAFIND: format standard double precision pour \tel ; +\item MED : format MED double precision base sur HDF5. +\end{itemize}""", + ang = """Format of the \telkey{TOMAWAC LIQUID BOUNDARY FILE}. +Possible choices are: +\begin{itemize} +\item SERAFIN : classical single precision format in \tel, +\item SERAFIND: classical double precision format in \tel, +\item MED : MED double precision format based on HDF5. +\end{itemize}""", + ), + ), ), # ----------------------------------- - NUMBER_OF_TIME_STEPS = SIMP(statut ='f', + OUTPUT = FACT(statut='o', # ----------------------------------- - typ = 'I', - defaut = [0], - fr = """Definit le nombre de pas de temps pour la sortie graphique -FICHIER DE SURFACE LIBRE.""", - ang = """Specifies the number of time steps in FREE SURFACE FILE.""", +# ----------------------------------- + RESULTS = FACT(statut='o', +# ----------------------------------- +# ----------------------------------- + TOMAWAC_OUTER_RESULT_FILE = SIMP(statut ='f', +# ----------------------------------- + typ = ('Fichier','All Files (*)'), max='**', + defaut = '', + fr = """Nom du fichier de resultats 2D provenant d un modele global +\tomawac.""", + ang = """Name of a file containing the results of an outer \tomawac +wave model.""", + ), +# ----------------------------------- + TOMAWAC_OUTER_RESULT_FILE_FORMAT = SIMP(statut ='f', +# ----------------------------------- + typ = 'TXM', + defaut = 'SERAFIN', + fr = """Format du \telkey{FICHIER DE RESULTATS GLOBAL TOMAWAC}. +Les valeurs possibles sont : +\begin{itemize} +\item SERAFIN : format standard simple precision pour \tel ; +\item SERAFIND: format standard double precision pour \tel ; +\item MED : format MED double precision base sur HDF5. +\end{itemize}""", + ang = """Format of the \telkey{TOMAWAC OUTER RESULT FILE}. +Possible choices are: +\begin{itemize} +\item SERAFIN : classical single precision format in \tel, +\item SERAFIND: classical double precision format in \tel, +\item MED : MED double precision format based on HDF5. +\end{itemize}""", + ), + ), ), ) TEXTE_NEW_JDC = "\ +COMPUTATION_ENVIRONMENT();\ +GENERAL_PARAMETERS();\ +NUMERICAL_PARAMETERS();\ +BOUNDARY_CONDITIONS();\ +PHYSICAL_PARAMETERS();\ +NESTING_WITH_TOMAWAC();\ " Ordre_Des_Commandes = ( -'INPUT_OUTPUT_FILES', -'INPUT_OUTPUT_INFORMATION', +'COMPUTATION_ENVIRONMENT', +'GENERAL_PARAMETERS', 'NUMERICAL_PARAMETERS', -'DISSIPATION', -'INPUT_OUTPUT_GRAPHICS_AND_LISTING', -'NUMERICAL_PARAMETERS_SOLVER', +'BOUNDARY_CONDITIONS', 'PHYSICAL_PARAMETERS', -'EQUATIONS_SMOOTHINGS', -'INITIAL_CONDITIONS_EQUATIONS', -'PHYSICAL_CONSTANTS', -'RESULTS', -'CURRENT', -'TETAP_CONVERGENCE', -'REFLEXION_ANGLE', -'INCIDENT_WAVE_PHASE', -'PHASE_DEFINITION', -'INFORMATION', -'CHAINING', -'INPUT_OUTPUT__INFORMATION', -'INPUT_OUTPUT__FILES', -'TOPOGRAPHY_EFFECTS_EXTENDED_MILD_SLOPE_EQUATION', -'GENERAL', -'INPUT_OUTPUT__GRAPHICS_AND_LISTING') +'INTERNAL', +'NESTING_WITH_TOMAWAC') try: import TelApy source = "eficas" diff --git a/Telemac/artemis_dicoCasEnToCata.py b/Telemac/artemis_dicoCasEnToCata.py index 93959fea..460cbaac 100644 --- a/Telemac/artemis_dicoCasEnToCata.py +++ b/Telemac/artemis_dicoCasEnToCata.py @@ -1,13 +1,10 @@ dicoCataToEngTelemac = { "GEOMETRY_FILE" : "GEOMETRY FILE", - "RESULTS_FILE_BINARY" : "RESULTS FILE BINARY", "TITLE" : "TITLE", "DEBUGGER" : "DEBUGGER", "VECTOR_LENGTH" : "VECTOR LENGTH", - "LAW_OF_BOTTOM_FRICTION" : "LAW OF BOTTOM FRICTION", "MATRIX_STORAGE" : "MATRIX STORAGE", "MATRIX_VECTOR_PRODUCT" : "MATRIX-VECTOR PRODUCT", - "USER_CRAY" : "USER CRAY", "GRAPHIC_PRINTOUT_PERIOD" : "GRAPHIC PRINTOUT PERIOD", "LISTING_PRINTOUT_PERIOD" : "LISTING PRINTOUT PERIOD", "MAXIMUM_NUMBER_OF_ITERATIONS_FOR_SOLVER" : "MAXIMUM NUMBER OF ITERATIONS FOR SOLVER", @@ -17,21 +14,16 @@ dicoCataToEngTelemac = { "PRECONDITIONING" : "PRECONDITIONING", "SOLVER" : "SOLVER", "SOLVER_OPTION" : "SOLVER OPTION", - "GEOMETRY_FILE_STANDARD" : "GEOMETRY FILE STANDARD", - "RESULTS_FILE_STANDARD" : "RESULTS FILE STANDARD", "PEAK_PERIOD" : "PEAK PERIOD", "GAMMA" : "GAMMA", "MONODIRECTIONAL_RANDOM_WAVE" : "MONODIRECTIONAL RANDOM WAVE", "MULTIDIRECTIONAL_RANDOM_WAVE" : "MULTIDIRECTIONAL RANDOM WAVE", "PERIOD_SCANNING" : "PERIOD SCANNING", "SOLVER_ACCURACY" : "SOLVER ACCURACY", - "MINIMUM_VALUE_FOR_H" : "MINIMUM VALUE FOR H", "INITIAL_DEPTH" : "INITIAL DEPTH", "WAVE_PERIOD" : "WAVE PERIOD", "GRAVITY_ACCELERATION" : "GRAVITY ACCELERATION", "INITIAL_CONDITIONS" : "INITIAL CONDITIONS", - "RELAXATION_COEFFICIENT" : "RELAXATION COEFFICIENT", - "DISCRETIZATION_IN_SPACE" : "DISCRETIZATION IN SPACE", "NUMBER_OF_DIRECTIONS" : "NUMBER OF DIRECTIONS", "DIRECTION_OF_WAVE_PROPAGATION" : "DIRECTION OF WAVE PROPAGATION", "ZERO" : "ZERO", @@ -49,22 +41,13 @@ dicoCataToEngTelemac = { "STEERING_FILE" : "STEERING FILE", "BOUNDARY_CONDITIONS_FILE" : "BOUNDARY CONDITIONS FILE", "RESULTS_FILE" : "RESULTS FILE", - "RELEASE" : "RELEASE", - "PASSWORD" : "PASSWORD", - "LIBRARIES" : "LIBRARIES", - "CPU_TIME" : "CPU TIME", - "MEMORY_SPACE" : "MEMORY SPACE", "BOTTOM_TOPOGRAPHY_FILE" : "BOTTOM TOPOGRAPHY FILE", - "TOMAWAC_DATA_FILE_1" : "TOMAWAC DATA FILE 1", "BINARY_DATA_FILE_1" : "BINARY DATA FILE 1", "BINARY_DATA_FILE_2" : "BINARY DATA FILE 2", "FORMATTED_DATA_FILE_1" : "FORMATTED DATA FILE 1", "FORMATTED_DATA_FILE_2" : "FORMATTED DATA FILE 2", "BINARY_RESULTS_FILE" : "BINARY RESULTS FILE", "FORMATTED_RESULTS_FILE" : "FORMATTED RESULTS FILE", - "PRIORITY" : "PRIORITY", - "BIDON_STRING" : "BIDON STRING", - "GEOMETRY_FILE_BINARY" : "GEOMETRY FILE BINARY", "SUB_ITERATIONS_ACCURACY_FOR_DISSIPATION" : "SUB-ITERATIONS ACCURACY FOR DISSIPATION", "SUB_ITERATIONS_ACCURACY_FOR_CURRENT" : "SUB-ITERATIONS ACCURACY FOR CURRENT", "SUB_ITERATIONS_ACCURACY_FOR_TETAP" : "SUB-ITERATIONS ACCURACY FOR TETAP", @@ -80,10 +63,6 @@ dicoCataToEngTelemac = { "DISSIPATION_RELAXATION" : "DISSIPATION RELAXATION", "MAXIMUM_OF_SUB_ITERATIONS_FOR_TETAP" : "MAXIMUM OF SUB-ITERATIONS FOR TETAP", "RELAXATION_ON_TETAP" : "RELAXATION ON TETAP", - "CHAINING_TOMAWAC_1" : "CHAINING TOMAWAC 1", - "NUMBER_OF_DIRECTIONS_IN_TOMAWAC_SPECTRUM" : "NUMBER OF DIRECTIONS IN TOMAWAC SPECTRUM", - "NUMBER_OF_FREQUENCIES_IN_TOMAWAC_SPECTRUM" : "NUMBER OF FREQUENCIES IN TOMAWAC SPECTRUM", - "INSTANT_FOR_READING_TOMAWAC_SPECTRUM" : "INSTANT FOR READING TOMAWAC SPECTRUM", "ALPHA" : "ALPHA", "GAMMAS" : "GAMMAS", "GDALLY" : "GDALLY", @@ -103,7 +82,6 @@ dicoCataToEngTelemac = { "FRICTION_FACTOR" : "FRICTION FACTOR", "FRICTION_COEFFICIENT" : "FRICTION COEFFICIENT", "RIPPLES_COEFFICIENT" : "RIPPLES COEFFICIENT", - "ACCOUNT_NUMBER" : "ACCOUNT NUMBER", "MINIMUM_SPECTRAL_PERIOD" : "MINIMUM SPECTRAL PERIOD", "MAXIMUM_SPECTRAL_PERIOD" : "MAXIMUM SPECTRAL PERIOD", "ORIGINAL_DATE_OF_TIME" : "ORIGINAL DATE OF TIME", @@ -116,7 +94,6 @@ dicoCataToEngTelemac = { "GEOMETRY_FILE_FORMAT" : "GEOMETRY FILE FORMAT", "RESULTS_FILE_FORMAT" : "RESULTS FILE FORMAT", "REFERENCE_FILE_FORMAT" : "REFERENCE FILE FORMAT", - "TOMAWAC_DATA_FILE_1_FORMAT" : "TOMAWAC DATA FILE 1 FORMAT", "BINARY_DATA_FILE_1_FORMAT" : "BINARY DATA FILE 1 FORMAT", "BINARY_DATA_FILE_2_FORMAT" : "BINARY DATA FILE 2 FORMAT", "RAPIDLY_VARYING_TOPOGRAPHY" : "RAPIDLY VARYING TOPOGRAPHY", @@ -129,24 +106,25 @@ dicoCataToEngTelemac = { "FIRST_TIME_IN_THE_FREE_SURFACE_FILE" : "FIRST TIME IN THE FREE SURFACE FILE", "TIME_STEP" : "TIME STEP", "NUMBER_OF_TIME_STEPS" : "NUMBER OF TIME STEPS", + "NESTING_WITHIN_TOMAWAC_OUTER_MODEL" : "NESTING WITHIN TOMAWAC OUTER MODEL", + "INSTANT_FOR_READING_TOMAWAC_SPECTRUM" : "INSTANT FOR READING TOMAWAC SPECTRUM", + "TOMAWAC_OUTER_SPECTRAL_FILE" : "TOMAWAC OUTER SPECTRAL FILE", + "TOMAWAC_OUTER_SPECTRAL_FILE_FORMAT" : "TOMAWAC OUTER SPECTRAL FILE FORMAT", + "TOMAWAC_OUTER_RESULT_FILE" : "TOMAWAC OUTER RESULT FILE", + "TOMAWAC_OUTER_RESULT_FILE_FORMAT" : "TOMAWAC OUTER RESULT FILE FORMAT", + "TOMAWAC_LIQUID_BOUNDARY_FILE" : "TOMAWAC LIQUID BOUNDARY FILE", + "TOMAWAC_LIQUID_BOUNDARY_FILE_FORMAT" : "TOMAWAC LIQUID BOUNDARY FILE FORMAT", + "COORDINATES_OF_THE_REFERENCE_F_SPECTRUM" : "COORDINATES OF THE REFERENCE F SPECTRUM", "DICTIONARY" : "DICTIONARY", - "LIST_OF_FILES" : "LIST OF FILES", - "AD_NUMBER_OF_DERIVATIVES" : "AD NUMBER OF DERIVATIVES", - "AD_NAMES_OF_DERIVATIVES" : "AD NAMES OF DERIVATIVES", - "DESCRIPTION_DES_LIBRARIES" : "DESCRIPTION DES LIBRARIES", - "DEFAULT_EXECUTABLE" : "DEFAULT EXECUTABLE", - "DEFAULT_PARALLEL_EXECUTABLE" : "DEFAULT PARALLEL EXECUTABLE", + "CONCATENATE_PARTEL_OUTPUT" : "CONCATENATE PARTEL OUTPUT", } dicoCasEnToCata = { "GEOMETRY FILE" : "GEOMETRY_FILE", - "RESULTS FILE BINARY" : "RESULTS_FILE_BINARY", "TITLE" : "TITLE", "DEBUGGER" : "DEBUGGER", "VECTOR LENGTH" : "VECTOR_LENGTH", - "LAW OF BOTTOM FRICTION" : "LAW_OF_BOTTOM_FRICTION", "MATRIX STORAGE" : "MATRIX_STORAGE", "MATRIX-VECTOR PRODUCT" : "MATRIX_VECTOR_PRODUCT", - "USER CRAY" : "USER_CRAY", "GRAPHIC PRINTOUT PERIOD" : "GRAPHIC_PRINTOUT_PERIOD", "LISTING PRINTOUT PERIOD" : "LISTING_PRINTOUT_PERIOD", "MAXIMUM NUMBER OF ITERATIONS FOR SOLVER" : "MAXIMUM_NUMBER_OF_ITERATIONS_FOR_SOLVER", @@ -156,21 +134,16 @@ dicoCasEnToCata = { "PRECONDITIONING" : "PRECONDITIONING", "SOLVER" : "SOLVER", "SOLVER OPTION" : "SOLVER_OPTION", - "GEOMETRY FILE STANDARD" : "GEOMETRY_FILE_STANDARD", - "RESULTS FILE STANDARD" : "RESULTS_FILE_STANDARD", "PEAK PERIOD" : "PEAK_PERIOD", "GAMMA" : "GAMMA", "MONODIRECTIONAL RANDOM WAVE" : "MONODIRECTIONAL_RANDOM_WAVE", "MULTIDIRECTIONAL RANDOM WAVE" : "MULTIDIRECTIONAL_RANDOM_WAVE", "PERIOD SCANNING" : "PERIOD_SCANNING", "SOLVER ACCURACY" : "SOLVER_ACCURACY", - "MINIMUM VALUE FOR H" : "MINIMUM_VALUE_FOR_H", "INITIAL DEPTH" : "INITIAL_DEPTH", "WAVE PERIOD" : "WAVE_PERIOD", "GRAVITY ACCELERATION" : "GRAVITY_ACCELERATION", "INITIAL CONDITIONS" : "INITIAL_CONDITIONS", - "RELAXATION COEFFICIENT" : "RELAXATION_COEFFICIENT", - "DISCRETIZATION IN SPACE" : "DISCRETIZATION_IN_SPACE", "NUMBER OF DIRECTIONS" : "NUMBER_OF_DIRECTIONS", "DIRECTION OF WAVE PROPAGATION" : "DIRECTION_OF_WAVE_PROPAGATION", "ZERO" : "ZERO", @@ -188,22 +161,13 @@ dicoCasEnToCata = { "STEERING FILE" : "STEERING_FILE", "BOUNDARY CONDITIONS FILE" : "BOUNDARY_CONDITIONS_FILE", "RESULTS FILE" : "RESULTS_FILE", - "RELEASE" : "RELEASE", - "PASSWORD" : "PASSWORD", - "LIBRARIES" : "LIBRARIES", - "CPU TIME" : "CPU_TIME", - "MEMORY SPACE" : "MEMORY_SPACE", "BOTTOM TOPOGRAPHY FILE" : "BOTTOM_TOPOGRAPHY_FILE", - "TOMAWAC DATA FILE 1" : "TOMAWAC_DATA_FILE_1", "BINARY DATA FILE 1" : "BINARY_DATA_FILE_1", "BINARY DATA FILE 2" : "BINARY_DATA_FILE_2", "FORMATTED DATA FILE 1" : "FORMATTED_DATA_FILE_1", "FORMATTED DATA FILE 2" : "FORMATTED_DATA_FILE_2", "BINARY RESULTS FILE" : "BINARY_RESULTS_FILE", "FORMATTED RESULTS FILE" : "FORMATTED_RESULTS_FILE", - "PRIORITY" : "PRIORITY", - "BIDON STRING" : "BIDON_STRING", - "GEOMETRY FILE BINARY" : "GEOMETRY_FILE_BINARY", "SUB-ITERATIONS ACCURACY FOR DISSIPATION" : "SUB_ITERATIONS_ACCURACY_FOR_DISSIPATION", "SUB-ITERATIONS ACCURACY FOR CURRENT" : "SUB_ITERATIONS_ACCURACY_FOR_CURRENT", "SUB-ITERATIONS ACCURACY FOR TETAP" : "SUB_ITERATIONS_ACCURACY_FOR_TETAP", @@ -219,10 +183,6 @@ dicoCasEnToCata = { "DISSIPATION RELAXATION" : "DISSIPATION_RELAXATION", "MAXIMUM OF SUB-ITERATIONS FOR TETAP" : "MAXIMUM_OF_SUB_ITERATIONS_FOR_TETAP", "RELAXATION ON TETAP" : "RELAXATION_ON_TETAP", - "CHAINING TOMAWAC 1" : "CHAINING_TOMAWAC_1", - "NUMBER OF DIRECTIONS IN TOMAWAC SPECTRUM" : "NUMBER_OF_DIRECTIONS_IN_TOMAWAC_SPECTRUM", - "NUMBER OF FREQUENCIES IN TOMAWAC SPECTRUM" : "NUMBER_OF_FREQUENCIES_IN_TOMAWAC_SPECTRUM", - "INSTANT FOR READING TOMAWAC SPECTRUM" : "INSTANT_FOR_READING_TOMAWAC_SPECTRUM", "ALPHA" : "ALPHA", "GAMMAS" : "GAMMAS", "GDALLY" : "GDALLY", @@ -242,7 +202,6 @@ dicoCasEnToCata = { "FRICTION FACTOR" : "FRICTION_FACTOR", "FRICTION COEFFICIENT" : "FRICTION_COEFFICIENT", "RIPPLES COEFFICIENT" : "RIPPLES_COEFFICIENT", - "ACCOUNT NUMBER" : "ACCOUNT_NUMBER", "MINIMUM SPECTRAL PERIOD" : "MINIMUM_SPECTRAL_PERIOD", "MAXIMUM SPECTRAL PERIOD" : "MAXIMUM_SPECTRAL_PERIOD", "ORIGINAL DATE OF TIME" : "ORIGINAL_DATE_OF_TIME", @@ -255,7 +214,6 @@ dicoCasEnToCata = { "GEOMETRY FILE FORMAT" : "GEOMETRY_FILE_FORMAT", "RESULTS FILE FORMAT" : "RESULTS_FILE_FORMAT", "REFERENCE FILE FORMAT" : "REFERENCE_FILE_FORMAT", - "TOMAWAC DATA FILE 1 FORMAT" : "TOMAWAC_DATA_FILE_1_FORMAT", "BINARY DATA FILE 1 FORMAT" : "BINARY_DATA_FILE_1_FORMAT", "BINARY DATA FILE 2 FORMAT" : "BINARY_DATA_FILE_2_FORMAT", "RAPIDLY VARYING TOPOGRAPHY" : "RAPIDLY_VARYING_TOPOGRAPHY", @@ -268,11 +226,15 @@ dicoCasEnToCata = { "FIRST TIME IN THE FREE SURFACE FILE" : "FIRST_TIME_IN_THE_FREE_SURFACE_FILE", "TIME STEP" : "TIME_STEP", "NUMBER OF TIME STEPS" : "NUMBER_OF_TIME_STEPS", + "NESTING WITHIN TOMAWAC OUTER MODEL" : "NESTING_WITHIN_TOMAWAC_OUTER_MODEL", + "INSTANT FOR READING TOMAWAC SPECTRUM" : "INSTANT_FOR_READING_TOMAWAC_SPECTRUM", + "TOMAWAC OUTER SPECTRAL FILE" : "TOMAWAC_OUTER_SPECTRAL_FILE", + "TOMAWAC OUTER SPECTRAL FILE FORMAT" : "TOMAWAC_OUTER_SPECTRAL_FILE_FORMAT", + "TOMAWAC OUTER RESULT FILE" : "TOMAWAC_OUTER_RESULT_FILE", + "TOMAWAC OUTER RESULT FILE FORMAT" : "TOMAWAC_OUTER_RESULT_FILE_FORMAT", + "TOMAWAC LIQUID BOUNDARY FILE" : "TOMAWAC_LIQUID_BOUNDARY_FILE", + "TOMAWAC LIQUID BOUNDARY FILE FORMAT" : "TOMAWAC_LIQUID_BOUNDARY_FILE_FORMAT", + "COORDINATES OF THE REFERENCE F SPECTRUM" : "COORDINATES_OF_THE_REFERENCE_F_SPECTRUM", "DICTIONARY" : "DICTIONARY", - "LIST OF FILES" : "LIST_OF_FILES", - "AD NUMBER OF DERIVATIVES" : "AD_NUMBER_OF_DERIVATIVES", - "AD NAMES OF DERIVATIVES" : "AD_NAMES_OF_DERIVATIVES", - "DESCRIPTION DES LIBRARIES" : "DESCRIPTION_DES_LIBRARIES", - "DEFAULT EXECUTABLE" : "DEFAULT_EXECUTABLE", - "DEFAULT PARALLEL EXECUTABLE" : "DEFAULT_PARALLEL_EXECUTABLE", + "CONCATENATE PARTEL OUTPUT" : "CONCATENATE_PARTEL_OUTPUT", } diff --git a/Telemac/artemis_dicoCasFrToCata.py b/Telemac/artemis_dicoCasFrToCata.py index 0eba241b..a8a8867b 100644 --- a/Telemac/artemis_dicoCasFrToCata.py +++ b/Telemac/artemis_dicoCasFrToCata.py @@ -1,13 +1,10 @@ dicoCataToFrTelemac = { "GEOMETRY_FILE" : "FICHIER DE GEOMETRIE", - "RESULTS_FILE_BINARY" : "BINAIRE DU FICHIER DES RESULTATS", "TITLE" : "TITRE", "DEBUGGER" : "DEBUGGER", "VECTOR_LENGTH" : "LONGUEUR DU VECTEUR", - "LAW_OF_BOTTOM_FRICTION" : "LOI DE FROTTEMENT SUR LE FOND", "MATRIX_STORAGE" : "STOCKAGE DES MATRICES", "MATRIX_VECTOR_PRODUCT" : "PRODUIT MATRICE-VECTEUR", - "USER_CRAY" : "USER CRAY", "GRAPHIC_PRINTOUT_PERIOD" : "PERIODE DE SORTIE GRAPHIQUE", "LISTING_PRINTOUT_PERIOD" : "PERIODE DE SORTIE LISTING", "MAXIMUM_NUMBER_OF_ITERATIONS_FOR_SOLVER" : "MAXIMUM D'ITERATIONS POUR LE SOLVEUR", @@ -17,21 +14,16 @@ dicoCataToFrTelemac = { "PRECONDITIONING" : "PRECONDITIONNEMENT", "SOLVER" : "SOLVEUR", "SOLVER_OPTION" : "OPTION DU SOLVEUR", - "GEOMETRY_FILE_STANDARD" : "STANDARD DU FICHIER DE GEOMETRIE", - "RESULTS_FILE_STANDARD" : "STANDARD DU FICHIER DES RESULTATS", "PEAK_PERIOD" : "PERIODE DE PIC", "GAMMA" : "GAMMA", "MONODIRECTIONAL_RANDOM_WAVE" : "HOULE ALEATOIRE MONODIRECTIONNELLE", "MULTIDIRECTIONAL_RANDOM_WAVE" : "HOULE ALEATOIRE MULTIDIRECTIONNELLE", "PERIOD_SCANNING" : "BALAYAGE EN PERIODE", "SOLVER_ACCURACY" : "PRECISION DU SOLVEUR", - "MINIMUM_VALUE_FOR_H" : "VALEUR MINIMUM DE H", "INITIAL_DEPTH" : "HAUTEUR INITIALE", "WAVE_PERIOD" : "PERIODE DE LA HOULE", "GRAVITY_ACCELERATION" : "ACCELERATION DE LA PESANTEUR", "INITIAL_CONDITIONS" : "CONDITIONS INITIALES", - "RELAXATION_COEFFICIENT" : "COEFFICIENT DE RELAXATION", - "DISCRETIZATION_IN_SPACE" : "DISCRETISATION EN ESPACE", "NUMBER_OF_DIRECTIONS" : "NOMBRE DE DIRECTIONS DE DISCRETISATION", "DIRECTION_OF_WAVE_PROPAGATION" : "DIRECTION DE PROPAGATION DE LA HOULE", "ZERO" : "ZERO", @@ -49,22 +41,13 @@ dicoCataToFrTelemac = { "STEERING_FILE" : "FICHIER DES PARAMETRES", "BOUNDARY_CONDITIONS_FILE" : "FICHIER DES CONDITIONS AUX LIMITES", "RESULTS_FILE" : "FICHIER DES RESULTATS", - "RELEASE" : "NUMERO DE VERSION", - "PASSWORD" : "MOT DE PASSE CRAY", - "LIBRARIES" : "BIBLIOTHEQUES", - "CPU_TIME" : "TEMPS MACHINE CRAY", - "MEMORY_SPACE" : "PLACE MEMOIRE CRAY", "BOTTOM_TOPOGRAPHY_FILE" : "FICHIER DES FONDS", - "TOMAWAC_DATA_FILE_1" : "FICHIER DE DONNEES TOMAWAC 1", "BINARY_DATA_FILE_1" : "FICHIER DE DONNEES BINAIRE 1", "BINARY_DATA_FILE_2" : "FICHIER DE DONNEES BINAIRE 2", "FORMATTED_DATA_FILE_1" : "FICHIER DE DONNEES FORMATE 1", "FORMATTED_DATA_FILE_2" : "FICHIER DE DONNEES FORMATE 2", "BINARY_RESULTS_FILE" : "FICHIER DES RESULTATS BINAIRE", "FORMATTED_RESULTS_FILE" : "FICHIER DES RESULTATS FORMATE", - "PRIORITY" : "PRIORITE", - "BIDON_STRING" : "CHAINE BIDON", - "GEOMETRY_FILE_BINARY" : "BINAIRE DU FICHIER DE GEOMETRIE", "SUB_ITERATIONS_ACCURACY_FOR_DISSIPATION" : "PRECISION SUR LES SOUS-ITERATIONS POUR LA DISSIPATION", "SUB_ITERATIONS_ACCURACY_FOR_CURRENT" : "PRECISION SUR LES SOUS-ITERATIONS POUR COURANT", "SUB_ITERATIONS_ACCURACY_FOR_TETAP" : "PRECISION SUR LES SOUS-ITERATIONS POUR TETAP", @@ -80,10 +63,6 @@ dicoCataToFrTelemac = { "DISSIPATION_RELAXATION" : "RELAXATION SUR LA DISSIPATION", "MAXIMUM_OF_SUB_ITERATIONS_FOR_TETAP" : "MAXIMUM DE SOUS-ITERATIONS POUR TETAP", "RELAXATION_ON_TETAP" : "RELAXATION SUR TETAP", - "CHAINING_TOMAWAC_1" : "CHAINAGE TOMAWAC 1", - "NUMBER_OF_DIRECTIONS_IN_TOMAWAC_SPECTRUM" : "NOMBRE DE DIRECTION DANS LE SPECTRE TOMAWAC", - "NUMBER_OF_FREQUENCIES_IN_TOMAWAC_SPECTRUM" : "NOMBRE DE FREQUENCES DANS LE SPECTRE TOMAWAC", - "INSTANT_FOR_READING_TOMAWAC_SPECTRUM" : "INSTANT DE LECTURE DU SPECTRE TOMAWAC", "ALPHA" : "ALPHA", "GAMMAS" : "GAMMAS", "GDALLY" : "GDALLY", @@ -103,7 +82,6 @@ dicoCataToFrTelemac = { "FRICTION_FACTOR" : "FACTEUR DE FROTTEMENT", "FRICTION_COEFFICIENT" : "COEFFICIENT DE FROTTEMENT", "RIPPLES_COEFFICIENT" : "COEFFICIENT DE RIDES", - "ACCOUNT_NUMBER" : "NUMERO DE COMPTE", "MINIMUM_SPECTRAL_PERIOD" : "PERIODE MINIMUM DU SPECTRE", "MAXIMUM_SPECTRAL_PERIOD" : "PERIODE MAXIMUM DU SPECTRE", "ORIGINAL_DATE_OF_TIME" : "DATE DE L'ORIGINE DES TEMPS", @@ -116,7 +94,6 @@ dicoCataToFrTelemac = { "GEOMETRY_FILE_FORMAT" : "FORMAT DU FICHIER DE GEOMETRIE", "RESULTS_FILE_FORMAT" : "FORMAT DU FICHIER DE RESULTATS", "REFERENCE_FILE_FORMAT" : "FORMAT DU FICHIER DE REFERENCE", - "TOMAWAC_DATA_FILE_1_FORMAT" : "FORMAT DU FICHIER DE DONNEES TOMAWAC 1", "BINARY_DATA_FILE_1_FORMAT" : "FORMAT DU FICHIER DE DONNEES BINAIRE 1", "BINARY_DATA_FILE_2_FORMAT" : "FORMAT DU FICHIER DE DONNEES BINAIRE 2", "RAPIDLY_VARYING_TOPOGRAPHY" : "VARIATION RAPIDE DE LA BATHYMETRIE", @@ -129,24 +106,25 @@ dicoCataToFrTelemac = { "FIRST_TIME_IN_THE_FREE_SURFACE_FILE" : "PREMIER TEMPS DANS LE FICHIER DE SURFACE LIBRE", "TIME_STEP" : "PAS DE TEMPS", "NUMBER_OF_TIME_STEPS" : "NOMBRE DE PAS DE TEMPS", + "NESTING_WITHIN_TOMAWAC_OUTER_MODEL" : "CHAINAGE AVEC MODELE GLOBAL TOMAWAC", + "INSTANT_FOR_READING_TOMAWAC_SPECTRUM" : "INSTANT DE LECTURE DU SPECTRE TOMAWAC", + "TOMAWAC_OUTER_SPECTRAL_FILE" : "FICHIER DE SPECTRE GLOBAL TOMAWAC", + "TOMAWAC_OUTER_SPECTRAL_FILE_FORMAT" : "FORMAT DU FICHIER DE SPECTRE GLOBAL TOMAWAC", + "TOMAWAC_OUTER_RESULT_FILE" : "FICHIER DE RESULTATS GLOBAL TOMAWAC", + "TOMAWAC_OUTER_RESULT_FILE_FORMAT" : "FORMAT DU FICHIER DE RESULTATS GLOBAL TOMAWAC", + "TOMAWAC_LIQUID_BOUNDARY_FILE" : "FICHIER DE FRONTIERES LIQUIDES TOMAWAC", + "TOMAWAC_LIQUID_BOUNDARY_FILE_FORMAT" : "FORMAT DU FICHIER DE FRONTIERES LIQUIDES TOMAWAC", + "COORDINATES_OF_THE_REFERENCE_F_SPECTRUM" : "COORDONNEES POUR LE SPECTRE F DE REFERENCE", "DICTIONARY" : "DICTIONNAIRE", - "LIST_OF_FILES" : "LISTE DES FICHIERS", - "AD_NUMBER_OF_DERIVATIVES" : "AD NOMBRE DE DERIVEES", - "AD_NAMES_OF_DERIVATIVES" : "AD NOMS DES DERIVEES", - "DESCRIPTION_DES_LIBRARIES" : "DESCRIPTION DES LIBRAIRIES", - "DEFAULT_EXECUTABLE" : "EXECUTABLE PAR DEFAUT", - "DEFAULT_PARALLEL_EXECUTABLE" : "EXECUTABLE PARALLELE PAR DEFAUT", + "CONCATENATE_PARTEL_OUTPUT" : "CONCATENATION SORTIE PARTEL", } dicoCasFrToCata = { "FICHIER DE GEOMETRIE" : "GEOMETRY_FILE", - "BINAIRE DU FICHIER DES RESULTATS" : "RESULTS_FILE_BINARY", "TITRE" : "TITLE", "DEBUGGER" : "DEBUGGER", "LONGUEUR DU VECTEUR" : "VECTOR_LENGTH", - "LOI DE FROTTEMENT SUR LE FOND" : "LAW_OF_BOTTOM_FRICTION", "STOCKAGE DES MATRICES" : "MATRIX_STORAGE", "PRODUIT MATRICE-VECTEUR" : "MATRIX_VECTOR_PRODUCT", - "USER CRAY" : "USER_CRAY", "PERIODE DE SORTIE GRAPHIQUE" : "GRAPHIC_PRINTOUT_PERIOD", "PERIODE DE SORTIE LISTING" : "LISTING_PRINTOUT_PERIOD", "MAXIMUM D'ITERATIONS POUR LE SOLVEUR" : "MAXIMUM_NUMBER_OF_ITERATIONS_FOR_SOLVER", @@ -156,21 +134,16 @@ dicoCasFrToCata = { "PRECONDITIONNEMENT" : "PRECONDITIONING", "SOLVEUR" : "SOLVER", "OPTION DU SOLVEUR" : "SOLVER_OPTION", - "STANDARD DU FICHIER DE GEOMETRIE" : "GEOMETRY_FILE_STANDARD", - "STANDARD DU FICHIER DES RESULTATS" : "RESULTS_FILE_STANDARD", "PERIODE DE PIC" : "PEAK_PERIOD", "GAMMA" : "GAMMA", "HOULE ALEATOIRE MONODIRECTIONNELLE" : "MONODIRECTIONAL_RANDOM_WAVE", "HOULE ALEATOIRE MULTIDIRECTIONNELLE" : "MULTIDIRECTIONAL_RANDOM_WAVE", "BALAYAGE EN PERIODE" : "PERIOD_SCANNING", "PRECISION DU SOLVEUR" : "SOLVER_ACCURACY", - "VALEUR MINIMUM DE H" : "MINIMUM_VALUE_FOR_H", "HAUTEUR INITIALE" : "INITIAL_DEPTH", "PERIODE DE LA HOULE" : "WAVE_PERIOD", "ACCELERATION DE LA PESANTEUR" : "GRAVITY_ACCELERATION", "CONDITIONS INITIALES" : "INITIAL_CONDITIONS", - "COEFFICIENT DE RELAXATION" : "RELAXATION_COEFFICIENT", - "DISCRETISATION EN ESPACE" : "DISCRETIZATION_IN_SPACE", "NOMBRE DE DIRECTIONS DE DISCRETISATION" : "NUMBER_OF_DIRECTIONS", "DIRECTION DE PROPAGATION DE LA HOULE" : "DIRECTION_OF_WAVE_PROPAGATION", "ZERO" : "ZERO", @@ -188,22 +161,13 @@ dicoCasFrToCata = { "FICHIER DES PARAMETRES" : "STEERING_FILE", "FICHIER DES CONDITIONS AUX LIMITES" : "BOUNDARY_CONDITIONS_FILE", "FICHIER DES RESULTATS" : "RESULTS_FILE", - "NUMERO DE VERSION" : "RELEASE", - "MOT DE PASSE CRAY" : "PASSWORD", - "BIBLIOTHEQUES" : "LIBRARIES", - "TEMPS MACHINE CRAY" : "CPU_TIME", - "PLACE MEMOIRE CRAY" : "MEMORY_SPACE", "FICHIER DES FONDS" : "BOTTOM_TOPOGRAPHY_FILE", - "FICHIER DE DONNEES TOMAWAC 1" : "TOMAWAC_DATA_FILE_1", "FICHIER DE DONNEES BINAIRE 1" : "BINARY_DATA_FILE_1", "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", "FICHIER DES RESULTATS BINAIRE" : "BINARY_RESULTS_FILE", "FICHIER DES RESULTATS FORMATE" : "FORMATTED_RESULTS_FILE", - "PRIORITE" : "PRIORITY", - "CHAINE BIDON" : "BIDON_STRING", - "BINAIRE DU FICHIER DE GEOMETRIE" : "GEOMETRY_FILE_BINARY", "PRECISION SUR LES SOUS-ITERATIONS POUR LA DISSIPATION" : "SUB_ITERATIONS_ACCURACY_FOR_DISSIPATION", "PRECISION SUR LES SOUS-ITERATIONS POUR COURANT" : "SUB_ITERATIONS_ACCURACY_FOR_CURRENT", "PRECISION SUR LES SOUS-ITERATIONS POUR TETAP" : "SUB_ITERATIONS_ACCURACY_FOR_TETAP", @@ -219,10 +183,6 @@ dicoCasFrToCata = { "RELAXATION SUR LA DISSIPATION" : "DISSIPATION_RELAXATION", "MAXIMUM DE SOUS-ITERATIONS POUR TETAP" : "MAXIMUM_OF_SUB_ITERATIONS_FOR_TETAP", "RELAXATION SUR TETAP" : "RELAXATION_ON_TETAP", - "CHAINAGE TOMAWAC 1" : "CHAINING_TOMAWAC_1", - "NOMBRE DE DIRECTION DANS LE SPECTRE TOMAWAC" : "NUMBER_OF_DIRECTIONS_IN_TOMAWAC_SPECTRUM", - "NOMBRE DE FREQUENCES DANS LE SPECTRE TOMAWAC" : "NUMBER_OF_FREQUENCIES_IN_TOMAWAC_SPECTRUM", - "INSTANT DE LECTURE DU SPECTRE TOMAWAC" : "INSTANT_FOR_READING_TOMAWAC_SPECTRUM", "ALPHA" : "ALPHA", "GAMMAS" : "GAMMAS", "GDALLY" : "GDALLY", @@ -242,7 +202,6 @@ dicoCasFrToCata = { "FACTEUR DE FROTTEMENT" : "FRICTION_FACTOR", "COEFFICIENT DE FROTTEMENT" : "FRICTION_COEFFICIENT", "COEFFICIENT DE RIDES" : "RIPPLES_COEFFICIENT", - "NUMERO DE COMPTE" : "ACCOUNT_NUMBER", "PERIODE MINIMUM DU SPECTRE" : "MINIMUM_SPECTRAL_PERIOD", "PERIODE MAXIMUM DU SPECTRE" : "MAXIMUM_SPECTRAL_PERIOD", "DATE DE L'ORIGINE DES TEMPS" : "ORIGINAL_DATE_OF_TIME", @@ -255,7 +214,6 @@ dicoCasFrToCata = { "FORMAT DU FICHIER DE GEOMETRIE" : "GEOMETRY_FILE_FORMAT", "FORMAT DU FICHIER DE RESULTATS" : "RESULTS_FILE_FORMAT", "FORMAT DU FICHIER DE REFERENCE" : "REFERENCE_FILE_FORMAT", - "FORMAT DU FICHIER DE DONNEES TOMAWAC 1" : "TOMAWAC_DATA_FILE_1_FORMAT", "FORMAT DU FICHIER DE DONNEES BINAIRE 1" : "BINARY_DATA_FILE_1_FORMAT", "FORMAT DU FICHIER DE DONNEES BINAIRE 2" : "BINARY_DATA_FILE_2_FORMAT", "VARIATION RAPIDE DE LA BATHYMETRIE" : "RAPIDLY_VARYING_TOPOGRAPHY", @@ -268,11 +226,15 @@ dicoCasFrToCata = { "PREMIER TEMPS DANS LE FICHIER DE SURFACE LIBRE" : "FIRST_TIME_IN_THE_FREE_SURFACE_FILE", "PAS DE TEMPS" : "TIME_STEP", "NOMBRE DE PAS DE TEMPS" : "NUMBER_OF_TIME_STEPS", + "CHAINAGE AVEC MODELE GLOBAL TOMAWAC" : "NESTING_WITHIN_TOMAWAC_OUTER_MODEL", + "INSTANT DE LECTURE DU SPECTRE TOMAWAC" : "INSTANT_FOR_READING_TOMAWAC_SPECTRUM", + "FICHIER DE SPECTRE GLOBAL TOMAWAC" : "TOMAWAC_OUTER_SPECTRAL_FILE", + "FORMAT DU FICHIER DE SPECTRE GLOBAL TOMAWAC" : "TOMAWAC_OUTER_SPECTRAL_FILE_FORMAT", + "FICHIER DE RESULTATS GLOBAL TOMAWAC" : "TOMAWAC_OUTER_RESULT_FILE", + "FORMAT DU FICHIER DE RESULTATS GLOBAL TOMAWAC" : "TOMAWAC_OUTER_RESULT_FILE_FORMAT", + "FICHIER DE FRONTIERES LIQUIDES TOMAWAC" : "TOMAWAC_LIQUID_BOUNDARY_FILE", + "FORMAT DU FICHIER DE FRONTIERES LIQUIDES TOMAWAC" : "TOMAWAC_LIQUID_BOUNDARY_FILE_FORMAT", + "COORDONNEES POUR LE SPECTRE F DE REFERENCE" : "COORDINATES_OF_THE_REFERENCE_F_SPECTRUM", "DICTIONNAIRE" : "DICTIONARY", - "LISTE DES FICHIERS" : "LIST_OF_FILES", - "AD NOMBRE DE DERIVEES" : "AD_NUMBER_OF_DERIVATIVES", - "AD NOMS DES DERIVEES" : "AD_NAMES_OF_DERIVATIVES", - "DESCRIPTION DES LIBRAIRIES" : "DESCRIPTION_DES_LIBRARIES", - "EXECUTABLE PAR DEFAUT" : "DEFAULT_EXECUTABLE", - "EXECUTABLE PARALLELE PAR DEFAUT" : "DEFAULT_PARALLEL_EXECUTABLE", + "CONCATENATION SORTIE PARTEL" : "CONCATENATE_PARTEL_OUTPUT", } diff --git a/Telemac/artemis_enum_auto.py b/Telemac/artemis_enum_auto.py index e6bdec22..3fcb3edc 100644 --- a/Telemac/artemis_enum_auto.py +++ b/Telemac/artemis_enum_auto.py @@ -1,6 +1,11 @@ #/usr/bin/env python # -*- coding: latin-1 -*- TelemacdicoEn = { +'MATRIX_STORAGE' : { + 1:"Classical EBE", + 2:"Assembled EBE", + 3:"Edge-based storage", + }, 'PRECONDITIONING' : { 0:"no preconditioning", 2:"diagonal preconditioning", @@ -17,21 +22,7 @@ TelemacdicoEn = { 6:"CGSTAB", 7:"GMRES", 8:"direct", - }, -'GEOMETRY_FILE_STANDARD' : { - 1:"LEONARD", - 2:"RUBENS", - 3:"SELAFIN", - }, -'RESULTS_FILE_STANDARD' : { - 1:"LEONARD", - 2:"RUBENS", - 3:"SELAFIN", - }, -'GAMMA' : { - 1.0:"Pierson-Moskowitz", - 3.3:"JONSWAP moyen", - 0.0:"any spectre", + 9:"parallel direct (MUMPS)", }, 'VARIABLES_FOR_GRAPHIC_PRINTOUTS' : { 'HS':"wave height", @@ -94,23 +85,33 @@ TelemacdicoEn = { 2:"DALLY", }, 'HYDRAULIC_REGIME_TYPE' : { - 1:"regime laminaire", - 2:"regime turbulent lisse", - 3:"regime turbulent rugueux", - 4:"regime transitoire", + 1:"laminar regime", + 2:"smooth-turbulent regime", + 3:"rough-turbulent regime", + 4:"transient regime", }, 'BOTTOM_FRICTION_LAW' : { - 1:"Formulation de Kostense integrant le calcul de Ue (1986)", - 2:"Formulation de Putnam \& Johnson (1949)", + 1:"Kostense formulation integrating Ue calculation (1986)", + 2:"Putnam \& Johnson formulation (1949)", }, 'RAPIDLY_VARYING_TOPOGRAPHY' : { - 0:"BERKHOFF SIMPLE", - 1:"PRISE EN COMPTE TERME DE PENTE", - 2:"PRISE EN COMPTE TERME DE COURBURE", - 3:"PRISE EN COMPTE DES TERMES DE PENTE ET COURBURE", + 0:"mild-slope equation", + 1:"gradient second order term", + 2:"curvature second order term", + 3:"gradient + curvature second order terms", + }, +'NESTING_WITHIN_TOMAWAC_OUTER_MODEL' : { + 0:"No nesting", + 1:"Uses a TOMAWAC spectrum (1 point) as input to ARTEMIS", + 2:"Uses several TOMAWAC spectra located along ARTEMIS boundary", }, } TelemacdicoFr = { +'MATRIX_STORAGE' : { + 1:"EBE classique", + 2:"EBE assemble", + 3:"Stockage par segments", + }, 'PRECONDITIONING' : { 0:"pas de preconditionnement", 2:"preconditionnement diagonal", @@ -127,21 +128,7 @@ TelemacdicoFr = { 6:"CGSTAB", 7:"GMRES", 8:"direct", - }, -'GEOMETRY_FILE_STANDARD' : { - 1:"LEONARD", - 2:"RUBENS", - 3:"SELAFIN", - }, -'RESULTS_FILE_STANDARD' : { - 1:"LEONARD", - 2:"RUBENS", - 3:"SELAFIN", - }, -'GAMMA' : { - 1.0:" spectre de Pierson-Moskowitz", - 3.3:" spectre de JONSWAP moyen", - 0.0:" spectre au choix", + 9:"direct parallele (MUMPS)", }, 'VARIABLES_FOR_GRAPHIC_PRINTOUTS' : { 'HS':"hauteur de la houle", @@ -219,18 +206,20 @@ TelemacdicoFr = { 2:"PRISE EN COMPTE TERME DE COURBURE", 3:"PRISE EN COMPTE DES TERMES DE PENTE ET COURBURE", }, +'NESTING_WITHIN_TOMAWAC_OUTER_MODEL' : { + 0:"Pas de chainage", + 1:"Utilise un spectre TOMAWAC (1 point) en entree du calcul artemis", + 2:"Utilise plusieurs spectres TOMAWAC le long de la frontiere", + }, } DicoCasFrToCata = { "FICHIER DE GEOMETRIE":"GEOMETRY_FILE", - "BINAIRE DU FICHIER DES RESULTATS":"RESULTS_FILE_BINARY", "TITRE":"TITLE", "DEBUGGER":"DEBUGGER", "LONGUEUR DU VECTEUR":"VECTOR_LENGTH", - "LOI DE FROTTEMENT SUR LE FOND":"LAW_OF_BOTTOM_FRICTION", "STOCKAGE DES MATRICES":"MATRIX_STORAGE", "PRODUIT MATRICE-VECTEUR":"MATRIX_VECTOR_PRODUCT", - "USER CRAY":"USER_CRAY", "PERIODE DE SORTIE GRAPHIQUE":"GRAPHIC_PRINTOUT_PERIOD", "PERIODE DE SORTIE LISTING":"LISTING_PRINTOUT_PERIOD", "MAXIMUM D'ITERATIONS POUR LE SOLVEUR":"MAXIMUM_NUMBER_OF_ITERATIONS_FOR_SOLVER", @@ -240,21 +229,16 @@ DicoCasFrToCata = { "PRECONDITIONNEMENT":"PRECONDITIONING", "SOLVEUR":"SOLVER", "OPTION DU SOLVEUR":"SOLVER_OPTION", - "STANDARD DU FICHIER DE GEOMETRIE":"GEOMETRY_FILE_STANDARD", - "STANDARD DU FICHIER DES RESULTATS":"RESULTS_FILE_STANDARD", "PERIODE DE PIC":"PEAK_PERIOD", "GAMMA":"GAMMA", "HOULE ALEATOIRE MONODIRECTIONNELLE":"MONODIRECTIONAL_RANDOM_WAVE", "HOULE ALEATOIRE MULTIDIRECTIONNELLE":"MULTIDIRECTIONAL_RANDOM_WAVE", "BALAYAGE EN PERIODE":"PERIOD_SCANNING", "PRECISION DU SOLVEUR":"SOLVER_ACCURACY", - "VALEUR MINIMUM DE H":"MINIMUM_VALUE_FOR_H", "HAUTEUR INITIALE":"INITIAL_DEPTH", "PERIODE DE LA HOULE":"WAVE_PERIOD", "ACCELERATION DE LA PESANTEUR":"GRAVITY_ACCELERATION", "CONDITIONS INITIALES":"INITIAL_CONDITIONS", - "COEFFICIENT DE RELAXATION":"RELAXATION_COEFFICIENT", - "DISCRETISATION EN ESPACE":"DISCRETIZATION_IN_SPACE", "NOMBRE DE DIRECTIONS DE DISCRETISATION":"NUMBER_OF_DIRECTIONS", "DIRECTION DE PROPAGATION DE LA HOULE":"DIRECTION_OF_WAVE_PROPAGATION", "ZERO":"ZERO", @@ -272,22 +256,13 @@ DicoCasFrToCata = { "FICHIER DES PARAMETRES":"STEERING_FILE", "FICHIER DES CONDITIONS AUX LIMITES":"BOUNDARY_CONDITIONS_FILE", "FICHIER DES RESULTATS":"RESULTS_FILE", - "NUMERO DE VERSION":"RELEASE", - "MOT DE PASSE CRAY":"PASSWORD", - "BIBLIOTHEQUES":"LIBRARIES", - "TEMPS MACHINE CRAY":"CPU_TIME", - "PLACE MEMOIRE CRAY":"MEMORY_SPACE", "FICHIER DES FONDS":"BOTTOM_TOPOGRAPHY_FILE", - "FICHIER DE DONNEES TOMAWAC 1":"TOMAWAC_DATA_FILE_1", "FICHIER DE DONNEES BINAIRE 1":"BINARY_DATA_FILE_1", "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", "FICHIER DES RESULTATS BINAIRE":"BINARY_RESULTS_FILE", "FICHIER DES RESULTATS FORMATE":"FORMATTED_RESULTS_FILE", - "PRIORITE":"PRIORITY", - "CHAINE BIDON":"BIDON_STRING", - "BINAIRE DU FICHIER DE GEOMETRIE":"GEOMETRY_FILE_BINARY", "PRECISION SUR LES SOUS-ITERATIONS POUR LA DISSIPATION":"SUB_ITERATIONS_ACCURACY_FOR_DISSIPATION", "PRECISION SUR LES SOUS-ITERATIONS POUR COURANT":"SUB_ITERATIONS_ACCURACY_FOR_CURRENT", "PRECISION SUR LES SOUS-ITERATIONS POUR TETAP":"SUB_ITERATIONS_ACCURACY_FOR_TETAP", @@ -303,10 +278,6 @@ DicoCasFrToCata = { "RELAXATION SUR LA DISSIPATION":"DISSIPATION_RELAXATION", "MAXIMUM DE SOUS-ITERATIONS POUR TETAP":"MAXIMUM_OF_SUB_ITERATIONS_FOR_TETAP", "RELAXATION SUR TETAP":"RELAXATION_ON_TETAP", - "CHAINAGE TOMAWAC 1":"CHAINING_TOMAWAC_1", - "NOMBRE DE DIRECTION DANS LE SPECTRE TOMAWAC":"NUMBER_OF_DIRECTIONS_IN_TOMAWAC_SPECTRUM", - "NOMBRE DE FREQUENCES DANS LE SPECTRE TOMAWAC":"NUMBER_OF_FREQUENCIES_IN_TOMAWAC_SPECTRUM", - "INSTANT DE LECTURE DU SPECTRE TOMAWAC":"INSTANT_FOR_READING_TOMAWAC_SPECTRUM", "ALPHA":"ALPHA", "GAMMAS":"GAMMAS", "GDALLY":"GDALLY", @@ -326,7 +297,6 @@ DicoCasFrToCata = { "FACTEUR DE FROTTEMENT":"FRICTION_FACTOR", "COEFFICIENT DE FROTTEMENT":"FRICTION_COEFFICIENT", "COEFFICIENT DE RIDES":"RIPPLES_COEFFICIENT", - "NUMERO DE COMPTE":"ACCOUNT_NUMBER", "PERIODE MINIMUM DU SPECTRE":"MINIMUM_SPECTRAL_PERIOD", "PERIODE MAXIMUM DU SPECTRE":"MAXIMUM_SPECTRAL_PERIOD", "DATE DE L'ORIGINE DES TEMPS":"ORIGINAL_DATE_OF_TIME", @@ -339,7 +309,6 @@ DicoCasFrToCata = { "FORMAT DU FICHIER DE GEOMETRIE":"GEOMETRY_FILE_FORMAT", "FORMAT DU FICHIER DE RESULTATS":"RESULTS_FILE_FORMAT", "FORMAT DU FICHIER DE REFERENCE":"REFERENCE_FILE_FORMAT", - "FORMAT DU FICHIER DE DONNEES TOMAWAC 1":"TOMAWAC_DATA_FILE_1_FORMAT", "FORMAT DU FICHIER DE DONNEES BINAIRE 1":"BINARY_DATA_FILE_1_FORMAT", "FORMAT DU FICHIER DE DONNEES BINAIRE 2":"BINARY_DATA_FILE_2_FORMAT", "VARIATION RAPIDE DE LA BATHYMETRIE":"RAPIDLY_VARYING_TOPOGRAPHY", @@ -352,25 +321,26 @@ DicoCasFrToCata = { "PREMIER TEMPS DANS LE FICHIER DE SURFACE LIBRE":"FIRST_TIME_IN_THE_FREE_SURFACE_FILE", "PAS DE TEMPS":"TIME_STEP", "NOMBRE DE PAS DE TEMPS":"NUMBER_OF_TIME_STEPS", + "CHAINAGE AVEC MODELE GLOBAL TOMAWAC":"NESTING_WITHIN_TOMAWAC_OUTER_MODEL", + "INSTANT DE LECTURE DU SPECTRE TOMAWAC":"INSTANT_FOR_READING_TOMAWAC_SPECTRUM", + "FICHIER DE SPECTRE GLOBAL TOMAWAC":"TOMAWAC_OUTER_SPECTRAL_FILE", + "FORMAT DU FICHIER DE SPECTRE GLOBAL TOMAWAC":"TOMAWAC_OUTER_SPECTRAL_FILE_FORMAT", + "FICHIER DE RESULTATS GLOBAL TOMAWAC":"TOMAWAC_OUTER_RESULT_FILE", + "FORMAT DU FICHIER DE RESULTATS GLOBAL TOMAWAC":"TOMAWAC_OUTER_RESULT_FILE_FORMAT", + "FICHIER DE FRONTIERES LIQUIDES TOMAWAC":"TOMAWAC_LIQUID_BOUNDARY_FILE", + "FORMAT DU FICHIER DE FRONTIERES LIQUIDES TOMAWAC":"TOMAWAC_LIQUID_BOUNDARY_FILE_FORMAT", + "COORDONNEES POUR LE SPECTRE F DE REFERENCE":"COORDINATES_OF_THE_REFERENCE_F_SPECTRUM", "DICTIONNAIRE":"DICTIONARY", - "LISTE DES FICHIERS":"LIST_OF_FILES", - "AD NOMBRE DE DERIVEES":"AD_NUMBER_OF_DERIVATIVES", - "AD NOMS DES DERIVEES":"AD_NAMES_OF_DERIVATIVES", - "DESCRIPTION DES LIBRAIRIES":"DESCRIPTION_DES_LIBRARIES", - "EXECUTABLE PAR DEFAUT":"DEFAULT_EXECUTABLE", - "EXECUTABLE PARALLELE PAR DEFAUT":"DEFAULT_PARALLEL_EXECUTABLE", + "CONCATENATION SORTIE PARTEL":"CONCATENATE_PARTEL_OUTPUT", } DicoCasEnToCata = { 'GEOMETRY FILE':'GEOMETRY_FILE', - 'RESULTS FILE BINARY':'RESULTS_FILE_BINARY', 'TITLE':'TITLE', 'DEBUGGER':'DEBUGGER', 'VECTOR LENGTH':'VECTOR_LENGTH', - 'LAW OF BOTTOM FRICTION':'LAW_OF_BOTTOM_FRICTION', 'MATRIX STORAGE':'MATRIX_STORAGE', 'MATRIX-VECTOR PRODUCT':'MATRIX_VECTOR_PRODUCT', - 'USER CRAY':'USER_CRAY', 'GRAPHIC PRINTOUT PERIOD':'GRAPHIC_PRINTOUT_PERIOD', 'LISTING PRINTOUT PERIOD':'LISTING_PRINTOUT_PERIOD', 'MAXIMUM NUMBER OF ITERATIONS FOR SOLVER':'MAXIMUM_NUMBER_OF_ITERATIONS_FOR_SOLVER', @@ -380,21 +350,16 @@ DicoCasEnToCata = { 'PRECONDITIONING':'PRECONDITIONING', 'SOLVER':'SOLVER', 'SOLVER OPTION':'SOLVER_OPTION', - 'GEOMETRY FILE STANDARD':'GEOMETRY_FILE_STANDARD', - 'RESULTS FILE STANDARD':'RESULTS_FILE_STANDARD', 'PEAK PERIOD':'PEAK_PERIOD', 'GAMMA':'GAMMA', 'MONODIRECTIONAL RANDOM WAVE':'MONODIRECTIONAL_RANDOM_WAVE', 'MULTIDIRECTIONAL RANDOM WAVE':'MULTIDIRECTIONAL_RANDOM_WAVE', 'PERIOD SCANNING':'PERIOD_SCANNING', 'SOLVER ACCURACY':'SOLVER_ACCURACY', - 'MINIMUM VALUE FOR H':'MINIMUM_VALUE_FOR_H', 'INITIAL DEPTH':'INITIAL_DEPTH', 'WAVE PERIOD':'WAVE_PERIOD', 'GRAVITY ACCELERATION':'GRAVITY_ACCELERATION', 'INITIAL CONDITIONS':'INITIAL_CONDITIONS', - 'RELAXATION COEFFICIENT':'RELAXATION_COEFFICIENT', - 'DISCRETIZATION IN SPACE':'DISCRETIZATION_IN_SPACE', 'NUMBER OF DIRECTIONS':'NUMBER_OF_DIRECTIONS', 'DIRECTION OF WAVE PROPAGATION':'DIRECTION_OF_WAVE_PROPAGATION', 'ZERO':'ZERO', @@ -412,22 +377,13 @@ DicoCasEnToCata = { 'STEERING FILE':'STEERING_FILE', 'BOUNDARY CONDITIONS FILE':'BOUNDARY_CONDITIONS_FILE', 'RESULTS FILE':'RESULTS_FILE', - 'RELEASE':'RELEASE', - 'PASSWORD':'PASSWORD', - 'LIBRARIES':'LIBRARIES', - 'CPU TIME':'CPU_TIME', - 'MEMORY SPACE':'MEMORY_SPACE', 'BOTTOM TOPOGRAPHY FILE':'BOTTOM_TOPOGRAPHY_FILE', - 'TOMAWAC DATA FILE 1':'TOMAWAC_DATA_FILE_1', 'BINARY DATA FILE 1':'BINARY_DATA_FILE_1', 'BINARY DATA FILE 2':'BINARY_DATA_FILE_2', 'FORMATTED DATA FILE 1':'FORMATTED_DATA_FILE_1', 'FORMATTED DATA FILE 2':'FORMATTED_DATA_FILE_2', 'BINARY RESULTS FILE':'BINARY_RESULTS_FILE', 'FORMATTED RESULTS FILE':'FORMATTED_RESULTS_FILE', - 'PRIORITY':'PRIORITY', - 'BIDON STRING':'BIDON_STRING', - 'GEOMETRY FILE BINARY':'GEOMETRY_FILE_BINARY', 'SUB-ITERATIONS ACCURACY FOR DISSIPATION':'SUB_ITERATIONS_ACCURACY_FOR_DISSIPATION', 'SUB-ITERATIONS ACCURACY FOR CURRENT':'SUB_ITERATIONS_ACCURACY_FOR_CURRENT', 'SUB-ITERATIONS ACCURACY FOR TETAP':'SUB_ITERATIONS_ACCURACY_FOR_TETAP', @@ -443,10 +399,6 @@ DicoCasEnToCata = { 'DISSIPATION RELAXATION':'DISSIPATION_RELAXATION', 'MAXIMUM OF SUB-ITERATIONS FOR TETAP':'MAXIMUM_OF_SUB_ITERATIONS_FOR_TETAP', 'RELAXATION ON TETAP':'RELAXATION_ON_TETAP', - 'CHAINING TOMAWAC 1':'CHAINING_TOMAWAC_1', - 'NUMBER OF DIRECTIONS IN TOMAWAC SPECTRUM':'NUMBER_OF_DIRECTIONS_IN_TOMAWAC_SPECTRUM', - 'NUMBER OF FREQUENCIES IN TOMAWAC SPECTRUM':'NUMBER_OF_FREQUENCIES_IN_TOMAWAC_SPECTRUM', - 'INSTANT FOR READING TOMAWAC SPECTRUM':'INSTANT_FOR_READING_TOMAWAC_SPECTRUM', 'ALPHA':'ALPHA', 'GAMMAS':'GAMMAS', 'GDALLY':'GDALLY', @@ -466,7 +418,6 @@ DicoCasEnToCata = { 'FRICTION FACTOR':'FRICTION_FACTOR', 'FRICTION COEFFICIENT':'FRICTION_COEFFICIENT', 'RIPPLES COEFFICIENT':'RIPPLES_COEFFICIENT', - 'ACCOUNT NUMBER':'ACCOUNT_NUMBER', 'MINIMUM SPECTRAL PERIOD':'MINIMUM_SPECTRAL_PERIOD', 'MAXIMUM SPECTRAL PERIOD':'MAXIMUM_SPECTRAL_PERIOD', 'ORIGINAL DATE OF TIME':'ORIGINAL_DATE_OF_TIME', @@ -479,7 +430,6 @@ DicoCasEnToCata = { 'GEOMETRY FILE FORMAT':'GEOMETRY_FILE_FORMAT', 'RESULTS FILE FORMAT':'RESULTS_FILE_FORMAT', 'REFERENCE FILE FORMAT':'REFERENCE_FILE_FORMAT', - 'TOMAWAC DATA FILE 1 FORMAT':'TOMAWAC_DATA_FILE_1_FORMAT', 'BINARY DATA FILE 1 FORMAT':'BINARY_DATA_FILE_1_FORMAT', 'BINARY DATA FILE 2 FORMAT':'BINARY_DATA_FILE_2_FORMAT', 'RAPIDLY VARYING TOPOGRAPHY':'RAPIDLY_VARYING_TOPOGRAPHY', @@ -492,21 +442,19 @@ DicoCasEnToCata = { 'FIRST TIME IN THE FREE SURFACE FILE':'FIRST_TIME_IN_THE_FREE_SURFACE_FILE', 'TIME STEP':'TIME_STEP', 'NUMBER OF TIME STEPS':'NUMBER_OF_TIME_STEPS', + 'NESTING WITHIN TOMAWAC OUTER MODEL':'NESTING_WITHIN_TOMAWAC_OUTER_MODEL', + 'INSTANT FOR READING TOMAWAC SPECTRUM':'INSTANT_FOR_READING_TOMAWAC_SPECTRUM', + 'TOMAWAC OUTER SPECTRAL FILE':'TOMAWAC_OUTER_SPECTRAL_FILE', + 'TOMAWAC OUTER SPECTRAL FILE FORMAT':'TOMAWAC_OUTER_SPECTRAL_FILE_FORMAT', + 'TOMAWAC OUTER RESULT FILE':'TOMAWAC_OUTER_RESULT_FILE', + 'TOMAWAC OUTER RESULT FILE FORMAT':'TOMAWAC_OUTER_RESULT_FILE_FORMAT', + 'TOMAWAC LIQUID BOUNDARY FILE':'TOMAWAC_LIQUID_BOUNDARY_FILE', + 'TOMAWAC LIQUID BOUNDARY FILE FORMAT':'TOMAWAC_LIQUID_BOUNDARY_FILE_FORMAT', + 'COORDINATES OF THE REFERENCE F SPECTRUM':'COORDINATES_OF_THE_REFERENCE_F_SPECTRUM', 'DICTIONARY':'DICTIONARY', - 'LIST OF FILES':'LIST_OF_FILES', - 'AD NUMBER OF DERIVATIVES':'AD_NUMBER_OF_DERIVATIVES', - 'AD NAMES OF DERIVATIVES':'AD_NAMES_OF_DERIVATIVES', - 'DESCRIPTION DES LIBRARIES':'DESCRIPTION_DES_LIBRARIES', - 'DEFAULT EXECUTABLE':'DEFAULT_EXECUTABLE', - 'DEFAULT PARALLEL EXECUTABLE':'DEFAULT_PARALLEL_EXECUTABLE', + 'CONCATENATE PARTEL OUTPUT':'CONCATENATE_PARTEL_OUTPUT', } DicoEnumCasFrToEnumCasEn = { -'RESULTS_FILE_BINARY':{ - "IBM":"IBM", - "I3E":"I3E", - "STD":"STD", -}, - 'INITIAL_CONDITIONS':{ "COTE NULLE":"ZERO ELEVATION", "COTE CONSTANTE":"CONSTANT ELEVATION", @@ -515,12 +463,6 @@ DicoEnumCasFrToEnumCasEn = { "PARTICULIERES":"SPECIAL", }, -'GEOMETRY_FILE_BINARY':{ - "IBM":"IBM", - "I3E":"I3E", - "STD":"STD", -}, - 'PARTITIONING_TOOL':{ "METIS":"METIS", "SCOTCH":"SCOTCH", @@ -546,12 +488,6 @@ DicoEnumCasFrToEnumCasEn = { "MED":"MED", }, -'TOMAWAC_DATA_FILE_1_FORMAT':{ - "SERAFIN":"SERAFIN", - "SERAFIND":"SERAFIND", - "MED":"MED", -}, - 'BINARY_DATA_FILE_1_FORMAT':{ "SERAFIN":"SERAFIN", "SERAFIND":"SERAFIND", @@ -564,12 +500,4 @@ DicoEnumCasFrToEnumCasEn = { "MED":"MED", }, -'AMPLITUDE_AND_PHASE_FILE':{ - "resuamp":"", -}, - -'FREE_SURFACE_FILE':{ - "resufse":"", -}, - } diff --git a/Telemac/artemis_labelCataToIhm_en.qm b/Telemac/artemis_labelCataToIhm_en.qm index f8a286b6bc19177834315791f8b090a67460bdef..3297e2f41d652752b380361aad4a43f07906bf1e 100644 GIT binary patch delta 3051 zcmb7E3vd(H6}>C1q_wpA*p@5_2_wlr`HN*@AOwSDX@wVL$w)E|pF!Bz6oaviKR^-& z1u(QwN>iR48WI?sID|9|UqumL!lN3F(_uO;OJ$Ji0sevVtiT!nkQ#W4e{=jNJI$Woj|W&4IrmLvRMa^=LE^s zW&p=m!2bLofFT2PFTDmZ`p=MJ?+4J`g3PM}0J-a-a3{ta2Vj!g1u!ZHJlf+R{HE0= z0wkUWUvV!$$}b?G`V3&?3-EO0YY8TJ6v0^ok(ySt`~6)QwIl15oZzg-o4uZX>&!AD~L<25sh!$3m~$K zCIr6)$P|f6&!5G_7ewXjFi*xVQDp1cdH~gs=(Oiw0L+kBqg5iqBjS`k1dz$ZdfCr# z{X%R@oeQ9NPu#liGJyJmc-e*mRN|-NjmzFaqGjT)E3X4+yT!Y2cLPW+iSHQiAkjfO zk--8SyXn-SbO75&v~>^0saMf!J}$=hha>ckeZL3Lhw&JnMoa;GF+Q)z60Skj-- z2~dzPxkjo0%V`gWDp5-NH3qS!xl72ul9_?ig@XbAuSTTF4M!8*t!p8*$34C3CCpf-sb@F zPs)~_YC^>{4D?{7Y!6eiSBEV*%}gH{10d~VX6?dOMp!FT@5kP!jAPcUz`(pSOz&51 z2t0#%V^KQ-Zf1`4VL*BcbLB0RRDPDZ_9aRUdCU+;0f<-NDniqaNywR#j1uQ3co(Om zISmONo3>(wFD5*5)P`|636Vi0o|c&K=30y|_)Ws4+I0|tkv92LuOahnmwXo6jq6GI z>_ZqR>ydBz1Wh&KlzdA+y4)d=Ul0H#n-wM(0?^+m+)b#|h+4(8RlV5zLPhIjd@pq= z+Sc7d_kX15*x|;ORw|xv#?~sc6y)0wDl=Je_{B}wl5>i$UpNuL@!6@keF!VFx3jce zg#=c!@)M{8rC?R_{(|pkvYJUKp}K_4T1;b0-e(JLqbF=@Sy8kRH_9oj> zT8G5evn|dpROSzC=Yh{L@nu}UK$AP!F5_ifx3hQbI*hX^eRCohX!R?re~STmQsvyN zGXSOo%DJPzK@)|Q&n`yB@GIroyh$kO%gR?e@V@1i^3y@Am?=`J7WlBoohps}9(rR? zWjv0=Gr}s{CQM{_N0o0w=@Ts~cT+o>_nd0$(@|7rt?Kl-7WCLQ)g@P78Z!K)T3)RB5}_-n&Rh;#SW#s?da=sJDEKfZD&Q_ix2G>szR6kve)zx}Ks^ z$$(5po-0nG)MR(DmCA{o=P+z$4K%?|pb_dBtOca_=$us{e}yx|yTTzZ1Q(y@m$Ge{wkl_8JHP%`F(Dld}z^=x7kn02vsHdld86=2wc#N4Clv^ z*5gh{UXSToaMv2!H{z)oI&j}2{Kv742yXI_ItviaxNU;JY0bDxwx>0JeOx8 zFRP2H4T#!-n61dM2{9}&>;=#qXT`dz0vHtv^FEJXhH^8db@dBsIvU$4v2X%+ti+ml z0PS{$NR26(e4s9l<|bxPdj~yCkMa6l0N!7=hsD&GDKESy`ynmSZ_M9flLfBl(50jv& zsPcyRhp!2Y)VWI{Zt$TJ@fy)p%aM&Rgo1M|5CT7Pc0x5iE<6uUgP@%Sxi_Q3>mTT* z&Bp~pyl+alnh%xpzOXRt)lQc%8(bh<;dgW1hkd!lOqbdpOW{A#$II3}m?liFml(;l z{1ozTt}9xQ-$F&%(F)4UBJ)QlS9*U;b;MZMOa5LsNo|43m>Gly)^AygU5;Cy+Q;L$2rlz}johFr@uB)=bhTOU*8N1nfa$ z2%o4nB-se*vI3Li*_B+Dl~f2 y!_mP?oSJ~sEATM6|4V#Cma4ZsCLZ%gZ%)=z;&hln&X38Zl8EYw^r+0Kr2Y+Jvgcg@ delta 5314 zcma)933O9s7QWf{q+6P#Eu}3jgi=bu78DWsn!G|F8!ss>iw!Mp0V!?mBFHe-BXHa| zeh^m_7j%v&U~%NAgCgp2To@fi9hFfARK#)DK{$x>{Vyd=D>8F(l9#;q|M!0PyWfBB z&6~?NtX1?*+1=!P^_#mlzLB5v+`=t?Iao!cxt%n}+KHx2AoKORh=v~``yCGuP41yg z_im!>2{iK9n?w`WP}zN0pMMukwRwn&zNhMpy+jHt&1y^~vactp0sD$xrs&H(L}Om0 zx%h$p{nL^t36j6m%v1Inc zL}R0hht@A5DtT0~&3zw{X$P*K;M$|u{x$AfXDN2QSqZ~WD_%H#91d404j5+>ogY>j z8^0&Y%2uA=`Z$sD7Ukr~PekMXpzN*u-~bTTC}*q#kkWlhHV%lhUsrBA&`gxBQa;N* zCmJ?Sd3f1jII^fxGAu;7qAGJIBG4&R4&60G`X*IDZatA@vTCOHJ))f9s+r%xZrT=A z=k`xw=KYYtQ6Q0v7w7d;Jy?@fIX}to7@71i$x*w@{Q?p^F znka9-X4iEhHk%U$y!3kRs)2ZOhMKX5=jG zHG4T=op$5NS}@e2z3;XnqVZ|kN4D(4)vJB~x|@hH>a<5RKf=G`0qv1xe?=slwV!?f zWEIP_$F@vD8ou-=8?Jsu2+!5;kutc-j5XQ z($f|&Vtr8W*|ZwKuh7ri3e8wv(>Ja;LR5aEzByz@YA@4Y{Rq~%hU>34oS-8w{1ZpCl?v zHwepA5LvFlGx{(b-eI`>xdMpUVc3?6h_m(@jx??#D*W6ScrBMGs1 zfF~?6*>}KT?k}cn4}fZ>nkI(bQ>wX{_^@^!y zvlsrpFA#pLB`2!0-+jxY#^unHo90(Oi0b0hoEpT>ULlH^E|-8Z<;B{%EeUh@Xmr?}o{{`*=0$@7>`xa|0sD(b9nrAG*1#mF>2}|uWus2C%sUHPRjM!tTANMs1RIz2%vM5q{ zujQ(XE07w$WlhOcFfiHDdv_1tILGqgkD$tsV>R2bzG=m**3=>Tnoq9JmnivAH-gp@1w&I-9a($RE3x5L z+t#u*(16;uV-pM)TamXZ^Hn&PIV8{`yxOUU+NhiI@YzGlsgatgQ!k%fd{_mKCsY%R z#)370DpAtmmcFv7xrG%wO@4uzdV&$RqQ3xhr?6ILrZ|2uN=Hu@0lU^Sf1WF zZO95(k5Y&N2%r{k4}OnN_(3b@MHhDYR0^Yzp>GQot=2M^4)l!+iLb1t6@PB z{C?4&Y(7)s0J{K)C%8k7DxP$%BreTX+;5cK@fFE}ba};yNAiU^xe#O|=J!=eg5=|p z>>Fk)QiMtYeQCe-X4&>Cz~<79`{2pr^5Ow4N+QDH^}(_j_05wrhrGoiVZkF)Ta|K8 zt`&B2H#)8hvL3h1ZoccSUU{ly@)3l_VR6)@Cd&Gb;j z7nK$8bh^+tCF6Z1WH23IxCrFakcdY&T?~p6%g@PRiye*bMmf#=$Ru$#T?_@ps5CcL z?emMVDqm2Ln8K0H9(BxBl(21%VWqt4HNbikK0B!?VLfy3)<{$cda?P|iRpdkIae#D zjwBy;ErL^igyJn?1#IwYo(HM(3fYwuYPv7z@p(n`idtcg$STJ;6`5>@D>F6W(Ue@b zw!40K^~?{LU@MH6N!O*)SXC_DXu zpF{^+k$o+z$QhSfLVh4#fwaZTLL&n_#l@j&tI+h&d+OHGI=y3A;k0m&P|{u5St_TYs44|Rcr>^pMNFm$Wya>3zj>L z6a+Q$XqVWe!Q>|QrC$p(+367;MRcVS<-2Vn@p*}1`BDEp8`mtL_O=UUm znRX+V4=r*UCX8`R${Tosuz7jpx#iUN&jbm+Qo=KYh={488f44!T8q1_vQXZCIe_q* z5g!2gB;JNQ@nYSb)XdYuGv-F**ihhjnU12B_Z9GH_$b3WId?qJ6!c-q7n0Cr&V&%@*@2 znTW{-1AeiNSLyv)r=>*R#z%&g)WB}CkJe>MqF<;J*t7NmRySsWiyIu=D|A>P3K6*t zK0fB=QD5>@15E&WT+44)~D2mykG0rleJHyw|=7u1XHYfMC6(!dx*tAkF_>1(D zJ#@1^dHtHw)k?N-ygHQ+eyD8;8Z_*&GRH*)nEU&m08TuKyhC<^w79khh)a!%Q6bFR z)ErSlZ;uax?(t3d>o(}$L&ArS{cVKHHgfP&HrwD}Z=@OZ>HU8v*rBvsTlrZQJ*Ic+ zv(7AfU0>8&k45dM&+SQ-nwJxth<7iPhC80cgo}QM(xQir!ej=l8}U{!m!teOewo%X5J2av&Ziq){|Zry1Ka9i5moX>8P1ty8r%D#kiJcOhtitPddW9T2^`4nR2w;w^fB znFm39qYYq=1n5o20HVi0zjF`3>{AeF83u^@J*3&L=2B&TW zK>;QLIm^*p)UnY5 zEZ{tK`tf~$)P8~Z8s?!62zqmy-vtmX6wLL11CV}BQ1JN$OzajEZ@|Rq)q?iaTmboF zLH~sYfN-neobz7*iXFl*oeC>>Ll`-PK++MRLHZK_*&l=nan%5-HNuV~R{u-;UNl^5#5E`ynY{!+e^2y)e~$Kw9=`1d zNK%PKL-hdG5%GfUdjXQ~iF=BBP*J0Jee_!Z8NI8-eG5d$@Q!#mc|Ab(SK^zb9AL@? ziD)nOE@`>MT)h)F?w7<@p~S*e3400m%eP5Z{$dXjT_@T8umUTeD>*QD24Lzr$;H>U zAkl}CE8@EVk;#&)pVwn+wn%Oa=3s#(l3R~-NOYsr0G9!J6UwA%$24fN8fne186;3A zUHM5X_UxC^eN_lFEhvLQR6xC2riYJE`V!d-@9MF4_hjr^^hoB9Wo4sT*n$RG)jsUK z>aVf}FTOV#WiR(2URJ(r?_WAmp|558mv>>F4B4q6+;3@-T{|=ey+Hp!cJng!1gx@0 z422b*!c_nuIw((HqQwf6<*pS;0JCn(yEpfvS3Z{axGmTcy?ph_1OyzF_uj?IQVZn= zUqPH%tK?UfZa_1?q{!QYg=KuJsG_$c(X)!h$1z^kt!OyNVPRJln?Eh+1&AG1Y#YY$ z$@y0CC7(dzRGRDvB;KZUw4$W39%ac(dr`^<%8vQ?U8+)cZuloa;?I@cyBrwjRQ{+9 zJ)zMn$u|g`bw+t&$7Upup}f8o?P%>n*B@2)R|Zj;H1)ZQ?P$g>^_8JSB)Cyyn0^-%7itV2;X0*7!+wG0OTDg1 zay>*w;zydrMm0+Ox@OyX1T>u09PP)zJA^{agF2(4`kV+dIqHUDW3U;DWXHi;WQ)`JeDI)j}RX9a9X{xCV zVhxMdVd8pBXNEdV-;BTA&`g|RSv+B`4XN?(`8r!eYZLJA%+QHz2fl9##kS)&{;2_) zC&?P^UXR_zF&?}Er8XbOxB}jCu9R#|(~;F-KczTwJKGrFjzHZQY@U#`6WS4`E>u5H ztC8%^i6%93<(5>t*XwhzJf1(`bq2U%Cg5Y7jF0iynSe9kFJ!3=Eo1vf>+)DJ4U{YT+4Gb2}yQkqP=ZIO)xbSyVH^r+% zsC>6NaO)F$$yg7^_&i9W#bS$9gNx4>%8ibntW4@+{ana*i_?y1qHtH+gm)&`iDWLX zo#z#-OwSeuKbt0|OzBV@>ht*6wBUVfC~O&YkVARKhzPgWB#KNHOdrl^M>U~lJ8|Ehljb#T^#%L&Rv;rcACz)yFD&CXky@deyo z2ji0BXvzxe8yai7o4Y6>KBYfDArGq7Jq;Ql8BQZvG<|JQGjo6n#%9l;Of>kB#l(P3 zN-vq5AJ44MNb78e&;o_z!@?vjbWUyxD`kAF*Wo9zktXuqY#-T}^D1e~eJ9Aw2~wmo z?*KVIuafv**odZV4qE5W6+AU8?nEQ4^m|FUwTx`cLKWDvU1iDDD;+l95&w~az|>Q zYRFON)c*r4@p)h)F>#cWXGVJR!_`RTnYQYU-$jo1(Z~4FI3W&IJcs9nng44TpRJJ3 zW_tGYdM2&G^q=wLM;7{-FMc7P_G`LjKJBNd{+QX0kvvLsmtS5VN$wBSr<( zqV=?VD0*rw)QWh)LOOcIwqntHZ+mS^)k1N{+u*6?To2z#Hc++M zO;j|O>MTbgqMWWBZBHl4Qq$^v;{bk)!fgOpaDk%#1Hom-sAbG!zbT1U#%bH3 zN}{Vb)7@tzB10CPJo+vac#=+Eyn#smo}li9V)h>j{@{5$zflMuc$R4S2I0olPY^A> zOL%-o2T}P+;ecy5k+DJ;J>Yr|K<9;nAK^usOnCa08VDK|Ui{)56u4D5p<7K ze@Zm_I@z+GpApI4kX1$gLA0bmR`ccwD13{oVH*^yjLQ0*%ZPMt87qY$bJAtIPIM7j zb7j9`e}ldUqrSt#ee35iL466 z;Wh`(?TTY>%q7ZfRh;Md1zyF)#{pdYyizgNNwn;r%5}y+LC|Z;k%ketCZOEXa~l*t zuiTpb6QZj9%AKneMDxC*e0n<+)|-__#s;u{p-S;nH_>QGw#vR=3k$5Oyw-=Y;cZp^ zTKG&}uj)Pzii&otZhq=9qS7JNJx5_d=~>kS7n_MROH{ibEF`+>q-x)umxz|mR=vLc zei-ni>a_ARqU=u9=?(u2pZ{6){+m#A`Mat!dzONUt*Vbdw?N)jb;}dC(J1BoT;085 z5SG2KzWL=o1jSS8y=wt<^#|$`j^DzkFRIU_de{)32E-t!bO?SYo54i2u!qSemzz( z3Jn)&KG=^J#y-vekHfdZ^_tHmq@N-mXBm-Fr!BfJ6P9ObYYsnypnF*>Zjd8LPifr? z#v!m;JK}f2g?jC#7YYEpU3(xMjO1#xr`xv?xxUc(f0qlv8r@n0T(I1#`_?nNz+k_w z>&ek5D9_eyc^keJPwDPEiRhnSt-JpoEU?&gI}Rg{-Icnhn-P@xA>BLo;koKZy77O( zf@OE=t%m?yFruI3hT_V<>#IUgTr1Oi`k+AJas9Qo{S?8vR6np1`_!HK!EJv>>;(10 zk9triUf16~x^X=yJ*$7n`vs!&qW&j)a}abt(EsiG0GK_dKlconsR|ktE)ys%Gw5ED zkbdokSza))vd~bVJ&qX2HaIsZ;QPNA7M;5eOg(9+`@{kTZH9205_P4?(0up=a9=XC z7B$22KN$LJI-&5*hS7d;C#b&1u=VHvN0j~>oc}_UQEu4jcpv8<8eZE9MdltiTyR+t zWDz4hfnZ&_*JwWTA%gfCqjQ}X%sprfTn7P*g2v`w0@&Fbw`ThhoLx0$cjW_c@#tE!_w8|%#E98<5gMzmH-F1vLi!vt?>G(tIiHx> zHsrNypLuWD7F4hf^Pyb;Ui2LN=J`O5Og7N~bB5|}DHv^Z!xUyT?gr7z?#Q&QoOk&e$cj>s{IIVXKR52n zQ!+F7zJNDSABzV4VzcOGr{t0k7QD5&60<}T}nxDHTs ziJ%T_ZKF*o(HeKCkv&>uXTG$>?4z_Lbwwo62mrW-Ls;6*4o;uTOD3Zv~KIA0N&CW}EY_@tS=$E45HL*IcPeSbz10DdRS7*lEvvv!a zD)LeVNhyWo-U_a{g+H$)|CHyoe)fvm(hy1%S+tx~9Q5Fdmm*#c@)C-7;K=WId75lZ zncjfg>ygl1n#CrG{Y;hRv`wc4+pu9uH_=blKQ^AzHbN+aIvxu)M)?WkBhgo``dYXf0MdqX!pk%-2V4j*F+(`^ zupiH{&dHw!Tpt!g4PJL72EU?QMWVd5MX&k>a=3dY!tn~;v!=|pM_tanbSv5I_&B9mx1><+!7 zoX=>yTPB+uFTY5YR9@M9Vl$s@YJ*V>2(h}b*S#ahR-BzE0leYz{xyVf=(-dRsjb>6 z-RanzgH`h&dOgC0r_f}-`!a7Bd9ZNF$oh!8~bF@Zzyk+C;n4WBjn#5jFm zF!&{Z5S8UpXN!L{S1EYrQxg!lwMn~sp;RA!yyf&xD3(VJDKj$tNJ4+3Kh`Ar8l@Pj zX{>>5FT9^^m_KUMV0PtW>SSIiF0f^Ya%>&YpE))CCCz3{$~$)Ofw?5kaV8 zLbjdlUXUqE79-m%?8W%&MseY@3Tm(vj>J%vvf|?l$_3_L_(o*`hDPq)q_>iT74P;l zk*x`dkw|keQMy@9v4=fV9JcDWxxZx}gu}4bs(=$R1Ya$8dQ5kvDV4>wU_Pvt-$mKH=uYl8= zpe7Xd2E*uj=uGj7Mb8S%oUdV@mO9yUr50tg2;>Aty z-H9h73H-^S-5i$cd{PUa$izT>Vwz;Dv+|sL2M^T|{3fQnR7lyvl22?&^a18roXd8U zwUifJ@fE~b=ASR9+Ly^xW52}4R91GT?7QZgE86jFwoa*FRpr_2xpLFAmR!bubhVKk zDlbj1ouMVC_F1iADS|0Ea%ERORbC}yYbv*6!oRGir_9q#>EdYM5qy4lQZMCb0ld49 zSDuk|aF_O{UMZteR197Dfmi?l-eGv(Nq!ghO%Q`GAh>GkV4I%6;Qg{m3S)Rlj0s|_Tm{qKL(=3|Qs$*Bb!yix`toJj6U#6OM#Us`{Qzx1E^XvEDcwt>!B8;KOxDDt zx;n`Xk4Y_2Dd3SjF~8U6iA8+Dkfh*41D~1AxgcQ^XymcgNyF?dox@~`t_ewr8h>ea iE6kuqp0kj7WmVNSM)0}o4vUFgdhD9nLfo<9S>fOCvJ{yB diff --git a/Telemac/gaia_cata_auto.py b/Telemac/gaia_cata_auto.py index 5dc122f6..a36f39f4 100644 --- a/Telemac/gaia_cata_auto.py +++ b/Telemac/gaia_cata_auto.py @@ -44,7 +44,7 @@ JdC = JDC_CATA (code = 'GAIA', # Catalog entry for the MAP function : c_pre_interfaceBody_mesh # ======================================================================= -VERSION_CATALOGUE="TRUNK_20201030" +VERSION_CATALOGUE="TRUNK_20210323" # ----------------------------------------------------------------------- COMPUTATION_ENVIRONMENT = PROC(nom= "COMPUTATION_ENVIRONMENT",op = None, # ----------------------------------------------------------------------- @@ -485,7 +485,7 @@ Beware that the sum over all classes must be equal to 1.""", # ----------------------------------- LAYERS_INITIAL_THICKNESS = SIMP(statut ='f', # ----------------------------------- - typ = 'R', min= 2, max= 2, + typ = 'R', min=0, max='**', fr = """Epaisseurs initiales des sediments (m).""", ang = """Sediment layers thickness (m) for initialisation.""", ), @@ -570,7 +570,7 @@ contain the topography and the friction coefficients.""", # ----------------------------------- NAMES_OF_PRIVATE_VARIABLES = SIMP(statut ='f', # ----------------------------------- - typ = 'TXM', min= 2, max= 2, + typ = 'TXM', min=0, max='**', fr = """Noms des variables privees en 32 caracteres, 16 pour le nom 16 pour l''unite. Elles correspondent au bloc PRIVE et peuvent etre lues dans le fichier de geometrie si elles @@ -626,7 +626,7 @@ GRAPHIC PRINTOUT PERIOD in telemac2d or telemac3d.""", VARIABLES_TO_BE_PRINTED = SIMP(statut ='f', # ----------------------------------- typ = 'TXM', max='**', - into = ["velocity along x axis (m/s)","velocity along y axis (m/s)","wawe celerity (m/s)","water depth (m)","free surface elevation (m)","bottom elevation (m)","Froude number","scalar flowrate of fluid (m2/s)","flowrate along x axis (m2/s)","flowrate along y axis (m2/s)","bed-load discharge (m2/s)","bed-load discharge along x axis (m2/s)","bed-load discharge along y axis (m2/s)","bottom evolution (m)","non erodable bottom","bed friction coefficient (m if Nikuradse)","mean bottom friction (N/m2)","wave angle with axis Oy (deg)","wave height","wave period","fraction of sediment of class i in the first layer","fraction of sediment of class i in the second layer","bed load transport rate of sediment of class i","thicknes of bed layer i","concentration of bed layer i ","concentration for class i","supplementary variable A","supplementary variable G","supplementary variable L","supplementary variable O"], + into = ["velocity along x axis (m/s)","velocity along y axis (m/s)","wawe celerity (m/s)","water depth (m)","free surface elevation (m)","bottom elevation (m)","Froude number","scalar flowrate of fluid (m2/s)","flowrate along x axis (m2/s)","flowrate along y axis (m2/s)","bed-load discharge (m2/s)","bed-load discharge along x axis (m2/s)","bed-load discharge along y axis (m2/s)","bottom evolution (m)","non erodable bottom","bed friction coefficient (m if Nikuradse)","mean bottom friction (N/m2)","wave angle with axis Oy (deg)","wave height","wave period","fraction of non cohesive sediment of class*,*n* layer","fraction of non cohesive sediment of class1,1n* layer","fraction of non cohesive sediment of class2,2n* layer","fraction of non cohesive sediment of class3,3n* layer","fraction of non cohesive sediment of class4,4n* layer","fraction of non cohesive sediment of class5,5n* layer","fraction of non cohesive sediment of class6,6n* layer","fraction of non cohesive sediment of class7,7n* layer","fraction of non cohesive sediment of class8,8n* layer","fraction of non cohesive sediment of class9,9n* layer","fraction of non cohesive sediment of class10,10n* layer","fraction of non cohesive sediment of class11,11n* layer","fraction of non cohesive sediment of class12,12n* layer","fraction of non cohesive sediment of class13,13n* layer","fraction of non cohesive sediment of class14,14n* layer","fraction of non cohesive sediment of class15,15n* layer","fraction of non cohesive sediment of class16,16n* layer","fraction of non cohesive sediment of class17,17n* layer","fraction of non cohesive sediment of class18,18n* layer","fraction of non cohesive sediment of class19,19n* layer","fraction of non cohesive sediment of class**,**n* layer","fraction of non cohesive sediment of class*,*n1 layer","fraction of non cohesive sediment of class1,1n1 layer","fraction of non cohesive sediment of class2,2n1 layer","fraction of non cohesive sediment of class3,3n1 layer","fraction of non cohesive sediment of class4,4n1 layer","fraction of non cohesive sediment of class5,5n1 layer","fraction of non cohesive sediment of class6,6n1 layer","fraction of non cohesive sediment of class7,7n1 layer","fraction of non cohesive sediment of class8,8n1 layer","fraction of non cohesive sediment of class9,9n1 layer","fraction of non cohesive sediment of class10,10n1 layer","fraction of non cohesive sediment of class11,11n1 layer","fraction of non cohesive sediment of class12,12n1 layer","fraction of non cohesive sediment of class13,13n1 layer","fraction of non cohesive sediment of class14,14n1 layer","fraction of non cohesive sediment of class15,15n1 layer","fraction of non cohesive sediment of class16,16n1 layer","fraction of non cohesive sediment of class17,17n1 layer","fraction of non cohesive sediment of class18,18n1 layer","fraction of non cohesive sediment of class19,19n1 layer","fraction of non cohesive sediment of class**,**n1 layer","fraction of non cohesive sediment of class*,*n2 layer","fraction of non cohesive sediment of class1,1n2 layer","fraction of non cohesive sediment of class2,2n2 layer","fraction of non cohesive sediment of class3,3n2 layer","fraction of non cohesive sediment of class4,4n2 layer","fraction of non cohesive sediment of class5,5n2 layer","fraction of non cohesive sediment of class6,6n2 layer","fraction of non cohesive sediment of class7,7n2 layer","fraction of non cohesive sediment of class8,8n2 layer","fraction of non cohesive sediment of class9,9n2 layer","fraction of non cohesive sediment of class10,10n2 layer","fraction of non cohesive sediment of class11,11n2 layer","fraction of non cohesive sediment of class12,12n2 layer","fraction of non cohesive sediment of class13,13n2 layer","fraction of non cohesive sediment of class14,14n2 layer","fraction of non cohesive sediment of class15,15n2 layer","fraction of non cohesive sediment of class16,16n2 layer","fraction of non cohesive sediment of class17,17n2 layer","fraction of non cohesive sediment of class18,18n2 layer","fraction of non cohesive sediment of class19,19n2 layer","fraction of non cohesive sediment of class**,**n2 layer","fraction of non cohesive sediment of class*,*n3 layer","fraction of non cohesive sediment of class1,1n3 layer","fraction of non cohesive sediment of class2,2n3 layer","fraction of non cohesive sediment of class3,3n3 layer","fraction of non cohesive sediment of class4,4n3 layer","fraction of non cohesive sediment of class5,5n3 layer","fraction of non cohesive sediment of class6,6n3 layer","fraction of non cohesive sediment of class7,7n3 layer","fraction of non cohesive sediment of class8,8n3 layer","fraction of non cohesive sediment of class9,9n3 layer","fraction of non cohesive sediment of class10,10n3 layer","fraction of non cohesive sediment of class11,11n3 layer","fraction of non cohesive sediment of class12,12n3 layer","fraction of non cohesive sediment of class13,13n3 layer","fraction of non cohesive sediment of class14,14n3 layer","fraction of non cohesive sediment of class15,15n3 layer","fraction of non cohesive sediment of class16,16n3 layer","fraction of non cohesive sediment of class17,17n3 layer","fraction of non cohesive sediment of class18,18n3 layer","fraction of non cohesive sediment of class19,19n3 layer","fraction of non cohesive sediment of class**,**n3 layer","fraction of non cohesive sediment of class*,*n4 layer","fraction of non cohesive sediment of class1,1n4 layer","fraction of non cohesive sediment of class2,2n4 layer","fraction of non cohesive sediment of class3,3n4 layer","fraction of non cohesive sediment of class4,4n4 layer","fraction of non cohesive sediment of class5,5n4 layer","fraction of non cohesive sediment of class6,6n4 layer","fraction of non cohesive sediment of class7,7n4 layer","fraction of non cohesive sediment of class8,8n4 layer","fraction of non cohesive sediment of class9,9n4 layer","fraction of non cohesive sediment of class10,10n4 layer","fraction of non cohesive sediment of class11,11n4 layer","fraction of non cohesive sediment of class12,12n4 layer","fraction of non cohesive sediment of class13,13n4 layer","fraction of non cohesive sediment of class14,14n4 layer","fraction of non cohesive sediment of class15,15n4 layer","fraction of non cohesive sediment of class16,16n4 layer","fraction of non cohesive sediment of class17,17n4 layer","fraction of non cohesive sediment of class18,18n4 layer","fraction of non cohesive sediment of class19,19n4 layer","fraction of non cohesive sediment of class**,**n4 layer","fraction of non cohesive sediment of class*,*n5 layer","fraction of non cohesive sediment of class1,1n5 layer","fraction of non cohesive sediment of class2,2n5 layer","fraction of non cohesive sediment of class3,3n5 layer","fraction of non cohesive sediment of class4,4n5 layer","fraction of non cohesive sediment of class5,5n5 layer","fraction of non cohesive sediment of class6,6n5 layer","fraction of non cohesive sediment of class7,7n5 layer","fraction of non cohesive sediment of class8,8n5 layer","fraction of non cohesive sediment of class9,9n5 layer","fraction of non cohesive sediment of class10,10n5 layer","fraction of non cohesive sediment of class11,11n5 layer","fraction of non cohesive sediment of class12,12n5 layer","fraction of non cohesive sediment of class13,13n5 layer","fraction of non cohesive sediment of class14,14n5 layer","fraction of non cohesive sediment of class15,15n5 layer","fraction of non cohesive sediment of class16,16n5 layer","fraction of non cohesive sediment of class17,17n5 layer","fraction of non cohesive sediment of class18,18n5 layer","fraction of non cohesive sediment of class19,19n5 layer","fraction of non cohesive sediment of class**,**n5 layer","fraction of non cohesive sediment of class*,*n6 layer","fraction of non cohesive sediment of class1,1n6 layer","fraction of non cohesive sediment of class2,2n6 layer","fraction of non cohesive sediment of class3,3n6 layer","fraction of non cohesive sediment of class4,4n6 layer","fraction of non cohesive sediment of class5,5n6 layer","fraction of non cohesive sediment of class6,6n6 layer","fraction of non cohesive sediment of class7,7n6 layer","fraction of non cohesive sediment of class8,8n6 layer","fraction of non cohesive sediment of class9,9n6 layer","fraction of non cohesive sediment of class10,10n6 layer","fraction of non cohesive sediment of class11,11n6 layer","fraction of non cohesive sediment of class12,12n6 layer","fraction of non cohesive sediment of class13,13n6 layer","fraction of non cohesive sediment of class14,14n6 layer","fraction of non cohesive sediment of class15,15n6 layer","fraction of non cohesive sediment of class16,16n6 layer","fraction of non cohesive sediment of class17,17n6 layer","fraction of non cohesive sediment of class18,18n6 layer","fraction of non cohesive sediment of class19,19n6 layer","fraction of non cohesive sediment of class**,**n6 layer","fraction of non cohesive sediment of class*,*n7 layer","fraction of non cohesive sediment of class1,1n7 layer","fraction of non cohesive sediment of class2,2n7 layer","fraction of non cohesive sediment of class3,3n7 layer","fraction of non cohesive sediment of class4,4n7 layer","fraction of non cohesive sediment of class5,5n7 layer","fraction of non cohesive sediment of class6,6n7 layer","fraction of non cohesive sediment of class7,7n7 layer","fraction of non cohesive sediment of class8,8n7 layer","fraction of non cohesive sediment of class9,9n7 layer","fraction of non cohesive sediment of class10,10n7 layer","fraction of non cohesive sediment of class11,11n7 layer","fraction of non cohesive sediment of class12,12n7 layer","fraction of non cohesive sediment of class13,13n7 layer","fraction of non cohesive sediment of class14,14n7 layer","fraction of non cohesive sediment of class15,15n7 layer","fraction of non cohesive sediment of class16,16n7 layer","fraction of non cohesive sediment of class17,17n7 layer","fraction of non cohesive sediment of class18,18n7 layer","fraction of non cohesive sediment of class19,19n7 layer","fraction of non cohesive sediment of class**,**n7 layer","fraction of non cohesive sediment of class*,*n8 layer","fraction of non cohesive sediment of class1,1n8 layer","fraction of non cohesive sediment of class2,2n8 layer","fraction of non cohesive sediment of class3,3n8 layer","fraction of non cohesive sediment of class4,4n8 layer","fraction of non cohesive sediment of class5,5n8 layer","fraction of non cohesive sediment of class6,6n8 layer","fraction of non cohesive sediment of class7,7n8 layer","fraction of non cohesive sediment of class8,8n8 layer","fraction of non cohesive sediment of class9,9n8 layer","fraction of non cohesive sediment of class10,10n8 layer","fraction of non cohesive sediment of class11,11n8 layer","fraction of non cohesive sediment of class12,12n8 layer","fraction of non cohesive sediment of class13,13n8 layer","fraction of non cohesive sediment of class14,14n8 layer","fraction of non cohesive sediment of class15,15n8 layer","fraction of non cohesive sediment of class16,16n8 layer","fraction of non cohesive sediment of class17,17n8 layer","fraction of non cohesive sediment of class18,18n8 layer","fraction of non cohesive sediment of class19,19n8 layer","fraction of non cohesive sediment of class**,**n8 layer","fraction of non cohesive sediment of class*,*n9 layer","fraction of non cohesive sediment of class1,1n9 layer","fraction of non cohesive sediment of class2,2n9 layer","fraction of non cohesive sediment of class3,3n9 layer","fraction of non cohesive sediment of class4,4n9 layer","fraction of non cohesive sediment of class5,5n9 layer","fraction of non cohesive sediment of class6,6n9 layer","fraction of non cohesive sediment of class7,7n9 layer","fraction of non cohesive sediment of class8,8n9 layer","fraction of non cohesive sediment of class9,9n9 layer","fraction of non cohesive sediment of class10,10n9 layer","fraction of non cohesive sediment of class11,11n9 layer","fraction of non cohesive sediment of class12,12n9 layer","fraction of non cohesive sediment of class13,13n9 layer","fraction of non cohesive sediment of class14,14n9 layer","fraction of non cohesive sediment of class15,15n9 layer","fraction of non cohesive sediment of class16,16n9 layer","fraction of non cohesive sediment of class17,17n9 layer","fraction of non cohesive sediment of class18,18n9 layer","fraction of non cohesive sediment of class19,19n9 layer","fraction of non cohesive sediment of class**,**n9 layer","fraction of non cohesive sediment of class*,*n10 layer","fraction of non cohesive sediment of class1,1n10 layer","fraction of non cohesive sediment of class2,2n10 layer","fraction of non cohesive sediment of class3,3n10 layer","fraction of non cohesive sediment of class4,4n10 layer","fraction of non cohesive sediment of class5,5n10 layer","fraction of non cohesive sediment of class6,6n10 layer","fraction of non cohesive sediment of class7,7n10 layer","fraction of non cohesive sediment of class8,8n10 layer","fraction of non cohesive sediment of class9,9n10 layer","fraction of non cohesive sediment of class10,10n10 layer","fraction of non cohesive sediment of class11,11n10 layer","fraction of non cohesive sediment of class12,12n10 layer","fraction of non cohesive sediment of class13,13n10 layer","fraction of non cohesive sediment of class14,14n10 layer","fraction of non cohesive sediment of class15,15n10 layer","fraction of non cohesive sediment of class16,16n10 layer","fraction of non cohesive sediment of class17,17n10 layer","fraction of non cohesive sediment of class18,18n10 layer","fraction of non cohesive sediment of class19,19n10 layer","fraction of non cohesive sediment of class**,**n10 layer","fraction of non cohesive sediment of class*,*n11 layer","fraction of non cohesive sediment of class1,1n11 layer","fraction of non cohesive sediment of class2,2n11 layer","fraction of non cohesive sediment of class3,3n11 layer","fraction of non cohesive sediment of class4,4n11 layer","fraction of non cohesive sediment of class5,5n11 layer","fraction of non cohesive sediment of class6,6n11 layer","fraction of non cohesive sediment of class7,7n11 layer","fraction of non cohesive sediment of class8,8n11 layer","fraction of non cohesive sediment of class9,9n11 layer","fraction of non cohesive sediment of class10,10n11 layer","fraction of non cohesive sediment of class11,11n11 layer","fraction of non cohesive sediment of class12,12n11 layer","fraction of non cohesive sediment of class13,13n11 layer","fraction of non cohesive sediment of class14,14n11 layer","fraction of non cohesive sediment of class15,15n11 layer","fraction of non cohesive sediment of class16,16n11 layer","fraction of non cohesive sediment of class17,17n11 layer","fraction of non cohesive sediment of class18,18n11 layer","fraction of non cohesive sediment of class19,19n11 layer","fraction of non cohesive sediment of class**,**n11 layer","fraction of non cohesive sediment of class*,*n12 layer","fraction of non cohesive sediment of class1,1n12 layer","fraction of non cohesive sediment of class2,2n12 layer","fraction of non cohesive sediment of class3,3n12 layer","fraction of non cohesive sediment of class4,4n12 layer","fraction of non cohesive sediment of class5,5n12 layer","fraction of non cohesive sediment of class6,6n12 layer","fraction of non cohesive sediment of class7,7n12 layer","fraction of non cohesive sediment of class8,8n12 layer","fraction of non cohesive sediment of class9,9n12 layer","fraction of non cohesive sediment of class10,10n12 layer","fraction of non cohesive sediment of class11,11n12 layer","fraction of non cohesive sediment of class12,12n12 layer","fraction of non cohesive sediment of class13,13n12 layer","fraction of non cohesive sediment of class14,14n12 layer","fraction of non cohesive sediment of class15,15n12 layer","fraction of non cohesive sediment of class16,16n12 layer","fraction of non cohesive sediment of class17,17n12 layer","fraction of non cohesive sediment of class18,18n12 layer","fraction of non cohesive sediment of class19,19n12 layer","fraction of non cohesive sediment of class**,**n12 layer","fraction of non cohesive sediment of class*,*n13 layer","fraction of non cohesive sediment of class1,1n13 layer","fraction of non cohesive sediment of class2,2n13 layer","fraction of non cohesive sediment of class3,3n13 layer","fraction of non cohesive sediment of class4,4n13 layer","fraction of non cohesive sediment of class5,5n13 layer","fraction of non cohesive sediment of class6,6n13 layer","fraction of non cohesive sediment of class7,7n13 layer","fraction of non cohesive sediment of class8,8n13 layer","fraction of non cohesive sediment of class9,9n13 layer","fraction of non cohesive sediment of class10,10n13 layer","fraction of non cohesive sediment of class11,11n13 layer","fraction of non cohesive sediment of class12,12n13 layer","fraction of non cohesive sediment of class13,13n13 layer","fraction of non cohesive sediment of class14,14n13 layer","fraction of non cohesive sediment of class15,15n13 layer","fraction of non cohesive sediment of class16,16n13 layer","fraction of non cohesive sediment of class17,17n13 layer","fraction of non cohesive sediment of class18,18n13 layer","fraction of non cohesive sediment of class19,19n13 layer","fraction of non cohesive sediment of class**,**n13 layer","fraction of non cohesive sediment of class*,*n14 layer","fraction of non cohesive sediment of class1,1n14 layer","fraction of non cohesive sediment of class2,2n14 layer","fraction of non cohesive sediment of class3,3n14 layer","fraction of non cohesive sediment of class4,4n14 layer","fraction of non cohesive sediment of class5,5n14 layer","fraction of non cohesive sediment of class6,6n14 layer","fraction of non cohesive sediment of class7,7n14 layer","fraction of non cohesive sediment of class8,8n14 layer","fraction of non cohesive sediment of class9,9n14 layer","fraction of non cohesive sediment of class10,10n14 layer","fraction of non cohesive sediment of class11,11n14 layer","fraction of non cohesive sediment of class12,12n14 layer","fraction of non cohesive sediment of class13,13n14 layer","fraction of non cohesive sediment of class14,14n14 layer","fraction of non cohesive sediment of class15,15n14 layer","fraction of non cohesive sediment of class16,16n14 layer","fraction of non cohesive sediment of class17,17n14 layer","fraction of non cohesive sediment of class18,18n14 layer","fraction of non cohesive sediment of class19,19n14 layer","fraction of non cohesive sediment of class**,**n14 layer","fraction of non cohesive sediment of class*,*n15 layer","fraction of non cohesive sediment of class1,1n15 layer","fraction of non cohesive sediment of class2,2n15 layer","fraction of non cohesive sediment of class3,3n15 layer","fraction of non cohesive sediment of class4,4n15 layer","fraction of non cohesive sediment of class5,5n15 layer","fraction of non cohesive sediment of class6,6n15 layer","fraction of non cohesive sediment of class7,7n15 layer","fraction of non cohesive sediment of class8,8n15 layer","fraction of non cohesive sediment of class9,9n15 layer","fraction of non cohesive sediment of class10,10n15 layer","fraction of non cohesive sediment of class11,11n15 layer","fraction of non cohesive sediment of class12,12n15 layer","fraction of non cohesive sediment of class13,13n15 layer","fraction of non cohesive sediment of class14,14n15 layer","fraction of non cohesive sediment of class15,15n15 layer","fraction of non cohesive sediment of class16,16n15 layer","fraction of non cohesive sediment of class17,17n15 layer","fraction of non cohesive sediment of class18,18n15 layer","fraction of non cohesive sediment of class19,19n15 layer","fraction of non cohesive sediment of class**,**n15 layer","fraction of non cohesive sediment of class*,*n16 layer","fraction of non cohesive sediment of class1,1n16 layer","fraction of non cohesive sediment of class2,2n16 layer","fraction of non cohesive sediment of class3,3n16 layer","fraction of non cohesive sediment of class4,4n16 layer","fraction of non cohesive sediment of class5,5n16 layer","fraction of non cohesive sediment of class6,6n16 layer","fraction of non cohesive sediment of class7,7n16 layer","fraction of non cohesive sediment of class8,8n16 layer","fraction of non cohesive sediment of class9,9n16 layer","fraction of non cohesive sediment of class10,10n16 layer","fraction of non cohesive sediment of class11,11n16 layer","fraction of non cohesive sediment of class12,12n16 layer","fraction of non cohesive sediment of class13,13n16 layer","fraction of non cohesive sediment of class14,14n16 layer","fraction of non cohesive sediment of class15,15n16 layer","fraction of non cohesive sediment of class16,16n16 layer","fraction of non cohesive sediment of class17,17n16 layer","fraction of non cohesive sediment of class18,18n16 layer","fraction of non cohesive sediment of class19,19n16 layer","fraction of non cohesive sediment of class**,**n16 layer","fraction of non cohesive sediment of class*,*n17 layer","fraction of non cohesive sediment of class1,1n17 layer","fraction of non cohesive sediment of class2,2n17 layer","fraction of non cohesive sediment of class3,3n17 layer","fraction of non cohesive sediment of class4,4n17 layer","fraction of non cohesive sediment of class5,5n17 layer","fraction of non cohesive sediment of class6,6n17 layer","fraction of non cohesive sediment of class7,7n17 layer","fraction of non cohesive sediment of class8,8n17 layer","fraction of non cohesive sediment of class9,9n17 layer","fraction of non cohesive sediment of class10,10n17 layer","fraction of non cohesive sediment of class11,11n17 layer","fraction of non cohesive sediment of class12,12n17 layer","fraction of non cohesive sediment of class13,13n17 layer","fraction of non cohesive sediment of class14,14n17 layer","fraction of non cohesive sediment of class15,15n17 layer","fraction of non cohesive sediment of class16,16n17 layer","fraction of non cohesive sediment of class17,17n17 layer","fraction of non cohesive sediment of class18,18n17 layer","fraction of non cohesive sediment of class19,19n17 layer","fraction of non cohesive sediment of class**,**n17 layer","fraction of non cohesive sediment of class*,*n18 layer","fraction of non cohesive sediment of class1,1n18 layer","fraction of non cohesive sediment of class2,2n18 layer","fraction of non cohesive sediment of class3,3n18 layer","fraction of non cohesive sediment of class4,4n18 layer","fraction of non cohesive sediment of class5,5n18 layer","fraction of non cohesive sediment of class6,6n18 layer","fraction of non cohesive sediment of class7,7n18 layer","fraction of non cohesive sediment of class8,8n18 layer","fraction of non cohesive sediment of class9,9n18 layer","fraction of non cohesive sediment of class10,10n18 layer","fraction of non cohesive sediment of class11,11n18 layer","fraction of non cohesive sediment of class12,12n18 layer","fraction of non cohesive sediment of class13,13n18 layer","fraction of non cohesive sediment of class14,14n18 layer","fraction of non cohesive sediment of class15,15n18 layer","fraction of non cohesive sediment of class16,16n18 layer","fraction of non cohesive sediment of class17,17n18 layer","fraction of non cohesive sediment of class18,18n18 layer","fraction of non cohesive sediment of class19,19n18 layer","fraction of non cohesive sediment of class**,**n18 layer","fraction of non cohesive sediment of class*,*n19 layer","fraction of non cohesive sediment of class1,1n19 layer","fraction of non cohesive sediment of class2,2n19 layer","fraction of non cohesive sediment of class3,3n19 layer","fraction of non cohesive sediment of class4,4n19 layer","fraction of non cohesive sediment of class5,5n19 layer","fraction of non cohesive sediment of class6,6n19 layer","fraction of non cohesive sediment of class7,7n19 layer","fraction of non cohesive sediment of class8,8n19 layer","fraction of non cohesive sediment of class9,9n19 layer","fraction of non cohesive sediment of class10,10n19 layer","fraction of non cohesive sediment of class11,11n19 layer","fraction of non cohesive sediment of class12,12n19 layer","fraction of non cohesive sediment of class13,13n19 layer","fraction of non cohesive sediment of class14,14n19 layer","fraction of non cohesive sediment of class15,15n19 layer","fraction of non cohesive sediment of class16,16n19 layer","fraction of non cohesive sediment of class17,17n19 layer","fraction of non cohesive sediment of class18,18n19 layer","fraction of non cohesive sediment of class19,19n19 layer","fraction of non cohesive sediment of class**,**n19 layer","fraction of non cohesive sediment of class*,*n** layer","fraction of non cohesive sediment of class1,1n** layer","fraction of non cohesive sediment of class2,2n** layer","fraction of non cohesive sediment of class3,3n** layer","fraction of non cohesive sediment of class4,4n** layer","fraction of non cohesive sediment of class5,5n** layer","fraction of non cohesive sediment of class6,6n** layer","fraction of non cohesive sediment of class7,7n** layer","fraction of non cohesive sediment of class8,8n** layer","fraction of non cohesive sediment of class9,9n** layer","fraction of non cohesive sediment of class10,10n** layer","fraction of non cohesive sediment of class11,11n** layer","fraction of non cohesive sediment of class12,12n** layer","fraction of non cohesive sediment of class13,13n** layer","fraction of non cohesive sediment of class14,14n** layer","fraction of non cohesive sediment of class15,15n** layer","fraction of non cohesive sediment of class16,16n** layer","fraction of non cohesive sediment of class17,17n** layer","fraction of non cohesive sediment of class18,18n** layer","fraction of non cohesive sediment of class19,19n** layer","fraction of non cohesive sediment of class**,**n** layer","bed load transport rate of sediment of class*","bed load transport rate of sediment of class1","bed load transport rate of sediment of class2","bed load transport rate of sediment of class3","bed load transport rate of sediment of class4","bed load transport rate of sediment of class5","bed load transport rate of sediment of class6","bed load transport rate of sediment of class7","bed load transport rate of sediment of class8","bed load transport rate of sediment of class9","bed load transport rate of sediment of class10","bed load transport rate of sediment of class11","bed load transport rate of sediment of class12","bed load transport rate of sediment of class13","bed load transport rate of sediment of class14","bed load transport rate of sediment of class15","bed load transport rate of sediment of class16","bed load transport rate of sediment of class17","bed load transport rate of sediment of class18","bed load transport rate of sediment of class19","bed load transport rate of sediment of class**","bed load transport rate of sediment of class*","bed load transport rate of sediment of class1","bed load transport rate of sediment of class2","bed load transport rate of sediment of class3","bed load transport rate of sediment of class4","bed load transport rate of sediment of class5","bed load transport rate of sediment of class6","bed load transport rate of sediment of class7","bed load transport rate of sediment of class8","bed load transport rate of sediment of class9","bed load transport rate of sediment of class10","bed load transport rate of sediment of class11","bed load transport rate of sediment of class12","bed load transport rate of sediment of class13","bed load transport rate of sediment of class14","bed load transport rate of sediment of class15","bed load transport rate of sediment of class16","bed load transport rate of sediment of class17","bed load transport rate of sediment of class18","bed load transport rate of sediment of class19","bed load transport rate of sediment of class**","bed load transport rate of sediment of class*","bed load transport rate of sediment of class1","bed load transport rate of sediment of class2","bed load transport rate of sediment of class3","bed load transport rate of sediment of class4","bed load transport rate of sediment of class5","bed load transport rate of sediment of class6","bed load transport rate of sediment of class7","bed load transport rate of sediment of class8","bed load transport rate of sediment of class9","bed load transport rate of sediment of class10","bed load transport rate of sediment of class11","bed load transport rate of sediment of class12","bed load transport rate of sediment of class13","bed load transport rate of sediment of class14","bed load transport rate of sediment of class15","bed load transport rate of sediment of class16","bed load transport rate of sediment of class17","bed load transport rate of sediment of class18","bed load transport rate of sediment of class19","bed load transport rate of sediment of class**","bed load transport rate of sediment of class*","bed load transport rate of sediment of class1","bed load transport rate of sediment of class2","bed load transport rate of sediment of class3","bed load transport rate of sediment of class4","bed load transport rate of sediment of class5","bed load transport rate of sediment of class6","bed load transport rate of sediment of class7","bed load transport rate of sediment of class8","bed load transport rate of sediment of class9","bed load transport rate of sediment of class10","bed load transport rate of sediment of class11","bed load transport rate of sediment of class12","bed load transport rate of sediment of class13","bed load transport rate of sediment of class14","bed load transport rate of sediment of class15","bed load transport rate of sediment of class16","bed load transport rate of sediment of class17","bed load transport rate of sediment of class18","bed load transport rate of sediment of class19","bed load transport rate of sediment of class**","bed load transport rate of sediment of class*","bed load transport rate of sediment of class1","bed load transport rate of sediment of class2","bed load transport rate of sediment of class3","bed load transport rate of sediment of class4","bed load transport rate of sediment of class5","bed load transport rate of sediment of class6","bed load transport rate of sediment of class7","bed load transport rate of sediment of class8","bed load transport rate of sediment of class9","bed load transport rate of sediment of class10","bed load transport rate of sediment of class11","bed load transport rate of sediment of class12","bed load transport rate of sediment of class13","bed load transport rate of sediment of class14","bed load transport rate of sediment of class15","bed load transport rate of sediment of class16","bed load transport rate of sediment of class17","bed load transport rate of sediment of class18","bed load transport rate of sediment of class19","bed load transport rate of sediment of class**","bed load transport rate of sediment of class*","bed load transport rate of sediment of class1","bed load transport rate of sediment of class2","bed load transport rate of sediment of class3","bed load transport rate of sediment of class4","bed load transport rate of sediment of class5","bed load transport rate of sediment of class6","bed load transport rate of sediment of class7","bed load transport rate of sediment of class8","bed load transport rate of sediment of class9","bed load transport rate of sediment of class10","bed load transport rate of sediment of class11","bed load transport rate of sediment of class12","bed load transport rate of sediment of class13","bed load transport rate of sediment of class14","bed load transport rate of sediment of class15","bed load transport rate of sediment of class16","bed load transport rate of sediment of class17","bed load transport rate of sediment of class18","bed load transport rate of sediment of class19","bed load transport rate of sediment of class**","bed load transport rate of sediment of class*","bed load transport rate of sediment of class1","bed load transport rate of sediment of class2","bed load transport rate of sediment of class3","bed load transport rate of sediment of class4","bed load transport rate of sediment of class5","bed load transport rate of sediment of class6","bed load transport rate of sediment of class7","bed load transport rate of sediment of class8","bed load transport rate of sediment of class9","bed load transport rate of sediment of class10","bed load transport rate of sediment of class11","bed load transport rate of sediment of class12","bed load transport rate of sediment of class13","bed load transport rate of sediment of class14","bed load transport rate of sediment of class15","bed load transport rate of sediment of class16","bed load transport rate of sediment of class17","bed load transport rate of sediment of class18","bed load transport rate of sediment of class19","bed load transport rate of sediment of class**","bed load transport rate of sediment of class*","bed load transport rate of sediment of class1","bed load transport rate of sediment of class2","bed load transport rate of sediment of class3","bed load transport rate of sediment of class4","bed load transport rate of sediment of class5","bed load transport rate of sediment of class6","bed load transport rate of sediment of class7","bed load transport rate of sediment of class8","bed load transport rate of sediment of class9","bed load transport rate of sediment of class10","bed load transport rate of sediment of class11","bed load transport rate of sediment of class12","bed load transport rate of sediment of class13","bed load transport rate of sediment of class14","bed load transport rate of sediment of class15","bed load transport rate of sediment of class16","bed load transport rate of sediment of class17","bed load transport rate of sediment of class18","bed load transport rate of sediment of class19","bed load transport rate of sediment of class**","bed load transport rate of sediment of class*","bed load transport rate of sediment of class1","bed load transport rate of sediment of class2","bed load transport rate of sediment of class3","bed load transport rate of sediment of class4","bed load transport rate of sediment of class5","bed load transport rate of sediment of class6","bed load transport rate of sediment of class7","bed load transport rate of sediment of class8","bed load transport rate of sediment of class9","bed load transport rate of sediment of class10","bed load transport rate of sediment of class11","bed load transport rate of sediment of class12","bed load transport rate of sediment of class13","bed load transport rate of sediment of class14","bed load transport rate of sediment of class15","bed load transport rate of sediment of class16","bed load transport rate of sediment of class17","bed load transport rate of sediment of class18","bed load transport rate of sediment of class19","bed load transport rate of sediment of class**","bed load transport rate of sediment of class*","bed load transport rate of sediment of class1","bed load transport rate of sediment of class2","bed load transport rate of sediment of class3","bed load transport rate of sediment of class4","bed load transport rate of sediment of class5","bed load transport rate of sediment of class6","bed load transport rate of sediment of class7","bed load transport rate of sediment of class8","bed load transport rate of sediment of class9","bed load transport rate of sediment of class10","bed load transport rate of sediment of class11","bed load transport rate of sediment of class12","bed load transport rate of sediment of class13","bed load transport rate of sediment of class14","bed load transport rate of sediment of class15","bed load transport rate of sediment of class16","bed load transport rate of sediment of class17","bed load transport rate of sediment of class18","bed load transport rate of sediment of class19","bed load transport rate of sediment of class**","bed load transport rate of sediment of class*","bed load transport rate of sediment of class1","bed load transport rate of sediment of class2","bed load transport rate of sediment of class3","bed load transport rate of sediment of class4","bed load transport rate of sediment of class5","bed load transport rate of sediment of class6","bed load transport rate of sediment of class7","bed load transport rate of sediment of class8","bed load transport rate of sediment of class9","bed load transport rate of sediment of class10","bed load transport rate of sediment of class11","bed load transport rate of sediment of class12","bed load transport rate of sediment of class13","bed load transport rate of sediment of class14","bed load transport rate of sediment of class15","bed load transport rate of sediment of class16","bed load transport rate of sediment of class17","bed load transport rate of sediment of class18","bed load transport rate of sediment of class19","bed load transport rate of sediment of class**","bed load transport rate of sediment of class*","bed load transport rate of sediment of class1","bed load transport rate of sediment of class2","bed load transport rate of sediment of class3","bed load transport rate of sediment of class4","bed load transport rate of sediment of class5","bed load transport rate of sediment of class6","bed load transport rate of sediment of class7","bed load transport rate of sediment of class8","bed load transport rate of sediment of class9","bed load transport rate of sediment of class10","bed load transport rate of sediment of class11","bed load transport rate of sediment of class12","bed load transport rate of sediment of class13","bed load transport rate of sediment of class14","bed load transport rate of sediment of class15","bed load transport rate of sediment of class16","bed load transport rate of sediment of class17","bed load transport rate of sediment of class18","bed load transport rate of sediment of class19","bed load transport rate of sediment of class**","bed load transport rate of sediment of class*","bed load transport rate of sediment of class1","bed load transport rate of sediment of class2","bed load transport rate of sediment of class3","bed load transport rate of sediment of class4","bed load transport rate of sediment of class5","bed load transport rate of sediment of class6","bed load transport rate of sediment of class7","bed load transport rate of sediment of class8","bed load transport rate of sediment of class9","bed load transport rate of sediment of class10","bed load transport rate of sediment of class11","bed load transport rate of sediment of class12","bed load transport rate of sediment of class13","bed load transport rate of sediment of class14","bed load transport rate of sediment of class15","bed load transport rate of sediment of class16","bed load transport rate of sediment of class17","bed load transport rate of sediment of class18","bed load transport rate of sediment of class19","bed load transport rate of sediment of class**","bed load transport rate of sediment of class*","bed load transport rate of sediment of class1","bed load transport rate of sediment of class2","bed load transport rate of sediment of class3","bed load transport rate of sediment of class4","bed load transport rate of sediment of class5","bed load transport rate of sediment of class6","bed load transport rate of sediment of class7","bed load transport rate of sediment of class8","bed load transport rate of sediment of class9","bed load transport rate of sediment of class10","bed load transport rate of sediment of class11","bed load transport rate of sediment of class12","bed load transport rate of sediment of class13","bed load transport rate of sediment of class14","bed load transport rate of sediment of class15","bed load transport rate of sediment of class16","bed load transport rate of sediment of class17","bed load transport rate of sediment of class18","bed load transport rate of sediment of class19","bed load transport rate of sediment of class**","bed load transport rate of sediment of class*","bed load transport rate of sediment of class1","bed load transport rate of sediment of class2","bed load transport rate of sediment of class3","bed load transport rate of sediment of class4","bed load transport rate of sediment of class5","bed load transport rate of sediment of class6","bed load transport rate of sediment of class7","bed load transport rate of sediment of class8","bed load transport rate of sediment of class9","bed load transport rate of sediment of class10","bed load transport rate of sediment of class11","bed load transport rate of sediment of class12","bed load transport rate of sediment of class13","bed load transport rate of sediment of class14","bed load transport rate of sediment of class15","bed load transport rate of sediment of class16","bed load transport rate of sediment of class17","bed load transport rate of sediment of class18","bed load transport rate of sediment of class19","bed load transport rate of sediment of class**","bed load transport rate of sediment of class*","bed load transport rate of sediment of class1","bed load transport rate of sediment of class2","bed load transport rate of sediment of class3","bed load transport rate of sediment of class4","bed load transport rate of sediment of class5","bed load transport rate of sediment of class6","bed load transport rate of sediment of class7","bed load transport rate of sediment of class8","bed load transport rate of sediment of class9","bed load transport rate of sediment of class10","bed load transport rate of sediment of class11","bed load transport rate of sediment of class12","bed load transport rate of sediment of class13","bed load transport rate of sediment of class14","bed load transport rate of sediment of class15","bed load transport rate of sediment of class16","bed load transport rate of sediment of class17","bed load transport rate of sediment of class18","bed load transport rate of sediment of class19","bed load transport rate of sediment of class**","bed load transport rate of sediment of class*","bed load transport rate of sediment of class1","bed load transport rate of sediment of class2","bed load transport rate of sediment of class3","bed load transport rate of sediment of class4","bed load transport rate of sediment of class5","bed load transport rate of sediment of class6","bed load transport rate of sediment of class7","bed load transport rate of sediment of class8","bed load transport rate of sediment of class9","bed load transport rate of sediment of class10","bed load transport rate of sediment of class11","bed load transport rate of sediment of class12","bed load transport rate of sediment of class13","bed load transport rate of sediment of class14","bed load transport rate of sediment of class15","bed load transport rate of sediment of class16","bed load transport rate of sediment of class17","bed load transport rate of sediment of class18","bed load transport rate of sediment of class19","bed load transport rate of sediment of class**","bed load transport rate of sediment of class*","bed load transport rate of sediment of class1","bed load transport rate of sediment of class2","bed load transport rate of sediment of class3","bed load transport rate of sediment of class4","bed load transport rate of sediment of class5","bed load transport rate of sediment of class6","bed load transport rate of sediment of class7","bed load transport rate of sediment of class8","bed load transport rate of sediment of class9","bed load transport rate of sediment of class10","bed load transport rate of sediment of class11","bed load transport rate of sediment of class12","bed load transport rate of sediment of class13","bed load transport rate of sediment of class14","bed load transport rate of sediment of class15","bed load transport rate of sediment of class16","bed load transport rate of sediment of class17","bed load transport rate of sediment of class18","bed load transport rate of sediment of class19","bed load transport rate of sediment of class**","bed load transport rate of sediment of class*","bed load transport rate of sediment of class1","bed load transport rate of sediment of class2","bed load transport rate of sediment of class3","bed load transport rate of sediment of class4","bed load transport rate of sediment of class5","bed load transport rate of sediment of class6","bed load transport rate of sediment of class7","bed load transport rate of sediment of class8","bed load transport rate of sediment of class9","bed load transport rate of sediment of class10","bed load transport rate of sediment of class11","bed load transport rate of sediment of class12","bed load transport rate of sediment of class13","bed load transport rate of sediment of class14","bed load transport rate of sediment of class15","bed load transport rate of sediment of class16","bed load transport rate of sediment of class17","bed load transport rate of sediment of class18","bed load transport rate of sediment of class19","bed load transport rate of sediment of class**","bed load transport rate of sediment of class*","bed load transport rate of sediment of class1","bed load transport rate of sediment of class2","bed load transport rate of sediment of class3","bed load transport rate of sediment of class4","bed load transport rate of sediment of class5","bed load transport rate of sediment of class6","bed load transport rate of sediment of class7","bed load transport rate of sediment of class8","bed load transport rate of sediment of class9","bed load transport rate of sediment of class10","bed load transport rate of sediment of class11","bed load transport rate of sediment of class12","bed load transport rate of sediment of class13","bed load transport rate of sediment of class14","bed load transport rate of sediment of class15","bed load transport rate of sediment of class16","bed load transport rate of sediment of class17","bed load transport rate of sediment of class18","bed load transport rate of sediment of class19","bed load transport rate of sediment of class**","bed load transport rate of sediment of class*","bed load transport rate of sediment of class1","bed load transport rate of sediment of class2","bed load transport rate of sediment of class3","bed load transport rate of sediment of class4","bed load transport rate of sediment of class5","bed load transport rate of sediment of class6","bed load transport rate of sediment of class7","bed load transport rate of sediment of class8","bed load transport rate of sediment of class9","bed load transport rate of sediment of class10","bed load transport rate of sediment of class11","bed load transport rate of sediment of class12","bed load transport rate of sediment of class13","bed load transport rate of sediment of class14","bed load transport rate of sediment of class15","bed load transport rate of sediment of class16","bed load transport rate of sediment of class17","bed load transport rate of sediment of class18","bed load transport rate of sediment of class19","bed load transport rate of sediment of class**","thicknes of bed layer k","concentration of bed layer*","concentration of bed layer*","concentration of bed layer*","concentration of bed layer*","concentration of bed layer*","concentration of bed layer*","concentration of bed layer*","concentration of bed layer*","concentration of bed layer*","concentration of bed layer*","concentration of bed layer*","concentration of bed layer*","concentration of bed layer*","concentration of bed layer*","concentration of bed layer*","concentration of bed layer*","concentration of bed layer*","concentration of bed layer*","concentration of bed layer*","concentration of bed layer*","concentration of bed layer*","concentration of bed layer1","concentration of bed layer1","concentration of bed layer1","concentration of bed layer1","concentration of bed layer1","concentration of bed layer1","concentration of bed layer1","concentration of bed layer1","concentration of bed layer1","concentration of bed layer1","concentration of bed layer1","concentration of bed layer1","concentration of bed layer1","concentration of bed layer1","concentration of bed layer1","concentration of bed layer1","concentration of bed layer1","concentration of bed layer1","concentration of bed layer1","concentration of bed layer1","concentration of bed layer1","concentration of bed layer2","concentration of bed layer2","concentration of bed layer2","concentration of bed layer2","concentration of bed layer2","concentration of bed layer2","concentration of bed layer2","concentration of bed layer2","concentration of bed layer2","concentration of bed layer2","concentration of bed layer2","concentration of bed layer2","concentration of bed layer2","concentration of bed layer2","concentration of bed layer2","concentration of bed layer2","concentration of bed layer2","concentration of bed layer2","concentration of bed layer2","concentration of bed layer2","concentration of bed layer2","concentration of bed layer3","concentration of bed layer3","concentration of bed layer3","concentration of bed layer3","concentration of bed layer3","concentration of bed layer3","concentration of bed layer3","concentration of bed layer3","concentration of bed layer3","concentration of bed layer3","concentration of bed layer3","concentration of bed layer3","concentration of bed layer3","concentration of bed layer3","concentration of bed layer3","concentration of bed layer3","concentration of bed layer3","concentration of bed layer3","concentration of bed layer3","concentration of bed layer3","concentration of bed layer3","concentration of bed layer4","concentration of bed layer4","concentration of bed layer4","concentration of bed layer4","concentration of bed layer4","concentration of bed layer4","concentration of bed layer4","concentration of bed layer4","concentration of bed layer4","concentration of bed layer4","concentration of bed layer4","concentration of bed layer4","concentration of bed layer4","concentration of bed layer4","concentration of bed layer4","concentration of bed layer4","concentration of bed layer4","concentration of bed layer4","concentration of bed layer4","concentration of bed layer4","concentration of bed layer4","concentration of bed layer5","concentration of bed layer5","concentration of bed layer5","concentration of bed layer5","concentration of bed layer5","concentration of bed layer5","concentration of bed layer5","concentration of bed layer5","concentration of bed layer5","concentration of bed layer5","concentration of bed layer5","concentration of bed layer5","concentration of bed layer5","concentration of bed layer5","concentration of bed layer5","concentration of bed layer5","concentration of bed layer5","concentration of bed layer5","concentration of bed layer5","concentration of bed layer5","concentration of bed layer5","concentration of bed layer6","concentration of bed layer6","concentration of bed layer6","concentration of bed layer6","concentration of bed layer6","concentration of bed layer6","concentration of bed layer6","concentration of bed layer6","concentration of bed layer6","concentration of bed layer6","concentration of bed layer6","concentration of bed layer6","concentration of bed layer6","concentration of bed layer6","concentration of bed layer6","concentration of bed layer6","concentration of bed layer6","concentration of bed layer6","concentration of bed layer6","concentration of bed layer6","concentration of bed layer6","concentration of bed layer7","concentration of bed layer7","concentration of bed layer7","concentration of bed layer7","concentration of bed layer7","concentration of bed layer7","concentration of bed layer7","concentration of bed layer7","concentration of bed layer7","concentration of bed layer7","concentration of bed layer7","concentration of bed layer7","concentration of bed layer7","concentration of bed layer7","concentration of bed layer7","concentration of bed layer7","concentration of bed layer7","concentration of bed layer7","concentration of bed layer7","concentration of bed layer7","concentration of bed layer7","concentration of bed layer8","concentration of bed layer8","concentration of bed layer8","concentration of bed layer8","concentration of bed layer8","concentration of bed layer8","concentration of bed layer8","concentration of bed layer8","concentration of bed layer8","concentration of bed layer8","concentration of bed layer8","concentration of bed layer8","concentration of bed layer8","concentration of bed layer8","concentration of bed layer8","concentration of bed layer8","concentration of bed layer8","concentration of bed layer8","concentration of bed layer8","concentration of bed layer8","concentration of bed layer8","concentration of bed layer9","concentration of bed layer9","concentration of bed layer9","concentration of bed layer9","concentration of bed layer9","concentration of bed layer9","concentration of bed layer9","concentration of bed layer9","concentration of bed layer9","concentration of bed layer9","concentration of bed layer9","concentration of bed layer9","concentration of bed layer9","concentration of bed layer9","concentration of bed layer9","concentration of bed layer9","concentration of bed layer9","concentration of bed layer9","concentration of bed layer9","concentration of bed layer9","concentration of bed layer9","concentration of bed layer10","concentration of bed layer10","concentration of bed layer10","concentration of bed layer10","concentration of bed layer10","concentration of bed layer10","concentration of bed layer10","concentration of bed layer10","concentration of bed layer10","concentration of bed layer10","concentration of bed layer10","concentration of bed layer10","concentration of bed layer10","concentration of bed layer10","concentration of bed layer10","concentration of bed layer10","concentration of bed layer10","concentration of bed layer10","concentration of bed layer10","concentration of bed layer10","concentration of bed layer10","concentration of bed layer11","concentration of bed layer11","concentration of bed layer11","concentration of bed layer11","concentration of bed layer11","concentration of bed layer11","concentration of bed layer11","concentration of bed layer11","concentration of bed layer11","concentration of bed layer11","concentration of bed layer11","concentration of bed layer11","concentration of bed layer11","concentration of bed layer11","concentration of bed layer11","concentration of bed layer11","concentration of bed layer11","concentration of bed layer11","concentration of bed layer11","concentration of bed layer11","concentration of bed layer11","concentration of bed layer12","concentration of bed layer12","concentration of bed layer12","concentration of bed layer12","concentration of bed layer12","concentration of bed layer12","concentration of bed layer12","concentration of bed layer12","concentration of bed layer12","concentration of bed layer12","concentration of bed layer12","concentration of bed layer12","concentration of bed layer12","concentration of bed layer12","concentration of bed layer12","concentration of bed layer12","concentration of bed layer12","concentration of bed layer12","concentration of bed layer12","concentration of bed layer12","concentration of bed layer12","concentration of bed layer13","concentration of bed layer13","concentration of bed layer13","concentration of bed layer13","concentration of bed layer13","concentration of bed layer13","concentration of bed layer13","concentration of bed layer13","concentration of bed layer13","concentration of bed layer13","concentration of bed layer13","concentration of bed layer13","concentration of bed layer13","concentration of bed layer13","concentration of bed layer13","concentration of bed layer13","concentration of bed layer13","concentration of bed layer13","concentration of bed layer13","concentration of bed layer13","concentration of bed layer13","concentration of bed layer14","concentration of bed layer14","concentration of bed layer14","concentration of bed layer14","concentration of bed layer14","concentration of bed layer14","concentration of bed layer14","concentration of bed layer14","concentration of bed layer14","concentration of bed layer14","concentration of bed layer14","concentration of bed layer14","concentration of bed layer14","concentration of bed layer14","concentration of bed layer14","concentration of bed layer14","concentration of bed layer14","concentration of bed layer14","concentration of bed layer14","concentration of bed layer14","concentration of bed layer14","concentration of bed layer15","concentration of bed layer15","concentration of bed layer15","concentration of bed layer15","concentration of bed layer15","concentration of bed layer15","concentration of bed layer15","concentration of bed layer15","concentration of bed layer15","concentration of bed layer15","concentration of bed layer15","concentration of bed layer15","concentration of bed layer15","concentration of bed layer15","concentration of bed layer15","concentration of bed layer15","concentration of bed layer15","concentration of bed layer15","concentration of bed layer15","concentration of bed layer15","concentration of bed layer15","concentration of bed layer16","concentration of bed layer16","concentration of bed layer16","concentration of bed layer16","concentration of bed layer16","concentration of bed layer16","concentration of bed layer16","concentration of bed layer16","concentration of bed layer16","concentration of bed layer16","concentration of bed layer16","concentration of bed layer16","concentration of bed layer16","concentration of bed layer16","concentration of bed layer16","concentration of bed layer16","concentration of bed layer16","concentration of bed layer16","concentration of bed layer16","concentration of bed layer16","concentration of bed layer16","concentration of bed layer17","concentration of bed layer17","concentration of bed layer17","concentration of bed layer17","concentration of bed layer17","concentration of bed layer17","concentration of bed layer17","concentration of bed layer17","concentration of bed layer17","concentration of bed layer17","concentration of bed layer17","concentration of bed layer17","concentration of bed layer17","concentration of bed layer17","concentration of bed layer17","concentration of bed layer17","concentration of bed layer17","concentration of bed layer17","concentration of bed layer17","concentration of bed layer17","concentration of bed layer17","concentration of bed layer18","concentration of bed layer18","concentration of bed layer18","concentration of bed layer18","concentration of bed layer18","concentration of bed layer18","concentration of bed layer18","concentration of bed layer18","concentration of bed layer18","concentration of bed layer18","concentration of bed layer18","concentration of bed layer18","concentration of bed layer18","concentration of bed layer18","concentration of bed layer18","concentration of bed layer18","concentration of bed layer18","concentration of bed layer18","concentration of bed layer18","concentration of bed layer18","concentration of bed layer18","concentration of bed layer19","concentration of bed layer19","concentration of bed layer19","concentration of bed layer19","concentration of bed layer19","concentration of bed layer19","concentration of bed layer19","concentration of bed layer19","concentration of bed layer19","concentration of bed layer19","concentration of bed layer19","concentration of bed layer19","concentration of bed layer19","concentration of bed layer19","concentration of bed layer19","concentration of bed layer19","concentration of bed layer19","concentration of bed layer19","concentration of bed layer19","concentration of bed layer19","concentration of bed layer19","concentration of bed layer**","concentration of bed layer**","concentration of bed layer**","concentration of bed layer**","concentration of bed layer**","concentration of bed layer**","concentration of bed layer**","concentration of bed layer**","concentration of bed layer**","concentration of bed layer**","concentration of bed layer**","concentration of bed layer**","concentration of bed layer**","concentration of bed layer**","concentration of bed layer**","concentration of bed layer**","concentration of bed layer**","concentration of bed layer**","concentration of bed layer**","concentration of bed layer**","concentration of bed layer**","concentration for class i","supplementary variable A","supplementary variable G","supplementary variable L","supplementary variable O"], defaut = '', fr = """Nom des variables que l''utilisateur desire ecrire sur le lisring. Meme possibilites que pour les sorties graphiques.""", @@ -721,7 +721,7 @@ Possible values are: # ----------------------------------- FORTRAN_FILE = SIMP(statut ='f', # ----------------------------------- - typ = ('Fichier','All Files (*)'), max='**', + typ = 'FichierOuRepertoire', defaut = '', fr = """Nom du fichier FORTRAN a soumettre.""", ang = """Name of FORTRAN file to be submitted.""", @@ -854,7 +854,7 @@ INPUT_OUTPUT__GRAPHICS_AND_LISTING = PROC(nom= "INPUT_OUTPUT__GRAPHICS_AND_LISTI VARIABLES_FOR_GRAPHIC_PRINTOUTS = SIMP(statut ='f', # ----------------------------------- typ = 'TXM', min=0, max='**', - into = ["velocity along x axis (m/s)","velocity along y axis (m/s)","water depth (m)","free surface elevation (m)","bottom elevation (m)","scalar flowrate of fluid (m2/s)","flowrate along x axis (m2/s)","flowrate along y axis (m2/s)","non erodable bottom","Bed Shear stress (Totalfriction) (N/m2)","wave height","wave period","wave angle with axis Oy (deg)","bed-load discharge (kg/(m*s))","bed-load discharge along x axis (kg/(m*s))","bed-load discharge along y axis (kg/(m*s))","bottom evolution (m)","total bed roughness (m)","Skin friction correction factor","Mean grain diameter","wave orbital velocity (m/s)","fraction of non cohesive sediment of class i, in 1st layer","fraction of non cohesive sediment of class i, in 2nd layer","fraction of non cohesive sediment of class i, in k layer","solid transport load of class i","mass concentration of class i","mass concentration of class i for 2D graphic printouts (only for 3D simulations)","sediment viscosity along x axis (m2/s) - only 3D","sediment viscosity along y axis (m2/s) - only 3D","sediment viscosity along z axis (m2/s) - only 3D","bed load transport rate (kg/(m*s))","bed load transport rate x axis","bed load transport rate y axis","bedload transport rate of class i","thickness of the k layer","concentration of bed layer k","bed load transport rate of sediment of class i","supplementary variable A","supplementary variable G","supplementary variable L","supplementary variable O","fraction of cohesive sediment of class i, in 1st layer","fraction of cohesive sediment of class i, in 2nd layer","fraction of cohesive sediment of class i, in k layer","porosity of k layer","mass of non cohesive sediment of class i, in 1st layer","mass of non cohesive sediment of class i, in 2nd layer","mass of non cohesive sediment of class i, in k layer","mass of cohesive sediment of class i, in 1st layer","mass of cohesive sediment of class i, in 2nd layer","mass of cohesive sediment of class i, in k layer","reference level for Nestor"], + into = ["velocity along x axis (m/s)","velocity along y axis (m/s)","water depth (m)","free surface elevation (m)","bottom elevation (m)","scalar flowrate of fluid (m2/s)","flowrate along x axis (m2/s)","flowrate along y axis (m2/s)","non erodable bottom","Bed Shear stress (Totalfriction) (N/m2)","wave height","wave period","wave angle with axis Oy (deg)","bed-load discharge (kg/(m*s))","bed-load discharge along x axis (kg/(m*s))","bed-load discharge along y axis (kg/(m*s))","bottom evolution (m)","total bed roughness (m)","Skin friction correction factor","Mean grain diameter","wave orbital velocity (m/s)","fraction of non cohesive sediment of class*,*n* layer","fraction of non cohesive sediment of class1,1n* layer","fraction of non cohesive sediment of class2,2n* layer","fraction of non cohesive sediment of class3,3n* layer","fraction of non cohesive sediment of class4,4n* layer","fraction of non cohesive sediment of class5,5n* layer","fraction of non cohesive sediment of class6,6n* layer","fraction of non cohesive sediment of class7,7n* layer","fraction of non cohesive sediment of class8,8n* layer","fraction of non cohesive sediment of class9,9n* layer","fraction of non cohesive sediment of class10,10n* layer","fraction of non cohesive sediment of class11,11n* layer","fraction of non cohesive sediment of class12,12n* layer","fraction of non cohesive sediment of class13,13n* layer","fraction of non cohesive sediment of class14,14n* layer","fraction of non cohesive sediment of class15,15n* layer","fraction of non cohesive sediment of class16,16n* layer","fraction of non cohesive sediment of class17,17n* layer","fraction of non cohesive sediment of class18,18n* layer","fraction of non cohesive sediment of class19,19n* layer","fraction of non cohesive sediment of class**,**n* layer","fraction of non cohesive sediment of class*,*n1 layer","fraction of non cohesive sediment of class1,1n1 layer","fraction of non cohesive sediment of class2,2n1 layer","fraction of non cohesive sediment of class3,3n1 layer","fraction of non cohesive sediment of class4,4n1 layer","fraction of non cohesive sediment of class5,5n1 layer","fraction of non cohesive sediment of class6,6n1 layer","fraction of non cohesive sediment of class7,7n1 layer","fraction of non cohesive sediment of class8,8n1 layer","fraction of non cohesive sediment of class9,9n1 layer","fraction of non cohesive sediment of class10,10n1 layer","fraction of non cohesive sediment of class11,11n1 layer","fraction of non cohesive sediment of class12,12n1 layer","fraction of non cohesive sediment of class13,13n1 layer","fraction of non cohesive sediment of class14,14n1 layer","fraction of non cohesive sediment of class15,15n1 layer","fraction of non cohesive sediment of class16,16n1 layer","fraction of non cohesive sediment of class17,17n1 layer","fraction of non cohesive sediment of class18,18n1 layer","fraction of non cohesive sediment of class19,19n1 layer","fraction of non cohesive sediment of class**,**n1 layer","fraction of non cohesive sediment of class*,*n2 layer","fraction of non cohesive sediment of class1,1n2 layer","fraction of non cohesive sediment of class2,2n2 layer","fraction of non cohesive sediment of class3,3n2 layer","fraction of non cohesive sediment of class4,4n2 layer","fraction of non cohesive sediment of class5,5n2 layer","fraction of non cohesive sediment of class6,6n2 layer","fraction of non cohesive sediment of class7,7n2 layer","fraction of non cohesive sediment of class8,8n2 layer","fraction of non cohesive sediment of class9,9n2 layer","fraction of non cohesive sediment of class10,10n2 layer","fraction of non cohesive sediment of class11,11n2 layer","fraction of non cohesive sediment of class12,12n2 layer","fraction of non cohesive sediment of class13,13n2 layer","fraction of non cohesive sediment of class14,14n2 layer","fraction of non cohesive sediment of class15,15n2 layer","fraction of non cohesive sediment of class16,16n2 layer","fraction of non cohesive sediment of class17,17n2 layer","fraction of non cohesive sediment of class18,18n2 layer","fraction of non cohesive sediment of class19,19n2 layer","fraction of non cohesive sediment of class**,**n2 layer","fraction of non cohesive sediment of class*,*n3 layer","fraction of non cohesive sediment of class1,1n3 layer","fraction of non cohesive sediment of class2,2n3 layer","fraction of non cohesive sediment of class3,3n3 layer","fraction of non cohesive sediment of class4,4n3 layer","fraction of non cohesive sediment of class5,5n3 layer","fraction of non cohesive sediment of class6,6n3 layer","fraction of non cohesive sediment of class7,7n3 layer","fraction of non cohesive sediment of class8,8n3 layer","fraction of non cohesive sediment of class9,9n3 layer","fraction of non cohesive sediment of class10,10n3 layer","fraction of non cohesive sediment of class11,11n3 layer","fraction of non cohesive sediment of class12,12n3 layer","fraction of non cohesive sediment of class13,13n3 layer","fraction of non cohesive sediment of class14,14n3 layer","fraction of non cohesive sediment of class15,15n3 layer","fraction of non cohesive sediment of class16,16n3 layer","fraction of non cohesive sediment of class17,17n3 layer","fraction of non cohesive sediment of class18,18n3 layer","fraction of non cohesive sediment of class19,19n3 layer","fraction of non cohesive sediment of class**,**n3 layer","fraction of non cohesive sediment of class*,*n4 layer","fraction of non cohesive sediment of class1,1n4 layer","fraction of non cohesive sediment of class2,2n4 layer","fraction of non cohesive sediment of class3,3n4 layer","fraction of non cohesive sediment of class4,4n4 layer","fraction of non cohesive sediment of class5,5n4 layer","fraction of non cohesive sediment of class6,6n4 layer","fraction of non cohesive sediment of class7,7n4 layer","fraction of non cohesive sediment of class8,8n4 layer","fraction of non cohesive sediment of class9,9n4 layer","fraction of non cohesive sediment of class10,10n4 layer","fraction of non cohesive sediment of class11,11n4 layer","fraction of non cohesive sediment of class12,12n4 layer","fraction of non cohesive sediment of class13,13n4 layer","fraction of non cohesive sediment of class14,14n4 layer","fraction of non cohesive sediment of class15,15n4 layer","fraction of non cohesive sediment of class16,16n4 layer","fraction of non cohesive sediment of class17,17n4 layer","fraction of non cohesive sediment of class18,18n4 layer","fraction of non cohesive sediment of class19,19n4 layer","fraction of non cohesive sediment of class**,**n4 layer","fraction of non cohesive sediment of class*,*n5 layer","fraction of non cohesive sediment of class1,1n5 layer","fraction of non cohesive sediment of class2,2n5 layer","fraction of non cohesive sediment of class3,3n5 layer","fraction of non cohesive sediment of class4,4n5 layer","fraction of non cohesive sediment of class5,5n5 layer","fraction of non cohesive sediment of class6,6n5 layer","fraction of non cohesive sediment of class7,7n5 layer","fraction of non cohesive sediment of class8,8n5 layer","fraction of non cohesive sediment of class9,9n5 layer","fraction of non cohesive sediment of class10,10n5 layer","fraction of non cohesive sediment of class11,11n5 layer","fraction of non cohesive sediment of class12,12n5 layer","fraction of non cohesive sediment of class13,13n5 layer","fraction of non cohesive sediment of class14,14n5 layer","fraction of non cohesive sediment of class15,15n5 layer","fraction of non cohesive sediment of class16,16n5 layer","fraction of non cohesive sediment of class17,17n5 layer","fraction of non cohesive sediment of class18,18n5 layer","fraction of non cohesive sediment of class19,19n5 layer","fraction of non cohesive sediment of class**,**n5 layer","fraction of non cohesive sediment of class*,*n6 layer","fraction of non cohesive sediment of class1,1n6 layer","fraction of non cohesive sediment of class2,2n6 layer","fraction of non cohesive sediment of class3,3n6 layer","fraction of non cohesive sediment of class4,4n6 layer","fraction of non cohesive sediment of class5,5n6 layer","fraction of non cohesive sediment of class6,6n6 layer","fraction of non cohesive sediment of class7,7n6 layer","fraction of non cohesive sediment of class8,8n6 layer","fraction of non cohesive sediment of class9,9n6 layer","fraction of non cohesive sediment of class10,10n6 layer","fraction of non cohesive sediment of class11,11n6 layer","fraction of non cohesive sediment of class12,12n6 layer","fraction of non cohesive sediment of class13,13n6 layer","fraction of non cohesive sediment of class14,14n6 layer","fraction of non cohesive sediment of class15,15n6 layer","fraction of non cohesive sediment of class16,16n6 layer","fraction of non cohesive sediment of class17,17n6 layer","fraction of non cohesive sediment of class18,18n6 layer","fraction of non cohesive sediment of class19,19n6 layer","fraction of non cohesive sediment of class**,**n6 layer","fraction of non cohesive sediment of class*,*n7 layer","fraction of non cohesive sediment of class1,1n7 layer","fraction of non cohesive sediment of class2,2n7 layer","fraction of non cohesive sediment of class3,3n7 layer","fraction of non cohesive sediment of class4,4n7 layer","fraction of non cohesive sediment of class5,5n7 layer","fraction of non cohesive sediment of class6,6n7 layer","fraction of non cohesive sediment of class7,7n7 layer","fraction of non cohesive sediment of class8,8n7 layer","fraction of non cohesive sediment of class9,9n7 layer","fraction of non cohesive sediment of class10,10n7 layer","fraction of non cohesive sediment of class11,11n7 layer","fraction of non cohesive sediment of class12,12n7 layer","fraction of non cohesive sediment of class13,13n7 layer","fraction of non cohesive sediment of class14,14n7 layer","fraction of non cohesive sediment of class15,15n7 layer","fraction of non cohesive sediment of class16,16n7 layer","fraction of non cohesive sediment of class17,17n7 layer","fraction of non cohesive sediment of class18,18n7 layer","fraction of non cohesive sediment of class19,19n7 layer","fraction of non cohesive sediment of class**,**n7 layer","fraction of non cohesive sediment of class*,*n8 layer","fraction of non cohesive sediment of class1,1n8 layer","fraction of non cohesive sediment of class2,2n8 layer","fraction of non cohesive sediment of class3,3n8 layer","fraction of non cohesive sediment of class4,4n8 layer","fraction of non cohesive sediment of class5,5n8 layer","fraction of non cohesive sediment of class6,6n8 layer","fraction of non cohesive sediment of class7,7n8 layer","fraction of non cohesive sediment of class8,8n8 layer","fraction of non cohesive sediment of class9,9n8 layer","fraction of non cohesive sediment of class10,10n8 layer","fraction of non cohesive sediment of class11,11n8 layer","fraction of non cohesive sediment of class12,12n8 layer","fraction of non cohesive sediment of class13,13n8 layer","fraction of non cohesive sediment of class14,14n8 layer","fraction of non cohesive sediment of class15,15n8 layer","fraction of non cohesive sediment of class16,16n8 layer","fraction of non cohesive sediment of class17,17n8 layer","fraction of non cohesive sediment of class18,18n8 layer","fraction of non cohesive sediment of class19,19n8 layer","fraction of non cohesive sediment of class**,**n8 layer","fraction of non cohesive sediment of class*,*n9 layer","fraction of non cohesive sediment of class1,1n9 layer","fraction of non cohesive sediment of class2,2n9 layer","fraction of non cohesive sediment of class3,3n9 layer","fraction of non cohesive sediment of class4,4n9 layer","fraction of non cohesive sediment of class5,5n9 layer","fraction of non cohesive sediment of class6,6n9 layer","fraction of non cohesive sediment of class7,7n9 layer","fraction of non cohesive sediment of class8,8n9 layer","fraction of non cohesive sediment of class9,9n9 layer","fraction of non cohesive sediment of class10,10n9 layer","fraction of non cohesive sediment of class11,11n9 layer","fraction of non cohesive sediment of class12,12n9 layer","fraction of non cohesive sediment of class13,13n9 layer","fraction of non cohesive sediment of class14,14n9 layer","fraction of non cohesive sediment of class15,15n9 layer","fraction of non cohesive sediment of class16,16n9 layer","fraction of non cohesive sediment of class17,17n9 layer","fraction of non cohesive sediment of class18,18n9 layer","fraction of non cohesive sediment of class19,19n9 layer","fraction of non cohesive sediment of class**,**n9 layer","fraction of non cohesive sediment of class*,*n10 layer","fraction of non cohesive sediment of class1,1n10 layer","fraction of non cohesive sediment of class2,2n10 layer","fraction of non cohesive sediment of class3,3n10 layer","fraction of non cohesive sediment of class4,4n10 layer","fraction of non cohesive sediment of class5,5n10 layer","fraction of non cohesive sediment of class6,6n10 layer","fraction of non cohesive sediment of class7,7n10 layer","fraction of non cohesive sediment of class8,8n10 layer","fraction of non cohesive sediment of class9,9n10 layer","fraction of non cohesive sediment of class10,10n10 layer","fraction of non cohesive sediment of class11,11n10 layer","fraction of non cohesive sediment of class12,12n10 layer","fraction of non cohesive sediment of class13,13n10 layer","fraction of non cohesive sediment of class14,14n10 layer","fraction of non cohesive sediment of class15,15n10 layer","fraction of non cohesive sediment of class16,16n10 layer","fraction of non cohesive sediment of class17,17n10 layer","fraction of non cohesive sediment of class18,18n10 layer","fraction of non cohesive sediment of class19,19n10 layer","fraction of non cohesive sediment of class**,**n10 layer","fraction of non cohesive sediment of class*,*n11 layer","fraction of non cohesive sediment of class1,1n11 layer","fraction of non cohesive sediment of class2,2n11 layer","fraction of non cohesive sediment of class3,3n11 layer","fraction of non cohesive sediment of class4,4n11 layer","fraction of non cohesive sediment of class5,5n11 layer","fraction of non cohesive sediment of class6,6n11 layer","fraction of non cohesive sediment of class7,7n11 layer","fraction of non cohesive sediment of class8,8n11 layer","fraction of non cohesive sediment of class9,9n11 layer","fraction of non cohesive sediment of class10,10n11 layer","fraction of non cohesive sediment of class11,11n11 layer","fraction of non cohesive sediment of class12,12n11 layer","fraction of non cohesive sediment of class13,13n11 layer","fraction of non cohesive sediment of class14,14n11 layer","fraction of non cohesive sediment of class15,15n11 layer","fraction of non cohesive sediment of class16,16n11 layer","fraction of non cohesive sediment of class17,17n11 layer","fraction of non cohesive sediment of class18,18n11 layer","fraction of non cohesive sediment of class19,19n11 layer","fraction of non cohesive sediment of class**,**n11 layer","fraction of non cohesive sediment of class*,*n12 layer","fraction of non cohesive sediment of class1,1n12 layer","fraction of non cohesive sediment of class2,2n12 layer","fraction of non cohesive sediment of class3,3n12 layer","fraction of non cohesive sediment of class4,4n12 layer","fraction of non cohesive sediment of class5,5n12 layer","fraction of non cohesive sediment of class6,6n12 layer","fraction of non cohesive sediment of class7,7n12 layer","fraction of non cohesive sediment of class8,8n12 layer","fraction of non cohesive sediment of class9,9n12 layer","fraction of non cohesive sediment of class10,10n12 layer","fraction of non cohesive sediment of class11,11n12 layer","fraction of non cohesive sediment of class12,12n12 layer","fraction of non cohesive sediment of class13,13n12 layer","fraction of non cohesive sediment of class14,14n12 layer","fraction of non cohesive sediment of class15,15n12 layer","fraction of non cohesive sediment of class16,16n12 layer","fraction of non cohesive sediment of class17,17n12 layer","fraction of non cohesive sediment of class18,18n12 layer","fraction of non cohesive sediment of class19,19n12 layer","fraction of non cohesive sediment of class**,**n12 layer","fraction of non cohesive sediment of class*,*n13 layer","fraction of non cohesive sediment of class1,1n13 layer","fraction of non cohesive sediment of class2,2n13 layer","fraction of non cohesive sediment of class3,3n13 layer","fraction of non cohesive sediment of class4,4n13 layer","fraction of non cohesive sediment of class5,5n13 layer","fraction of non cohesive sediment of class6,6n13 layer","fraction of non cohesive sediment of class7,7n13 layer","fraction of non cohesive sediment of class8,8n13 layer","fraction of non cohesive sediment of class9,9n13 layer","fraction of non cohesive sediment of class10,10n13 layer","fraction of non cohesive sediment of class11,11n13 layer","fraction of non cohesive sediment of class12,12n13 layer","fraction of non cohesive sediment of class13,13n13 layer","fraction of non cohesive sediment of class14,14n13 layer","fraction of non cohesive sediment of class15,15n13 layer","fraction of non cohesive sediment of class16,16n13 layer","fraction of non cohesive sediment of class17,17n13 layer","fraction of non cohesive sediment of class18,18n13 layer","fraction of non cohesive sediment of class19,19n13 layer","fraction of non cohesive sediment of class**,**n13 layer","fraction of non cohesive sediment of class*,*n14 layer","fraction of non cohesive sediment of class1,1n14 layer","fraction of non cohesive sediment of class2,2n14 layer","fraction of non cohesive sediment of class3,3n14 layer","fraction of non cohesive sediment of class4,4n14 layer","fraction of non cohesive sediment of class5,5n14 layer","fraction of non cohesive sediment of class6,6n14 layer","fraction of non cohesive sediment of class7,7n14 layer","fraction of non cohesive sediment of class8,8n14 layer","fraction of non cohesive sediment of class9,9n14 layer","fraction of non cohesive sediment of class10,10n14 layer","fraction of non cohesive sediment of class11,11n14 layer","fraction of non cohesive sediment of class12,12n14 layer","fraction of non cohesive sediment of class13,13n14 layer","fraction of non cohesive sediment of class14,14n14 layer","fraction of non cohesive sediment of class15,15n14 layer","fraction of non cohesive sediment of class16,16n14 layer","fraction of non cohesive sediment of class17,17n14 layer","fraction of non cohesive sediment of class18,18n14 layer","fraction of non cohesive sediment of class19,19n14 layer","fraction of non cohesive sediment of class**,**n14 layer","fraction of non cohesive sediment of class*,*n15 layer","fraction of non cohesive sediment of class1,1n15 layer","fraction of non cohesive sediment of class2,2n15 layer","fraction of non cohesive sediment of class3,3n15 layer","fraction of non cohesive sediment of class4,4n15 layer","fraction of non cohesive sediment of class5,5n15 layer","fraction of non cohesive sediment of class6,6n15 layer","fraction of non cohesive sediment of class7,7n15 layer","fraction of non cohesive sediment of class8,8n15 layer","fraction of non cohesive sediment of class9,9n15 layer","fraction of non cohesive sediment of class10,10n15 layer","fraction of non cohesive sediment of class11,11n15 layer","fraction of non cohesive sediment of class12,12n15 layer","fraction of non cohesive sediment of class13,13n15 layer","fraction of non cohesive sediment of class14,14n15 layer","fraction of non cohesive sediment of class15,15n15 layer","fraction of non cohesive sediment of class16,16n15 layer","fraction of non cohesive sediment of class17,17n15 layer","fraction of non cohesive sediment of class18,18n15 layer","fraction of non cohesive sediment of class19,19n15 layer","fraction of non cohesive sediment of class**,**n15 layer","fraction of non cohesive sediment of class*,*n16 layer","fraction of non cohesive sediment of class1,1n16 layer","fraction of non cohesive sediment of class2,2n16 layer","fraction of non cohesive sediment of class3,3n16 layer","fraction of non cohesive sediment of class4,4n16 layer","fraction of non cohesive sediment of class5,5n16 layer","fraction of non cohesive sediment of class6,6n16 layer","fraction of non cohesive sediment of class7,7n16 layer","fraction of non cohesive sediment of class8,8n16 layer","fraction of non cohesive sediment of class9,9n16 layer","fraction of non cohesive sediment of class10,10n16 layer","fraction of non cohesive sediment of class11,11n16 layer","fraction of non cohesive sediment of class12,12n16 layer","fraction of non cohesive sediment of class13,13n16 layer","fraction of non cohesive sediment of class14,14n16 layer","fraction of non cohesive sediment of class15,15n16 layer","fraction of non cohesive sediment of class16,16n16 layer","fraction of non cohesive sediment of class17,17n16 layer","fraction of non cohesive sediment of class18,18n16 layer","fraction of non cohesive sediment of class19,19n16 layer","fraction of non cohesive sediment of class**,**n16 layer","fraction of non cohesive sediment of class*,*n17 layer","fraction of non cohesive sediment of class1,1n17 layer","fraction of non cohesive sediment of class2,2n17 layer","fraction of non cohesive sediment of class3,3n17 layer","fraction of non cohesive sediment of class4,4n17 layer","fraction of non cohesive sediment of class5,5n17 layer","fraction of non cohesive sediment of class6,6n17 layer","fraction of non cohesive sediment of class7,7n17 layer","fraction of non cohesive sediment of class8,8n17 layer","fraction of non cohesive sediment of class9,9n17 layer","fraction of non cohesive sediment of class10,10n17 layer","fraction of non cohesive sediment of class11,11n17 layer","fraction of non cohesive sediment of class12,12n17 layer","fraction of non cohesive sediment of class13,13n17 layer","fraction of non cohesive sediment of class14,14n17 layer","fraction of non cohesive sediment of class15,15n17 layer","fraction of non cohesive sediment of class16,16n17 layer","fraction of non cohesive sediment of class17,17n17 layer","fraction of non cohesive sediment of class18,18n17 layer","fraction of non cohesive sediment of class19,19n17 layer","fraction of non cohesive sediment of class**,**n17 layer","fraction of non cohesive sediment of class*,*n18 layer","fraction of non cohesive sediment of class1,1n18 layer","fraction of non cohesive sediment of class2,2n18 layer","fraction of non cohesive sediment of class3,3n18 layer","fraction of non cohesive sediment of class4,4n18 layer","fraction of non cohesive sediment of class5,5n18 layer","fraction of non cohesive sediment of class6,6n18 layer","fraction of non cohesive sediment of class7,7n18 layer","fraction of non cohesive sediment of class8,8n18 layer","fraction of non cohesive sediment of class9,9n18 layer","fraction of non cohesive sediment of class10,10n18 layer","fraction of non cohesive sediment of class11,11n18 layer","fraction of non cohesive sediment of class12,12n18 layer","fraction of non cohesive sediment of class13,13n18 layer","fraction of non cohesive sediment of class14,14n18 layer","fraction of non cohesive sediment of class15,15n18 layer","fraction of non cohesive sediment of class16,16n18 layer","fraction of non cohesive sediment of class17,17n18 layer","fraction of non cohesive sediment of class18,18n18 layer","fraction of non cohesive sediment of class19,19n18 layer","fraction of non cohesive sediment of class**,**n18 layer","fraction of non cohesive sediment of class*,*n19 layer","fraction of non cohesive sediment of class1,1n19 layer","fraction of non cohesive sediment of class2,2n19 layer","fraction of non cohesive sediment of class3,3n19 layer","fraction of non cohesive sediment of class4,4n19 layer","fraction of non cohesive sediment of class5,5n19 layer","fraction of non cohesive sediment of class6,6n19 layer","fraction of non cohesive sediment of class7,7n19 layer","fraction of non cohesive sediment of class8,8n19 layer","fraction of non cohesive sediment of class9,9n19 layer","fraction of non cohesive sediment of class10,10n19 layer","fraction of non cohesive sediment of class11,11n19 layer","fraction of non cohesive sediment of class12,12n19 layer","fraction of non cohesive sediment of class13,13n19 layer","fraction of non cohesive sediment of class14,14n19 layer","fraction of non cohesive sediment of class15,15n19 layer","fraction of non cohesive sediment of class16,16n19 layer","fraction of non cohesive sediment of class17,17n19 layer","fraction of non cohesive sediment of class18,18n19 layer","fraction of non cohesive sediment of class19,19n19 layer","fraction of non cohesive sediment of class**,**n19 layer","fraction of non cohesive sediment of class*,*n** layer","fraction of non cohesive sediment of class1,1n** layer","fraction of non cohesive sediment of class2,2n** layer","fraction of non cohesive sediment of class3,3n** layer","fraction of non cohesive sediment of class4,4n** layer","fraction of non cohesive sediment of class5,5n** layer","fraction of non cohesive sediment of class6,6n** layer","fraction of non cohesive sediment of class7,7n** layer","fraction of non cohesive sediment of class8,8n** layer","fraction of non cohesive sediment of class9,9n** layer","fraction of non cohesive sediment of class10,10n** layer","fraction of non cohesive sediment of class11,11n** layer","fraction of non cohesive sediment of class12,12n** layer","fraction of non cohesive sediment of class13,13n** layer","fraction of non cohesive sediment of class14,14n** layer","fraction of non cohesive sediment of class15,15n** layer","fraction of non cohesive sediment of class16,16n** layer","fraction of non cohesive sediment of class17,17n** layer","fraction of non cohesive sediment of class18,18n** layer","fraction of non cohesive sediment of class19,19n** layer","fraction of non cohesive sediment of class**,**n** layer","solid transport load of class*","solid transport load of class1","solid transport load of class2","solid transport load of class3","solid transport load of class4","solid transport load of class5","solid transport load of class6","solid transport load of class7","solid transport load of class8","solid transport load of class9","solid transport load of class10","solid transport load of class11","solid transport load of class12","solid transport load of class13","solid transport load of class14","solid transport load of class15","solid transport load of class16","solid transport load of class17","solid transport load of class18","solid transport load of class19","solid transport load of class**","solid transport load of class*","solid transport load of class1","solid transport load of class2","solid transport load of class3","solid transport load of class4","solid transport load of class5","solid transport load of class6","solid transport load of class7","solid transport load of class8","solid transport load of class9","solid transport load of class10","solid transport load of class11","solid transport load of class12","solid transport load of class13","solid transport load of class14","solid transport load of class15","solid transport load of class16","solid transport load of class17","solid transport load of class18","solid transport load of class19","solid transport load of class**","solid transport load of class*","solid transport load of class1","solid transport load of class2","solid transport load of class3","solid transport load of class4","solid transport load of class5","solid transport load of class6","solid transport load of class7","solid transport load of class8","solid transport load of class9","solid transport load of class10","solid transport load of class11","solid transport load of class12","solid transport load of class13","solid transport load of class14","solid transport load of class15","solid transport load of class16","solid transport load of class17","solid transport load of class18","solid transport load of class19","solid transport load of class**","solid transport load of class*","solid transport load of class1","solid transport load of class2","solid transport load of class3","solid transport load of class4","solid transport load of class5","solid transport load of class6","solid transport load of class7","solid transport load of class8","solid transport load of class9","solid transport load of class10","solid transport load of class11","solid transport load of class12","solid transport load of class13","solid transport load of class14","solid transport load of class15","solid transport load of class16","solid transport load of class17","solid transport load of class18","solid transport load of class19","solid transport load of class**","solid transport load of class*","solid transport load of class1","solid transport load of class2","solid transport load of class3","solid transport load of class4","solid transport load of class5","solid transport load of class6","solid transport load of class7","solid transport load of class8","solid transport load of class9","solid transport load of class10","solid transport load of class11","solid transport load of class12","solid transport load of class13","solid transport load of class14","solid transport load of class15","solid transport load of class16","solid transport load of class17","solid transport load of class18","solid transport load of class19","solid transport load of class**","solid transport load of class*","solid transport load of class1","solid transport load of class2","solid transport load of class3","solid transport load of class4","solid transport load of class5","solid transport load of class6","solid transport load of class7","solid transport load of class8","solid transport load of class9","solid transport load of class10","solid transport load of class11","solid transport load of class12","solid transport load of class13","solid transport load of class14","solid transport load of class15","solid transport load of class16","solid transport load of class17","solid transport load of class18","solid transport load of class19","solid transport load of class**","solid transport load of class*","solid transport load of class1","solid transport load of class2","solid transport load of class3","solid transport load of class4","solid transport load of class5","solid transport load of class6","solid transport load of class7","solid transport load of class8","solid transport load of class9","solid transport load of class10","solid transport load of class11","solid transport load of class12","solid transport load of class13","solid transport load of class14","solid transport load of class15","solid transport load of class16","solid transport load of class17","solid transport load of class18","solid transport load of class19","solid transport load of class**","solid transport load of class*","solid transport load of class1","solid transport load of class2","solid transport load of class3","solid transport load of class4","solid transport load of class5","solid transport load of class6","solid transport load of class7","solid transport load of class8","solid transport load of class9","solid transport load of class10","solid transport load of class11","solid transport load of class12","solid transport load of class13","solid transport load of class14","solid transport load of class15","solid transport load of class16","solid transport load of class17","solid transport load of class18","solid transport load of class19","solid transport load of class**","solid transport load of class*","solid transport load of class1","solid transport load of class2","solid transport load of class3","solid transport load of class4","solid transport load of class5","solid transport load of class6","solid transport load of class7","solid transport load of class8","solid transport load of class9","solid transport load of class10","solid transport load of class11","solid transport load of class12","solid transport load of class13","solid transport load of class14","solid transport load of class15","solid transport load of class16","solid transport load of class17","solid transport load of class18","solid transport load of class19","solid transport load of class**","solid transport load of class*","solid transport load of class1","solid transport load of class2","solid transport load of class3","solid transport load of class4","solid transport load of class5","solid transport load of class6","solid transport load of class7","solid transport load of class8","solid transport load of class9","solid transport load of class10","solid transport load of class11","solid transport load of class12","solid transport load of class13","solid transport load of class14","solid transport load of class15","solid transport load of class16","solid transport load of class17","solid transport load of class18","solid transport load of class19","solid transport load of class**","solid transport load of class*","solid transport load of class1","solid transport load of class2","solid transport load of class3","solid transport load of class4","solid transport load of class5","solid transport load of class6","solid transport load of class7","solid transport load of class8","solid transport load of class9","solid transport load of class10","solid transport load of class11","solid transport load of class12","solid transport load of class13","solid transport load of class14","solid transport load of class15","solid transport load of class16","solid transport load of class17","solid transport load of class18","solid transport load of class19","solid transport load of class**","solid transport load of class*","solid transport load of class1","solid transport load of class2","solid transport load of class3","solid transport load of class4","solid transport load of class5","solid transport load of class6","solid transport load of class7","solid transport load of class8","solid transport load of class9","solid transport load of class10","solid transport load of class11","solid transport load of class12","solid transport load of class13","solid transport load of class14","solid transport load of class15","solid transport load of class16","solid transport load of class17","solid transport load of class18","solid transport load of class19","solid transport load of class**","solid transport load of class*","solid transport load of class1","solid transport load of class2","solid transport load of class3","solid transport load of class4","solid transport load of class5","solid transport load of class6","solid transport load of class7","solid transport load of class8","solid transport load of class9","solid transport load of class10","solid transport load of class11","solid transport load of class12","solid transport load of class13","solid transport load of class14","solid transport load of class15","solid transport load of class16","solid transport load of class17","solid transport load of class18","solid transport load of class19","solid transport load of class**","solid transport load of class*","solid transport load of class1","solid transport load of class2","solid transport load of class3","solid transport load of class4","solid transport load of class5","solid transport load of class6","solid transport load of class7","solid transport load of class8","solid transport load of class9","solid transport load of class10","solid transport load of class11","solid transport load of class12","solid transport load of class13","solid transport load of class14","solid transport load of class15","solid transport load of class16","solid transport load of class17","solid transport load of class18","solid transport load of class19","solid transport load of class**","solid transport load of class*","solid transport load of class1","solid transport load of class2","solid transport load of class3","solid transport load of class4","solid transport load of class5","solid transport load of class6","solid transport load of class7","solid transport load of class8","solid transport load of class9","solid transport load of class10","solid transport load of class11","solid transport load of class12","solid transport load of class13","solid transport load of class14","solid transport load of class15","solid transport load of class16","solid transport load of class17","solid transport load of class18","solid transport load of class19","solid transport load of class**","solid transport load of class*","solid transport load of class1","solid transport load of class2","solid transport load of class3","solid transport load of class4","solid transport load of class5","solid transport load of class6","solid transport load of class7","solid transport load of class8","solid transport load of class9","solid transport load of class10","solid transport load of class11","solid transport load of class12","solid transport load of class13","solid transport load of class14","solid transport load of class15","solid transport load of class16","solid transport load of class17","solid transport load of class18","solid transport load of class19","solid transport load of class**","solid transport load of class*","solid transport load of class1","solid transport load of class2","solid transport load of class3","solid transport load of class4","solid transport load of class5","solid transport load of class6","solid transport load of class7","solid transport load of class8","solid transport load of class9","solid transport load of class10","solid transport load of class11","solid transport load of class12","solid transport load of class13","solid transport load of class14","solid transport load of class15","solid transport load of class16","solid transport load of class17","solid transport load of class18","solid transport load of class19","solid transport load of class**","solid transport load of class*","solid transport load of class1","solid transport load of class2","solid transport load of class3","solid transport load of class4","solid transport load of class5","solid transport load of class6","solid transport load of class7","solid transport load of class8","solid transport load of class9","solid transport load of class10","solid transport load of class11","solid transport load of class12","solid transport load of class13","solid transport load of class14","solid transport load of class15","solid transport load of class16","solid transport load of class17","solid transport load of class18","solid transport load of class19","solid transport load of class**","solid transport load of class*","solid transport load of class1","solid transport load of class2","solid transport load of class3","solid transport load of class4","solid transport load of class5","solid transport load of class6","solid transport load of class7","solid transport load of class8","solid transport load of class9","solid transport load of class10","solid transport load of class11","solid transport load of class12","solid transport load of class13","solid transport load of class14","solid transport load of class15","solid transport load of class16","solid transport load of class17","solid transport load of class18","solid transport load of class19","solid transport load of class**","solid transport load of class*","solid transport load of class1","solid transport load of class2","solid transport load of class3","solid transport load of class4","solid transport load of class5","solid transport load of class6","solid transport load of class7","solid transport load of class8","solid transport load of class9","solid transport load of class10","solid transport load of class11","solid transport load of class12","solid transport load of class13","solid transport load of class14","solid transport load of class15","solid transport load of class16","solid transport load of class17","solid transport load of class18","solid transport load of class19","solid transport load of class**","solid transport load of class*","solid transport load of class1","solid transport load of class2","solid transport load of class3","solid transport load of class4","solid transport load of class5","solid transport load of class6","solid transport load of class7","solid transport load of class8","solid transport load of class9","solid transport load of class10","solid transport load of class11","solid transport load of class12","solid transport load of class13","solid transport load of class14","solid transport load of class15","solid transport load of class16","solid transport load of class17","solid transport load of class18","solid transport load of class19","solid transport load of class**","mass concentration of class*","mass concentration of class1","mass concentration of class2","mass concentration of class3","mass concentration of class4","mass concentration of class5","mass concentration of class6","mass concentration of class7","mass concentration of class8","mass concentration of class9","mass concentration of class10","mass concentration of class11","mass concentration of class12","mass concentration of class13","mass concentration of class14","mass concentration of class15","mass concentration of class16","mass concentration of class17","mass concentration of class18","mass concentration of class19","mass concentration of class**","mass concentration of class*","mass concentration of class1","mass concentration of class2","mass concentration of class3","mass concentration of class4","mass concentration of class5","mass concentration of class6","mass concentration of class7","mass concentration of class8","mass concentration of class9","mass concentration of class10","mass concentration of class11","mass concentration of class12","mass concentration of class13","mass concentration of class14","mass concentration of class15","mass concentration of class16","mass concentration of class17","mass concentration of class18","mass concentration of class19","mass concentration of class**","mass concentration of class*","mass concentration of class1","mass concentration of class2","mass concentration of class3","mass concentration of class4","mass concentration of class5","mass concentration of class6","mass concentration of class7","mass concentration of class8","mass concentration of class9","mass concentration of class10","mass concentration of class11","mass concentration of class12","mass concentration of class13","mass concentration of class14","mass concentration of class15","mass concentration of class16","mass concentration of class17","mass concentration of class18","mass concentration of class19","mass concentration of class**","mass concentration of class*","mass concentration of class1","mass concentration of class2","mass concentration of class3","mass concentration of class4","mass concentration of class5","mass concentration of class6","mass concentration of class7","mass concentration of class8","mass concentration of class9","mass concentration of class10","mass concentration of class11","mass concentration of class12","mass concentration of class13","mass concentration of class14","mass concentration of class15","mass concentration of class16","mass concentration of class17","mass concentration of class18","mass concentration of class19","mass concentration of class**","mass concentration of class*","mass concentration of class1","mass concentration of class2","mass concentration of class3","mass concentration of class4","mass concentration of class5","mass concentration of class6","mass concentration of class7","mass concentration of class8","mass concentration of class9","mass concentration of class10","mass concentration of class11","mass concentration of class12","mass concentration of class13","mass concentration of class14","mass concentration of class15","mass concentration of class16","mass concentration of class17","mass concentration of class18","mass concentration of class19","mass concentration of class**","mass concentration of class*","mass concentration of class1","mass concentration of class2","mass concentration of class3","mass concentration of class4","mass concentration of class5","mass concentration of class6","mass concentration of class7","mass concentration of class8","mass concentration of class9","mass concentration of class10","mass concentration of class11","mass concentration of class12","mass concentration of class13","mass concentration of class14","mass concentration of class15","mass concentration of class16","mass concentration of class17","mass concentration of class18","mass concentration of class19","mass concentration of class**","mass concentration of class*","mass concentration of class1","mass concentration of class2","mass concentration of class3","mass concentration of class4","mass concentration of class5","mass concentration of class6","mass concentration of class7","mass concentration of class8","mass concentration of class9","mass concentration of class10","mass concentration of class11","mass concentration of class12","mass concentration of class13","mass concentration of class14","mass concentration of class15","mass concentration of class16","mass concentration of class17","mass concentration of class18","mass concentration of class19","mass concentration of class**","mass concentration of class*","mass concentration of class1","mass concentration of class2","mass concentration of class3","mass concentration of class4","mass concentration of class5","mass concentration of class6","mass concentration of class7","mass concentration of class8","mass concentration of class9","mass concentration of class10","mass concentration of class11","mass concentration of class12","mass concentration of class13","mass concentration of class14","mass concentration of class15","mass concentration of class16","mass concentration of class17","mass concentration of class18","mass concentration of class19","mass concentration of class**","mass concentration of class*","mass concentration of class1","mass concentration of class2","mass concentration of class3","mass concentration of class4","mass concentration of class5","mass concentration of class6","mass concentration of class7","mass concentration of class8","mass concentration of class9","mass concentration of class10","mass concentration of class11","mass concentration of class12","mass concentration of class13","mass concentration of class14","mass concentration of class15","mass concentration of class16","mass concentration of class17","mass concentration of class18","mass concentration of class19","mass concentration of class**","mass concentration of class*","mass concentration of class1","mass concentration of class2","mass concentration of class3","mass concentration of class4","mass concentration of class5","mass concentration of class6","mass concentration of class7","mass concentration of class8","mass concentration of class9","mass concentration of class10","mass concentration of class11","mass concentration of class12","mass concentration of class13","mass concentration of class14","mass concentration of class15","mass concentration of class16","mass concentration of class17","mass concentration of class18","mass concentration of class19","mass concentration of class**","mass concentration of class*","mass concentration of class1","mass concentration of class2","mass concentration of class3","mass concentration of class4","mass concentration of class5","mass concentration of class6","mass concentration of class7","mass concentration of class8","mass concentration of class9","mass concentration of class10","mass concentration of class11","mass concentration of class12","mass concentration of class13","mass concentration of class14","mass concentration of class15","mass concentration of class16","mass concentration of class17","mass concentration of class18","mass concentration of class19","mass concentration of class**","mass concentration of class*","mass concentration of class1","mass concentration of class2","mass concentration of class3","mass concentration of class4","mass concentration of class5","mass concentration of class6","mass concentration of class7","mass concentration of class8","mass concentration of class9","mass concentration of class10","mass concentration of class11","mass concentration of class12","mass concentration of class13","mass concentration of class14","mass concentration of class15","mass concentration of class16","mass concentration of class17","mass concentration of class18","mass concentration of class19","mass concentration of class**","mass concentration of class*","mass concentration of class1","mass concentration of class2","mass concentration of class3","mass concentration of class4","mass concentration of class5","mass concentration of class6","mass concentration of class7","mass concentration of class8","mass concentration of class9","mass concentration of class10","mass concentration of class11","mass concentration of class12","mass concentration of class13","mass concentration of class14","mass concentration of class15","mass concentration of class16","mass concentration of class17","mass concentration of class18","mass concentration of class19","mass concentration of class**","mass concentration of class*","mass concentration of class1","mass concentration of class2","mass concentration of class3","mass concentration of class4","mass concentration of class5","mass concentration of class6","mass concentration of class7","mass concentration of class8","mass concentration of class9","mass concentration of class10","mass concentration of class11","mass concentration of class12","mass concentration of class13","mass concentration of class14","mass concentration of class15","mass concentration of class16","mass concentration of class17","mass concentration of class18","mass concentration of class19","mass concentration of class**","mass concentration of class*","mass concentration of class1","mass concentration of class2","mass concentration of class3","mass concentration of class4","mass concentration of class5","mass concentration of class6","mass concentration of class7","mass concentration of class8","mass concentration of class9","mass concentration of class10","mass concentration of class11","mass concentration of class12","mass concentration of class13","mass concentration of class14","mass concentration of class15","mass concentration of class16","mass concentration of class17","mass concentration of class18","mass concentration of class19","mass concentration of class**","mass concentration of class*","mass concentration of class1","mass concentration of class2","mass concentration of class3","mass concentration of class4","mass concentration of class5","mass concentration of class6","mass concentration of class7","mass concentration of class8","mass concentration of class9","mass concentration of class10","mass concentration of class11","mass concentration of class12","mass concentration of class13","mass concentration of class14","mass concentration of class15","mass concentration of class16","mass concentration of class17","mass concentration of class18","mass concentration of class19","mass concentration of class**","mass concentration of class*","mass concentration of class1","mass concentration of class2","mass concentration of class3","mass concentration of class4","mass concentration of class5","mass concentration of class6","mass concentration of class7","mass concentration of class8","mass concentration of class9","mass concentration of class10","mass concentration of class11","mass concentration of class12","mass concentration of class13","mass concentration of class14","mass concentration of class15","mass concentration of class16","mass concentration of class17","mass concentration of class18","mass concentration of class19","mass concentration of class**","mass concentration of class*","mass concentration of class1","mass concentration of class2","mass concentration of class3","mass concentration of class4","mass concentration of class5","mass concentration of class6","mass concentration of class7","mass concentration of class8","mass concentration of class9","mass concentration of class10","mass concentration of class11","mass concentration of class12","mass concentration of class13","mass concentration of class14","mass concentration of class15","mass concentration of class16","mass concentration of class17","mass concentration of class18","mass concentration of class19","mass concentration of class**","mass concentration of class*","mass concentration of class1","mass concentration of class2","mass concentration of class3","mass concentration of class4","mass concentration of class5","mass concentration of class6","mass concentration of class7","mass concentration of class8","mass concentration of class9","mass concentration of class10","mass concentration of class11","mass concentration of class12","mass concentration of class13","mass concentration of class14","mass concentration of class15","mass concentration of class16","mass concentration of class17","mass concentration of class18","mass concentration of class19","mass concentration of class**","mass concentration of class*","mass concentration of class1","mass concentration of class2","mass concentration of class3","mass concentration of class4","mass concentration of class5","mass concentration of class6","mass concentration of class7","mass concentration of class8","mass concentration of class9","mass concentration of class10","mass concentration of class11","mass concentration of class12","mass concentration of class13","mass concentration of class14","mass concentration of class15","mass concentration of class16","mass concentration of class17","mass concentration of class18","mass concentration of class19","mass concentration of class**","mass concentration of class*","mass concentration of class1","mass concentration of class2","mass concentration of class3","mass concentration of class4","mass concentration of class5","mass concentration of class6","mass concentration of class7","mass concentration of class8","mass concentration of class9","mass concentration of class10","mass concentration of class11","mass concentration of class12","mass concentration of class13","mass concentration of class14","mass concentration of class15","mass concentration of class16","mass concentration of class17","mass concentration of class18","mass concentration of class19","mass concentration of class**","mass concentration of class* for 2D graphic printouts","mass concentration of class1 for 2D graphic printouts","mass concentration of class2 for 2D graphic printouts","mass concentration of class3 for 2D graphic printouts","mass concentration of class4 for 2D graphic printouts","mass concentration of class5 for 2D graphic printouts","mass concentration of class6 for 2D graphic printouts","mass concentration of class7 for 2D graphic printouts","mass concentration of class8 for 2D graphic printouts","mass concentration of class9 for 2D graphic printouts","mass concentration of class10 for 2D graphic printouts","mass concentration of class11 for 2D graphic printouts","mass concentration of class12 for 2D graphic printouts","mass concentration of class13 for 2D graphic printouts","mass concentration of class14 for 2D graphic printouts","mass concentration of class15 for 2D graphic printouts","mass concentration of class16 for 2D graphic printouts","mass concentration of class17 for 2D graphic printouts","mass concentration of class18 for 2D graphic printouts","mass concentration of class19 for 2D graphic printouts","mass concentration of class** for 2D graphic printouts","mass concentration of class* for 2D graphic printouts","mass concentration of class1 for 2D graphic printouts","mass concentration of class2 for 2D graphic printouts","mass concentration of class3 for 2D graphic printouts","mass concentration of class4 for 2D graphic printouts","mass concentration of class5 for 2D graphic printouts","mass concentration of class6 for 2D graphic printouts","mass concentration of class7 for 2D graphic printouts","mass concentration of class8 for 2D graphic printouts","mass concentration of class9 for 2D graphic printouts","mass concentration of class10 for 2D graphic printouts","mass concentration of class11 for 2D graphic printouts","mass concentration of class12 for 2D graphic printouts","mass concentration of class13 for 2D graphic printouts","mass concentration of class14 for 2D graphic printouts","mass concentration of class15 for 2D graphic printouts","mass concentration of class16 for 2D graphic printouts","mass concentration of class17 for 2D graphic printouts","mass concentration of class18 for 2D graphic printouts","mass concentration of class19 for 2D graphic printouts","mass concentration of class** for 2D graphic printouts","mass concentration of class* for 2D graphic printouts","mass concentration of class1 for 2D graphic printouts","mass concentration of class2 for 2D graphic printouts","mass concentration of class3 for 2D graphic printouts","mass concentration of class4 for 2D graphic printouts","mass concentration of class5 for 2D graphic printouts","mass concentration of class6 for 2D graphic printouts","mass concentration of class7 for 2D graphic printouts","mass concentration of class8 for 2D graphic printouts","mass concentration of class9 for 2D graphic printouts","mass concentration of class10 for 2D graphic printouts","mass concentration of class11 for 2D graphic printouts","mass concentration of class12 for 2D graphic printouts","mass concentration of class13 for 2D graphic printouts","mass concentration of class14 for 2D graphic printouts","mass concentration of class15 for 2D graphic printouts","mass concentration of class16 for 2D graphic printouts","mass concentration of class17 for 2D graphic printouts","mass concentration of class18 for 2D graphic printouts","mass concentration of class19 for 2D graphic printouts","mass concentration of class** for 2D graphic printouts","mass concentration of class* for 2D graphic printouts","mass concentration of class1 for 2D graphic printouts","mass concentration of class2 for 2D graphic printouts","mass concentration of class3 for 2D graphic printouts","mass concentration of class4 for 2D graphic printouts","mass concentration of class5 for 2D graphic printouts","mass concentration of class6 for 2D graphic printouts","mass concentration of class7 for 2D graphic printouts","mass concentration of class8 for 2D graphic printouts","mass concentration of class9 for 2D graphic printouts","mass concentration of class10 for 2D graphic printouts","mass concentration of class11 for 2D graphic printouts","mass concentration of class12 for 2D graphic printouts","mass concentration of class13 for 2D graphic printouts","mass concentration of class14 for 2D graphic printouts","mass concentration of class15 for 2D graphic printouts","mass concentration of class16 for 2D graphic printouts","mass concentration of class17 for 2D graphic printouts","mass concentration of class18 for 2D graphic printouts","mass concentration of class19 for 2D graphic printouts","mass concentration of class** for 2D graphic printouts","mass concentration of class* for 2D graphic printouts","mass concentration of class1 for 2D graphic printouts","mass concentration of class2 for 2D graphic printouts","mass concentration of class3 for 2D graphic printouts","mass concentration of class4 for 2D graphic printouts","mass concentration of class5 for 2D graphic printouts","mass concentration of class6 for 2D graphic printouts","mass concentration of class7 for 2D graphic printouts","mass concentration of class8 for 2D graphic printouts","mass concentration of class9 for 2D graphic printouts","mass concentration of class10 for 2D graphic printouts","mass concentration of class11 for 2D graphic printouts","mass concentration of class12 for 2D graphic printouts","mass concentration of class13 for 2D graphic printouts","mass concentration of class14 for 2D graphic printouts","mass concentration of class15 for 2D graphic printouts","mass concentration of class16 for 2D graphic printouts","mass concentration of class17 for 2D graphic printouts","mass concentration of class18 for 2D graphic printouts","mass concentration of class19 for 2D graphic printouts","mass concentration of class** for 2D graphic printouts","mass concentration of class* for 2D graphic printouts","mass concentration of class1 for 2D graphic printouts","mass concentration of class2 for 2D graphic printouts","mass concentration of class3 for 2D graphic printouts","mass concentration of class4 for 2D graphic printouts","mass concentration of class5 for 2D graphic printouts","mass concentration of class6 for 2D graphic printouts","mass concentration of class7 for 2D graphic printouts","mass concentration of class8 for 2D graphic printouts","mass concentration of class9 for 2D graphic printouts","mass concentration of class10 for 2D graphic printouts","mass concentration of class11 for 2D graphic printouts","mass concentration of class12 for 2D graphic printouts","mass concentration of class13 for 2D graphic printouts","mass concentration of class14 for 2D graphic printouts","mass concentration of class15 for 2D graphic printouts","mass concentration of class16 for 2D graphic printouts","mass concentration of class17 for 2D graphic printouts","mass concentration of class18 for 2D graphic printouts","mass concentration of class19 for 2D graphic printouts","mass concentration of class** for 2D graphic printouts","mass concentration of class* for 2D graphic printouts","mass concentration of class1 for 2D graphic printouts","mass concentration of class2 for 2D graphic printouts","mass concentration of class3 for 2D graphic printouts","mass concentration of class4 for 2D graphic printouts","mass concentration of class5 for 2D graphic printouts","mass concentration of class6 for 2D graphic printouts","mass concentration of class7 for 2D graphic printouts","mass concentration of class8 for 2D graphic printouts","mass concentration of class9 for 2D graphic printouts","mass concentration of class10 for 2D graphic printouts","mass concentration of class11 for 2D graphic printouts","mass concentration of class12 for 2D graphic printouts","mass concentration of class13 for 2D graphic printouts","mass concentration of class14 for 2D graphic printouts","mass concentration of class15 for 2D graphic printouts","mass concentration of class16 for 2D graphic printouts","mass concentration of class17 for 2D graphic printouts","mass concentration of class18 for 2D graphic printouts","mass concentration of class19 for 2D graphic printouts","mass concentration of class** for 2D graphic printouts","mass concentration of class* for 2D graphic printouts","mass concentration of class1 for 2D graphic printouts","mass concentration of class2 for 2D graphic printouts","mass concentration of class3 for 2D graphic printouts","mass concentration of class4 for 2D graphic printouts","mass concentration of class5 for 2D graphic printouts","mass concentration of class6 for 2D graphic printouts","mass concentration of class7 for 2D graphic printouts","mass concentration of class8 for 2D graphic printouts","mass concentration of class9 for 2D graphic printouts","mass concentration of class10 for 2D graphic printouts","mass concentration of class11 for 2D graphic printouts","mass concentration of class12 for 2D graphic printouts","mass concentration of class13 for 2D graphic printouts","mass concentration of class14 for 2D graphic printouts","mass concentration of class15 for 2D graphic printouts","mass concentration of class16 for 2D graphic printouts","mass concentration of class17 for 2D graphic printouts","mass concentration of class18 for 2D graphic printouts","mass concentration of class19 for 2D graphic printouts","mass concentration of class** for 2D graphic printouts","mass concentration of class* for 2D graphic printouts","mass concentration of class1 for 2D graphic printouts","mass concentration of class2 for 2D graphic printouts","mass concentration of class3 for 2D graphic printouts","mass concentration of class4 for 2D graphic printouts","mass concentration of class5 for 2D graphic printouts","mass concentration of class6 for 2D graphic printouts","mass concentration of class7 for 2D graphic printouts","mass concentration of class8 for 2D graphic printouts","mass concentration of class9 for 2D graphic printouts","mass concentration of class10 for 2D graphic printouts","mass concentration of class11 for 2D graphic printouts","mass concentration of class12 for 2D graphic printouts","mass concentration of class13 for 2D graphic printouts","mass concentration of class14 for 2D graphic printouts","mass concentration of class15 for 2D graphic printouts","mass concentration of class16 for 2D graphic printouts","mass concentration of class17 for 2D graphic printouts","mass concentration of class18 for 2D graphic printouts","mass concentration of class19 for 2D graphic printouts","mass concentration of class** for 2D graphic printouts","mass concentration of class* for 2D graphic printouts","mass concentration of class1 for 2D graphic printouts","mass concentration of class2 for 2D graphic printouts","mass concentration of class3 for 2D graphic printouts","mass concentration of class4 for 2D graphic printouts","mass concentration of class5 for 2D graphic printouts","mass concentration of class6 for 2D graphic printouts","mass concentration of class7 for 2D graphic printouts","mass concentration of class8 for 2D graphic printouts","mass concentration of class9 for 2D graphic printouts","mass concentration of class10 for 2D graphic printouts","mass concentration of class11 for 2D graphic printouts","mass concentration of class12 for 2D graphic printouts","mass concentration of class13 for 2D graphic printouts","mass concentration of class14 for 2D graphic printouts","mass concentration of class15 for 2D graphic printouts","mass concentration of class16 for 2D graphic printouts","mass concentration of class17 for 2D graphic printouts","mass concentration of class18 for 2D graphic printouts","mass concentration of class19 for 2D graphic printouts","mass concentration of class** for 2D graphic printouts","mass concentration of class* for 2D graphic printouts","mass concentration of class1 for 2D graphic printouts","mass concentration of class2 for 2D graphic printouts","mass concentration of class3 for 2D graphic printouts","mass concentration of class4 for 2D graphic printouts","mass concentration of class5 for 2D graphic printouts","mass concentration of class6 for 2D graphic printouts","mass concentration of class7 for 2D graphic printouts","mass concentration of class8 for 2D graphic printouts","mass concentration of class9 for 2D graphic printouts","mass concentration of class10 for 2D graphic printouts","mass concentration of class11 for 2D graphic printouts","mass concentration of class12 for 2D graphic printouts","mass concentration of class13 for 2D graphic printouts","mass concentration of class14 for 2D graphic printouts","mass concentration of class15 for 2D graphic printouts","mass concentration of class16 for 2D graphic printouts","mass concentration of class17 for 2D graphic printouts","mass concentration of class18 for 2D graphic printouts","mass concentration of class19 for 2D graphic printouts","mass concentration of class** for 2D graphic printouts","mass concentration of class* for 2D graphic printouts","mass concentration of class1 for 2D graphic printouts","mass concentration of class2 for 2D graphic printouts","mass concentration of class3 for 2D graphic printouts","mass concentration of class4 for 2D graphic printouts","mass concentration of class5 for 2D graphic printouts","mass concentration of class6 for 2D graphic printouts","mass concentration of class7 for 2D graphic printouts","mass concentration of class8 for 2D graphic printouts","mass concentration of class9 for 2D graphic printouts","mass concentration of class10 for 2D graphic printouts","mass concentration of class11 for 2D graphic printouts","mass concentration of class12 for 2D graphic printouts","mass concentration of class13 for 2D graphic printouts","mass concentration of class14 for 2D graphic printouts","mass concentration of class15 for 2D graphic printouts","mass concentration of class16 for 2D graphic printouts","mass concentration of class17 for 2D graphic printouts","mass concentration of class18 for 2D graphic printouts","mass concentration of class19 for 2D graphic printouts","mass concentration of class** for 2D graphic printouts","mass concentration of class* for 2D graphic printouts","mass concentration of class1 for 2D graphic printouts","mass concentration of class2 for 2D graphic printouts","mass concentration of class3 for 2D graphic printouts","mass concentration of class4 for 2D graphic printouts","mass concentration of class5 for 2D graphic printouts","mass concentration of class6 for 2D graphic printouts","mass concentration of class7 for 2D graphic printouts","mass concentration of class8 for 2D graphic printouts","mass concentration of class9 for 2D graphic printouts","mass concentration of class10 for 2D graphic printouts","mass concentration of class11 for 2D graphic printouts","mass concentration of class12 for 2D graphic printouts","mass concentration of class13 for 2D graphic printouts","mass concentration of class14 for 2D graphic printouts","mass concentration of class15 for 2D graphic printouts","mass concentration of class16 for 2D graphic printouts","mass concentration of class17 for 2D graphic printouts","mass concentration of class18 for 2D graphic printouts","mass concentration of class19 for 2D graphic printouts","mass concentration of class** for 2D graphic printouts","mass concentration of class* for 2D graphic printouts","mass concentration of class1 for 2D graphic printouts","mass concentration of class2 for 2D graphic printouts","mass concentration of class3 for 2D graphic printouts","mass concentration of class4 for 2D graphic printouts","mass concentration of class5 for 2D graphic printouts","mass concentration of class6 for 2D graphic printouts","mass concentration of class7 for 2D graphic printouts","mass concentration of class8 for 2D graphic printouts","mass concentration of class9 for 2D graphic printouts","mass concentration of class10 for 2D graphic printouts","mass concentration of class11 for 2D graphic printouts","mass concentration of class12 for 2D graphic printouts","mass concentration of class13 for 2D graphic printouts","mass concentration of class14 for 2D graphic printouts","mass concentration of class15 for 2D graphic printouts","mass concentration of class16 for 2D graphic printouts","mass concentration of class17 for 2D graphic printouts","mass concentration of class18 for 2D graphic printouts","mass concentration of class19 for 2D graphic printouts","mass concentration of class** for 2D graphic printouts","mass concentration of class* for 2D graphic printouts","mass concentration of class1 for 2D graphic printouts","mass concentration of class2 for 2D graphic printouts","mass concentration of class3 for 2D graphic printouts","mass concentration of class4 for 2D graphic printouts","mass concentration of class5 for 2D graphic printouts","mass concentration of class6 for 2D graphic printouts","mass concentration of class7 for 2D graphic printouts","mass concentration of class8 for 2D graphic printouts","mass concentration of class9 for 2D graphic printouts","mass concentration of class10 for 2D graphic printouts","mass concentration of class11 for 2D graphic printouts","mass concentration of class12 for 2D graphic printouts","mass concentration of class13 for 2D graphic printouts","mass concentration of class14 for 2D graphic printouts","mass concentration of class15 for 2D graphic printouts","mass concentration of class16 for 2D graphic printouts","mass concentration of class17 for 2D graphic printouts","mass concentration of class18 for 2D graphic printouts","mass concentration of class19 for 2D graphic printouts","mass concentration of class** for 2D graphic printouts","mass concentration of class* for 2D graphic printouts","mass concentration of class1 for 2D graphic printouts","mass concentration of class2 for 2D graphic printouts","mass concentration of class3 for 2D graphic printouts","mass concentration of class4 for 2D graphic printouts","mass concentration of class5 for 2D graphic printouts","mass concentration of class6 for 2D graphic printouts","mass concentration of class7 for 2D graphic printouts","mass concentration of class8 for 2D graphic printouts","mass concentration of class9 for 2D graphic printouts","mass concentration of class10 for 2D graphic printouts","mass concentration of class11 for 2D graphic printouts","mass concentration of class12 for 2D graphic printouts","mass concentration of class13 for 2D graphic printouts","mass concentration of class14 for 2D graphic printouts","mass concentration of class15 for 2D graphic printouts","mass concentration of class16 for 2D graphic printouts","mass concentration of class17 for 2D graphic printouts","mass concentration of class18 for 2D graphic printouts","mass concentration of class19 for 2D graphic printouts","mass concentration of class** for 2D graphic printouts","mass concentration of class* for 2D graphic printouts","mass concentration of class1 for 2D graphic printouts","mass concentration of class2 for 2D graphic printouts","mass concentration of class3 for 2D graphic printouts","mass concentration of class4 for 2D graphic printouts","mass concentration of class5 for 2D graphic printouts","mass concentration of class6 for 2D graphic printouts","mass concentration of class7 for 2D graphic printouts","mass concentration of class8 for 2D graphic printouts","mass concentration of class9 for 2D graphic printouts","mass concentration of class10 for 2D graphic printouts","mass concentration of class11 for 2D graphic printouts","mass concentration of class12 for 2D graphic printouts","mass concentration of class13 for 2D graphic printouts","mass concentration of class14 for 2D graphic printouts","mass concentration of class15 for 2D graphic printouts","mass concentration of class16 for 2D graphic printouts","mass concentration of class17 for 2D graphic printouts","mass concentration of class18 for 2D graphic printouts","mass concentration of class19 for 2D graphic printouts","mass concentration of class** for 2D graphic printouts","mass concentration of class* for 2D graphic printouts","mass concentration of class1 for 2D graphic printouts","mass concentration of class2 for 2D graphic printouts","mass concentration of class3 for 2D graphic printouts","mass concentration of class4 for 2D graphic printouts","mass concentration of class5 for 2D graphic printouts","mass concentration of class6 for 2D graphic printouts","mass concentration of class7 for 2D graphic printouts","mass concentration of class8 for 2D graphic printouts","mass concentration of class9 for 2D graphic printouts","mass concentration of class10 for 2D graphic printouts","mass concentration of class11 for 2D graphic printouts","mass concentration of class12 for 2D graphic printouts","mass concentration of class13 for 2D graphic printouts","mass concentration of class14 for 2D graphic printouts","mass concentration of class15 for 2D graphic printouts","mass concentration of class16 for 2D graphic printouts","mass concentration of class17 for 2D graphic printouts","mass concentration of class18 for 2D graphic printouts","mass concentration of class19 for 2D graphic printouts","mass concentration of class** for 2D graphic printouts","mass concentration of class* for 2D graphic printouts","mass concentration of class1 for 2D graphic printouts","mass concentration of class2 for 2D graphic printouts","mass concentration of class3 for 2D graphic printouts","mass concentration of class4 for 2D graphic printouts","mass concentration of class5 for 2D graphic printouts","mass concentration of class6 for 2D graphic printouts","mass concentration of class7 for 2D graphic printouts","mass concentration of class8 for 2D graphic printouts","mass concentration of class9 for 2D graphic printouts","mass concentration of class10 for 2D graphic printouts","mass concentration of class11 for 2D graphic printouts","mass concentration of class12 for 2D graphic printouts","mass concentration of class13 for 2D graphic printouts","mass concentration of class14 for 2D graphic printouts","mass concentration of class15 for 2D graphic printouts","mass concentration of class16 for 2D graphic printouts","mass concentration of class17 for 2D graphic printouts","mass concentration of class18 for 2D graphic printouts","mass concentration of class19 for 2D graphic printouts","mass concentration of class** for 2D graphic printouts","mass concentration of class* for 2D graphic printouts","mass concentration of class1 for 2D graphic printouts","mass concentration of class2 for 2D graphic printouts","mass concentration of class3 for 2D graphic printouts","mass concentration of class4 for 2D graphic printouts","mass concentration of class5 for 2D graphic printouts","mass concentration of class6 for 2D graphic printouts","mass concentration of class7 for 2D graphic printouts","mass concentration of class8 for 2D graphic printouts","mass concentration of class9 for 2D graphic printouts","mass concentration of class10 for 2D graphic printouts","mass concentration of class11 for 2D graphic printouts","mass concentration of class12 for 2D graphic printouts","mass concentration of class13 for 2D graphic printouts","mass concentration of class14 for 2D graphic printouts","mass concentration of class15 for 2D graphic printouts","mass concentration of class16 for 2D graphic printouts","mass concentration of class17 for 2D graphic printouts","mass concentration of class18 for 2D graphic printouts","mass concentration of class19 for 2D graphic printouts","mass concentration of class** for 2D graphic printouts","mass concentration of class* for 2D graphic printouts","mass concentration of class1 for 2D graphic printouts","mass concentration of class2 for 2D graphic printouts","mass concentration of class3 for 2D graphic printouts","mass concentration of class4 for 2D graphic printouts","mass concentration of class5 for 2D graphic printouts","mass concentration of class6 for 2D graphic printouts","mass concentration of class7 for 2D graphic printouts","mass concentration of class8 for 2D graphic printouts","mass concentration of class9 for 2D graphic printouts","mass concentration of class10 for 2D graphic printouts","mass concentration of class11 for 2D graphic printouts","mass concentration of class12 for 2D graphic printouts","mass concentration of class13 for 2D graphic printouts","mass concentration of class14 for 2D graphic printouts","mass concentration of class15 for 2D graphic printouts","mass concentration of class16 for 2D graphic printouts","mass concentration of class17 for 2D graphic printouts","mass concentration of class18 for 2D graphic printouts","mass concentration of class19 for 2D graphic printouts","mass concentration of class** for 2D graphic printouts","sediment* viscosity along x axis (m2/s) - only 3D","sediment1 viscosity along x axis (m2/s) - only 3D","sediment2 viscosity along x axis (m2/s) - only 3D","sediment3 viscosity along x axis (m2/s) - only 3D","sediment4 viscosity along x axis (m2/s) - only 3D","sediment5 viscosity along x axis (m2/s) - only 3D","sediment6 viscosity along x axis (m2/s) - only 3D","sediment7 viscosity along x axis (m2/s) - only 3D","sediment8 viscosity along x axis (m2/s) - only 3D","sediment9 viscosity along x axis (m2/s) - only 3D","sediment10 viscosity along x axis (m2/s) - only 3D","sediment11 viscosity along x axis (m2/s) - only 3D","sediment12 viscosity along x axis (m2/s) - only 3D","sediment13 viscosity along x axis (m2/s) - only 3D","sediment14 viscosity along x axis (m2/s) - only 3D","sediment15 viscosity along x axis (m2/s) - only 3D","sediment16 viscosity along x axis (m2/s) - only 3D","sediment17 viscosity along x axis (m2/s) - only 3D","sediment18 viscosity along x axis (m2/s) - only 3D","sediment19 viscosity along x axis (m2/s) - only 3D","sediment** viscosity along x axis (m2/s) - only 3D","sediment* viscosity along x axis (m2/s) - only 3D","sediment1 viscosity along x axis (m2/s) - only 3D","sediment2 viscosity along x axis (m2/s) - only 3D","sediment3 viscosity along x axis (m2/s) - only 3D","sediment4 viscosity along x axis (m2/s) - only 3D","sediment5 viscosity along x axis (m2/s) - only 3D","sediment6 viscosity along x axis (m2/s) - only 3D","sediment7 viscosity along x axis (m2/s) - only 3D","sediment8 viscosity along x axis (m2/s) - only 3D","sediment9 viscosity along x axis (m2/s) - only 3D","sediment10 viscosity along x axis (m2/s) - only 3D","sediment11 viscosity along x axis (m2/s) - only 3D","sediment12 viscosity along x axis (m2/s) - only 3D","sediment13 viscosity along x axis (m2/s) - only 3D","sediment14 viscosity along x axis (m2/s) - only 3D","sediment15 viscosity along x axis (m2/s) - only 3D","sediment16 viscosity along x axis (m2/s) - only 3D","sediment17 viscosity along x axis (m2/s) - only 3D","sediment18 viscosity along x axis (m2/s) - only 3D","sediment19 viscosity along x axis (m2/s) - only 3D","sediment** viscosity along x axis (m2/s) - only 3D","sediment* viscosity along x axis (m2/s) - only 3D","sediment1 viscosity along x axis (m2/s) - only 3D","sediment2 viscosity along x axis (m2/s) - only 3D","sediment3 viscosity along x axis (m2/s) - only 3D","sediment4 viscosity along x axis (m2/s) - only 3D","sediment5 viscosity along x axis (m2/s) - only 3D","sediment6 viscosity along x axis (m2/s) - only 3D","sediment7 viscosity along x axis (m2/s) - only 3D","sediment8 viscosity along x axis (m2/s) - only 3D","sediment9 viscosity along x axis (m2/s) - only 3D","sediment10 viscosity along x axis (m2/s) - only 3D","sediment11 viscosity along x axis (m2/s) - only 3D","sediment12 viscosity along x axis (m2/s) - only 3D","sediment13 viscosity along x axis (m2/s) - only 3D","sediment14 viscosity along x axis (m2/s) - only 3D","sediment15 viscosity along x axis (m2/s) - only 3D","sediment16 viscosity along x axis (m2/s) - only 3D","sediment17 viscosity along x axis (m2/s) - only 3D","sediment18 viscosity along x axis (m2/s) - only 3D","sediment19 viscosity along x axis (m2/s) - only 3D","sediment** viscosity along x axis (m2/s) - only 3D","sediment* viscosity along x axis (m2/s) - only 3D","sediment1 viscosity along x axis (m2/s) - only 3D","sediment2 viscosity along x axis (m2/s) - only 3D","sediment3 viscosity along x axis (m2/s) - only 3D","sediment4 viscosity along x axis (m2/s) - only 3D","sediment5 viscosity along x axis (m2/s) - only 3D","sediment6 viscosity along x axis (m2/s) - only 3D","sediment7 viscosity along x axis (m2/s) - only 3D","sediment8 viscosity along x axis (m2/s) - only 3D","sediment9 viscosity along x axis (m2/s) - only 3D","sediment10 viscosity along x axis (m2/s) - only 3D","sediment11 viscosity along x axis (m2/s) - only 3D","sediment12 viscosity along x axis (m2/s) - only 3D","sediment13 viscosity along x axis (m2/s) - only 3D","sediment14 viscosity along x axis (m2/s) - only 3D","sediment15 viscosity along x axis (m2/s) - only 3D","sediment16 viscosity along x axis (m2/s) - only 3D","sediment17 viscosity along x axis (m2/s) - only 3D","sediment18 viscosity along x axis (m2/s) - only 3D","sediment19 viscosity along x axis (m2/s) - only 3D","sediment** viscosity along x axis (m2/s) - only 3D","sediment* viscosity along x axis (m2/s) - only 3D","sediment1 viscosity along x axis (m2/s) - only 3D","sediment2 viscosity along x axis (m2/s) - only 3D","sediment3 viscosity along x axis (m2/s) - only 3D","sediment4 viscosity along x axis (m2/s) - only 3D","sediment5 viscosity along x axis (m2/s) - only 3D","sediment6 viscosity along x axis (m2/s) - only 3D","sediment7 viscosity along x axis (m2/s) - only 3D","sediment8 viscosity along x axis (m2/s) - only 3D","sediment9 viscosity along x axis (m2/s) - only 3D","sediment10 viscosity along x axis (m2/s) - only 3D","sediment11 viscosity along x axis (m2/s) - only 3D","sediment12 viscosity along x axis (m2/s) - only 3D","sediment13 viscosity along x axis (m2/s) - only 3D","sediment14 viscosity along x axis (m2/s) - only 3D","sediment15 viscosity along x axis (m2/s) - only 3D","sediment16 viscosity along x axis (m2/s) - only 3D","sediment17 viscosity along x axis (m2/s) - only 3D","sediment18 viscosity along x axis (m2/s) - only 3D","sediment19 viscosity along x axis (m2/s) - only 3D","sediment** viscosity along x axis (m2/s) - only 3D","sediment* viscosity along x axis (m2/s) - only 3D","sediment1 viscosity along x axis (m2/s) - only 3D","sediment2 viscosity along x axis (m2/s) - only 3D","sediment3 viscosity along x axis (m2/s) - only 3D","sediment4 viscosity along x axis (m2/s) - only 3D","sediment5 viscosity along x axis (m2/s) - only 3D","sediment6 viscosity along x axis (m2/s) - only 3D","sediment7 viscosity along x axis (m2/s) - only 3D","sediment8 viscosity along x axis (m2/s) - only 3D","sediment9 viscosity along x axis (m2/s) - only 3D","sediment10 viscosity along x axis (m2/s) - only 3D","sediment11 viscosity along x axis (m2/s) - only 3D","sediment12 viscosity along x axis (m2/s) - only 3D","sediment13 viscosity along x axis (m2/s) - only 3D","sediment14 viscosity along x axis (m2/s) - only 3D","sediment15 viscosity along x axis (m2/s) - only 3D","sediment16 viscosity along x axis (m2/s) - only 3D","sediment17 viscosity along x axis (m2/s) - only 3D","sediment18 viscosity along x axis (m2/s) - only 3D","sediment19 viscosity along x axis (m2/s) - only 3D","sediment** viscosity along x axis (m2/s) - only 3D","sediment* viscosity along x axis (m2/s) - only 3D","sediment1 viscosity along x axis (m2/s) - only 3D","sediment2 viscosity along x axis (m2/s) - only 3D","sediment3 viscosity along x axis (m2/s) - only 3D","sediment4 viscosity along x axis (m2/s) - only 3D","sediment5 viscosity along x axis (m2/s) - only 3D","sediment6 viscosity along x axis (m2/s) - only 3D","sediment7 viscosity along x axis (m2/s) - only 3D","sediment8 viscosity along x axis (m2/s) - only 3D","sediment9 viscosity along x axis (m2/s) - only 3D","sediment10 viscosity along x axis (m2/s) - only 3D","sediment11 viscosity along x axis (m2/s) - only 3D","sediment12 viscosity along x axis (m2/s) - only 3D","sediment13 viscosity along x axis (m2/s) - only 3D","sediment14 viscosity along x axis (m2/s) - only 3D","sediment15 viscosity along x axis (m2/s) - only 3D","sediment16 viscosity along x axis (m2/s) - only 3D","sediment17 viscosity along x axis (m2/s) - only 3D","sediment18 viscosity along x axis (m2/s) - only 3D","sediment19 viscosity along x axis (m2/s) - only 3D","sediment** viscosity along x axis (m2/s) - only 3D","sediment* viscosity along x axis (m2/s) - only 3D","sediment1 viscosity along x axis (m2/s) - only 3D","sediment2 viscosity along x axis (m2/s) - only 3D","sediment3 viscosity along x axis (m2/s) - only 3D","sediment4 viscosity along x axis (m2/s) - only 3D","sediment5 viscosity along x axis (m2/s) - only 3D","sediment6 viscosity along x axis (m2/s) - only 3D","sediment7 viscosity along x axis (m2/s) - only 3D","sediment8 viscosity along x axis (m2/s) - only 3D","sediment9 viscosity along x axis (m2/s) - only 3D","sediment10 viscosity along x axis (m2/s) - only 3D","sediment11 viscosity along x axis (m2/s) - only 3D","sediment12 viscosity along x axis (m2/s) - only 3D","sediment13 viscosity along x axis (m2/s) - only 3D","sediment14 viscosity along x axis (m2/s) - only 3D","sediment15 viscosity along x axis (m2/s) - only 3D","sediment16 viscosity along x axis (m2/s) - only 3D","sediment17 viscosity along x axis (m2/s) - only 3D","sediment18 viscosity along x axis (m2/s) - only 3D","sediment19 viscosity along x axis (m2/s) - only 3D","sediment** viscosity along x axis (m2/s) - only 3D","sediment* viscosity along x axis (m2/s) - only 3D","sediment1 viscosity along x axis (m2/s) - only 3D","sediment2 viscosity along x axis (m2/s) - only 3D","sediment3 viscosity along x axis (m2/s) - only 3D","sediment4 viscosity along x axis (m2/s) - only 3D","sediment5 viscosity along x axis (m2/s) - only 3D","sediment6 viscosity along x axis (m2/s) - only 3D","sediment7 viscosity along x axis (m2/s) - only 3D","sediment8 viscosity along x axis (m2/s) - only 3D","sediment9 viscosity along x axis (m2/s) - only 3D","sediment10 viscosity along x axis (m2/s) - only 3D","sediment11 viscosity along x axis (m2/s) - only 3D","sediment12 viscosity along x axis (m2/s) - only 3D","sediment13 viscosity along x axis (m2/s) - only 3D","sediment14 viscosity along x axis (m2/s) - only 3D","sediment15 viscosity along x axis (m2/s) - only 3D","sediment16 viscosity along x axis (m2/s) - only 3D","sediment17 viscosity along x axis (m2/s) - only 3D","sediment18 viscosity along x axis (m2/s) - only 3D","sediment19 viscosity along x axis (m2/s) - only 3D","sediment** viscosity along x axis (m2/s) - only 3D","sediment* viscosity along x axis (m2/s) - only 3D","sediment1 viscosity along x axis (m2/s) - only 3D","sediment2 viscosity along x axis (m2/s) - only 3D","sediment3 viscosity along x axis (m2/s) - only 3D","sediment4 viscosity along x axis (m2/s) - only 3D","sediment5 viscosity along x axis (m2/s) - only 3D","sediment6 viscosity along x axis (m2/s) - only 3D","sediment7 viscosity along x axis (m2/s) - only 3D","sediment8 viscosity along x axis (m2/s) - only 3D","sediment9 viscosity along x axis (m2/s) - only 3D","sediment10 viscosity along x axis (m2/s) - only 3D","sediment11 viscosity along x axis (m2/s) - only 3D","sediment12 viscosity along x axis (m2/s) - only 3D","sediment13 viscosity along x axis (m2/s) - only 3D","sediment14 viscosity along x axis (m2/s) - only 3D","sediment15 viscosity along x axis (m2/s) - only 3D","sediment16 viscosity along x axis (m2/s) - only 3D","sediment17 viscosity along x axis (m2/s) - only 3D","sediment18 viscosity along x axis (m2/s) - only 3D","sediment19 viscosity along x axis (m2/s) - only 3D","sediment** viscosity along x axis (m2/s) - only 3D","sediment* viscosity along x axis (m2/s) - only 3D","sediment1 viscosity along x axis (m2/s) - only 3D","sediment2 viscosity along x axis (m2/s) - only 3D","sediment3 viscosity along x axis (m2/s) - only 3D","sediment4 viscosity along x axis (m2/s) - only 3D","sediment5 viscosity along x axis (m2/s) - only 3D","sediment6 viscosity along x axis (m2/s) - only 3D","sediment7 viscosity along x axis (m2/s) - only 3D","sediment8 viscosity along x axis (m2/s) - only 3D","sediment9 viscosity along x axis (m2/s) - only 3D","sediment10 viscosity along x axis (m2/s) - only 3D","sediment11 viscosity along x axis (m2/s) - only 3D","sediment12 viscosity along x axis (m2/s) - only 3D","sediment13 viscosity along x axis (m2/s) - only 3D","sediment14 viscosity along x axis (m2/s) - only 3D","sediment15 viscosity along x axis (m2/s) - only 3D","sediment16 viscosity along x axis (m2/s) - only 3D","sediment17 viscosity along x axis (m2/s) - only 3D","sediment18 viscosity along x axis (m2/s) - only 3D","sediment19 viscosity along x axis (m2/s) - only 3D","sediment** viscosity along x axis (m2/s) - only 3D","sediment* viscosity along x axis (m2/s) - only 3D","sediment1 viscosity along x axis (m2/s) - only 3D","sediment2 viscosity along x axis (m2/s) - only 3D","sediment3 viscosity along x axis (m2/s) - only 3D","sediment4 viscosity along x axis (m2/s) - only 3D","sediment5 viscosity along x axis (m2/s) - only 3D","sediment6 viscosity along x axis (m2/s) - only 3D","sediment7 viscosity along x axis (m2/s) - only 3D","sediment8 viscosity along x axis (m2/s) - only 3D","sediment9 viscosity along x axis (m2/s) - only 3D","sediment10 viscosity along x axis (m2/s) - only 3D","sediment11 viscosity along x axis (m2/s) - only 3D","sediment12 viscosity along x axis (m2/s) - only 3D","sediment13 viscosity along x axis (m2/s) - only 3D","sediment14 viscosity along x axis (m2/s) - only 3D","sediment15 viscosity along x axis (m2/s) - only 3D","sediment16 viscosity along x axis (m2/s) - only 3D","sediment17 viscosity along x axis (m2/s) - only 3D","sediment18 viscosity along x axis (m2/s) - only 3D","sediment19 viscosity along x axis (m2/s) - only 3D","sediment** viscosity along x axis (m2/s) - only 3D","sediment* viscosity along x axis (m2/s) - only 3D","sediment1 viscosity along x axis (m2/s) - only 3D","sediment2 viscosity along x axis (m2/s) - only 3D","sediment3 viscosity along x axis (m2/s) - only 3D","sediment4 viscosity along x axis (m2/s) - only 3D","sediment5 viscosity along x axis (m2/s) - only 3D","sediment6 viscosity along x axis (m2/s) - only 3D","sediment7 viscosity along x axis (m2/s) - only 3D","sediment8 viscosity along x axis (m2/s) - only 3D","sediment9 viscosity along x axis (m2/s) - only 3D","sediment10 viscosity along x axis (m2/s) - only 3D","sediment11 viscosity along x axis (m2/s) - only 3D","sediment12 viscosity along x axis (m2/s) - only 3D","sediment13 viscosity along x axis (m2/s) - only 3D","sediment14 viscosity along x axis (m2/s) - only 3D","sediment15 viscosity along x axis (m2/s) - only 3D","sediment16 viscosity along x axis (m2/s) - only 3D","sediment17 viscosity along x axis (m2/s) - only 3D","sediment18 viscosity along x axis (m2/s) - only 3D","sediment19 viscosity along x axis (m2/s) - only 3D","sediment** viscosity along x axis (m2/s) - only 3D","sediment* viscosity along x axis (m2/s) - only 3D","sediment1 viscosity along x axis (m2/s) - only 3D","sediment2 viscosity along x axis (m2/s) - only 3D","sediment3 viscosity along x axis (m2/s) - only 3D","sediment4 viscosity along x axis (m2/s) - only 3D","sediment5 viscosity along x axis (m2/s) - only 3D","sediment6 viscosity along x axis (m2/s) - only 3D","sediment7 viscosity along x axis (m2/s) - only 3D","sediment8 viscosity along x axis (m2/s) - only 3D","sediment9 viscosity along x axis (m2/s) - only 3D","sediment10 viscosity along x axis (m2/s) - only 3D","sediment11 viscosity along x axis (m2/s) - only 3D","sediment12 viscosity along x axis (m2/s) - only 3D","sediment13 viscosity along x axis (m2/s) - only 3D","sediment14 viscosity along x axis (m2/s) - only 3D","sediment15 viscosity along x axis (m2/s) - only 3D","sediment16 viscosity along x axis (m2/s) - only 3D","sediment17 viscosity along x axis (m2/s) - only 3D","sediment18 viscosity along x axis (m2/s) - only 3D","sediment19 viscosity along x axis (m2/s) - only 3D","sediment** viscosity along x axis (m2/s) - only 3D","sediment* viscosity along x axis (m2/s) - only 3D","sediment1 viscosity along x axis (m2/s) - only 3D","sediment2 viscosity along x axis (m2/s) - only 3D","sediment3 viscosity along x axis (m2/s) - only 3D","sediment4 viscosity along x axis (m2/s) - only 3D","sediment5 viscosity along x axis (m2/s) - only 3D","sediment6 viscosity along x axis (m2/s) - only 3D","sediment7 viscosity along x axis (m2/s) - only 3D","sediment8 viscosity along x axis (m2/s) - only 3D","sediment9 viscosity along x axis (m2/s) - only 3D","sediment10 viscosity along x axis (m2/s) - only 3D","sediment11 viscosity along x axis (m2/s) - only 3D","sediment12 viscosity along x axis (m2/s) - only 3D","sediment13 viscosity along x axis (m2/s) - only 3D","sediment14 viscosity along x axis (m2/s) - only 3D","sediment15 viscosity along x axis (m2/s) - only 3D","sediment16 viscosity along x axis (m2/s) - only 3D","sediment17 viscosity along x axis (m2/s) - only 3D","sediment18 viscosity along x axis (m2/s) - only 3D","sediment19 viscosity along x axis (m2/s) - only 3D","sediment** viscosity along x axis (m2/s) - only 3D","sediment* viscosity along x axis (m2/s) - only 3D","sediment1 viscosity along x axis (m2/s) - only 3D","sediment2 viscosity along x axis (m2/s) - only 3D","sediment3 viscosity along x axis (m2/s) - only 3D","sediment4 viscosity along x axis (m2/s) - only 3D","sediment5 viscosity along x axis (m2/s) - only 3D","sediment6 viscosity along x axis (m2/s) - only 3D","sediment7 viscosity along x axis (m2/s) - only 3D","sediment8 viscosity along x axis (m2/s) - only 3D","sediment9 viscosity along x axis (m2/s) - only 3D","sediment10 viscosity along x axis (m2/s) - only 3D","sediment11 viscosity along x axis (m2/s) - only 3D","sediment12 viscosity along x axis (m2/s) - only 3D","sediment13 viscosity along x axis (m2/s) - only 3D","sediment14 viscosity along x axis (m2/s) - only 3D","sediment15 viscosity along x axis (m2/s) - only 3D","sediment16 viscosity along x axis (m2/s) - only 3D","sediment17 viscosity along x axis (m2/s) - only 3D","sediment18 viscosity along x axis (m2/s) - only 3D","sediment19 viscosity along x axis (m2/s) - only 3D","sediment** viscosity along x axis (m2/s) - only 3D","sediment* viscosity along x axis (m2/s) - only 3D","sediment1 viscosity along x axis (m2/s) - only 3D","sediment2 viscosity along x axis (m2/s) - only 3D","sediment3 viscosity along x axis (m2/s) - only 3D","sediment4 viscosity along x axis (m2/s) - only 3D","sediment5 viscosity along x axis (m2/s) - only 3D","sediment6 viscosity along x axis (m2/s) - only 3D","sediment7 viscosity along x axis (m2/s) - only 3D","sediment8 viscosity along x axis (m2/s) - only 3D","sediment9 viscosity along x axis (m2/s) - only 3D","sediment10 viscosity along x axis (m2/s) - only 3D","sediment11 viscosity along x axis (m2/s) - only 3D","sediment12 viscosity along x axis (m2/s) - only 3D","sediment13 viscosity along x axis (m2/s) - only 3D","sediment14 viscosity along x axis (m2/s) - only 3D","sediment15 viscosity along x axis (m2/s) - only 3D","sediment16 viscosity along x axis (m2/s) - only 3D","sediment17 viscosity along x axis (m2/s) - only 3D","sediment18 viscosity along x axis (m2/s) - only 3D","sediment19 viscosity along x axis (m2/s) - only 3D","sediment** viscosity along x axis (m2/s) - only 3D","sediment* viscosity along x axis (m2/s) - only 3D","sediment1 viscosity along x axis (m2/s) - only 3D","sediment2 viscosity along x axis (m2/s) - only 3D","sediment3 viscosity along x axis (m2/s) - only 3D","sediment4 viscosity along x axis (m2/s) - only 3D","sediment5 viscosity along x axis (m2/s) - only 3D","sediment6 viscosity along x axis (m2/s) - only 3D","sediment7 viscosity along x axis (m2/s) - only 3D","sediment8 viscosity along x axis (m2/s) - only 3D","sediment9 viscosity along x axis (m2/s) - only 3D","sediment10 viscosity along x axis (m2/s) - only 3D","sediment11 viscosity along x axis (m2/s) - only 3D","sediment12 viscosity along x axis (m2/s) - only 3D","sediment13 viscosity along x axis (m2/s) - only 3D","sediment14 viscosity along x axis (m2/s) - only 3D","sediment15 viscosity along x axis (m2/s) - only 3D","sediment16 viscosity along x axis (m2/s) - only 3D","sediment17 viscosity along x axis (m2/s) - only 3D","sediment18 viscosity along x axis (m2/s) - only 3D","sediment19 viscosity along x axis (m2/s) - only 3D","sediment** viscosity along x axis (m2/s) - only 3D","sediment* viscosity along x axis (m2/s) - only 3D","sediment1 viscosity along x axis (m2/s) - only 3D","sediment2 viscosity along x axis (m2/s) - only 3D","sediment3 viscosity along x axis (m2/s) - only 3D","sediment4 viscosity along x axis (m2/s) - only 3D","sediment5 viscosity along x axis (m2/s) - only 3D","sediment6 viscosity along x axis (m2/s) - only 3D","sediment7 viscosity along x axis (m2/s) - only 3D","sediment8 viscosity along x axis (m2/s) - only 3D","sediment9 viscosity along x axis (m2/s) - only 3D","sediment10 viscosity along x axis (m2/s) - only 3D","sediment11 viscosity along x axis (m2/s) - only 3D","sediment12 viscosity along x axis (m2/s) - only 3D","sediment13 viscosity along x axis (m2/s) - only 3D","sediment14 viscosity along x axis (m2/s) - only 3D","sediment15 viscosity along x axis (m2/s) - only 3D","sediment16 viscosity along x axis (m2/s) - only 3D","sediment17 viscosity along x axis (m2/s) - only 3D","sediment18 viscosity along x axis (m2/s) - only 3D","sediment19 viscosity along x axis (m2/s) - only 3D","sediment** viscosity along x axis (m2/s) - only 3D","sediment* viscosity along x axis (m2/s) - only 3D","sediment1 viscosity along x axis (m2/s) - only 3D","sediment2 viscosity along x axis (m2/s) - only 3D","sediment3 viscosity along x axis (m2/s) - only 3D","sediment4 viscosity along x axis (m2/s) - only 3D","sediment5 viscosity along x axis (m2/s) - only 3D","sediment6 viscosity along x axis (m2/s) - only 3D","sediment7 viscosity along x axis (m2/s) - only 3D","sediment8 viscosity along x axis (m2/s) - only 3D","sediment9 viscosity along x axis (m2/s) - only 3D","sediment10 viscosity along x axis (m2/s) - only 3D","sediment11 viscosity along x axis (m2/s) - only 3D","sediment12 viscosity along x axis (m2/s) - only 3D","sediment13 viscosity along x axis (m2/s) - only 3D","sediment14 viscosity along x axis (m2/s) - only 3D","sediment15 viscosity along x axis (m2/s) - only 3D","sediment16 viscosity along x axis (m2/s) - only 3D","sediment17 viscosity along x axis (m2/s) - only 3D","sediment18 viscosity along x axis (m2/s) - only 3D","sediment19 viscosity along x axis (m2/s) - only 3D","sediment** viscosity along x axis (m2/s) - only 3D","sediment* viscosity along x axis (m2/s) - only 3D","sediment1 viscosity along x axis (m2/s) - only 3D","sediment2 viscosity along x axis (m2/s) - only 3D","sediment3 viscosity along x axis (m2/s) - only 3D","sediment4 viscosity along x axis (m2/s) - only 3D","sediment5 viscosity along x axis (m2/s) - only 3D","sediment6 viscosity along x axis (m2/s) - only 3D","sediment7 viscosity along x axis (m2/s) - only 3D","sediment8 viscosity along x axis (m2/s) - only 3D","sediment9 viscosity along x axis (m2/s) - only 3D","sediment10 viscosity along x axis (m2/s) - only 3D","sediment11 viscosity along x axis (m2/s) - only 3D","sediment12 viscosity along x axis (m2/s) - only 3D","sediment13 viscosity along x axis (m2/s) - only 3D","sediment14 viscosity along x axis (m2/s) - only 3D","sediment15 viscosity along x axis (m2/s) - only 3D","sediment16 viscosity along x axis (m2/s) - only 3D","sediment17 viscosity along x axis (m2/s) - only 3D","sediment18 viscosity along x axis (m2/s) - only 3D","sediment19 viscosity along x axis (m2/s) - only 3D","sediment** viscosity along x axis (m2/s) - only 3D","sediment* viscosity along y axis (m2/s) - only 3D","sediment1 viscosity along y axis (m2/s) - only 3D","sediment2 viscosity along y axis (m2/s) - only 3D","sediment3 viscosity along y axis (m2/s) - only 3D","sediment4 viscosity along y axis (m2/s) - only 3D","sediment5 viscosity along y axis (m2/s) - only 3D","sediment6 viscosity along y axis (m2/s) - only 3D","sediment7 viscosity along y axis (m2/s) - only 3D","sediment8 viscosity along y axis (m2/s) - only 3D","sediment9 viscosity along y axis (m2/s) - only 3D","sediment10 viscosity along y axis (m2/s) - only 3D","sediment11 viscosity along y axis (m2/s) - only 3D","sediment12 viscosity along y axis (m2/s) - only 3D","sediment13 viscosity along y axis (m2/s) - only 3D","sediment14 viscosity along y axis (m2/s) - only 3D","sediment15 viscosity along y axis (m2/s) - only 3D","sediment16 viscosity along y axis (m2/s) - only 3D","sediment17 viscosity along y axis (m2/s) - only 3D","sediment18 viscosity along y axis (m2/s) - only 3D","sediment19 viscosity along y axis (m2/s) - only 3D","sediment** viscosity along y axis (m2/s) - only 3D","sediment* viscosity along y axis (m2/s) - only 3D","sediment1 viscosity along y axis (m2/s) - only 3D","sediment2 viscosity along y axis (m2/s) - only 3D","sediment3 viscosity along y axis (m2/s) - only 3D","sediment4 viscosity along y axis (m2/s) - only 3D","sediment5 viscosity along y axis (m2/s) - only 3D","sediment6 viscosity along y axis (m2/s) - only 3D","sediment7 viscosity along y axis (m2/s) - only 3D","sediment8 viscosity along y axis (m2/s) - only 3D","sediment9 viscosity along y axis (m2/s) - only 3D","sediment10 viscosity along y axis (m2/s) - only 3D","sediment11 viscosity along y axis (m2/s) - only 3D","sediment12 viscosity along y axis (m2/s) - only 3D","sediment13 viscosity along y axis (m2/s) - only 3D","sediment14 viscosity along y axis (m2/s) - only 3D","sediment15 viscosity along y axis (m2/s) - only 3D","sediment16 viscosity along y axis (m2/s) - only 3D","sediment17 viscosity along y axis (m2/s) - only 3D","sediment18 viscosity along y axis (m2/s) - only 3D","sediment19 viscosity along y axis (m2/s) - only 3D","sediment** viscosity along y axis (m2/s) - only 3D","sediment* viscosity along y axis (m2/s) - only 3D","sediment1 viscosity along y axis (m2/s) - only 3D","sediment2 viscosity along y axis (m2/s) - only 3D","sediment3 viscosity along y axis (m2/s) - only 3D","sediment4 viscosity along y axis (m2/s) - only 3D","sediment5 viscosity along y axis (m2/s) - only 3D","sediment6 viscosity along y axis (m2/s) - only 3D","sediment7 viscosity along y axis (m2/s) - only 3D","sediment8 viscosity along y axis (m2/s) - only 3D","sediment9 viscosity along y axis (m2/s) - only 3D","sediment10 viscosity along y axis (m2/s) - only 3D","sediment11 viscosity along y axis (m2/s) - only 3D","sediment12 viscosity along y axis (m2/s) - only 3D","sediment13 viscosity along y axis (m2/s) - only 3D","sediment14 viscosity along y axis (m2/s) - only 3D","sediment15 viscosity along y axis (m2/s) - only 3D","sediment16 viscosity along y axis (m2/s) - only 3D","sediment17 viscosity along y axis (m2/s) - only 3D","sediment18 viscosity along y axis (m2/s) - only 3D","sediment19 viscosity along y axis (m2/s) - only 3D","sediment** viscosity along y axis (m2/s) - only 3D","sediment* viscosity along y axis (m2/s) - only 3D","sediment1 viscosity along y axis (m2/s) - only 3D","sediment2 viscosity along y axis (m2/s) - only 3D","sediment3 viscosity along y axis (m2/s) - only 3D","sediment4 viscosity along y axis (m2/s) - only 3D","sediment5 viscosity along y axis (m2/s) - only 3D","sediment6 viscosity along y axis (m2/s) - only 3D","sediment7 viscosity along y axis (m2/s) - only 3D","sediment8 viscosity along y axis (m2/s) - only 3D","sediment9 viscosity along y axis (m2/s) - only 3D","sediment10 viscosity along y axis (m2/s) - only 3D","sediment11 viscosity along y axis (m2/s) - only 3D","sediment12 viscosity along y axis (m2/s) - only 3D","sediment13 viscosity along y axis (m2/s) - only 3D","sediment14 viscosity along y axis (m2/s) - only 3D","sediment15 viscosity along y axis (m2/s) - only 3D","sediment16 viscosity along y axis (m2/s) - only 3D","sediment17 viscosity along y axis (m2/s) - only 3D","sediment18 viscosity along y axis (m2/s) - only 3D","sediment19 viscosity along y axis (m2/s) - only 3D","sediment** viscosity along y axis (m2/s) - only 3D","sediment* viscosity along y axis (m2/s) - only 3D","sediment1 viscosity along y axis (m2/s) - only 3D","sediment2 viscosity along y axis (m2/s) - only 3D","sediment3 viscosity along y axis (m2/s) - only 3D","sediment4 viscosity along y axis (m2/s) - only 3D","sediment5 viscosity along y axis (m2/s) - only 3D","sediment6 viscosity along y axis (m2/s) - only 3D","sediment7 viscosity along y axis (m2/s) - only 3D","sediment8 viscosity along y axis (m2/s) - only 3D","sediment9 viscosity along y axis (m2/s) - only 3D","sediment10 viscosity along y axis (m2/s) - only 3D","sediment11 viscosity along y axis (m2/s) - only 3D","sediment12 viscosity along y axis (m2/s) - only 3D","sediment13 viscosity along y axis (m2/s) - only 3D","sediment14 viscosity along y axis (m2/s) - only 3D","sediment15 viscosity along y axis (m2/s) - only 3D","sediment16 viscosity along y axis (m2/s) - only 3D","sediment17 viscosity along y axis (m2/s) - only 3D","sediment18 viscosity along y axis (m2/s) - only 3D","sediment19 viscosity along y axis (m2/s) - only 3D","sediment** viscosity along y axis (m2/s) - only 3D","sediment* viscosity along y axis (m2/s) - only 3D","sediment1 viscosity along y axis (m2/s) - only 3D","sediment2 viscosity along y axis (m2/s) - only 3D","sediment3 viscosity along y axis (m2/s) - only 3D","sediment4 viscosity along y axis (m2/s) - only 3D","sediment5 viscosity along y axis (m2/s) - only 3D","sediment6 viscosity along y axis (m2/s) - only 3D","sediment7 viscosity along y axis (m2/s) - only 3D","sediment8 viscosity along y axis (m2/s) - only 3D","sediment9 viscosity along y axis (m2/s) - only 3D","sediment10 viscosity along y axis (m2/s) - only 3D","sediment11 viscosity along y axis (m2/s) - only 3D","sediment12 viscosity along y axis (m2/s) - only 3D","sediment13 viscosity along y axis (m2/s) - only 3D","sediment14 viscosity along y axis (m2/s) - only 3D","sediment15 viscosity along y axis (m2/s) - only 3D","sediment16 viscosity along y axis (m2/s) - only 3D","sediment17 viscosity along y axis (m2/s) - only 3D","sediment18 viscosity along y axis (m2/s) - only 3D","sediment19 viscosity along y axis (m2/s) - only 3D","sediment** viscosity along y axis (m2/s) - only 3D","sediment* viscosity along y axis (m2/s) - only 3D","sediment1 viscosity along y axis (m2/s) - only 3D","sediment2 viscosity along y axis (m2/s) - only 3D","sediment3 viscosity along y axis (m2/s) - only 3D","sediment4 viscosity along y axis (m2/s) - only 3D","sediment5 viscosity along y axis (m2/s) - only 3D","sediment6 viscosity along y axis (m2/s) - only 3D","sediment7 viscosity along y axis (m2/s) - only 3D","sediment8 viscosity along y axis (m2/s) - only 3D","sediment9 viscosity along y axis (m2/s) - only 3D","sediment10 viscosity along y axis (m2/s) - only 3D","sediment11 viscosity along y axis (m2/s) - only 3D","sediment12 viscosity along y axis (m2/s) - only 3D","sediment13 viscosity along y axis (m2/s) - only 3D","sediment14 viscosity along y axis (m2/s) - only 3D","sediment15 viscosity along y axis (m2/s) - only 3D","sediment16 viscosity along y axis (m2/s) - only 3D","sediment17 viscosity along y axis (m2/s) - only 3D","sediment18 viscosity along y axis (m2/s) - only 3D","sediment19 viscosity along y axis (m2/s) - only 3D","sediment** viscosity along y axis (m2/s) - only 3D","sediment* viscosity along y axis (m2/s) - only 3D","sediment1 viscosity along y axis (m2/s) - only 3D","sediment2 viscosity along y axis (m2/s) - only 3D","sediment3 viscosity along y axis (m2/s) - only 3D","sediment4 viscosity along y axis (m2/s) - only 3D","sediment5 viscosity along y axis (m2/s) - only 3D","sediment6 viscosity along y axis (m2/s) - only 3D","sediment7 viscosity along y axis (m2/s) - only 3D","sediment8 viscosity along y axis (m2/s) - only 3D","sediment9 viscosity along y axis (m2/s) - only 3D","sediment10 viscosity along y axis (m2/s) - only 3D","sediment11 viscosity along y axis (m2/s) - only 3D","sediment12 viscosity along y axis (m2/s) - only 3D","sediment13 viscosity along y axis (m2/s) - only 3D","sediment14 viscosity along y axis (m2/s) - only 3D","sediment15 viscosity along y axis (m2/s) - only 3D","sediment16 viscosity along y axis (m2/s) - only 3D","sediment17 viscosity along y axis (m2/s) - only 3D","sediment18 viscosity along y axis (m2/s) - only 3D","sediment19 viscosity along y axis (m2/s) - only 3D","sediment** viscosity along y axis (m2/s) - only 3D","sediment* viscosity along y axis (m2/s) - only 3D","sediment1 viscosity along y axis (m2/s) - only 3D","sediment2 viscosity along y axis (m2/s) - only 3D","sediment3 viscosity along y axis (m2/s) - only 3D","sediment4 viscosity along y axis (m2/s) - only 3D","sediment5 viscosity along y axis (m2/s) - only 3D","sediment6 viscosity along y axis (m2/s) - only 3D","sediment7 viscosity along y axis (m2/s) - only 3D","sediment8 viscosity along y axis (m2/s) - only 3D","sediment9 viscosity along y axis (m2/s) - only 3D","sediment10 viscosity along y axis (m2/s) - only 3D","sediment11 viscosity along y axis (m2/s) - only 3D","sediment12 viscosity along y axis (m2/s) - only 3D","sediment13 viscosity along y axis (m2/s) - only 3D","sediment14 viscosity along y axis (m2/s) - only 3D","sediment15 viscosity along y axis (m2/s) - only 3D","sediment16 viscosity along y axis (m2/s) - only 3D","sediment17 viscosity along y axis (m2/s) - only 3D","sediment18 viscosity along y axis (m2/s) - only 3D","sediment19 viscosity along y axis (m2/s) - only 3D","sediment** viscosity along y axis (m2/s) - only 3D","sediment* viscosity along y axis (m2/s) - only 3D","sediment1 viscosity along y axis (m2/s) - only 3D","sediment2 viscosity along y axis (m2/s) - only 3D","sediment3 viscosity along y axis (m2/s) - only 3D","sediment4 viscosity along y axis (m2/s) - only 3D","sediment5 viscosity along y axis (m2/s) - only 3D","sediment6 viscosity along y axis (m2/s) - only 3D","sediment7 viscosity along y axis (m2/s) - only 3D","sediment8 viscosity along y axis (m2/s) - only 3D","sediment9 viscosity along y axis (m2/s) - only 3D","sediment10 viscosity along y axis (m2/s) - only 3D","sediment11 viscosity along y axis (m2/s) - only 3D","sediment12 viscosity along y axis (m2/s) - only 3D","sediment13 viscosity along y axis (m2/s) - only 3D","sediment14 viscosity along y axis (m2/s) - only 3D","sediment15 viscosity along y axis (m2/s) - only 3D","sediment16 viscosity along y axis (m2/s) - only 3D","sediment17 viscosity along y axis (m2/s) - only 3D","sediment18 viscosity along y axis (m2/s) - only 3D","sediment19 viscosity along y axis (m2/s) - only 3D","sediment** viscosity along y axis (m2/s) - only 3D","sediment* viscosity along y axis (m2/s) - only 3D","sediment1 viscosity along y axis (m2/s) - only 3D","sediment2 viscosity along y axis (m2/s) - only 3D","sediment3 viscosity along y axis (m2/s) - only 3D","sediment4 viscosity along y axis (m2/s) - only 3D","sediment5 viscosity along y axis (m2/s) - only 3D","sediment6 viscosity along y axis (m2/s) - only 3D","sediment7 viscosity along y axis (m2/s) - only 3D","sediment8 viscosity along y axis (m2/s) - only 3D","sediment9 viscosity along y axis (m2/s) - only 3D","sediment10 viscosity along y axis (m2/s) - only 3D","sediment11 viscosity along y axis (m2/s) - only 3D","sediment12 viscosity along y axis (m2/s) - only 3D","sediment13 viscosity along y axis (m2/s) - only 3D","sediment14 viscosity along y axis (m2/s) - only 3D","sediment15 viscosity along y axis (m2/s) - only 3D","sediment16 viscosity along y axis (m2/s) - only 3D","sediment17 viscosity along y axis (m2/s) - only 3D","sediment18 viscosity along y axis (m2/s) - only 3D","sediment19 viscosity along y axis (m2/s) - only 3D","sediment** viscosity along y axis (m2/s) - only 3D","sediment* viscosity along y axis (m2/s) - only 3D","sediment1 viscosity along y axis (m2/s) - only 3D","sediment2 viscosity along y axis (m2/s) - only 3D","sediment3 viscosity along y axis (m2/s) - only 3D","sediment4 viscosity along y axis (m2/s) - only 3D","sediment5 viscosity along y axis (m2/s) - only 3D","sediment6 viscosity along y axis (m2/s) - only 3D","sediment7 viscosity along y axis (m2/s) - only 3D","sediment8 viscosity along y axis (m2/s) - only 3D","sediment9 viscosity along y axis (m2/s) - only 3D","sediment10 viscosity along y axis (m2/s) - only 3D","sediment11 viscosity along y axis (m2/s) - only 3D","sediment12 viscosity along y axis (m2/s) - only 3D","sediment13 viscosity along y axis (m2/s) - only 3D","sediment14 viscosity along y axis (m2/s) - only 3D","sediment15 viscosity along y axis (m2/s) - only 3D","sediment16 viscosity along y axis (m2/s) - only 3D","sediment17 viscosity along y axis (m2/s) - only 3D","sediment18 viscosity along y axis (m2/s) - only 3D","sediment19 viscosity along y axis (m2/s) - only 3D","sediment** viscosity along y axis (m2/s) - only 3D","sediment* viscosity along y axis (m2/s) - only 3D","sediment1 viscosity along y axis (m2/s) - only 3D","sediment2 viscosity along y axis (m2/s) - only 3D","sediment3 viscosity along y axis (m2/s) - only 3D","sediment4 viscosity along y axis (m2/s) - only 3D","sediment5 viscosity along y axis (m2/s) - only 3D","sediment6 viscosity along y axis (m2/s) - only 3D","sediment7 viscosity along y axis (m2/s) - only 3D","sediment8 viscosity along y axis (m2/s) - only 3D","sediment9 viscosity along y axis (m2/s) - only 3D","sediment10 viscosity along y axis (m2/s) - only 3D","sediment11 viscosity along y axis (m2/s) - only 3D","sediment12 viscosity along y axis (m2/s) - only 3D","sediment13 viscosity along y axis (m2/s) - only 3D","sediment14 viscosity along y axis (m2/s) - only 3D","sediment15 viscosity along y axis (m2/s) - only 3D","sediment16 viscosity along y axis (m2/s) - only 3D","sediment17 viscosity along y axis (m2/s) - only 3D","sediment18 viscosity along y axis (m2/s) - only 3D","sediment19 viscosity along y axis (m2/s) - only 3D","sediment** viscosity along y axis (m2/s) - only 3D","sediment* viscosity along y axis (m2/s) - only 3D","sediment1 viscosity along y axis (m2/s) - only 3D","sediment2 viscosity along y axis (m2/s) - only 3D","sediment3 viscosity along y axis (m2/s) - only 3D","sediment4 viscosity along y axis (m2/s) - only 3D","sediment5 viscosity along y axis (m2/s) - only 3D","sediment6 viscosity along y axis (m2/s) - only 3D","sediment7 viscosity along y axis (m2/s) - only 3D","sediment8 viscosity along y axis (m2/s) - only 3D","sediment9 viscosity along y axis (m2/s) - only 3D","sediment10 viscosity along y axis (m2/s) - only 3D","sediment11 viscosity along y axis (m2/s) - only 3D","sediment12 viscosity along y axis (m2/s) - only 3D","sediment13 viscosity along y axis (m2/s) - only 3D","sediment14 viscosity along y axis (m2/s) - only 3D","sediment15 viscosity along y axis (m2/s) - only 3D","sediment16 viscosity along y axis (m2/s) - only 3D","sediment17 viscosity along y axis (m2/s) - only 3D","sediment18 viscosity along y axis (m2/s) - only 3D","sediment19 viscosity along y axis (m2/s) - only 3D","sediment** viscosity along y axis (m2/s) - only 3D","sediment* viscosity along y axis (m2/s) - only 3D","sediment1 viscosity along y axis (m2/s) - only 3D","sediment2 viscosity along y axis (m2/s) - only 3D","sediment3 viscosity along y axis (m2/s) - only 3D","sediment4 viscosity along y axis (m2/s) - only 3D","sediment5 viscosity along y axis (m2/s) - only 3D","sediment6 viscosity along y axis (m2/s) - only 3D","sediment7 viscosity along y axis (m2/s) - only 3D","sediment8 viscosity along y axis (m2/s) - only 3D","sediment9 viscosity along y axis (m2/s) - only 3D","sediment10 viscosity along y axis (m2/s) - only 3D","sediment11 viscosity along y axis (m2/s) - only 3D","sediment12 viscosity along y axis (m2/s) - only 3D","sediment13 viscosity along y axis (m2/s) - only 3D","sediment14 viscosity along y axis (m2/s) - only 3D","sediment15 viscosity along y axis (m2/s) - only 3D","sediment16 viscosity along y axis (m2/s) - only 3D","sediment17 viscosity along y axis (m2/s) - only 3D","sediment18 viscosity along y axis (m2/s) - only 3D","sediment19 viscosity along y axis (m2/s) - only 3D","sediment** viscosity along y axis (m2/s) - only 3D","sediment* viscosity along y axis (m2/s) - only 3D","sediment1 viscosity along y axis (m2/s) - only 3D","sediment2 viscosity along y axis (m2/s) - only 3D","sediment3 viscosity along y axis (m2/s) - only 3D","sediment4 viscosity along y axis (m2/s) - only 3D","sediment5 viscosity along y axis (m2/s) - only 3D","sediment6 viscosity along y axis (m2/s) - only 3D","sediment7 viscosity along y axis (m2/s) - only 3D","sediment8 viscosity along y axis (m2/s) - only 3D","sediment9 viscosity along y axis (m2/s) - only 3D","sediment10 viscosity along y axis (m2/s) - only 3D","sediment11 viscosity along y axis (m2/s) - only 3D","sediment12 viscosity along y axis (m2/s) - only 3D","sediment13 viscosity along y axis (m2/s) - only 3D","sediment14 viscosity along y axis (m2/s) - only 3D","sediment15 viscosity along y axis (m2/s) - only 3D","sediment16 viscosity along y axis (m2/s) - only 3D","sediment17 viscosity along y axis (m2/s) - only 3D","sediment18 viscosity along y axis (m2/s) - only 3D","sediment19 viscosity along y axis (m2/s) - only 3D","sediment** viscosity along y axis (m2/s) - only 3D","sediment* viscosity along y axis (m2/s) - only 3D","sediment1 viscosity along y axis (m2/s) - only 3D","sediment2 viscosity along y axis (m2/s) - only 3D","sediment3 viscosity along y axis (m2/s) - only 3D","sediment4 viscosity along y axis (m2/s) - only 3D","sediment5 viscosity along y axis (m2/s) - only 3D","sediment6 viscosity along y axis (m2/s) - only 3D","sediment7 viscosity along y axis (m2/s) - only 3D","sediment8 viscosity along y axis (m2/s) - only 3D","sediment9 viscosity along y axis (m2/s) - only 3D","sediment10 viscosity along y axis (m2/s) - only 3D","sediment11 viscosity along y axis (m2/s) - only 3D","sediment12 viscosity along y axis (m2/s) - only 3D","sediment13 viscosity along y axis (m2/s) - only 3D","sediment14 viscosity along y axis (m2/s) - only 3D","sediment15 viscosity along y axis (m2/s) - only 3D","sediment16 viscosity along y axis (m2/s) - only 3D","sediment17 viscosity along y axis (m2/s) - only 3D","sediment18 viscosity along y axis (m2/s) - only 3D","sediment19 viscosity along y axis (m2/s) - only 3D","sediment** viscosity along y axis (m2/s) - only 3D","sediment* viscosity along y axis (m2/s) - only 3D","sediment1 viscosity along y axis (m2/s) - only 3D","sediment2 viscosity along y axis (m2/s) - only 3D","sediment3 viscosity along y axis (m2/s) - only 3D","sediment4 viscosity along y axis (m2/s) - only 3D","sediment5 viscosity along y axis (m2/s) - only 3D","sediment6 viscosity along y axis (m2/s) - only 3D","sediment7 viscosity along y axis (m2/s) - only 3D","sediment8 viscosity along y axis (m2/s) - only 3D","sediment9 viscosity along y axis (m2/s) - only 3D","sediment10 viscosity along y axis (m2/s) - only 3D","sediment11 viscosity along y axis (m2/s) - only 3D","sediment12 viscosity along y axis (m2/s) - only 3D","sediment13 viscosity along y axis (m2/s) - only 3D","sediment14 viscosity along y axis (m2/s) - only 3D","sediment15 viscosity along y axis (m2/s) - only 3D","sediment16 viscosity along y axis (m2/s) - only 3D","sediment17 viscosity along y axis (m2/s) - only 3D","sediment18 viscosity along y axis (m2/s) - only 3D","sediment19 viscosity along y axis (m2/s) - only 3D","sediment** viscosity along y axis (m2/s) - only 3D","sediment* viscosity along y axis (m2/s) - only 3D","sediment1 viscosity along y axis (m2/s) - only 3D","sediment2 viscosity along y axis (m2/s) - only 3D","sediment3 viscosity along y axis (m2/s) - only 3D","sediment4 viscosity along y axis (m2/s) - only 3D","sediment5 viscosity along y axis (m2/s) - only 3D","sediment6 viscosity along y axis (m2/s) - only 3D","sediment7 viscosity along y axis (m2/s) - only 3D","sediment8 viscosity along y axis (m2/s) - only 3D","sediment9 viscosity along y axis (m2/s) - only 3D","sediment10 viscosity along y axis (m2/s) - only 3D","sediment11 viscosity along y axis (m2/s) - only 3D","sediment12 viscosity along y axis (m2/s) - only 3D","sediment13 viscosity along y axis (m2/s) - only 3D","sediment14 viscosity along y axis (m2/s) - only 3D","sediment15 viscosity along y axis (m2/s) - only 3D","sediment16 viscosity along y axis (m2/s) - only 3D","sediment17 viscosity along y axis (m2/s) - only 3D","sediment18 viscosity along y axis (m2/s) - only 3D","sediment19 viscosity along y axis (m2/s) - only 3D","sediment** viscosity along y axis (m2/s) - only 3D","sediment* viscosity along y axis (m2/s) - only 3D","sediment1 viscosity along y axis (m2/s) - only 3D","sediment2 viscosity along y axis (m2/s) - only 3D","sediment3 viscosity along y axis (m2/s) - only 3D","sediment4 viscosity along y axis (m2/s) - only 3D","sediment5 viscosity along y axis (m2/s) - only 3D","sediment6 viscosity along y axis (m2/s) - only 3D","sediment7 viscosity along y axis (m2/s) - only 3D","sediment8 viscosity along y axis (m2/s) - only 3D","sediment9 viscosity along y axis (m2/s) - only 3D","sediment10 viscosity along y axis (m2/s) - only 3D","sediment11 viscosity along y axis (m2/s) - only 3D","sediment12 viscosity along y axis (m2/s) - only 3D","sediment13 viscosity along y axis (m2/s) - only 3D","sediment14 viscosity along y axis (m2/s) - only 3D","sediment15 viscosity along y axis (m2/s) - only 3D","sediment16 viscosity along y axis (m2/s) - only 3D","sediment17 viscosity along y axis (m2/s) - only 3D","sediment18 viscosity along y axis (m2/s) - only 3D","sediment19 viscosity along y axis (m2/s) - only 3D","sediment** viscosity along y axis (m2/s) - only 3D","sediment* viscosity along y axis (m2/s) - only 3D","sediment1 viscosity along y axis (m2/s) - only 3D","sediment2 viscosity along y axis (m2/s) - only 3D","sediment3 viscosity along y axis (m2/s) - only 3D","sediment4 viscosity along y axis (m2/s) - only 3D","sediment5 viscosity along y axis (m2/s) - only 3D","sediment6 viscosity along y axis (m2/s) - only 3D","sediment7 viscosity along y axis (m2/s) - only 3D","sediment8 viscosity along y axis (m2/s) - only 3D","sediment9 viscosity along y axis (m2/s) - only 3D","sediment10 viscosity along y axis (m2/s) - only 3D","sediment11 viscosity along y axis (m2/s) - only 3D","sediment12 viscosity along y axis (m2/s) - only 3D","sediment13 viscosity along y axis (m2/s) - only 3D","sediment14 viscosity along y axis (m2/s) - only 3D","sediment15 viscosity along y axis (m2/s) - only 3D","sediment16 viscosity along y axis (m2/s) - only 3D","sediment17 viscosity along y axis (m2/s) - only 3D","sediment18 viscosity along y axis (m2/s) - only 3D","sediment19 viscosity along y axis (m2/s) - only 3D","sediment** viscosity along y axis (m2/s) - only 3D","sediment* viscosity along z axis (m2/s) - only 3D","sediment1 viscosity along z axis (m2/s) - only 3D","sediment2 viscosity along z axis (m2/s) - only 3D","sediment3 viscosity along z axis (m2/s) - only 3D","sediment4 viscosity along z axis (m2/s) - only 3D","sediment5 viscosity along z axis (m2/s) - only 3D","sediment6 viscosity along z axis (m2/s) - only 3D","sediment7 viscosity along z axis (m2/s) - only 3D","sediment8 viscosity along z axis (m2/s) - only 3D","sediment9 viscosity along z axis (m2/s) - only 3D","sediment10 viscosity along z axis (m2/s) - only 3D","sediment11 viscosity along z axis (m2/s) - only 3D","sediment12 viscosity along z axis (m2/s) - only 3D","sediment13 viscosity along z axis (m2/s) - only 3D","sediment14 viscosity along z axis (m2/s) - only 3D","sediment15 viscosity along z axis (m2/s) - only 3D","sediment16 viscosity along z axis (m2/s) - only 3D","sediment17 viscosity along z axis (m2/s) - only 3D","sediment18 viscosity along z axis (m2/s) - only 3D","sediment19 viscosity along z axis (m2/s) - only 3D","sediment** viscosity along z axis (m2/s) - only 3D","sediment* viscosity along z axis (m2/s) - only 3D","sediment1 viscosity along z axis (m2/s) - only 3D","sediment2 viscosity along z axis (m2/s) - only 3D","sediment3 viscosity along z axis (m2/s) - only 3D","sediment4 viscosity along z axis (m2/s) - only 3D","sediment5 viscosity along z axis (m2/s) - only 3D","sediment6 viscosity along z axis (m2/s) - only 3D","sediment7 viscosity along z axis (m2/s) - only 3D","sediment8 viscosity along z axis (m2/s) - only 3D","sediment9 viscosity along z axis (m2/s) - only 3D","sediment10 viscosity along z axis (m2/s) - only 3D","sediment11 viscosity along z axis (m2/s) - only 3D","sediment12 viscosity along z axis (m2/s) - only 3D","sediment13 viscosity along z axis (m2/s) - only 3D","sediment14 viscosity along z axis (m2/s) - only 3D","sediment15 viscosity along z axis (m2/s) - only 3D","sediment16 viscosity along z axis (m2/s) - only 3D","sediment17 viscosity along z axis (m2/s) - only 3D","sediment18 viscosity along z axis (m2/s) - only 3D","sediment19 viscosity along z axis (m2/s) - only 3D","sediment** viscosity along z axis (m2/s) - only 3D","sediment* viscosity along z axis (m2/s) - only 3D","sediment1 viscosity along z axis (m2/s) - only 3D","sediment2 viscosity along z axis (m2/s) - only 3D","sediment3 viscosity along z axis (m2/s) - only 3D","sediment4 viscosity along z axis (m2/s) - only 3D","sediment5 viscosity along z axis (m2/s) - only 3D","sediment6 viscosity along z axis (m2/s) - only 3D","sediment7 viscosity along z axis (m2/s) - only 3D","sediment8 viscosity along z axis (m2/s) - only 3D","sediment9 viscosity along z axis (m2/s) - only 3D","sediment10 viscosity along z axis (m2/s) - only 3D","sediment11 viscosity along z axis (m2/s) - only 3D","sediment12 viscosity along z axis (m2/s) - only 3D","sediment13 viscosity along z axis (m2/s) - only 3D","sediment14 viscosity along z axis (m2/s) - only 3D","sediment15 viscosity along z axis (m2/s) - only 3D","sediment16 viscosity along z axis (m2/s) - only 3D","sediment17 viscosity along z axis (m2/s) - only 3D","sediment18 viscosity along z axis (m2/s) - only 3D","sediment19 viscosity along z axis (m2/s) - only 3D","sediment** viscosity along z axis (m2/s) - only 3D","sediment* viscosity along z axis (m2/s) - only 3D","sediment1 viscosity along z axis (m2/s) - only 3D","sediment2 viscosity along z axis (m2/s) - only 3D","sediment3 viscosity along z axis (m2/s) - only 3D","sediment4 viscosity along z axis (m2/s) - only 3D","sediment5 viscosity along z axis (m2/s) - only 3D","sediment6 viscosity along z axis (m2/s) - only 3D","sediment7 viscosity along z axis (m2/s) - only 3D","sediment8 viscosity along z axis (m2/s) - only 3D","sediment9 viscosity along z axis (m2/s) - only 3D","sediment10 viscosity along z axis (m2/s) - only 3D","sediment11 viscosity along z axis (m2/s) - only 3D","sediment12 viscosity along z axis (m2/s) - only 3D","sediment13 viscosity along z axis (m2/s) - only 3D","sediment14 viscosity along z axis (m2/s) - only 3D","sediment15 viscosity along z axis (m2/s) - only 3D","sediment16 viscosity along z axis (m2/s) - only 3D","sediment17 viscosity along z axis (m2/s) - only 3D","sediment18 viscosity along z axis (m2/s) - only 3D","sediment19 viscosity along z axis (m2/s) - only 3D","sediment** viscosity along z axis (m2/s) - only 3D","sediment* viscosity along z axis (m2/s) - only 3D","sediment1 viscosity along z axis (m2/s) - only 3D","sediment2 viscosity along z axis (m2/s) - only 3D","sediment3 viscosity along z axis (m2/s) - only 3D","sediment4 viscosity along z axis (m2/s) - only 3D","sediment5 viscosity along z axis (m2/s) - only 3D","sediment6 viscosity along z axis (m2/s) - only 3D","sediment7 viscosity along z axis (m2/s) - only 3D","sediment8 viscosity along z axis (m2/s) - only 3D","sediment9 viscosity along z axis (m2/s) - only 3D","sediment10 viscosity along z axis (m2/s) - only 3D","sediment11 viscosity along z axis (m2/s) - only 3D","sediment12 viscosity along z axis (m2/s) - only 3D","sediment13 viscosity along z axis (m2/s) - only 3D","sediment14 viscosity along z axis (m2/s) - only 3D","sediment15 viscosity along z axis (m2/s) - only 3D","sediment16 viscosity along z axis (m2/s) - only 3D","sediment17 viscosity along z axis (m2/s) - only 3D","sediment18 viscosity along z axis (m2/s) - only 3D","sediment19 viscosity along z axis (m2/s) - only 3D","sediment** viscosity along z axis (m2/s) - only 3D","sediment* viscosity along z axis (m2/s) - only 3D","sediment1 viscosity along z axis (m2/s) - only 3D","sediment2 viscosity along z axis (m2/s) - only 3D","sediment3 viscosity along z axis (m2/s) - only 3D","sediment4 viscosity along z axis (m2/s) - only 3D","sediment5 viscosity along z axis (m2/s) - only 3D","sediment6 viscosity along z axis (m2/s) - only 3D","sediment7 viscosity along z axis (m2/s) - only 3D","sediment8 viscosity along z axis (m2/s) - only 3D","sediment9 viscosity along z axis (m2/s) - only 3D","sediment10 viscosity along z axis (m2/s) - only 3D","sediment11 viscosity along z axis (m2/s) - only 3D","sediment12 viscosity along z axis (m2/s) - only 3D","sediment13 viscosity along z axis (m2/s) - only 3D","sediment14 viscosity along z axis (m2/s) - only 3D","sediment15 viscosity along z axis (m2/s) - only 3D","sediment16 viscosity along z axis (m2/s) - only 3D","sediment17 viscosity along z axis (m2/s) - only 3D","sediment18 viscosity along z axis (m2/s) - only 3D","sediment19 viscosity along z axis (m2/s) - only 3D","sediment** viscosity along z axis (m2/s) - only 3D","sediment* viscosity along z axis (m2/s) - only 3D","sediment1 viscosity along z axis (m2/s) - only 3D","sediment2 viscosity along z axis (m2/s) - only 3D","sediment3 viscosity along z axis (m2/s) - only 3D","sediment4 viscosity along z axis (m2/s) - only 3D","sediment5 viscosity along z axis (m2/s) - only 3D","sediment6 viscosity along z axis (m2/s) - only 3D","sediment7 viscosity along z axis (m2/s) - only 3D","sediment8 viscosity along z axis (m2/s) - only 3D","sediment9 viscosity along z axis (m2/s) - only 3D","sediment10 viscosity along z axis (m2/s) - only 3D","sediment11 viscosity along z axis (m2/s) - only 3D","sediment12 viscosity along z axis (m2/s) - only 3D","sediment13 viscosity along z axis (m2/s) - only 3D","sediment14 viscosity along z axis (m2/s) - only 3D","sediment15 viscosity along z axis (m2/s) - only 3D","sediment16 viscosity along z axis (m2/s) - only 3D","sediment17 viscosity along z axis (m2/s) - only 3D","sediment18 viscosity along z axis (m2/s) - only 3D","sediment19 viscosity along z axis (m2/s) - only 3D","sediment** viscosity along z axis (m2/s) - only 3D","sediment* viscosity along z axis (m2/s) - only 3D","sediment1 viscosity along z axis (m2/s) - only 3D","sediment2 viscosity along z axis (m2/s) - only 3D","sediment3 viscosity along z axis (m2/s) - only 3D","sediment4 viscosity along z axis (m2/s) - only 3D","sediment5 viscosity along z axis (m2/s) - only 3D","sediment6 viscosity along z axis (m2/s) - only 3D","sediment7 viscosity along z axis (m2/s) - only 3D","sediment8 viscosity along z axis (m2/s) - only 3D","sediment9 viscosity along z axis (m2/s) - only 3D","sediment10 viscosity along z axis (m2/s) - only 3D","sediment11 viscosity along z axis (m2/s) - only 3D","sediment12 viscosity along z axis (m2/s) - only 3D","sediment13 viscosity along z axis (m2/s) - only 3D","sediment14 viscosity along z axis (m2/s) - only 3D","sediment15 viscosity along z axis (m2/s) - only 3D","sediment16 viscosity along z axis (m2/s) - only 3D","sediment17 viscosity along z axis (m2/s) - only 3D","sediment18 viscosity along z axis (m2/s) - only 3D","sediment19 viscosity along z axis (m2/s) - only 3D","sediment** viscosity along z axis (m2/s) - only 3D","sediment* viscosity along z axis (m2/s) - only 3D","sediment1 viscosity along z axis (m2/s) - only 3D","sediment2 viscosity along z axis (m2/s) - only 3D","sediment3 viscosity along z axis (m2/s) - only 3D","sediment4 viscosity along z axis (m2/s) - only 3D","sediment5 viscosity along z axis (m2/s) - only 3D","sediment6 viscosity along z axis (m2/s) - only 3D","sediment7 viscosity along z axis (m2/s) - only 3D","sediment8 viscosity along z axis (m2/s) - only 3D","sediment9 viscosity along z axis (m2/s) - only 3D","sediment10 viscosity along z axis (m2/s) - only 3D","sediment11 viscosity along z axis (m2/s) - only 3D","sediment12 viscosity along z axis (m2/s) - only 3D","sediment13 viscosity along z axis (m2/s) - only 3D","sediment14 viscosity along z axis (m2/s) - only 3D","sediment15 viscosity along z axis (m2/s) - only 3D","sediment16 viscosity along z axis (m2/s) - only 3D","sediment17 viscosity along z axis (m2/s) - only 3D","sediment18 viscosity along z axis (m2/s) - only 3D","sediment19 viscosity along z axis (m2/s) - only 3D","sediment** viscosity along z axis (m2/s) - only 3D","sediment* viscosity along z axis (m2/s) - only 3D","sediment1 viscosity along z axis (m2/s) - only 3D","sediment2 viscosity along z axis (m2/s) - only 3D","sediment3 viscosity along z axis (m2/s) - only 3D","sediment4 viscosity along z axis (m2/s) - only 3D","sediment5 viscosity along z axis (m2/s) - only 3D","sediment6 viscosity along z axis (m2/s) - only 3D","sediment7 viscosity along z axis (m2/s) - only 3D","sediment8 viscosity along z axis (m2/s) - only 3D","sediment9 viscosity along z axis (m2/s) - only 3D","sediment10 viscosity along z axis (m2/s) - only 3D","sediment11 viscosity along z axis (m2/s) - only 3D","sediment12 viscosity along z axis (m2/s) - only 3D","sediment13 viscosity along z axis (m2/s) - only 3D","sediment14 viscosity along z axis (m2/s) - only 3D","sediment15 viscosity along z axis (m2/s) - only 3D","sediment16 viscosity along z axis (m2/s) - only 3D","sediment17 viscosity along z axis (m2/s) - only 3D","sediment18 viscosity along z axis (m2/s) - only 3D","sediment19 viscosity along z axis (m2/s) - only 3D","sediment** viscosity along z axis (m2/s) - only 3D","sediment* viscosity along z axis (m2/s) - only 3D","sediment1 viscosity along z axis (m2/s) - only 3D","sediment2 viscosity along z axis (m2/s) - only 3D","sediment3 viscosity along z axis (m2/s) - only 3D","sediment4 viscosity along z axis (m2/s) - only 3D","sediment5 viscosity along z axis (m2/s) - only 3D","sediment6 viscosity along z axis (m2/s) - only 3D","sediment7 viscosity along z axis (m2/s) - only 3D","sediment8 viscosity along z axis (m2/s) - only 3D","sediment9 viscosity along z axis (m2/s) - only 3D","sediment10 viscosity along z axis (m2/s) - only 3D","sediment11 viscosity along z axis (m2/s) - only 3D","sediment12 viscosity along z axis (m2/s) - only 3D","sediment13 viscosity along z axis (m2/s) - only 3D","sediment14 viscosity along z axis (m2/s) - only 3D","sediment15 viscosity along z axis (m2/s) - only 3D","sediment16 viscosity along z axis (m2/s) - only 3D","sediment17 viscosity along z axis (m2/s) - only 3D","sediment18 viscosity along z axis (m2/s) - only 3D","sediment19 viscosity along z axis (m2/s) - only 3D","sediment** viscosity along z axis (m2/s) - only 3D","sediment* viscosity along z axis (m2/s) - only 3D","sediment1 viscosity along z axis (m2/s) - only 3D","sediment2 viscosity along z axis (m2/s) - only 3D","sediment3 viscosity along z axis (m2/s) - only 3D","sediment4 viscosity along z axis (m2/s) - only 3D","sediment5 viscosity along z axis (m2/s) - only 3D","sediment6 viscosity along z axis (m2/s) - only 3D","sediment7 viscosity along z axis (m2/s) - only 3D","sediment8 viscosity along z axis (m2/s) - only 3D","sediment9 viscosity along z axis (m2/s) - only 3D","sediment10 viscosity along z axis (m2/s) - only 3D","sediment11 viscosity along z axis (m2/s) - only 3D","sediment12 viscosity along z axis (m2/s) - only 3D","sediment13 viscosity along z axis (m2/s) - only 3D","sediment14 viscosity along z axis (m2/s) - only 3D","sediment15 viscosity along z axis (m2/s) - only 3D","sediment16 viscosity along z axis (m2/s) - only 3D","sediment17 viscosity along z axis (m2/s) - only 3D","sediment18 viscosity along z axis (m2/s) - only 3D","sediment19 viscosity along z axis (m2/s) - only 3D","sediment** viscosity along z axis (m2/s) - only 3D","sediment* viscosity along z axis (m2/s) - only 3D","sediment1 viscosity along z axis (m2/s) - only 3D","sediment2 viscosity along z axis (m2/s) - only 3D","sediment3 viscosity along z axis (m2/s) - only 3D","sediment4 viscosity along z axis (m2/s) - only 3D","sediment5 viscosity along z axis (m2/s) - only 3D","sediment6 viscosity along z axis (m2/s) - only 3D","sediment7 viscosity along z axis (m2/s) - only 3D","sediment8 viscosity along z axis (m2/s) - only 3D","sediment9 viscosity along z axis (m2/s) - only 3D","sediment10 viscosity along z axis (m2/s) - only 3D","sediment11 viscosity along z axis (m2/s) - only 3D","sediment12 viscosity along z axis (m2/s) - only 3D","sediment13 viscosity along z axis (m2/s) - only 3D","sediment14 viscosity along z axis (m2/s) - only 3D","sediment15 viscosity along z axis (m2/s) - only 3D","sediment16 viscosity along z axis (m2/s) - only 3D","sediment17 viscosity along z axis (m2/s) - only 3D","sediment18 viscosity along z axis (m2/s) - only 3D","sediment19 viscosity along z axis (m2/s) - only 3D","sediment** viscosity along z axis (m2/s) - only 3D","sediment* viscosity along z axis (m2/s) - only 3D","sediment1 viscosity along z axis (m2/s) - only 3D","sediment2 viscosity along z axis (m2/s) - only 3D","sediment3 viscosity along z axis (m2/s) - only 3D","sediment4 viscosity along z axis (m2/s) - only 3D","sediment5 viscosity along z axis (m2/s) - only 3D","sediment6 viscosity along z axis (m2/s) - only 3D","sediment7 viscosity along z axis (m2/s) - only 3D","sediment8 viscosity along z axis (m2/s) - only 3D","sediment9 viscosity along z axis (m2/s) - only 3D","sediment10 viscosity along z axis (m2/s) - only 3D","sediment11 viscosity along z axis (m2/s) - only 3D","sediment12 viscosity along z axis (m2/s) - only 3D","sediment13 viscosity along z axis (m2/s) - only 3D","sediment14 viscosity along z axis (m2/s) - only 3D","sediment15 viscosity along z axis (m2/s) - only 3D","sediment16 viscosity along z axis (m2/s) - only 3D","sediment17 viscosity along z axis (m2/s) - only 3D","sediment18 viscosity along z axis (m2/s) - only 3D","sediment19 viscosity along z axis (m2/s) - only 3D","sediment** viscosity along z axis (m2/s) - only 3D","sediment* viscosity along z axis (m2/s) - only 3D","sediment1 viscosity along z axis (m2/s) - only 3D","sediment2 viscosity along z axis (m2/s) - only 3D","sediment3 viscosity along z axis (m2/s) - only 3D","sediment4 viscosity along z axis (m2/s) - only 3D","sediment5 viscosity along z axis (m2/s) - only 3D","sediment6 viscosity along z axis (m2/s) - only 3D","sediment7 viscosity along z axis (m2/s) - only 3D","sediment8 viscosity along z axis (m2/s) - only 3D","sediment9 viscosity along z axis (m2/s) - only 3D","sediment10 viscosity along z axis (m2/s) - only 3D","sediment11 viscosity along z axis (m2/s) - only 3D","sediment12 viscosity along z axis (m2/s) - only 3D","sediment13 viscosity along z axis (m2/s) - only 3D","sediment14 viscosity along z axis (m2/s) - only 3D","sediment15 viscosity along z axis (m2/s) - only 3D","sediment16 viscosity along z axis (m2/s) - only 3D","sediment17 viscosity along z axis (m2/s) - only 3D","sediment18 viscosity along z axis (m2/s) - only 3D","sediment19 viscosity along z axis (m2/s) - only 3D","sediment** viscosity along z axis (m2/s) - only 3D","sediment* viscosity along z axis (m2/s) - only 3D","sediment1 viscosity along z axis (m2/s) - only 3D","sediment2 viscosity along z axis (m2/s) - only 3D","sediment3 viscosity along z axis (m2/s) - only 3D","sediment4 viscosity along z axis (m2/s) - only 3D","sediment5 viscosity along z axis (m2/s) - only 3D","sediment6 viscosity along z axis (m2/s) - only 3D","sediment7 viscosity along z axis (m2/s) - only 3D","sediment8 viscosity along z axis (m2/s) - only 3D","sediment9 viscosity along z axis (m2/s) - only 3D","sediment10 viscosity along z axis (m2/s) - only 3D","sediment11 viscosity along z axis (m2/s) - only 3D","sediment12 viscosity along z axis (m2/s) - only 3D","sediment13 viscosity along z axis (m2/s) - only 3D","sediment14 viscosity along z axis (m2/s) - only 3D","sediment15 viscosity along z axis (m2/s) - only 3D","sediment16 viscosity along z axis (m2/s) - only 3D","sediment17 viscosity along z axis (m2/s) - only 3D","sediment18 viscosity along z axis (m2/s) - only 3D","sediment19 viscosity along z axis (m2/s) - only 3D","sediment** viscosity along z axis (m2/s) - only 3D","sediment* viscosity along z axis (m2/s) - only 3D","sediment1 viscosity along z axis (m2/s) - only 3D","sediment2 viscosity along z axis (m2/s) - only 3D","sediment3 viscosity along z axis (m2/s) - only 3D","sediment4 viscosity along z axis (m2/s) - only 3D","sediment5 viscosity along z axis (m2/s) - only 3D","sediment6 viscosity along z axis (m2/s) - only 3D","sediment7 viscosity along z axis (m2/s) - only 3D","sediment8 viscosity along z axis (m2/s) - only 3D","sediment9 viscosity along z axis (m2/s) - only 3D","sediment10 viscosity along z axis (m2/s) - only 3D","sediment11 viscosity along z axis (m2/s) - only 3D","sediment12 viscosity along z axis (m2/s) - only 3D","sediment13 viscosity along z axis (m2/s) - only 3D","sediment14 viscosity along z axis (m2/s) - only 3D","sediment15 viscosity along z axis (m2/s) - only 3D","sediment16 viscosity along z axis (m2/s) - only 3D","sediment17 viscosity along z axis (m2/s) - only 3D","sediment18 viscosity along z axis (m2/s) - only 3D","sediment19 viscosity along z axis (m2/s) - only 3D","sediment** viscosity along z axis (m2/s) - only 3D","sediment* viscosity along z axis (m2/s) - only 3D","sediment1 viscosity along z axis (m2/s) - only 3D","sediment2 viscosity along z axis (m2/s) - only 3D","sediment3 viscosity along z axis (m2/s) - only 3D","sediment4 viscosity along z axis (m2/s) - only 3D","sediment5 viscosity along z axis (m2/s) - only 3D","sediment6 viscosity along z axis (m2/s) - only 3D","sediment7 viscosity along z axis (m2/s) - only 3D","sediment8 viscosity along z axis (m2/s) - only 3D","sediment9 viscosity along z axis (m2/s) - only 3D","sediment10 viscosity along z axis (m2/s) - only 3D","sediment11 viscosity along z axis (m2/s) - only 3D","sediment12 viscosity along z axis (m2/s) - only 3D","sediment13 viscosity along z axis (m2/s) - only 3D","sediment14 viscosity along z axis (m2/s) - only 3D","sediment15 viscosity along z axis (m2/s) - only 3D","sediment16 viscosity along z axis (m2/s) - only 3D","sediment17 viscosity along z axis (m2/s) - only 3D","sediment18 viscosity along z axis (m2/s) - only 3D","sediment19 viscosity along z axis (m2/s) - only 3D","sediment** viscosity along z axis (m2/s) - only 3D","sediment* viscosity along z axis (m2/s) - only 3D","sediment1 viscosity along z axis (m2/s) - only 3D","sediment2 viscosity along z axis (m2/s) - only 3D","sediment3 viscosity along z axis (m2/s) - only 3D","sediment4 viscosity along z axis (m2/s) - only 3D","sediment5 viscosity along z axis (m2/s) - only 3D","sediment6 viscosity along z axis (m2/s) - only 3D","sediment7 viscosity along z axis (m2/s) - only 3D","sediment8 viscosity along z axis (m2/s) - only 3D","sediment9 viscosity along z axis (m2/s) - only 3D","sediment10 viscosity along z axis (m2/s) - only 3D","sediment11 viscosity along z axis (m2/s) - only 3D","sediment12 viscosity along z axis (m2/s) - only 3D","sediment13 viscosity along z axis (m2/s) - only 3D","sediment14 viscosity along z axis (m2/s) - only 3D","sediment15 viscosity along z axis (m2/s) - only 3D","sediment16 viscosity along z axis (m2/s) - only 3D","sediment17 viscosity along z axis (m2/s) - only 3D","sediment18 viscosity along z axis (m2/s) - only 3D","sediment19 viscosity along z axis (m2/s) - only 3D","sediment** viscosity along z axis (m2/s) - only 3D","sediment* viscosity along z axis (m2/s) - only 3D","sediment1 viscosity along z axis (m2/s) - only 3D","sediment2 viscosity along z axis (m2/s) - only 3D","sediment3 viscosity along z axis (m2/s) - only 3D","sediment4 viscosity along z axis (m2/s) - only 3D","sediment5 viscosity along z axis (m2/s) - only 3D","sediment6 viscosity along z axis (m2/s) - only 3D","sediment7 viscosity along z axis (m2/s) - only 3D","sediment8 viscosity along z axis (m2/s) - only 3D","sediment9 viscosity along z axis (m2/s) - only 3D","sediment10 viscosity along z axis (m2/s) - only 3D","sediment11 viscosity along z axis (m2/s) - only 3D","sediment12 viscosity along z axis (m2/s) - only 3D","sediment13 viscosity along z axis (m2/s) - only 3D","sediment14 viscosity along z axis (m2/s) - only 3D","sediment15 viscosity along z axis (m2/s) - only 3D","sediment16 viscosity along z axis (m2/s) - only 3D","sediment17 viscosity along z axis (m2/s) - only 3D","sediment18 viscosity along z axis (m2/s) - only 3D","sediment19 viscosity along z axis (m2/s) - only 3D","sediment** viscosity along z axis (m2/s) - only 3D","sediment* viscosity along z axis (m2/s) - only 3D","sediment1 viscosity along z axis (m2/s) - only 3D","sediment2 viscosity along z axis (m2/s) - only 3D","sediment3 viscosity along z axis (m2/s) - only 3D","sediment4 viscosity along z axis (m2/s) - only 3D","sediment5 viscosity along z axis (m2/s) - only 3D","sediment6 viscosity along z axis (m2/s) - only 3D","sediment7 viscosity along z axis (m2/s) - only 3D","sediment8 viscosity along z axis (m2/s) - only 3D","sediment9 viscosity along z axis (m2/s) - only 3D","sediment10 viscosity along z axis (m2/s) - only 3D","sediment11 viscosity along z axis (m2/s) - only 3D","sediment12 viscosity along z axis (m2/s) - only 3D","sediment13 viscosity along z axis (m2/s) - only 3D","sediment14 viscosity along z axis (m2/s) - only 3D","sediment15 viscosity along z axis (m2/s) - only 3D","sediment16 viscosity along z axis (m2/s) - only 3D","sediment17 viscosity along z axis (m2/s) - only 3D","sediment18 viscosity along z axis (m2/s) - only 3D","sediment19 viscosity along z axis (m2/s) - only 3D","sediment** viscosity along z axis (m2/s) - only 3D","bed load transport rate (kg/(m*s))","bed load transport rate x axis","bed load transport rate y axis","bedload transport rate of class i","thickness of the* layer","thickness of the* layer","thickness of the* layer","thickness of the* layer","thickness of the* layer","thickness of the* layer","thickness of the* layer","thickness of the* layer","thickness of the* layer","thickness of the* layer","thickness of the* layer","thickness of the* layer","thickness of the* layer","thickness of the* layer","thickness of the* layer","thickness of the* layer","thickness of the* layer","thickness of the* layer","thickness of the* layer","thickness of the* layer","thickness of the* layer","thickness of the1 layer","thickness of the1 layer","thickness of the1 layer","thickness of the1 layer","thickness of the1 layer","thickness of the1 layer","thickness of the1 layer","thickness of the1 layer","thickness of the1 layer","thickness of the1 layer","thickness of the1 layer","thickness of the1 layer","thickness of the1 layer","thickness of the1 layer","thickness of the1 layer","thickness of the1 layer","thickness of the1 layer","thickness of the1 layer","thickness of the1 layer","thickness of the1 layer","thickness of the1 layer","thickness of the2 layer","thickness of the2 layer","thickness of the2 layer","thickness of the2 layer","thickness of the2 layer","thickness of the2 layer","thickness of the2 layer","thickness of the2 layer","thickness of the2 layer","thickness of the2 layer","thickness of the2 layer","thickness of the2 layer","thickness of the2 layer","thickness of the2 layer","thickness of the2 layer","thickness of the2 layer","thickness of the2 layer","thickness of the2 layer","thickness of the2 layer","thickness of the2 layer","thickness of the2 layer","thickness of the3 layer","thickness of the3 layer","thickness of the3 layer","thickness of the3 layer","thickness of the3 layer","thickness of the3 layer","thickness of the3 layer","thickness of the3 layer","thickness of the3 layer","thickness of the3 layer","thickness of the3 layer","thickness of the3 layer","thickness of the3 layer","thickness of the3 layer","thickness of the3 layer","thickness of the3 layer","thickness of the3 layer","thickness of the3 layer","thickness of the3 layer","thickness of the3 layer","thickness of the3 layer","thickness of the4 layer","thickness of the4 layer","thickness of the4 layer","thickness of the4 layer","thickness of the4 layer","thickness of the4 layer","thickness of the4 layer","thickness of the4 layer","thickness of the4 layer","thickness of the4 layer","thickness of the4 layer","thickness of the4 layer","thickness of the4 layer","thickness of the4 layer","thickness of the4 layer","thickness of the4 layer","thickness of the4 layer","thickness of the4 layer","thickness of the4 layer","thickness of the4 layer","thickness of the4 layer","thickness of the5 layer","thickness of the5 layer","thickness of the5 layer","thickness of the5 layer","thickness of the5 layer","thickness of the5 layer","thickness of the5 layer","thickness of the5 layer","thickness of the5 layer","thickness of the5 layer","thickness of the5 layer","thickness of the5 layer","thickness of the5 layer","thickness of the5 layer","thickness of the5 layer","thickness of the5 layer","thickness of the5 layer","thickness of the5 layer","thickness of the5 layer","thickness of the5 layer","thickness of the5 layer","thickness of the6 layer","thickness of the6 layer","thickness of the6 layer","thickness of the6 layer","thickness of the6 layer","thickness of the6 layer","thickness of the6 layer","thickness of the6 layer","thickness of the6 layer","thickness of the6 layer","thickness of the6 layer","thickness of the6 layer","thickness of the6 layer","thickness of the6 layer","thickness of the6 layer","thickness of the6 layer","thickness of the6 layer","thickness of the6 layer","thickness of the6 layer","thickness of the6 layer","thickness of the6 layer","thickness of the7 layer","thickness of the7 layer","thickness of the7 layer","thickness of the7 layer","thickness of the7 layer","thickness of the7 layer","thickness of the7 layer","thickness of the7 layer","thickness of the7 layer","thickness of the7 layer","thickness of the7 layer","thickness of the7 layer","thickness of the7 layer","thickness of the7 layer","thickness of the7 layer","thickness of the7 layer","thickness of the7 layer","thickness of the7 layer","thickness of the7 layer","thickness of the7 layer","thickness of the7 layer","thickness of the8 layer","thickness of the8 layer","thickness of the8 layer","thickness of the8 layer","thickness of the8 layer","thickness of the8 layer","thickness of the8 layer","thickness of the8 layer","thickness of the8 layer","thickness of the8 layer","thickness of the8 layer","thickness of the8 layer","thickness of the8 layer","thickness of the8 layer","thickness of the8 layer","thickness of the8 layer","thickness of the8 layer","thickness of the8 layer","thickness of the8 layer","thickness of the8 layer","thickness of the8 layer","thickness of the9 layer","thickness of the9 layer","thickness of the9 layer","thickness of the9 layer","thickness of the9 layer","thickness of the9 layer","thickness of the9 layer","thickness of the9 layer","thickness of the9 layer","thickness of the9 layer","thickness of the9 layer","thickness of the9 layer","thickness of the9 layer","thickness of the9 layer","thickness of the9 layer","thickness of the9 layer","thickness of the9 layer","thickness of the9 layer","thickness of the9 layer","thickness of the9 layer","thickness of the9 layer","thickness of the10 layer","thickness of the10 layer","thickness of the10 layer","thickness of the10 layer","thickness of the10 layer","thickness of the10 layer","thickness of the10 layer","thickness of the10 layer","thickness of the10 layer","thickness of the10 layer","thickness of the10 layer","thickness of the10 layer","thickness of the10 layer","thickness of the10 layer","thickness of the10 layer","thickness of the10 layer","thickness of the10 layer","thickness of the10 layer","thickness of the10 layer","thickness of the10 layer","thickness of the10 layer","thickness of the11 layer","thickness of the11 layer","thickness of the11 layer","thickness of the11 layer","thickness of the11 layer","thickness of the11 layer","thickness of the11 layer","thickness of the11 layer","thickness of the11 layer","thickness of the11 layer","thickness of the11 layer","thickness of the11 layer","thickness of the11 layer","thickness of the11 layer","thickness of the11 layer","thickness of the11 layer","thickness of the11 layer","thickness of the11 layer","thickness of the11 layer","thickness of the11 layer","thickness of the11 layer","thickness of the12 layer","thickness of the12 layer","thickness of the12 layer","thickness of the12 layer","thickness of the12 layer","thickness of the12 layer","thickness of the12 layer","thickness of the12 layer","thickness of the12 layer","thickness of the12 layer","thickness of the12 layer","thickness of the12 layer","thickness of the12 layer","thickness of the12 layer","thickness of the12 layer","thickness of the12 layer","thickness of the12 layer","thickness of the12 layer","thickness of the12 layer","thickness of the12 layer","thickness of the12 layer","thickness of the13 layer","thickness of the13 layer","thickness of the13 layer","thickness of the13 layer","thickness of the13 layer","thickness of the13 layer","thickness of the13 layer","thickness of the13 layer","thickness of the13 layer","thickness of the13 layer","thickness of the13 layer","thickness of the13 layer","thickness of the13 layer","thickness of the13 layer","thickness of the13 layer","thickness of the13 layer","thickness of the13 layer","thickness of the13 layer","thickness of the13 layer","thickness of the13 layer","thickness of the13 layer","thickness of the14 layer","thickness of the14 layer","thickness of the14 layer","thickness of the14 layer","thickness of the14 layer","thickness of the14 layer","thickness of the14 layer","thickness of the14 layer","thickness of the14 layer","thickness of the14 layer","thickness of the14 layer","thickness of the14 layer","thickness of the14 layer","thickness of the14 layer","thickness of the14 layer","thickness of the14 layer","thickness of the14 layer","thickness of the14 layer","thickness of the14 layer","thickness of the14 layer","thickness of the14 layer","thickness of the15 layer","thickness of the15 layer","thickness of the15 layer","thickness of the15 layer","thickness of the15 layer","thickness of the15 layer","thickness of the15 layer","thickness of the15 layer","thickness of the15 layer","thickness of the15 layer","thickness of the15 layer","thickness of the15 layer","thickness of the15 layer","thickness of the15 layer","thickness of the15 layer","thickness of the15 layer","thickness of the15 layer","thickness of the15 layer","thickness of the15 layer","thickness of the15 layer","thickness of the15 layer","thickness of the16 layer","thickness of the16 layer","thickness of the16 layer","thickness of the16 layer","thickness of the16 layer","thickness of the16 layer","thickness of the16 layer","thickness of the16 layer","thickness of the16 layer","thickness of the16 layer","thickness of the16 layer","thickness of the16 layer","thickness of the16 layer","thickness of the16 layer","thickness of the16 layer","thickness of the16 layer","thickness of the16 layer","thickness of the16 layer","thickness of the16 layer","thickness of the16 layer","thickness of the16 layer","thickness of the17 layer","thickness of the17 layer","thickness of the17 layer","thickness of the17 layer","thickness of the17 layer","thickness of the17 layer","thickness of the17 layer","thickness of the17 layer","thickness of the17 layer","thickness of the17 layer","thickness of the17 layer","thickness of the17 layer","thickness of the17 layer","thickness of the17 layer","thickness of the17 layer","thickness of the17 layer","thickness of the17 layer","thickness of the17 layer","thickness of the17 layer","thickness of the17 layer","thickness of the17 layer","thickness of the18 layer","thickness of the18 layer","thickness of the18 layer","thickness of the18 layer","thickness of the18 layer","thickness of the18 layer","thickness of the18 layer","thickness of the18 layer","thickness of the18 layer","thickness of the18 layer","thickness of the18 layer","thickness of the18 layer","thickness of the18 layer","thickness of the18 layer","thickness of the18 layer","thickness of the18 layer","thickness of the18 layer","thickness of the18 layer","thickness of the18 layer","thickness of the18 layer","thickness of the18 layer","thickness of the19 layer","thickness of the19 layer","thickness of the19 layer","thickness of the19 layer","thickness of the19 layer","thickness of the19 layer","thickness of the19 layer","thickness of the19 layer","thickness of the19 layer","thickness of the19 layer","thickness of the19 layer","thickness of the19 layer","thickness of the19 layer","thickness of the19 layer","thickness of the19 layer","thickness of the19 layer","thickness of the19 layer","thickness of the19 layer","thickness of the19 layer","thickness of the19 layer","thickness of the19 layer","thickness of the** layer","thickness of the** layer","thickness of the** layer","thickness of the** layer","thickness of the** layer","thickness of the** layer","thickness of the** layer","thickness of the** layer","thickness of the** layer","thickness of the** layer","thickness of the** layer","thickness of the** layer","thickness of the** layer","thickness of the** layer","thickness of the** layer","thickness of the** layer","thickness of the** layer","thickness of the** layer","thickness of the** layer","thickness of the** layer","thickness of the** layer","concentration of bed layer*","concentration of bed layer*","concentration of bed layer*","concentration of bed layer*","concentration of bed layer*","concentration of bed layer*","concentration of bed layer*","concentration of bed layer*","concentration of bed layer*","concentration of bed layer*","concentration of bed layer*","concentration of bed layer*","concentration of bed layer*","concentration of bed layer*","concentration of bed layer*","concentration of bed layer*","concentration of bed layer*","concentration of bed layer*","concentration of bed layer*","concentration of bed layer*","concentration of bed layer*","concentration of bed layer1","concentration of bed layer1","concentration of bed layer1","concentration of bed layer1","concentration of bed layer1","concentration of bed layer1","concentration of bed layer1","concentration of bed layer1","concentration of bed layer1","concentration of bed layer1","concentration of bed layer1","concentration of bed layer1","concentration of bed layer1","concentration of bed layer1","concentration of bed layer1","concentration of bed layer1","concentration of bed layer1","concentration of bed layer1","concentration of bed layer1","concentration of bed layer1","concentration of bed layer1","concentration of bed layer2","concentration of bed layer2","concentration of bed layer2","concentration of bed layer2","concentration of bed layer2","concentration of bed layer2","concentration of bed layer2","concentration of bed layer2","concentration of bed layer2","concentration of bed layer2","concentration of bed layer2","concentration of bed layer2","concentration of bed layer2","concentration of bed layer2","concentration of bed layer2","concentration of bed layer2","concentration of bed layer2","concentration of bed layer2","concentration of bed layer2","concentration of bed layer2","concentration of bed layer2","concentration of bed layer3","concentration of bed layer3","concentration of bed layer3","concentration of bed layer3","concentration of bed layer3","concentration of bed layer3","concentration of bed layer3","concentration of bed layer3","concentration of bed layer3","concentration of bed layer3","concentration of bed layer3","concentration of bed layer3","concentration of bed layer3","concentration of bed layer3","concentration of bed layer3","concentration of bed layer3","concentration of bed layer3","concentration of bed layer3","concentration of bed layer3","concentration of bed layer3","concentration of bed layer3","concentration of bed layer4","concentration of bed layer4","concentration of bed layer4","concentration of bed layer4","concentration of bed layer4","concentration of bed layer4","concentration of bed layer4","concentration of bed layer4","concentration of bed layer4","concentration of bed layer4","concentration of bed layer4","concentration of bed layer4","concentration of bed layer4","concentration of bed layer4","concentration of bed layer4","concentration of bed layer4","concentration of bed layer4","concentration of bed layer4","concentration of bed layer4","concentration of bed layer4","concentration of bed layer4","concentration of bed layer5","concentration of bed layer5","concentration of bed layer5","concentration of bed layer5","concentration of bed layer5","concentration of bed layer5","concentration of bed layer5","concentration of bed layer5","concentration of bed layer5","concentration of bed layer5","concentration of bed layer5","concentration of bed layer5","concentration of bed layer5","concentration of bed layer5","concentration of bed layer5","concentration of bed layer5","concentration of bed layer5","concentration of bed layer5","concentration of bed layer5","concentration of bed layer5","concentration of bed layer5","concentration of bed layer6","concentration of bed layer6","concentration of bed layer6","concentration of bed layer6","concentration of bed layer6","concentration of bed layer6","concentration of bed layer6","concentration of bed layer6","concentration of bed layer6","concentration of bed layer6","concentration of bed layer6","concentration of bed layer6","concentration of bed layer6","concentration of bed layer6","concentration of bed layer6","concentration of bed layer6","concentration of bed layer6","concentration of bed layer6","concentration of bed layer6","concentration of bed layer6","concentration of bed layer6","concentration of bed layer7","concentration of bed layer7","concentration of bed layer7","concentration of bed layer7","concentration of bed layer7","concentration of bed layer7","concentration of bed layer7","concentration of bed layer7","concentration of bed layer7","concentration of bed layer7","concentration of bed layer7","concentration of bed layer7","concentration of bed layer7","concentration of bed layer7","concentration of bed layer7","concentration of bed layer7","concentration of bed layer7","concentration of bed layer7","concentration of bed layer7","concentration of bed layer7","concentration of bed layer7","concentration of bed layer8","concentration of bed layer8","concentration of bed layer8","concentration of bed layer8","concentration of bed layer8","concentration of bed layer8","concentration of bed layer8","concentration of bed layer8","concentration of bed layer8","concentration of bed layer8","concentration of bed layer8","concentration of bed layer8","concentration of bed layer8","concentration of bed layer8","concentration of bed layer8","concentration of bed layer8","concentration of bed layer8","concentration of bed layer8","concentration of bed layer8","concentration of bed layer8","concentration of bed layer8","concentration of bed layer9","concentration of bed layer9","concentration of bed layer9","concentration of bed layer9","concentration of bed layer9","concentration of bed layer9","concentration of bed layer9","concentration of bed layer9","concentration of bed layer9","concentration of bed layer9","concentration of bed layer9","concentration of bed layer9","concentration of bed layer9","concentration of bed layer9","concentration of bed layer9","concentration of bed layer9","concentration of bed layer9","concentration of bed layer9","concentration of bed layer9","concentration of bed layer9","concentration of bed layer9","concentration of bed layer10","concentration of bed layer10","concentration of bed layer10","concentration of bed layer10","concentration of bed layer10","concentration of bed layer10","concentration of bed layer10","concentration of bed layer10","concentration of bed layer10","concentration of bed layer10","concentration of bed layer10","concentration of bed layer10","concentration of bed layer10","concentration of bed layer10","concentration of bed layer10","concentration of bed layer10","concentration of bed layer10","concentration of bed layer10","concentration of bed layer10","concentration of bed layer10","concentration of bed layer10","concentration of bed layer11","concentration of bed layer11","concentration of bed layer11","concentration of bed layer11","concentration of bed layer11","concentration of bed layer11","concentration of bed layer11","concentration of bed layer11","concentration of bed layer11","concentration of bed layer11","concentration of bed layer11","concentration of bed layer11","concentration of bed layer11","concentration of bed layer11","concentration of bed layer11","concentration of bed layer11","concentration of bed layer11","concentration of bed layer11","concentration of bed layer11","concentration of bed layer11","concentration of bed layer11","concentration of bed layer12","concentration of bed layer12","concentration of bed layer12","concentration of bed layer12","concentration of bed layer12","concentration of bed layer12","concentration of bed layer12","concentration of bed layer12","concentration of bed layer12","concentration of bed layer12","concentration of bed layer12","concentration of bed layer12","concentration of bed layer12","concentration of bed layer12","concentration of bed layer12","concentration of bed layer12","concentration of bed layer12","concentration of bed layer12","concentration of bed layer12","concentration of bed layer12","concentration of bed layer12","concentration of bed layer13","concentration of bed layer13","concentration of bed layer13","concentration of bed layer13","concentration of bed layer13","concentration of bed layer13","concentration of bed layer13","concentration of bed layer13","concentration of bed layer13","concentration of bed layer13","concentration of bed layer13","concentration of bed layer13","concentration of bed layer13","concentration of bed layer13","concentration of bed layer13","concentration of bed layer13","concentration of bed layer13","concentration of bed layer13","concentration of bed layer13","concentration of bed layer13","concentration of bed layer13","concentration of bed layer14","concentration of bed layer14","concentration of bed layer14","concentration of bed layer14","concentration of bed layer14","concentration of bed layer14","concentration of bed layer14","concentration of bed layer14","concentration of bed layer14","concentration of bed layer14","concentration of bed layer14","concentration of bed layer14","concentration of bed layer14","concentration of bed layer14","concentration of bed layer14","concentration of bed layer14","concentration of bed layer14","concentration of bed layer14","concentration of bed layer14","concentration of bed layer14","concentration of bed layer14","concentration of bed layer15","concentration of bed layer15","concentration of bed layer15","concentration of bed layer15","concentration of bed layer15","concentration of bed layer15","concentration of bed layer15","concentration of bed layer15","concentration of bed layer15","concentration of bed layer15","concentration of bed layer15","concentration of bed layer15","concentration of bed layer15","concentration of bed layer15","concentration of bed layer15","concentration of bed layer15","concentration of bed layer15","concentration of bed layer15","concentration of bed layer15","concentration of bed layer15","concentration of bed layer15","concentration of bed layer16","concentration of bed layer16","concentration of bed layer16","concentration of bed layer16","concentration of bed layer16","concentration of bed layer16","concentration of bed layer16","concentration of bed layer16","concentration of bed layer16","concentration of bed layer16","concentration of bed layer16","concentration of bed layer16","concentration of bed layer16","concentration of bed layer16","concentration of bed layer16","concentration of bed layer16","concentration of bed layer16","concentration of bed layer16","concentration of bed layer16","concentration of bed layer16","concentration of bed layer16","concentration of bed layer17","concentration of bed layer17","concentration of bed layer17","concentration of bed layer17","concentration of bed layer17","concentration of bed layer17","concentration of bed layer17","concentration of bed layer17","concentration of bed layer17","concentration of bed layer17","concentration of bed layer17","concentration of bed layer17","concentration of bed layer17","concentration of bed layer17","concentration of bed layer17","concentration of bed layer17","concentration of bed layer17","concentration of bed layer17","concentration of bed layer17","concentration of bed layer17","concentration of bed layer17","concentration of bed layer18","concentration of bed layer18","concentration of bed layer18","concentration of bed layer18","concentration of bed layer18","concentration of bed layer18","concentration of bed layer18","concentration of bed layer18","concentration of bed layer18","concentration of bed layer18","concentration of bed layer18","concentration of bed layer18","concentration of bed layer18","concentration of bed layer18","concentration of bed layer18","concentration of bed layer18","concentration of bed layer18","concentration of bed layer18","concentration of bed layer18","concentration of bed layer18","concentration of bed layer18","concentration of bed layer19","concentration of bed layer19","concentration of bed layer19","concentration of bed layer19","concentration of bed layer19","concentration of bed layer19","concentration of bed layer19","concentration of bed layer19","concentration of bed layer19","concentration of bed layer19","concentration of bed layer19","concentration of bed layer19","concentration of bed layer19","concentration of bed layer19","concentration of bed layer19","concentration of bed layer19","concentration of bed layer19","concentration of bed layer19","concentration of bed layer19","concentration of bed layer19","concentration of bed layer19","concentration of bed layer**","concentration of bed layer**","concentration of bed layer**","concentration of bed layer**","concentration of bed layer**","concentration of bed layer**","concentration of bed layer**","concentration of bed layer**","concentration of bed layer**","concentration of bed layer**","concentration of bed layer**","concentration of bed layer**","concentration of bed layer**","concentration of bed layer**","concentration of bed layer**","concentration of bed layer**","concentration of bed layer**","concentration of bed layer**","concentration of bed layer**","concentration of bed layer**","concentration of bed layer**","bed load transport rate of sediment of class*","bed load transport rate of sediment of class1","bed load transport rate of sediment of class2","bed load transport rate of sediment of class3","bed load transport rate of sediment of class4","bed load transport rate of sediment of class5","bed load transport rate of sediment of class6","bed load transport rate of sediment of class7","bed load transport rate of sediment of class8","bed load transport rate of sediment of class9","bed load transport rate of sediment of class10","bed load transport rate of sediment of class11","bed load transport rate of sediment of class12","bed load transport rate of sediment of class13","bed load transport rate of sediment of class14","bed load transport rate of sediment of class15","bed load transport rate of sediment of class16","bed load transport rate of sediment of class17","bed load transport rate of sediment of class18","bed load transport rate of sediment of class19","bed load transport rate of sediment of class**","bed load transport rate of sediment of class*","bed load transport rate of sediment of class1","bed load transport rate of sediment of class2","bed load transport rate of sediment of class3","bed load transport rate of sediment of class4","bed load transport rate of sediment of class5","bed load transport rate of sediment of class6","bed load transport rate of sediment of class7","bed load transport rate of sediment of class8","bed load transport rate of sediment of class9","bed load transport rate of sediment of class10","bed load transport rate of sediment of class11","bed load transport rate of sediment of class12","bed load transport rate of sediment of class13","bed load transport rate of sediment of class14","bed load transport rate of sediment of class15","bed load transport rate of sediment of class16","bed load transport rate of sediment of class17","bed load transport rate of sediment of class18","bed load transport rate of sediment of class19","bed load transport rate of sediment of class**","bed load transport rate of sediment of class*","bed load transport rate of sediment of class1","bed load transport rate of sediment of class2","bed load transport rate of sediment of class3","bed load transport rate of sediment of class4","bed load transport rate of sediment of class5","bed load transport rate of sediment of class6","bed load transport rate of sediment of class7","bed load transport rate of sediment of class8","bed load transport rate of sediment of class9","bed load transport rate of sediment of class10","bed load transport rate of sediment of class11","bed load transport rate of sediment of class12","bed load transport rate of sediment of class13","bed load transport rate of sediment of class14","bed load transport rate of sediment of class15","bed load transport rate of sediment of class16","bed load transport rate of sediment of class17","bed load transport rate of sediment of class18","bed load transport rate of sediment of class19","bed load transport rate of sediment of class**","bed load transport rate of sediment of class*","bed load transport rate of sediment of class1","bed load transport rate of sediment of class2","bed load transport rate of sediment of class3","bed load transport rate of sediment of class4","bed load transport rate of sediment of class5","bed load transport rate of sediment of class6","bed load transport rate of sediment of class7","bed load transport rate of sediment of class8","bed load transport rate of sediment of class9","bed load transport rate of sediment of class10","bed load transport rate of sediment of class11","bed load transport rate of sediment of class12","bed load transport rate of sediment of class13","bed load transport rate of sediment of class14","bed load transport rate of sediment of class15","bed load transport rate of sediment of class16","bed load transport rate of sediment of class17","bed load transport rate of sediment of class18","bed load transport rate of sediment of class19","bed load transport rate of sediment of class**","bed load transport rate of sediment of class*","bed load transport rate of sediment of class1","bed load transport rate of sediment of class2","bed load transport rate of sediment of class3","bed load transport rate of sediment of class4","bed load transport rate of sediment of class5","bed load transport rate of sediment of class6","bed load transport rate of sediment of class7","bed load transport rate of sediment of class8","bed load transport rate of sediment of class9","bed load transport rate of sediment of class10","bed load transport rate of sediment of class11","bed load transport rate of sediment of class12","bed load transport rate of sediment of class13","bed load transport rate of sediment of class14","bed load transport rate of sediment of class15","bed load transport rate of sediment of class16","bed load transport rate of sediment of class17","bed load transport rate of sediment of class18","bed load transport rate of sediment of class19","bed load transport rate of sediment of class**","bed load transport rate of sediment of class*","bed load transport rate of sediment of class1","bed load transport rate of sediment of class2","bed load transport rate of sediment of class3","bed load transport rate of sediment of class4","bed load transport rate of sediment of class5","bed load transport rate of sediment of class6","bed load transport rate of sediment of class7","bed load transport rate of sediment of class8","bed load transport rate of sediment of class9","bed load transport rate of sediment of class10","bed load transport rate of sediment of class11","bed load transport rate of sediment of class12","bed load transport rate of sediment of class13","bed load transport rate of sediment of class14","bed load transport rate of sediment of class15","bed load transport rate of sediment of class16","bed load transport rate of sediment of class17","bed load transport rate of sediment of class18","bed load transport rate of sediment of class19","bed load transport rate of sediment of class**","bed load transport rate of sediment of class*","bed load transport rate of sediment of class1","bed load transport rate of sediment of class2","bed load transport rate of sediment of class3","bed load transport rate of sediment of class4","bed load transport rate of sediment of class5","bed load transport rate of sediment of class6","bed load transport rate of sediment of class7","bed load transport rate of sediment of class8","bed load transport rate of sediment of class9","bed load transport rate of sediment of class10","bed load transport rate of sediment of class11","bed load transport rate of sediment of class12","bed load transport rate of sediment of class13","bed load transport rate of sediment of class14","bed load transport rate of sediment of class15","bed load transport rate of sediment of class16","bed load transport rate of sediment of class17","bed load transport rate of sediment of class18","bed load transport rate of sediment of class19","bed load transport rate of sediment of class**","bed load transport rate of sediment of class*","bed load transport rate of sediment of class1","bed load transport rate of sediment of class2","bed load transport rate of sediment of class3","bed load transport rate of sediment of class4","bed load transport rate of sediment of class5","bed load transport rate of sediment of class6","bed load transport rate of sediment of class7","bed load transport rate of sediment of class8","bed load transport rate of sediment of class9","bed load transport rate of sediment of class10","bed load transport rate of sediment of class11","bed load transport rate of sediment of class12","bed load transport rate of sediment of class13","bed load transport rate of sediment of class14","bed load transport rate of sediment of class15","bed load transport rate of sediment of class16","bed load transport rate of sediment of class17","bed load transport rate of sediment of class18","bed load transport rate of sediment of class19","bed load transport rate of sediment of class**","bed load transport rate of sediment of class*","bed load transport rate of sediment of class1","bed load transport rate of sediment of class2","bed load transport rate of sediment of class3","bed load transport rate of sediment of class4","bed load transport rate of sediment of class5","bed load transport rate of sediment of class6","bed load transport rate of sediment of class7","bed load transport rate of sediment of class8","bed load transport rate of sediment of class9","bed load transport rate of sediment of class10","bed load transport rate of sediment of class11","bed load transport rate of sediment of class12","bed load transport rate of sediment of class13","bed load transport rate of sediment of class14","bed load transport rate of sediment of class15","bed load transport rate of sediment of class16","bed load transport rate of sediment of class17","bed load transport rate of sediment of class18","bed load transport rate of sediment of class19","bed load transport rate of sediment of class**","bed load transport rate of sediment of class*","bed load transport rate of sediment of class1","bed load transport rate of sediment of class2","bed load transport rate of sediment of class3","bed load transport rate of sediment of class4","bed load transport rate of sediment of class5","bed load transport rate of sediment of class6","bed load transport rate of sediment of class7","bed load transport rate of sediment of class8","bed load transport rate of sediment of class9","bed load transport rate of sediment of class10","bed load transport rate of sediment of class11","bed load transport rate of sediment of class12","bed load transport rate of sediment of class13","bed load transport rate of sediment of class14","bed load transport rate of sediment of class15","bed load transport rate of sediment of class16","bed load transport rate of sediment of class17","bed load transport rate of sediment of class18","bed load transport rate of sediment of class19","bed load transport rate of sediment of class**","bed load transport rate of sediment of class*","bed load transport rate of sediment of class1","bed load transport rate of sediment of class2","bed load transport rate of sediment of class3","bed load transport rate of sediment of class4","bed load transport rate of sediment of class5","bed load transport rate of sediment of class6","bed load transport rate of sediment of class7","bed load transport rate of sediment of class8","bed load transport rate of sediment of class9","bed load transport rate of sediment of class10","bed load transport rate of sediment of class11","bed load transport rate of sediment of class12","bed load transport rate of sediment of class13","bed load transport rate of sediment of class14","bed load transport rate of sediment of class15","bed load transport rate of sediment of class16","bed load transport rate of sediment of class17","bed load transport rate of sediment of class18","bed load transport rate of sediment of class19","bed load transport rate of sediment of class**","bed load transport rate of sediment of class*","bed load transport rate of sediment of class1","bed load transport rate of sediment of class2","bed load transport rate of sediment of class3","bed load transport rate of sediment of class4","bed load transport rate of sediment of class5","bed load transport rate of sediment of class6","bed load transport rate of sediment of class7","bed load transport rate of sediment of class8","bed load transport rate of sediment of class9","bed load transport rate of sediment of class10","bed load transport rate of sediment of class11","bed load transport rate of sediment of class12","bed load transport rate of sediment of class13","bed load transport rate of sediment of class14","bed load transport rate of sediment of class15","bed load transport rate of sediment of class16","bed load transport rate of sediment of class17","bed load transport rate of sediment of class18","bed load transport rate of sediment of class19","bed load transport rate of sediment of class**","bed load transport rate of sediment of class*","bed load transport rate of sediment of class1","bed load transport rate of sediment of class2","bed load transport rate of sediment of class3","bed load transport rate of sediment of class4","bed load transport rate of sediment of class5","bed load transport rate of sediment of class6","bed load transport rate of sediment of class7","bed load transport rate of sediment of class8","bed load transport rate of sediment of class9","bed load transport rate of sediment of class10","bed load transport rate of sediment of class11","bed load transport rate of sediment of class12","bed load transport rate of sediment of class13","bed load transport rate of sediment of class14","bed load transport rate of sediment of class15","bed load transport rate of sediment of class16","bed load transport rate of sediment of class17","bed load transport rate of sediment of class18","bed load transport rate of sediment of class19","bed load transport rate of sediment of class**","bed load transport rate of sediment of class*","bed load transport rate of sediment of class1","bed load transport rate of sediment of class2","bed load transport rate of sediment of class3","bed load transport rate of sediment of class4","bed load transport rate of sediment of class5","bed load transport rate of sediment of class6","bed load transport rate of sediment of class7","bed load transport rate of sediment of class8","bed load transport rate of sediment of class9","bed load transport rate of sediment of class10","bed load transport rate of sediment of class11","bed load transport rate of sediment of class12","bed load transport rate of sediment of class13","bed load transport rate of sediment of class14","bed load transport rate of sediment of class15","bed load transport rate of sediment of class16","bed load transport rate of sediment of class17","bed load transport rate of sediment of class18","bed load transport rate of sediment of class19","bed load transport rate of sediment of class**","bed load transport rate of sediment of class*","bed load transport rate of sediment of class1","bed load transport rate of sediment of class2","bed load transport rate of sediment of class3","bed load transport rate of sediment of class4","bed load transport rate of sediment of class5","bed load transport rate of sediment of class6","bed load transport rate of sediment of class7","bed load transport rate of sediment of class8","bed load transport rate of sediment of class9","bed load transport rate of sediment of class10","bed load transport rate of sediment of class11","bed load transport rate of sediment of class12","bed load transport rate of sediment of class13","bed load transport rate of sediment of class14","bed load transport rate of sediment of class15","bed load transport rate of sediment of class16","bed load transport rate of sediment of class17","bed load transport rate of sediment of class18","bed load transport rate of sediment of class19","bed load transport rate of sediment of class**","bed load transport rate of sediment of class*","bed load transport rate of sediment of class1","bed load transport rate of sediment of class2","bed load transport rate of sediment of class3","bed load transport rate of sediment of class4","bed load transport rate of sediment of class5","bed load transport rate of sediment of class6","bed load transport rate of sediment of class7","bed load transport rate of sediment of class8","bed load transport rate of sediment of class9","bed load transport rate of sediment of class10","bed load transport rate of sediment of class11","bed load transport rate of sediment of class12","bed load transport rate of sediment of class13","bed load transport rate of sediment of class14","bed load transport rate of sediment of class15","bed load transport rate of sediment of class16","bed load transport rate of sediment of class17","bed load transport rate of sediment of class18","bed load transport rate of sediment of class19","bed load transport rate of sediment of class**","bed load transport rate of sediment of class*","bed load transport rate of sediment of class1","bed load transport rate of sediment of class2","bed load transport rate of sediment of class3","bed load transport rate of sediment of class4","bed load transport rate of sediment of class5","bed load transport rate of sediment of class6","bed load transport rate of sediment of class7","bed load transport rate of sediment of class8","bed load transport rate of sediment of class9","bed load transport rate of sediment of class10","bed load transport rate of sediment of class11","bed load transport rate of sediment of class12","bed load transport rate of sediment of class13","bed load transport rate of sediment of class14","bed load transport rate of sediment of class15","bed load transport rate of sediment of class16","bed load transport rate of sediment of class17","bed load transport rate of sediment of class18","bed load transport rate of sediment of class19","bed load transport rate of sediment of class**","bed load transport rate of sediment of class*","bed load transport rate of sediment of class1","bed load transport rate of sediment of class2","bed load transport rate of sediment of class3","bed load transport rate of sediment of class4","bed load transport rate of sediment of class5","bed load transport rate of sediment of class6","bed load transport rate of sediment of class7","bed load transport rate of sediment of class8","bed load transport rate of sediment of class9","bed load transport rate of sediment of class10","bed load transport rate of sediment of class11","bed load transport rate of sediment of class12","bed load transport rate of sediment of class13","bed load transport rate of sediment of class14","bed load transport rate of sediment of class15","bed load transport rate of sediment of class16","bed load transport rate of sediment of class17","bed load transport rate of sediment of class18","bed load transport rate of sediment of class19","bed load transport rate of sediment of class**","bed load transport rate of sediment of class*","bed load transport rate of sediment of class1","bed load transport rate of sediment of class2","bed load transport rate of sediment of class3","bed load transport rate of sediment of class4","bed load transport rate of sediment of class5","bed load transport rate of sediment of class6","bed load transport rate of sediment of class7","bed load transport rate of sediment of class8","bed load transport rate of sediment of class9","bed load transport rate of sediment of class10","bed load transport rate of sediment of class11","bed load transport rate of sediment of class12","bed load transport rate of sediment of class13","bed load transport rate of sediment of class14","bed load transport rate of sediment of class15","bed load transport rate of sediment of class16","bed load transport rate of sediment of class17","bed load transport rate of sediment of class18","bed load transport rate of sediment of class19","bed load transport rate of sediment of class**","bed load transport rate of sediment of class*","bed load transport rate of sediment of class1","bed load transport rate of sediment of class2","bed load transport rate of sediment of class3","bed load transport rate of sediment of class4","bed load transport rate of sediment of class5","bed load transport rate of sediment of class6","bed load transport rate of sediment of class7","bed load transport rate of sediment of class8","bed load transport rate of sediment of class9","bed load transport rate of sediment of class10","bed load transport rate of sediment of class11","bed load transport rate of sediment of class12","bed load transport rate of sediment of class13","bed load transport rate of sediment of class14","bed load transport rate of sediment of class15","bed load transport rate of sediment of class16","bed load transport rate of sediment of class17","bed load transport rate of sediment of class18","bed load transport rate of sediment of class19","bed load transport rate of sediment of class**","bed load transport rate of sediment of class*","bed load transport rate of sediment of class1","bed load transport rate of sediment of class2","bed load transport rate of sediment of class3","bed load transport rate of sediment of class4","bed load transport rate of sediment of class5","bed load transport rate of sediment of class6","bed load transport rate of sediment of class7","bed load transport rate of sediment of class8","bed load transport rate of sediment of class9","bed load transport rate of sediment of class10","bed load transport rate of sediment of class11","bed load transport rate of sediment of class12","bed load transport rate of sediment of class13","bed load transport rate of sediment of class14","bed load transport rate of sediment of class15","bed load transport rate of sediment of class16","bed load transport rate of sediment of class17","bed load transport rate of sediment of class18","bed load transport rate of sediment of class19","bed load transport rate of sediment of class**","supplementary variable A","supplementary variable G","supplementary variable L","supplementary variable O","fraction of cohesive sediment of class*,*n* layer","fraction of cohesive sediment of class1,1n* layer","fraction of cohesive sediment of class2,2n* layer","fraction of cohesive sediment of class3,3n* layer","fraction of cohesive sediment of class4,4n* layer","fraction of cohesive sediment of class5,5n* layer","fraction of cohesive sediment of class6,6n* layer","fraction of cohesive sediment of class7,7n* layer","fraction of cohesive sediment of class8,8n* layer","fraction of cohesive sediment of class9,9n* layer","fraction of cohesive sediment of class10,10n* layer","fraction of cohesive sediment of class11,11n* layer","fraction of cohesive sediment of class12,12n* layer","fraction of cohesive sediment of class13,13n* layer","fraction of cohesive sediment of class14,14n* layer","fraction of cohesive sediment of class15,15n* layer","fraction of cohesive sediment of class16,16n* layer","fraction of cohesive sediment of class17,17n* layer","fraction of cohesive sediment of class18,18n* layer","fraction of cohesive sediment of class19,19n* layer","fraction of cohesive sediment of class**,**n* layer","fraction of cohesive sediment of class*,*n1 layer","fraction of cohesive sediment of class1,1n1 layer","fraction of cohesive sediment of class2,2n1 layer","fraction of cohesive sediment of class3,3n1 layer","fraction of cohesive sediment of class4,4n1 layer","fraction of cohesive sediment of class5,5n1 layer","fraction of cohesive sediment of class6,6n1 layer","fraction of cohesive sediment of class7,7n1 layer","fraction of cohesive sediment of class8,8n1 layer","fraction of cohesive sediment of class9,9n1 layer","fraction of cohesive sediment of class10,10n1 layer","fraction of cohesive sediment of class11,11n1 layer","fraction of cohesive sediment of class12,12n1 layer","fraction of cohesive sediment of class13,13n1 layer","fraction of cohesive sediment of class14,14n1 layer","fraction of cohesive sediment of class15,15n1 layer","fraction of cohesive sediment of class16,16n1 layer","fraction of cohesive sediment of class17,17n1 layer","fraction of cohesive sediment of class18,18n1 layer","fraction of cohesive sediment of class19,19n1 layer","fraction of cohesive sediment of class**,**n1 layer","fraction of cohesive sediment of class*,*n2 layer","fraction of cohesive sediment of class1,1n2 layer","fraction of cohesive sediment of class2,2n2 layer","fraction of cohesive sediment of class3,3n2 layer","fraction of cohesive sediment of class4,4n2 layer","fraction of cohesive sediment of class5,5n2 layer","fraction of cohesive sediment of class6,6n2 layer","fraction of cohesive sediment of class7,7n2 layer","fraction of cohesive sediment of class8,8n2 layer","fraction of cohesive sediment of class9,9n2 layer","fraction of cohesive sediment of class10,10n2 layer","fraction of cohesive sediment of class11,11n2 layer","fraction of cohesive sediment of class12,12n2 layer","fraction of cohesive sediment of class13,13n2 layer","fraction of cohesive sediment of class14,14n2 layer","fraction of cohesive sediment of class15,15n2 layer","fraction of cohesive sediment of class16,16n2 layer","fraction of cohesive sediment of class17,17n2 layer","fraction of cohesive sediment of class18,18n2 layer","fraction of cohesive sediment of class19,19n2 layer","fraction of cohesive sediment of class**,**n2 layer","fraction of cohesive sediment of class*,*n3 layer","fraction of cohesive sediment of class1,1n3 layer","fraction of cohesive sediment of class2,2n3 layer","fraction of cohesive sediment of class3,3n3 layer","fraction of cohesive sediment of class4,4n3 layer","fraction of cohesive sediment of class5,5n3 layer","fraction of cohesive sediment of class6,6n3 layer","fraction of cohesive sediment of class7,7n3 layer","fraction of cohesive sediment of class8,8n3 layer","fraction of cohesive sediment of class9,9n3 layer","fraction of cohesive sediment of class10,10n3 layer","fraction of cohesive sediment of class11,11n3 layer","fraction of cohesive sediment of class12,12n3 layer","fraction of cohesive sediment of class13,13n3 layer","fraction of cohesive sediment of class14,14n3 layer","fraction of cohesive sediment of class15,15n3 layer","fraction of cohesive sediment of class16,16n3 layer","fraction of cohesive sediment of class17,17n3 layer","fraction of cohesive sediment of class18,18n3 layer","fraction of cohesive sediment of class19,19n3 layer","fraction of cohesive sediment of class**,**n3 layer","fraction of cohesive sediment of class*,*n4 layer","fraction of cohesive sediment of class1,1n4 layer","fraction of cohesive sediment of class2,2n4 layer","fraction of cohesive sediment of class3,3n4 layer","fraction of cohesive sediment of class4,4n4 layer","fraction of cohesive sediment of class5,5n4 layer","fraction of cohesive sediment of class6,6n4 layer","fraction of cohesive sediment of class7,7n4 layer","fraction of cohesive sediment of class8,8n4 layer","fraction of cohesive sediment of class9,9n4 layer","fraction of cohesive sediment of class10,10n4 layer","fraction of cohesive sediment of class11,11n4 layer","fraction of cohesive sediment of class12,12n4 layer","fraction of cohesive sediment of class13,13n4 layer","fraction of cohesive sediment of class14,14n4 layer","fraction of cohesive sediment of class15,15n4 layer","fraction of cohesive sediment of class16,16n4 layer","fraction of cohesive sediment of class17,17n4 layer","fraction of cohesive sediment of class18,18n4 layer","fraction of cohesive sediment of class19,19n4 layer","fraction of cohesive sediment of class**,**n4 layer","fraction of cohesive sediment of class*,*n5 layer","fraction of cohesive sediment of class1,1n5 layer","fraction of cohesive sediment of class2,2n5 layer","fraction of cohesive sediment of class3,3n5 layer","fraction of cohesive sediment of class4,4n5 layer","fraction of cohesive sediment of class5,5n5 layer","fraction of cohesive sediment of class6,6n5 layer","fraction of cohesive sediment of class7,7n5 layer","fraction of cohesive sediment of class8,8n5 layer","fraction of cohesive sediment of class9,9n5 layer","fraction of cohesive sediment of class10,10n5 layer","fraction of cohesive sediment of class11,11n5 layer","fraction of cohesive sediment of class12,12n5 layer","fraction of cohesive sediment of class13,13n5 layer","fraction of cohesive sediment of class14,14n5 layer","fraction of cohesive sediment of class15,15n5 layer","fraction of cohesive sediment of class16,16n5 layer","fraction of cohesive sediment of class17,17n5 layer","fraction of cohesive sediment of class18,18n5 layer","fraction of cohesive sediment of class19,19n5 layer","fraction of cohesive sediment of class**,**n5 layer","fraction of cohesive sediment of class*,*n6 layer","fraction of cohesive sediment of class1,1n6 layer","fraction of cohesive sediment of class2,2n6 layer","fraction of cohesive sediment of class3,3n6 layer","fraction of cohesive sediment of class4,4n6 layer","fraction of cohesive sediment of class5,5n6 layer","fraction of cohesive sediment of class6,6n6 layer","fraction of cohesive sediment of class7,7n6 layer","fraction of cohesive sediment of class8,8n6 layer","fraction of cohesive sediment of class9,9n6 layer","fraction of cohesive sediment of class10,10n6 layer","fraction of cohesive sediment of class11,11n6 layer","fraction of cohesive sediment of class12,12n6 layer","fraction of cohesive sediment of class13,13n6 layer","fraction of cohesive sediment of class14,14n6 layer","fraction of cohesive sediment of class15,15n6 layer","fraction of cohesive sediment of class16,16n6 layer","fraction of cohesive sediment of class17,17n6 layer","fraction of cohesive sediment of class18,18n6 layer","fraction of cohesive sediment of class19,19n6 layer","fraction of cohesive sediment of class**,**n6 layer","fraction of cohesive sediment of class*,*n7 layer","fraction of cohesive sediment of class1,1n7 layer","fraction of cohesive sediment of class2,2n7 layer","fraction of cohesive sediment of class3,3n7 layer","fraction of cohesive sediment of class4,4n7 layer","fraction of cohesive sediment of class5,5n7 layer","fraction of cohesive sediment of class6,6n7 layer","fraction of cohesive sediment of class7,7n7 layer","fraction of cohesive sediment of class8,8n7 layer","fraction of cohesive sediment of class9,9n7 layer","fraction of cohesive sediment of class10,10n7 layer","fraction of cohesive sediment of class11,11n7 layer","fraction of cohesive sediment of class12,12n7 layer","fraction of cohesive sediment of class13,13n7 layer","fraction of cohesive sediment of class14,14n7 layer","fraction of cohesive sediment of class15,15n7 layer","fraction of cohesive sediment of class16,16n7 layer","fraction of cohesive sediment of class17,17n7 layer","fraction of cohesive sediment of class18,18n7 layer","fraction of cohesive sediment of class19,19n7 layer","fraction of cohesive sediment of class**,**n7 layer","fraction of cohesive sediment of class*,*n8 layer","fraction of cohesive sediment of class1,1n8 layer","fraction of cohesive sediment of class2,2n8 layer","fraction of cohesive sediment of class3,3n8 layer","fraction of cohesive sediment of class4,4n8 layer","fraction of cohesive sediment of class5,5n8 layer","fraction of cohesive sediment of class6,6n8 layer","fraction of cohesive sediment of class7,7n8 layer","fraction of cohesive sediment of class8,8n8 layer","fraction of cohesive sediment of class9,9n8 layer","fraction of cohesive sediment of class10,10n8 layer","fraction of cohesive sediment of class11,11n8 layer","fraction of cohesive sediment of class12,12n8 layer","fraction of cohesive sediment of class13,13n8 layer","fraction of cohesive sediment of class14,14n8 layer","fraction of cohesive sediment of class15,15n8 layer","fraction of cohesive sediment of class16,16n8 layer","fraction of cohesive sediment of class17,17n8 layer","fraction of cohesive sediment of class18,18n8 layer","fraction of cohesive sediment of class19,19n8 layer","fraction of cohesive sediment of class**,**n8 layer","fraction of cohesive sediment of class*,*n9 layer","fraction of cohesive sediment of class1,1n9 layer","fraction of cohesive sediment of class2,2n9 layer","fraction of cohesive sediment of class3,3n9 layer","fraction of cohesive sediment of class4,4n9 layer","fraction of cohesive sediment of class5,5n9 layer","fraction of cohesive sediment of class6,6n9 layer","fraction of cohesive sediment of class7,7n9 layer","fraction of cohesive sediment of class8,8n9 layer","fraction of cohesive sediment of class9,9n9 layer","fraction of cohesive sediment of class10,10n9 layer","fraction of cohesive sediment of class11,11n9 layer","fraction of cohesive sediment of class12,12n9 layer","fraction of cohesive sediment of class13,13n9 layer","fraction of cohesive sediment of class14,14n9 layer","fraction of cohesive sediment of class15,15n9 layer","fraction of cohesive sediment of class16,16n9 layer","fraction of cohesive sediment of class17,17n9 layer","fraction of cohesive sediment of class18,18n9 layer","fraction of cohesive sediment of class19,19n9 layer","fraction of cohesive sediment of class**,**n9 layer","fraction of cohesive sediment of class*,*n10 layer","fraction of cohesive sediment of class1,1n10 layer","fraction of cohesive sediment of class2,2n10 layer","fraction of cohesive sediment of class3,3n10 layer","fraction of cohesive sediment of class4,4n10 layer","fraction of cohesive sediment of class5,5n10 layer","fraction of cohesive sediment of class6,6n10 layer","fraction of cohesive sediment of class7,7n10 layer","fraction of cohesive sediment of class8,8n10 layer","fraction of cohesive sediment of class9,9n10 layer","fraction of cohesive sediment of class10,10n10 layer","fraction of cohesive sediment of class11,11n10 layer","fraction of cohesive sediment of class12,12n10 layer","fraction of cohesive sediment of class13,13n10 layer","fraction of cohesive sediment of class14,14n10 layer","fraction of cohesive sediment of class15,15n10 layer","fraction of cohesive sediment of class16,16n10 layer","fraction of cohesive sediment of class17,17n10 layer","fraction of cohesive sediment of class18,18n10 layer","fraction of cohesive sediment of class19,19n10 layer","fraction of cohesive sediment of class**,**n10 layer","fraction of cohesive sediment of class*,*n11 layer","fraction of cohesive sediment of class1,1n11 layer","fraction of cohesive sediment of class2,2n11 layer","fraction of cohesive sediment of class3,3n11 layer","fraction of cohesive sediment of class4,4n11 layer","fraction of cohesive sediment of class5,5n11 layer","fraction of cohesive sediment of class6,6n11 layer","fraction of cohesive sediment of class7,7n11 layer","fraction of cohesive sediment of class8,8n11 layer","fraction of cohesive sediment of class9,9n11 layer","fraction of cohesive sediment of class10,10n11 layer","fraction of cohesive sediment of class11,11n11 layer","fraction of cohesive sediment of class12,12n11 layer","fraction of cohesive sediment of class13,13n11 layer","fraction of cohesive sediment of class14,14n11 layer","fraction of cohesive sediment of class15,15n11 layer","fraction of cohesive sediment of class16,16n11 layer","fraction of cohesive sediment of class17,17n11 layer","fraction of cohesive sediment of class18,18n11 layer","fraction of cohesive sediment of class19,19n11 layer","fraction of cohesive sediment of class**,**n11 layer","fraction of cohesive sediment of class*,*n12 layer","fraction of cohesive sediment of class1,1n12 layer","fraction of cohesive sediment of class2,2n12 layer","fraction of cohesive sediment of class3,3n12 layer","fraction of cohesive sediment of class4,4n12 layer","fraction of cohesive sediment of class5,5n12 layer","fraction of cohesive sediment of class6,6n12 layer","fraction of cohesive sediment of class7,7n12 layer","fraction of cohesive sediment of class8,8n12 layer","fraction of cohesive sediment of class9,9n12 layer","fraction of cohesive sediment of class10,10n12 layer","fraction of cohesive sediment of class11,11n12 layer","fraction of cohesive sediment of class12,12n12 layer","fraction of cohesive sediment of class13,13n12 layer","fraction of cohesive sediment of class14,14n12 layer","fraction of cohesive sediment of class15,15n12 layer","fraction of cohesive sediment of class16,16n12 layer","fraction of cohesive sediment of class17,17n12 layer","fraction of cohesive sediment of class18,18n12 layer","fraction of cohesive sediment of class19,19n12 layer","fraction of cohesive sediment of class**,**n12 layer","fraction of cohesive sediment of class*,*n13 layer","fraction of cohesive sediment of class1,1n13 layer","fraction of cohesive sediment of class2,2n13 layer","fraction of cohesive sediment of class3,3n13 layer","fraction of cohesive sediment of class4,4n13 layer","fraction of cohesive sediment of class5,5n13 layer","fraction of cohesive sediment of class6,6n13 layer","fraction of cohesive sediment of class7,7n13 layer","fraction of cohesive sediment of class8,8n13 layer","fraction of cohesive sediment of class9,9n13 layer","fraction of cohesive sediment of class10,10n13 layer","fraction of cohesive sediment of class11,11n13 layer","fraction of cohesive sediment of class12,12n13 layer","fraction of cohesive sediment of class13,13n13 layer","fraction of cohesive sediment of class14,14n13 layer","fraction of cohesive sediment of class15,15n13 layer","fraction of cohesive sediment of class16,16n13 layer","fraction of cohesive sediment of class17,17n13 layer","fraction of cohesive sediment of class18,18n13 layer","fraction of cohesive sediment of class19,19n13 layer","fraction of cohesive sediment of class**,**n13 layer","fraction of cohesive sediment of class*,*n14 layer","fraction of cohesive sediment of class1,1n14 layer","fraction of cohesive sediment of class2,2n14 layer","fraction of cohesive sediment of class3,3n14 layer","fraction of cohesive sediment of class4,4n14 layer","fraction of cohesive sediment of class5,5n14 layer","fraction of cohesive sediment of class6,6n14 layer","fraction of cohesive sediment of class7,7n14 layer","fraction of cohesive sediment of class8,8n14 layer","fraction of cohesive sediment of class9,9n14 layer","fraction of cohesive sediment of class10,10n14 layer","fraction of cohesive sediment of class11,11n14 layer","fraction of cohesive sediment of class12,12n14 layer","fraction of cohesive sediment of class13,13n14 layer","fraction of cohesive sediment of class14,14n14 layer","fraction of cohesive sediment of class15,15n14 layer","fraction of cohesive sediment of class16,16n14 layer","fraction of cohesive sediment of class17,17n14 layer","fraction of cohesive sediment of class18,18n14 layer","fraction of cohesive sediment of class19,19n14 layer","fraction of cohesive sediment of class**,**n14 layer","fraction of cohesive sediment of class*,*n15 layer","fraction of cohesive sediment of class1,1n15 layer","fraction of cohesive sediment of class2,2n15 layer","fraction of cohesive sediment of class3,3n15 layer","fraction of cohesive sediment of class4,4n15 layer","fraction of cohesive sediment of class5,5n15 layer","fraction of cohesive sediment of class6,6n15 layer","fraction of cohesive sediment of class7,7n15 layer","fraction of cohesive sediment of class8,8n15 layer","fraction of cohesive sediment of class9,9n15 layer","fraction of cohesive sediment of class10,10n15 layer","fraction of cohesive sediment of class11,11n15 layer","fraction of cohesive sediment of class12,12n15 layer","fraction of cohesive sediment of class13,13n15 layer","fraction of cohesive sediment of class14,14n15 layer","fraction of cohesive sediment of class15,15n15 layer","fraction of cohesive sediment of class16,16n15 layer","fraction of cohesive sediment of class17,17n15 layer","fraction of cohesive sediment of class18,18n15 layer","fraction of cohesive sediment of class19,19n15 layer","fraction of cohesive sediment of class**,**n15 layer","fraction of cohesive sediment of class*,*n16 layer","fraction of cohesive sediment of class1,1n16 layer","fraction of cohesive sediment of class2,2n16 layer","fraction of cohesive sediment of class3,3n16 layer","fraction of cohesive sediment of class4,4n16 layer","fraction of cohesive sediment of class5,5n16 layer","fraction of cohesive sediment of class6,6n16 layer","fraction of cohesive sediment of class7,7n16 layer","fraction of cohesive sediment of class8,8n16 layer","fraction of cohesive sediment of class9,9n16 layer","fraction of cohesive sediment of class10,10n16 layer","fraction of cohesive sediment of class11,11n16 layer","fraction of cohesive sediment of class12,12n16 layer","fraction of cohesive sediment of class13,13n16 layer","fraction of cohesive sediment of class14,14n16 layer","fraction of cohesive sediment of class15,15n16 layer","fraction of cohesive sediment of class16,16n16 layer","fraction of cohesive sediment of class17,17n16 layer","fraction of cohesive sediment of class18,18n16 layer","fraction of cohesive sediment of class19,19n16 layer","fraction of cohesive sediment of class**,**n16 layer","fraction of cohesive sediment of class*,*n17 layer","fraction of cohesive sediment of class1,1n17 layer","fraction of cohesive sediment of class2,2n17 layer","fraction of cohesive sediment of class3,3n17 layer","fraction of cohesive sediment of class4,4n17 layer","fraction of cohesive sediment of class5,5n17 layer","fraction of cohesive sediment of class6,6n17 layer","fraction of cohesive sediment of class7,7n17 layer","fraction of cohesive sediment of class8,8n17 layer","fraction of cohesive sediment of class9,9n17 layer","fraction of cohesive sediment of class10,10n17 layer","fraction of cohesive sediment of class11,11n17 layer","fraction of cohesive sediment of class12,12n17 layer","fraction of cohesive sediment of class13,13n17 layer","fraction of cohesive sediment of class14,14n17 layer","fraction of cohesive sediment of class15,15n17 layer","fraction of cohesive sediment of class16,16n17 layer","fraction of cohesive sediment of class17,17n17 layer","fraction of cohesive sediment of class18,18n17 layer","fraction of cohesive sediment of class19,19n17 layer","fraction of cohesive sediment of class**,**n17 layer","fraction of cohesive sediment of class*,*n18 layer","fraction of cohesive sediment of class1,1n18 layer","fraction of cohesive sediment of class2,2n18 layer","fraction of cohesive sediment of class3,3n18 layer","fraction of cohesive sediment of class4,4n18 layer","fraction of cohesive sediment of class5,5n18 layer","fraction of cohesive sediment of class6,6n18 layer","fraction of cohesive sediment of class7,7n18 layer","fraction of cohesive sediment of class8,8n18 layer","fraction of cohesive sediment of class9,9n18 layer","fraction of cohesive sediment of class10,10n18 layer","fraction of cohesive sediment of class11,11n18 layer","fraction of cohesive sediment of class12,12n18 layer","fraction of cohesive sediment of class13,13n18 layer","fraction of cohesive sediment of class14,14n18 layer","fraction of cohesive sediment of class15,15n18 layer","fraction of cohesive sediment of class16,16n18 layer","fraction of cohesive sediment of class17,17n18 layer","fraction of cohesive sediment of class18,18n18 layer","fraction of cohesive sediment of class19,19n18 layer","fraction of cohesive sediment of class**,**n18 layer","fraction of cohesive sediment of class*,*n19 layer","fraction of cohesive sediment of class1,1n19 layer","fraction of cohesive sediment of class2,2n19 layer","fraction of cohesive sediment of class3,3n19 layer","fraction of cohesive sediment of class4,4n19 layer","fraction of cohesive sediment of class5,5n19 layer","fraction of cohesive sediment of class6,6n19 layer","fraction of cohesive sediment of class7,7n19 layer","fraction of cohesive sediment of class8,8n19 layer","fraction of cohesive sediment of class9,9n19 layer","fraction of cohesive sediment of class10,10n19 layer","fraction of cohesive sediment of class11,11n19 layer","fraction of cohesive sediment of class12,12n19 layer","fraction of cohesive sediment of class13,13n19 layer","fraction of cohesive sediment of class14,14n19 layer","fraction of cohesive sediment of class15,15n19 layer","fraction of cohesive sediment of class16,16n19 layer","fraction of cohesive sediment of class17,17n19 layer","fraction of cohesive sediment of class18,18n19 layer","fraction of cohesive sediment of class19,19n19 layer","fraction of cohesive sediment of class**,**n19 layer","fraction of cohesive sediment of class*,*n** layer","fraction of cohesive sediment of class1,1n** layer","fraction of cohesive sediment of class2,2n** layer","fraction of cohesive sediment of class3,3n** layer","fraction of cohesive sediment of class4,4n** layer","fraction of cohesive sediment of class5,5n** layer","fraction of cohesive sediment of class6,6n** layer","fraction of cohesive sediment of class7,7n** layer","fraction of cohesive sediment of class8,8n** layer","fraction of cohesive sediment of class9,9n** layer","fraction of cohesive sediment of class10,10n** layer","fraction of cohesive sediment of class11,11n** layer","fraction of cohesive sediment of class12,12n** layer","fraction of cohesive sediment of class13,13n** layer","fraction of cohesive sediment of class14,14n** layer","fraction of cohesive sediment of class15,15n** layer","fraction of cohesive sediment of class16,16n** layer","fraction of cohesive sediment of class17,17n** layer","fraction of cohesive sediment of class18,18n** layer","fraction of cohesive sediment of class19,19n** layer","fraction of cohesive sediment of class**,**n** layer","porosity of k layer","mass of non cohesive sediment of class*,*n* layer","mass of non cohesive sediment of class1,1n* layer","mass of non cohesive sediment of class2,2n* layer","mass of non cohesive sediment of class3,3n* layer","mass of non cohesive sediment of class4,4n* layer","mass of non cohesive sediment of class5,5n* layer","mass of non cohesive sediment of class6,6n* layer","mass of non cohesive sediment of class7,7n* layer","mass of non cohesive sediment of class8,8n* layer","mass of non cohesive sediment of class9,9n* layer","mass of non cohesive sediment of class10,10n* layer","mass of non cohesive sediment of class11,11n* layer","mass of non cohesive sediment of class12,12n* layer","mass of non cohesive sediment of class13,13n* layer","mass of non cohesive sediment of class14,14n* layer","mass of non cohesive sediment of class15,15n* layer","mass of non cohesive sediment of class16,16n* layer","mass of non cohesive sediment of class17,17n* layer","mass of non cohesive sediment of class18,18n* layer","mass of non cohesive sediment of class19,19n* layer","mass of non cohesive sediment of class**,**n* layer","mass of non cohesive sediment of class*,*n1 layer","mass of non cohesive sediment of class1,1n1 layer","mass of non cohesive sediment of class2,2n1 layer","mass of non cohesive sediment of class3,3n1 layer","mass of non cohesive sediment of class4,4n1 layer","mass of non cohesive sediment of class5,5n1 layer","mass of non cohesive sediment of class6,6n1 layer","mass of non cohesive sediment of class7,7n1 layer","mass of non cohesive sediment of class8,8n1 layer","mass of non cohesive sediment of class9,9n1 layer","mass of non cohesive sediment of class10,10n1 layer","mass of non cohesive sediment of class11,11n1 layer","mass of non cohesive sediment of class12,12n1 layer","mass of non cohesive sediment of class13,13n1 layer","mass of non cohesive sediment of class14,14n1 layer","mass of non cohesive sediment of class15,15n1 layer","mass of non cohesive sediment of class16,16n1 layer","mass of non cohesive sediment of class17,17n1 layer","mass of non cohesive sediment of class18,18n1 layer","mass of non cohesive sediment of class19,19n1 layer","mass of non cohesive sediment of class**,**n1 layer","mass of non cohesive sediment of class*,*n2 layer","mass of non cohesive sediment of class1,1n2 layer","mass of non cohesive sediment of class2,2n2 layer","mass of non cohesive sediment of class3,3n2 layer","mass of non cohesive sediment of class4,4n2 layer","mass of non cohesive sediment of class5,5n2 layer","mass of non cohesive sediment of class6,6n2 layer","mass of non cohesive sediment of class7,7n2 layer","mass of non cohesive sediment of class8,8n2 layer","mass of non cohesive sediment of class9,9n2 layer","mass of non cohesive sediment of class10,10n2 layer","mass of non cohesive sediment of class11,11n2 layer","mass of non cohesive sediment of class12,12n2 layer","mass of non cohesive sediment of class13,13n2 layer","mass of non cohesive sediment of class14,14n2 layer","mass of non cohesive sediment of class15,15n2 layer","mass of non cohesive sediment of class16,16n2 layer","mass of non cohesive sediment of class17,17n2 layer","mass of non cohesive sediment of class18,18n2 layer","mass of non cohesive sediment of class19,19n2 layer","mass of non cohesive sediment of class**,**n2 layer","mass of non cohesive sediment of class*,*n3 layer","mass of non cohesive sediment of class1,1n3 layer","mass of non cohesive sediment of class2,2n3 layer","mass of non cohesive sediment of class3,3n3 layer","mass of non cohesive sediment of class4,4n3 layer","mass of non cohesive sediment of class5,5n3 layer","mass of non cohesive sediment of class6,6n3 layer","mass of non cohesive sediment of class7,7n3 layer","mass of non cohesive sediment of class8,8n3 layer","mass of non cohesive sediment of class9,9n3 layer","mass of non cohesive sediment of class10,10n3 layer","mass of non cohesive sediment of class11,11n3 layer","mass of non cohesive sediment of class12,12n3 layer","mass of non cohesive sediment of class13,13n3 layer","mass of non cohesive sediment of class14,14n3 layer","mass of non cohesive sediment of class15,15n3 layer","mass of non cohesive sediment of class16,16n3 layer","mass of non cohesive sediment of class17,17n3 layer","mass of non cohesive sediment of class18,18n3 layer","mass of non cohesive sediment of class19,19n3 layer","mass of non cohesive sediment of class**,**n3 layer","mass of non cohesive sediment of class*,*n4 layer","mass of non cohesive sediment of class1,1n4 layer","mass of non cohesive sediment of class2,2n4 layer","mass of non cohesive sediment of class3,3n4 layer","mass of non cohesive sediment of class4,4n4 layer","mass of non cohesive sediment of class5,5n4 layer","mass of non cohesive sediment of class6,6n4 layer","mass of non cohesive sediment of class7,7n4 layer","mass of non cohesive sediment of class8,8n4 layer","mass of non cohesive sediment of class9,9n4 layer","mass of non cohesive sediment of class10,10n4 layer","mass of non cohesive sediment of class11,11n4 layer","mass of non cohesive sediment of class12,12n4 layer","mass of non cohesive sediment of class13,13n4 layer","mass of non cohesive sediment of class14,14n4 layer","mass of non cohesive sediment of class15,15n4 layer","mass of non cohesive sediment of class16,16n4 layer","mass of non cohesive sediment of class17,17n4 layer","mass of non cohesive sediment of class18,18n4 layer","mass of non cohesive sediment of class19,19n4 layer","mass of non cohesive sediment of class**,**n4 layer","mass of non cohesive sediment of class*,*n5 layer","mass of non cohesive sediment of class1,1n5 layer","mass of non cohesive sediment of class2,2n5 layer","mass of non cohesive sediment of class3,3n5 layer","mass of non cohesive sediment of class4,4n5 layer","mass of non cohesive sediment of class5,5n5 layer","mass of non cohesive sediment of class6,6n5 layer","mass of non cohesive sediment of class7,7n5 layer","mass of non cohesive sediment of class8,8n5 layer","mass of non cohesive sediment of class9,9n5 layer","mass of non cohesive sediment of class10,10n5 layer","mass of non cohesive sediment of class11,11n5 layer","mass of non cohesive sediment of class12,12n5 layer","mass of non cohesive sediment of class13,13n5 layer","mass of non cohesive sediment of class14,14n5 layer","mass of non cohesive sediment of class15,15n5 layer","mass of non cohesive sediment of class16,16n5 layer","mass of non cohesive sediment of class17,17n5 layer","mass of non cohesive sediment of class18,18n5 layer","mass of non cohesive sediment of class19,19n5 layer","mass of non cohesive sediment of class**,**n5 layer","mass of non cohesive sediment of class*,*n6 layer","mass of non cohesive sediment of class1,1n6 layer","mass of non cohesive sediment of class2,2n6 layer","mass of non cohesive sediment of class3,3n6 layer","mass of non cohesive sediment of class4,4n6 layer","mass of non cohesive sediment of class5,5n6 layer","mass of non cohesive sediment of class6,6n6 layer","mass of non cohesive sediment of class7,7n6 layer","mass of non cohesive sediment of class8,8n6 layer","mass of non cohesive sediment of class9,9n6 layer","mass of non cohesive sediment of class10,10n6 layer","mass of non cohesive sediment of class11,11n6 layer","mass of non cohesive sediment of class12,12n6 layer","mass of non cohesive sediment of class13,13n6 layer","mass of non cohesive sediment of class14,14n6 layer","mass of non cohesive sediment of class15,15n6 layer","mass of non cohesive sediment of class16,16n6 layer","mass of non cohesive sediment of class17,17n6 layer","mass of non cohesive sediment of class18,18n6 layer","mass of non cohesive sediment of class19,19n6 layer","mass of non cohesive sediment of class**,**n6 layer","mass of non cohesive sediment of class*,*n7 layer","mass of non cohesive sediment of class1,1n7 layer","mass of non cohesive sediment of class2,2n7 layer","mass of non cohesive sediment of class3,3n7 layer","mass of non cohesive sediment of class4,4n7 layer","mass of non cohesive sediment of class5,5n7 layer","mass of non cohesive sediment of class6,6n7 layer","mass of non cohesive sediment of class7,7n7 layer","mass of non cohesive sediment of class8,8n7 layer","mass of non cohesive sediment of class9,9n7 layer","mass of non cohesive sediment of class10,10n7 layer","mass of non cohesive sediment of class11,11n7 layer","mass of non cohesive sediment of class12,12n7 layer","mass of non cohesive sediment of class13,13n7 layer","mass of non cohesive sediment of class14,14n7 layer","mass of non cohesive sediment of class15,15n7 layer","mass of non cohesive sediment of class16,16n7 layer","mass of non cohesive sediment of class17,17n7 layer","mass of non cohesive sediment of class18,18n7 layer","mass of non cohesive sediment of class19,19n7 layer","mass of non cohesive sediment of class**,**n7 layer","mass of non cohesive sediment of class*,*n8 layer","mass of non cohesive sediment of class1,1n8 layer","mass of non cohesive sediment of class2,2n8 layer","mass of non cohesive sediment of class3,3n8 layer","mass of non cohesive sediment of class4,4n8 layer","mass of non cohesive sediment of class5,5n8 layer","mass of non cohesive sediment of class6,6n8 layer","mass of non cohesive sediment of class7,7n8 layer","mass of non cohesive sediment of class8,8n8 layer","mass of non cohesive sediment of class9,9n8 layer","mass of non cohesive sediment of class10,10n8 layer","mass of non cohesive sediment of class11,11n8 layer","mass of non cohesive sediment of class12,12n8 layer","mass of non cohesive sediment of class13,13n8 layer","mass of non cohesive sediment of class14,14n8 layer","mass of non cohesive sediment of class15,15n8 layer","mass of non cohesive sediment of class16,16n8 layer","mass of non cohesive sediment of class17,17n8 layer","mass of non cohesive sediment of class18,18n8 layer","mass of non cohesive sediment of class19,19n8 layer","mass of non cohesive sediment of class**,**n8 layer","mass of non cohesive sediment of class*,*n9 layer","mass of non cohesive sediment of class1,1n9 layer","mass of non cohesive sediment of class2,2n9 layer","mass of non cohesive sediment of class3,3n9 layer","mass of non cohesive sediment of class4,4n9 layer","mass of non cohesive sediment of class5,5n9 layer","mass of non cohesive sediment of class6,6n9 layer","mass of non cohesive sediment of class7,7n9 layer","mass of non cohesive sediment of class8,8n9 layer","mass of non cohesive sediment of class9,9n9 layer","mass of non cohesive sediment of class10,10n9 layer","mass of non cohesive sediment of class11,11n9 layer","mass of non cohesive sediment of class12,12n9 layer","mass of non cohesive sediment of class13,13n9 layer","mass of non cohesive sediment of class14,14n9 layer","mass of non cohesive sediment of class15,15n9 layer","mass of non cohesive sediment of class16,16n9 layer","mass of non cohesive sediment of class17,17n9 layer","mass of non cohesive sediment of class18,18n9 layer","mass of non cohesive sediment of class19,19n9 layer","mass of non cohesive sediment of class**,**n9 layer","mass of non cohesive sediment of class*,*n10 layer","mass of non cohesive sediment of class1,1n10 layer","mass of non cohesive sediment of class2,2n10 layer","mass of non cohesive sediment of class3,3n10 layer","mass of non cohesive sediment of class4,4n10 layer","mass of non cohesive sediment of class5,5n10 layer","mass of non cohesive sediment of class6,6n10 layer","mass of non cohesive sediment of class7,7n10 layer","mass of non cohesive sediment of class8,8n10 layer","mass of non cohesive sediment of class9,9n10 layer","mass of non cohesive sediment of class10,10n10 layer","mass of non cohesive sediment of class11,11n10 layer","mass of non cohesive sediment of class12,12n10 layer","mass of non cohesive sediment of class13,13n10 layer","mass of non cohesive sediment of class14,14n10 layer","mass of non cohesive sediment of class15,15n10 layer","mass of non cohesive sediment of class16,16n10 layer","mass of non cohesive sediment of class17,17n10 layer","mass of non cohesive sediment of class18,18n10 layer","mass of non cohesive sediment of class19,19n10 layer","mass of non cohesive sediment of class**,**n10 layer","mass of non cohesive sediment of class*,*n11 layer","mass of non cohesive sediment of class1,1n11 layer","mass of non cohesive sediment of class2,2n11 layer","mass of non cohesive sediment of class3,3n11 layer","mass of non cohesive sediment of class4,4n11 layer","mass of non cohesive sediment of class5,5n11 layer","mass of non cohesive sediment of class6,6n11 layer","mass of non cohesive sediment of class7,7n11 layer","mass of non cohesive sediment of class8,8n11 layer","mass of non cohesive sediment of class9,9n11 layer","mass of non cohesive sediment of class10,10n11 layer","mass of non cohesive sediment of class11,11n11 layer","mass of non cohesive sediment of class12,12n11 layer","mass of non cohesive sediment of class13,13n11 layer","mass of non cohesive sediment of class14,14n11 layer","mass of non cohesive sediment of class15,15n11 layer","mass of non cohesive sediment of class16,16n11 layer","mass of non cohesive sediment of class17,17n11 layer","mass of non cohesive sediment of class18,18n11 layer","mass of non cohesive sediment of class19,19n11 layer","mass of non cohesive sediment of class**,**n11 layer","mass of non cohesive sediment of class*,*n12 layer","mass of non cohesive sediment of class1,1n12 layer","mass of non cohesive sediment of class2,2n12 layer","mass of non cohesive sediment of class3,3n12 layer","mass of non cohesive sediment of class4,4n12 layer","mass of non cohesive sediment of class5,5n12 layer","mass of non cohesive sediment of class6,6n12 layer","mass of non cohesive sediment of class7,7n12 layer","mass of non cohesive sediment of class8,8n12 layer","mass of non cohesive sediment of class9,9n12 layer","mass of non cohesive sediment of class10,10n12 layer","mass of non cohesive sediment of class11,11n12 layer","mass of non cohesive sediment of class12,12n12 layer","mass of non cohesive sediment of class13,13n12 layer","mass of non cohesive sediment of class14,14n12 layer","mass of non cohesive sediment of class15,15n12 layer","mass of non cohesive sediment of class16,16n12 layer","mass of non cohesive sediment of class17,17n12 layer","mass of non cohesive sediment of class18,18n12 layer","mass of non cohesive sediment of class19,19n12 layer","mass of non cohesive sediment of class**,**n12 layer","mass of non cohesive sediment of class*,*n13 layer","mass of non cohesive sediment of class1,1n13 layer","mass of non cohesive sediment of class2,2n13 layer","mass of non cohesive sediment of class3,3n13 layer","mass of non cohesive sediment of class4,4n13 layer","mass of non cohesive sediment of class5,5n13 layer","mass of non cohesive sediment of class6,6n13 layer","mass of non cohesive sediment of class7,7n13 layer","mass of non cohesive sediment of class8,8n13 layer","mass of non cohesive sediment of class9,9n13 layer","mass of non cohesive sediment of class10,10n13 layer","mass of non cohesive sediment of class11,11n13 layer","mass of non cohesive sediment of class12,12n13 layer","mass of non cohesive sediment of class13,13n13 layer","mass of non cohesive sediment of class14,14n13 layer","mass of non cohesive sediment of class15,15n13 layer","mass of non cohesive sediment of class16,16n13 layer","mass of non cohesive sediment of class17,17n13 layer","mass of non cohesive sediment of class18,18n13 layer","mass of non cohesive sediment of class19,19n13 layer","mass of non cohesive sediment of class**,**n13 layer","mass of non cohesive sediment of class*,*n14 layer","mass of non cohesive sediment of class1,1n14 layer","mass of non cohesive sediment of class2,2n14 layer","mass of non cohesive sediment of class3,3n14 layer","mass of non cohesive sediment of class4,4n14 layer","mass of non cohesive sediment of class5,5n14 layer","mass of non cohesive sediment of class6,6n14 layer","mass of non cohesive sediment of class7,7n14 layer","mass of non cohesive sediment of class8,8n14 layer","mass of non cohesive sediment of class9,9n14 layer","mass of non cohesive sediment of class10,10n14 layer","mass of non cohesive sediment of class11,11n14 layer","mass of non cohesive sediment of class12,12n14 layer","mass of non cohesive sediment of class13,13n14 layer","mass of non cohesive sediment of class14,14n14 layer","mass of non cohesive sediment of class15,15n14 layer","mass of non cohesive sediment of class16,16n14 layer","mass of non cohesive sediment of class17,17n14 layer","mass of non cohesive sediment of class18,18n14 layer","mass of non cohesive sediment of class19,19n14 layer","mass of non cohesive sediment of class**,**n14 layer","mass of non cohesive sediment of class*,*n15 layer","mass of non cohesive sediment of class1,1n15 layer","mass of non cohesive sediment of class2,2n15 layer","mass of non cohesive sediment of class3,3n15 layer","mass of non cohesive sediment of class4,4n15 layer","mass of non cohesive sediment of class5,5n15 layer","mass of non cohesive sediment of class6,6n15 layer","mass of non cohesive sediment of class7,7n15 layer","mass of non cohesive sediment of class8,8n15 layer","mass of non cohesive sediment of class9,9n15 layer","mass of non cohesive sediment of class10,10n15 layer","mass of non cohesive sediment of class11,11n15 layer","mass of non cohesive sediment of class12,12n15 layer","mass of non cohesive sediment of class13,13n15 layer","mass of non cohesive sediment of class14,14n15 layer","mass of non cohesive sediment of class15,15n15 layer","mass of non cohesive sediment of class16,16n15 layer","mass of non cohesive sediment of class17,17n15 layer","mass of non cohesive sediment of class18,18n15 layer","mass of non cohesive sediment of class19,19n15 layer","mass of non cohesive sediment of class**,**n15 layer","mass of non cohesive sediment of class*,*n16 layer","mass of non cohesive sediment of class1,1n16 layer","mass of non cohesive sediment of class2,2n16 layer","mass of non cohesive sediment of class3,3n16 layer","mass of non cohesive sediment of class4,4n16 layer","mass of non cohesive sediment of class5,5n16 layer","mass of non cohesive sediment of class6,6n16 layer","mass of non cohesive sediment of class7,7n16 layer","mass of non cohesive sediment of class8,8n16 layer","mass of non cohesive sediment of class9,9n16 layer","mass of non cohesive sediment of class10,10n16 layer","mass of non cohesive sediment of class11,11n16 layer","mass of non cohesive sediment of class12,12n16 layer","mass of non cohesive sediment of class13,13n16 layer","mass of non cohesive sediment of class14,14n16 layer","mass of non cohesive sediment of class15,15n16 layer","mass of non cohesive sediment of class16,16n16 layer","mass of non cohesive sediment of class17,17n16 layer","mass of non cohesive sediment of class18,18n16 layer","mass of non cohesive sediment of class19,19n16 layer","mass of non cohesive sediment of class**,**n16 layer","mass of non cohesive sediment of class*,*n17 layer","mass of non cohesive sediment of class1,1n17 layer","mass of non cohesive sediment of class2,2n17 layer","mass of non cohesive sediment of class3,3n17 layer","mass of non cohesive sediment of class4,4n17 layer","mass of non cohesive sediment of class5,5n17 layer","mass of non cohesive sediment of class6,6n17 layer","mass of non cohesive sediment of class7,7n17 layer","mass of non cohesive sediment of class8,8n17 layer","mass of non cohesive sediment of class9,9n17 layer","mass of non cohesive sediment of class10,10n17 layer","mass of non cohesive sediment of class11,11n17 layer","mass of non cohesive sediment of class12,12n17 layer","mass of non cohesive sediment of class13,13n17 layer","mass of non cohesive sediment of class14,14n17 layer","mass of non cohesive sediment of class15,15n17 layer","mass of non cohesive sediment of class16,16n17 layer","mass of non cohesive sediment of class17,17n17 layer","mass of non cohesive sediment of class18,18n17 layer","mass of non cohesive sediment of class19,19n17 layer","mass of non cohesive sediment of class**,**n17 layer","mass of non cohesive sediment of class*,*n18 layer","mass of non cohesive sediment of class1,1n18 layer","mass of non cohesive sediment of class2,2n18 layer","mass of non cohesive sediment of class3,3n18 layer","mass of non cohesive sediment of class4,4n18 layer","mass of non cohesive sediment of class5,5n18 layer","mass of non cohesive sediment of class6,6n18 layer","mass of non cohesive sediment of class7,7n18 layer","mass of non cohesive sediment of class8,8n18 layer","mass of non cohesive sediment of class9,9n18 layer","mass of non cohesive sediment of class10,10n18 layer","mass of non cohesive sediment of class11,11n18 layer","mass of non cohesive sediment of class12,12n18 layer","mass of non cohesive sediment of class13,13n18 layer","mass of non cohesive sediment of class14,14n18 layer","mass of non cohesive sediment of class15,15n18 layer","mass of non cohesive sediment of class16,16n18 layer","mass of non cohesive sediment of class17,17n18 layer","mass of non cohesive sediment of class18,18n18 layer","mass of non cohesive sediment of class19,19n18 layer","mass of non cohesive sediment of class**,**n18 layer","mass of non cohesive sediment of class*,*n19 layer","mass of non cohesive sediment of class1,1n19 layer","mass of non cohesive sediment of class2,2n19 layer","mass of non cohesive sediment of class3,3n19 layer","mass of non cohesive sediment of class4,4n19 layer","mass of non cohesive sediment of class5,5n19 layer","mass of non cohesive sediment of class6,6n19 layer","mass of non cohesive sediment of class7,7n19 layer","mass of non cohesive sediment of class8,8n19 layer","mass of non cohesive sediment of class9,9n19 layer","mass of non cohesive sediment of class10,10n19 layer","mass of non cohesive sediment of class11,11n19 layer","mass of non cohesive sediment of class12,12n19 layer","mass of non cohesive sediment of class13,13n19 layer","mass of non cohesive sediment of class14,14n19 layer","mass of non cohesive sediment of class15,15n19 layer","mass of non cohesive sediment of class16,16n19 layer","mass of non cohesive sediment of class17,17n19 layer","mass of non cohesive sediment of class18,18n19 layer","mass of non cohesive sediment of class19,19n19 layer","mass of non cohesive sediment of class**,**n19 layer","mass of non cohesive sediment of class*,*n** layer","mass of non cohesive sediment of class1,1n** layer","mass of non cohesive sediment of class2,2n** layer","mass of non cohesive sediment of class3,3n** layer","mass of non cohesive sediment of class4,4n** layer","mass of non cohesive sediment of class5,5n** layer","mass of non cohesive sediment of class6,6n** layer","mass of non cohesive sediment of class7,7n** layer","mass of non cohesive sediment of class8,8n** layer","mass of non cohesive sediment of class9,9n** layer","mass of non cohesive sediment of class10,10n** layer","mass of non cohesive sediment of class11,11n** layer","mass of non cohesive sediment of class12,12n** layer","mass of non cohesive sediment of class13,13n** layer","mass of non cohesive sediment of class14,14n** layer","mass of non cohesive sediment of class15,15n** layer","mass of non cohesive sediment of class16,16n** layer","mass of non cohesive sediment of class17,17n** layer","mass of non cohesive sediment of class18,18n** layer","mass of non cohesive sediment of class19,19n** layer","mass of non cohesive sediment of class**,**n** layer","mass of cohesive sediment of class*,*n* layer","mass of cohesive sediment of class1,1n* layer","mass of cohesive sediment of class2,2n* layer","mass of cohesive sediment of class3,3n* layer","mass of cohesive sediment of class4,4n* layer","mass of cohesive sediment of class5,5n* layer","mass of cohesive sediment of class6,6n* layer","mass of cohesive sediment of class7,7n* layer","mass of cohesive sediment of class8,8n* layer","mass of cohesive sediment of class9,9n* layer","mass of cohesive sediment of class10,10n* layer","mass of cohesive sediment of class11,11n* layer","mass of cohesive sediment of class12,12n* layer","mass of cohesive sediment of class13,13n* layer","mass of cohesive sediment of class14,14n* layer","mass of cohesive sediment of class15,15n* layer","mass of cohesive sediment of class16,16n* layer","mass of cohesive sediment of class17,17n* layer","mass of cohesive sediment of class18,18n* layer","mass of cohesive sediment of class19,19n* layer","mass of cohesive sediment of class**,**n* layer","mass of cohesive sediment of class*,*n1 layer","mass of cohesive sediment of class1,1n1 layer","mass of cohesive sediment of class2,2n1 layer","mass of cohesive sediment of class3,3n1 layer","mass of cohesive sediment of class4,4n1 layer","mass of cohesive sediment of class5,5n1 layer","mass of cohesive sediment of class6,6n1 layer","mass of cohesive sediment of class7,7n1 layer","mass of cohesive sediment of class8,8n1 layer","mass of cohesive sediment of class9,9n1 layer","mass of cohesive sediment of class10,10n1 layer","mass of cohesive sediment of class11,11n1 layer","mass of cohesive sediment of class12,12n1 layer","mass of cohesive sediment of class13,13n1 layer","mass of cohesive sediment of class14,14n1 layer","mass of cohesive sediment of class15,15n1 layer","mass of cohesive sediment of class16,16n1 layer","mass of cohesive sediment of class17,17n1 layer","mass of cohesive sediment of class18,18n1 layer","mass of cohesive sediment of class19,19n1 layer","mass of cohesive sediment of class**,**n1 layer","mass of cohesive sediment of class*,*n2 layer","mass of cohesive sediment of class1,1n2 layer","mass of cohesive sediment of class2,2n2 layer","mass of cohesive sediment of class3,3n2 layer","mass of cohesive sediment of class4,4n2 layer","mass of cohesive sediment of class5,5n2 layer","mass of cohesive sediment of class6,6n2 layer","mass of cohesive sediment of class7,7n2 layer","mass of cohesive sediment of class8,8n2 layer","mass of cohesive sediment of class9,9n2 layer","mass of cohesive sediment of class10,10n2 layer","mass of cohesive sediment of class11,11n2 layer","mass of cohesive sediment of class12,12n2 layer","mass of cohesive sediment of class13,13n2 layer","mass of cohesive sediment of class14,14n2 layer","mass of cohesive sediment of class15,15n2 layer","mass of cohesive sediment of class16,16n2 layer","mass of cohesive sediment of class17,17n2 layer","mass of cohesive sediment of class18,18n2 layer","mass of cohesive sediment of class19,19n2 layer","mass of cohesive sediment of class**,**n2 layer","mass of cohesive sediment of class*,*n3 layer","mass of cohesive sediment of class1,1n3 layer","mass of cohesive sediment of class2,2n3 layer","mass of cohesive sediment of class3,3n3 layer","mass of cohesive sediment of class4,4n3 layer","mass of cohesive sediment of class5,5n3 layer","mass of cohesive sediment of class6,6n3 layer","mass of cohesive sediment of class7,7n3 layer","mass of cohesive sediment of class8,8n3 layer","mass of cohesive sediment of class9,9n3 layer","mass of cohesive sediment of class10,10n3 layer","mass of cohesive sediment of class11,11n3 layer","mass of cohesive sediment of class12,12n3 layer","mass of cohesive sediment of class13,13n3 layer","mass of cohesive sediment of class14,14n3 layer","mass of cohesive sediment of class15,15n3 layer","mass of cohesive sediment of class16,16n3 layer","mass of cohesive sediment of class17,17n3 layer","mass of cohesive sediment of class18,18n3 layer","mass of cohesive sediment of class19,19n3 layer","mass of cohesive sediment of class**,**n3 layer","mass of cohesive sediment of class*,*n4 layer","mass of cohesive sediment of class1,1n4 layer","mass of cohesive sediment of class2,2n4 layer","mass of cohesive sediment of class3,3n4 layer","mass of cohesive sediment of class4,4n4 layer","mass of cohesive sediment of class5,5n4 layer","mass of cohesive sediment of class6,6n4 layer","mass of cohesive sediment of class7,7n4 layer","mass of cohesive sediment of class8,8n4 layer","mass of cohesive sediment of class9,9n4 layer","mass of cohesive sediment of class10,10n4 layer","mass of cohesive sediment of class11,11n4 layer","mass of cohesive sediment of class12,12n4 layer","mass of cohesive sediment of class13,13n4 layer","mass of cohesive sediment of class14,14n4 layer","mass of cohesive sediment of class15,15n4 layer","mass of cohesive sediment of class16,16n4 layer","mass of cohesive sediment of class17,17n4 layer","mass of cohesive sediment of class18,18n4 layer","mass of cohesive sediment of class19,19n4 layer","mass of cohesive sediment of class**,**n4 layer","mass of cohesive sediment of class*,*n5 layer","mass of cohesive sediment of class1,1n5 layer","mass of cohesive sediment of class2,2n5 layer","mass of cohesive sediment of class3,3n5 layer","mass of cohesive sediment of class4,4n5 layer","mass of cohesive sediment of class5,5n5 layer","mass of cohesive sediment of class6,6n5 layer","mass of cohesive sediment of class7,7n5 layer","mass of cohesive sediment of class8,8n5 layer","mass of cohesive sediment of class9,9n5 layer","mass of cohesive sediment of class10,10n5 layer","mass of cohesive sediment of class11,11n5 layer","mass of cohesive sediment of class12,12n5 layer","mass of cohesive sediment of class13,13n5 layer","mass of cohesive sediment of class14,14n5 layer","mass of cohesive sediment of class15,15n5 layer","mass of cohesive sediment of class16,16n5 layer","mass of cohesive sediment of class17,17n5 layer","mass of cohesive sediment of class18,18n5 layer","mass of cohesive sediment of class19,19n5 layer","mass of cohesive sediment of class**,**n5 layer","mass of cohesive sediment of class*,*n6 layer","mass of cohesive sediment of class1,1n6 layer","mass of cohesive sediment of class2,2n6 layer","mass of cohesive sediment of class3,3n6 layer","mass of cohesive sediment of class4,4n6 layer","mass of cohesive sediment of class5,5n6 layer","mass of cohesive sediment of class6,6n6 layer","mass of cohesive sediment of class7,7n6 layer","mass of cohesive sediment of class8,8n6 layer","mass of cohesive sediment of class9,9n6 layer","mass of cohesive sediment of class10,10n6 layer","mass of cohesive sediment of class11,11n6 layer","mass of cohesive sediment of class12,12n6 layer","mass of cohesive sediment of class13,13n6 layer","mass of cohesive sediment of class14,14n6 layer","mass of cohesive sediment of class15,15n6 layer","mass of cohesive sediment of class16,16n6 layer","mass of cohesive sediment of class17,17n6 layer","mass of cohesive sediment of class18,18n6 layer","mass of cohesive sediment of class19,19n6 layer","mass of cohesive sediment of class**,**n6 layer","mass of cohesive sediment of class*,*n7 layer","mass of cohesive sediment of class1,1n7 layer","mass of cohesive sediment of class2,2n7 layer","mass of cohesive sediment of class3,3n7 layer","mass of cohesive sediment of class4,4n7 layer","mass of cohesive sediment of class5,5n7 layer","mass of cohesive sediment of class6,6n7 layer","mass of cohesive sediment of class7,7n7 layer","mass of cohesive sediment of class8,8n7 layer","mass of cohesive sediment of class9,9n7 layer","mass of cohesive sediment of class10,10n7 layer","mass of cohesive sediment of class11,11n7 layer","mass of cohesive sediment of class12,12n7 layer","mass of cohesive sediment of class13,13n7 layer","mass of cohesive sediment of class14,14n7 layer","mass of cohesive sediment of class15,15n7 layer","mass of cohesive sediment of class16,16n7 layer","mass of cohesive sediment of class17,17n7 layer","mass of cohesive sediment of class18,18n7 layer","mass of cohesive sediment of class19,19n7 layer","mass of cohesive sediment of class**,**n7 layer","mass of cohesive sediment of class*,*n8 layer","mass of cohesive sediment of class1,1n8 layer","mass of cohesive sediment of class2,2n8 layer","mass of cohesive sediment of class3,3n8 layer","mass of cohesive sediment of class4,4n8 layer","mass of cohesive sediment of class5,5n8 layer","mass of cohesive sediment of class6,6n8 layer","mass of cohesive sediment of class7,7n8 layer","mass of cohesive sediment of class8,8n8 layer","mass of cohesive sediment of class9,9n8 layer","mass of cohesive sediment of class10,10n8 layer","mass of cohesive sediment of class11,11n8 layer","mass of cohesive sediment of class12,12n8 layer","mass of cohesive sediment of class13,13n8 layer","mass of cohesive sediment of class14,14n8 layer","mass of cohesive sediment of class15,15n8 layer","mass of cohesive sediment of class16,16n8 layer","mass of cohesive sediment of class17,17n8 layer","mass of cohesive sediment of class18,18n8 layer","mass of cohesive sediment of class19,19n8 layer","mass of cohesive sediment of class**,**n8 layer","mass of cohesive sediment of class*,*n9 layer","mass of cohesive sediment of class1,1n9 layer","mass of cohesive sediment of class2,2n9 layer","mass of cohesive sediment of class3,3n9 layer","mass of cohesive sediment of class4,4n9 layer","mass of cohesive sediment of class5,5n9 layer","mass of cohesive sediment of class6,6n9 layer","mass of cohesive sediment of class7,7n9 layer","mass of cohesive sediment of class8,8n9 layer","mass of cohesive sediment of class9,9n9 layer","mass of cohesive sediment of class10,10n9 layer","mass of cohesive sediment of class11,11n9 layer","mass of cohesive sediment of class12,12n9 layer","mass of cohesive sediment of class13,13n9 layer","mass of cohesive sediment of class14,14n9 layer","mass of cohesive sediment of class15,15n9 layer","mass of cohesive sediment of class16,16n9 layer","mass of cohesive sediment of class17,17n9 layer","mass of cohesive sediment of class18,18n9 layer","mass of cohesive sediment of class19,19n9 layer","mass of cohesive sediment of class**,**n9 layer","mass of cohesive sediment of class*,*n10 layer","mass of cohesive sediment of class1,1n10 layer","mass of cohesive sediment of class2,2n10 layer","mass of cohesive sediment of class3,3n10 layer","mass of cohesive sediment of class4,4n10 layer","mass of cohesive sediment of class5,5n10 layer","mass of cohesive sediment of class6,6n10 layer","mass of cohesive sediment of class7,7n10 layer","mass of cohesive sediment of class8,8n10 layer","mass of cohesive sediment of class9,9n10 layer","mass of cohesive sediment of class10,10n10 layer","mass of cohesive sediment of class11,11n10 layer","mass of cohesive sediment of class12,12n10 layer","mass of cohesive sediment of class13,13n10 layer","mass of cohesive sediment of class14,14n10 layer","mass of cohesive sediment of class15,15n10 layer","mass of cohesive sediment of class16,16n10 layer","mass of cohesive sediment of class17,17n10 layer","mass of cohesive sediment of class18,18n10 layer","mass of cohesive sediment of class19,19n10 layer","mass of cohesive sediment of class**,**n10 layer","mass of cohesive sediment of class*,*n11 layer","mass of cohesive sediment of class1,1n11 layer","mass of cohesive sediment of class2,2n11 layer","mass of cohesive sediment of class3,3n11 layer","mass of cohesive sediment of class4,4n11 layer","mass of cohesive sediment of class5,5n11 layer","mass of cohesive sediment of class6,6n11 layer","mass of cohesive sediment of class7,7n11 layer","mass of cohesive sediment of class8,8n11 layer","mass of cohesive sediment of class9,9n11 layer","mass of cohesive sediment of class10,10n11 layer","mass of cohesive sediment of class11,11n11 layer","mass of cohesive sediment of class12,12n11 layer","mass of cohesive sediment of class13,13n11 layer","mass of cohesive sediment of class14,14n11 layer","mass of cohesive sediment of class15,15n11 layer","mass of cohesive sediment of class16,16n11 layer","mass of cohesive sediment of class17,17n11 layer","mass of cohesive sediment of class18,18n11 layer","mass of cohesive sediment of class19,19n11 layer","mass of cohesive sediment of class**,**n11 layer","mass of cohesive sediment of class*,*n12 layer","mass of cohesive sediment of class1,1n12 layer","mass of cohesive sediment of class2,2n12 layer","mass of cohesive sediment of class3,3n12 layer","mass of cohesive sediment of class4,4n12 layer","mass of cohesive sediment of class5,5n12 layer","mass of cohesive sediment of class6,6n12 layer","mass of cohesive sediment of class7,7n12 layer","mass of cohesive sediment of class8,8n12 layer","mass of cohesive sediment of class9,9n12 layer","mass of cohesive sediment of class10,10n12 layer","mass of cohesive sediment of class11,11n12 layer","mass of cohesive sediment of class12,12n12 layer","mass of cohesive sediment of class13,13n12 layer","mass of cohesive sediment of class14,14n12 layer","mass of cohesive sediment of class15,15n12 layer","mass of cohesive sediment of class16,16n12 layer","mass of cohesive sediment of class17,17n12 layer","mass of cohesive sediment of class18,18n12 layer","mass of cohesive sediment of class19,19n12 layer","mass of cohesive sediment of class**,**n12 layer","mass of cohesive sediment of class*,*n13 layer","mass of cohesive sediment of class1,1n13 layer","mass of cohesive sediment of class2,2n13 layer","mass of cohesive sediment of class3,3n13 layer","mass of cohesive sediment of class4,4n13 layer","mass of cohesive sediment of class5,5n13 layer","mass of cohesive sediment of class6,6n13 layer","mass of cohesive sediment of class7,7n13 layer","mass of cohesive sediment of class8,8n13 layer","mass of cohesive sediment of class9,9n13 layer","mass of cohesive sediment of class10,10n13 layer","mass of cohesive sediment of class11,11n13 layer","mass of cohesive sediment of class12,12n13 layer","mass of cohesive sediment of class13,13n13 layer","mass of cohesive sediment of class14,14n13 layer","mass of cohesive sediment of class15,15n13 layer","mass of cohesive sediment of class16,16n13 layer","mass of cohesive sediment of class17,17n13 layer","mass of cohesive sediment of class18,18n13 layer","mass of cohesive sediment of class19,19n13 layer","mass of cohesive sediment of class**,**n13 layer","mass of cohesive sediment of class*,*n14 layer","mass of cohesive sediment of class1,1n14 layer","mass of cohesive sediment of class2,2n14 layer","mass of cohesive sediment of class3,3n14 layer","mass of cohesive sediment of class4,4n14 layer","mass of cohesive sediment of class5,5n14 layer","mass of cohesive sediment of class6,6n14 layer","mass of cohesive sediment of class7,7n14 layer","mass of cohesive sediment of class8,8n14 layer","mass of cohesive sediment of class9,9n14 layer","mass of cohesive sediment of class10,10n14 layer","mass of cohesive sediment of class11,11n14 layer","mass of cohesive sediment of class12,12n14 layer","mass of cohesive sediment of class13,13n14 layer","mass of cohesive sediment of class14,14n14 layer","mass of cohesive sediment of class15,15n14 layer","mass of cohesive sediment of class16,16n14 layer","mass of cohesive sediment of class17,17n14 layer","mass of cohesive sediment of class18,18n14 layer","mass of cohesive sediment of class19,19n14 layer","mass of cohesive sediment of class**,**n14 layer","mass of cohesive sediment of class*,*n15 layer","mass of cohesive sediment of class1,1n15 layer","mass of cohesive sediment of class2,2n15 layer","mass of cohesive sediment of class3,3n15 layer","mass of cohesive sediment of class4,4n15 layer","mass of cohesive sediment of class5,5n15 layer","mass of cohesive sediment of class6,6n15 layer","mass of cohesive sediment of class7,7n15 layer","mass of cohesive sediment of class8,8n15 layer","mass of cohesive sediment of class9,9n15 layer","mass of cohesive sediment of class10,10n15 layer","mass of cohesive sediment of class11,11n15 layer","mass of cohesive sediment of class12,12n15 layer","mass of cohesive sediment of class13,13n15 layer","mass of cohesive sediment of class14,14n15 layer","mass of cohesive sediment of class15,15n15 layer","mass of cohesive sediment of class16,16n15 layer","mass of cohesive sediment of class17,17n15 layer","mass of cohesive sediment of class18,18n15 layer","mass of cohesive sediment of class19,19n15 layer","mass of cohesive sediment of class**,**n15 layer","mass of cohesive sediment of class*,*n16 layer","mass of cohesive sediment of class1,1n16 layer","mass of cohesive sediment of class2,2n16 layer","mass of cohesive sediment of class3,3n16 layer","mass of cohesive sediment of class4,4n16 layer","mass of cohesive sediment of class5,5n16 layer","mass of cohesive sediment of class6,6n16 layer","mass of cohesive sediment of class7,7n16 layer","mass of cohesive sediment of class8,8n16 layer","mass of cohesive sediment of class9,9n16 layer","mass of cohesive sediment of class10,10n16 layer","mass of cohesive sediment of class11,11n16 layer","mass of cohesive sediment of class12,12n16 layer","mass of cohesive sediment of class13,13n16 layer","mass of cohesive sediment of class14,14n16 layer","mass of cohesive sediment of class15,15n16 layer","mass of cohesive sediment of class16,16n16 layer","mass of cohesive sediment of class17,17n16 layer","mass of cohesive sediment of class18,18n16 layer","mass of cohesive sediment of class19,19n16 layer","mass of cohesive sediment of class**,**n16 layer","mass of cohesive sediment of class*,*n17 layer","mass of cohesive sediment of class1,1n17 layer","mass of cohesive sediment of class2,2n17 layer","mass of cohesive sediment of class3,3n17 layer","mass of cohesive sediment of class4,4n17 layer","mass of cohesive sediment of class5,5n17 layer","mass of cohesive sediment of class6,6n17 layer","mass of cohesive sediment of class7,7n17 layer","mass of cohesive sediment of class8,8n17 layer","mass of cohesive sediment of class9,9n17 layer","mass of cohesive sediment of class10,10n17 layer","mass of cohesive sediment of class11,11n17 layer","mass of cohesive sediment of class12,12n17 layer","mass of cohesive sediment of class13,13n17 layer","mass of cohesive sediment of class14,14n17 layer","mass of cohesive sediment of class15,15n17 layer","mass of cohesive sediment of class16,16n17 layer","mass of cohesive sediment of class17,17n17 layer","mass of cohesive sediment of class18,18n17 layer","mass of cohesive sediment of class19,19n17 layer","mass of cohesive sediment of class**,**n17 layer","mass of cohesive sediment of class*,*n18 layer","mass of cohesive sediment of class1,1n18 layer","mass of cohesive sediment of class2,2n18 layer","mass of cohesive sediment of class3,3n18 layer","mass of cohesive sediment of class4,4n18 layer","mass of cohesive sediment of class5,5n18 layer","mass of cohesive sediment of class6,6n18 layer","mass of cohesive sediment of class7,7n18 layer","mass of cohesive sediment of class8,8n18 layer","mass of cohesive sediment of class9,9n18 layer","mass of cohesive sediment of class10,10n18 layer","mass of cohesive sediment of class11,11n18 layer","mass of cohesive sediment of class12,12n18 layer","mass of cohesive sediment of class13,13n18 layer","mass of cohesive sediment of class14,14n18 layer","mass of cohesive sediment of class15,15n18 layer","mass of cohesive sediment of class16,16n18 layer","mass of cohesive sediment of class17,17n18 layer","mass of cohesive sediment of class18,18n18 layer","mass of cohesive sediment of class19,19n18 layer","mass of cohesive sediment of class**,**n18 layer","mass of cohesive sediment of class*,*n19 layer","mass of cohesive sediment of class1,1n19 layer","mass of cohesive sediment of class2,2n19 layer","mass of cohesive sediment of class3,3n19 layer","mass of cohesive sediment of class4,4n19 layer","mass of cohesive sediment of class5,5n19 layer","mass of cohesive sediment of class6,6n19 layer","mass of cohesive sediment of class7,7n19 layer","mass of cohesive sediment of class8,8n19 layer","mass of cohesive sediment of class9,9n19 layer","mass of cohesive sediment of class10,10n19 layer","mass of cohesive sediment of class11,11n19 layer","mass of cohesive sediment of class12,12n19 layer","mass of cohesive sediment of class13,13n19 layer","mass of cohesive sediment of class14,14n19 layer","mass of cohesive sediment of class15,15n19 layer","mass of cohesive sediment of class16,16n19 layer","mass of cohesive sediment of class17,17n19 layer","mass of cohesive sediment of class18,18n19 layer","mass of cohesive sediment of class19,19n19 layer","mass of cohesive sediment of class**,**n19 layer","mass of cohesive sediment of class*,*n** layer","mass of cohesive sediment of class1,1n** layer","mass of cohesive sediment of class2,2n** layer","mass of cohesive sediment of class3,3n** layer","mass of cohesive sediment of class4,4n** layer","mass of cohesive sediment of class5,5n** layer","mass of cohesive sediment of class6,6n** layer","mass of cohesive sediment of class7,7n** layer","mass of cohesive sediment of class8,8n** layer","mass of cohesive sediment of class9,9n** layer","mass of cohesive sediment of class10,10n** layer","mass of cohesive sediment of class11,11n** layer","mass of cohesive sediment of class12,12n** layer","mass of cohesive sediment of class13,13n** layer","mass of cohesive sediment of class14,14n** layer","mass of cohesive sediment of class15,15n** layer","mass of cohesive sediment of class16,16n** layer","mass of cohesive sediment of class17,17n** layer","mass of cohesive sediment of class18,18n** layer","mass of cohesive sediment of class19,19n** layer","mass of cohesive sediment of class**,**n** layer","reference level for Nestor"], defaut = ["velocity along x axis (m/s)","velocity along y axis (m/s)","water depth (m)","free surface elevation (m)","bottom elevation (m)","non erodable bottom","bottom evolution (m)"], fr = """Noms des variables que l''utilisateur veut ecrire dans le fichier des resultats. @@ -914,7 +914,7 @@ NON_COHESIVE = PROC(nom= "NON_COHESIVE",op = None, # ----------------------------------- LAYERS_NON_COHESIVE_BED_POROSITY = SIMP(statut ='f', # ----------------------------------- - typ = 'R', min= 2, max= 2, + typ = 'R', min=0, max='**', defaut = [0.4,0.4], fr = """la concentration volumique du lit est definie par CSF= (1-porosite) @@ -1304,8 +1304,8 @@ a stratification, use a large value""", # ----------------------------------- D90_SAND_DIAMETER_FOR_ONLY_ONE_CLASS = SIMP(statut ='f', # ----------------------------------- - typ = 'R', min= 2, max= 2, - defaut = [.01], + typ = 'R', + defaut = .01, fr = """Fixe la valeur de D90 pour des simulations avec une seule classe de sable. Pour des simulations avec plusieurs classes de sable, D90 est calcule par GAIA.""", @@ -1401,7 +1401,7 @@ or Rouse (sediment), \end{itemize}""", ), # ----------------------------------- - SUSPENDED_SEDIMENTS_CONCENTRATION_VALUES_AT_THE_SOURCES = SIMP(statut ='o', + SUSPENDED_SEDIMENTS_CONCENTRATION_VALUES_AT_THE_SOURCES = SIMP(statut ='f', # ----------------------------------- typ = 'R', min=0, max='**', fr = """Valeurs des sediments en suspension a chacune des sources. @@ -1460,9 +1460,9 @@ Old default value = 10 until release 8.1.""", # ----------------------------------- SCHEME_FOR_ADVECTION_OF_SUSPENDED_SEDIMENTS = SIMP(statut ='o', # ----------------------------------- - typ = 'TXM', - into = ["NO ADVECTION","CHARACTERISTICS","EXPLICIT + SUPG","EXPLICIT LEO POSTMA","EXPLICIT + MURD SCHEME N","EXPLICIT + MURD SCHEME PSI","N-SCHEME FOR TIDAL FLATS","N-SCHEME FOR TIDAL FLATS","ERIA SCHEME - ONLY IN 2D"], - defaut = "EXPLICIT + MURD SCHEME PSI", + typ = 'TXM', min=0, max='**', + into = ["NO ADVECTION","CHARACTERISTICS","EXPLICIT + SUPG","EXPLICIT LEO POSTMA","EXPLICIT + MURD SCHEME N","EXPLICIT + MURD SCHEME PSI","N-SCHEME FOR TIDAL FLATS LP","N-SCHEME FOR TIDAL FLATS","ERIA SCHEME - ONLY IN 2D"], + defaut = ["EXPLICIT + MURD SCHEME PSI"], fr = """Choix du schema de convection pour les sediments en suspension, ERIA fonctionne uniquement en 2D. A donner en suivant l''ordre des sediments en suspension""", @@ -1473,8 +1473,8 @@ the order of the suspended sediments.""", # ----------------------------------- SCHEME_OPTION_FOR_ADVECTION_OF_SUSPENDED_SEDIMENTS = SIMP(statut ='f', # ----------------------------------- - typ = 'I', - defaut = 4, + typ = 'I', min=0, max='**', + defaut = [4,4], fr = """Si schema PSI ou N : 1=explicite 2=predicteur-correcteur 3=predicteur-correcteur deuxieme ordre en temps 4=implicite""", @@ -1515,7 +1515,7 @@ Possible choices are: # ----------------------------------- SOLVER_FOR_DIFFUSION_OF_SUSPENSION = SIMP(statut ='f', # ----------------------------------- - typ = 'TXM', min= 2, max= 2, + typ = 'TXM', min=0, max='**', into = ["conjugate gradient","conjugate residual","conjugate gradient on a normal equation","minimum error","squared conjugate gradient","cgstab","gmres","direct solver"], defaut = ["conjugate gradient"], fr = """Permet de choisir le solveur utilise pour la resolution de @@ -1711,7 +1711,7 @@ COHESIVE = PROC(nom= "COHESIVE",op = None, # ----------------------------------- LAYERS_CRITICAL_EROSION_SHEAR_STRESS_OF_THE_MUD = SIMP(statut ='f', # ----------------------------------- - typ = 'R', min= 2, max= 2, + typ = 'R', min=0, max='**', defaut = [0.5,1.], fr = """Taux critique d erosion de la vase needs to be defined for each layer (N par m2)""", @@ -1850,7 +1850,7 @@ Value to be imposed if # ----------------------------------- LAYERS_PARTHENIADES_CONSTANT = SIMP(statut ='f', # ----------------------------------- - typ = 'R', min= 2, max= 2, + typ = 'R', min=0, max='**', defaut = [1.E-3,1.E-3], fr = """constante de la loi d''erosion de la vase (Kg/m2/s)""", ang = """constant of the Krone and Partheniades erosion law (Kg/m2/s)""", @@ -1865,7 +1865,7 @@ Value to be imposed if # ----------------------------------- LAYERS_MUD_CONCENTRATION = SIMP(statut ='f', # ----------------------------------- - typ = 'R', min= 2, max= 2, + typ = 'R', min=0, max='**', fr = """Concentration du lit de vase en g/ l - defini par couches""", ang = """Concentrations of the mud-bed in g per l (per layer)""", ), @@ -1887,7 +1887,7 @@ Value to be imposed if # ----------------------------------- LAYERS_MASS_TRANSFER = SIMP(statut ='f', # ----------------------------------- - typ = 'R', min= 2, max= 2, + typ = 'R', min=0, max='**', fr = """Coefficients de transfert de masse du modele de tassement multicouche en s-1""", ang = """Mass transfert coefficients of @@ -2096,7 +2096,7 @@ BED_MATERIAL = PROC(nom= "BED_MATERIAL",op = None, # ----------------------------------- C_VSM_PRINTOUT_SELECTION = SIMP(statut ='f', # ----------------------------------- - typ = 'TXM', min=13, max=13, + typ = 'TXM', defaut = '0;0;0;0;0;0;0;0;0;0;0;0;0', fr = """(-)""", ang = """Printout the C-VSM for the whole model as 3D diff --git a/Telemac/gaia_enum_auto.py b/Telemac/gaia_enum_auto.py index ad6a4436..d9474377 100644 --- a/Telemac/gaia_enum_auto.py +++ b/Telemac/gaia_enum_auto.py @@ -22,11 +22,1330 @@ TelemacdicoEn = { 'THETAW':"wave angle with axis Oy (deg)", 'W':"wave height", 'X':"wave period", - '1Ai':"fraction of sediment of class i in the first layer", - '2Ai':"fraction of sediment of class i in the second layer", - 'QSi':"bed load transport rate of sediment of class i", - '*ES':"thicknes of bed layer i", - '*CONC':"concentration of bed layer i ", + '*A*':"fraction of non cohesive sediment of class*,*n* layer", + '*A1':"fraction of non cohesive sediment of class1,1n* layer", + '*A2':"fraction of non cohesive sediment of class2,2n* layer", + '*A3':"fraction of non cohesive sediment of class3,3n* layer", + '*A4':"fraction of non cohesive sediment of class4,4n* layer", + '*A5':"fraction of non cohesive sediment of class5,5n* layer", + '*A6':"fraction of non cohesive sediment of class6,6n* layer", + '*A7':"fraction of non cohesive sediment of class7,7n* layer", + '*A8':"fraction of non cohesive sediment of class8,8n* layer", + '*A9':"fraction of non cohesive sediment of class9,9n* layer", + '*A10':"fraction of non cohesive sediment of class10,10n* layer", + '*A11':"fraction of non cohesive sediment of class11,11n* layer", + '*A12':"fraction of non cohesive sediment of class12,12n* layer", + '*A13':"fraction of non cohesive sediment of class13,13n* layer", + '*A14':"fraction of non cohesive sediment of class14,14n* layer", + '*A15':"fraction of non cohesive sediment of class15,15n* layer", + '*A16':"fraction of non cohesive sediment of class16,16n* layer", + '*A17':"fraction of non cohesive sediment of class17,17n* layer", + '*A18':"fraction of non cohesive sediment of class18,18n* layer", + '*A19':"fraction of non cohesive sediment of class19,19n* layer", + '*A**':"fraction of non cohesive sediment of class**,**n* layer", + '1A*':"fraction of non cohesive sediment of class*,*n1 layer", + '1A1':"fraction of non cohesive sediment of class1,1n1 layer", + '1A2':"fraction of non cohesive sediment of class2,2n1 layer", + '1A3':"fraction of non cohesive sediment of class3,3n1 layer", + '1A4':"fraction of non cohesive sediment of class4,4n1 layer", + '1A5':"fraction of non cohesive sediment of class5,5n1 layer", + '1A6':"fraction of non cohesive sediment of class6,6n1 layer", + '1A7':"fraction of non cohesive sediment of class7,7n1 layer", + '1A8':"fraction of non cohesive sediment of class8,8n1 layer", + '1A9':"fraction of non cohesive sediment of class9,9n1 layer", + '1A10':"fraction of non cohesive sediment of class10,10n1 layer", + '1A11':"fraction of non cohesive sediment of class11,11n1 layer", + '1A12':"fraction of non cohesive sediment of class12,12n1 layer", + '1A13':"fraction of non cohesive sediment of class13,13n1 layer", + '1A14':"fraction of non cohesive sediment of class14,14n1 layer", + '1A15':"fraction of non cohesive sediment of class15,15n1 layer", + '1A16':"fraction of non cohesive sediment of class16,16n1 layer", + '1A17':"fraction of non cohesive sediment of class17,17n1 layer", + '1A18':"fraction of non cohesive sediment of class18,18n1 layer", + '1A19':"fraction of non cohesive sediment of class19,19n1 layer", + '1A**':"fraction of non cohesive sediment of class**,**n1 layer", + '2A*':"fraction of non cohesive sediment of class*,*n2 layer", + '2A1':"fraction of non cohesive sediment of class1,1n2 layer", + '2A2':"fraction of non cohesive sediment of class2,2n2 layer", + '2A3':"fraction of non cohesive sediment of class3,3n2 layer", + '2A4':"fraction of non cohesive sediment of class4,4n2 layer", + '2A5':"fraction of non cohesive sediment of class5,5n2 layer", + '2A6':"fraction of non cohesive sediment of class6,6n2 layer", + '2A7':"fraction of non cohesive sediment of class7,7n2 layer", + '2A8':"fraction of non cohesive sediment of class8,8n2 layer", + '2A9':"fraction of non cohesive sediment of class9,9n2 layer", + '2A10':"fraction of non cohesive sediment of class10,10n2 layer", + '2A11':"fraction of non cohesive sediment of class11,11n2 layer", + '2A12':"fraction of non cohesive sediment of class12,12n2 layer", + '2A13':"fraction of non cohesive sediment of class13,13n2 layer", + '2A14':"fraction of non cohesive sediment of class14,14n2 layer", + '2A15':"fraction of non cohesive sediment of class15,15n2 layer", + '2A16':"fraction of non cohesive sediment of class16,16n2 layer", + '2A17':"fraction of non cohesive sediment of class17,17n2 layer", + '2A18':"fraction of non cohesive sediment of class18,18n2 layer", + '2A19':"fraction of non cohesive sediment of class19,19n2 layer", + '2A**':"fraction of non cohesive sediment of class**,**n2 layer", + '3A*':"fraction of non cohesive sediment of class*,*n3 layer", + '3A1':"fraction of non cohesive sediment of class1,1n3 layer", + '3A2':"fraction of non cohesive sediment of class2,2n3 layer", + '3A3':"fraction of non cohesive sediment of class3,3n3 layer", + '3A4':"fraction of non cohesive sediment of class4,4n3 layer", + '3A5':"fraction of non cohesive sediment of class5,5n3 layer", + '3A6':"fraction of non cohesive sediment of class6,6n3 layer", + '3A7':"fraction of non cohesive sediment of class7,7n3 layer", + '3A8':"fraction of non cohesive sediment of class8,8n3 layer", + '3A9':"fraction of non cohesive sediment of class9,9n3 layer", + '3A10':"fraction of non cohesive sediment of class10,10n3 layer", + '3A11':"fraction of non cohesive sediment of class11,11n3 layer", + '3A12':"fraction of non cohesive sediment of class12,12n3 layer", + '3A13':"fraction of non cohesive sediment of class13,13n3 layer", + '3A14':"fraction of non cohesive sediment of class14,14n3 layer", + '3A15':"fraction of non cohesive sediment of class15,15n3 layer", + '3A16':"fraction of non cohesive sediment of class16,16n3 layer", + '3A17':"fraction of non cohesive sediment of class17,17n3 layer", + '3A18':"fraction of non cohesive sediment of class18,18n3 layer", + '3A19':"fraction of non cohesive sediment of class19,19n3 layer", + '3A**':"fraction of non cohesive sediment of class**,**n3 layer", + '4A*':"fraction of non cohesive sediment of class*,*n4 layer", + '4A1':"fraction of non cohesive sediment of class1,1n4 layer", + '4A2':"fraction of non cohesive sediment of class2,2n4 layer", + '4A3':"fraction of non cohesive sediment of class3,3n4 layer", + '4A4':"fraction of non cohesive sediment of class4,4n4 layer", + '4A5':"fraction of non cohesive sediment of class5,5n4 layer", + '4A6':"fraction of non cohesive sediment of class6,6n4 layer", + '4A7':"fraction of non cohesive sediment of class7,7n4 layer", + '4A8':"fraction of non cohesive sediment of class8,8n4 layer", + '4A9':"fraction of non cohesive sediment of class9,9n4 layer", + '4A10':"fraction of non cohesive sediment of class10,10n4 layer", + '4A11':"fraction of non cohesive sediment of class11,11n4 layer", + '4A12':"fraction of non cohesive sediment of class12,12n4 layer", + '4A13':"fraction of non cohesive sediment of class13,13n4 layer", + '4A14':"fraction of non cohesive sediment of class14,14n4 layer", + '4A15':"fraction of non cohesive sediment of class15,15n4 layer", + '4A16':"fraction of non cohesive sediment of class16,16n4 layer", + '4A17':"fraction of non cohesive sediment of class17,17n4 layer", + '4A18':"fraction of non cohesive sediment of class18,18n4 layer", + '4A19':"fraction of non cohesive sediment of class19,19n4 layer", + '4A**':"fraction of non cohesive sediment of class**,**n4 layer", + '5A*':"fraction of non cohesive sediment of class*,*n5 layer", + '5A1':"fraction of non cohesive sediment of class1,1n5 layer", + '5A2':"fraction of non cohesive sediment of class2,2n5 layer", + '5A3':"fraction of non cohesive sediment of class3,3n5 layer", + '5A4':"fraction of non cohesive sediment of class4,4n5 layer", + '5A5':"fraction of non cohesive sediment of class5,5n5 layer", + '5A6':"fraction of non cohesive sediment of class6,6n5 layer", + '5A7':"fraction of non cohesive sediment of class7,7n5 layer", + '5A8':"fraction of non cohesive sediment of class8,8n5 layer", + '5A9':"fraction of non cohesive sediment of class9,9n5 layer", + '5A10':"fraction of non cohesive sediment of class10,10n5 layer", + '5A11':"fraction of non cohesive sediment of class11,11n5 layer", + '5A12':"fraction of non cohesive sediment of class12,12n5 layer", + '5A13':"fraction of non cohesive sediment of class13,13n5 layer", + '5A14':"fraction of non cohesive sediment of class14,14n5 layer", + '5A15':"fraction of non cohesive sediment of class15,15n5 layer", + '5A16':"fraction of non cohesive sediment of class16,16n5 layer", + '5A17':"fraction of non cohesive sediment of class17,17n5 layer", + '5A18':"fraction of non cohesive sediment of class18,18n5 layer", + '5A19':"fraction of non cohesive sediment of class19,19n5 layer", + '5A**':"fraction of non cohesive sediment of class**,**n5 layer", + '6A*':"fraction of non cohesive sediment of class*,*n6 layer", + '6A1':"fraction of non cohesive sediment of class1,1n6 layer", + '6A2':"fraction of non cohesive sediment of class2,2n6 layer", + '6A3':"fraction of non cohesive sediment of class3,3n6 layer", + '6A4':"fraction of non cohesive sediment of class4,4n6 layer", + '6A5':"fraction of non cohesive sediment of class5,5n6 layer", + '6A6':"fraction of non cohesive sediment of class6,6n6 layer", + '6A7':"fraction of non cohesive sediment of class7,7n6 layer", + '6A8':"fraction of non cohesive sediment of class8,8n6 layer", + '6A9':"fraction of non cohesive sediment of class9,9n6 layer", + '6A10':"fraction of non cohesive sediment of class10,10n6 layer", + '6A11':"fraction of non cohesive sediment of class11,11n6 layer", + '6A12':"fraction of non cohesive sediment of class12,12n6 layer", + '6A13':"fraction of non cohesive sediment of class13,13n6 layer", + '6A14':"fraction of non cohesive sediment of class14,14n6 layer", + '6A15':"fraction of non cohesive sediment of class15,15n6 layer", + '6A16':"fraction of non cohesive sediment of class16,16n6 layer", + '6A17':"fraction of non cohesive sediment of class17,17n6 layer", + '6A18':"fraction of non cohesive sediment of class18,18n6 layer", + '6A19':"fraction of non cohesive sediment of class19,19n6 layer", + '6A**':"fraction of non cohesive sediment of class**,**n6 layer", + '7A*':"fraction of non cohesive sediment of class*,*n7 layer", + '7A1':"fraction of non cohesive sediment of class1,1n7 layer", + '7A2':"fraction of non cohesive sediment of class2,2n7 layer", + '7A3':"fraction of non cohesive sediment of class3,3n7 layer", + '7A4':"fraction of non cohesive sediment of class4,4n7 layer", + '7A5':"fraction of non cohesive sediment of class5,5n7 layer", + '7A6':"fraction of non cohesive sediment of class6,6n7 layer", + '7A7':"fraction of non cohesive sediment of class7,7n7 layer", + '7A8':"fraction of non cohesive sediment of class8,8n7 layer", + '7A9':"fraction of non cohesive sediment of class9,9n7 layer", + '7A10':"fraction of non cohesive sediment of class10,10n7 layer", + '7A11':"fraction of non cohesive sediment of class11,11n7 layer", + '7A12':"fraction of non cohesive sediment of class12,12n7 layer", + '7A13':"fraction of non cohesive sediment of class13,13n7 layer", + '7A14':"fraction of non cohesive sediment of class14,14n7 layer", + '7A15':"fraction of non cohesive sediment of class15,15n7 layer", + '7A16':"fraction of non cohesive sediment of class16,16n7 layer", + '7A17':"fraction of non cohesive sediment of class17,17n7 layer", + '7A18':"fraction of non cohesive sediment of class18,18n7 layer", + '7A19':"fraction of non cohesive sediment of class19,19n7 layer", + '7A**':"fraction of non cohesive sediment of class**,**n7 layer", + '8A*':"fraction of non cohesive sediment of class*,*n8 layer", + '8A1':"fraction of non cohesive sediment of class1,1n8 layer", + '8A2':"fraction of non cohesive sediment of class2,2n8 layer", + '8A3':"fraction of non cohesive sediment of class3,3n8 layer", + '8A4':"fraction of non cohesive sediment of class4,4n8 layer", + '8A5':"fraction of non cohesive sediment of class5,5n8 layer", + '8A6':"fraction of non cohesive sediment of class6,6n8 layer", + '8A7':"fraction of non cohesive sediment of class7,7n8 layer", + '8A8':"fraction of non cohesive sediment of class8,8n8 layer", + '8A9':"fraction of non cohesive sediment of class9,9n8 layer", + '8A10':"fraction of non cohesive sediment of class10,10n8 layer", + '8A11':"fraction of non cohesive sediment of class11,11n8 layer", + '8A12':"fraction of non cohesive sediment of class12,12n8 layer", + '8A13':"fraction of non cohesive sediment of class13,13n8 layer", + '8A14':"fraction of non cohesive sediment of class14,14n8 layer", + '8A15':"fraction of non cohesive sediment of class15,15n8 layer", + '8A16':"fraction of non cohesive sediment of class16,16n8 layer", + '8A17':"fraction of non cohesive sediment of class17,17n8 layer", + '8A18':"fraction of non cohesive sediment of class18,18n8 layer", + '8A19':"fraction of non cohesive sediment of class19,19n8 layer", + '8A**':"fraction of non cohesive sediment of class**,**n8 layer", + '9A*':"fraction of non cohesive sediment of class*,*n9 layer", + '9A1':"fraction of non cohesive sediment of class1,1n9 layer", + '9A2':"fraction of non cohesive sediment of class2,2n9 layer", + '9A3':"fraction of non cohesive sediment of class3,3n9 layer", + '9A4':"fraction of non cohesive sediment of class4,4n9 layer", + '9A5':"fraction of non cohesive sediment of class5,5n9 layer", + '9A6':"fraction of non cohesive sediment of class6,6n9 layer", + '9A7':"fraction of non cohesive sediment of class7,7n9 layer", + '9A8':"fraction of non cohesive sediment of class8,8n9 layer", + '9A9':"fraction of non cohesive sediment of class9,9n9 layer", + '9A10':"fraction of non cohesive sediment of class10,10n9 layer", + '9A11':"fraction of non cohesive sediment of class11,11n9 layer", + '9A12':"fraction of non cohesive sediment of class12,12n9 layer", + '9A13':"fraction of non cohesive sediment of class13,13n9 layer", + '9A14':"fraction of non cohesive sediment of class14,14n9 layer", + '9A15':"fraction of non cohesive sediment of class15,15n9 layer", + '9A16':"fraction of non cohesive sediment of class16,16n9 layer", + '9A17':"fraction of non cohesive sediment of class17,17n9 layer", + '9A18':"fraction of non cohesive sediment of class18,18n9 layer", + '9A19':"fraction of non cohesive sediment of class19,19n9 layer", + '9A**':"fraction of non cohesive sediment of class**,**n9 layer", + '10A*':"fraction of non cohesive sediment of class*,*n10 layer", + '10A1':"fraction of non cohesive sediment of class1,1n10 layer", + '10A2':"fraction of non cohesive sediment of class2,2n10 layer", + '10A3':"fraction of non cohesive sediment of class3,3n10 layer", + '10A4':"fraction of non cohesive sediment of class4,4n10 layer", + '10A5':"fraction of non cohesive sediment of class5,5n10 layer", + '10A6':"fraction of non cohesive sediment of class6,6n10 layer", + '10A7':"fraction of non cohesive sediment of class7,7n10 layer", + '10A8':"fraction of non cohesive sediment of class8,8n10 layer", + '10A9':"fraction of non cohesive sediment of class9,9n10 layer", + '10A10':"fraction of non cohesive sediment of class10,10n10 layer", + '10A11':"fraction of non cohesive sediment of class11,11n10 layer", + '10A12':"fraction of non cohesive sediment of class12,12n10 layer", + '10A13':"fraction of non cohesive sediment of class13,13n10 layer", + '10A14':"fraction of non cohesive sediment of class14,14n10 layer", + '10A15':"fraction of non cohesive sediment of class15,15n10 layer", + '10A16':"fraction of non cohesive sediment of class16,16n10 layer", + '10A17':"fraction of non cohesive sediment of class17,17n10 layer", + '10A18':"fraction of non cohesive sediment of class18,18n10 layer", + '10A19':"fraction of non cohesive sediment of class19,19n10 layer", + '10A**':"fraction of non cohesive sediment of class**,**n10 layer", + '11A*':"fraction of non cohesive sediment of class*,*n11 layer", + '11A1':"fraction of non cohesive sediment of class1,1n11 layer", + '11A2':"fraction of non cohesive sediment of class2,2n11 layer", + '11A3':"fraction of non cohesive sediment of class3,3n11 layer", + '11A4':"fraction of non cohesive sediment of class4,4n11 layer", + '11A5':"fraction of non cohesive sediment of class5,5n11 layer", + '11A6':"fraction of non cohesive sediment of class6,6n11 layer", + '11A7':"fraction of non cohesive sediment of class7,7n11 layer", + '11A8':"fraction of non cohesive sediment of class8,8n11 layer", + '11A9':"fraction of non cohesive sediment of class9,9n11 layer", + '11A10':"fraction of non cohesive sediment of class10,10n11 layer", + '11A11':"fraction of non cohesive sediment of class11,11n11 layer", + '11A12':"fraction of non cohesive sediment of class12,12n11 layer", + '11A13':"fraction of non cohesive sediment of class13,13n11 layer", + '11A14':"fraction of non cohesive sediment of class14,14n11 layer", + '11A15':"fraction of non cohesive sediment of class15,15n11 layer", + '11A16':"fraction of non cohesive sediment of class16,16n11 layer", + '11A17':"fraction of non cohesive sediment of class17,17n11 layer", + '11A18':"fraction of non cohesive sediment of class18,18n11 layer", + '11A19':"fraction of non cohesive sediment of class19,19n11 layer", + '11A**':"fraction of non cohesive sediment of class**,**n11 layer", + '12A*':"fraction of non cohesive sediment of class*,*n12 layer", + '12A1':"fraction of non cohesive sediment of class1,1n12 layer", + '12A2':"fraction of non cohesive sediment of class2,2n12 layer", + '12A3':"fraction of non cohesive sediment of class3,3n12 layer", + '12A4':"fraction of non cohesive sediment of class4,4n12 layer", + '12A5':"fraction of non cohesive sediment of class5,5n12 layer", + '12A6':"fraction of non cohesive sediment of class6,6n12 layer", + '12A7':"fraction of non cohesive sediment of class7,7n12 layer", + '12A8':"fraction of non cohesive sediment of class8,8n12 layer", + '12A9':"fraction of non cohesive sediment of class9,9n12 layer", + '12A10':"fraction of non cohesive sediment of class10,10n12 layer", + '12A11':"fraction of non cohesive sediment of class11,11n12 layer", + '12A12':"fraction of non cohesive sediment of class12,12n12 layer", + '12A13':"fraction of non cohesive sediment of class13,13n12 layer", + '12A14':"fraction of non cohesive sediment of class14,14n12 layer", + '12A15':"fraction of non cohesive sediment of class15,15n12 layer", + '12A16':"fraction of non cohesive sediment of class16,16n12 layer", + '12A17':"fraction of non cohesive sediment of class17,17n12 layer", + '12A18':"fraction of non cohesive sediment of class18,18n12 layer", + '12A19':"fraction of non cohesive sediment of class19,19n12 layer", + '12A**':"fraction of non cohesive sediment of class**,**n12 layer", + '13A*':"fraction of non cohesive sediment of class*,*n13 layer", + '13A1':"fraction of non cohesive sediment of class1,1n13 layer", + '13A2':"fraction of non cohesive sediment of class2,2n13 layer", + '13A3':"fraction of non cohesive sediment of class3,3n13 layer", + '13A4':"fraction of non cohesive sediment of class4,4n13 layer", + '13A5':"fraction of non cohesive sediment of class5,5n13 layer", + '13A6':"fraction of non cohesive sediment of class6,6n13 layer", + '13A7':"fraction of non cohesive sediment of class7,7n13 layer", + '13A8':"fraction of non cohesive sediment of class8,8n13 layer", + '13A9':"fraction of non cohesive sediment of class9,9n13 layer", + '13A10':"fraction of non cohesive sediment of class10,10n13 layer", + '13A11':"fraction of non cohesive sediment of class11,11n13 layer", + '13A12':"fraction of non cohesive sediment of class12,12n13 layer", + '13A13':"fraction of non cohesive sediment of class13,13n13 layer", + '13A14':"fraction of non cohesive sediment of class14,14n13 layer", + '13A15':"fraction of non cohesive sediment of class15,15n13 layer", + '13A16':"fraction of non cohesive sediment of class16,16n13 layer", + '13A17':"fraction of non cohesive sediment of class17,17n13 layer", + '13A18':"fraction of non cohesive sediment of class18,18n13 layer", + '13A19':"fraction of non cohesive sediment of class19,19n13 layer", + '13A**':"fraction of non cohesive sediment of class**,**n13 layer", + '14A*':"fraction of non cohesive sediment of class*,*n14 layer", + '14A1':"fraction of non cohesive sediment of class1,1n14 layer", + '14A2':"fraction of non cohesive sediment of class2,2n14 layer", + '14A3':"fraction of non cohesive sediment of class3,3n14 layer", + '14A4':"fraction of non cohesive sediment of class4,4n14 layer", + '14A5':"fraction of non cohesive sediment of class5,5n14 layer", + '14A6':"fraction of non cohesive sediment of class6,6n14 layer", + '14A7':"fraction of non cohesive sediment of class7,7n14 layer", + '14A8':"fraction of non cohesive sediment of class8,8n14 layer", + '14A9':"fraction of non cohesive sediment of class9,9n14 layer", + '14A10':"fraction of non cohesive sediment of class10,10n14 layer", + '14A11':"fraction of non cohesive sediment of class11,11n14 layer", + '14A12':"fraction of non cohesive sediment of class12,12n14 layer", + '14A13':"fraction of non cohesive sediment of class13,13n14 layer", + '14A14':"fraction of non cohesive sediment of class14,14n14 layer", + '14A15':"fraction of non cohesive sediment of class15,15n14 layer", + '14A16':"fraction of non cohesive sediment of class16,16n14 layer", + '14A17':"fraction of non cohesive sediment of class17,17n14 layer", + '14A18':"fraction of non cohesive sediment of class18,18n14 layer", + '14A19':"fraction of non cohesive sediment of class19,19n14 layer", + '14A**':"fraction of non cohesive sediment of class**,**n14 layer", + '15A*':"fraction of non cohesive sediment of class*,*n15 layer", + '15A1':"fraction of non cohesive sediment of class1,1n15 layer", + '15A2':"fraction of non cohesive sediment of class2,2n15 layer", + '15A3':"fraction of non cohesive sediment of class3,3n15 layer", + '15A4':"fraction of non cohesive sediment of class4,4n15 layer", + '15A5':"fraction of non cohesive sediment of class5,5n15 layer", + '15A6':"fraction of non cohesive sediment of class6,6n15 layer", + '15A7':"fraction of non cohesive sediment of class7,7n15 layer", + '15A8':"fraction of non cohesive sediment of class8,8n15 layer", + '15A9':"fraction of non cohesive sediment of class9,9n15 layer", + '15A10':"fraction of non cohesive sediment of class10,10n15 layer", + '15A11':"fraction of non cohesive sediment of class11,11n15 layer", + '15A12':"fraction of non cohesive sediment of class12,12n15 layer", + '15A13':"fraction of non cohesive sediment of class13,13n15 layer", + '15A14':"fraction of non cohesive sediment of class14,14n15 layer", + '15A15':"fraction of non cohesive sediment of class15,15n15 layer", + '15A16':"fraction of non cohesive sediment of class16,16n15 layer", + '15A17':"fraction of non cohesive sediment of class17,17n15 layer", + '15A18':"fraction of non cohesive sediment of class18,18n15 layer", + '15A19':"fraction of non cohesive sediment of class19,19n15 layer", + '15A**':"fraction of non cohesive sediment of class**,**n15 layer", + '16A*':"fraction of non cohesive sediment of class*,*n16 layer", + '16A1':"fraction of non cohesive sediment of class1,1n16 layer", + '16A2':"fraction of non cohesive sediment of class2,2n16 layer", + '16A3':"fraction of non cohesive sediment of class3,3n16 layer", + '16A4':"fraction of non cohesive sediment of class4,4n16 layer", + '16A5':"fraction of non cohesive sediment of class5,5n16 layer", + '16A6':"fraction of non cohesive sediment of class6,6n16 layer", + '16A7':"fraction of non cohesive sediment of class7,7n16 layer", + '16A8':"fraction of non cohesive sediment of class8,8n16 layer", + '16A9':"fraction of non cohesive sediment of class9,9n16 layer", + '16A10':"fraction of non cohesive sediment of class10,10n16 layer", + '16A11':"fraction of non cohesive sediment of class11,11n16 layer", + '16A12':"fraction of non cohesive sediment of class12,12n16 layer", + '16A13':"fraction of non cohesive sediment of class13,13n16 layer", + '16A14':"fraction of non cohesive sediment of class14,14n16 layer", + '16A15':"fraction of non cohesive sediment of class15,15n16 layer", + '16A16':"fraction of non cohesive sediment of class16,16n16 layer", + '16A17':"fraction of non cohesive sediment of class17,17n16 layer", + '16A18':"fraction of non cohesive sediment of class18,18n16 layer", + '16A19':"fraction of non cohesive sediment of class19,19n16 layer", + '16A**':"fraction of non cohesive sediment of class**,**n16 layer", + '17A*':"fraction of non cohesive sediment of class*,*n17 layer", + '17A1':"fraction of non cohesive sediment of class1,1n17 layer", + '17A2':"fraction of non cohesive sediment of class2,2n17 layer", + '17A3':"fraction of non cohesive sediment of class3,3n17 layer", + '17A4':"fraction of non cohesive sediment of class4,4n17 layer", + '17A5':"fraction of non cohesive sediment of class5,5n17 layer", + '17A6':"fraction of non cohesive sediment of class6,6n17 layer", + '17A7':"fraction of non cohesive sediment of class7,7n17 layer", + '17A8':"fraction of non cohesive sediment of class8,8n17 layer", + '17A9':"fraction of non cohesive sediment of class9,9n17 layer", + '17A10':"fraction of non cohesive sediment of class10,10n17 layer", + '17A11':"fraction of non cohesive sediment of class11,11n17 layer", + '17A12':"fraction of non cohesive sediment of class12,12n17 layer", + '17A13':"fraction of non cohesive sediment of class13,13n17 layer", + '17A14':"fraction of non cohesive sediment of class14,14n17 layer", + '17A15':"fraction of non cohesive sediment of class15,15n17 layer", + '17A16':"fraction of non cohesive sediment of class16,16n17 layer", + '17A17':"fraction of non cohesive sediment of class17,17n17 layer", + '17A18':"fraction of non cohesive sediment of class18,18n17 layer", + '17A19':"fraction of non cohesive sediment of class19,19n17 layer", + '17A**':"fraction of non cohesive sediment of class**,**n17 layer", + '18A*':"fraction of non cohesive sediment of class*,*n18 layer", + '18A1':"fraction of non cohesive sediment of class1,1n18 layer", + '18A2':"fraction of non cohesive sediment of class2,2n18 layer", + '18A3':"fraction of non cohesive sediment of class3,3n18 layer", + '18A4':"fraction of non cohesive sediment of class4,4n18 layer", + '18A5':"fraction of non cohesive sediment of class5,5n18 layer", + '18A6':"fraction of non cohesive sediment of class6,6n18 layer", + '18A7':"fraction of non cohesive sediment of class7,7n18 layer", + '18A8':"fraction of non cohesive sediment of class8,8n18 layer", + '18A9':"fraction of non cohesive sediment of class9,9n18 layer", + '18A10':"fraction of non cohesive sediment of class10,10n18 layer", + '18A11':"fraction of non cohesive sediment of class11,11n18 layer", + '18A12':"fraction of non cohesive sediment of class12,12n18 layer", + '18A13':"fraction of non cohesive sediment of class13,13n18 layer", + '18A14':"fraction of non cohesive sediment of class14,14n18 layer", + '18A15':"fraction of non cohesive sediment of class15,15n18 layer", + '18A16':"fraction of non cohesive sediment of class16,16n18 layer", + '18A17':"fraction of non cohesive sediment of class17,17n18 layer", + '18A18':"fraction of non cohesive sediment of class18,18n18 layer", + '18A19':"fraction of non cohesive sediment of class19,19n18 layer", + '18A**':"fraction of non cohesive sediment of class**,**n18 layer", + '19A*':"fraction of non cohesive sediment of class*,*n19 layer", + '19A1':"fraction of non cohesive sediment of class1,1n19 layer", + '19A2':"fraction of non cohesive sediment of class2,2n19 layer", + '19A3':"fraction of non cohesive sediment of class3,3n19 layer", + '19A4':"fraction of non cohesive sediment of class4,4n19 layer", + '19A5':"fraction of non cohesive sediment of class5,5n19 layer", + '19A6':"fraction of non cohesive sediment of class6,6n19 layer", + '19A7':"fraction of non cohesive sediment of class7,7n19 layer", + '19A8':"fraction of non cohesive sediment of class8,8n19 layer", + '19A9':"fraction of non cohesive sediment of class9,9n19 layer", + '19A10':"fraction of non cohesive sediment of class10,10n19 layer", + '19A11':"fraction of non cohesive sediment of class11,11n19 layer", + '19A12':"fraction of non cohesive sediment of class12,12n19 layer", + '19A13':"fraction of non cohesive sediment of class13,13n19 layer", + '19A14':"fraction of non cohesive sediment of class14,14n19 layer", + '19A15':"fraction of non cohesive sediment of class15,15n19 layer", + '19A16':"fraction of non cohesive sediment of class16,16n19 layer", + '19A17':"fraction of non cohesive sediment of class17,17n19 layer", + '19A18':"fraction of non cohesive sediment of class18,18n19 layer", + '19A19':"fraction of non cohesive sediment of class19,19n19 layer", + '19A**':"fraction of non cohesive sediment of class**,**n19 layer", + '**A*':"fraction of non cohesive sediment of class*,*n** layer", + '**A1':"fraction of non cohesive sediment of class1,1n** layer", + '**A2':"fraction of non cohesive sediment of class2,2n** layer", + '**A3':"fraction of non cohesive sediment of class3,3n** layer", + '**A4':"fraction of non cohesive sediment of class4,4n** layer", + '**A5':"fraction of non cohesive sediment of class5,5n** layer", + '**A6':"fraction of non cohesive sediment of class6,6n** layer", + '**A7':"fraction of non cohesive sediment of class7,7n** layer", + '**A8':"fraction of non cohesive sediment of class8,8n** layer", + '**A9':"fraction of non cohesive sediment of class9,9n** layer", + '**A10':"fraction of non cohesive sediment of class10,10n** layer", + '**A11':"fraction of non cohesive sediment of class11,11n** layer", + '**A12':"fraction of non cohesive sediment of class12,12n** layer", + '**A13':"fraction of non cohesive sediment of class13,13n** layer", + '**A14':"fraction of non cohesive sediment of class14,14n** layer", + '**A15':"fraction of non cohesive sediment of class15,15n** layer", + '**A16':"fraction of non cohesive sediment of class16,16n** layer", + '**A17':"fraction of non cohesive sediment of class17,17n** layer", + '**A18':"fraction of non cohesive sediment of class18,18n** layer", + '**A19':"fraction of non cohesive sediment of class19,19n** layer", + '**A**':"fraction of non cohesive sediment of class**,**n** layer", + 'QS*':"bed load transport rate of sediment of class*", + 'QS1':"bed load transport rate of sediment of class1", + 'QS2':"bed load transport rate of sediment of class2", + 'QS3':"bed load transport rate of sediment of class3", + 'QS4':"bed load transport rate of sediment of class4", + 'QS5':"bed load transport rate of sediment of class5", + 'QS6':"bed load transport rate of sediment of class6", + 'QS7':"bed load transport rate of sediment of class7", + 'QS8':"bed load transport rate of sediment of class8", + 'QS9':"bed load transport rate of sediment of class9", + 'QS10':"bed load transport rate of sediment of class10", + 'QS11':"bed load transport rate of sediment of class11", + 'QS12':"bed load transport rate of sediment of class12", + 'QS13':"bed load transport rate of sediment of class13", + 'QS14':"bed load transport rate of sediment of class14", + 'QS15':"bed load transport rate of sediment of class15", + 'QS16':"bed load transport rate of sediment of class16", + 'QS17':"bed load transport rate of sediment of class17", + 'QS18':"bed load transport rate of sediment of class18", + 'QS19':"bed load transport rate of sediment of class19", + 'QS**':"bed load transport rate of sediment of class**", + 'QS*':"bed load transport rate of sediment of class*", + 'QS1':"bed load transport rate of sediment of class1", + 'QS2':"bed load transport rate of sediment of class2", + 'QS3':"bed load transport rate of sediment of class3", + 'QS4':"bed load transport rate of sediment of class4", + 'QS5':"bed load transport rate of sediment of class5", + 'QS6':"bed load transport rate of sediment of class6", + 'QS7':"bed load transport rate of sediment of class7", + 'QS8':"bed load transport rate of sediment of class8", + 'QS9':"bed load transport rate of sediment of class9", + 'QS10':"bed load transport rate of sediment of class10", + 'QS11':"bed load transport rate of sediment of class11", + 'QS12':"bed load transport rate of sediment of class12", + 'QS13':"bed load transport rate of sediment of class13", + 'QS14':"bed load transport rate of sediment of class14", + 'QS15':"bed load transport rate of sediment of class15", + 'QS16':"bed load transport rate of sediment of class16", + 'QS17':"bed load transport rate of sediment of class17", + 'QS18':"bed load transport rate of sediment of class18", + 'QS19':"bed load transport rate of sediment of class19", + 'QS**':"bed load transport rate of sediment of class**", + 'QS*':"bed load transport rate of sediment of class*", + 'QS1':"bed load transport rate of sediment of class1", + 'QS2':"bed load transport rate of sediment of class2", + 'QS3':"bed load transport rate of sediment of class3", + 'QS4':"bed load transport rate of sediment of class4", + 'QS5':"bed load transport rate of sediment of class5", + 'QS6':"bed load transport rate of sediment of class6", + 'QS7':"bed load transport rate of sediment of class7", + 'QS8':"bed load transport rate of sediment of class8", + 'QS9':"bed load transport rate of sediment of class9", + 'QS10':"bed load transport rate of sediment of class10", + 'QS11':"bed load transport rate of sediment of class11", + 'QS12':"bed load transport rate of sediment of class12", + 'QS13':"bed load transport rate of sediment of class13", + 'QS14':"bed load transport rate of sediment of class14", + 'QS15':"bed load transport rate of sediment of class15", + 'QS16':"bed load transport rate of sediment of class16", + 'QS17':"bed load transport rate of sediment of class17", + 'QS18':"bed load transport rate of sediment of class18", + 'QS19':"bed load transport rate of sediment of class19", + 'QS**':"bed load transport rate of sediment of class**", + 'QS*':"bed load transport rate of sediment of class*", + 'QS1':"bed load transport rate of sediment of class1", + 'QS2':"bed load transport rate of sediment of class2", + 'QS3':"bed load transport rate of sediment of class3", + 'QS4':"bed load transport rate of sediment of class4", + 'QS5':"bed load transport rate of sediment of class5", + 'QS6':"bed load transport rate of sediment of class6", + 'QS7':"bed load transport rate of sediment of class7", + 'QS8':"bed load transport rate of sediment of class8", + 'QS9':"bed load transport rate of sediment of class9", + 'QS10':"bed load transport rate of sediment of class10", + 'QS11':"bed load transport rate of sediment of class11", + 'QS12':"bed load transport rate of sediment of class12", + 'QS13':"bed load transport rate of sediment of class13", + 'QS14':"bed load transport rate of sediment of class14", + 'QS15':"bed load transport rate of sediment of class15", + 'QS16':"bed load transport rate of sediment of class16", + 'QS17':"bed load transport rate of sediment of class17", + 'QS18':"bed load transport rate of sediment of class18", + 'QS19':"bed load transport rate of sediment of class19", + 'QS**':"bed load transport rate of sediment of class**", + 'QS*':"bed load transport rate of sediment of class*", + 'QS1':"bed load transport rate of sediment of class1", + 'QS2':"bed load transport rate of sediment of class2", + 'QS3':"bed load transport rate of sediment of class3", + 'QS4':"bed load transport rate of sediment of class4", + 'QS5':"bed load transport rate of sediment of class5", + 'QS6':"bed load transport rate of sediment of class6", + 'QS7':"bed load transport rate of sediment of class7", + 'QS8':"bed load transport rate of sediment of class8", + 'QS9':"bed load transport rate of sediment of class9", + 'QS10':"bed load transport rate of sediment of class10", + 'QS11':"bed load transport rate of sediment of class11", + 'QS12':"bed load transport rate of sediment of class12", + 'QS13':"bed load transport rate of sediment of class13", + 'QS14':"bed load transport rate of sediment of class14", + 'QS15':"bed load transport rate of sediment of class15", + 'QS16':"bed load transport rate of sediment of class16", + 'QS17':"bed load transport rate of sediment of class17", + 'QS18':"bed load transport rate of sediment of class18", + 'QS19':"bed load transport rate of sediment of class19", + 'QS**':"bed load transport rate of sediment of class**", + 'QS*':"bed load transport rate of sediment of class*", + 'QS1':"bed load transport rate of sediment of class1", + 'QS2':"bed load transport rate of sediment of class2", + 'QS3':"bed load transport rate of sediment of class3", + 'QS4':"bed load transport rate of sediment of class4", + 'QS5':"bed load transport rate of sediment of class5", + 'QS6':"bed load transport rate of sediment of class6", + 'QS7':"bed load transport rate of sediment of class7", + 'QS8':"bed load transport rate of sediment of class8", + 'QS9':"bed load transport rate of sediment of class9", + 'QS10':"bed load transport rate of sediment of class10", + 'QS11':"bed load transport rate of sediment of class11", + 'QS12':"bed load transport rate of sediment of class12", + 'QS13':"bed load transport rate of sediment of class13", + 'QS14':"bed load transport rate of sediment of class14", + 'QS15':"bed load transport rate of sediment of class15", + 'QS16':"bed load transport rate of sediment of class16", + 'QS17':"bed load transport rate of sediment of class17", + 'QS18':"bed load transport rate of sediment of class18", + 'QS19':"bed load transport rate of sediment of class19", + 'QS**':"bed load transport rate of sediment of class**", + 'QS*':"bed load transport rate of sediment of class*", + 'QS1':"bed load transport rate of sediment of class1", + 'QS2':"bed load transport rate of sediment of class2", + 'QS3':"bed load transport rate of sediment of class3", + 'QS4':"bed load transport rate of sediment of class4", + 'QS5':"bed load transport rate of sediment of class5", + 'QS6':"bed load transport rate of sediment of class6", + 'QS7':"bed load transport rate of sediment of class7", + 'QS8':"bed load transport rate of sediment of class8", + 'QS9':"bed load transport rate of sediment of class9", + 'QS10':"bed load transport rate of sediment of class10", + 'QS11':"bed load transport rate of sediment of class11", + 'QS12':"bed load transport rate of sediment of class12", + 'QS13':"bed load transport rate of sediment of class13", + 'QS14':"bed load transport rate of sediment of class14", + 'QS15':"bed load transport rate of sediment of class15", + 'QS16':"bed load transport rate of sediment of class16", + 'QS17':"bed load transport rate of sediment of class17", + 'QS18':"bed load transport rate of sediment of class18", + 'QS19':"bed load transport rate of sediment of class19", + 'QS**':"bed load transport rate of sediment of class**", + 'QS*':"bed load transport rate of sediment of class*", + 'QS1':"bed load transport rate of sediment of class1", + 'QS2':"bed load transport rate of sediment of class2", + 'QS3':"bed load transport rate of sediment of class3", + 'QS4':"bed load transport rate of sediment of class4", + 'QS5':"bed load transport rate of sediment of class5", + 'QS6':"bed load transport rate of sediment of class6", + 'QS7':"bed load transport rate of sediment of class7", + 'QS8':"bed load transport rate of sediment of class8", + 'QS9':"bed load transport rate of sediment of class9", + 'QS10':"bed load transport rate of sediment of class10", + 'QS11':"bed load transport rate of sediment of class11", + 'QS12':"bed load transport rate of sediment of class12", + 'QS13':"bed load transport rate of sediment of class13", + 'QS14':"bed load transport rate of sediment of class14", + 'QS15':"bed load transport rate of sediment of class15", + 'QS16':"bed load transport rate of sediment of class16", + 'QS17':"bed load transport rate of sediment of class17", + 'QS18':"bed load transport rate of sediment of class18", + 'QS19':"bed load transport rate of sediment of class19", + 'QS**':"bed load transport rate of sediment of class**", + 'QS*':"bed load transport rate of sediment of class*", + 'QS1':"bed load transport rate of sediment of class1", + 'QS2':"bed load transport rate of sediment of class2", + 'QS3':"bed load transport rate of sediment of class3", + 'QS4':"bed load transport rate of sediment of class4", + 'QS5':"bed load transport rate of sediment of class5", + 'QS6':"bed load transport rate of sediment of class6", + 'QS7':"bed load transport rate of sediment of class7", + 'QS8':"bed load transport rate of sediment of class8", + 'QS9':"bed load transport rate of sediment of class9", + 'QS10':"bed load transport rate of sediment of class10", + 'QS11':"bed load transport rate of sediment of class11", + 'QS12':"bed load transport rate of sediment of class12", + 'QS13':"bed load transport rate of sediment of class13", + 'QS14':"bed load transport rate of sediment of class14", + 'QS15':"bed load transport rate of sediment of class15", + 'QS16':"bed load transport rate of sediment of class16", + 'QS17':"bed load transport rate of sediment of class17", + 'QS18':"bed load transport rate of sediment of class18", + 'QS19':"bed load transport rate of sediment of class19", + 'QS**':"bed load transport rate of sediment of class**", + 'QS*':"bed load transport rate of sediment of class*", + 'QS1':"bed load transport rate of sediment of class1", + 'QS2':"bed load transport rate of sediment of class2", + 'QS3':"bed load transport rate of sediment of class3", + 'QS4':"bed load transport rate of sediment of class4", + 'QS5':"bed load transport rate of sediment of class5", + 'QS6':"bed load transport rate of sediment of class6", + 'QS7':"bed load transport rate of sediment of class7", + 'QS8':"bed load transport rate of sediment of class8", + 'QS9':"bed load transport rate of sediment of class9", + 'QS10':"bed load transport rate of sediment of class10", + 'QS11':"bed load transport rate of sediment of class11", + 'QS12':"bed load transport rate of sediment of class12", + 'QS13':"bed load transport rate of sediment of class13", + 'QS14':"bed load transport rate of sediment of class14", + 'QS15':"bed load transport rate of sediment of class15", + 'QS16':"bed load transport rate of sediment of class16", + 'QS17':"bed load transport rate of sediment of class17", + 'QS18':"bed load transport rate of sediment of class18", + 'QS19':"bed load transport rate of sediment of class19", + 'QS**':"bed load transport rate of sediment of class**", + 'QS*':"bed load transport rate of sediment of class*", + 'QS1':"bed load transport rate of sediment of class1", + 'QS2':"bed load transport rate of sediment of class2", + 'QS3':"bed load transport rate of sediment of class3", + 'QS4':"bed load transport rate of sediment of class4", + 'QS5':"bed load transport rate of sediment of class5", + 'QS6':"bed load transport rate of sediment of class6", + 'QS7':"bed load transport rate of sediment of class7", + 'QS8':"bed load transport rate of sediment of class8", + 'QS9':"bed load transport rate of sediment of class9", + 'QS10':"bed load transport rate of sediment of class10", + 'QS11':"bed load transport rate of sediment of class11", + 'QS12':"bed load transport rate of sediment of class12", + 'QS13':"bed load transport rate of sediment of class13", + 'QS14':"bed load transport rate of sediment of class14", + 'QS15':"bed load transport rate of sediment of class15", + 'QS16':"bed load transport rate of sediment of class16", + 'QS17':"bed load transport rate of sediment of class17", + 'QS18':"bed load transport rate of sediment of class18", + 'QS19':"bed load transport rate of sediment of class19", + 'QS**':"bed load transport rate of sediment of class**", + 'QS*':"bed load transport rate of sediment of class*", + 'QS1':"bed load transport rate of sediment of class1", + 'QS2':"bed load transport rate of sediment of class2", + 'QS3':"bed load transport rate of sediment of class3", + 'QS4':"bed load transport rate of sediment of class4", + 'QS5':"bed load transport rate of sediment of class5", + 'QS6':"bed load transport rate of sediment of class6", + 'QS7':"bed load transport rate of sediment of class7", + 'QS8':"bed load transport rate of sediment of class8", + 'QS9':"bed load transport rate of sediment of class9", + 'QS10':"bed load transport rate of sediment of class10", + 'QS11':"bed load transport rate of sediment of class11", + 'QS12':"bed load transport rate of sediment of class12", + 'QS13':"bed load transport rate of sediment of class13", + 'QS14':"bed load transport rate of sediment of class14", + 'QS15':"bed load transport rate of sediment of class15", + 'QS16':"bed load transport rate of sediment of class16", + 'QS17':"bed load transport rate of sediment of class17", + 'QS18':"bed load transport rate of sediment of class18", + 'QS19':"bed load transport rate of sediment of class19", + 'QS**':"bed load transport rate of sediment of class**", + 'QS*':"bed load transport rate of sediment of class*", + 'QS1':"bed load transport rate of sediment of class1", + 'QS2':"bed load transport rate of sediment of class2", + 'QS3':"bed load transport rate of sediment of class3", + 'QS4':"bed load transport rate of sediment of class4", + 'QS5':"bed load transport rate of sediment of class5", + 'QS6':"bed load transport rate of sediment of class6", + 'QS7':"bed load transport rate of sediment of class7", + 'QS8':"bed load transport rate of sediment of class8", + 'QS9':"bed load transport rate of sediment of class9", + 'QS10':"bed load transport rate of sediment of class10", + 'QS11':"bed load transport rate of sediment of class11", + 'QS12':"bed load transport rate of sediment of class12", + 'QS13':"bed load transport rate of sediment of class13", + 'QS14':"bed load transport rate of sediment of class14", + 'QS15':"bed load transport rate of sediment of class15", + 'QS16':"bed load transport rate of sediment of class16", + 'QS17':"bed load transport rate of sediment of class17", + 'QS18':"bed load transport rate of sediment of class18", + 'QS19':"bed load transport rate of sediment of class19", + 'QS**':"bed load transport rate of sediment of class**", + 'QS*':"bed load transport rate of sediment of class*", + 'QS1':"bed load transport rate of sediment of class1", + 'QS2':"bed load transport rate of sediment of class2", + 'QS3':"bed load transport rate of sediment of class3", + 'QS4':"bed load transport rate of sediment of class4", + 'QS5':"bed load transport rate of sediment of class5", + 'QS6':"bed load transport rate of sediment of class6", + 'QS7':"bed load transport rate of sediment of class7", + 'QS8':"bed load transport rate of sediment of class8", + 'QS9':"bed load transport rate of sediment of class9", + 'QS10':"bed load transport rate of sediment of class10", + 'QS11':"bed load transport rate of sediment of class11", + 'QS12':"bed load transport rate of sediment of class12", + 'QS13':"bed load transport rate of sediment of class13", + 'QS14':"bed load transport rate of sediment of class14", + 'QS15':"bed load transport rate of sediment of class15", + 'QS16':"bed load transport rate of sediment of class16", + 'QS17':"bed load transport rate of sediment of class17", + 'QS18':"bed load transport rate of sediment of class18", + 'QS19':"bed load transport rate of sediment of class19", + 'QS**':"bed load transport rate of sediment of class**", + 'QS*':"bed load transport rate of sediment of class*", + 'QS1':"bed load transport rate of sediment of class1", + 'QS2':"bed load transport rate of sediment of class2", + 'QS3':"bed load transport rate of sediment of class3", + 'QS4':"bed load transport rate of sediment of class4", + 'QS5':"bed load transport rate of sediment of class5", + 'QS6':"bed load transport rate of sediment of class6", + 'QS7':"bed load transport rate of sediment of class7", + 'QS8':"bed load transport rate of sediment of class8", + 'QS9':"bed load transport rate of sediment of class9", + 'QS10':"bed load transport rate of sediment of class10", + 'QS11':"bed load transport rate of sediment of class11", + 'QS12':"bed load transport rate of sediment of class12", + 'QS13':"bed load transport rate of sediment of class13", + 'QS14':"bed load transport rate of sediment of class14", + 'QS15':"bed load transport rate of sediment of class15", + 'QS16':"bed load transport rate of sediment of class16", + 'QS17':"bed load transport rate of sediment of class17", + 'QS18':"bed load transport rate of sediment of class18", + 'QS19':"bed load transport rate of sediment of class19", + 'QS**':"bed load transport rate of sediment of class**", + 'QS*':"bed load transport rate of sediment of class*", + 'QS1':"bed load transport rate of sediment of class1", + 'QS2':"bed load transport rate of sediment of class2", + 'QS3':"bed load transport rate of sediment of class3", + 'QS4':"bed load transport rate of sediment of class4", + 'QS5':"bed load transport rate of sediment of class5", + 'QS6':"bed load transport rate of sediment of class6", + 'QS7':"bed load transport rate of sediment of class7", + 'QS8':"bed load transport rate of sediment of class8", + 'QS9':"bed load transport rate of sediment of class9", + 'QS10':"bed load transport rate of sediment of class10", + 'QS11':"bed load transport rate of sediment of class11", + 'QS12':"bed load transport rate of sediment of class12", + 'QS13':"bed load transport rate of sediment of class13", + 'QS14':"bed load transport rate of sediment of class14", + 'QS15':"bed load transport rate of sediment of class15", + 'QS16':"bed load transport rate of sediment of class16", + 'QS17':"bed load transport rate of sediment of class17", + 'QS18':"bed load transport rate of sediment of class18", + 'QS19':"bed load transport rate of sediment of class19", + 'QS**':"bed load transport rate of sediment of class**", + 'QS*':"bed load transport rate of sediment of class*", + 'QS1':"bed load transport rate of sediment of class1", + 'QS2':"bed load transport rate of sediment of class2", + 'QS3':"bed load transport rate of sediment of class3", + 'QS4':"bed load transport rate of sediment of class4", + 'QS5':"bed load transport rate of sediment of class5", + 'QS6':"bed load transport rate of sediment of class6", + 'QS7':"bed load transport rate of sediment of class7", + 'QS8':"bed load transport rate of sediment of class8", + 'QS9':"bed load transport rate of sediment of class9", + 'QS10':"bed load transport rate of sediment of class10", + 'QS11':"bed load transport rate of sediment of class11", + 'QS12':"bed load transport rate of sediment of class12", + 'QS13':"bed load transport rate of sediment of class13", + 'QS14':"bed load transport rate of sediment of class14", + 'QS15':"bed load transport rate of sediment of class15", + 'QS16':"bed load transport rate of sediment of class16", + 'QS17':"bed load transport rate of sediment of class17", + 'QS18':"bed load transport rate of sediment of class18", + 'QS19':"bed load transport rate of sediment of class19", + 'QS**':"bed load transport rate of sediment of class**", + 'QS*':"bed load transport rate of sediment of class*", + 'QS1':"bed load transport rate of sediment of class1", + 'QS2':"bed load transport rate of sediment of class2", + 'QS3':"bed load transport rate of sediment of class3", + 'QS4':"bed load transport rate of sediment of class4", + 'QS5':"bed load transport rate of sediment of class5", + 'QS6':"bed load transport rate of sediment of class6", + 'QS7':"bed load transport rate of sediment of class7", + 'QS8':"bed load transport rate of sediment of class8", + 'QS9':"bed load transport rate of sediment of class9", + 'QS10':"bed load transport rate of sediment of class10", + 'QS11':"bed load transport rate of sediment of class11", + 'QS12':"bed load transport rate of sediment of class12", + 'QS13':"bed load transport rate of sediment of class13", + 'QS14':"bed load transport rate of sediment of class14", + 'QS15':"bed load transport rate of sediment of class15", + 'QS16':"bed load transport rate of sediment of class16", + 'QS17':"bed load transport rate of sediment of class17", + 'QS18':"bed load transport rate of sediment of class18", + 'QS19':"bed load transport rate of sediment of class19", + 'QS**':"bed load transport rate of sediment of class**", + 'QS*':"bed load transport rate of sediment of class*", + 'QS1':"bed load transport rate of sediment of class1", + 'QS2':"bed load transport rate of sediment of class2", + 'QS3':"bed load transport rate of sediment of class3", + 'QS4':"bed load transport rate of sediment of class4", + 'QS5':"bed load transport rate of sediment of class5", + 'QS6':"bed load transport rate of sediment of class6", + 'QS7':"bed load transport rate of sediment of class7", + 'QS8':"bed load transport rate of sediment of class8", + 'QS9':"bed load transport rate of sediment of class9", + 'QS10':"bed load transport rate of sediment of class10", + 'QS11':"bed load transport rate of sediment of class11", + 'QS12':"bed load transport rate of sediment of class12", + 'QS13':"bed load transport rate of sediment of class13", + 'QS14':"bed load transport rate of sediment of class14", + 'QS15':"bed load transport rate of sediment of class15", + 'QS16':"bed load transport rate of sediment of class16", + 'QS17':"bed load transport rate of sediment of class17", + 'QS18':"bed load transport rate of sediment of class18", + 'QS19':"bed load transport rate of sediment of class19", + 'QS**':"bed load transport rate of sediment of class**", + 'QS*':"bed load transport rate of sediment of class*", + 'QS1':"bed load transport rate of sediment of class1", + 'QS2':"bed load transport rate of sediment of class2", + 'QS3':"bed load transport rate of sediment of class3", + 'QS4':"bed load transport rate of sediment of class4", + 'QS5':"bed load transport rate of sediment of class5", + 'QS6':"bed load transport rate of sediment of class6", + 'QS7':"bed load transport rate of sediment of class7", + 'QS8':"bed load transport rate of sediment of class8", + 'QS9':"bed load transport rate of sediment of class9", + 'QS10':"bed load transport rate of sediment of class10", + 'QS11':"bed load transport rate of sediment of class11", + 'QS12':"bed load transport rate of sediment of class12", + 'QS13':"bed load transport rate of sediment of class13", + 'QS14':"bed load transport rate of sediment of class14", + 'QS15':"bed load transport rate of sediment of class15", + 'QS16':"bed load transport rate of sediment of class16", + 'QS17':"bed load transport rate of sediment of class17", + 'QS18':"bed load transport rate of sediment of class18", + 'QS19':"bed load transport rate of sediment of class19", + 'QS**':"bed load transport rate of sediment of class**", + 'QS*':"bed load transport rate of sediment of class*", + 'QS1':"bed load transport rate of sediment of class1", + 'QS2':"bed load transport rate of sediment of class2", + 'QS3':"bed load transport rate of sediment of class3", + 'QS4':"bed load transport rate of sediment of class4", + 'QS5':"bed load transport rate of sediment of class5", + 'QS6':"bed load transport rate of sediment of class6", + 'QS7':"bed load transport rate of sediment of class7", + 'QS8':"bed load transport rate of sediment of class8", + 'QS9':"bed load transport rate of sediment of class9", + 'QS10':"bed load transport rate of sediment of class10", + 'QS11':"bed load transport rate of sediment of class11", + 'QS12':"bed load transport rate of sediment of class12", + 'QS13':"bed load transport rate of sediment of class13", + 'QS14':"bed load transport rate of sediment of class14", + 'QS15':"bed load transport rate of sediment of class15", + 'QS16':"bed load transport rate of sediment of class16", + 'QS17':"bed load transport rate of sediment of class17", + 'QS18':"bed load transport rate of sediment of class18", + 'QS19':"bed load transport rate of sediment of class19", + 'QS**':"bed load transport rate of sediment of class**", + 'kES':"thicknes of bed layer k", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", 'CSi':"concentration for class i", 'A':"supplementary variable A", 'G':"supplementary variable G", @@ -55,36 +1374,5748 @@ TelemacdicoEn = { 'MU':"Skin friction correction factor", 'D50':"Mean grain diameter", 'UWB':"wave orbital velocity (m/s)", - '1Ai':"fraction of non cohesive sediment of class i, in 1st layer", - '2Ai':"fraction of non cohesive sediment of class i, in 2nd layer", - 'kAi':"fraction of non cohesive sediment of class i, in k layer", - 'QSi':"solid transport load of class i", - 'CSi':"mass concentration of class i", - 'C2DSi':"mass concentration of class i for 2D graphic printouts (only f, - 'SVX':"sediment viscosity along x axis (m2/s) - only 3D", - 'SVY':"sediment viscosity along y axis (m2/s) - only 3D", - 'SVZ':"sediment viscosity along z axis (m2/s) - only 3D", + '*A*':"fraction of non cohesive sediment of class*,*n* layer", + '*A1':"fraction of non cohesive sediment of class1,1n* layer", + '*A2':"fraction of non cohesive sediment of class2,2n* layer", + '*A3':"fraction of non cohesive sediment of class3,3n* layer", + '*A4':"fraction of non cohesive sediment of class4,4n* layer", + '*A5':"fraction of non cohesive sediment of class5,5n* layer", + '*A6':"fraction of non cohesive sediment of class6,6n* layer", + '*A7':"fraction of non cohesive sediment of class7,7n* layer", + '*A8':"fraction of non cohesive sediment of class8,8n* layer", + '*A9':"fraction of non cohesive sediment of class9,9n* layer", + '*A10':"fraction of non cohesive sediment of class10,10n* layer", + '*A11':"fraction of non cohesive sediment of class11,11n* layer", + '*A12':"fraction of non cohesive sediment of class12,12n* layer", + '*A13':"fraction of non cohesive sediment of class13,13n* layer", + '*A14':"fraction of non cohesive sediment of class14,14n* layer", + '*A15':"fraction of non cohesive sediment of class15,15n* layer", + '*A16':"fraction of non cohesive sediment of class16,16n* layer", + '*A17':"fraction of non cohesive sediment of class17,17n* layer", + '*A18':"fraction of non cohesive sediment of class18,18n* layer", + '*A19':"fraction of non cohesive sediment of class19,19n* layer", + '*A**':"fraction of non cohesive sediment of class**,**n* layer", + '1A*':"fraction of non cohesive sediment of class*,*n1 layer", + '1A1':"fraction of non cohesive sediment of class1,1n1 layer", + '1A2':"fraction of non cohesive sediment of class2,2n1 layer", + '1A3':"fraction of non cohesive sediment of class3,3n1 layer", + '1A4':"fraction of non cohesive sediment of class4,4n1 layer", + '1A5':"fraction of non cohesive sediment of class5,5n1 layer", + '1A6':"fraction of non cohesive sediment of class6,6n1 layer", + '1A7':"fraction of non cohesive sediment of class7,7n1 layer", + '1A8':"fraction of non cohesive sediment of class8,8n1 layer", + '1A9':"fraction of non cohesive sediment of class9,9n1 layer", + '1A10':"fraction of non cohesive sediment of class10,10n1 layer", + '1A11':"fraction of non cohesive sediment of class11,11n1 layer", + '1A12':"fraction of non cohesive sediment of class12,12n1 layer", + '1A13':"fraction of non cohesive sediment of class13,13n1 layer", + '1A14':"fraction of non cohesive sediment of class14,14n1 layer", + '1A15':"fraction of non cohesive sediment of class15,15n1 layer", + '1A16':"fraction of non cohesive sediment of class16,16n1 layer", + '1A17':"fraction of non cohesive sediment of class17,17n1 layer", + '1A18':"fraction of non cohesive sediment of class18,18n1 layer", + '1A19':"fraction of non cohesive sediment of class19,19n1 layer", + '1A**':"fraction of non cohesive sediment of class**,**n1 layer", + '2A*':"fraction of non cohesive sediment of class*,*n2 layer", + '2A1':"fraction of non cohesive sediment of class1,1n2 layer", + '2A2':"fraction of non cohesive sediment of class2,2n2 layer", + '2A3':"fraction of non cohesive sediment of class3,3n2 layer", + '2A4':"fraction of non cohesive sediment of class4,4n2 layer", + '2A5':"fraction of non cohesive sediment of class5,5n2 layer", + '2A6':"fraction of non cohesive sediment of class6,6n2 layer", + '2A7':"fraction of non cohesive sediment of class7,7n2 layer", + '2A8':"fraction of non cohesive sediment of class8,8n2 layer", + '2A9':"fraction of non cohesive sediment of class9,9n2 layer", + '2A10':"fraction of non cohesive sediment of class10,10n2 layer", + '2A11':"fraction of non cohesive sediment of class11,11n2 layer", + '2A12':"fraction of non cohesive sediment of class12,12n2 layer", + '2A13':"fraction of non cohesive sediment of class13,13n2 layer", + '2A14':"fraction of non cohesive sediment of class14,14n2 layer", + '2A15':"fraction of non cohesive sediment of class15,15n2 layer", + '2A16':"fraction of non cohesive sediment of class16,16n2 layer", + '2A17':"fraction of non cohesive sediment of class17,17n2 layer", + '2A18':"fraction of non cohesive sediment of class18,18n2 layer", + '2A19':"fraction of non cohesive sediment of class19,19n2 layer", + '2A**':"fraction of non cohesive sediment of class**,**n2 layer", + '3A*':"fraction of non cohesive sediment of class*,*n3 layer", + '3A1':"fraction of non cohesive sediment of class1,1n3 layer", + '3A2':"fraction of non cohesive sediment of class2,2n3 layer", + '3A3':"fraction of non cohesive sediment of class3,3n3 layer", + '3A4':"fraction of non cohesive sediment of class4,4n3 layer", + '3A5':"fraction of non cohesive sediment of class5,5n3 layer", + '3A6':"fraction of non cohesive sediment of class6,6n3 layer", + '3A7':"fraction of non cohesive sediment of class7,7n3 layer", + '3A8':"fraction of non cohesive sediment of class8,8n3 layer", + '3A9':"fraction of non cohesive sediment of class9,9n3 layer", + '3A10':"fraction of non cohesive sediment of class10,10n3 layer", + '3A11':"fraction of non cohesive sediment of class11,11n3 layer", + '3A12':"fraction of non cohesive sediment of class12,12n3 layer", + '3A13':"fraction of non cohesive sediment of class13,13n3 layer", + '3A14':"fraction of non cohesive sediment of class14,14n3 layer", + '3A15':"fraction of non cohesive sediment of class15,15n3 layer", + '3A16':"fraction of non cohesive sediment of class16,16n3 layer", + '3A17':"fraction of non cohesive sediment of class17,17n3 layer", + '3A18':"fraction of non cohesive sediment of class18,18n3 layer", + '3A19':"fraction of non cohesive sediment of class19,19n3 layer", + '3A**':"fraction of non cohesive sediment of class**,**n3 layer", + '4A*':"fraction of non cohesive sediment of class*,*n4 layer", + '4A1':"fraction of non cohesive sediment of class1,1n4 layer", + '4A2':"fraction of non cohesive sediment of class2,2n4 layer", + '4A3':"fraction of non cohesive sediment of class3,3n4 layer", + '4A4':"fraction of non cohesive sediment of class4,4n4 layer", + '4A5':"fraction of non cohesive sediment of class5,5n4 layer", + '4A6':"fraction of non cohesive sediment of class6,6n4 layer", + '4A7':"fraction of non cohesive sediment of class7,7n4 layer", + '4A8':"fraction of non cohesive sediment of class8,8n4 layer", + '4A9':"fraction of non cohesive sediment of class9,9n4 layer", + '4A10':"fraction of non cohesive sediment of class10,10n4 layer", + '4A11':"fraction of non cohesive sediment of class11,11n4 layer", + '4A12':"fraction of non cohesive sediment of class12,12n4 layer", + '4A13':"fraction of non cohesive sediment of class13,13n4 layer", + '4A14':"fraction of non cohesive sediment of class14,14n4 layer", + '4A15':"fraction of non cohesive sediment of class15,15n4 layer", + '4A16':"fraction of non cohesive sediment of class16,16n4 layer", + '4A17':"fraction of non cohesive sediment of class17,17n4 layer", + '4A18':"fraction of non cohesive sediment of class18,18n4 layer", + '4A19':"fraction of non cohesive sediment of class19,19n4 layer", + '4A**':"fraction of non cohesive sediment of class**,**n4 layer", + '5A*':"fraction of non cohesive sediment of class*,*n5 layer", + '5A1':"fraction of non cohesive sediment of class1,1n5 layer", + '5A2':"fraction of non cohesive sediment of class2,2n5 layer", + '5A3':"fraction of non cohesive sediment of class3,3n5 layer", + '5A4':"fraction of non cohesive sediment of class4,4n5 layer", + '5A5':"fraction of non cohesive sediment of class5,5n5 layer", + '5A6':"fraction of non cohesive sediment of class6,6n5 layer", + '5A7':"fraction of non cohesive sediment of class7,7n5 layer", + '5A8':"fraction of non cohesive sediment of class8,8n5 layer", + '5A9':"fraction of non cohesive sediment of class9,9n5 layer", + '5A10':"fraction of non cohesive sediment of class10,10n5 layer", + '5A11':"fraction of non cohesive sediment of class11,11n5 layer", + '5A12':"fraction of non cohesive sediment of class12,12n5 layer", + '5A13':"fraction of non cohesive sediment of class13,13n5 layer", + '5A14':"fraction of non cohesive sediment of class14,14n5 layer", + '5A15':"fraction of non cohesive sediment of class15,15n5 layer", + '5A16':"fraction of non cohesive sediment of class16,16n5 layer", + '5A17':"fraction of non cohesive sediment of class17,17n5 layer", + '5A18':"fraction of non cohesive sediment of class18,18n5 layer", + '5A19':"fraction of non cohesive sediment of class19,19n5 layer", + '5A**':"fraction of non cohesive sediment of class**,**n5 layer", + '6A*':"fraction of non cohesive sediment of class*,*n6 layer", + '6A1':"fraction of non cohesive sediment of class1,1n6 layer", + '6A2':"fraction of non cohesive sediment of class2,2n6 layer", + '6A3':"fraction of non cohesive sediment of class3,3n6 layer", + '6A4':"fraction of non cohesive sediment of class4,4n6 layer", + '6A5':"fraction of non cohesive sediment of class5,5n6 layer", + '6A6':"fraction of non cohesive sediment of class6,6n6 layer", + '6A7':"fraction of non cohesive sediment of class7,7n6 layer", + '6A8':"fraction of non cohesive sediment of class8,8n6 layer", + '6A9':"fraction of non cohesive sediment of class9,9n6 layer", + '6A10':"fraction of non cohesive sediment of class10,10n6 layer", + '6A11':"fraction of non cohesive sediment of class11,11n6 layer", + '6A12':"fraction of non cohesive sediment of class12,12n6 layer", + '6A13':"fraction of non cohesive sediment of class13,13n6 layer", + '6A14':"fraction of non cohesive sediment of class14,14n6 layer", + '6A15':"fraction of non cohesive sediment of class15,15n6 layer", + '6A16':"fraction of non cohesive sediment of class16,16n6 layer", + '6A17':"fraction of non cohesive sediment of class17,17n6 layer", + '6A18':"fraction of non cohesive sediment of class18,18n6 layer", + '6A19':"fraction of non cohesive sediment of class19,19n6 layer", + '6A**':"fraction of non cohesive sediment of class**,**n6 layer", + '7A*':"fraction of non cohesive sediment of class*,*n7 layer", + '7A1':"fraction of non cohesive sediment of class1,1n7 layer", + '7A2':"fraction of non cohesive sediment of class2,2n7 layer", + '7A3':"fraction of non cohesive sediment of class3,3n7 layer", + '7A4':"fraction of non cohesive sediment of class4,4n7 layer", + '7A5':"fraction of non cohesive sediment of class5,5n7 layer", + '7A6':"fraction of non cohesive sediment of class6,6n7 layer", + '7A7':"fraction of non cohesive sediment of class7,7n7 layer", + '7A8':"fraction of non cohesive sediment of class8,8n7 layer", + '7A9':"fraction of non cohesive sediment of class9,9n7 layer", + '7A10':"fraction of non cohesive sediment of class10,10n7 layer", + '7A11':"fraction of non cohesive sediment of class11,11n7 layer", + '7A12':"fraction of non cohesive sediment of class12,12n7 layer", + '7A13':"fraction of non cohesive sediment of class13,13n7 layer", + '7A14':"fraction of non cohesive sediment of class14,14n7 layer", + '7A15':"fraction of non cohesive sediment of class15,15n7 layer", + '7A16':"fraction of non cohesive sediment of class16,16n7 layer", + '7A17':"fraction of non cohesive sediment of class17,17n7 layer", + '7A18':"fraction of non cohesive sediment of class18,18n7 layer", + '7A19':"fraction of non cohesive sediment of class19,19n7 layer", + '7A**':"fraction of non cohesive sediment of class**,**n7 layer", + '8A*':"fraction of non cohesive sediment of class*,*n8 layer", + '8A1':"fraction of non cohesive sediment of class1,1n8 layer", + '8A2':"fraction of non cohesive sediment of class2,2n8 layer", + '8A3':"fraction of non cohesive sediment of class3,3n8 layer", + '8A4':"fraction of non cohesive sediment of class4,4n8 layer", + '8A5':"fraction of non cohesive sediment of class5,5n8 layer", + '8A6':"fraction of non cohesive sediment of class6,6n8 layer", + '8A7':"fraction of non cohesive sediment of class7,7n8 layer", + '8A8':"fraction of non cohesive sediment of class8,8n8 layer", + '8A9':"fraction of non cohesive sediment of class9,9n8 layer", + '8A10':"fraction of non cohesive sediment of class10,10n8 layer", + '8A11':"fraction of non cohesive sediment of class11,11n8 layer", + '8A12':"fraction of non cohesive sediment of class12,12n8 layer", + '8A13':"fraction of non cohesive sediment of class13,13n8 layer", + '8A14':"fraction of non cohesive sediment of class14,14n8 layer", + '8A15':"fraction of non cohesive sediment of class15,15n8 layer", + '8A16':"fraction of non cohesive sediment of class16,16n8 layer", + '8A17':"fraction of non cohesive sediment of class17,17n8 layer", + '8A18':"fraction of non cohesive sediment of class18,18n8 layer", + '8A19':"fraction of non cohesive sediment of class19,19n8 layer", + '8A**':"fraction of non cohesive sediment of class**,**n8 layer", + '9A*':"fraction of non cohesive sediment of class*,*n9 layer", + '9A1':"fraction of non cohesive sediment of class1,1n9 layer", + '9A2':"fraction of non cohesive sediment of class2,2n9 layer", + '9A3':"fraction of non cohesive sediment of class3,3n9 layer", + '9A4':"fraction of non cohesive sediment of class4,4n9 layer", + '9A5':"fraction of non cohesive sediment of class5,5n9 layer", + '9A6':"fraction of non cohesive sediment of class6,6n9 layer", + '9A7':"fraction of non cohesive sediment of class7,7n9 layer", + '9A8':"fraction of non cohesive sediment of class8,8n9 layer", + '9A9':"fraction of non cohesive sediment of class9,9n9 layer", + '9A10':"fraction of non cohesive sediment of class10,10n9 layer", + '9A11':"fraction of non cohesive sediment of class11,11n9 layer", + '9A12':"fraction of non cohesive sediment of class12,12n9 layer", + '9A13':"fraction of non cohesive sediment of class13,13n9 layer", + '9A14':"fraction of non cohesive sediment of class14,14n9 layer", + '9A15':"fraction of non cohesive sediment of class15,15n9 layer", + '9A16':"fraction of non cohesive sediment of class16,16n9 layer", + '9A17':"fraction of non cohesive sediment of class17,17n9 layer", + '9A18':"fraction of non cohesive sediment of class18,18n9 layer", + '9A19':"fraction of non cohesive sediment of class19,19n9 layer", + '9A**':"fraction of non cohesive sediment of class**,**n9 layer", + '10A*':"fraction of non cohesive sediment of class*,*n10 layer", + '10A1':"fraction of non cohesive sediment of class1,1n10 layer", + '10A2':"fraction of non cohesive sediment of class2,2n10 layer", + '10A3':"fraction of non cohesive sediment of class3,3n10 layer", + '10A4':"fraction of non cohesive sediment of class4,4n10 layer", + '10A5':"fraction of non cohesive sediment of class5,5n10 layer", + '10A6':"fraction of non cohesive sediment of class6,6n10 layer", + '10A7':"fraction of non cohesive sediment of class7,7n10 layer", + '10A8':"fraction of non cohesive sediment of class8,8n10 layer", + '10A9':"fraction of non cohesive sediment of class9,9n10 layer", + '10A10':"fraction of non cohesive sediment of class10,10n10 layer", + '10A11':"fraction of non cohesive sediment of class11,11n10 layer", + '10A12':"fraction of non cohesive sediment of class12,12n10 layer", + '10A13':"fraction of non cohesive sediment of class13,13n10 layer", + '10A14':"fraction of non cohesive sediment of class14,14n10 layer", + '10A15':"fraction of non cohesive sediment of class15,15n10 layer", + '10A16':"fraction of non cohesive sediment of class16,16n10 layer", + '10A17':"fraction of non cohesive sediment of class17,17n10 layer", + '10A18':"fraction of non cohesive sediment of class18,18n10 layer", + '10A19':"fraction of non cohesive sediment of class19,19n10 layer", + '10A**':"fraction of non cohesive sediment of class**,**n10 layer", + '11A*':"fraction of non cohesive sediment of class*,*n11 layer", + '11A1':"fraction of non cohesive sediment of class1,1n11 layer", + '11A2':"fraction of non cohesive sediment of class2,2n11 layer", + '11A3':"fraction of non cohesive sediment of class3,3n11 layer", + '11A4':"fraction of non cohesive sediment of class4,4n11 layer", + '11A5':"fraction of non cohesive sediment of class5,5n11 layer", + '11A6':"fraction of non cohesive sediment of class6,6n11 layer", + '11A7':"fraction of non cohesive sediment of class7,7n11 layer", + '11A8':"fraction of non cohesive sediment of class8,8n11 layer", + '11A9':"fraction of non cohesive sediment of class9,9n11 layer", + '11A10':"fraction of non cohesive sediment of class10,10n11 layer", + '11A11':"fraction of non cohesive sediment of class11,11n11 layer", + '11A12':"fraction of non cohesive sediment of class12,12n11 layer", + '11A13':"fraction of non cohesive sediment of class13,13n11 layer", + '11A14':"fraction of non cohesive sediment of class14,14n11 layer", + '11A15':"fraction of non cohesive sediment of class15,15n11 layer", + '11A16':"fraction of non cohesive sediment of class16,16n11 layer", + '11A17':"fraction of non cohesive sediment of class17,17n11 layer", + '11A18':"fraction of non cohesive sediment of class18,18n11 layer", + '11A19':"fraction of non cohesive sediment of class19,19n11 layer", + '11A**':"fraction of non cohesive sediment of class**,**n11 layer", + '12A*':"fraction of non cohesive sediment of class*,*n12 layer", + '12A1':"fraction of non cohesive sediment of class1,1n12 layer", + '12A2':"fraction of non cohesive sediment of class2,2n12 layer", + '12A3':"fraction of non cohesive sediment of class3,3n12 layer", + '12A4':"fraction of non cohesive sediment of class4,4n12 layer", + '12A5':"fraction of non cohesive sediment of class5,5n12 layer", + '12A6':"fraction of non cohesive sediment of class6,6n12 layer", + '12A7':"fraction of non cohesive sediment of class7,7n12 layer", + '12A8':"fraction of non cohesive sediment of class8,8n12 layer", + '12A9':"fraction of non cohesive sediment of class9,9n12 layer", + '12A10':"fraction of non cohesive sediment of class10,10n12 layer", + '12A11':"fraction of non cohesive sediment of class11,11n12 layer", + '12A12':"fraction of non cohesive sediment of class12,12n12 layer", + '12A13':"fraction of non cohesive sediment of class13,13n12 layer", + '12A14':"fraction of non cohesive sediment of class14,14n12 layer", + '12A15':"fraction of non cohesive sediment of class15,15n12 layer", + '12A16':"fraction of non cohesive sediment of class16,16n12 layer", + '12A17':"fraction of non cohesive sediment of class17,17n12 layer", + '12A18':"fraction of non cohesive sediment of class18,18n12 layer", + '12A19':"fraction of non cohesive sediment of class19,19n12 layer", + '12A**':"fraction of non cohesive sediment of class**,**n12 layer", + '13A*':"fraction of non cohesive sediment of class*,*n13 layer", + '13A1':"fraction of non cohesive sediment of class1,1n13 layer", + '13A2':"fraction of non cohesive sediment of class2,2n13 layer", + '13A3':"fraction of non cohesive sediment of class3,3n13 layer", + '13A4':"fraction of non cohesive sediment of class4,4n13 layer", + '13A5':"fraction of non cohesive sediment of class5,5n13 layer", + '13A6':"fraction of non cohesive sediment of class6,6n13 layer", + '13A7':"fraction of non cohesive sediment of class7,7n13 layer", + '13A8':"fraction of non cohesive sediment of class8,8n13 layer", + '13A9':"fraction of non cohesive sediment of class9,9n13 layer", + '13A10':"fraction of non cohesive sediment of class10,10n13 layer", + '13A11':"fraction of non cohesive sediment of class11,11n13 layer", + '13A12':"fraction of non cohesive sediment of class12,12n13 layer", + '13A13':"fraction of non cohesive sediment of class13,13n13 layer", + '13A14':"fraction of non cohesive sediment of class14,14n13 layer", + '13A15':"fraction of non cohesive sediment of class15,15n13 layer", + '13A16':"fraction of non cohesive sediment of class16,16n13 layer", + '13A17':"fraction of non cohesive sediment of class17,17n13 layer", + '13A18':"fraction of non cohesive sediment of class18,18n13 layer", + '13A19':"fraction of non cohesive sediment of class19,19n13 layer", + '13A**':"fraction of non cohesive sediment of class**,**n13 layer", + '14A*':"fraction of non cohesive sediment of class*,*n14 layer", + '14A1':"fraction of non cohesive sediment of class1,1n14 layer", + '14A2':"fraction of non cohesive sediment of class2,2n14 layer", + '14A3':"fraction of non cohesive sediment of class3,3n14 layer", + '14A4':"fraction of non cohesive sediment of class4,4n14 layer", + '14A5':"fraction of non cohesive sediment of class5,5n14 layer", + '14A6':"fraction of non cohesive sediment of class6,6n14 layer", + '14A7':"fraction of non cohesive sediment of class7,7n14 layer", + '14A8':"fraction of non cohesive sediment of class8,8n14 layer", + '14A9':"fraction of non cohesive sediment of class9,9n14 layer", + '14A10':"fraction of non cohesive sediment of class10,10n14 layer", + '14A11':"fraction of non cohesive sediment of class11,11n14 layer", + '14A12':"fraction of non cohesive sediment of class12,12n14 layer", + '14A13':"fraction of non cohesive sediment of class13,13n14 layer", + '14A14':"fraction of non cohesive sediment of class14,14n14 layer", + '14A15':"fraction of non cohesive sediment of class15,15n14 layer", + '14A16':"fraction of non cohesive sediment of class16,16n14 layer", + '14A17':"fraction of non cohesive sediment of class17,17n14 layer", + '14A18':"fraction of non cohesive sediment of class18,18n14 layer", + '14A19':"fraction of non cohesive sediment of class19,19n14 layer", + '14A**':"fraction of non cohesive sediment of class**,**n14 layer", + '15A*':"fraction of non cohesive sediment of class*,*n15 layer", + '15A1':"fraction of non cohesive sediment of class1,1n15 layer", + '15A2':"fraction of non cohesive sediment of class2,2n15 layer", + '15A3':"fraction of non cohesive sediment of class3,3n15 layer", + '15A4':"fraction of non cohesive sediment of class4,4n15 layer", + '15A5':"fraction of non cohesive sediment of class5,5n15 layer", + '15A6':"fraction of non cohesive sediment of class6,6n15 layer", + '15A7':"fraction of non cohesive sediment of class7,7n15 layer", + '15A8':"fraction of non cohesive sediment of class8,8n15 layer", + '15A9':"fraction of non cohesive sediment of class9,9n15 layer", + '15A10':"fraction of non cohesive sediment of class10,10n15 layer", + '15A11':"fraction of non cohesive sediment of class11,11n15 layer", + '15A12':"fraction of non cohesive sediment of class12,12n15 layer", + '15A13':"fraction of non cohesive sediment of class13,13n15 layer", + '15A14':"fraction of non cohesive sediment of class14,14n15 layer", + '15A15':"fraction of non cohesive sediment of class15,15n15 layer", + '15A16':"fraction of non cohesive sediment of class16,16n15 layer", + '15A17':"fraction of non cohesive sediment of class17,17n15 layer", + '15A18':"fraction of non cohesive sediment of class18,18n15 layer", + '15A19':"fraction of non cohesive sediment of class19,19n15 layer", + '15A**':"fraction of non cohesive sediment of class**,**n15 layer", + '16A*':"fraction of non cohesive sediment of class*,*n16 layer", + '16A1':"fraction of non cohesive sediment of class1,1n16 layer", + '16A2':"fraction of non cohesive sediment of class2,2n16 layer", + '16A3':"fraction of non cohesive sediment of class3,3n16 layer", + '16A4':"fraction of non cohesive sediment of class4,4n16 layer", + '16A5':"fraction of non cohesive sediment of class5,5n16 layer", + '16A6':"fraction of non cohesive sediment of class6,6n16 layer", + '16A7':"fraction of non cohesive sediment of class7,7n16 layer", + '16A8':"fraction of non cohesive sediment of class8,8n16 layer", + '16A9':"fraction of non cohesive sediment of class9,9n16 layer", + '16A10':"fraction of non cohesive sediment of class10,10n16 layer", + '16A11':"fraction of non cohesive sediment of class11,11n16 layer", + '16A12':"fraction of non cohesive sediment of class12,12n16 layer", + '16A13':"fraction of non cohesive sediment of class13,13n16 layer", + '16A14':"fraction of non cohesive sediment of class14,14n16 layer", + '16A15':"fraction of non cohesive sediment of class15,15n16 layer", + '16A16':"fraction of non cohesive sediment of class16,16n16 layer", + '16A17':"fraction of non cohesive sediment of class17,17n16 layer", + '16A18':"fraction of non cohesive sediment of class18,18n16 layer", + '16A19':"fraction of non cohesive sediment of class19,19n16 layer", + '16A**':"fraction of non cohesive sediment of class**,**n16 layer", + '17A*':"fraction of non cohesive sediment of class*,*n17 layer", + '17A1':"fraction of non cohesive sediment of class1,1n17 layer", + '17A2':"fraction of non cohesive sediment of class2,2n17 layer", + '17A3':"fraction of non cohesive sediment of class3,3n17 layer", + '17A4':"fraction of non cohesive sediment of class4,4n17 layer", + '17A5':"fraction of non cohesive sediment of class5,5n17 layer", + '17A6':"fraction of non cohesive sediment of class6,6n17 layer", + '17A7':"fraction of non cohesive sediment of class7,7n17 layer", + '17A8':"fraction of non cohesive sediment of class8,8n17 layer", + '17A9':"fraction of non cohesive sediment of class9,9n17 layer", + '17A10':"fraction of non cohesive sediment of class10,10n17 layer", + '17A11':"fraction of non cohesive sediment of class11,11n17 layer", + '17A12':"fraction of non cohesive sediment of class12,12n17 layer", + '17A13':"fraction of non cohesive sediment of class13,13n17 layer", + '17A14':"fraction of non cohesive sediment of class14,14n17 layer", + '17A15':"fraction of non cohesive sediment of class15,15n17 layer", + '17A16':"fraction of non cohesive sediment of class16,16n17 layer", + '17A17':"fraction of non cohesive sediment of class17,17n17 layer", + '17A18':"fraction of non cohesive sediment of class18,18n17 layer", + '17A19':"fraction of non cohesive sediment of class19,19n17 layer", + '17A**':"fraction of non cohesive sediment of class**,**n17 layer", + '18A*':"fraction of non cohesive sediment of class*,*n18 layer", + '18A1':"fraction of non cohesive sediment of class1,1n18 layer", + '18A2':"fraction of non cohesive sediment of class2,2n18 layer", + '18A3':"fraction of non cohesive sediment of class3,3n18 layer", + '18A4':"fraction of non cohesive sediment of class4,4n18 layer", + '18A5':"fraction of non cohesive sediment of class5,5n18 layer", + '18A6':"fraction of non cohesive sediment of class6,6n18 layer", + '18A7':"fraction of non cohesive sediment of class7,7n18 layer", + '18A8':"fraction of non cohesive sediment of class8,8n18 layer", + '18A9':"fraction of non cohesive sediment of class9,9n18 layer", + '18A10':"fraction of non cohesive sediment of class10,10n18 layer", + '18A11':"fraction of non cohesive sediment of class11,11n18 layer", + '18A12':"fraction of non cohesive sediment of class12,12n18 layer", + '18A13':"fraction of non cohesive sediment of class13,13n18 layer", + '18A14':"fraction of non cohesive sediment of class14,14n18 layer", + '18A15':"fraction of non cohesive sediment of class15,15n18 layer", + '18A16':"fraction of non cohesive sediment of class16,16n18 layer", + '18A17':"fraction of non cohesive sediment of class17,17n18 layer", + '18A18':"fraction of non cohesive sediment of class18,18n18 layer", + '18A19':"fraction of non cohesive sediment of class19,19n18 layer", + '18A**':"fraction of non cohesive sediment of class**,**n18 layer", + '19A*':"fraction of non cohesive sediment of class*,*n19 layer", + '19A1':"fraction of non cohesive sediment of class1,1n19 layer", + '19A2':"fraction of non cohesive sediment of class2,2n19 layer", + '19A3':"fraction of non cohesive sediment of class3,3n19 layer", + '19A4':"fraction of non cohesive sediment of class4,4n19 layer", + '19A5':"fraction of non cohesive sediment of class5,5n19 layer", + '19A6':"fraction of non cohesive sediment of class6,6n19 layer", + '19A7':"fraction of non cohesive sediment of class7,7n19 layer", + '19A8':"fraction of non cohesive sediment of class8,8n19 layer", + '19A9':"fraction of non cohesive sediment of class9,9n19 layer", + '19A10':"fraction of non cohesive sediment of class10,10n19 layer", + '19A11':"fraction of non cohesive sediment of class11,11n19 layer", + '19A12':"fraction of non cohesive sediment of class12,12n19 layer", + '19A13':"fraction of non cohesive sediment of class13,13n19 layer", + '19A14':"fraction of non cohesive sediment of class14,14n19 layer", + '19A15':"fraction of non cohesive sediment of class15,15n19 layer", + '19A16':"fraction of non cohesive sediment of class16,16n19 layer", + '19A17':"fraction of non cohesive sediment of class17,17n19 layer", + '19A18':"fraction of non cohesive sediment of class18,18n19 layer", + '19A19':"fraction of non cohesive sediment of class19,19n19 layer", + '19A**':"fraction of non cohesive sediment of class**,**n19 layer", + '**A*':"fraction of non cohesive sediment of class*,*n** layer", + '**A1':"fraction of non cohesive sediment of class1,1n** layer", + '**A2':"fraction of non cohesive sediment of class2,2n** layer", + '**A3':"fraction of non cohesive sediment of class3,3n** layer", + '**A4':"fraction of non cohesive sediment of class4,4n** layer", + '**A5':"fraction of non cohesive sediment of class5,5n** layer", + '**A6':"fraction of non cohesive sediment of class6,6n** layer", + '**A7':"fraction of non cohesive sediment of class7,7n** layer", + '**A8':"fraction of non cohesive sediment of class8,8n** layer", + '**A9':"fraction of non cohesive sediment of class9,9n** layer", + '**A10':"fraction of non cohesive sediment of class10,10n** layer", + '**A11':"fraction of non cohesive sediment of class11,11n** layer", + '**A12':"fraction of non cohesive sediment of class12,12n** layer", + '**A13':"fraction of non cohesive sediment of class13,13n** layer", + '**A14':"fraction of non cohesive sediment of class14,14n** layer", + '**A15':"fraction of non cohesive sediment of class15,15n** layer", + '**A16':"fraction of non cohesive sediment of class16,16n** layer", + '**A17':"fraction of non cohesive sediment of class17,17n** layer", + '**A18':"fraction of non cohesive sediment of class18,18n** layer", + '**A19':"fraction of non cohesive sediment of class19,19n** layer", + '**A**':"fraction of non cohesive sediment of class**,**n** layer", + 'QS*':"solid transport load of class*", + 'QS1':"solid transport load of class1", + 'QS2':"solid transport load of class2", + 'QS3':"solid transport load of class3", + 'QS4':"solid transport load of class4", + 'QS5':"solid transport load of class5", + 'QS6':"solid transport load of class6", + 'QS7':"solid transport load of class7", + 'QS8':"solid transport load of class8", + 'QS9':"solid transport load of class9", + 'QS10':"solid transport load of class10", + 'QS11':"solid transport load of class11", + 'QS12':"solid transport load of class12", + 'QS13':"solid transport load of class13", + 'QS14':"solid transport load of class14", + 'QS15':"solid transport load of class15", + 'QS16':"solid transport load of class16", + 'QS17':"solid transport load of class17", + 'QS18':"solid transport load of class18", + 'QS19':"solid transport load of class19", + 'QS**':"solid transport load of class**", + 'QS*':"solid transport load of class*", + 'QS1':"solid transport load of class1", + 'QS2':"solid transport load of class2", + 'QS3':"solid transport load of class3", + 'QS4':"solid transport load of class4", + 'QS5':"solid transport load of class5", + 'QS6':"solid transport load of class6", + 'QS7':"solid transport load of class7", + 'QS8':"solid transport load of class8", + 'QS9':"solid transport load of class9", + 'QS10':"solid transport load of class10", + 'QS11':"solid transport load of class11", + 'QS12':"solid transport load of class12", + 'QS13':"solid transport load of class13", + 'QS14':"solid transport load of class14", + 'QS15':"solid transport load of class15", + 'QS16':"solid transport load of class16", + 'QS17':"solid transport load of class17", + 'QS18':"solid transport load of class18", + 'QS19':"solid transport load of class19", + 'QS**':"solid transport load of class**", + 'QS*':"solid transport load of class*", + 'QS1':"solid transport load of class1", + 'QS2':"solid transport load of class2", + 'QS3':"solid transport load of class3", + 'QS4':"solid transport load of class4", + 'QS5':"solid transport load of class5", + 'QS6':"solid transport load of class6", + 'QS7':"solid transport load of class7", + 'QS8':"solid transport load of class8", + 'QS9':"solid transport load of class9", + 'QS10':"solid transport load of class10", + 'QS11':"solid transport load of class11", + 'QS12':"solid transport load of class12", + 'QS13':"solid transport load of class13", + 'QS14':"solid transport load of class14", + 'QS15':"solid transport load of class15", + 'QS16':"solid transport load of class16", + 'QS17':"solid transport load of class17", + 'QS18':"solid transport load of class18", + 'QS19':"solid transport load of class19", + 'QS**':"solid transport load of class**", + 'QS*':"solid transport load of class*", + 'QS1':"solid transport load of class1", + 'QS2':"solid transport load of class2", + 'QS3':"solid transport load of class3", + 'QS4':"solid transport load of class4", + 'QS5':"solid transport load of class5", + 'QS6':"solid transport load of class6", + 'QS7':"solid transport load of class7", + 'QS8':"solid transport load of class8", + 'QS9':"solid transport load of class9", + 'QS10':"solid transport load of class10", + 'QS11':"solid transport load of class11", + 'QS12':"solid transport load of class12", + 'QS13':"solid transport load of class13", + 'QS14':"solid transport load of class14", + 'QS15':"solid transport load of class15", + 'QS16':"solid transport load of class16", + 'QS17':"solid transport load of class17", + 'QS18':"solid transport load of class18", + 'QS19':"solid transport load of class19", + 'QS**':"solid transport load of class**", + 'QS*':"solid transport load of class*", + 'QS1':"solid transport load of class1", + 'QS2':"solid transport load of class2", + 'QS3':"solid transport load of class3", + 'QS4':"solid transport load of class4", + 'QS5':"solid transport load of class5", + 'QS6':"solid transport load of class6", + 'QS7':"solid transport load of class7", + 'QS8':"solid transport load of class8", + 'QS9':"solid transport load of class9", + 'QS10':"solid transport load of class10", + 'QS11':"solid transport load of class11", + 'QS12':"solid transport load of class12", + 'QS13':"solid transport load of class13", + 'QS14':"solid transport load of class14", + 'QS15':"solid transport load of class15", + 'QS16':"solid transport load of class16", + 'QS17':"solid transport load of class17", + 'QS18':"solid transport load of class18", + 'QS19':"solid transport load of class19", + 'QS**':"solid transport load of class**", + 'QS*':"solid transport load of class*", + 'QS1':"solid transport load of class1", + 'QS2':"solid transport load of class2", + 'QS3':"solid transport load of class3", + 'QS4':"solid transport load of class4", + 'QS5':"solid transport load of class5", + 'QS6':"solid transport load of class6", + 'QS7':"solid transport load of class7", + 'QS8':"solid transport load of class8", + 'QS9':"solid transport load of class9", + 'QS10':"solid transport load of class10", + 'QS11':"solid transport load of class11", + 'QS12':"solid transport load of class12", + 'QS13':"solid transport load of class13", + 'QS14':"solid transport load of class14", + 'QS15':"solid transport load of class15", + 'QS16':"solid transport load of class16", + 'QS17':"solid transport load of class17", + 'QS18':"solid transport load of class18", + 'QS19':"solid transport load of class19", + 'QS**':"solid transport load of class**", + 'QS*':"solid transport load of class*", + 'QS1':"solid transport load of class1", + 'QS2':"solid transport load of class2", + 'QS3':"solid transport load of class3", + 'QS4':"solid transport load of class4", + 'QS5':"solid transport load of class5", + 'QS6':"solid transport load of class6", + 'QS7':"solid transport load of class7", + 'QS8':"solid transport load of class8", + 'QS9':"solid transport load of class9", + 'QS10':"solid transport load of class10", + 'QS11':"solid transport load of class11", + 'QS12':"solid transport load of class12", + 'QS13':"solid transport load of class13", + 'QS14':"solid transport load of class14", + 'QS15':"solid transport load of class15", + 'QS16':"solid transport load of class16", + 'QS17':"solid transport load of class17", + 'QS18':"solid transport load of class18", + 'QS19':"solid transport load of class19", + 'QS**':"solid transport load of class**", + 'QS*':"solid transport load of class*", + 'QS1':"solid transport load of class1", + 'QS2':"solid transport load of class2", + 'QS3':"solid transport load of class3", + 'QS4':"solid transport load of class4", + 'QS5':"solid transport load of class5", + 'QS6':"solid transport load of class6", + 'QS7':"solid transport load of class7", + 'QS8':"solid transport load of class8", + 'QS9':"solid transport load of class9", + 'QS10':"solid transport load of class10", + 'QS11':"solid transport load of class11", + 'QS12':"solid transport load of class12", + 'QS13':"solid transport load of class13", + 'QS14':"solid transport load of class14", + 'QS15':"solid transport load of class15", + 'QS16':"solid transport load of class16", + 'QS17':"solid transport load of class17", + 'QS18':"solid transport load of class18", + 'QS19':"solid transport load of class19", + 'QS**':"solid transport load of class**", + 'QS*':"solid transport load of class*", + 'QS1':"solid transport load of class1", + 'QS2':"solid transport load of class2", + 'QS3':"solid transport load of class3", + 'QS4':"solid transport load of class4", + 'QS5':"solid transport load of class5", + 'QS6':"solid transport load of class6", + 'QS7':"solid transport load of class7", + 'QS8':"solid transport load of class8", + 'QS9':"solid transport load of class9", + 'QS10':"solid transport load of class10", + 'QS11':"solid transport load of class11", + 'QS12':"solid transport load of class12", + 'QS13':"solid transport load of class13", + 'QS14':"solid transport load of class14", + 'QS15':"solid transport load of class15", + 'QS16':"solid transport load of class16", + 'QS17':"solid transport load of class17", + 'QS18':"solid transport load of class18", + 'QS19':"solid transport load of class19", + 'QS**':"solid transport load of class**", + 'QS*':"solid transport load of class*", + 'QS1':"solid transport load of class1", + 'QS2':"solid transport load of class2", + 'QS3':"solid transport load of class3", + 'QS4':"solid transport load of class4", + 'QS5':"solid transport load of class5", + 'QS6':"solid transport load of class6", + 'QS7':"solid transport load of class7", + 'QS8':"solid transport load of class8", + 'QS9':"solid transport load of class9", + 'QS10':"solid transport load of class10", + 'QS11':"solid transport load of class11", + 'QS12':"solid transport load of class12", + 'QS13':"solid transport load of class13", + 'QS14':"solid transport load of class14", + 'QS15':"solid transport load of class15", + 'QS16':"solid transport load of class16", + 'QS17':"solid transport load of class17", + 'QS18':"solid transport load of class18", + 'QS19':"solid transport load of class19", + 'QS**':"solid transport load of class**", + 'QS*':"solid transport load of class*", + 'QS1':"solid transport load of class1", + 'QS2':"solid transport load of class2", + 'QS3':"solid transport load of class3", + 'QS4':"solid transport load of class4", + 'QS5':"solid transport load of class5", + 'QS6':"solid transport load of class6", + 'QS7':"solid transport load of class7", + 'QS8':"solid transport load of class8", + 'QS9':"solid transport load of class9", + 'QS10':"solid transport load of class10", + 'QS11':"solid transport load of class11", + 'QS12':"solid transport load of class12", + 'QS13':"solid transport load of class13", + 'QS14':"solid transport load of class14", + 'QS15':"solid transport load of class15", + 'QS16':"solid transport load of class16", + 'QS17':"solid transport load of class17", + 'QS18':"solid transport load of class18", + 'QS19':"solid transport load of class19", + 'QS**':"solid transport load of class**", + 'QS*':"solid transport load of class*", + 'QS1':"solid transport load of class1", + 'QS2':"solid transport load of class2", + 'QS3':"solid transport load of class3", + 'QS4':"solid transport load of class4", + 'QS5':"solid transport load of class5", + 'QS6':"solid transport load of class6", + 'QS7':"solid transport load of class7", + 'QS8':"solid transport load of class8", + 'QS9':"solid transport load of class9", + 'QS10':"solid transport load of class10", + 'QS11':"solid transport load of class11", + 'QS12':"solid transport load of class12", + 'QS13':"solid transport load of class13", + 'QS14':"solid transport load of class14", + 'QS15':"solid transport load of class15", + 'QS16':"solid transport load of class16", + 'QS17':"solid transport load of class17", + 'QS18':"solid transport load of class18", + 'QS19':"solid transport load of class19", + 'QS**':"solid transport load of class**", + 'QS*':"solid transport load of class*", + 'QS1':"solid transport load of class1", + 'QS2':"solid transport load of class2", + 'QS3':"solid transport load of class3", + 'QS4':"solid transport load of class4", + 'QS5':"solid transport load of class5", + 'QS6':"solid transport load of class6", + 'QS7':"solid transport load of class7", + 'QS8':"solid transport load of class8", + 'QS9':"solid transport load of class9", + 'QS10':"solid transport load of class10", + 'QS11':"solid transport load of class11", + 'QS12':"solid transport load of class12", + 'QS13':"solid transport load of class13", + 'QS14':"solid transport load of class14", + 'QS15':"solid transport load of class15", + 'QS16':"solid transport load of class16", + 'QS17':"solid transport load of class17", + 'QS18':"solid transport load of class18", + 'QS19':"solid transport load of class19", + 'QS**':"solid transport load of class**", + 'QS*':"solid transport load of class*", + 'QS1':"solid transport load of class1", + 'QS2':"solid transport load of class2", + 'QS3':"solid transport load of class3", + 'QS4':"solid transport load of class4", + 'QS5':"solid transport load of class5", + 'QS6':"solid transport load of class6", + 'QS7':"solid transport load of class7", + 'QS8':"solid transport load of class8", + 'QS9':"solid transport load of class9", + 'QS10':"solid transport load of class10", + 'QS11':"solid transport load of class11", + 'QS12':"solid transport load of class12", + 'QS13':"solid transport load of class13", + 'QS14':"solid transport load of class14", + 'QS15':"solid transport load of class15", + 'QS16':"solid transport load of class16", + 'QS17':"solid transport load of class17", + 'QS18':"solid transport load of class18", + 'QS19':"solid transport load of class19", + 'QS**':"solid transport load of class**", + 'QS*':"solid transport load of class*", + 'QS1':"solid transport load of class1", + 'QS2':"solid transport load of class2", + 'QS3':"solid transport load of class3", + 'QS4':"solid transport load of class4", + 'QS5':"solid transport load of class5", + 'QS6':"solid transport load of class6", + 'QS7':"solid transport load of class7", + 'QS8':"solid transport load of class8", + 'QS9':"solid transport load of class9", + 'QS10':"solid transport load of class10", + 'QS11':"solid transport load of class11", + 'QS12':"solid transport load of class12", + 'QS13':"solid transport load of class13", + 'QS14':"solid transport load of class14", + 'QS15':"solid transport load of class15", + 'QS16':"solid transport load of class16", + 'QS17':"solid transport load of class17", + 'QS18':"solid transport load of class18", + 'QS19':"solid transport load of class19", + 'QS**':"solid transport load of class**", + 'QS*':"solid transport load of class*", + 'QS1':"solid transport load of class1", + 'QS2':"solid transport load of class2", + 'QS3':"solid transport load of class3", + 'QS4':"solid transport load of class4", + 'QS5':"solid transport load of class5", + 'QS6':"solid transport load of class6", + 'QS7':"solid transport load of class7", + 'QS8':"solid transport load of class8", + 'QS9':"solid transport load of class9", + 'QS10':"solid transport load of class10", + 'QS11':"solid transport load of class11", + 'QS12':"solid transport load of class12", + 'QS13':"solid transport load of class13", + 'QS14':"solid transport load of class14", + 'QS15':"solid transport load of class15", + 'QS16':"solid transport load of class16", + 'QS17':"solid transport load of class17", + 'QS18':"solid transport load of class18", + 'QS19':"solid transport load of class19", + 'QS**':"solid transport load of class**", + 'QS*':"solid transport load of class*", + 'QS1':"solid transport load of class1", + 'QS2':"solid transport load of class2", + 'QS3':"solid transport load of class3", + 'QS4':"solid transport load of class4", + 'QS5':"solid transport load of class5", + 'QS6':"solid transport load of class6", + 'QS7':"solid transport load of class7", + 'QS8':"solid transport load of class8", + 'QS9':"solid transport load of class9", + 'QS10':"solid transport load of class10", + 'QS11':"solid transport load of class11", + 'QS12':"solid transport load of class12", + 'QS13':"solid transport load of class13", + 'QS14':"solid transport load of class14", + 'QS15':"solid transport load of class15", + 'QS16':"solid transport load of class16", + 'QS17':"solid transport load of class17", + 'QS18':"solid transport load of class18", + 'QS19':"solid transport load of class19", + 'QS**':"solid transport load of class**", + 'QS*':"solid transport load of class*", + 'QS1':"solid transport load of class1", + 'QS2':"solid transport load of class2", + 'QS3':"solid transport load of class3", + 'QS4':"solid transport load of class4", + 'QS5':"solid transport load of class5", + 'QS6':"solid transport load of class6", + 'QS7':"solid transport load of class7", + 'QS8':"solid transport load of class8", + 'QS9':"solid transport load of class9", + 'QS10':"solid transport load of class10", + 'QS11':"solid transport load of class11", + 'QS12':"solid transport load of class12", + 'QS13':"solid transport load of class13", + 'QS14':"solid transport load of class14", + 'QS15':"solid transport load of class15", + 'QS16':"solid transport load of class16", + 'QS17':"solid transport load of class17", + 'QS18':"solid transport load of class18", + 'QS19':"solid transport load of class19", + 'QS**':"solid transport load of class**", + 'QS*':"solid transport load of class*", + 'QS1':"solid transport load of class1", + 'QS2':"solid transport load of class2", + 'QS3':"solid transport load of class3", + 'QS4':"solid transport load of class4", + 'QS5':"solid transport load of class5", + 'QS6':"solid transport load of class6", + 'QS7':"solid transport load of class7", + 'QS8':"solid transport load of class8", + 'QS9':"solid transport load of class9", + 'QS10':"solid transport load of class10", + 'QS11':"solid transport load of class11", + 'QS12':"solid transport load of class12", + 'QS13':"solid transport load of class13", + 'QS14':"solid transport load of class14", + 'QS15':"solid transport load of class15", + 'QS16':"solid transport load of class16", + 'QS17':"solid transport load of class17", + 'QS18':"solid transport load of class18", + 'QS19':"solid transport load of class19", + 'QS**':"solid transport load of class**", + 'QS*':"solid transport load of class*", + 'QS1':"solid transport load of class1", + 'QS2':"solid transport load of class2", + 'QS3':"solid transport load of class3", + 'QS4':"solid transport load of class4", + 'QS5':"solid transport load of class5", + 'QS6':"solid transport load of class6", + 'QS7':"solid transport load of class7", + 'QS8':"solid transport load of class8", + 'QS9':"solid transport load of class9", + 'QS10':"solid transport load of class10", + 'QS11':"solid transport load of class11", + 'QS12':"solid transport load of class12", + 'QS13':"solid transport load of class13", + 'QS14':"solid transport load of class14", + 'QS15':"solid transport load of class15", + 'QS16':"solid transport load of class16", + 'QS17':"solid transport load of class17", + 'QS18':"solid transport load of class18", + 'QS19':"solid transport load of class19", + 'QS**':"solid transport load of class**", + 'QS*':"solid transport load of class*", + 'QS1':"solid transport load of class1", + 'QS2':"solid transport load of class2", + 'QS3':"solid transport load of class3", + 'QS4':"solid transport load of class4", + 'QS5':"solid transport load of class5", + 'QS6':"solid transport load of class6", + 'QS7':"solid transport load of class7", + 'QS8':"solid transport load of class8", + 'QS9':"solid transport load of class9", + 'QS10':"solid transport load of class10", + 'QS11':"solid transport load of class11", + 'QS12':"solid transport load of class12", + 'QS13':"solid transport load of class13", + 'QS14':"solid transport load of class14", + 'QS15':"solid transport load of class15", + 'QS16':"solid transport load of class16", + 'QS17':"solid transport load of class17", + 'QS18':"solid transport load of class18", + 'QS19':"solid transport load of class19", + 'QS**':"solid transport load of class**", + 'CS*':"mass concentration of class*", + 'CS1':"mass concentration of class1", + 'CS2':"mass concentration of class2", + 'CS3':"mass concentration of class3", + 'CS4':"mass concentration of class4", + 'CS5':"mass concentration of class5", + 'CS6':"mass concentration of class6", + 'CS7':"mass concentration of class7", + 'CS8':"mass concentration of class8", + 'CS9':"mass concentration of class9", + 'CS10':"mass concentration of class10", + 'CS11':"mass concentration of class11", + 'CS12':"mass concentration of class12", + 'CS13':"mass concentration of class13", + 'CS14':"mass concentration of class14", + 'CS15':"mass concentration of class15", + 'CS16':"mass concentration of class16", + 'CS17':"mass concentration of class17", + 'CS18':"mass concentration of class18", + 'CS19':"mass concentration of class19", + 'CS**':"mass concentration of class**", + 'CS*':"mass concentration of class*", + 'CS1':"mass concentration of class1", + 'CS2':"mass concentration of class2", + 'CS3':"mass concentration of class3", + 'CS4':"mass concentration of class4", + 'CS5':"mass concentration of class5", + 'CS6':"mass concentration of class6", + 'CS7':"mass concentration of class7", + 'CS8':"mass concentration of class8", + 'CS9':"mass concentration of class9", + 'CS10':"mass concentration of class10", + 'CS11':"mass concentration of class11", + 'CS12':"mass concentration of class12", + 'CS13':"mass concentration of class13", + 'CS14':"mass concentration of class14", + 'CS15':"mass concentration of class15", + 'CS16':"mass concentration of class16", + 'CS17':"mass concentration of class17", + 'CS18':"mass concentration of class18", + 'CS19':"mass concentration of class19", + 'CS**':"mass concentration of class**", + 'CS*':"mass concentration of class*", + 'CS1':"mass concentration of class1", + 'CS2':"mass concentration of class2", + 'CS3':"mass concentration of class3", + 'CS4':"mass concentration of class4", + 'CS5':"mass concentration of class5", + 'CS6':"mass concentration of class6", + 'CS7':"mass concentration of class7", + 'CS8':"mass concentration of class8", + 'CS9':"mass concentration of class9", + 'CS10':"mass concentration of class10", + 'CS11':"mass concentration of class11", + 'CS12':"mass concentration of class12", + 'CS13':"mass concentration of class13", + 'CS14':"mass concentration of class14", + 'CS15':"mass concentration of class15", + 'CS16':"mass concentration of class16", + 'CS17':"mass concentration of class17", + 'CS18':"mass concentration of class18", + 'CS19':"mass concentration of class19", + 'CS**':"mass concentration of class**", + 'CS*':"mass concentration of class*", + 'CS1':"mass concentration of class1", + 'CS2':"mass concentration of class2", + 'CS3':"mass concentration of class3", + 'CS4':"mass concentration of class4", + 'CS5':"mass concentration of class5", + 'CS6':"mass concentration of class6", + 'CS7':"mass concentration of class7", + 'CS8':"mass concentration of class8", + 'CS9':"mass concentration of class9", + 'CS10':"mass concentration of class10", + 'CS11':"mass concentration of class11", + 'CS12':"mass concentration of class12", + 'CS13':"mass concentration of class13", + 'CS14':"mass concentration of class14", + 'CS15':"mass concentration of class15", + 'CS16':"mass concentration of class16", + 'CS17':"mass concentration of class17", + 'CS18':"mass concentration of class18", + 'CS19':"mass concentration of class19", + 'CS**':"mass concentration of class**", + 'CS*':"mass concentration of class*", + 'CS1':"mass concentration of class1", + 'CS2':"mass concentration of class2", + 'CS3':"mass concentration of class3", + 'CS4':"mass concentration of class4", + 'CS5':"mass concentration of class5", + 'CS6':"mass concentration of class6", + 'CS7':"mass concentration of class7", + 'CS8':"mass concentration of class8", + 'CS9':"mass concentration of class9", + 'CS10':"mass concentration of class10", + 'CS11':"mass concentration of class11", + 'CS12':"mass concentration of class12", + 'CS13':"mass concentration of class13", + 'CS14':"mass concentration of class14", + 'CS15':"mass concentration of class15", + 'CS16':"mass concentration of class16", + 'CS17':"mass concentration of class17", + 'CS18':"mass concentration of class18", + 'CS19':"mass concentration of class19", + 'CS**':"mass concentration of class**", + 'CS*':"mass concentration of class*", + 'CS1':"mass concentration of class1", + 'CS2':"mass concentration of class2", + 'CS3':"mass concentration of class3", + 'CS4':"mass concentration of class4", + 'CS5':"mass concentration of class5", + 'CS6':"mass concentration of class6", + 'CS7':"mass concentration of class7", + 'CS8':"mass concentration of class8", + 'CS9':"mass concentration of class9", + 'CS10':"mass concentration of class10", + 'CS11':"mass concentration of class11", + 'CS12':"mass concentration of class12", + 'CS13':"mass concentration of class13", + 'CS14':"mass concentration of class14", + 'CS15':"mass concentration of class15", + 'CS16':"mass concentration of class16", + 'CS17':"mass concentration of class17", + 'CS18':"mass concentration of class18", + 'CS19':"mass concentration of class19", + 'CS**':"mass concentration of class**", + 'CS*':"mass concentration of class*", + 'CS1':"mass concentration of class1", + 'CS2':"mass concentration of class2", + 'CS3':"mass concentration of class3", + 'CS4':"mass concentration of class4", + 'CS5':"mass concentration of class5", + 'CS6':"mass concentration of class6", + 'CS7':"mass concentration of class7", + 'CS8':"mass concentration of class8", + 'CS9':"mass concentration of class9", + 'CS10':"mass concentration of class10", + 'CS11':"mass concentration of class11", + 'CS12':"mass concentration of class12", + 'CS13':"mass concentration of class13", + 'CS14':"mass concentration of class14", + 'CS15':"mass concentration of class15", + 'CS16':"mass concentration of class16", + 'CS17':"mass concentration of class17", + 'CS18':"mass concentration of class18", + 'CS19':"mass concentration of class19", + 'CS**':"mass concentration of class**", + 'CS*':"mass concentration of class*", + 'CS1':"mass concentration of class1", + 'CS2':"mass concentration of class2", + 'CS3':"mass concentration of class3", + 'CS4':"mass concentration of class4", + 'CS5':"mass concentration of class5", + 'CS6':"mass concentration of class6", + 'CS7':"mass concentration of class7", + 'CS8':"mass concentration of class8", + 'CS9':"mass concentration of class9", + 'CS10':"mass concentration of class10", + 'CS11':"mass concentration of class11", + 'CS12':"mass concentration of class12", + 'CS13':"mass concentration of class13", + 'CS14':"mass concentration of class14", + 'CS15':"mass concentration of class15", + 'CS16':"mass concentration of class16", + 'CS17':"mass concentration of class17", + 'CS18':"mass concentration of class18", + 'CS19':"mass concentration of class19", + 'CS**':"mass concentration of class**", + 'CS*':"mass concentration of class*", + 'CS1':"mass concentration of class1", + 'CS2':"mass concentration of class2", + 'CS3':"mass concentration of class3", + 'CS4':"mass concentration of class4", + 'CS5':"mass concentration of class5", + 'CS6':"mass concentration of class6", + 'CS7':"mass concentration of class7", + 'CS8':"mass concentration of class8", + 'CS9':"mass concentration of class9", + 'CS10':"mass concentration of class10", + 'CS11':"mass concentration of class11", + 'CS12':"mass concentration of class12", + 'CS13':"mass concentration of class13", + 'CS14':"mass concentration of class14", + 'CS15':"mass concentration of class15", + 'CS16':"mass concentration of class16", + 'CS17':"mass concentration of class17", + 'CS18':"mass concentration of class18", + 'CS19':"mass concentration of class19", + 'CS**':"mass concentration of class**", + 'CS*':"mass concentration of class*", + 'CS1':"mass concentration of class1", + 'CS2':"mass concentration of class2", + 'CS3':"mass concentration of class3", + 'CS4':"mass concentration of class4", + 'CS5':"mass concentration of class5", + 'CS6':"mass concentration of class6", + 'CS7':"mass concentration of class7", + 'CS8':"mass concentration of class8", + 'CS9':"mass concentration of class9", + 'CS10':"mass concentration of class10", + 'CS11':"mass concentration of class11", + 'CS12':"mass concentration of class12", + 'CS13':"mass concentration of class13", + 'CS14':"mass concentration of class14", + 'CS15':"mass concentration of class15", + 'CS16':"mass concentration of class16", + 'CS17':"mass concentration of class17", + 'CS18':"mass concentration of class18", + 'CS19':"mass concentration of class19", + 'CS**':"mass concentration of class**", + 'CS*':"mass concentration of class*", + 'CS1':"mass concentration of class1", + 'CS2':"mass concentration of class2", + 'CS3':"mass concentration of class3", + 'CS4':"mass concentration of class4", + 'CS5':"mass concentration of class5", + 'CS6':"mass concentration of class6", + 'CS7':"mass concentration of class7", + 'CS8':"mass concentration of class8", + 'CS9':"mass concentration of class9", + 'CS10':"mass concentration of class10", + 'CS11':"mass concentration of class11", + 'CS12':"mass concentration of class12", + 'CS13':"mass concentration of class13", + 'CS14':"mass concentration of class14", + 'CS15':"mass concentration of class15", + 'CS16':"mass concentration of class16", + 'CS17':"mass concentration of class17", + 'CS18':"mass concentration of class18", + 'CS19':"mass concentration of class19", + 'CS**':"mass concentration of class**", + 'CS*':"mass concentration of class*", + 'CS1':"mass concentration of class1", + 'CS2':"mass concentration of class2", + 'CS3':"mass concentration of class3", + 'CS4':"mass concentration of class4", + 'CS5':"mass concentration of class5", + 'CS6':"mass concentration of class6", + 'CS7':"mass concentration of class7", + 'CS8':"mass concentration of class8", + 'CS9':"mass concentration of class9", + 'CS10':"mass concentration of class10", + 'CS11':"mass concentration of class11", + 'CS12':"mass concentration of class12", + 'CS13':"mass concentration of class13", + 'CS14':"mass concentration of class14", + 'CS15':"mass concentration of class15", + 'CS16':"mass concentration of class16", + 'CS17':"mass concentration of class17", + 'CS18':"mass concentration of class18", + 'CS19':"mass concentration of class19", + 'CS**':"mass concentration of class**", + 'CS*':"mass concentration of class*", + 'CS1':"mass concentration of class1", + 'CS2':"mass concentration of class2", + 'CS3':"mass concentration of class3", + 'CS4':"mass concentration of class4", + 'CS5':"mass concentration of class5", + 'CS6':"mass concentration of class6", + 'CS7':"mass concentration of class7", + 'CS8':"mass concentration of class8", + 'CS9':"mass concentration of class9", + 'CS10':"mass concentration of class10", + 'CS11':"mass concentration of class11", + 'CS12':"mass concentration of class12", + 'CS13':"mass concentration of class13", + 'CS14':"mass concentration of class14", + 'CS15':"mass concentration of class15", + 'CS16':"mass concentration of class16", + 'CS17':"mass concentration of class17", + 'CS18':"mass concentration of class18", + 'CS19':"mass concentration of class19", + 'CS**':"mass concentration of class**", + 'CS*':"mass concentration of class*", + 'CS1':"mass concentration of class1", + 'CS2':"mass concentration of class2", + 'CS3':"mass concentration of class3", + 'CS4':"mass concentration of class4", + 'CS5':"mass concentration of class5", + 'CS6':"mass concentration of class6", + 'CS7':"mass concentration of class7", + 'CS8':"mass concentration of class8", + 'CS9':"mass concentration of class9", + 'CS10':"mass concentration of class10", + 'CS11':"mass concentration of class11", + 'CS12':"mass concentration of class12", + 'CS13':"mass concentration of class13", + 'CS14':"mass concentration of class14", + 'CS15':"mass concentration of class15", + 'CS16':"mass concentration of class16", + 'CS17':"mass concentration of class17", + 'CS18':"mass concentration of class18", + 'CS19':"mass concentration of class19", + 'CS**':"mass concentration of class**", + 'CS*':"mass concentration of class*", + 'CS1':"mass concentration of class1", + 'CS2':"mass concentration of class2", + 'CS3':"mass concentration of class3", + 'CS4':"mass concentration of class4", + 'CS5':"mass concentration of class5", + 'CS6':"mass concentration of class6", + 'CS7':"mass concentration of class7", + 'CS8':"mass concentration of class8", + 'CS9':"mass concentration of class9", + 'CS10':"mass concentration of class10", + 'CS11':"mass concentration of class11", + 'CS12':"mass concentration of class12", + 'CS13':"mass concentration of class13", + 'CS14':"mass concentration of class14", + 'CS15':"mass concentration of class15", + 'CS16':"mass concentration of class16", + 'CS17':"mass concentration of class17", + 'CS18':"mass concentration of class18", + 'CS19':"mass concentration of class19", + 'CS**':"mass concentration of class**", + 'CS*':"mass concentration of class*", + 'CS1':"mass concentration of class1", + 'CS2':"mass concentration of class2", + 'CS3':"mass concentration of class3", + 'CS4':"mass concentration of class4", + 'CS5':"mass concentration of class5", + 'CS6':"mass concentration of class6", + 'CS7':"mass concentration of class7", + 'CS8':"mass concentration of class8", + 'CS9':"mass concentration of class9", + 'CS10':"mass concentration of class10", + 'CS11':"mass concentration of class11", + 'CS12':"mass concentration of class12", + 'CS13':"mass concentration of class13", + 'CS14':"mass concentration of class14", + 'CS15':"mass concentration of class15", + 'CS16':"mass concentration of class16", + 'CS17':"mass concentration of class17", + 'CS18':"mass concentration of class18", + 'CS19':"mass concentration of class19", + 'CS**':"mass concentration of class**", + 'CS*':"mass concentration of class*", + 'CS1':"mass concentration of class1", + 'CS2':"mass concentration of class2", + 'CS3':"mass concentration of class3", + 'CS4':"mass concentration of class4", + 'CS5':"mass concentration of class5", + 'CS6':"mass concentration of class6", + 'CS7':"mass concentration of class7", + 'CS8':"mass concentration of class8", + 'CS9':"mass concentration of class9", + 'CS10':"mass concentration of class10", + 'CS11':"mass concentration of class11", + 'CS12':"mass concentration of class12", + 'CS13':"mass concentration of class13", + 'CS14':"mass concentration of class14", + 'CS15':"mass concentration of class15", + 'CS16':"mass concentration of class16", + 'CS17':"mass concentration of class17", + 'CS18':"mass concentration of class18", + 'CS19':"mass concentration of class19", + 'CS**':"mass concentration of class**", + 'CS*':"mass concentration of class*", + 'CS1':"mass concentration of class1", + 'CS2':"mass concentration of class2", + 'CS3':"mass concentration of class3", + 'CS4':"mass concentration of class4", + 'CS5':"mass concentration of class5", + 'CS6':"mass concentration of class6", + 'CS7':"mass concentration of class7", + 'CS8':"mass concentration of class8", + 'CS9':"mass concentration of class9", + 'CS10':"mass concentration of class10", + 'CS11':"mass concentration of class11", + 'CS12':"mass concentration of class12", + 'CS13':"mass concentration of class13", + 'CS14':"mass concentration of class14", + 'CS15':"mass concentration of class15", + 'CS16':"mass concentration of class16", + 'CS17':"mass concentration of class17", + 'CS18':"mass concentration of class18", + 'CS19':"mass concentration of class19", + 'CS**':"mass concentration of class**", + 'CS*':"mass concentration of class*", + 'CS1':"mass concentration of class1", + 'CS2':"mass concentration of class2", + 'CS3':"mass concentration of class3", + 'CS4':"mass concentration of class4", + 'CS5':"mass concentration of class5", + 'CS6':"mass concentration of class6", + 'CS7':"mass concentration of class7", + 'CS8':"mass concentration of class8", + 'CS9':"mass concentration of class9", + 'CS10':"mass concentration of class10", + 'CS11':"mass concentration of class11", + 'CS12':"mass concentration of class12", + 'CS13':"mass concentration of class13", + 'CS14':"mass concentration of class14", + 'CS15':"mass concentration of class15", + 'CS16':"mass concentration of class16", + 'CS17':"mass concentration of class17", + 'CS18':"mass concentration of class18", + 'CS19':"mass concentration of class19", + 'CS**':"mass concentration of class**", + 'CS*':"mass concentration of class*", + 'CS1':"mass concentration of class1", + 'CS2':"mass concentration of class2", + 'CS3':"mass concentration of class3", + 'CS4':"mass concentration of class4", + 'CS5':"mass concentration of class5", + 'CS6':"mass concentration of class6", + 'CS7':"mass concentration of class7", + 'CS8':"mass concentration of class8", + 'CS9':"mass concentration of class9", + 'CS10':"mass concentration of class10", + 'CS11':"mass concentration of class11", + 'CS12':"mass concentration of class12", + 'CS13':"mass concentration of class13", + 'CS14':"mass concentration of class14", + 'CS15':"mass concentration of class15", + 'CS16':"mass concentration of class16", + 'CS17':"mass concentration of class17", + 'CS18':"mass concentration of class18", + 'CS19':"mass concentration of class19", + 'CS**':"mass concentration of class**", + 'CS*':"mass concentration of class*", + 'CS1':"mass concentration of class1", + 'CS2':"mass concentration of class2", + 'CS3':"mass concentration of class3", + 'CS4':"mass concentration of class4", + 'CS5':"mass concentration of class5", + 'CS6':"mass concentration of class6", + 'CS7':"mass concentration of class7", + 'CS8':"mass concentration of class8", + 'CS9':"mass concentration of class9", + 'CS10':"mass concentration of class10", + 'CS11':"mass concentration of class11", + 'CS12':"mass concentration of class12", + 'CS13':"mass concentration of class13", + 'CS14':"mass concentration of class14", + 'CS15':"mass concentration of class15", + 'CS16':"mass concentration of class16", + 'CS17':"mass concentration of class17", + 'CS18':"mass concentration of class18", + 'CS19':"mass concentration of class19", + 'CS**':"mass concentration of class**", + 'C2DS*':"mass concentration of class* for 2D graphic printouts", + 'C2DS1':"mass concentration of class1 for 2D graphic printouts", + 'C2DS2':"mass concentration of class2 for 2D graphic printouts", + 'C2DS3':"mass concentration of class3 for 2D graphic printouts", + 'C2DS4':"mass concentration of class4 for 2D graphic printouts", + 'C2DS5':"mass concentration of class5 for 2D graphic printouts", + 'C2DS6':"mass concentration of class6 for 2D graphic printouts", + 'C2DS7':"mass concentration of class7 for 2D graphic printouts", + 'C2DS8':"mass concentration of class8 for 2D graphic printouts", + 'C2DS9':"mass concentration of class9 for 2D graphic printouts", + 'C2DS10':"mass concentration of class10 for 2D graphic printouts", + 'C2DS11':"mass concentration of class11 for 2D graphic printouts", + 'C2DS12':"mass concentration of class12 for 2D graphic printouts", + 'C2DS13':"mass concentration of class13 for 2D graphic printouts", + 'C2DS14':"mass concentration of class14 for 2D graphic printouts", + 'C2DS15':"mass concentration of class15 for 2D graphic printouts", + 'C2DS16':"mass concentration of class16 for 2D graphic printouts", + 'C2DS17':"mass concentration of class17 for 2D graphic printouts", + 'C2DS18':"mass concentration of class18 for 2D graphic printouts", + 'C2DS19':"mass concentration of class19 for 2D graphic printouts", + 'C2DS**':"mass concentration of class** for 2D graphic printouts", + 'C2DS*':"mass concentration of class* for 2D graphic printouts", + 'C2DS1':"mass concentration of class1 for 2D graphic printouts", + 'C2DS2':"mass concentration of class2 for 2D graphic printouts", + 'C2DS3':"mass concentration of class3 for 2D graphic printouts", + 'C2DS4':"mass concentration of class4 for 2D graphic printouts", + 'C2DS5':"mass concentration of class5 for 2D graphic printouts", + 'C2DS6':"mass concentration of class6 for 2D graphic printouts", + 'C2DS7':"mass concentration of class7 for 2D graphic printouts", + 'C2DS8':"mass concentration of class8 for 2D graphic printouts", + 'C2DS9':"mass concentration of class9 for 2D graphic printouts", + 'C2DS10':"mass concentration of class10 for 2D graphic printouts", + 'C2DS11':"mass concentration of class11 for 2D graphic printouts", + 'C2DS12':"mass concentration of class12 for 2D graphic printouts", + 'C2DS13':"mass concentration of class13 for 2D graphic printouts", + 'C2DS14':"mass concentration of class14 for 2D graphic printouts", + 'C2DS15':"mass concentration of class15 for 2D graphic printouts", + 'C2DS16':"mass concentration of class16 for 2D graphic printouts", + 'C2DS17':"mass concentration of class17 for 2D graphic printouts", + 'C2DS18':"mass concentration of class18 for 2D graphic printouts", + 'C2DS19':"mass concentration of class19 for 2D graphic printouts", + 'C2DS**':"mass concentration of class** for 2D graphic printouts", + 'C2DS*':"mass concentration of class* for 2D graphic printouts", + 'C2DS1':"mass concentration of class1 for 2D graphic printouts", + 'C2DS2':"mass concentration of class2 for 2D graphic printouts", + 'C2DS3':"mass concentration of class3 for 2D graphic printouts", + 'C2DS4':"mass concentration of class4 for 2D graphic printouts", + 'C2DS5':"mass concentration of class5 for 2D graphic printouts", + 'C2DS6':"mass concentration of class6 for 2D graphic printouts", + 'C2DS7':"mass concentration of class7 for 2D graphic printouts", + 'C2DS8':"mass concentration of class8 for 2D graphic printouts", + 'C2DS9':"mass concentration of class9 for 2D graphic printouts", + 'C2DS10':"mass concentration of class10 for 2D graphic printouts", + 'C2DS11':"mass concentration of class11 for 2D graphic printouts", + 'C2DS12':"mass concentration of class12 for 2D graphic printouts", + 'C2DS13':"mass concentration of class13 for 2D graphic printouts", + 'C2DS14':"mass concentration of class14 for 2D graphic printouts", + 'C2DS15':"mass concentration of class15 for 2D graphic printouts", + 'C2DS16':"mass concentration of class16 for 2D graphic printouts", + 'C2DS17':"mass concentration of class17 for 2D graphic printouts", + 'C2DS18':"mass concentration of class18 for 2D graphic printouts", + 'C2DS19':"mass concentration of class19 for 2D graphic printouts", + 'C2DS**':"mass concentration of class** for 2D graphic printouts", + 'C2DS*':"mass concentration of class* for 2D graphic printouts", + 'C2DS1':"mass concentration of class1 for 2D graphic printouts", + 'C2DS2':"mass concentration of class2 for 2D graphic printouts", + 'C2DS3':"mass concentration of class3 for 2D graphic printouts", + 'C2DS4':"mass concentration of class4 for 2D graphic printouts", + 'C2DS5':"mass concentration of class5 for 2D graphic printouts", + 'C2DS6':"mass concentration of class6 for 2D graphic printouts", + 'C2DS7':"mass concentration of class7 for 2D graphic printouts", + 'C2DS8':"mass concentration of class8 for 2D graphic printouts", + 'C2DS9':"mass concentration of class9 for 2D graphic printouts", + 'C2DS10':"mass concentration of class10 for 2D graphic printouts", + 'C2DS11':"mass concentration of class11 for 2D graphic printouts", + 'C2DS12':"mass concentration of class12 for 2D graphic printouts", + 'C2DS13':"mass concentration of class13 for 2D graphic printouts", + 'C2DS14':"mass concentration of class14 for 2D graphic printouts", + 'C2DS15':"mass concentration of class15 for 2D graphic printouts", + 'C2DS16':"mass concentration of class16 for 2D graphic printouts", + 'C2DS17':"mass concentration of class17 for 2D graphic printouts", + 'C2DS18':"mass concentration of class18 for 2D graphic printouts", + 'C2DS19':"mass concentration of class19 for 2D graphic printouts", + 'C2DS**':"mass concentration of class** for 2D graphic printouts", + 'C2DS*':"mass concentration of class* for 2D graphic printouts", + 'C2DS1':"mass concentration of class1 for 2D graphic printouts", + 'C2DS2':"mass concentration of class2 for 2D graphic printouts", + 'C2DS3':"mass concentration of class3 for 2D graphic printouts", + 'C2DS4':"mass concentration of class4 for 2D graphic printouts", + 'C2DS5':"mass concentration of class5 for 2D graphic printouts", + 'C2DS6':"mass concentration of class6 for 2D graphic printouts", + 'C2DS7':"mass concentration of class7 for 2D graphic printouts", + 'C2DS8':"mass concentration of class8 for 2D graphic printouts", + 'C2DS9':"mass concentration of class9 for 2D graphic printouts", + 'C2DS10':"mass concentration of class10 for 2D graphic printouts", + 'C2DS11':"mass concentration of class11 for 2D graphic printouts", + 'C2DS12':"mass concentration of class12 for 2D graphic printouts", + 'C2DS13':"mass concentration of class13 for 2D graphic printouts", + 'C2DS14':"mass concentration of class14 for 2D graphic printouts", + 'C2DS15':"mass concentration of class15 for 2D graphic printouts", + 'C2DS16':"mass concentration of class16 for 2D graphic printouts", + 'C2DS17':"mass concentration of class17 for 2D graphic printouts", + 'C2DS18':"mass concentration of class18 for 2D graphic printouts", + 'C2DS19':"mass concentration of class19 for 2D graphic printouts", + 'C2DS**':"mass concentration of class** for 2D graphic printouts", + 'C2DS*':"mass concentration of class* for 2D graphic printouts", + 'C2DS1':"mass concentration of class1 for 2D graphic printouts", + 'C2DS2':"mass concentration of class2 for 2D graphic printouts", + 'C2DS3':"mass concentration of class3 for 2D graphic printouts", + 'C2DS4':"mass concentration of class4 for 2D graphic printouts", + 'C2DS5':"mass concentration of class5 for 2D graphic printouts", + 'C2DS6':"mass concentration of class6 for 2D graphic printouts", + 'C2DS7':"mass concentration of class7 for 2D graphic printouts", + 'C2DS8':"mass concentration of class8 for 2D graphic printouts", + 'C2DS9':"mass concentration of class9 for 2D graphic printouts", + 'C2DS10':"mass concentration of class10 for 2D graphic printouts", + 'C2DS11':"mass concentration of class11 for 2D graphic printouts", + 'C2DS12':"mass concentration of class12 for 2D graphic printouts", + 'C2DS13':"mass concentration of class13 for 2D graphic printouts", + 'C2DS14':"mass concentration of class14 for 2D graphic printouts", + 'C2DS15':"mass concentration of class15 for 2D graphic printouts", + 'C2DS16':"mass concentration of class16 for 2D graphic printouts", + 'C2DS17':"mass concentration of class17 for 2D graphic printouts", + 'C2DS18':"mass concentration of class18 for 2D graphic printouts", + 'C2DS19':"mass concentration of class19 for 2D graphic printouts", + 'C2DS**':"mass concentration of class** for 2D graphic printouts", + 'C2DS*':"mass concentration of class* for 2D graphic printouts", + 'C2DS1':"mass concentration of class1 for 2D graphic printouts", + 'C2DS2':"mass concentration of class2 for 2D graphic printouts", + 'C2DS3':"mass concentration of class3 for 2D graphic printouts", + 'C2DS4':"mass concentration of class4 for 2D graphic printouts", + 'C2DS5':"mass concentration of class5 for 2D graphic printouts", + 'C2DS6':"mass concentration of class6 for 2D graphic printouts", + 'C2DS7':"mass concentration of class7 for 2D graphic printouts", + 'C2DS8':"mass concentration of class8 for 2D graphic printouts", + 'C2DS9':"mass concentration of class9 for 2D graphic printouts", + 'C2DS10':"mass concentration of class10 for 2D graphic printouts", + 'C2DS11':"mass concentration of class11 for 2D graphic printouts", + 'C2DS12':"mass concentration of class12 for 2D graphic printouts", + 'C2DS13':"mass concentration of class13 for 2D graphic printouts", + 'C2DS14':"mass concentration of class14 for 2D graphic printouts", + 'C2DS15':"mass concentration of class15 for 2D graphic printouts", + 'C2DS16':"mass concentration of class16 for 2D graphic printouts", + 'C2DS17':"mass concentration of class17 for 2D graphic printouts", + 'C2DS18':"mass concentration of class18 for 2D graphic printouts", + 'C2DS19':"mass concentration of class19 for 2D graphic printouts", + 'C2DS**':"mass concentration of class** for 2D graphic printouts", + 'C2DS*':"mass concentration of class* for 2D graphic printouts", + 'C2DS1':"mass concentration of class1 for 2D graphic printouts", + 'C2DS2':"mass concentration of class2 for 2D graphic printouts", + 'C2DS3':"mass concentration of class3 for 2D graphic printouts", + 'C2DS4':"mass concentration of class4 for 2D graphic printouts", + 'C2DS5':"mass concentration of class5 for 2D graphic printouts", + 'C2DS6':"mass concentration of class6 for 2D graphic printouts", + 'C2DS7':"mass concentration of class7 for 2D graphic printouts", + 'C2DS8':"mass concentration of class8 for 2D graphic printouts", + 'C2DS9':"mass concentration of class9 for 2D graphic printouts", + 'C2DS10':"mass concentration of class10 for 2D graphic printouts", + 'C2DS11':"mass concentration of class11 for 2D graphic printouts", + 'C2DS12':"mass concentration of class12 for 2D graphic printouts", + 'C2DS13':"mass concentration of class13 for 2D graphic printouts", + 'C2DS14':"mass concentration of class14 for 2D graphic printouts", + 'C2DS15':"mass concentration of class15 for 2D graphic printouts", + 'C2DS16':"mass concentration of class16 for 2D graphic printouts", + 'C2DS17':"mass concentration of class17 for 2D graphic printouts", + 'C2DS18':"mass concentration of class18 for 2D graphic printouts", + 'C2DS19':"mass concentration of class19 for 2D graphic printouts", + 'C2DS**':"mass concentration of class** for 2D graphic printouts", + 'C2DS*':"mass concentration of class* for 2D graphic printouts", + 'C2DS1':"mass concentration of class1 for 2D graphic printouts", + 'C2DS2':"mass concentration of class2 for 2D graphic printouts", + 'C2DS3':"mass concentration of class3 for 2D graphic printouts", + 'C2DS4':"mass concentration of class4 for 2D graphic printouts", + 'C2DS5':"mass concentration of class5 for 2D graphic printouts", + 'C2DS6':"mass concentration of class6 for 2D graphic printouts", + 'C2DS7':"mass concentration of class7 for 2D graphic printouts", + 'C2DS8':"mass concentration of class8 for 2D graphic printouts", + 'C2DS9':"mass concentration of class9 for 2D graphic printouts", + 'C2DS10':"mass concentration of class10 for 2D graphic printouts", + 'C2DS11':"mass concentration of class11 for 2D graphic printouts", + 'C2DS12':"mass concentration of class12 for 2D graphic printouts", + 'C2DS13':"mass concentration of class13 for 2D graphic printouts", + 'C2DS14':"mass concentration of class14 for 2D graphic printouts", + 'C2DS15':"mass concentration of class15 for 2D graphic printouts", + 'C2DS16':"mass concentration of class16 for 2D graphic printouts", + 'C2DS17':"mass concentration of class17 for 2D graphic printouts", + 'C2DS18':"mass concentration of class18 for 2D graphic printouts", + 'C2DS19':"mass concentration of class19 for 2D graphic printouts", + 'C2DS**':"mass concentration of class** for 2D graphic printouts", + 'C2DS*':"mass concentration of class* for 2D graphic printouts", + 'C2DS1':"mass concentration of class1 for 2D graphic printouts", + 'C2DS2':"mass concentration of class2 for 2D graphic printouts", + 'C2DS3':"mass concentration of class3 for 2D graphic printouts", + 'C2DS4':"mass concentration of class4 for 2D graphic printouts", + 'C2DS5':"mass concentration of class5 for 2D graphic printouts", + 'C2DS6':"mass concentration of class6 for 2D graphic printouts", + 'C2DS7':"mass concentration of class7 for 2D graphic printouts", + 'C2DS8':"mass concentration of class8 for 2D graphic printouts", + 'C2DS9':"mass concentration of class9 for 2D graphic printouts", + 'C2DS10':"mass concentration of class10 for 2D graphic printouts", + 'C2DS11':"mass concentration of class11 for 2D graphic printouts", + 'C2DS12':"mass concentration of class12 for 2D graphic printouts", + 'C2DS13':"mass concentration of class13 for 2D graphic printouts", + 'C2DS14':"mass concentration of class14 for 2D graphic printouts", + 'C2DS15':"mass concentration of class15 for 2D graphic printouts", + 'C2DS16':"mass concentration of class16 for 2D graphic printouts", + 'C2DS17':"mass concentration of class17 for 2D graphic printouts", + 'C2DS18':"mass concentration of class18 for 2D graphic printouts", + 'C2DS19':"mass concentration of class19 for 2D graphic printouts", + 'C2DS**':"mass concentration of class** for 2D graphic printouts", + 'C2DS*':"mass concentration of class* for 2D graphic printouts", + 'C2DS1':"mass concentration of class1 for 2D graphic printouts", + 'C2DS2':"mass concentration of class2 for 2D graphic printouts", + 'C2DS3':"mass concentration of class3 for 2D graphic printouts", + 'C2DS4':"mass concentration of class4 for 2D graphic printouts", + 'C2DS5':"mass concentration of class5 for 2D graphic printouts", + 'C2DS6':"mass concentration of class6 for 2D graphic printouts", + 'C2DS7':"mass concentration of class7 for 2D graphic printouts", + 'C2DS8':"mass concentration of class8 for 2D graphic printouts", + 'C2DS9':"mass concentration of class9 for 2D graphic printouts", + 'C2DS10':"mass concentration of class10 for 2D graphic printouts", + 'C2DS11':"mass concentration of class11 for 2D graphic printouts", + 'C2DS12':"mass concentration of class12 for 2D graphic printouts", + 'C2DS13':"mass concentration of class13 for 2D graphic printouts", + 'C2DS14':"mass concentration of class14 for 2D graphic printouts", + 'C2DS15':"mass concentration of class15 for 2D graphic printouts", + 'C2DS16':"mass concentration of class16 for 2D graphic printouts", + 'C2DS17':"mass concentration of class17 for 2D graphic printouts", + 'C2DS18':"mass concentration of class18 for 2D graphic printouts", + 'C2DS19':"mass concentration of class19 for 2D graphic printouts", + 'C2DS**':"mass concentration of class** for 2D graphic printouts", + 'C2DS*':"mass concentration of class* for 2D graphic printouts", + 'C2DS1':"mass concentration of class1 for 2D graphic printouts", + 'C2DS2':"mass concentration of class2 for 2D graphic printouts", + 'C2DS3':"mass concentration of class3 for 2D graphic printouts", + 'C2DS4':"mass concentration of class4 for 2D graphic printouts", + 'C2DS5':"mass concentration of class5 for 2D graphic printouts", + 'C2DS6':"mass concentration of class6 for 2D graphic printouts", + 'C2DS7':"mass concentration of class7 for 2D graphic printouts", + 'C2DS8':"mass concentration of class8 for 2D graphic printouts", + 'C2DS9':"mass concentration of class9 for 2D graphic printouts", + 'C2DS10':"mass concentration of class10 for 2D graphic printouts", + 'C2DS11':"mass concentration of class11 for 2D graphic printouts", + 'C2DS12':"mass concentration of class12 for 2D graphic printouts", + 'C2DS13':"mass concentration of class13 for 2D graphic printouts", + 'C2DS14':"mass concentration of class14 for 2D graphic printouts", + 'C2DS15':"mass concentration of class15 for 2D graphic printouts", + 'C2DS16':"mass concentration of class16 for 2D graphic printouts", + 'C2DS17':"mass concentration of class17 for 2D graphic printouts", + 'C2DS18':"mass concentration of class18 for 2D graphic printouts", + 'C2DS19':"mass concentration of class19 for 2D graphic printouts", + 'C2DS**':"mass concentration of class** for 2D graphic printouts", + 'C2DS*':"mass concentration of class* for 2D graphic printouts", + 'C2DS1':"mass concentration of class1 for 2D graphic printouts", + 'C2DS2':"mass concentration of class2 for 2D graphic printouts", + 'C2DS3':"mass concentration of class3 for 2D graphic printouts", + 'C2DS4':"mass concentration of class4 for 2D graphic printouts", + 'C2DS5':"mass concentration of class5 for 2D graphic printouts", + 'C2DS6':"mass concentration of class6 for 2D graphic printouts", + 'C2DS7':"mass concentration of class7 for 2D graphic printouts", + 'C2DS8':"mass concentration of class8 for 2D graphic printouts", + 'C2DS9':"mass concentration of class9 for 2D graphic printouts", + 'C2DS10':"mass concentration of class10 for 2D graphic printouts", + 'C2DS11':"mass concentration of class11 for 2D graphic printouts", + 'C2DS12':"mass concentration of class12 for 2D graphic printouts", + 'C2DS13':"mass concentration of class13 for 2D graphic printouts", + 'C2DS14':"mass concentration of class14 for 2D graphic printouts", + 'C2DS15':"mass concentration of class15 for 2D graphic printouts", + 'C2DS16':"mass concentration of class16 for 2D graphic printouts", + 'C2DS17':"mass concentration of class17 for 2D graphic printouts", + 'C2DS18':"mass concentration of class18 for 2D graphic printouts", + 'C2DS19':"mass concentration of class19 for 2D graphic printouts", + 'C2DS**':"mass concentration of class** for 2D graphic printouts", + 'C2DS*':"mass concentration of class* for 2D graphic printouts", + 'C2DS1':"mass concentration of class1 for 2D graphic printouts", + 'C2DS2':"mass concentration of class2 for 2D graphic printouts", + 'C2DS3':"mass concentration of class3 for 2D graphic printouts", + 'C2DS4':"mass concentration of class4 for 2D graphic printouts", + 'C2DS5':"mass concentration of class5 for 2D graphic printouts", + 'C2DS6':"mass concentration of class6 for 2D graphic printouts", + 'C2DS7':"mass concentration of class7 for 2D graphic printouts", + 'C2DS8':"mass concentration of class8 for 2D graphic printouts", + 'C2DS9':"mass concentration of class9 for 2D graphic printouts", + 'C2DS10':"mass concentration of class10 for 2D graphic printouts", + 'C2DS11':"mass concentration of class11 for 2D graphic printouts", + 'C2DS12':"mass concentration of class12 for 2D graphic printouts", + 'C2DS13':"mass concentration of class13 for 2D graphic printouts", + 'C2DS14':"mass concentration of class14 for 2D graphic printouts", + 'C2DS15':"mass concentration of class15 for 2D graphic printouts", + 'C2DS16':"mass concentration of class16 for 2D graphic printouts", + 'C2DS17':"mass concentration of class17 for 2D graphic printouts", + 'C2DS18':"mass concentration of class18 for 2D graphic printouts", + 'C2DS19':"mass concentration of class19 for 2D graphic printouts", + 'C2DS**':"mass concentration of class** for 2D graphic printouts", + 'C2DS*':"mass concentration of class* for 2D graphic printouts", + 'C2DS1':"mass concentration of class1 for 2D graphic printouts", + 'C2DS2':"mass concentration of class2 for 2D graphic printouts", + 'C2DS3':"mass concentration of class3 for 2D graphic printouts", + 'C2DS4':"mass concentration of class4 for 2D graphic printouts", + 'C2DS5':"mass concentration of class5 for 2D graphic printouts", + 'C2DS6':"mass concentration of class6 for 2D graphic printouts", + 'C2DS7':"mass concentration of class7 for 2D graphic printouts", + 'C2DS8':"mass concentration of class8 for 2D graphic printouts", + 'C2DS9':"mass concentration of class9 for 2D graphic printouts", + 'C2DS10':"mass concentration of class10 for 2D graphic printouts", + 'C2DS11':"mass concentration of class11 for 2D graphic printouts", + 'C2DS12':"mass concentration of class12 for 2D graphic printouts", + 'C2DS13':"mass concentration of class13 for 2D graphic printouts", + 'C2DS14':"mass concentration of class14 for 2D graphic printouts", + 'C2DS15':"mass concentration of class15 for 2D graphic printouts", + 'C2DS16':"mass concentration of class16 for 2D graphic printouts", + 'C2DS17':"mass concentration of class17 for 2D graphic printouts", + 'C2DS18':"mass concentration of class18 for 2D graphic printouts", + 'C2DS19':"mass concentration of class19 for 2D graphic printouts", + 'C2DS**':"mass concentration of class** for 2D graphic printouts", + 'C2DS*':"mass concentration of class* for 2D graphic printouts", + 'C2DS1':"mass concentration of class1 for 2D graphic printouts", + 'C2DS2':"mass concentration of class2 for 2D graphic printouts", + 'C2DS3':"mass concentration of class3 for 2D graphic printouts", + 'C2DS4':"mass concentration of class4 for 2D graphic printouts", + 'C2DS5':"mass concentration of class5 for 2D graphic printouts", + 'C2DS6':"mass concentration of class6 for 2D graphic printouts", + 'C2DS7':"mass concentration of class7 for 2D graphic printouts", + 'C2DS8':"mass concentration of class8 for 2D graphic printouts", + 'C2DS9':"mass concentration of class9 for 2D graphic printouts", + 'C2DS10':"mass concentration of class10 for 2D graphic printouts", + 'C2DS11':"mass concentration of class11 for 2D graphic printouts", + 'C2DS12':"mass concentration of class12 for 2D graphic printouts", + 'C2DS13':"mass concentration of class13 for 2D graphic printouts", + 'C2DS14':"mass concentration of class14 for 2D graphic printouts", + 'C2DS15':"mass concentration of class15 for 2D graphic printouts", + 'C2DS16':"mass concentration of class16 for 2D graphic printouts", + 'C2DS17':"mass concentration of class17 for 2D graphic printouts", + 'C2DS18':"mass concentration of class18 for 2D graphic printouts", + 'C2DS19':"mass concentration of class19 for 2D graphic printouts", + 'C2DS**':"mass concentration of class** for 2D graphic printouts", + 'C2DS*':"mass concentration of class* for 2D graphic printouts", + 'C2DS1':"mass concentration of class1 for 2D graphic printouts", + 'C2DS2':"mass concentration of class2 for 2D graphic printouts", + 'C2DS3':"mass concentration of class3 for 2D graphic printouts", + 'C2DS4':"mass concentration of class4 for 2D graphic printouts", + 'C2DS5':"mass concentration of class5 for 2D graphic printouts", + 'C2DS6':"mass concentration of class6 for 2D graphic printouts", + 'C2DS7':"mass concentration of class7 for 2D graphic printouts", + 'C2DS8':"mass concentration of class8 for 2D graphic printouts", + 'C2DS9':"mass concentration of class9 for 2D graphic printouts", + 'C2DS10':"mass concentration of class10 for 2D graphic printouts", + 'C2DS11':"mass concentration of class11 for 2D graphic printouts", + 'C2DS12':"mass concentration of class12 for 2D graphic printouts", + 'C2DS13':"mass concentration of class13 for 2D graphic printouts", + 'C2DS14':"mass concentration of class14 for 2D graphic printouts", + 'C2DS15':"mass concentration of class15 for 2D graphic printouts", + 'C2DS16':"mass concentration of class16 for 2D graphic printouts", + 'C2DS17':"mass concentration of class17 for 2D graphic printouts", + 'C2DS18':"mass concentration of class18 for 2D graphic printouts", + 'C2DS19':"mass concentration of class19 for 2D graphic printouts", + 'C2DS**':"mass concentration of class** for 2D graphic printouts", + 'C2DS*':"mass concentration of class* for 2D graphic printouts", + 'C2DS1':"mass concentration of class1 for 2D graphic printouts", + 'C2DS2':"mass concentration of class2 for 2D graphic printouts", + 'C2DS3':"mass concentration of class3 for 2D graphic printouts", + 'C2DS4':"mass concentration of class4 for 2D graphic printouts", + 'C2DS5':"mass concentration of class5 for 2D graphic printouts", + 'C2DS6':"mass concentration of class6 for 2D graphic printouts", + 'C2DS7':"mass concentration of class7 for 2D graphic printouts", + 'C2DS8':"mass concentration of class8 for 2D graphic printouts", + 'C2DS9':"mass concentration of class9 for 2D graphic printouts", + 'C2DS10':"mass concentration of class10 for 2D graphic printouts", + 'C2DS11':"mass concentration of class11 for 2D graphic printouts", + 'C2DS12':"mass concentration of class12 for 2D graphic printouts", + 'C2DS13':"mass concentration of class13 for 2D graphic printouts", + 'C2DS14':"mass concentration of class14 for 2D graphic printouts", + 'C2DS15':"mass concentration of class15 for 2D graphic printouts", + 'C2DS16':"mass concentration of class16 for 2D graphic printouts", + 'C2DS17':"mass concentration of class17 for 2D graphic printouts", + 'C2DS18':"mass concentration of class18 for 2D graphic printouts", + 'C2DS19':"mass concentration of class19 for 2D graphic printouts", + 'C2DS**':"mass concentration of class** for 2D graphic printouts", + 'C2DS*':"mass concentration of class* for 2D graphic printouts", + 'C2DS1':"mass concentration of class1 for 2D graphic printouts", + 'C2DS2':"mass concentration of class2 for 2D graphic printouts", + 'C2DS3':"mass concentration of class3 for 2D graphic printouts", + 'C2DS4':"mass concentration of class4 for 2D graphic printouts", + 'C2DS5':"mass concentration of class5 for 2D graphic printouts", + 'C2DS6':"mass concentration of class6 for 2D graphic printouts", + 'C2DS7':"mass concentration of class7 for 2D graphic printouts", + 'C2DS8':"mass concentration of class8 for 2D graphic printouts", + 'C2DS9':"mass concentration of class9 for 2D graphic printouts", + 'C2DS10':"mass concentration of class10 for 2D graphic printouts", + 'C2DS11':"mass concentration of class11 for 2D graphic printouts", + 'C2DS12':"mass concentration of class12 for 2D graphic printouts", + 'C2DS13':"mass concentration of class13 for 2D graphic printouts", + 'C2DS14':"mass concentration of class14 for 2D graphic printouts", + 'C2DS15':"mass concentration of class15 for 2D graphic printouts", + 'C2DS16':"mass concentration of class16 for 2D graphic printouts", + 'C2DS17':"mass concentration of class17 for 2D graphic printouts", + 'C2DS18':"mass concentration of class18 for 2D graphic printouts", + 'C2DS19':"mass concentration of class19 for 2D graphic printouts", + 'C2DS**':"mass concentration of class** for 2D graphic printouts", + 'C2DS*':"mass concentration of class* for 2D graphic printouts", + 'C2DS1':"mass concentration of class1 for 2D graphic printouts", + 'C2DS2':"mass concentration of class2 for 2D graphic printouts", + 'C2DS3':"mass concentration of class3 for 2D graphic printouts", + 'C2DS4':"mass concentration of class4 for 2D graphic printouts", + 'C2DS5':"mass concentration of class5 for 2D graphic printouts", + 'C2DS6':"mass concentration of class6 for 2D graphic printouts", + 'C2DS7':"mass concentration of class7 for 2D graphic printouts", + 'C2DS8':"mass concentration of class8 for 2D graphic printouts", + 'C2DS9':"mass concentration of class9 for 2D graphic printouts", + 'C2DS10':"mass concentration of class10 for 2D graphic printouts", + 'C2DS11':"mass concentration of class11 for 2D graphic printouts", + 'C2DS12':"mass concentration of class12 for 2D graphic printouts", + 'C2DS13':"mass concentration of class13 for 2D graphic printouts", + 'C2DS14':"mass concentration of class14 for 2D graphic printouts", + 'C2DS15':"mass concentration of class15 for 2D graphic printouts", + 'C2DS16':"mass concentration of class16 for 2D graphic printouts", + 'C2DS17':"mass concentration of class17 for 2D graphic printouts", + 'C2DS18':"mass concentration of class18 for 2D graphic printouts", + 'C2DS19':"mass concentration of class19 for 2D graphic printouts", + 'C2DS**':"mass concentration of class** for 2D graphic printouts", + 'C2DS*':"mass concentration of class* for 2D graphic printouts", + 'C2DS1':"mass concentration of class1 for 2D graphic printouts", + 'C2DS2':"mass concentration of class2 for 2D graphic printouts", + 'C2DS3':"mass concentration of class3 for 2D graphic printouts", + 'C2DS4':"mass concentration of class4 for 2D graphic printouts", + 'C2DS5':"mass concentration of class5 for 2D graphic printouts", + 'C2DS6':"mass concentration of class6 for 2D graphic printouts", + 'C2DS7':"mass concentration of class7 for 2D graphic printouts", + 'C2DS8':"mass concentration of class8 for 2D graphic printouts", + 'C2DS9':"mass concentration of class9 for 2D graphic printouts", + 'C2DS10':"mass concentration of class10 for 2D graphic printouts", + 'C2DS11':"mass concentration of class11 for 2D graphic printouts", + 'C2DS12':"mass concentration of class12 for 2D graphic printouts", + 'C2DS13':"mass concentration of class13 for 2D graphic printouts", + 'C2DS14':"mass concentration of class14 for 2D graphic printouts", + 'C2DS15':"mass concentration of class15 for 2D graphic printouts", + 'C2DS16':"mass concentration of class16 for 2D graphic printouts", + 'C2DS17':"mass concentration of class17 for 2D graphic printouts", + 'C2DS18':"mass concentration of class18 for 2D graphic printouts", + 'C2DS19':"mass concentration of class19 for 2D graphic printouts", + 'C2DS**':"mass concentration of class** for 2D graphic printouts", + 'SVX*':"sediment* viscosity along x axis (m2/s) - only 3D", + 'SVX1':"sediment1 viscosity along x axis (m2/s) - only 3D", + 'SVX2':"sediment2 viscosity along x axis (m2/s) - only 3D", + 'SVX3':"sediment3 viscosity along x axis (m2/s) - only 3D", + 'SVX4':"sediment4 viscosity along x axis (m2/s) - only 3D", + 'SVX5':"sediment5 viscosity along x axis (m2/s) - only 3D", + 'SVX6':"sediment6 viscosity along x axis (m2/s) - only 3D", + 'SVX7':"sediment7 viscosity along x axis (m2/s) - only 3D", + 'SVX8':"sediment8 viscosity along x axis (m2/s) - only 3D", + 'SVX9':"sediment9 viscosity along x axis (m2/s) - only 3D", + 'SVX10':"sediment10 viscosity along x axis (m2/s) - only 3D", + 'SVX11':"sediment11 viscosity along x axis (m2/s) - only 3D", + 'SVX12':"sediment12 viscosity along x axis (m2/s) - only 3D", + 'SVX13':"sediment13 viscosity along x axis (m2/s) - only 3D", + 'SVX14':"sediment14 viscosity along x axis (m2/s) - only 3D", + 'SVX15':"sediment15 viscosity along x axis (m2/s) - only 3D", + 'SVX16':"sediment16 viscosity along x axis (m2/s) - only 3D", + 'SVX17':"sediment17 viscosity along x axis (m2/s) - only 3D", + 'SVX18':"sediment18 viscosity along x axis (m2/s) - only 3D", + 'SVX19':"sediment19 viscosity along x axis (m2/s) - only 3D", + 'SVX**':"sediment** viscosity along x axis (m2/s) - only 3D", + 'SVX*':"sediment* viscosity along x axis (m2/s) - only 3D", + 'SVX1':"sediment1 viscosity along x axis (m2/s) - only 3D", + 'SVX2':"sediment2 viscosity along x axis (m2/s) - only 3D", + 'SVX3':"sediment3 viscosity along x axis (m2/s) - only 3D", + 'SVX4':"sediment4 viscosity along x axis (m2/s) - only 3D", + 'SVX5':"sediment5 viscosity along x axis (m2/s) - only 3D", + 'SVX6':"sediment6 viscosity along x axis (m2/s) - only 3D", + 'SVX7':"sediment7 viscosity along x axis (m2/s) - only 3D", + 'SVX8':"sediment8 viscosity along x axis (m2/s) - only 3D", + 'SVX9':"sediment9 viscosity along x axis (m2/s) - only 3D", + 'SVX10':"sediment10 viscosity along x axis (m2/s) - only 3D", + 'SVX11':"sediment11 viscosity along x axis (m2/s) - only 3D", + 'SVX12':"sediment12 viscosity along x axis (m2/s) - only 3D", + 'SVX13':"sediment13 viscosity along x axis (m2/s) - only 3D", + 'SVX14':"sediment14 viscosity along x axis (m2/s) - only 3D", + 'SVX15':"sediment15 viscosity along x axis (m2/s) - only 3D", + 'SVX16':"sediment16 viscosity along x axis (m2/s) - only 3D", + 'SVX17':"sediment17 viscosity along x axis (m2/s) - only 3D", + 'SVX18':"sediment18 viscosity along x axis (m2/s) - only 3D", + 'SVX19':"sediment19 viscosity along x axis (m2/s) - only 3D", + 'SVX**':"sediment** viscosity along x axis (m2/s) - only 3D", + 'SVX*':"sediment* viscosity along x axis (m2/s) - only 3D", + 'SVX1':"sediment1 viscosity along x axis (m2/s) - only 3D", + 'SVX2':"sediment2 viscosity along x axis (m2/s) - only 3D", + 'SVX3':"sediment3 viscosity along x axis (m2/s) - only 3D", + 'SVX4':"sediment4 viscosity along x axis (m2/s) - only 3D", + 'SVX5':"sediment5 viscosity along x axis (m2/s) - only 3D", + 'SVX6':"sediment6 viscosity along x axis (m2/s) - only 3D", + 'SVX7':"sediment7 viscosity along x axis (m2/s) - only 3D", + 'SVX8':"sediment8 viscosity along x axis (m2/s) - only 3D", + 'SVX9':"sediment9 viscosity along x axis (m2/s) - only 3D", + 'SVX10':"sediment10 viscosity along x axis (m2/s) - only 3D", + 'SVX11':"sediment11 viscosity along x axis (m2/s) - only 3D", + 'SVX12':"sediment12 viscosity along x axis (m2/s) - only 3D", + 'SVX13':"sediment13 viscosity along x axis (m2/s) - only 3D", + 'SVX14':"sediment14 viscosity along x axis (m2/s) - only 3D", + 'SVX15':"sediment15 viscosity along x axis (m2/s) - only 3D", + 'SVX16':"sediment16 viscosity along x axis (m2/s) - only 3D", + 'SVX17':"sediment17 viscosity along x axis (m2/s) - only 3D", + 'SVX18':"sediment18 viscosity along x axis (m2/s) - only 3D", + 'SVX19':"sediment19 viscosity along x axis (m2/s) - only 3D", + 'SVX**':"sediment** viscosity along x axis (m2/s) - only 3D", + 'SVX*':"sediment* viscosity along x axis (m2/s) - only 3D", + 'SVX1':"sediment1 viscosity along x axis (m2/s) - only 3D", + 'SVX2':"sediment2 viscosity along x axis (m2/s) - only 3D", + 'SVX3':"sediment3 viscosity along x axis (m2/s) - only 3D", + 'SVX4':"sediment4 viscosity along x axis (m2/s) - only 3D", + 'SVX5':"sediment5 viscosity along x axis (m2/s) - only 3D", + 'SVX6':"sediment6 viscosity along x axis (m2/s) - only 3D", + 'SVX7':"sediment7 viscosity along x axis (m2/s) - only 3D", + 'SVX8':"sediment8 viscosity along x axis (m2/s) - only 3D", + 'SVX9':"sediment9 viscosity along x axis (m2/s) - only 3D", + 'SVX10':"sediment10 viscosity along x axis (m2/s) - only 3D", + 'SVX11':"sediment11 viscosity along x axis (m2/s) - only 3D", + 'SVX12':"sediment12 viscosity along x axis (m2/s) - only 3D", + 'SVX13':"sediment13 viscosity along x axis (m2/s) - only 3D", + 'SVX14':"sediment14 viscosity along x axis (m2/s) - only 3D", + 'SVX15':"sediment15 viscosity along x axis (m2/s) - only 3D", + 'SVX16':"sediment16 viscosity along x axis (m2/s) - only 3D", + 'SVX17':"sediment17 viscosity along x axis (m2/s) - only 3D", + 'SVX18':"sediment18 viscosity along x axis (m2/s) - only 3D", + 'SVX19':"sediment19 viscosity along x axis (m2/s) - only 3D", + 'SVX**':"sediment** viscosity along x axis (m2/s) - only 3D", + 'SVX*':"sediment* viscosity along x axis (m2/s) - only 3D", + 'SVX1':"sediment1 viscosity along x axis (m2/s) - only 3D", + 'SVX2':"sediment2 viscosity along x axis (m2/s) - only 3D", + 'SVX3':"sediment3 viscosity along x axis (m2/s) - only 3D", + 'SVX4':"sediment4 viscosity along x axis (m2/s) - only 3D", + 'SVX5':"sediment5 viscosity along x axis (m2/s) - only 3D", + 'SVX6':"sediment6 viscosity along x axis (m2/s) - only 3D", + 'SVX7':"sediment7 viscosity along x axis (m2/s) - only 3D", + 'SVX8':"sediment8 viscosity along x axis (m2/s) - only 3D", + 'SVX9':"sediment9 viscosity along x axis (m2/s) - only 3D", + 'SVX10':"sediment10 viscosity along x axis (m2/s) - only 3D", + 'SVX11':"sediment11 viscosity along x axis (m2/s) - only 3D", + 'SVX12':"sediment12 viscosity along x axis (m2/s) - only 3D", + 'SVX13':"sediment13 viscosity along x axis (m2/s) - only 3D", + 'SVX14':"sediment14 viscosity along x axis (m2/s) - only 3D", + 'SVX15':"sediment15 viscosity along x axis (m2/s) - only 3D", + 'SVX16':"sediment16 viscosity along x axis (m2/s) - only 3D", + 'SVX17':"sediment17 viscosity along x axis (m2/s) - only 3D", + 'SVX18':"sediment18 viscosity along x axis (m2/s) - only 3D", + 'SVX19':"sediment19 viscosity along x axis (m2/s) - only 3D", + 'SVX**':"sediment** viscosity along x axis (m2/s) - only 3D", + 'SVX*':"sediment* viscosity along x axis (m2/s) - only 3D", + 'SVX1':"sediment1 viscosity along x axis (m2/s) - only 3D", + 'SVX2':"sediment2 viscosity along x axis (m2/s) - only 3D", + 'SVX3':"sediment3 viscosity along x axis (m2/s) - only 3D", + 'SVX4':"sediment4 viscosity along x axis (m2/s) - only 3D", + 'SVX5':"sediment5 viscosity along x axis (m2/s) - only 3D", + 'SVX6':"sediment6 viscosity along x axis (m2/s) - only 3D", + 'SVX7':"sediment7 viscosity along x axis (m2/s) - only 3D", + 'SVX8':"sediment8 viscosity along x axis (m2/s) - only 3D", + 'SVX9':"sediment9 viscosity along x axis (m2/s) - only 3D", + 'SVX10':"sediment10 viscosity along x axis (m2/s) - only 3D", + 'SVX11':"sediment11 viscosity along x axis (m2/s) - only 3D", + 'SVX12':"sediment12 viscosity along x axis (m2/s) - only 3D", + 'SVX13':"sediment13 viscosity along x axis (m2/s) - only 3D", + 'SVX14':"sediment14 viscosity along x axis (m2/s) - only 3D", + 'SVX15':"sediment15 viscosity along x axis (m2/s) - only 3D", + 'SVX16':"sediment16 viscosity along x axis (m2/s) - only 3D", + 'SVX17':"sediment17 viscosity along x axis (m2/s) - only 3D", + 'SVX18':"sediment18 viscosity along x axis (m2/s) - only 3D", + 'SVX19':"sediment19 viscosity along x axis (m2/s) - only 3D", + 'SVX**':"sediment** viscosity along x axis (m2/s) - only 3D", + 'SVX*':"sediment* viscosity along x axis (m2/s) - only 3D", + 'SVX1':"sediment1 viscosity along x axis (m2/s) - only 3D", + 'SVX2':"sediment2 viscosity along x axis (m2/s) - only 3D", + 'SVX3':"sediment3 viscosity along x axis (m2/s) - only 3D", + 'SVX4':"sediment4 viscosity along x axis (m2/s) - only 3D", + 'SVX5':"sediment5 viscosity along x axis (m2/s) - only 3D", + 'SVX6':"sediment6 viscosity along x axis (m2/s) - only 3D", + 'SVX7':"sediment7 viscosity along x axis (m2/s) - only 3D", + 'SVX8':"sediment8 viscosity along x axis (m2/s) - only 3D", + 'SVX9':"sediment9 viscosity along x axis (m2/s) - only 3D", + 'SVX10':"sediment10 viscosity along x axis (m2/s) - only 3D", + 'SVX11':"sediment11 viscosity along x axis (m2/s) - only 3D", + 'SVX12':"sediment12 viscosity along x axis (m2/s) - only 3D", + 'SVX13':"sediment13 viscosity along x axis (m2/s) - only 3D", + 'SVX14':"sediment14 viscosity along x axis (m2/s) - only 3D", + 'SVX15':"sediment15 viscosity along x axis (m2/s) - only 3D", + 'SVX16':"sediment16 viscosity along x axis (m2/s) - only 3D", + 'SVX17':"sediment17 viscosity along x axis (m2/s) - only 3D", + 'SVX18':"sediment18 viscosity along x axis (m2/s) - only 3D", + 'SVX19':"sediment19 viscosity along x axis (m2/s) - only 3D", + 'SVX**':"sediment** viscosity along x axis (m2/s) - only 3D", + 'SVX*':"sediment* viscosity along x axis (m2/s) - only 3D", + 'SVX1':"sediment1 viscosity along x axis (m2/s) - only 3D", + 'SVX2':"sediment2 viscosity along x axis (m2/s) - only 3D", + 'SVX3':"sediment3 viscosity along x axis (m2/s) - only 3D", + 'SVX4':"sediment4 viscosity along x axis (m2/s) - only 3D", + 'SVX5':"sediment5 viscosity along x axis (m2/s) - only 3D", + 'SVX6':"sediment6 viscosity along x axis (m2/s) - only 3D", + 'SVX7':"sediment7 viscosity along x axis (m2/s) - only 3D", + 'SVX8':"sediment8 viscosity along x axis (m2/s) - only 3D", + 'SVX9':"sediment9 viscosity along x axis (m2/s) - only 3D", + 'SVX10':"sediment10 viscosity along x axis (m2/s) - only 3D", + 'SVX11':"sediment11 viscosity along x axis (m2/s) - only 3D", + 'SVX12':"sediment12 viscosity along x axis (m2/s) - only 3D", + 'SVX13':"sediment13 viscosity along x axis (m2/s) - only 3D", + 'SVX14':"sediment14 viscosity along x axis (m2/s) - only 3D", + 'SVX15':"sediment15 viscosity along x axis (m2/s) - only 3D", + 'SVX16':"sediment16 viscosity along x axis (m2/s) - only 3D", + 'SVX17':"sediment17 viscosity along x axis (m2/s) - only 3D", + 'SVX18':"sediment18 viscosity along x axis (m2/s) - only 3D", + 'SVX19':"sediment19 viscosity along x axis (m2/s) - only 3D", + 'SVX**':"sediment** viscosity along x axis (m2/s) - only 3D", + 'SVX*':"sediment* viscosity along x axis (m2/s) - only 3D", + 'SVX1':"sediment1 viscosity along x axis (m2/s) - only 3D", + 'SVX2':"sediment2 viscosity along x axis (m2/s) - only 3D", + 'SVX3':"sediment3 viscosity along x axis (m2/s) - only 3D", + 'SVX4':"sediment4 viscosity along x axis (m2/s) - only 3D", + 'SVX5':"sediment5 viscosity along x axis (m2/s) - only 3D", + 'SVX6':"sediment6 viscosity along x axis (m2/s) - only 3D", + 'SVX7':"sediment7 viscosity along x axis (m2/s) - only 3D", + 'SVX8':"sediment8 viscosity along x axis (m2/s) - only 3D", + 'SVX9':"sediment9 viscosity along x axis (m2/s) - only 3D", + 'SVX10':"sediment10 viscosity along x axis (m2/s) - only 3D", + 'SVX11':"sediment11 viscosity along x axis (m2/s) - only 3D", + 'SVX12':"sediment12 viscosity along x axis (m2/s) - only 3D", + 'SVX13':"sediment13 viscosity along x axis (m2/s) - only 3D", + 'SVX14':"sediment14 viscosity along x axis (m2/s) - only 3D", + 'SVX15':"sediment15 viscosity along x axis (m2/s) - only 3D", + 'SVX16':"sediment16 viscosity along x axis (m2/s) - only 3D", + 'SVX17':"sediment17 viscosity along x axis (m2/s) - only 3D", + 'SVX18':"sediment18 viscosity along x axis (m2/s) - only 3D", + 'SVX19':"sediment19 viscosity along x axis (m2/s) - only 3D", + 'SVX**':"sediment** viscosity along x axis (m2/s) - only 3D", + 'SVX*':"sediment* viscosity along x axis (m2/s) - only 3D", + 'SVX1':"sediment1 viscosity along x axis (m2/s) - only 3D", + 'SVX2':"sediment2 viscosity along x axis (m2/s) - only 3D", + 'SVX3':"sediment3 viscosity along x axis (m2/s) - only 3D", + 'SVX4':"sediment4 viscosity along x axis (m2/s) - only 3D", + 'SVX5':"sediment5 viscosity along x axis (m2/s) - only 3D", + 'SVX6':"sediment6 viscosity along x axis (m2/s) - only 3D", + 'SVX7':"sediment7 viscosity along x axis (m2/s) - only 3D", + 'SVX8':"sediment8 viscosity along x axis (m2/s) - only 3D", + 'SVX9':"sediment9 viscosity along x axis (m2/s) - only 3D", + 'SVX10':"sediment10 viscosity along x axis (m2/s) - only 3D", + 'SVX11':"sediment11 viscosity along x axis (m2/s) - only 3D", + 'SVX12':"sediment12 viscosity along x axis (m2/s) - only 3D", + 'SVX13':"sediment13 viscosity along x axis (m2/s) - only 3D", + 'SVX14':"sediment14 viscosity along x axis (m2/s) - only 3D", + 'SVX15':"sediment15 viscosity along x axis (m2/s) - only 3D", + 'SVX16':"sediment16 viscosity along x axis (m2/s) - only 3D", + 'SVX17':"sediment17 viscosity along x axis (m2/s) - only 3D", + 'SVX18':"sediment18 viscosity along x axis (m2/s) - only 3D", + 'SVX19':"sediment19 viscosity along x axis (m2/s) - only 3D", + 'SVX**':"sediment** viscosity along x axis (m2/s) - only 3D", + 'SVX*':"sediment* viscosity along x axis (m2/s) - only 3D", + 'SVX1':"sediment1 viscosity along x axis (m2/s) - only 3D", + 'SVX2':"sediment2 viscosity along x axis (m2/s) - only 3D", + 'SVX3':"sediment3 viscosity along x axis (m2/s) - only 3D", + 'SVX4':"sediment4 viscosity along x axis (m2/s) - only 3D", + 'SVX5':"sediment5 viscosity along x axis (m2/s) - only 3D", + 'SVX6':"sediment6 viscosity along x axis (m2/s) - only 3D", + 'SVX7':"sediment7 viscosity along x axis (m2/s) - only 3D", + 'SVX8':"sediment8 viscosity along x axis (m2/s) - only 3D", + 'SVX9':"sediment9 viscosity along x axis (m2/s) - only 3D", + 'SVX10':"sediment10 viscosity along x axis (m2/s) - only 3D", + 'SVX11':"sediment11 viscosity along x axis (m2/s) - only 3D", + 'SVX12':"sediment12 viscosity along x axis (m2/s) - only 3D", + 'SVX13':"sediment13 viscosity along x axis (m2/s) - only 3D", + 'SVX14':"sediment14 viscosity along x axis (m2/s) - only 3D", + 'SVX15':"sediment15 viscosity along x axis (m2/s) - only 3D", + 'SVX16':"sediment16 viscosity along x axis (m2/s) - only 3D", + 'SVX17':"sediment17 viscosity along x axis (m2/s) - only 3D", + 'SVX18':"sediment18 viscosity along x axis (m2/s) - only 3D", + 'SVX19':"sediment19 viscosity along x axis (m2/s) - only 3D", + 'SVX**':"sediment** viscosity along x axis (m2/s) - only 3D", + 'SVX*':"sediment* viscosity along x axis (m2/s) - only 3D", + 'SVX1':"sediment1 viscosity along x axis (m2/s) - only 3D", + 'SVX2':"sediment2 viscosity along x axis (m2/s) - only 3D", + 'SVX3':"sediment3 viscosity along x axis (m2/s) - only 3D", + 'SVX4':"sediment4 viscosity along x axis (m2/s) - only 3D", + 'SVX5':"sediment5 viscosity along x axis (m2/s) - only 3D", + 'SVX6':"sediment6 viscosity along x axis (m2/s) - only 3D", + 'SVX7':"sediment7 viscosity along x axis (m2/s) - only 3D", + 'SVX8':"sediment8 viscosity along x axis (m2/s) - only 3D", + 'SVX9':"sediment9 viscosity along x axis (m2/s) - only 3D", + 'SVX10':"sediment10 viscosity along x axis (m2/s) - only 3D", + 'SVX11':"sediment11 viscosity along x axis (m2/s) - only 3D", + 'SVX12':"sediment12 viscosity along x axis (m2/s) - only 3D", + 'SVX13':"sediment13 viscosity along x axis (m2/s) - only 3D", + 'SVX14':"sediment14 viscosity along x axis (m2/s) - only 3D", + 'SVX15':"sediment15 viscosity along x axis (m2/s) - only 3D", + 'SVX16':"sediment16 viscosity along x axis (m2/s) - only 3D", + 'SVX17':"sediment17 viscosity along x axis (m2/s) - only 3D", + 'SVX18':"sediment18 viscosity along x axis (m2/s) - only 3D", + 'SVX19':"sediment19 viscosity along x axis (m2/s) - only 3D", + 'SVX**':"sediment** viscosity along x axis (m2/s) - only 3D", + 'SVX*':"sediment* viscosity along x axis (m2/s) - only 3D", + 'SVX1':"sediment1 viscosity along x axis (m2/s) - only 3D", + 'SVX2':"sediment2 viscosity along x axis (m2/s) - only 3D", + 'SVX3':"sediment3 viscosity along x axis (m2/s) - only 3D", + 'SVX4':"sediment4 viscosity along x axis (m2/s) - only 3D", + 'SVX5':"sediment5 viscosity along x axis (m2/s) - only 3D", + 'SVX6':"sediment6 viscosity along x axis (m2/s) - only 3D", + 'SVX7':"sediment7 viscosity along x axis (m2/s) - only 3D", + 'SVX8':"sediment8 viscosity along x axis (m2/s) - only 3D", + 'SVX9':"sediment9 viscosity along x axis (m2/s) - only 3D", + 'SVX10':"sediment10 viscosity along x axis (m2/s) - only 3D", + 'SVX11':"sediment11 viscosity along x axis (m2/s) - only 3D", + 'SVX12':"sediment12 viscosity along x axis (m2/s) - only 3D", + 'SVX13':"sediment13 viscosity along x axis (m2/s) - only 3D", + 'SVX14':"sediment14 viscosity along x axis (m2/s) - only 3D", + 'SVX15':"sediment15 viscosity along x axis (m2/s) - only 3D", + 'SVX16':"sediment16 viscosity along x axis (m2/s) - only 3D", + 'SVX17':"sediment17 viscosity along x axis (m2/s) - only 3D", + 'SVX18':"sediment18 viscosity along x axis (m2/s) - only 3D", + 'SVX19':"sediment19 viscosity along x axis (m2/s) - only 3D", + 'SVX**':"sediment** viscosity along x axis (m2/s) - only 3D", + 'SVX*':"sediment* viscosity along x axis (m2/s) - only 3D", + 'SVX1':"sediment1 viscosity along x axis (m2/s) - only 3D", + 'SVX2':"sediment2 viscosity along x axis (m2/s) - only 3D", + 'SVX3':"sediment3 viscosity along x axis (m2/s) - only 3D", + 'SVX4':"sediment4 viscosity along x axis (m2/s) - only 3D", + 'SVX5':"sediment5 viscosity along x axis (m2/s) - only 3D", + 'SVX6':"sediment6 viscosity along x axis (m2/s) - only 3D", + 'SVX7':"sediment7 viscosity along x axis (m2/s) - only 3D", + 'SVX8':"sediment8 viscosity along x axis (m2/s) - only 3D", + 'SVX9':"sediment9 viscosity along x axis (m2/s) - only 3D", + 'SVX10':"sediment10 viscosity along x axis (m2/s) - only 3D", + 'SVX11':"sediment11 viscosity along x axis (m2/s) - only 3D", + 'SVX12':"sediment12 viscosity along x axis (m2/s) - only 3D", + 'SVX13':"sediment13 viscosity along x axis (m2/s) - only 3D", + 'SVX14':"sediment14 viscosity along x axis (m2/s) - only 3D", + 'SVX15':"sediment15 viscosity along x axis (m2/s) - only 3D", + 'SVX16':"sediment16 viscosity along x axis (m2/s) - only 3D", + 'SVX17':"sediment17 viscosity along x axis (m2/s) - only 3D", + 'SVX18':"sediment18 viscosity along x axis (m2/s) - only 3D", + 'SVX19':"sediment19 viscosity along x axis (m2/s) - only 3D", + 'SVX**':"sediment** viscosity along x axis (m2/s) - only 3D", + 'SVX*':"sediment* viscosity along x axis (m2/s) - only 3D", + 'SVX1':"sediment1 viscosity along x axis (m2/s) - only 3D", + 'SVX2':"sediment2 viscosity along x axis (m2/s) - only 3D", + 'SVX3':"sediment3 viscosity along x axis (m2/s) - only 3D", + 'SVX4':"sediment4 viscosity along x axis (m2/s) - only 3D", + 'SVX5':"sediment5 viscosity along x axis (m2/s) - only 3D", + 'SVX6':"sediment6 viscosity along x axis (m2/s) - only 3D", + 'SVX7':"sediment7 viscosity along x axis (m2/s) - only 3D", + 'SVX8':"sediment8 viscosity along x axis (m2/s) - only 3D", + 'SVX9':"sediment9 viscosity along x axis (m2/s) - only 3D", + 'SVX10':"sediment10 viscosity along x axis (m2/s) - only 3D", + 'SVX11':"sediment11 viscosity along x axis (m2/s) - only 3D", + 'SVX12':"sediment12 viscosity along x axis (m2/s) - only 3D", + 'SVX13':"sediment13 viscosity along x axis (m2/s) - only 3D", + 'SVX14':"sediment14 viscosity along x axis (m2/s) - only 3D", + 'SVX15':"sediment15 viscosity along x axis (m2/s) - only 3D", + 'SVX16':"sediment16 viscosity along x axis (m2/s) - only 3D", + 'SVX17':"sediment17 viscosity along x axis (m2/s) - only 3D", + 'SVX18':"sediment18 viscosity along x axis (m2/s) - only 3D", + 'SVX19':"sediment19 viscosity along x axis (m2/s) - only 3D", + 'SVX**':"sediment** viscosity along x axis (m2/s) - only 3D", + 'SVX*':"sediment* viscosity along x axis (m2/s) - only 3D", + 'SVX1':"sediment1 viscosity along x axis (m2/s) - only 3D", + 'SVX2':"sediment2 viscosity along x axis (m2/s) - only 3D", + 'SVX3':"sediment3 viscosity along x axis (m2/s) - only 3D", + 'SVX4':"sediment4 viscosity along x axis (m2/s) - only 3D", + 'SVX5':"sediment5 viscosity along x axis (m2/s) - only 3D", + 'SVX6':"sediment6 viscosity along x axis (m2/s) - only 3D", + 'SVX7':"sediment7 viscosity along x axis (m2/s) - only 3D", + 'SVX8':"sediment8 viscosity along x axis (m2/s) - only 3D", + 'SVX9':"sediment9 viscosity along x axis (m2/s) - only 3D", + 'SVX10':"sediment10 viscosity along x axis (m2/s) - only 3D", + 'SVX11':"sediment11 viscosity along x axis (m2/s) - only 3D", + 'SVX12':"sediment12 viscosity along x axis (m2/s) - only 3D", + 'SVX13':"sediment13 viscosity along x axis (m2/s) - only 3D", + 'SVX14':"sediment14 viscosity along x axis (m2/s) - only 3D", + 'SVX15':"sediment15 viscosity along x axis (m2/s) - only 3D", + 'SVX16':"sediment16 viscosity along x axis (m2/s) - only 3D", + 'SVX17':"sediment17 viscosity along x axis (m2/s) - only 3D", + 'SVX18':"sediment18 viscosity along x axis (m2/s) - only 3D", + 'SVX19':"sediment19 viscosity along x axis (m2/s) - only 3D", + 'SVX**':"sediment** viscosity along x axis (m2/s) - only 3D", + 'SVX*':"sediment* viscosity along x axis (m2/s) - only 3D", + 'SVX1':"sediment1 viscosity along x axis (m2/s) - only 3D", + 'SVX2':"sediment2 viscosity along x axis (m2/s) - only 3D", + 'SVX3':"sediment3 viscosity along x axis (m2/s) - only 3D", + 'SVX4':"sediment4 viscosity along x axis (m2/s) - only 3D", + 'SVX5':"sediment5 viscosity along x axis (m2/s) - only 3D", + 'SVX6':"sediment6 viscosity along x axis (m2/s) - only 3D", + 'SVX7':"sediment7 viscosity along x axis (m2/s) - only 3D", + 'SVX8':"sediment8 viscosity along x axis (m2/s) - only 3D", + 'SVX9':"sediment9 viscosity along x axis (m2/s) - only 3D", + 'SVX10':"sediment10 viscosity along x axis (m2/s) - only 3D", + 'SVX11':"sediment11 viscosity along x axis (m2/s) - only 3D", + 'SVX12':"sediment12 viscosity along x axis (m2/s) - only 3D", + 'SVX13':"sediment13 viscosity along x axis (m2/s) - only 3D", + 'SVX14':"sediment14 viscosity along x axis (m2/s) - only 3D", + 'SVX15':"sediment15 viscosity along x axis (m2/s) - only 3D", + 'SVX16':"sediment16 viscosity along x axis (m2/s) - only 3D", + 'SVX17':"sediment17 viscosity along x axis (m2/s) - only 3D", + 'SVX18':"sediment18 viscosity along x axis (m2/s) - only 3D", + 'SVX19':"sediment19 viscosity along x axis (m2/s) - only 3D", + 'SVX**':"sediment** viscosity along x axis (m2/s) - only 3D", + 'SVX*':"sediment* viscosity along x axis (m2/s) - only 3D", + 'SVX1':"sediment1 viscosity along x axis (m2/s) - only 3D", + 'SVX2':"sediment2 viscosity along x axis (m2/s) - only 3D", + 'SVX3':"sediment3 viscosity along x axis (m2/s) - only 3D", + 'SVX4':"sediment4 viscosity along x axis (m2/s) - only 3D", + 'SVX5':"sediment5 viscosity along x axis (m2/s) - only 3D", + 'SVX6':"sediment6 viscosity along x axis (m2/s) - only 3D", + 'SVX7':"sediment7 viscosity along x axis (m2/s) - only 3D", + 'SVX8':"sediment8 viscosity along x axis (m2/s) - only 3D", + 'SVX9':"sediment9 viscosity along x axis (m2/s) - only 3D", + 'SVX10':"sediment10 viscosity along x axis (m2/s) - only 3D", + 'SVX11':"sediment11 viscosity along x axis (m2/s) - only 3D", + 'SVX12':"sediment12 viscosity along x axis (m2/s) - only 3D", + 'SVX13':"sediment13 viscosity along x axis (m2/s) - only 3D", + 'SVX14':"sediment14 viscosity along x axis (m2/s) - only 3D", + 'SVX15':"sediment15 viscosity along x axis (m2/s) - only 3D", + 'SVX16':"sediment16 viscosity along x axis (m2/s) - only 3D", + 'SVX17':"sediment17 viscosity along x axis (m2/s) - only 3D", + 'SVX18':"sediment18 viscosity along x axis (m2/s) - only 3D", + 'SVX19':"sediment19 viscosity along x axis (m2/s) - only 3D", + 'SVX**':"sediment** viscosity along x axis (m2/s) - only 3D", + 'SVX*':"sediment* viscosity along x axis (m2/s) - only 3D", + 'SVX1':"sediment1 viscosity along x axis (m2/s) - only 3D", + 'SVX2':"sediment2 viscosity along x axis (m2/s) - only 3D", + 'SVX3':"sediment3 viscosity along x axis (m2/s) - only 3D", + 'SVX4':"sediment4 viscosity along x axis (m2/s) - only 3D", + 'SVX5':"sediment5 viscosity along x axis (m2/s) - only 3D", + 'SVX6':"sediment6 viscosity along x axis (m2/s) - only 3D", + 'SVX7':"sediment7 viscosity along x axis (m2/s) - only 3D", + 'SVX8':"sediment8 viscosity along x axis (m2/s) - only 3D", + 'SVX9':"sediment9 viscosity along x axis (m2/s) - only 3D", + 'SVX10':"sediment10 viscosity along x axis (m2/s) - only 3D", + 'SVX11':"sediment11 viscosity along x axis (m2/s) - only 3D", + 'SVX12':"sediment12 viscosity along x axis (m2/s) - only 3D", + 'SVX13':"sediment13 viscosity along x axis (m2/s) - only 3D", + 'SVX14':"sediment14 viscosity along x axis (m2/s) - only 3D", + 'SVX15':"sediment15 viscosity along x axis (m2/s) - only 3D", + 'SVX16':"sediment16 viscosity along x axis (m2/s) - only 3D", + 'SVX17':"sediment17 viscosity along x axis (m2/s) - only 3D", + 'SVX18':"sediment18 viscosity along x axis (m2/s) - only 3D", + 'SVX19':"sediment19 viscosity along x axis (m2/s) - only 3D", + 'SVX**':"sediment** viscosity along x axis (m2/s) - only 3D", + 'SVX*':"sediment* viscosity along x axis (m2/s) - only 3D", + 'SVX1':"sediment1 viscosity along x axis (m2/s) - only 3D", + 'SVX2':"sediment2 viscosity along x axis (m2/s) - only 3D", + 'SVX3':"sediment3 viscosity along x axis (m2/s) - only 3D", + 'SVX4':"sediment4 viscosity along x axis (m2/s) - only 3D", + 'SVX5':"sediment5 viscosity along x axis (m2/s) - only 3D", + 'SVX6':"sediment6 viscosity along x axis (m2/s) - only 3D", + 'SVX7':"sediment7 viscosity along x axis (m2/s) - only 3D", + 'SVX8':"sediment8 viscosity along x axis (m2/s) - only 3D", + 'SVX9':"sediment9 viscosity along x axis (m2/s) - only 3D", + 'SVX10':"sediment10 viscosity along x axis (m2/s) - only 3D", + 'SVX11':"sediment11 viscosity along x axis (m2/s) - only 3D", + 'SVX12':"sediment12 viscosity along x axis (m2/s) - only 3D", + 'SVX13':"sediment13 viscosity along x axis (m2/s) - only 3D", + 'SVX14':"sediment14 viscosity along x axis (m2/s) - only 3D", + 'SVX15':"sediment15 viscosity along x axis (m2/s) - only 3D", + 'SVX16':"sediment16 viscosity along x axis (m2/s) - only 3D", + 'SVX17':"sediment17 viscosity along x axis (m2/s) - only 3D", + 'SVX18':"sediment18 viscosity along x axis (m2/s) - only 3D", + 'SVX19':"sediment19 viscosity along x axis (m2/s) - only 3D", + 'SVX**':"sediment** viscosity along x axis (m2/s) - only 3D", + 'SVX*':"sediment* viscosity along x axis (m2/s) - only 3D", + 'SVX1':"sediment1 viscosity along x axis (m2/s) - only 3D", + 'SVX2':"sediment2 viscosity along x axis (m2/s) - only 3D", + 'SVX3':"sediment3 viscosity along x axis (m2/s) - only 3D", + 'SVX4':"sediment4 viscosity along x axis (m2/s) - only 3D", + 'SVX5':"sediment5 viscosity along x axis (m2/s) - only 3D", + 'SVX6':"sediment6 viscosity along x axis (m2/s) - only 3D", + 'SVX7':"sediment7 viscosity along x axis (m2/s) - only 3D", + 'SVX8':"sediment8 viscosity along x axis (m2/s) - only 3D", + 'SVX9':"sediment9 viscosity along x axis (m2/s) - only 3D", + 'SVX10':"sediment10 viscosity along x axis (m2/s) - only 3D", + 'SVX11':"sediment11 viscosity along x axis (m2/s) - only 3D", + 'SVX12':"sediment12 viscosity along x axis (m2/s) - only 3D", + 'SVX13':"sediment13 viscosity along x axis (m2/s) - only 3D", + 'SVX14':"sediment14 viscosity along x axis (m2/s) - only 3D", + 'SVX15':"sediment15 viscosity along x axis (m2/s) - only 3D", + 'SVX16':"sediment16 viscosity along x axis (m2/s) - only 3D", + 'SVX17':"sediment17 viscosity along x axis (m2/s) - only 3D", + 'SVX18':"sediment18 viscosity along x axis (m2/s) - only 3D", + 'SVX19':"sediment19 viscosity along x axis (m2/s) - only 3D", + 'SVX**':"sediment** viscosity along x axis (m2/s) - only 3D", + 'SVY*':"sediment* viscosity along y axis (m2/s) - only 3D", + 'SVY1':"sediment1 viscosity along y axis (m2/s) - only 3D", + 'SVY2':"sediment2 viscosity along y axis (m2/s) - only 3D", + 'SVY3':"sediment3 viscosity along y axis (m2/s) - only 3D", + 'SVY4':"sediment4 viscosity along y axis (m2/s) - only 3D", + 'SVY5':"sediment5 viscosity along y axis (m2/s) - only 3D", + 'SVY6':"sediment6 viscosity along y axis (m2/s) - only 3D", + 'SVY7':"sediment7 viscosity along y axis (m2/s) - only 3D", + 'SVY8':"sediment8 viscosity along y axis (m2/s) - only 3D", + 'SVY9':"sediment9 viscosity along y axis (m2/s) - only 3D", + 'SVY10':"sediment10 viscosity along y axis (m2/s) - only 3D", + 'SVY11':"sediment11 viscosity along y axis (m2/s) - only 3D", + 'SVY12':"sediment12 viscosity along y axis (m2/s) - only 3D", + 'SVY13':"sediment13 viscosity along y axis (m2/s) - only 3D", + 'SVY14':"sediment14 viscosity along y axis (m2/s) - only 3D", + 'SVY15':"sediment15 viscosity along y axis (m2/s) - only 3D", + 'SVY16':"sediment16 viscosity along y axis (m2/s) - only 3D", + 'SVY17':"sediment17 viscosity along y axis (m2/s) - only 3D", + 'SVY18':"sediment18 viscosity along y axis (m2/s) - only 3D", + 'SVY19':"sediment19 viscosity along y axis (m2/s) - only 3D", + 'SVY**':"sediment** viscosity along y axis (m2/s) - only 3D", + 'SVY*':"sediment* viscosity along y axis (m2/s) - only 3D", + 'SVY1':"sediment1 viscosity along y axis (m2/s) - only 3D", + 'SVY2':"sediment2 viscosity along y axis (m2/s) - only 3D", + 'SVY3':"sediment3 viscosity along y axis (m2/s) - only 3D", + 'SVY4':"sediment4 viscosity along y axis (m2/s) - only 3D", + 'SVY5':"sediment5 viscosity along y axis (m2/s) - only 3D", + 'SVY6':"sediment6 viscosity along y axis (m2/s) - only 3D", + 'SVY7':"sediment7 viscosity along y axis (m2/s) - only 3D", + 'SVY8':"sediment8 viscosity along y axis (m2/s) - only 3D", + 'SVY9':"sediment9 viscosity along y axis (m2/s) - only 3D", + 'SVY10':"sediment10 viscosity along y axis (m2/s) - only 3D", + 'SVY11':"sediment11 viscosity along y axis (m2/s) - only 3D", + 'SVY12':"sediment12 viscosity along y axis (m2/s) - only 3D", + 'SVY13':"sediment13 viscosity along y axis (m2/s) - only 3D", + 'SVY14':"sediment14 viscosity along y axis (m2/s) - only 3D", + 'SVY15':"sediment15 viscosity along y axis (m2/s) - only 3D", + 'SVY16':"sediment16 viscosity along y axis (m2/s) - only 3D", + 'SVY17':"sediment17 viscosity along y axis (m2/s) - only 3D", + 'SVY18':"sediment18 viscosity along y axis (m2/s) - only 3D", + 'SVY19':"sediment19 viscosity along y axis (m2/s) - only 3D", + 'SVY**':"sediment** viscosity along y axis (m2/s) - only 3D", + 'SVY*':"sediment* viscosity along y axis (m2/s) - only 3D", + 'SVY1':"sediment1 viscosity along y axis (m2/s) - only 3D", + 'SVY2':"sediment2 viscosity along y axis (m2/s) - only 3D", + 'SVY3':"sediment3 viscosity along y axis (m2/s) - only 3D", + 'SVY4':"sediment4 viscosity along y axis (m2/s) - only 3D", + 'SVY5':"sediment5 viscosity along y axis (m2/s) - only 3D", + 'SVY6':"sediment6 viscosity along y axis (m2/s) - only 3D", + 'SVY7':"sediment7 viscosity along y axis (m2/s) - only 3D", + 'SVY8':"sediment8 viscosity along y axis (m2/s) - only 3D", + 'SVY9':"sediment9 viscosity along y axis (m2/s) - only 3D", + 'SVY10':"sediment10 viscosity along y axis (m2/s) - only 3D", + 'SVY11':"sediment11 viscosity along y axis (m2/s) - only 3D", + 'SVY12':"sediment12 viscosity along y axis (m2/s) - only 3D", + 'SVY13':"sediment13 viscosity along y axis (m2/s) - only 3D", + 'SVY14':"sediment14 viscosity along y axis (m2/s) - only 3D", + 'SVY15':"sediment15 viscosity along y axis (m2/s) - only 3D", + 'SVY16':"sediment16 viscosity along y axis (m2/s) - only 3D", + 'SVY17':"sediment17 viscosity along y axis (m2/s) - only 3D", + 'SVY18':"sediment18 viscosity along y axis (m2/s) - only 3D", + 'SVY19':"sediment19 viscosity along y axis (m2/s) - only 3D", + 'SVY**':"sediment** viscosity along y axis (m2/s) - only 3D", + 'SVY*':"sediment* viscosity along y axis (m2/s) - only 3D", + 'SVY1':"sediment1 viscosity along y axis (m2/s) - only 3D", + 'SVY2':"sediment2 viscosity along y axis (m2/s) - only 3D", + 'SVY3':"sediment3 viscosity along y axis (m2/s) - only 3D", + 'SVY4':"sediment4 viscosity along y axis (m2/s) - only 3D", + 'SVY5':"sediment5 viscosity along y axis (m2/s) - only 3D", + 'SVY6':"sediment6 viscosity along y axis (m2/s) - only 3D", + 'SVY7':"sediment7 viscosity along y axis (m2/s) - only 3D", + 'SVY8':"sediment8 viscosity along y axis (m2/s) - only 3D", + 'SVY9':"sediment9 viscosity along y axis (m2/s) - only 3D", + 'SVY10':"sediment10 viscosity along y axis (m2/s) - only 3D", + 'SVY11':"sediment11 viscosity along y axis (m2/s) - only 3D", + 'SVY12':"sediment12 viscosity along y axis (m2/s) - only 3D", + 'SVY13':"sediment13 viscosity along y axis (m2/s) - only 3D", + 'SVY14':"sediment14 viscosity along y axis (m2/s) - only 3D", + 'SVY15':"sediment15 viscosity along y axis (m2/s) - only 3D", + 'SVY16':"sediment16 viscosity along y axis (m2/s) - only 3D", + 'SVY17':"sediment17 viscosity along y axis (m2/s) - only 3D", + 'SVY18':"sediment18 viscosity along y axis (m2/s) - only 3D", + 'SVY19':"sediment19 viscosity along y axis (m2/s) - only 3D", + 'SVY**':"sediment** viscosity along y axis (m2/s) - only 3D", + 'SVY*':"sediment* viscosity along y axis (m2/s) - only 3D", + 'SVY1':"sediment1 viscosity along y axis (m2/s) - only 3D", + 'SVY2':"sediment2 viscosity along y axis (m2/s) - only 3D", + 'SVY3':"sediment3 viscosity along y axis (m2/s) - only 3D", + 'SVY4':"sediment4 viscosity along y axis (m2/s) - only 3D", + 'SVY5':"sediment5 viscosity along y axis (m2/s) - only 3D", + 'SVY6':"sediment6 viscosity along y axis (m2/s) - only 3D", + 'SVY7':"sediment7 viscosity along y axis (m2/s) - only 3D", + 'SVY8':"sediment8 viscosity along y axis (m2/s) - only 3D", + 'SVY9':"sediment9 viscosity along y axis (m2/s) - only 3D", + 'SVY10':"sediment10 viscosity along y axis (m2/s) - only 3D", + 'SVY11':"sediment11 viscosity along y axis (m2/s) - only 3D", + 'SVY12':"sediment12 viscosity along y axis (m2/s) - only 3D", + 'SVY13':"sediment13 viscosity along y axis (m2/s) - only 3D", + 'SVY14':"sediment14 viscosity along y axis (m2/s) - only 3D", + 'SVY15':"sediment15 viscosity along y axis (m2/s) - only 3D", + 'SVY16':"sediment16 viscosity along y axis (m2/s) - only 3D", + 'SVY17':"sediment17 viscosity along y axis (m2/s) - only 3D", + 'SVY18':"sediment18 viscosity along y axis (m2/s) - only 3D", + 'SVY19':"sediment19 viscosity along y axis (m2/s) - only 3D", + 'SVY**':"sediment** viscosity along y axis (m2/s) - only 3D", + 'SVY*':"sediment* viscosity along y axis (m2/s) - only 3D", + 'SVY1':"sediment1 viscosity along y axis (m2/s) - only 3D", + 'SVY2':"sediment2 viscosity along y axis (m2/s) - only 3D", + 'SVY3':"sediment3 viscosity along y axis (m2/s) - only 3D", + 'SVY4':"sediment4 viscosity along y axis (m2/s) - only 3D", + 'SVY5':"sediment5 viscosity along y axis (m2/s) - only 3D", + 'SVY6':"sediment6 viscosity along y axis (m2/s) - only 3D", + 'SVY7':"sediment7 viscosity along y axis (m2/s) - only 3D", + 'SVY8':"sediment8 viscosity along y axis (m2/s) - only 3D", + 'SVY9':"sediment9 viscosity along y axis (m2/s) - only 3D", + 'SVY10':"sediment10 viscosity along y axis (m2/s) - only 3D", + 'SVY11':"sediment11 viscosity along y axis (m2/s) - only 3D", + 'SVY12':"sediment12 viscosity along y axis (m2/s) - only 3D", + 'SVY13':"sediment13 viscosity along y axis (m2/s) - only 3D", + 'SVY14':"sediment14 viscosity along y axis (m2/s) - only 3D", + 'SVY15':"sediment15 viscosity along y axis (m2/s) - only 3D", + 'SVY16':"sediment16 viscosity along y axis (m2/s) - only 3D", + 'SVY17':"sediment17 viscosity along y axis (m2/s) - only 3D", + 'SVY18':"sediment18 viscosity along y axis (m2/s) - only 3D", + 'SVY19':"sediment19 viscosity along y axis (m2/s) - only 3D", + 'SVY**':"sediment** viscosity along y axis (m2/s) - only 3D", + 'SVY*':"sediment* viscosity along y axis (m2/s) - only 3D", + 'SVY1':"sediment1 viscosity along y axis (m2/s) - only 3D", + 'SVY2':"sediment2 viscosity along y axis (m2/s) - only 3D", + 'SVY3':"sediment3 viscosity along y axis (m2/s) - only 3D", + 'SVY4':"sediment4 viscosity along y axis (m2/s) - only 3D", + 'SVY5':"sediment5 viscosity along y axis (m2/s) - only 3D", + 'SVY6':"sediment6 viscosity along y axis (m2/s) - only 3D", + 'SVY7':"sediment7 viscosity along y axis (m2/s) - only 3D", + 'SVY8':"sediment8 viscosity along y axis (m2/s) - only 3D", + 'SVY9':"sediment9 viscosity along y axis (m2/s) - only 3D", + 'SVY10':"sediment10 viscosity along y axis (m2/s) - only 3D", + 'SVY11':"sediment11 viscosity along y axis (m2/s) - only 3D", + 'SVY12':"sediment12 viscosity along y axis (m2/s) - only 3D", + 'SVY13':"sediment13 viscosity along y axis (m2/s) - only 3D", + 'SVY14':"sediment14 viscosity along y axis (m2/s) - only 3D", + 'SVY15':"sediment15 viscosity along y axis (m2/s) - only 3D", + 'SVY16':"sediment16 viscosity along y axis (m2/s) - only 3D", + 'SVY17':"sediment17 viscosity along y axis (m2/s) - only 3D", + 'SVY18':"sediment18 viscosity along y axis (m2/s) - only 3D", + 'SVY19':"sediment19 viscosity along y axis (m2/s) - only 3D", + 'SVY**':"sediment** viscosity along y axis (m2/s) - only 3D", + 'SVY*':"sediment* viscosity along y axis (m2/s) - only 3D", + 'SVY1':"sediment1 viscosity along y axis (m2/s) - only 3D", + 'SVY2':"sediment2 viscosity along y axis (m2/s) - only 3D", + 'SVY3':"sediment3 viscosity along y axis (m2/s) - only 3D", + 'SVY4':"sediment4 viscosity along y axis (m2/s) - only 3D", + 'SVY5':"sediment5 viscosity along y axis (m2/s) - only 3D", + 'SVY6':"sediment6 viscosity along y axis (m2/s) - only 3D", + 'SVY7':"sediment7 viscosity along y axis (m2/s) - only 3D", + 'SVY8':"sediment8 viscosity along y axis (m2/s) - only 3D", + 'SVY9':"sediment9 viscosity along y axis (m2/s) - only 3D", + 'SVY10':"sediment10 viscosity along y axis (m2/s) - only 3D", + 'SVY11':"sediment11 viscosity along y axis (m2/s) - only 3D", + 'SVY12':"sediment12 viscosity along y axis (m2/s) - only 3D", + 'SVY13':"sediment13 viscosity along y axis (m2/s) - only 3D", + 'SVY14':"sediment14 viscosity along y axis (m2/s) - only 3D", + 'SVY15':"sediment15 viscosity along y axis (m2/s) - only 3D", + 'SVY16':"sediment16 viscosity along y axis (m2/s) - only 3D", + 'SVY17':"sediment17 viscosity along y axis (m2/s) - only 3D", + 'SVY18':"sediment18 viscosity along y axis (m2/s) - only 3D", + 'SVY19':"sediment19 viscosity along y axis (m2/s) - only 3D", + 'SVY**':"sediment** viscosity along y axis (m2/s) - only 3D", + 'SVY*':"sediment* viscosity along y axis (m2/s) - only 3D", + 'SVY1':"sediment1 viscosity along y axis (m2/s) - only 3D", + 'SVY2':"sediment2 viscosity along y axis (m2/s) - only 3D", + 'SVY3':"sediment3 viscosity along y axis (m2/s) - only 3D", + 'SVY4':"sediment4 viscosity along y axis (m2/s) - only 3D", + 'SVY5':"sediment5 viscosity along y axis (m2/s) - only 3D", + 'SVY6':"sediment6 viscosity along y axis (m2/s) - only 3D", + 'SVY7':"sediment7 viscosity along y axis (m2/s) - only 3D", + 'SVY8':"sediment8 viscosity along y axis (m2/s) - only 3D", + 'SVY9':"sediment9 viscosity along y axis (m2/s) - only 3D", + 'SVY10':"sediment10 viscosity along y axis (m2/s) - only 3D", + 'SVY11':"sediment11 viscosity along y axis (m2/s) - only 3D", + 'SVY12':"sediment12 viscosity along y axis (m2/s) - only 3D", + 'SVY13':"sediment13 viscosity along y axis (m2/s) - only 3D", + 'SVY14':"sediment14 viscosity along y axis (m2/s) - only 3D", + 'SVY15':"sediment15 viscosity along y axis (m2/s) - only 3D", + 'SVY16':"sediment16 viscosity along y axis (m2/s) - only 3D", + 'SVY17':"sediment17 viscosity along y axis (m2/s) - only 3D", + 'SVY18':"sediment18 viscosity along y axis (m2/s) - only 3D", + 'SVY19':"sediment19 viscosity along y axis (m2/s) - only 3D", + 'SVY**':"sediment** viscosity along y axis (m2/s) - only 3D", + 'SVY*':"sediment* viscosity along y axis (m2/s) - only 3D", + 'SVY1':"sediment1 viscosity along y axis (m2/s) - only 3D", + 'SVY2':"sediment2 viscosity along y axis (m2/s) - only 3D", + 'SVY3':"sediment3 viscosity along y axis (m2/s) - only 3D", + 'SVY4':"sediment4 viscosity along y axis (m2/s) - only 3D", + 'SVY5':"sediment5 viscosity along y axis (m2/s) - only 3D", + 'SVY6':"sediment6 viscosity along y axis (m2/s) - only 3D", + 'SVY7':"sediment7 viscosity along y axis (m2/s) - only 3D", + 'SVY8':"sediment8 viscosity along y axis (m2/s) - only 3D", + 'SVY9':"sediment9 viscosity along y axis (m2/s) - only 3D", + 'SVY10':"sediment10 viscosity along y axis (m2/s) - only 3D", + 'SVY11':"sediment11 viscosity along y axis (m2/s) - only 3D", + 'SVY12':"sediment12 viscosity along y axis (m2/s) - only 3D", + 'SVY13':"sediment13 viscosity along y axis (m2/s) - only 3D", + 'SVY14':"sediment14 viscosity along y axis (m2/s) - only 3D", + 'SVY15':"sediment15 viscosity along y axis (m2/s) - only 3D", + 'SVY16':"sediment16 viscosity along y axis (m2/s) - only 3D", + 'SVY17':"sediment17 viscosity along y axis (m2/s) - only 3D", + 'SVY18':"sediment18 viscosity along y axis (m2/s) - only 3D", + 'SVY19':"sediment19 viscosity along y axis (m2/s) - only 3D", + 'SVY**':"sediment** viscosity along y axis (m2/s) - only 3D", + 'SVY*':"sediment* viscosity along y axis (m2/s) - only 3D", + 'SVY1':"sediment1 viscosity along y axis (m2/s) - only 3D", + 'SVY2':"sediment2 viscosity along y axis (m2/s) - only 3D", + 'SVY3':"sediment3 viscosity along y axis (m2/s) - only 3D", + 'SVY4':"sediment4 viscosity along y axis (m2/s) - only 3D", + 'SVY5':"sediment5 viscosity along y axis (m2/s) - only 3D", + 'SVY6':"sediment6 viscosity along y axis (m2/s) - only 3D", + 'SVY7':"sediment7 viscosity along y axis (m2/s) - only 3D", + 'SVY8':"sediment8 viscosity along y axis (m2/s) - only 3D", + 'SVY9':"sediment9 viscosity along y axis (m2/s) - only 3D", + 'SVY10':"sediment10 viscosity along y axis (m2/s) - only 3D", + 'SVY11':"sediment11 viscosity along y axis (m2/s) - only 3D", + 'SVY12':"sediment12 viscosity along y axis (m2/s) - only 3D", + 'SVY13':"sediment13 viscosity along y axis (m2/s) - only 3D", + 'SVY14':"sediment14 viscosity along y axis (m2/s) - only 3D", + 'SVY15':"sediment15 viscosity along y axis (m2/s) - only 3D", + 'SVY16':"sediment16 viscosity along y axis (m2/s) - only 3D", + 'SVY17':"sediment17 viscosity along y axis (m2/s) - only 3D", + 'SVY18':"sediment18 viscosity along y axis (m2/s) - only 3D", + 'SVY19':"sediment19 viscosity along y axis (m2/s) - only 3D", + 'SVY**':"sediment** viscosity along y axis (m2/s) - only 3D", + 'SVY*':"sediment* viscosity along y axis (m2/s) - only 3D", + 'SVY1':"sediment1 viscosity along y axis (m2/s) - only 3D", + 'SVY2':"sediment2 viscosity along y axis (m2/s) - only 3D", + 'SVY3':"sediment3 viscosity along y axis (m2/s) - only 3D", + 'SVY4':"sediment4 viscosity along y axis (m2/s) - only 3D", + 'SVY5':"sediment5 viscosity along y axis (m2/s) - only 3D", + 'SVY6':"sediment6 viscosity along y axis (m2/s) - only 3D", + 'SVY7':"sediment7 viscosity along y axis (m2/s) - only 3D", + 'SVY8':"sediment8 viscosity along y axis (m2/s) - only 3D", + 'SVY9':"sediment9 viscosity along y axis (m2/s) - only 3D", + 'SVY10':"sediment10 viscosity along y axis (m2/s) - only 3D", + 'SVY11':"sediment11 viscosity along y axis (m2/s) - only 3D", + 'SVY12':"sediment12 viscosity along y axis (m2/s) - only 3D", + 'SVY13':"sediment13 viscosity along y axis (m2/s) - only 3D", + 'SVY14':"sediment14 viscosity along y axis (m2/s) - only 3D", + 'SVY15':"sediment15 viscosity along y axis (m2/s) - only 3D", + 'SVY16':"sediment16 viscosity along y axis (m2/s) - only 3D", + 'SVY17':"sediment17 viscosity along y axis (m2/s) - only 3D", + 'SVY18':"sediment18 viscosity along y axis (m2/s) - only 3D", + 'SVY19':"sediment19 viscosity along y axis (m2/s) - only 3D", + 'SVY**':"sediment** viscosity along y axis (m2/s) - only 3D", + 'SVY*':"sediment* viscosity along y axis (m2/s) - only 3D", + 'SVY1':"sediment1 viscosity along y axis (m2/s) - only 3D", + 'SVY2':"sediment2 viscosity along y axis (m2/s) - only 3D", + 'SVY3':"sediment3 viscosity along y axis (m2/s) - only 3D", + 'SVY4':"sediment4 viscosity along y axis (m2/s) - only 3D", + 'SVY5':"sediment5 viscosity along y axis (m2/s) - only 3D", + 'SVY6':"sediment6 viscosity along y axis (m2/s) - only 3D", + 'SVY7':"sediment7 viscosity along y axis (m2/s) - only 3D", + 'SVY8':"sediment8 viscosity along y axis (m2/s) - only 3D", + 'SVY9':"sediment9 viscosity along y axis (m2/s) - only 3D", + 'SVY10':"sediment10 viscosity along y axis (m2/s) - only 3D", + 'SVY11':"sediment11 viscosity along y axis (m2/s) - only 3D", + 'SVY12':"sediment12 viscosity along y axis (m2/s) - only 3D", + 'SVY13':"sediment13 viscosity along y axis (m2/s) - only 3D", + 'SVY14':"sediment14 viscosity along y axis (m2/s) - only 3D", + 'SVY15':"sediment15 viscosity along y axis (m2/s) - only 3D", + 'SVY16':"sediment16 viscosity along y axis (m2/s) - only 3D", + 'SVY17':"sediment17 viscosity along y axis (m2/s) - only 3D", + 'SVY18':"sediment18 viscosity along y axis (m2/s) - only 3D", + 'SVY19':"sediment19 viscosity along y axis (m2/s) - only 3D", + 'SVY**':"sediment** viscosity along y axis (m2/s) - only 3D", + 'SVY*':"sediment* viscosity along y axis (m2/s) - only 3D", + 'SVY1':"sediment1 viscosity along y axis (m2/s) - only 3D", + 'SVY2':"sediment2 viscosity along y axis (m2/s) - only 3D", + 'SVY3':"sediment3 viscosity along y axis (m2/s) - only 3D", + 'SVY4':"sediment4 viscosity along y axis (m2/s) - only 3D", + 'SVY5':"sediment5 viscosity along y axis (m2/s) - only 3D", + 'SVY6':"sediment6 viscosity along y axis (m2/s) - only 3D", + 'SVY7':"sediment7 viscosity along y axis (m2/s) - only 3D", + 'SVY8':"sediment8 viscosity along y axis (m2/s) - only 3D", + 'SVY9':"sediment9 viscosity along y axis (m2/s) - only 3D", + 'SVY10':"sediment10 viscosity along y axis (m2/s) - only 3D", + 'SVY11':"sediment11 viscosity along y axis (m2/s) - only 3D", + 'SVY12':"sediment12 viscosity along y axis (m2/s) - only 3D", + 'SVY13':"sediment13 viscosity along y axis (m2/s) - only 3D", + 'SVY14':"sediment14 viscosity along y axis (m2/s) - only 3D", + 'SVY15':"sediment15 viscosity along y axis (m2/s) - only 3D", + 'SVY16':"sediment16 viscosity along y axis (m2/s) - only 3D", + 'SVY17':"sediment17 viscosity along y axis (m2/s) - only 3D", + 'SVY18':"sediment18 viscosity along y axis (m2/s) - only 3D", + 'SVY19':"sediment19 viscosity along y axis (m2/s) - only 3D", + 'SVY**':"sediment** viscosity along y axis (m2/s) - only 3D", + 'SVY*':"sediment* viscosity along y axis (m2/s) - only 3D", + 'SVY1':"sediment1 viscosity along y axis (m2/s) - only 3D", + 'SVY2':"sediment2 viscosity along y axis (m2/s) - only 3D", + 'SVY3':"sediment3 viscosity along y axis (m2/s) - only 3D", + 'SVY4':"sediment4 viscosity along y axis (m2/s) - only 3D", + 'SVY5':"sediment5 viscosity along y axis (m2/s) - only 3D", + 'SVY6':"sediment6 viscosity along y axis (m2/s) - only 3D", + 'SVY7':"sediment7 viscosity along y axis (m2/s) - only 3D", + 'SVY8':"sediment8 viscosity along y axis (m2/s) - only 3D", + 'SVY9':"sediment9 viscosity along y axis (m2/s) - only 3D", + 'SVY10':"sediment10 viscosity along y axis (m2/s) - only 3D", + 'SVY11':"sediment11 viscosity along y axis (m2/s) - only 3D", + 'SVY12':"sediment12 viscosity along y axis (m2/s) - only 3D", + 'SVY13':"sediment13 viscosity along y axis (m2/s) - only 3D", + 'SVY14':"sediment14 viscosity along y axis (m2/s) - only 3D", + 'SVY15':"sediment15 viscosity along y axis (m2/s) - only 3D", + 'SVY16':"sediment16 viscosity along y axis (m2/s) - only 3D", + 'SVY17':"sediment17 viscosity along y axis (m2/s) - only 3D", + 'SVY18':"sediment18 viscosity along y axis (m2/s) - only 3D", + 'SVY19':"sediment19 viscosity along y axis (m2/s) - only 3D", + 'SVY**':"sediment** viscosity along y axis (m2/s) - only 3D", + 'SVY*':"sediment* viscosity along y axis (m2/s) - only 3D", + 'SVY1':"sediment1 viscosity along y axis (m2/s) - only 3D", + 'SVY2':"sediment2 viscosity along y axis (m2/s) - only 3D", + 'SVY3':"sediment3 viscosity along y axis (m2/s) - only 3D", + 'SVY4':"sediment4 viscosity along y axis (m2/s) - only 3D", + 'SVY5':"sediment5 viscosity along y axis (m2/s) - only 3D", + 'SVY6':"sediment6 viscosity along y axis (m2/s) - only 3D", + 'SVY7':"sediment7 viscosity along y axis (m2/s) - only 3D", + 'SVY8':"sediment8 viscosity along y axis (m2/s) - only 3D", + 'SVY9':"sediment9 viscosity along y axis (m2/s) - only 3D", + 'SVY10':"sediment10 viscosity along y axis (m2/s) - only 3D", + 'SVY11':"sediment11 viscosity along y axis (m2/s) - only 3D", + 'SVY12':"sediment12 viscosity along y axis (m2/s) - only 3D", + 'SVY13':"sediment13 viscosity along y axis (m2/s) - only 3D", + 'SVY14':"sediment14 viscosity along y axis (m2/s) - only 3D", + 'SVY15':"sediment15 viscosity along y axis (m2/s) - only 3D", + 'SVY16':"sediment16 viscosity along y axis (m2/s) - only 3D", + 'SVY17':"sediment17 viscosity along y axis (m2/s) - only 3D", + 'SVY18':"sediment18 viscosity along y axis (m2/s) - only 3D", + 'SVY19':"sediment19 viscosity along y axis (m2/s) - only 3D", + 'SVY**':"sediment** viscosity along y axis (m2/s) - only 3D", + 'SVY*':"sediment* viscosity along y axis (m2/s) - only 3D", + 'SVY1':"sediment1 viscosity along y axis (m2/s) - only 3D", + 'SVY2':"sediment2 viscosity along y axis (m2/s) - only 3D", + 'SVY3':"sediment3 viscosity along y axis (m2/s) - only 3D", + 'SVY4':"sediment4 viscosity along y axis (m2/s) - only 3D", + 'SVY5':"sediment5 viscosity along y axis (m2/s) - only 3D", + 'SVY6':"sediment6 viscosity along y axis (m2/s) - only 3D", + 'SVY7':"sediment7 viscosity along y axis (m2/s) - only 3D", + 'SVY8':"sediment8 viscosity along y axis (m2/s) - only 3D", + 'SVY9':"sediment9 viscosity along y axis (m2/s) - only 3D", + 'SVY10':"sediment10 viscosity along y axis (m2/s) - only 3D", + 'SVY11':"sediment11 viscosity along y axis (m2/s) - only 3D", + 'SVY12':"sediment12 viscosity along y axis (m2/s) - only 3D", + 'SVY13':"sediment13 viscosity along y axis (m2/s) - only 3D", + 'SVY14':"sediment14 viscosity along y axis (m2/s) - only 3D", + 'SVY15':"sediment15 viscosity along y axis (m2/s) - only 3D", + 'SVY16':"sediment16 viscosity along y axis (m2/s) - only 3D", + 'SVY17':"sediment17 viscosity along y axis (m2/s) - only 3D", + 'SVY18':"sediment18 viscosity along y axis (m2/s) - only 3D", + 'SVY19':"sediment19 viscosity along y axis (m2/s) - only 3D", + 'SVY**':"sediment** viscosity along y axis (m2/s) - only 3D", + 'SVY*':"sediment* viscosity along y axis (m2/s) - only 3D", + 'SVY1':"sediment1 viscosity along y axis (m2/s) - only 3D", + 'SVY2':"sediment2 viscosity along y axis (m2/s) - only 3D", + 'SVY3':"sediment3 viscosity along y axis (m2/s) - only 3D", + 'SVY4':"sediment4 viscosity along y axis (m2/s) - only 3D", + 'SVY5':"sediment5 viscosity along y axis (m2/s) - only 3D", + 'SVY6':"sediment6 viscosity along y axis (m2/s) - only 3D", + 'SVY7':"sediment7 viscosity along y axis (m2/s) - only 3D", + 'SVY8':"sediment8 viscosity along y axis (m2/s) - only 3D", + 'SVY9':"sediment9 viscosity along y axis (m2/s) - only 3D", + 'SVY10':"sediment10 viscosity along y axis (m2/s) - only 3D", + 'SVY11':"sediment11 viscosity along y axis (m2/s) - only 3D", + 'SVY12':"sediment12 viscosity along y axis (m2/s) - only 3D", + 'SVY13':"sediment13 viscosity along y axis (m2/s) - only 3D", + 'SVY14':"sediment14 viscosity along y axis (m2/s) - only 3D", + 'SVY15':"sediment15 viscosity along y axis (m2/s) - only 3D", + 'SVY16':"sediment16 viscosity along y axis (m2/s) - only 3D", + 'SVY17':"sediment17 viscosity along y axis (m2/s) - only 3D", + 'SVY18':"sediment18 viscosity along y axis (m2/s) - only 3D", + 'SVY19':"sediment19 viscosity along y axis (m2/s) - only 3D", + 'SVY**':"sediment** viscosity along y axis (m2/s) - only 3D", + 'SVY*':"sediment* viscosity along y axis (m2/s) - only 3D", + 'SVY1':"sediment1 viscosity along y axis (m2/s) - only 3D", + 'SVY2':"sediment2 viscosity along y axis (m2/s) - only 3D", + 'SVY3':"sediment3 viscosity along y axis (m2/s) - only 3D", + 'SVY4':"sediment4 viscosity along y axis (m2/s) - only 3D", + 'SVY5':"sediment5 viscosity along y axis (m2/s) - only 3D", + 'SVY6':"sediment6 viscosity along y axis (m2/s) - only 3D", + 'SVY7':"sediment7 viscosity along y axis (m2/s) - only 3D", + 'SVY8':"sediment8 viscosity along y axis (m2/s) - only 3D", + 'SVY9':"sediment9 viscosity along y axis (m2/s) - only 3D", + 'SVY10':"sediment10 viscosity along y axis (m2/s) - only 3D", + 'SVY11':"sediment11 viscosity along y axis (m2/s) - only 3D", + 'SVY12':"sediment12 viscosity along y axis (m2/s) - only 3D", + 'SVY13':"sediment13 viscosity along y axis (m2/s) - only 3D", + 'SVY14':"sediment14 viscosity along y axis (m2/s) - only 3D", + 'SVY15':"sediment15 viscosity along y axis (m2/s) - only 3D", + 'SVY16':"sediment16 viscosity along y axis (m2/s) - only 3D", + 'SVY17':"sediment17 viscosity along y axis (m2/s) - only 3D", + 'SVY18':"sediment18 viscosity along y axis (m2/s) - only 3D", + 'SVY19':"sediment19 viscosity along y axis (m2/s) - only 3D", + 'SVY**':"sediment** viscosity along y axis (m2/s) - only 3D", + 'SVY*':"sediment* viscosity along y axis (m2/s) - only 3D", + 'SVY1':"sediment1 viscosity along y axis (m2/s) - only 3D", + 'SVY2':"sediment2 viscosity along y axis (m2/s) - only 3D", + 'SVY3':"sediment3 viscosity along y axis (m2/s) - only 3D", + 'SVY4':"sediment4 viscosity along y axis (m2/s) - only 3D", + 'SVY5':"sediment5 viscosity along y axis (m2/s) - only 3D", + 'SVY6':"sediment6 viscosity along y axis (m2/s) - only 3D", + 'SVY7':"sediment7 viscosity along y axis (m2/s) - only 3D", + 'SVY8':"sediment8 viscosity along y axis (m2/s) - only 3D", + 'SVY9':"sediment9 viscosity along y axis (m2/s) - only 3D", + 'SVY10':"sediment10 viscosity along y axis (m2/s) - only 3D", + 'SVY11':"sediment11 viscosity along y axis (m2/s) - only 3D", + 'SVY12':"sediment12 viscosity along y axis (m2/s) - only 3D", + 'SVY13':"sediment13 viscosity along y axis (m2/s) - only 3D", + 'SVY14':"sediment14 viscosity along y axis (m2/s) - only 3D", + 'SVY15':"sediment15 viscosity along y axis (m2/s) - only 3D", + 'SVY16':"sediment16 viscosity along y axis (m2/s) - only 3D", + 'SVY17':"sediment17 viscosity along y axis (m2/s) - only 3D", + 'SVY18':"sediment18 viscosity along y axis (m2/s) - only 3D", + 'SVY19':"sediment19 viscosity along y axis (m2/s) - only 3D", + 'SVY**':"sediment** viscosity along y axis (m2/s) - only 3D", + 'SVY*':"sediment* viscosity along y axis (m2/s) - only 3D", + 'SVY1':"sediment1 viscosity along y axis (m2/s) - only 3D", + 'SVY2':"sediment2 viscosity along y axis (m2/s) - only 3D", + 'SVY3':"sediment3 viscosity along y axis (m2/s) - only 3D", + 'SVY4':"sediment4 viscosity along y axis (m2/s) - only 3D", + 'SVY5':"sediment5 viscosity along y axis (m2/s) - only 3D", + 'SVY6':"sediment6 viscosity along y axis (m2/s) - only 3D", + 'SVY7':"sediment7 viscosity along y axis (m2/s) - only 3D", + 'SVY8':"sediment8 viscosity along y axis (m2/s) - only 3D", + 'SVY9':"sediment9 viscosity along y axis (m2/s) - only 3D", + 'SVY10':"sediment10 viscosity along y axis (m2/s) - only 3D", + 'SVY11':"sediment11 viscosity along y axis (m2/s) - only 3D", + 'SVY12':"sediment12 viscosity along y axis (m2/s) - only 3D", + 'SVY13':"sediment13 viscosity along y axis (m2/s) - only 3D", + 'SVY14':"sediment14 viscosity along y axis (m2/s) - only 3D", + 'SVY15':"sediment15 viscosity along y axis (m2/s) - only 3D", + 'SVY16':"sediment16 viscosity along y axis (m2/s) - only 3D", + 'SVY17':"sediment17 viscosity along y axis (m2/s) - only 3D", + 'SVY18':"sediment18 viscosity along y axis (m2/s) - only 3D", + 'SVY19':"sediment19 viscosity along y axis (m2/s) - only 3D", + 'SVY**':"sediment** viscosity along y axis (m2/s) - only 3D", + 'SVZ*':"sediment* viscosity along z axis (m2/s) - only 3D", + 'SVZ1':"sediment1 viscosity along z axis (m2/s) - only 3D", + 'SVZ2':"sediment2 viscosity along z axis (m2/s) - only 3D", + 'SVZ3':"sediment3 viscosity along z axis (m2/s) - only 3D", + 'SVZ4':"sediment4 viscosity along z axis (m2/s) - only 3D", + 'SVZ5':"sediment5 viscosity along z axis (m2/s) - only 3D", + 'SVZ6':"sediment6 viscosity along z axis (m2/s) - only 3D", + 'SVZ7':"sediment7 viscosity along z axis (m2/s) - only 3D", + 'SVZ8':"sediment8 viscosity along z axis (m2/s) - only 3D", + 'SVZ9':"sediment9 viscosity along z axis (m2/s) - only 3D", + 'SVZ10':"sediment10 viscosity along z axis (m2/s) - only 3D", + 'SVZ11':"sediment11 viscosity along z axis (m2/s) - only 3D", + 'SVZ12':"sediment12 viscosity along z axis (m2/s) - only 3D", + 'SVZ13':"sediment13 viscosity along z axis (m2/s) - only 3D", + 'SVZ14':"sediment14 viscosity along z axis (m2/s) - only 3D", + 'SVZ15':"sediment15 viscosity along z axis (m2/s) - only 3D", + 'SVZ16':"sediment16 viscosity along z axis (m2/s) - only 3D", + 'SVZ17':"sediment17 viscosity along z axis (m2/s) - only 3D", + 'SVZ18':"sediment18 viscosity along z axis (m2/s) - only 3D", + 'SVZ19':"sediment19 viscosity along z axis (m2/s) - only 3D", + 'SVZ**':"sediment** viscosity along z axis (m2/s) - only 3D", + 'SVZ*':"sediment* viscosity along z axis (m2/s) - only 3D", + 'SVZ1':"sediment1 viscosity along z axis (m2/s) - only 3D", + 'SVZ2':"sediment2 viscosity along z axis (m2/s) - only 3D", + 'SVZ3':"sediment3 viscosity along z axis (m2/s) - only 3D", + 'SVZ4':"sediment4 viscosity along z axis (m2/s) - only 3D", + 'SVZ5':"sediment5 viscosity along z axis (m2/s) - only 3D", + 'SVZ6':"sediment6 viscosity along z axis (m2/s) - only 3D", + 'SVZ7':"sediment7 viscosity along z axis (m2/s) - only 3D", + 'SVZ8':"sediment8 viscosity along z axis (m2/s) - only 3D", + 'SVZ9':"sediment9 viscosity along z axis (m2/s) - only 3D", + 'SVZ10':"sediment10 viscosity along z axis (m2/s) - only 3D", + 'SVZ11':"sediment11 viscosity along z axis (m2/s) - only 3D", + 'SVZ12':"sediment12 viscosity along z axis (m2/s) - only 3D", + 'SVZ13':"sediment13 viscosity along z axis (m2/s) - only 3D", + 'SVZ14':"sediment14 viscosity along z axis (m2/s) - only 3D", + 'SVZ15':"sediment15 viscosity along z axis (m2/s) - only 3D", + 'SVZ16':"sediment16 viscosity along z axis (m2/s) - only 3D", + 'SVZ17':"sediment17 viscosity along z axis (m2/s) - only 3D", + 'SVZ18':"sediment18 viscosity along z axis (m2/s) - only 3D", + 'SVZ19':"sediment19 viscosity along z axis (m2/s) - only 3D", + 'SVZ**':"sediment** viscosity along z axis (m2/s) - only 3D", + 'SVZ*':"sediment* viscosity along z axis (m2/s) - only 3D", + 'SVZ1':"sediment1 viscosity along z axis (m2/s) - only 3D", + 'SVZ2':"sediment2 viscosity along z axis (m2/s) - only 3D", + 'SVZ3':"sediment3 viscosity along z axis (m2/s) - only 3D", + 'SVZ4':"sediment4 viscosity along z axis (m2/s) - only 3D", + 'SVZ5':"sediment5 viscosity along z axis (m2/s) - only 3D", + 'SVZ6':"sediment6 viscosity along z axis (m2/s) - only 3D", + 'SVZ7':"sediment7 viscosity along z axis (m2/s) - only 3D", + 'SVZ8':"sediment8 viscosity along z axis (m2/s) - only 3D", + 'SVZ9':"sediment9 viscosity along z axis (m2/s) - only 3D", + 'SVZ10':"sediment10 viscosity along z axis (m2/s) - only 3D", + 'SVZ11':"sediment11 viscosity along z axis (m2/s) - only 3D", + 'SVZ12':"sediment12 viscosity along z axis (m2/s) - only 3D", + 'SVZ13':"sediment13 viscosity along z axis (m2/s) - only 3D", + 'SVZ14':"sediment14 viscosity along z axis (m2/s) - only 3D", + 'SVZ15':"sediment15 viscosity along z axis (m2/s) - only 3D", + 'SVZ16':"sediment16 viscosity along z axis (m2/s) - only 3D", + 'SVZ17':"sediment17 viscosity along z axis (m2/s) - only 3D", + 'SVZ18':"sediment18 viscosity along z axis (m2/s) - only 3D", + 'SVZ19':"sediment19 viscosity along z axis (m2/s) - only 3D", + 'SVZ**':"sediment** viscosity along z axis (m2/s) - only 3D", + 'SVZ*':"sediment* viscosity along z axis (m2/s) - only 3D", + 'SVZ1':"sediment1 viscosity along z axis (m2/s) - only 3D", + 'SVZ2':"sediment2 viscosity along z axis (m2/s) - only 3D", + 'SVZ3':"sediment3 viscosity along z axis (m2/s) - only 3D", + 'SVZ4':"sediment4 viscosity along z axis (m2/s) - only 3D", + 'SVZ5':"sediment5 viscosity along z axis (m2/s) - only 3D", + 'SVZ6':"sediment6 viscosity along z axis (m2/s) - only 3D", + 'SVZ7':"sediment7 viscosity along z axis (m2/s) - only 3D", + 'SVZ8':"sediment8 viscosity along z axis (m2/s) - only 3D", + 'SVZ9':"sediment9 viscosity along z axis (m2/s) - only 3D", + 'SVZ10':"sediment10 viscosity along z axis (m2/s) - only 3D", + 'SVZ11':"sediment11 viscosity along z axis (m2/s) - only 3D", + 'SVZ12':"sediment12 viscosity along z axis (m2/s) - only 3D", + 'SVZ13':"sediment13 viscosity along z axis (m2/s) - only 3D", + 'SVZ14':"sediment14 viscosity along z axis (m2/s) - only 3D", + 'SVZ15':"sediment15 viscosity along z axis (m2/s) - only 3D", + 'SVZ16':"sediment16 viscosity along z axis (m2/s) - only 3D", + 'SVZ17':"sediment17 viscosity along z axis (m2/s) - only 3D", + 'SVZ18':"sediment18 viscosity along z axis (m2/s) - only 3D", + 'SVZ19':"sediment19 viscosity along z axis (m2/s) - only 3D", + 'SVZ**':"sediment** viscosity along z axis (m2/s) - only 3D", + 'SVZ*':"sediment* viscosity along z axis (m2/s) - only 3D", + 'SVZ1':"sediment1 viscosity along z axis (m2/s) - only 3D", + 'SVZ2':"sediment2 viscosity along z axis (m2/s) - only 3D", + 'SVZ3':"sediment3 viscosity along z axis (m2/s) - only 3D", + 'SVZ4':"sediment4 viscosity along z axis (m2/s) - only 3D", + 'SVZ5':"sediment5 viscosity along z axis (m2/s) - only 3D", + 'SVZ6':"sediment6 viscosity along z axis (m2/s) - only 3D", + 'SVZ7':"sediment7 viscosity along z axis (m2/s) - only 3D", + 'SVZ8':"sediment8 viscosity along z axis (m2/s) - only 3D", + 'SVZ9':"sediment9 viscosity along z axis (m2/s) - only 3D", + 'SVZ10':"sediment10 viscosity along z axis (m2/s) - only 3D", + 'SVZ11':"sediment11 viscosity along z axis (m2/s) - only 3D", + 'SVZ12':"sediment12 viscosity along z axis (m2/s) - only 3D", + 'SVZ13':"sediment13 viscosity along z axis (m2/s) - only 3D", + 'SVZ14':"sediment14 viscosity along z axis (m2/s) - only 3D", + 'SVZ15':"sediment15 viscosity along z axis (m2/s) - only 3D", + 'SVZ16':"sediment16 viscosity along z axis (m2/s) - only 3D", + 'SVZ17':"sediment17 viscosity along z axis (m2/s) - only 3D", + 'SVZ18':"sediment18 viscosity along z axis (m2/s) - only 3D", + 'SVZ19':"sediment19 viscosity along z axis (m2/s) - only 3D", + 'SVZ**':"sediment** viscosity along z axis (m2/s) - only 3D", + 'SVZ*':"sediment* viscosity along z axis (m2/s) - only 3D", + 'SVZ1':"sediment1 viscosity along z axis (m2/s) - only 3D", + 'SVZ2':"sediment2 viscosity along z axis (m2/s) - only 3D", + 'SVZ3':"sediment3 viscosity along z axis (m2/s) - only 3D", + 'SVZ4':"sediment4 viscosity along z axis (m2/s) - only 3D", + 'SVZ5':"sediment5 viscosity along z axis (m2/s) - only 3D", + 'SVZ6':"sediment6 viscosity along z axis (m2/s) - only 3D", + 'SVZ7':"sediment7 viscosity along z axis (m2/s) - only 3D", + 'SVZ8':"sediment8 viscosity along z axis (m2/s) - only 3D", + 'SVZ9':"sediment9 viscosity along z axis (m2/s) - only 3D", + 'SVZ10':"sediment10 viscosity along z axis (m2/s) - only 3D", + 'SVZ11':"sediment11 viscosity along z axis (m2/s) - only 3D", + 'SVZ12':"sediment12 viscosity along z axis (m2/s) - only 3D", + 'SVZ13':"sediment13 viscosity along z axis (m2/s) - only 3D", + 'SVZ14':"sediment14 viscosity along z axis (m2/s) - only 3D", + 'SVZ15':"sediment15 viscosity along z axis (m2/s) - only 3D", + 'SVZ16':"sediment16 viscosity along z axis (m2/s) - only 3D", + 'SVZ17':"sediment17 viscosity along z axis (m2/s) - only 3D", + 'SVZ18':"sediment18 viscosity along z axis (m2/s) - only 3D", + 'SVZ19':"sediment19 viscosity along z axis (m2/s) - only 3D", + 'SVZ**':"sediment** viscosity along z axis (m2/s) - only 3D", + 'SVZ*':"sediment* viscosity along z axis (m2/s) - only 3D", + 'SVZ1':"sediment1 viscosity along z axis (m2/s) - only 3D", + 'SVZ2':"sediment2 viscosity along z axis (m2/s) - only 3D", + 'SVZ3':"sediment3 viscosity along z axis (m2/s) - only 3D", + 'SVZ4':"sediment4 viscosity along z axis (m2/s) - only 3D", + 'SVZ5':"sediment5 viscosity along z axis (m2/s) - only 3D", + 'SVZ6':"sediment6 viscosity along z axis (m2/s) - only 3D", + 'SVZ7':"sediment7 viscosity along z axis (m2/s) - only 3D", + 'SVZ8':"sediment8 viscosity along z axis (m2/s) - only 3D", + 'SVZ9':"sediment9 viscosity along z axis (m2/s) - only 3D", + 'SVZ10':"sediment10 viscosity along z axis (m2/s) - only 3D", + 'SVZ11':"sediment11 viscosity along z axis (m2/s) - only 3D", + 'SVZ12':"sediment12 viscosity along z axis (m2/s) - only 3D", + 'SVZ13':"sediment13 viscosity along z axis (m2/s) - only 3D", + 'SVZ14':"sediment14 viscosity along z axis (m2/s) - only 3D", + 'SVZ15':"sediment15 viscosity along z axis (m2/s) - only 3D", + 'SVZ16':"sediment16 viscosity along z axis (m2/s) - only 3D", + 'SVZ17':"sediment17 viscosity along z axis (m2/s) - only 3D", + 'SVZ18':"sediment18 viscosity along z axis (m2/s) - only 3D", + 'SVZ19':"sediment19 viscosity along z axis (m2/s) - only 3D", + 'SVZ**':"sediment** viscosity along z axis (m2/s) - only 3D", + 'SVZ*':"sediment* viscosity along z axis (m2/s) - only 3D", + 'SVZ1':"sediment1 viscosity along z axis (m2/s) - only 3D", + 'SVZ2':"sediment2 viscosity along z axis (m2/s) - only 3D", + 'SVZ3':"sediment3 viscosity along z axis (m2/s) - only 3D", + 'SVZ4':"sediment4 viscosity along z axis (m2/s) - only 3D", + 'SVZ5':"sediment5 viscosity along z axis (m2/s) - only 3D", + 'SVZ6':"sediment6 viscosity along z axis (m2/s) - only 3D", + 'SVZ7':"sediment7 viscosity along z axis (m2/s) - only 3D", + 'SVZ8':"sediment8 viscosity along z axis (m2/s) - only 3D", + 'SVZ9':"sediment9 viscosity along z axis (m2/s) - only 3D", + 'SVZ10':"sediment10 viscosity along z axis (m2/s) - only 3D", + 'SVZ11':"sediment11 viscosity along z axis (m2/s) - only 3D", + 'SVZ12':"sediment12 viscosity along z axis (m2/s) - only 3D", + 'SVZ13':"sediment13 viscosity along z axis (m2/s) - only 3D", + 'SVZ14':"sediment14 viscosity along z axis (m2/s) - only 3D", + 'SVZ15':"sediment15 viscosity along z axis (m2/s) - only 3D", + 'SVZ16':"sediment16 viscosity along z axis (m2/s) - only 3D", + 'SVZ17':"sediment17 viscosity along z axis (m2/s) - only 3D", + 'SVZ18':"sediment18 viscosity along z axis (m2/s) - only 3D", + 'SVZ19':"sediment19 viscosity along z axis (m2/s) - only 3D", + 'SVZ**':"sediment** viscosity along z axis (m2/s) - only 3D", + 'SVZ*':"sediment* viscosity along z axis (m2/s) - only 3D", + 'SVZ1':"sediment1 viscosity along z axis (m2/s) - only 3D", + 'SVZ2':"sediment2 viscosity along z axis (m2/s) - only 3D", + 'SVZ3':"sediment3 viscosity along z axis (m2/s) - only 3D", + 'SVZ4':"sediment4 viscosity along z axis (m2/s) - only 3D", + 'SVZ5':"sediment5 viscosity along z axis (m2/s) - only 3D", + 'SVZ6':"sediment6 viscosity along z axis (m2/s) - only 3D", + 'SVZ7':"sediment7 viscosity along z axis (m2/s) - only 3D", + 'SVZ8':"sediment8 viscosity along z axis (m2/s) - only 3D", + 'SVZ9':"sediment9 viscosity along z axis (m2/s) - only 3D", + 'SVZ10':"sediment10 viscosity along z axis (m2/s) - only 3D", + 'SVZ11':"sediment11 viscosity along z axis (m2/s) - only 3D", + 'SVZ12':"sediment12 viscosity along z axis (m2/s) - only 3D", + 'SVZ13':"sediment13 viscosity along z axis (m2/s) - only 3D", + 'SVZ14':"sediment14 viscosity along z axis (m2/s) - only 3D", + 'SVZ15':"sediment15 viscosity along z axis (m2/s) - only 3D", + 'SVZ16':"sediment16 viscosity along z axis (m2/s) - only 3D", + 'SVZ17':"sediment17 viscosity along z axis (m2/s) - only 3D", + 'SVZ18':"sediment18 viscosity along z axis (m2/s) - only 3D", + 'SVZ19':"sediment19 viscosity along z axis (m2/s) - only 3D", + 'SVZ**':"sediment** viscosity along z axis (m2/s) - only 3D", + 'SVZ*':"sediment* viscosity along z axis (m2/s) - only 3D", + 'SVZ1':"sediment1 viscosity along z axis (m2/s) - only 3D", + 'SVZ2':"sediment2 viscosity along z axis (m2/s) - only 3D", + 'SVZ3':"sediment3 viscosity along z axis (m2/s) - only 3D", + 'SVZ4':"sediment4 viscosity along z axis (m2/s) - only 3D", + 'SVZ5':"sediment5 viscosity along z axis (m2/s) - only 3D", + 'SVZ6':"sediment6 viscosity along z axis (m2/s) - only 3D", + 'SVZ7':"sediment7 viscosity along z axis (m2/s) - only 3D", + 'SVZ8':"sediment8 viscosity along z axis (m2/s) - only 3D", + 'SVZ9':"sediment9 viscosity along z axis (m2/s) - only 3D", + 'SVZ10':"sediment10 viscosity along z axis (m2/s) - only 3D", + 'SVZ11':"sediment11 viscosity along z axis (m2/s) - only 3D", + 'SVZ12':"sediment12 viscosity along z axis (m2/s) - only 3D", + 'SVZ13':"sediment13 viscosity along z axis (m2/s) - only 3D", + 'SVZ14':"sediment14 viscosity along z axis (m2/s) - only 3D", + 'SVZ15':"sediment15 viscosity along z axis (m2/s) - only 3D", + 'SVZ16':"sediment16 viscosity along z axis (m2/s) - only 3D", + 'SVZ17':"sediment17 viscosity along z axis (m2/s) - only 3D", + 'SVZ18':"sediment18 viscosity along z axis (m2/s) - only 3D", + 'SVZ19':"sediment19 viscosity along z axis (m2/s) - only 3D", + 'SVZ**':"sediment** viscosity along z axis (m2/s) - only 3D", + 'SVZ*':"sediment* viscosity along z axis (m2/s) - only 3D", + 'SVZ1':"sediment1 viscosity along z axis (m2/s) - only 3D", + 'SVZ2':"sediment2 viscosity along z axis (m2/s) - only 3D", + 'SVZ3':"sediment3 viscosity along z axis (m2/s) - only 3D", + 'SVZ4':"sediment4 viscosity along z axis (m2/s) - only 3D", + 'SVZ5':"sediment5 viscosity along z axis (m2/s) - only 3D", + 'SVZ6':"sediment6 viscosity along z axis (m2/s) - only 3D", + 'SVZ7':"sediment7 viscosity along z axis (m2/s) - only 3D", + 'SVZ8':"sediment8 viscosity along z axis (m2/s) - only 3D", + 'SVZ9':"sediment9 viscosity along z axis (m2/s) - only 3D", + 'SVZ10':"sediment10 viscosity along z axis (m2/s) - only 3D", + 'SVZ11':"sediment11 viscosity along z axis (m2/s) - only 3D", + 'SVZ12':"sediment12 viscosity along z axis (m2/s) - only 3D", + 'SVZ13':"sediment13 viscosity along z axis (m2/s) - only 3D", + 'SVZ14':"sediment14 viscosity along z axis (m2/s) - only 3D", + 'SVZ15':"sediment15 viscosity along z axis (m2/s) - only 3D", + 'SVZ16':"sediment16 viscosity along z axis (m2/s) - only 3D", + 'SVZ17':"sediment17 viscosity along z axis (m2/s) - only 3D", + 'SVZ18':"sediment18 viscosity along z axis (m2/s) - only 3D", + 'SVZ19':"sediment19 viscosity along z axis (m2/s) - only 3D", + 'SVZ**':"sediment** viscosity along z axis (m2/s) - only 3D", + 'SVZ*':"sediment* viscosity along z axis (m2/s) - only 3D", + 'SVZ1':"sediment1 viscosity along z axis (m2/s) - only 3D", + 'SVZ2':"sediment2 viscosity along z axis (m2/s) - only 3D", + 'SVZ3':"sediment3 viscosity along z axis (m2/s) - only 3D", + 'SVZ4':"sediment4 viscosity along z axis (m2/s) - only 3D", + 'SVZ5':"sediment5 viscosity along z axis (m2/s) - only 3D", + 'SVZ6':"sediment6 viscosity along z axis (m2/s) - only 3D", + 'SVZ7':"sediment7 viscosity along z axis (m2/s) - only 3D", + 'SVZ8':"sediment8 viscosity along z axis (m2/s) - only 3D", + 'SVZ9':"sediment9 viscosity along z axis (m2/s) - only 3D", + 'SVZ10':"sediment10 viscosity along z axis (m2/s) - only 3D", + 'SVZ11':"sediment11 viscosity along z axis (m2/s) - only 3D", + 'SVZ12':"sediment12 viscosity along z axis (m2/s) - only 3D", + 'SVZ13':"sediment13 viscosity along z axis (m2/s) - only 3D", + 'SVZ14':"sediment14 viscosity along z axis (m2/s) - only 3D", + 'SVZ15':"sediment15 viscosity along z axis (m2/s) - only 3D", + 'SVZ16':"sediment16 viscosity along z axis (m2/s) - only 3D", + 'SVZ17':"sediment17 viscosity along z axis (m2/s) - only 3D", + 'SVZ18':"sediment18 viscosity along z axis (m2/s) - only 3D", + 'SVZ19':"sediment19 viscosity along z axis (m2/s) - only 3D", + 'SVZ**':"sediment** viscosity along z axis (m2/s) - only 3D", + 'SVZ*':"sediment* viscosity along z axis (m2/s) - only 3D", + 'SVZ1':"sediment1 viscosity along z axis (m2/s) - only 3D", + 'SVZ2':"sediment2 viscosity along z axis (m2/s) - only 3D", + 'SVZ3':"sediment3 viscosity along z axis (m2/s) - only 3D", + 'SVZ4':"sediment4 viscosity along z axis (m2/s) - only 3D", + 'SVZ5':"sediment5 viscosity along z axis (m2/s) - only 3D", + 'SVZ6':"sediment6 viscosity along z axis (m2/s) - only 3D", + 'SVZ7':"sediment7 viscosity along z axis (m2/s) - only 3D", + 'SVZ8':"sediment8 viscosity along z axis (m2/s) - only 3D", + 'SVZ9':"sediment9 viscosity along z axis (m2/s) - only 3D", + 'SVZ10':"sediment10 viscosity along z axis (m2/s) - only 3D", + 'SVZ11':"sediment11 viscosity along z axis (m2/s) - only 3D", + 'SVZ12':"sediment12 viscosity along z axis (m2/s) - only 3D", + 'SVZ13':"sediment13 viscosity along z axis (m2/s) - only 3D", + 'SVZ14':"sediment14 viscosity along z axis (m2/s) - only 3D", + 'SVZ15':"sediment15 viscosity along z axis (m2/s) - only 3D", + 'SVZ16':"sediment16 viscosity along z axis (m2/s) - only 3D", + 'SVZ17':"sediment17 viscosity along z axis (m2/s) - only 3D", + 'SVZ18':"sediment18 viscosity along z axis (m2/s) - only 3D", + 'SVZ19':"sediment19 viscosity along z axis (m2/s) - only 3D", + 'SVZ**':"sediment** viscosity along z axis (m2/s) - only 3D", + 'SVZ*':"sediment* viscosity along z axis (m2/s) - only 3D", + 'SVZ1':"sediment1 viscosity along z axis (m2/s) - only 3D", + 'SVZ2':"sediment2 viscosity along z axis (m2/s) - only 3D", + 'SVZ3':"sediment3 viscosity along z axis (m2/s) - only 3D", + 'SVZ4':"sediment4 viscosity along z axis (m2/s) - only 3D", + 'SVZ5':"sediment5 viscosity along z axis (m2/s) - only 3D", + 'SVZ6':"sediment6 viscosity along z axis (m2/s) - only 3D", + 'SVZ7':"sediment7 viscosity along z axis (m2/s) - only 3D", + 'SVZ8':"sediment8 viscosity along z axis (m2/s) - only 3D", + 'SVZ9':"sediment9 viscosity along z axis (m2/s) - only 3D", + 'SVZ10':"sediment10 viscosity along z axis (m2/s) - only 3D", + 'SVZ11':"sediment11 viscosity along z axis (m2/s) - only 3D", + 'SVZ12':"sediment12 viscosity along z axis (m2/s) - only 3D", + 'SVZ13':"sediment13 viscosity along z axis (m2/s) - only 3D", + 'SVZ14':"sediment14 viscosity along z axis (m2/s) - only 3D", + 'SVZ15':"sediment15 viscosity along z axis (m2/s) - only 3D", + 'SVZ16':"sediment16 viscosity along z axis (m2/s) - only 3D", + 'SVZ17':"sediment17 viscosity along z axis (m2/s) - only 3D", + 'SVZ18':"sediment18 viscosity along z axis (m2/s) - only 3D", + 'SVZ19':"sediment19 viscosity along z axis (m2/s) - only 3D", + 'SVZ**':"sediment** viscosity along z axis (m2/s) - only 3D", + 'SVZ*':"sediment* viscosity along z axis (m2/s) - only 3D", + 'SVZ1':"sediment1 viscosity along z axis (m2/s) - only 3D", + 'SVZ2':"sediment2 viscosity along z axis (m2/s) - only 3D", + 'SVZ3':"sediment3 viscosity along z axis (m2/s) - only 3D", + 'SVZ4':"sediment4 viscosity along z axis (m2/s) - only 3D", + 'SVZ5':"sediment5 viscosity along z axis (m2/s) - only 3D", + 'SVZ6':"sediment6 viscosity along z axis (m2/s) - only 3D", + 'SVZ7':"sediment7 viscosity along z axis (m2/s) - only 3D", + 'SVZ8':"sediment8 viscosity along z axis (m2/s) - only 3D", + 'SVZ9':"sediment9 viscosity along z axis (m2/s) - only 3D", + 'SVZ10':"sediment10 viscosity along z axis (m2/s) - only 3D", + 'SVZ11':"sediment11 viscosity along z axis (m2/s) - only 3D", + 'SVZ12':"sediment12 viscosity along z axis (m2/s) - only 3D", + 'SVZ13':"sediment13 viscosity along z axis (m2/s) - only 3D", + 'SVZ14':"sediment14 viscosity along z axis (m2/s) - only 3D", + 'SVZ15':"sediment15 viscosity along z axis (m2/s) - only 3D", + 'SVZ16':"sediment16 viscosity along z axis (m2/s) - only 3D", + 'SVZ17':"sediment17 viscosity along z axis (m2/s) - only 3D", + 'SVZ18':"sediment18 viscosity along z axis (m2/s) - only 3D", + 'SVZ19':"sediment19 viscosity along z axis (m2/s) - only 3D", + 'SVZ**':"sediment** viscosity along z axis (m2/s) - only 3D", + 'SVZ*':"sediment* viscosity along z axis (m2/s) - only 3D", + 'SVZ1':"sediment1 viscosity along z axis (m2/s) - only 3D", + 'SVZ2':"sediment2 viscosity along z axis (m2/s) - only 3D", + 'SVZ3':"sediment3 viscosity along z axis (m2/s) - only 3D", + 'SVZ4':"sediment4 viscosity along z axis (m2/s) - only 3D", + 'SVZ5':"sediment5 viscosity along z axis (m2/s) - only 3D", + 'SVZ6':"sediment6 viscosity along z axis (m2/s) - only 3D", + 'SVZ7':"sediment7 viscosity along z axis (m2/s) - only 3D", + 'SVZ8':"sediment8 viscosity along z axis (m2/s) - only 3D", + 'SVZ9':"sediment9 viscosity along z axis (m2/s) - only 3D", + 'SVZ10':"sediment10 viscosity along z axis (m2/s) - only 3D", + 'SVZ11':"sediment11 viscosity along z axis (m2/s) - only 3D", + 'SVZ12':"sediment12 viscosity along z axis (m2/s) - only 3D", + 'SVZ13':"sediment13 viscosity along z axis (m2/s) - only 3D", + 'SVZ14':"sediment14 viscosity along z axis (m2/s) - only 3D", + 'SVZ15':"sediment15 viscosity along z axis (m2/s) - only 3D", + 'SVZ16':"sediment16 viscosity along z axis (m2/s) - only 3D", + 'SVZ17':"sediment17 viscosity along z axis (m2/s) - only 3D", + 'SVZ18':"sediment18 viscosity along z axis (m2/s) - only 3D", + 'SVZ19':"sediment19 viscosity along z axis (m2/s) - only 3D", + 'SVZ**':"sediment** viscosity along z axis (m2/s) - only 3D", + 'SVZ*':"sediment* viscosity along z axis (m2/s) - only 3D", + 'SVZ1':"sediment1 viscosity along z axis (m2/s) - only 3D", + 'SVZ2':"sediment2 viscosity along z axis (m2/s) - only 3D", + 'SVZ3':"sediment3 viscosity along z axis (m2/s) - only 3D", + 'SVZ4':"sediment4 viscosity along z axis (m2/s) - only 3D", + 'SVZ5':"sediment5 viscosity along z axis (m2/s) - only 3D", + 'SVZ6':"sediment6 viscosity along z axis (m2/s) - only 3D", + 'SVZ7':"sediment7 viscosity along z axis (m2/s) - only 3D", + 'SVZ8':"sediment8 viscosity along z axis (m2/s) - only 3D", + 'SVZ9':"sediment9 viscosity along z axis (m2/s) - only 3D", + 'SVZ10':"sediment10 viscosity along z axis (m2/s) - only 3D", + 'SVZ11':"sediment11 viscosity along z axis (m2/s) - only 3D", + 'SVZ12':"sediment12 viscosity along z axis (m2/s) - only 3D", + 'SVZ13':"sediment13 viscosity along z axis (m2/s) - only 3D", + 'SVZ14':"sediment14 viscosity along z axis (m2/s) - only 3D", + 'SVZ15':"sediment15 viscosity along z axis (m2/s) - only 3D", + 'SVZ16':"sediment16 viscosity along z axis (m2/s) - only 3D", + 'SVZ17':"sediment17 viscosity along z axis (m2/s) - only 3D", + 'SVZ18':"sediment18 viscosity along z axis (m2/s) - only 3D", + 'SVZ19':"sediment19 viscosity along z axis (m2/s) - only 3D", + 'SVZ**':"sediment** viscosity along z axis (m2/s) - only 3D", + 'SVZ*':"sediment* viscosity along z axis (m2/s) - only 3D", + 'SVZ1':"sediment1 viscosity along z axis (m2/s) - only 3D", + 'SVZ2':"sediment2 viscosity along z axis (m2/s) - only 3D", + 'SVZ3':"sediment3 viscosity along z axis (m2/s) - only 3D", + 'SVZ4':"sediment4 viscosity along z axis (m2/s) - only 3D", + 'SVZ5':"sediment5 viscosity along z axis (m2/s) - only 3D", + 'SVZ6':"sediment6 viscosity along z axis (m2/s) - only 3D", + 'SVZ7':"sediment7 viscosity along z axis (m2/s) - only 3D", + 'SVZ8':"sediment8 viscosity along z axis (m2/s) - only 3D", + 'SVZ9':"sediment9 viscosity along z axis (m2/s) - only 3D", + 'SVZ10':"sediment10 viscosity along z axis (m2/s) - only 3D", + 'SVZ11':"sediment11 viscosity along z axis (m2/s) - only 3D", + 'SVZ12':"sediment12 viscosity along z axis (m2/s) - only 3D", + 'SVZ13':"sediment13 viscosity along z axis (m2/s) - only 3D", + 'SVZ14':"sediment14 viscosity along z axis (m2/s) - only 3D", + 'SVZ15':"sediment15 viscosity along z axis (m2/s) - only 3D", + 'SVZ16':"sediment16 viscosity along z axis (m2/s) - only 3D", + 'SVZ17':"sediment17 viscosity along z axis (m2/s) - only 3D", + 'SVZ18':"sediment18 viscosity along z axis (m2/s) - only 3D", + 'SVZ19':"sediment19 viscosity along z axis (m2/s) - only 3D", + 'SVZ**':"sediment** viscosity along z axis (m2/s) - only 3D", + 'SVZ*':"sediment* viscosity along z axis (m2/s) - only 3D", + 'SVZ1':"sediment1 viscosity along z axis (m2/s) - only 3D", + 'SVZ2':"sediment2 viscosity along z axis (m2/s) - only 3D", + 'SVZ3':"sediment3 viscosity along z axis (m2/s) - only 3D", + 'SVZ4':"sediment4 viscosity along z axis (m2/s) - only 3D", + 'SVZ5':"sediment5 viscosity along z axis (m2/s) - only 3D", + 'SVZ6':"sediment6 viscosity along z axis (m2/s) - only 3D", + 'SVZ7':"sediment7 viscosity along z axis (m2/s) - only 3D", + 'SVZ8':"sediment8 viscosity along z axis (m2/s) - only 3D", + 'SVZ9':"sediment9 viscosity along z axis (m2/s) - only 3D", + 'SVZ10':"sediment10 viscosity along z axis (m2/s) - only 3D", + 'SVZ11':"sediment11 viscosity along z axis (m2/s) - only 3D", + 'SVZ12':"sediment12 viscosity along z axis (m2/s) - only 3D", + 'SVZ13':"sediment13 viscosity along z axis (m2/s) - only 3D", + 'SVZ14':"sediment14 viscosity along z axis (m2/s) - only 3D", + 'SVZ15':"sediment15 viscosity along z axis (m2/s) - only 3D", + 'SVZ16':"sediment16 viscosity along z axis (m2/s) - only 3D", + 'SVZ17':"sediment17 viscosity along z axis (m2/s) - only 3D", + 'SVZ18':"sediment18 viscosity along z axis (m2/s) - only 3D", + 'SVZ19':"sediment19 viscosity along z axis (m2/s) - only 3D", + 'SVZ**':"sediment** viscosity along z axis (m2/s) - only 3D", + 'SVZ*':"sediment* viscosity along z axis (m2/s) - only 3D", + 'SVZ1':"sediment1 viscosity along z axis (m2/s) - only 3D", + 'SVZ2':"sediment2 viscosity along z axis (m2/s) - only 3D", + 'SVZ3':"sediment3 viscosity along z axis (m2/s) - only 3D", + 'SVZ4':"sediment4 viscosity along z axis (m2/s) - only 3D", + 'SVZ5':"sediment5 viscosity along z axis (m2/s) - only 3D", + 'SVZ6':"sediment6 viscosity along z axis (m2/s) - only 3D", + 'SVZ7':"sediment7 viscosity along z axis (m2/s) - only 3D", + 'SVZ8':"sediment8 viscosity along z axis (m2/s) - only 3D", + 'SVZ9':"sediment9 viscosity along z axis (m2/s) - only 3D", + 'SVZ10':"sediment10 viscosity along z axis (m2/s) - only 3D", + 'SVZ11':"sediment11 viscosity along z axis (m2/s) - only 3D", + 'SVZ12':"sediment12 viscosity along z axis (m2/s) - only 3D", + 'SVZ13':"sediment13 viscosity along z axis (m2/s) - only 3D", + 'SVZ14':"sediment14 viscosity along z axis (m2/s) - only 3D", + 'SVZ15':"sediment15 viscosity along z axis (m2/s) - only 3D", + 'SVZ16':"sediment16 viscosity along z axis (m2/s) - only 3D", + 'SVZ17':"sediment17 viscosity along z axis (m2/s) - only 3D", + 'SVZ18':"sediment18 viscosity along z axis (m2/s) - only 3D", + 'SVZ19':"sediment19 viscosity along z axis (m2/s) - only 3D", + 'SVZ**':"sediment** viscosity along z axis (m2/s) - only 3D", + 'SVZ*':"sediment* viscosity along z axis (m2/s) - only 3D", + 'SVZ1':"sediment1 viscosity along z axis (m2/s) - only 3D", + 'SVZ2':"sediment2 viscosity along z axis (m2/s) - only 3D", + 'SVZ3':"sediment3 viscosity along z axis (m2/s) - only 3D", + 'SVZ4':"sediment4 viscosity along z axis (m2/s) - only 3D", + 'SVZ5':"sediment5 viscosity along z axis (m2/s) - only 3D", + 'SVZ6':"sediment6 viscosity along z axis (m2/s) - only 3D", + 'SVZ7':"sediment7 viscosity along z axis (m2/s) - only 3D", + 'SVZ8':"sediment8 viscosity along z axis (m2/s) - only 3D", + 'SVZ9':"sediment9 viscosity along z axis (m2/s) - only 3D", + 'SVZ10':"sediment10 viscosity along z axis (m2/s) - only 3D", + 'SVZ11':"sediment11 viscosity along z axis (m2/s) - only 3D", + 'SVZ12':"sediment12 viscosity along z axis (m2/s) - only 3D", + 'SVZ13':"sediment13 viscosity along z axis (m2/s) - only 3D", + 'SVZ14':"sediment14 viscosity along z axis (m2/s) - only 3D", + 'SVZ15':"sediment15 viscosity along z axis (m2/s) - only 3D", + 'SVZ16':"sediment16 viscosity along z axis (m2/s) - only 3D", + 'SVZ17':"sediment17 viscosity along z axis (m2/s) - only 3D", + 'SVZ18':"sediment18 viscosity along z axis (m2/s) - only 3D", + 'SVZ19':"sediment19 viscosity along z axis (m2/s) - only 3D", + 'SVZ**':"sediment** viscosity along z axis (m2/s) - only 3D", 'QSBL':"bed load transport rate (kg/(m*s))", 'QSBLX':"bed load transport rate x axis", 'QSBLY':"bed load transport rate y axis", 'QSBLi':"bedload transport rate of class i", - 'kES':"thickness of the k layer", - 'kCONC':"concentration of bed layer k", - 'QSi':"bed load transport rate of sediment of class i", + '*ES':"thickness of the* layer", + '*ES':"thickness of the* layer", + '*ES':"thickness of the* layer", + '*ES':"thickness of the* layer", + '*ES':"thickness of the* layer", + '*ES':"thickness of the* layer", + '*ES':"thickness of the* layer", + '*ES':"thickness of the* layer", + '*ES':"thickness of the* layer", + '*ES':"thickness of the* layer", + '*ES':"thickness of the* layer", + '*ES':"thickness of the* layer", + '*ES':"thickness of the* layer", + '*ES':"thickness of the* layer", + '*ES':"thickness of the* layer", + '*ES':"thickness of the* layer", + '*ES':"thickness of the* layer", + '*ES':"thickness of the* layer", + '*ES':"thickness of the* layer", + '*ES':"thickness of the* layer", + '*ES':"thickness of the* layer", + '1ES':"thickness of the1 layer", + '1ES':"thickness of the1 layer", + '1ES':"thickness of the1 layer", + '1ES':"thickness of the1 layer", + '1ES':"thickness of the1 layer", + '1ES':"thickness of the1 layer", + '1ES':"thickness of the1 layer", + '1ES':"thickness of the1 layer", + '1ES':"thickness of the1 layer", + '1ES':"thickness of the1 layer", + '1ES':"thickness of the1 layer", + '1ES':"thickness of the1 layer", + '1ES':"thickness of the1 layer", + '1ES':"thickness of the1 layer", + '1ES':"thickness of the1 layer", + '1ES':"thickness of the1 layer", + '1ES':"thickness of the1 layer", + '1ES':"thickness of the1 layer", + '1ES':"thickness of the1 layer", + '1ES':"thickness of the1 layer", + '1ES':"thickness of the1 layer", + '2ES':"thickness of the2 layer", + '2ES':"thickness of the2 layer", + '2ES':"thickness of the2 layer", + '2ES':"thickness of the2 layer", + '2ES':"thickness of the2 layer", + '2ES':"thickness of the2 layer", + '2ES':"thickness of the2 layer", + '2ES':"thickness of the2 layer", + '2ES':"thickness of the2 layer", + '2ES':"thickness of the2 layer", + '2ES':"thickness of the2 layer", + '2ES':"thickness of the2 layer", + '2ES':"thickness of the2 layer", + '2ES':"thickness of the2 layer", + '2ES':"thickness of the2 layer", + '2ES':"thickness of the2 layer", + '2ES':"thickness of the2 layer", + '2ES':"thickness of the2 layer", + '2ES':"thickness of the2 layer", + '2ES':"thickness of the2 layer", + '2ES':"thickness of the2 layer", + '3ES':"thickness of the3 layer", + '3ES':"thickness of the3 layer", + '3ES':"thickness of the3 layer", + '3ES':"thickness of the3 layer", + '3ES':"thickness of the3 layer", + '3ES':"thickness of the3 layer", + '3ES':"thickness of the3 layer", + '3ES':"thickness of the3 layer", + '3ES':"thickness of the3 layer", + '3ES':"thickness of the3 layer", + '3ES':"thickness of the3 layer", + '3ES':"thickness of the3 layer", + '3ES':"thickness of the3 layer", + '3ES':"thickness of the3 layer", + '3ES':"thickness of the3 layer", + '3ES':"thickness of the3 layer", + '3ES':"thickness of the3 layer", + '3ES':"thickness of the3 layer", + '3ES':"thickness of the3 layer", + '3ES':"thickness of the3 layer", + '3ES':"thickness of the3 layer", + '4ES':"thickness of the4 layer", + '4ES':"thickness of the4 layer", + '4ES':"thickness of the4 layer", + '4ES':"thickness of the4 layer", + '4ES':"thickness of the4 layer", + '4ES':"thickness of the4 layer", + '4ES':"thickness of the4 layer", + '4ES':"thickness of the4 layer", + '4ES':"thickness of the4 layer", + '4ES':"thickness of the4 layer", + '4ES':"thickness of the4 layer", + '4ES':"thickness of the4 layer", + '4ES':"thickness of the4 layer", + '4ES':"thickness of the4 layer", + '4ES':"thickness of the4 layer", + '4ES':"thickness of the4 layer", + '4ES':"thickness of the4 layer", + '4ES':"thickness of the4 layer", + '4ES':"thickness of the4 layer", + '4ES':"thickness of the4 layer", + '4ES':"thickness of the4 layer", + '5ES':"thickness of the5 layer", + '5ES':"thickness of the5 layer", + '5ES':"thickness of the5 layer", + '5ES':"thickness of the5 layer", + '5ES':"thickness of the5 layer", + '5ES':"thickness of the5 layer", + '5ES':"thickness of the5 layer", + '5ES':"thickness of the5 layer", + '5ES':"thickness of the5 layer", + '5ES':"thickness of the5 layer", + '5ES':"thickness of the5 layer", + '5ES':"thickness of the5 layer", + '5ES':"thickness of the5 layer", + '5ES':"thickness of the5 layer", + '5ES':"thickness of the5 layer", + '5ES':"thickness of the5 layer", + '5ES':"thickness of the5 layer", + '5ES':"thickness of the5 layer", + '5ES':"thickness of the5 layer", + '5ES':"thickness of the5 layer", + '5ES':"thickness of the5 layer", + '6ES':"thickness of the6 layer", + '6ES':"thickness of the6 layer", + '6ES':"thickness of the6 layer", + '6ES':"thickness of the6 layer", + '6ES':"thickness of the6 layer", + '6ES':"thickness of the6 layer", + '6ES':"thickness of the6 layer", + '6ES':"thickness of the6 layer", + '6ES':"thickness of the6 layer", + '6ES':"thickness of the6 layer", + '6ES':"thickness of the6 layer", + '6ES':"thickness of the6 layer", + '6ES':"thickness of the6 layer", + '6ES':"thickness of the6 layer", + '6ES':"thickness of the6 layer", + '6ES':"thickness of the6 layer", + '6ES':"thickness of the6 layer", + '6ES':"thickness of the6 layer", + '6ES':"thickness of the6 layer", + '6ES':"thickness of the6 layer", + '6ES':"thickness of the6 layer", + '7ES':"thickness of the7 layer", + '7ES':"thickness of the7 layer", + '7ES':"thickness of the7 layer", + '7ES':"thickness of the7 layer", + '7ES':"thickness of the7 layer", + '7ES':"thickness of the7 layer", + '7ES':"thickness of the7 layer", + '7ES':"thickness of the7 layer", + '7ES':"thickness of the7 layer", + '7ES':"thickness of the7 layer", + '7ES':"thickness of the7 layer", + '7ES':"thickness of the7 layer", + '7ES':"thickness of the7 layer", + '7ES':"thickness of the7 layer", + '7ES':"thickness of the7 layer", + '7ES':"thickness of the7 layer", + '7ES':"thickness of the7 layer", + '7ES':"thickness of the7 layer", + '7ES':"thickness of the7 layer", + '7ES':"thickness of the7 layer", + '7ES':"thickness of the7 layer", + '8ES':"thickness of the8 layer", + '8ES':"thickness of the8 layer", + '8ES':"thickness of the8 layer", + '8ES':"thickness of the8 layer", + '8ES':"thickness of the8 layer", + '8ES':"thickness of the8 layer", + '8ES':"thickness of the8 layer", + '8ES':"thickness of the8 layer", + '8ES':"thickness of the8 layer", + '8ES':"thickness of the8 layer", + '8ES':"thickness of the8 layer", + '8ES':"thickness of the8 layer", + '8ES':"thickness of the8 layer", + '8ES':"thickness of the8 layer", + '8ES':"thickness of the8 layer", + '8ES':"thickness of the8 layer", + '8ES':"thickness of the8 layer", + '8ES':"thickness of the8 layer", + '8ES':"thickness of the8 layer", + '8ES':"thickness of the8 layer", + '8ES':"thickness of the8 layer", + '9ES':"thickness of the9 layer", + '9ES':"thickness of the9 layer", + '9ES':"thickness of the9 layer", + '9ES':"thickness of the9 layer", + '9ES':"thickness of the9 layer", + '9ES':"thickness of the9 layer", + '9ES':"thickness of the9 layer", + '9ES':"thickness of the9 layer", + '9ES':"thickness of the9 layer", + '9ES':"thickness of the9 layer", + '9ES':"thickness of the9 layer", + '9ES':"thickness of the9 layer", + '9ES':"thickness of the9 layer", + '9ES':"thickness of the9 layer", + '9ES':"thickness of the9 layer", + '9ES':"thickness of the9 layer", + '9ES':"thickness of the9 layer", + '9ES':"thickness of the9 layer", + '9ES':"thickness of the9 layer", + '9ES':"thickness of the9 layer", + '9ES':"thickness of the9 layer", + '10ES':"thickness of the10 layer", + '10ES':"thickness of the10 layer", + '10ES':"thickness of the10 layer", + '10ES':"thickness of the10 layer", + '10ES':"thickness of the10 layer", + '10ES':"thickness of the10 layer", + '10ES':"thickness of the10 layer", + '10ES':"thickness of the10 layer", + '10ES':"thickness of the10 layer", + '10ES':"thickness of the10 layer", + '10ES':"thickness of the10 layer", + '10ES':"thickness of the10 layer", + '10ES':"thickness of the10 layer", + '10ES':"thickness of the10 layer", + '10ES':"thickness of the10 layer", + '10ES':"thickness of the10 layer", + '10ES':"thickness of the10 layer", + '10ES':"thickness of the10 layer", + '10ES':"thickness of the10 layer", + '10ES':"thickness of the10 layer", + '10ES':"thickness of the10 layer", + '11ES':"thickness of the11 layer", + '11ES':"thickness of the11 layer", + '11ES':"thickness of the11 layer", + '11ES':"thickness of the11 layer", + '11ES':"thickness of the11 layer", + '11ES':"thickness of the11 layer", + '11ES':"thickness of the11 layer", + '11ES':"thickness of the11 layer", + '11ES':"thickness of the11 layer", + '11ES':"thickness of the11 layer", + '11ES':"thickness of the11 layer", + '11ES':"thickness of the11 layer", + '11ES':"thickness of the11 layer", + '11ES':"thickness of the11 layer", + '11ES':"thickness of the11 layer", + '11ES':"thickness of the11 layer", + '11ES':"thickness of the11 layer", + '11ES':"thickness of the11 layer", + '11ES':"thickness of the11 layer", + '11ES':"thickness of the11 layer", + '11ES':"thickness of the11 layer", + '12ES':"thickness of the12 layer", + '12ES':"thickness of the12 layer", + '12ES':"thickness of the12 layer", + '12ES':"thickness of the12 layer", + '12ES':"thickness of the12 layer", + '12ES':"thickness of the12 layer", + '12ES':"thickness of the12 layer", + '12ES':"thickness of the12 layer", + '12ES':"thickness of the12 layer", + '12ES':"thickness of the12 layer", + '12ES':"thickness of the12 layer", + '12ES':"thickness of the12 layer", + '12ES':"thickness of the12 layer", + '12ES':"thickness of the12 layer", + '12ES':"thickness of the12 layer", + '12ES':"thickness of the12 layer", + '12ES':"thickness of the12 layer", + '12ES':"thickness of the12 layer", + '12ES':"thickness of the12 layer", + '12ES':"thickness of the12 layer", + '12ES':"thickness of the12 layer", + '13ES':"thickness of the13 layer", + '13ES':"thickness of the13 layer", + '13ES':"thickness of the13 layer", + '13ES':"thickness of the13 layer", + '13ES':"thickness of the13 layer", + '13ES':"thickness of the13 layer", + '13ES':"thickness of the13 layer", + '13ES':"thickness of the13 layer", + '13ES':"thickness of the13 layer", + '13ES':"thickness of the13 layer", + '13ES':"thickness of the13 layer", + '13ES':"thickness of the13 layer", + '13ES':"thickness of the13 layer", + '13ES':"thickness of the13 layer", + '13ES':"thickness of the13 layer", + '13ES':"thickness of the13 layer", + '13ES':"thickness of the13 layer", + '13ES':"thickness of the13 layer", + '13ES':"thickness of the13 layer", + '13ES':"thickness of the13 layer", + '13ES':"thickness of the13 layer", + '14ES':"thickness of the14 layer", + '14ES':"thickness of the14 layer", + '14ES':"thickness of the14 layer", + '14ES':"thickness of the14 layer", + '14ES':"thickness of the14 layer", + '14ES':"thickness of the14 layer", + '14ES':"thickness of the14 layer", + '14ES':"thickness of the14 layer", + '14ES':"thickness of the14 layer", + '14ES':"thickness of the14 layer", + '14ES':"thickness of the14 layer", + '14ES':"thickness of the14 layer", + '14ES':"thickness of the14 layer", + '14ES':"thickness of the14 layer", + '14ES':"thickness of the14 layer", + '14ES':"thickness of the14 layer", + '14ES':"thickness of the14 layer", + '14ES':"thickness of the14 layer", + '14ES':"thickness of the14 layer", + '14ES':"thickness of the14 layer", + '14ES':"thickness of the14 layer", + '15ES':"thickness of the15 layer", + '15ES':"thickness of the15 layer", + '15ES':"thickness of the15 layer", + '15ES':"thickness of the15 layer", + '15ES':"thickness of the15 layer", + '15ES':"thickness of the15 layer", + '15ES':"thickness of the15 layer", + '15ES':"thickness of the15 layer", + '15ES':"thickness of the15 layer", + '15ES':"thickness of the15 layer", + '15ES':"thickness of the15 layer", + '15ES':"thickness of the15 layer", + '15ES':"thickness of the15 layer", + '15ES':"thickness of the15 layer", + '15ES':"thickness of the15 layer", + '15ES':"thickness of the15 layer", + '15ES':"thickness of the15 layer", + '15ES':"thickness of the15 layer", + '15ES':"thickness of the15 layer", + '15ES':"thickness of the15 layer", + '15ES':"thickness of the15 layer", + '16ES':"thickness of the16 layer", + '16ES':"thickness of the16 layer", + '16ES':"thickness of the16 layer", + '16ES':"thickness of the16 layer", + '16ES':"thickness of the16 layer", + '16ES':"thickness of the16 layer", + '16ES':"thickness of the16 layer", + '16ES':"thickness of the16 layer", + '16ES':"thickness of the16 layer", + '16ES':"thickness of the16 layer", + '16ES':"thickness of the16 layer", + '16ES':"thickness of the16 layer", + '16ES':"thickness of the16 layer", + '16ES':"thickness of the16 layer", + '16ES':"thickness of the16 layer", + '16ES':"thickness of the16 layer", + '16ES':"thickness of the16 layer", + '16ES':"thickness of the16 layer", + '16ES':"thickness of the16 layer", + '16ES':"thickness of the16 layer", + '16ES':"thickness of the16 layer", + '17ES':"thickness of the17 layer", + '17ES':"thickness of the17 layer", + '17ES':"thickness of the17 layer", + '17ES':"thickness of the17 layer", + '17ES':"thickness of the17 layer", + '17ES':"thickness of the17 layer", + '17ES':"thickness of the17 layer", + '17ES':"thickness of the17 layer", + '17ES':"thickness of the17 layer", + '17ES':"thickness of the17 layer", + '17ES':"thickness of the17 layer", + '17ES':"thickness of the17 layer", + '17ES':"thickness of the17 layer", + '17ES':"thickness of the17 layer", + '17ES':"thickness of the17 layer", + '17ES':"thickness of the17 layer", + '17ES':"thickness of the17 layer", + '17ES':"thickness of the17 layer", + '17ES':"thickness of the17 layer", + '17ES':"thickness of the17 layer", + '17ES':"thickness of the17 layer", + '18ES':"thickness of the18 layer", + '18ES':"thickness of the18 layer", + '18ES':"thickness of the18 layer", + '18ES':"thickness of the18 layer", + '18ES':"thickness of the18 layer", + '18ES':"thickness of the18 layer", + '18ES':"thickness of the18 layer", + '18ES':"thickness of the18 layer", + '18ES':"thickness of the18 layer", + '18ES':"thickness of the18 layer", + '18ES':"thickness of the18 layer", + '18ES':"thickness of the18 layer", + '18ES':"thickness of the18 layer", + '18ES':"thickness of the18 layer", + '18ES':"thickness of the18 layer", + '18ES':"thickness of the18 layer", + '18ES':"thickness of the18 layer", + '18ES':"thickness of the18 layer", + '18ES':"thickness of the18 layer", + '18ES':"thickness of the18 layer", + '18ES':"thickness of the18 layer", + '19ES':"thickness of the19 layer", + '19ES':"thickness of the19 layer", + '19ES':"thickness of the19 layer", + '19ES':"thickness of the19 layer", + '19ES':"thickness of the19 layer", + '19ES':"thickness of the19 layer", + '19ES':"thickness of the19 layer", + '19ES':"thickness of the19 layer", + '19ES':"thickness of the19 layer", + '19ES':"thickness of the19 layer", + '19ES':"thickness of the19 layer", + '19ES':"thickness of the19 layer", + '19ES':"thickness of the19 layer", + '19ES':"thickness of the19 layer", + '19ES':"thickness of the19 layer", + '19ES':"thickness of the19 layer", + '19ES':"thickness of the19 layer", + '19ES':"thickness of the19 layer", + '19ES':"thickness of the19 layer", + '19ES':"thickness of the19 layer", + '19ES':"thickness of the19 layer", + '**ES':"thickness of the** layer", + '**ES':"thickness of the** layer", + '**ES':"thickness of the** layer", + '**ES':"thickness of the** layer", + '**ES':"thickness of the** layer", + '**ES':"thickness of the** layer", + '**ES':"thickness of the** layer", + '**ES':"thickness of the** layer", + '**ES':"thickness of the** layer", + '**ES':"thickness of the** layer", + '**ES':"thickness of the** layer", + '**ES':"thickness of the** layer", + '**ES':"thickness of the** layer", + '**ES':"thickness of the** layer", + '**ES':"thickness of the** layer", + '**ES':"thickness of the** layer", + '**ES':"thickness of the** layer", + '**ES':"thickness of the** layer", + '**ES':"thickness of the** layer", + '**ES':"thickness of the** layer", + '**ES':"thickness of the** layer", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", + 'QS*':"bed load transport rate of sediment of class*", + 'QS1':"bed load transport rate of sediment of class1", + 'QS2':"bed load transport rate of sediment of class2", + 'QS3':"bed load transport rate of sediment of class3", + 'QS4':"bed load transport rate of sediment of class4", + 'QS5':"bed load transport rate of sediment of class5", + 'QS6':"bed load transport rate of sediment of class6", + 'QS7':"bed load transport rate of sediment of class7", + 'QS8':"bed load transport rate of sediment of class8", + 'QS9':"bed load transport rate of sediment of class9", + 'QS10':"bed load transport rate of sediment of class10", + 'QS11':"bed load transport rate of sediment of class11", + 'QS12':"bed load transport rate of sediment of class12", + 'QS13':"bed load transport rate of sediment of class13", + 'QS14':"bed load transport rate of sediment of class14", + 'QS15':"bed load transport rate of sediment of class15", + 'QS16':"bed load transport rate of sediment of class16", + 'QS17':"bed load transport rate of sediment of class17", + 'QS18':"bed load transport rate of sediment of class18", + 'QS19':"bed load transport rate of sediment of class19", + 'QS**':"bed load transport rate of sediment of class**", + 'QS*':"bed load transport rate of sediment of class*", + 'QS1':"bed load transport rate of sediment of class1", + 'QS2':"bed load transport rate of sediment of class2", + 'QS3':"bed load transport rate of sediment of class3", + 'QS4':"bed load transport rate of sediment of class4", + 'QS5':"bed load transport rate of sediment of class5", + 'QS6':"bed load transport rate of sediment of class6", + 'QS7':"bed load transport rate of sediment of class7", + 'QS8':"bed load transport rate of sediment of class8", + 'QS9':"bed load transport rate of sediment of class9", + 'QS10':"bed load transport rate of sediment of class10", + 'QS11':"bed load transport rate of sediment of class11", + 'QS12':"bed load transport rate of sediment of class12", + 'QS13':"bed load transport rate of sediment of class13", + 'QS14':"bed load transport rate of sediment of class14", + 'QS15':"bed load transport rate of sediment of class15", + 'QS16':"bed load transport rate of sediment of class16", + 'QS17':"bed load transport rate of sediment of class17", + 'QS18':"bed load transport rate of sediment of class18", + 'QS19':"bed load transport rate of sediment of class19", + 'QS**':"bed load transport rate of sediment of class**", + 'QS*':"bed load transport rate of sediment of class*", + 'QS1':"bed load transport rate of sediment of class1", + 'QS2':"bed load transport rate of sediment of class2", + 'QS3':"bed load transport rate of sediment of class3", + 'QS4':"bed load transport rate of sediment of class4", + 'QS5':"bed load transport rate of sediment of class5", + 'QS6':"bed load transport rate of sediment of class6", + 'QS7':"bed load transport rate of sediment of class7", + 'QS8':"bed load transport rate of sediment of class8", + 'QS9':"bed load transport rate of sediment of class9", + 'QS10':"bed load transport rate of sediment of class10", + 'QS11':"bed load transport rate of sediment of class11", + 'QS12':"bed load transport rate of sediment of class12", + 'QS13':"bed load transport rate of sediment of class13", + 'QS14':"bed load transport rate of sediment of class14", + 'QS15':"bed load transport rate of sediment of class15", + 'QS16':"bed load transport rate of sediment of class16", + 'QS17':"bed load transport rate of sediment of class17", + 'QS18':"bed load transport rate of sediment of class18", + 'QS19':"bed load transport rate of sediment of class19", + 'QS**':"bed load transport rate of sediment of class**", + 'QS*':"bed load transport rate of sediment of class*", + 'QS1':"bed load transport rate of sediment of class1", + 'QS2':"bed load transport rate of sediment of class2", + 'QS3':"bed load transport rate of sediment of class3", + 'QS4':"bed load transport rate of sediment of class4", + 'QS5':"bed load transport rate of sediment of class5", + 'QS6':"bed load transport rate of sediment of class6", + 'QS7':"bed load transport rate of sediment of class7", + 'QS8':"bed load transport rate of sediment of class8", + 'QS9':"bed load transport rate of sediment of class9", + 'QS10':"bed load transport rate of sediment of class10", + 'QS11':"bed load transport rate of sediment of class11", + 'QS12':"bed load transport rate of sediment of class12", + 'QS13':"bed load transport rate of sediment of class13", + 'QS14':"bed load transport rate of sediment of class14", + 'QS15':"bed load transport rate of sediment of class15", + 'QS16':"bed load transport rate of sediment of class16", + 'QS17':"bed load transport rate of sediment of class17", + 'QS18':"bed load transport rate of sediment of class18", + 'QS19':"bed load transport rate of sediment of class19", + 'QS**':"bed load transport rate of sediment of class**", + 'QS*':"bed load transport rate of sediment of class*", + 'QS1':"bed load transport rate of sediment of class1", + 'QS2':"bed load transport rate of sediment of class2", + 'QS3':"bed load transport rate of sediment of class3", + 'QS4':"bed load transport rate of sediment of class4", + 'QS5':"bed load transport rate of sediment of class5", + 'QS6':"bed load transport rate of sediment of class6", + 'QS7':"bed load transport rate of sediment of class7", + 'QS8':"bed load transport rate of sediment of class8", + 'QS9':"bed load transport rate of sediment of class9", + 'QS10':"bed load transport rate of sediment of class10", + 'QS11':"bed load transport rate of sediment of class11", + 'QS12':"bed load transport rate of sediment of class12", + 'QS13':"bed load transport rate of sediment of class13", + 'QS14':"bed load transport rate of sediment of class14", + 'QS15':"bed load transport rate of sediment of class15", + 'QS16':"bed load transport rate of sediment of class16", + 'QS17':"bed load transport rate of sediment of class17", + 'QS18':"bed load transport rate of sediment of class18", + 'QS19':"bed load transport rate of sediment of class19", + 'QS**':"bed load transport rate of sediment of class**", + 'QS*':"bed load transport rate of sediment of class*", + 'QS1':"bed load transport rate of sediment of class1", + 'QS2':"bed load transport rate of sediment of class2", + 'QS3':"bed load transport rate of sediment of class3", + 'QS4':"bed load transport rate of sediment of class4", + 'QS5':"bed load transport rate of sediment of class5", + 'QS6':"bed load transport rate of sediment of class6", + 'QS7':"bed load transport rate of sediment of class7", + 'QS8':"bed load transport rate of sediment of class8", + 'QS9':"bed load transport rate of sediment of class9", + 'QS10':"bed load transport rate of sediment of class10", + 'QS11':"bed load transport rate of sediment of class11", + 'QS12':"bed load transport rate of sediment of class12", + 'QS13':"bed load transport rate of sediment of class13", + 'QS14':"bed load transport rate of sediment of class14", + 'QS15':"bed load transport rate of sediment of class15", + 'QS16':"bed load transport rate of sediment of class16", + 'QS17':"bed load transport rate of sediment of class17", + 'QS18':"bed load transport rate of sediment of class18", + 'QS19':"bed load transport rate of sediment of class19", + 'QS**':"bed load transport rate of sediment of class**", + 'QS*':"bed load transport rate of sediment of class*", + 'QS1':"bed load transport rate of sediment of class1", + 'QS2':"bed load transport rate of sediment of class2", + 'QS3':"bed load transport rate of sediment of class3", + 'QS4':"bed load transport rate of sediment of class4", + 'QS5':"bed load transport rate of sediment of class5", + 'QS6':"bed load transport rate of sediment of class6", + 'QS7':"bed load transport rate of sediment of class7", + 'QS8':"bed load transport rate of sediment of class8", + 'QS9':"bed load transport rate of sediment of class9", + 'QS10':"bed load transport rate of sediment of class10", + 'QS11':"bed load transport rate of sediment of class11", + 'QS12':"bed load transport rate of sediment of class12", + 'QS13':"bed load transport rate of sediment of class13", + 'QS14':"bed load transport rate of sediment of class14", + 'QS15':"bed load transport rate of sediment of class15", + 'QS16':"bed load transport rate of sediment of class16", + 'QS17':"bed load transport rate of sediment of class17", + 'QS18':"bed load transport rate of sediment of class18", + 'QS19':"bed load transport rate of sediment of class19", + 'QS**':"bed load transport rate of sediment of class**", + 'QS*':"bed load transport rate of sediment of class*", + 'QS1':"bed load transport rate of sediment of class1", + 'QS2':"bed load transport rate of sediment of class2", + 'QS3':"bed load transport rate of sediment of class3", + 'QS4':"bed load transport rate of sediment of class4", + 'QS5':"bed load transport rate of sediment of class5", + 'QS6':"bed load transport rate of sediment of class6", + 'QS7':"bed load transport rate of sediment of class7", + 'QS8':"bed load transport rate of sediment of class8", + 'QS9':"bed load transport rate of sediment of class9", + 'QS10':"bed load transport rate of sediment of class10", + 'QS11':"bed load transport rate of sediment of class11", + 'QS12':"bed load transport rate of sediment of class12", + 'QS13':"bed load transport rate of sediment of class13", + 'QS14':"bed load transport rate of sediment of class14", + 'QS15':"bed load transport rate of sediment of class15", + 'QS16':"bed load transport rate of sediment of class16", + 'QS17':"bed load transport rate of sediment of class17", + 'QS18':"bed load transport rate of sediment of class18", + 'QS19':"bed load transport rate of sediment of class19", + 'QS**':"bed load transport rate of sediment of class**", + 'QS*':"bed load transport rate of sediment of class*", + 'QS1':"bed load transport rate of sediment of class1", + 'QS2':"bed load transport rate of sediment of class2", + 'QS3':"bed load transport rate of sediment of class3", + 'QS4':"bed load transport rate of sediment of class4", + 'QS5':"bed load transport rate of sediment of class5", + 'QS6':"bed load transport rate of sediment of class6", + 'QS7':"bed load transport rate of sediment of class7", + 'QS8':"bed load transport rate of sediment of class8", + 'QS9':"bed load transport rate of sediment of class9", + 'QS10':"bed load transport rate of sediment of class10", + 'QS11':"bed load transport rate of sediment of class11", + 'QS12':"bed load transport rate of sediment of class12", + 'QS13':"bed load transport rate of sediment of class13", + 'QS14':"bed load transport rate of sediment of class14", + 'QS15':"bed load transport rate of sediment of class15", + 'QS16':"bed load transport rate of sediment of class16", + 'QS17':"bed load transport rate of sediment of class17", + 'QS18':"bed load transport rate of sediment of class18", + 'QS19':"bed load transport rate of sediment of class19", + 'QS**':"bed load transport rate of sediment of class**", + 'QS*':"bed load transport rate of sediment of class*", + 'QS1':"bed load transport rate of sediment of class1", + 'QS2':"bed load transport rate of sediment of class2", + 'QS3':"bed load transport rate of sediment of class3", + 'QS4':"bed load transport rate of sediment of class4", + 'QS5':"bed load transport rate of sediment of class5", + 'QS6':"bed load transport rate of sediment of class6", + 'QS7':"bed load transport rate of sediment of class7", + 'QS8':"bed load transport rate of sediment of class8", + 'QS9':"bed load transport rate of sediment of class9", + 'QS10':"bed load transport rate of sediment of class10", + 'QS11':"bed load transport rate of sediment of class11", + 'QS12':"bed load transport rate of sediment of class12", + 'QS13':"bed load transport rate of sediment of class13", + 'QS14':"bed load transport rate of sediment of class14", + 'QS15':"bed load transport rate of sediment of class15", + 'QS16':"bed load transport rate of sediment of class16", + 'QS17':"bed load transport rate of sediment of class17", + 'QS18':"bed load transport rate of sediment of class18", + 'QS19':"bed load transport rate of sediment of class19", + 'QS**':"bed load transport rate of sediment of class**", + 'QS*':"bed load transport rate of sediment of class*", + 'QS1':"bed load transport rate of sediment of class1", + 'QS2':"bed load transport rate of sediment of class2", + 'QS3':"bed load transport rate of sediment of class3", + 'QS4':"bed load transport rate of sediment of class4", + 'QS5':"bed load transport rate of sediment of class5", + 'QS6':"bed load transport rate of sediment of class6", + 'QS7':"bed load transport rate of sediment of class7", + 'QS8':"bed load transport rate of sediment of class8", + 'QS9':"bed load transport rate of sediment of class9", + 'QS10':"bed load transport rate of sediment of class10", + 'QS11':"bed load transport rate of sediment of class11", + 'QS12':"bed load transport rate of sediment of class12", + 'QS13':"bed load transport rate of sediment of class13", + 'QS14':"bed load transport rate of sediment of class14", + 'QS15':"bed load transport rate of sediment of class15", + 'QS16':"bed load transport rate of sediment of class16", + 'QS17':"bed load transport rate of sediment of class17", + 'QS18':"bed load transport rate of sediment of class18", + 'QS19':"bed load transport rate of sediment of class19", + 'QS**':"bed load transport rate of sediment of class**", + 'QS*':"bed load transport rate of sediment of class*", + 'QS1':"bed load transport rate of sediment of class1", + 'QS2':"bed load transport rate of sediment of class2", + 'QS3':"bed load transport rate of sediment of class3", + 'QS4':"bed load transport rate of sediment of class4", + 'QS5':"bed load transport rate of sediment of class5", + 'QS6':"bed load transport rate of sediment of class6", + 'QS7':"bed load transport rate of sediment of class7", + 'QS8':"bed load transport rate of sediment of class8", + 'QS9':"bed load transport rate of sediment of class9", + 'QS10':"bed load transport rate of sediment of class10", + 'QS11':"bed load transport rate of sediment of class11", + 'QS12':"bed load transport rate of sediment of class12", + 'QS13':"bed load transport rate of sediment of class13", + 'QS14':"bed load transport rate of sediment of class14", + 'QS15':"bed load transport rate of sediment of class15", + 'QS16':"bed load transport rate of sediment of class16", + 'QS17':"bed load transport rate of sediment of class17", + 'QS18':"bed load transport rate of sediment of class18", + 'QS19':"bed load transport rate of sediment of class19", + 'QS**':"bed load transport rate of sediment of class**", + 'QS*':"bed load transport rate of sediment of class*", + 'QS1':"bed load transport rate of sediment of class1", + 'QS2':"bed load transport rate of sediment of class2", + 'QS3':"bed load transport rate of sediment of class3", + 'QS4':"bed load transport rate of sediment of class4", + 'QS5':"bed load transport rate of sediment of class5", + 'QS6':"bed load transport rate of sediment of class6", + 'QS7':"bed load transport rate of sediment of class7", + 'QS8':"bed load transport rate of sediment of class8", + 'QS9':"bed load transport rate of sediment of class9", + 'QS10':"bed load transport rate of sediment of class10", + 'QS11':"bed load transport rate of sediment of class11", + 'QS12':"bed load transport rate of sediment of class12", + 'QS13':"bed load transport rate of sediment of class13", + 'QS14':"bed load transport rate of sediment of class14", + 'QS15':"bed load transport rate of sediment of class15", + 'QS16':"bed load transport rate of sediment of class16", + 'QS17':"bed load transport rate of sediment of class17", + 'QS18':"bed load transport rate of sediment of class18", + 'QS19':"bed load transport rate of sediment of class19", + 'QS**':"bed load transport rate of sediment of class**", + 'QS*':"bed load transport rate of sediment of class*", + 'QS1':"bed load transport rate of sediment of class1", + 'QS2':"bed load transport rate of sediment of class2", + 'QS3':"bed load transport rate of sediment of class3", + 'QS4':"bed load transport rate of sediment of class4", + 'QS5':"bed load transport rate of sediment of class5", + 'QS6':"bed load transport rate of sediment of class6", + 'QS7':"bed load transport rate of sediment of class7", + 'QS8':"bed load transport rate of sediment of class8", + 'QS9':"bed load transport rate of sediment of class9", + 'QS10':"bed load transport rate of sediment of class10", + 'QS11':"bed load transport rate of sediment of class11", + 'QS12':"bed load transport rate of sediment of class12", + 'QS13':"bed load transport rate of sediment of class13", + 'QS14':"bed load transport rate of sediment of class14", + 'QS15':"bed load transport rate of sediment of class15", + 'QS16':"bed load transport rate of sediment of class16", + 'QS17':"bed load transport rate of sediment of class17", + 'QS18':"bed load transport rate of sediment of class18", + 'QS19':"bed load transport rate of sediment of class19", + 'QS**':"bed load transport rate of sediment of class**", + 'QS*':"bed load transport rate of sediment of class*", + 'QS1':"bed load transport rate of sediment of class1", + 'QS2':"bed load transport rate of sediment of class2", + 'QS3':"bed load transport rate of sediment of class3", + 'QS4':"bed load transport rate of sediment of class4", + 'QS5':"bed load transport rate of sediment of class5", + 'QS6':"bed load transport rate of sediment of class6", + 'QS7':"bed load transport rate of sediment of class7", + 'QS8':"bed load transport rate of sediment of class8", + 'QS9':"bed load transport rate of sediment of class9", + 'QS10':"bed load transport rate of sediment of class10", + 'QS11':"bed load transport rate of sediment of class11", + 'QS12':"bed load transport rate of sediment of class12", + 'QS13':"bed load transport rate of sediment of class13", + 'QS14':"bed load transport rate of sediment of class14", + 'QS15':"bed load transport rate of sediment of class15", + 'QS16':"bed load transport rate of sediment of class16", + 'QS17':"bed load transport rate of sediment of class17", + 'QS18':"bed load transport rate of sediment of class18", + 'QS19':"bed load transport rate of sediment of class19", + 'QS**':"bed load transport rate of sediment of class**", + 'QS*':"bed load transport rate of sediment of class*", + 'QS1':"bed load transport rate of sediment of class1", + 'QS2':"bed load transport rate of sediment of class2", + 'QS3':"bed load transport rate of sediment of class3", + 'QS4':"bed load transport rate of sediment of class4", + 'QS5':"bed load transport rate of sediment of class5", + 'QS6':"bed load transport rate of sediment of class6", + 'QS7':"bed load transport rate of sediment of class7", + 'QS8':"bed load transport rate of sediment of class8", + 'QS9':"bed load transport rate of sediment of class9", + 'QS10':"bed load transport rate of sediment of class10", + 'QS11':"bed load transport rate of sediment of class11", + 'QS12':"bed load transport rate of sediment of class12", + 'QS13':"bed load transport rate of sediment of class13", + 'QS14':"bed load transport rate of sediment of class14", + 'QS15':"bed load transport rate of sediment of class15", + 'QS16':"bed load transport rate of sediment of class16", + 'QS17':"bed load transport rate of sediment of class17", + 'QS18':"bed load transport rate of sediment of class18", + 'QS19':"bed load transport rate of sediment of class19", + 'QS**':"bed load transport rate of sediment of class**", + 'QS*':"bed load transport rate of sediment of class*", + 'QS1':"bed load transport rate of sediment of class1", + 'QS2':"bed load transport rate of sediment of class2", + 'QS3':"bed load transport rate of sediment of class3", + 'QS4':"bed load transport rate of sediment of class4", + 'QS5':"bed load transport rate of sediment of class5", + 'QS6':"bed load transport rate of sediment of class6", + 'QS7':"bed load transport rate of sediment of class7", + 'QS8':"bed load transport rate of sediment of class8", + 'QS9':"bed load transport rate of sediment of class9", + 'QS10':"bed load transport rate of sediment of class10", + 'QS11':"bed load transport rate of sediment of class11", + 'QS12':"bed load transport rate of sediment of class12", + 'QS13':"bed load transport rate of sediment of class13", + 'QS14':"bed load transport rate of sediment of class14", + 'QS15':"bed load transport rate of sediment of class15", + 'QS16':"bed load transport rate of sediment of class16", + 'QS17':"bed load transport rate of sediment of class17", + 'QS18':"bed load transport rate of sediment of class18", + 'QS19':"bed load transport rate of sediment of class19", + 'QS**':"bed load transport rate of sediment of class**", + 'QS*':"bed load transport rate of sediment of class*", + 'QS1':"bed load transport rate of sediment of class1", + 'QS2':"bed load transport rate of sediment of class2", + 'QS3':"bed load transport rate of sediment of class3", + 'QS4':"bed load transport rate of sediment of class4", + 'QS5':"bed load transport rate of sediment of class5", + 'QS6':"bed load transport rate of sediment of class6", + 'QS7':"bed load transport rate of sediment of class7", + 'QS8':"bed load transport rate of sediment of class8", + 'QS9':"bed load transport rate of sediment of class9", + 'QS10':"bed load transport rate of sediment of class10", + 'QS11':"bed load transport rate of sediment of class11", + 'QS12':"bed load transport rate of sediment of class12", + 'QS13':"bed load transport rate of sediment of class13", + 'QS14':"bed load transport rate of sediment of class14", + 'QS15':"bed load transport rate of sediment of class15", + 'QS16':"bed load transport rate of sediment of class16", + 'QS17':"bed load transport rate of sediment of class17", + 'QS18':"bed load transport rate of sediment of class18", + 'QS19':"bed load transport rate of sediment of class19", + 'QS**':"bed load transport rate of sediment of class**", + 'QS*':"bed load transport rate of sediment of class*", + 'QS1':"bed load transport rate of sediment of class1", + 'QS2':"bed load transport rate of sediment of class2", + 'QS3':"bed load transport rate of sediment of class3", + 'QS4':"bed load transport rate of sediment of class4", + 'QS5':"bed load transport rate of sediment of class5", + 'QS6':"bed load transport rate of sediment of class6", + 'QS7':"bed load transport rate of sediment of class7", + 'QS8':"bed load transport rate of sediment of class8", + 'QS9':"bed load transport rate of sediment of class9", + 'QS10':"bed load transport rate of sediment of class10", + 'QS11':"bed load transport rate of sediment of class11", + 'QS12':"bed load transport rate of sediment of class12", + 'QS13':"bed load transport rate of sediment of class13", + 'QS14':"bed load transport rate of sediment of class14", + 'QS15':"bed load transport rate of sediment of class15", + 'QS16':"bed load transport rate of sediment of class16", + 'QS17':"bed load transport rate of sediment of class17", + 'QS18':"bed load transport rate of sediment of class18", + 'QS19':"bed load transport rate of sediment of class19", + 'QS**':"bed load transport rate of sediment of class**", + 'QS*':"bed load transport rate of sediment of class*", + 'QS1':"bed load transport rate of sediment of class1", + 'QS2':"bed load transport rate of sediment of class2", + 'QS3':"bed load transport rate of sediment of class3", + 'QS4':"bed load transport rate of sediment of class4", + 'QS5':"bed load transport rate of sediment of class5", + 'QS6':"bed load transport rate of sediment of class6", + 'QS7':"bed load transport rate of sediment of class7", + 'QS8':"bed load transport rate of sediment of class8", + 'QS9':"bed load transport rate of sediment of class9", + 'QS10':"bed load transport rate of sediment of class10", + 'QS11':"bed load transport rate of sediment of class11", + 'QS12':"bed load transport rate of sediment of class12", + 'QS13':"bed load transport rate of sediment of class13", + 'QS14':"bed load transport rate of sediment of class14", + 'QS15':"bed load transport rate of sediment of class15", + 'QS16':"bed load transport rate of sediment of class16", + 'QS17':"bed load transport rate of sediment of class17", + 'QS18':"bed load transport rate of sediment of class18", + 'QS19':"bed load transport rate of sediment of class19", + 'QS**':"bed load transport rate of sediment of class**", + 'QS*':"bed load transport rate of sediment of class*", + 'QS1':"bed load transport rate of sediment of class1", + 'QS2':"bed load transport rate of sediment of class2", + 'QS3':"bed load transport rate of sediment of class3", + 'QS4':"bed load transport rate of sediment of class4", + 'QS5':"bed load transport rate of sediment of class5", + 'QS6':"bed load transport rate of sediment of class6", + 'QS7':"bed load transport rate of sediment of class7", + 'QS8':"bed load transport rate of sediment of class8", + 'QS9':"bed load transport rate of sediment of class9", + 'QS10':"bed load transport rate of sediment of class10", + 'QS11':"bed load transport rate of sediment of class11", + 'QS12':"bed load transport rate of sediment of class12", + 'QS13':"bed load transport rate of sediment of class13", + 'QS14':"bed load transport rate of sediment of class14", + 'QS15':"bed load transport rate of sediment of class15", + 'QS16':"bed load transport rate of sediment of class16", + 'QS17':"bed load transport rate of sediment of class17", + 'QS18':"bed load transport rate of sediment of class18", + 'QS19':"bed load transport rate of sediment of class19", + 'QS**':"bed load transport rate of sediment of class**", 'A':"supplementary variable A", 'G':"supplementary variable G", 'L':"supplementary variable L", 'O':"supplementary variable O", - '1Ri':"fraction of cohesive sediment of class i, in 1st layer", - '2Ri':"fraction of cohesive sediment of class i, in 2nd layer", - 'kRi':"fraction of cohesive sediment of class i, in k layer", + '*R*':"fraction of cohesive sediment of class*,*n* layer", + '*R1':"fraction of cohesive sediment of class1,1n* layer", + '*R2':"fraction of cohesive sediment of class2,2n* layer", + '*R3':"fraction of cohesive sediment of class3,3n* layer", + '*R4':"fraction of cohesive sediment of class4,4n* layer", + '*R5':"fraction of cohesive sediment of class5,5n* layer", + '*R6':"fraction of cohesive sediment of class6,6n* layer", + '*R7':"fraction of cohesive sediment of class7,7n* layer", + '*R8':"fraction of cohesive sediment of class8,8n* layer", + '*R9':"fraction of cohesive sediment of class9,9n* layer", + '*R10':"fraction of cohesive sediment of class10,10n* layer", + '*R11':"fraction of cohesive sediment of class11,11n* layer", + '*R12':"fraction of cohesive sediment of class12,12n* layer", + '*R13':"fraction of cohesive sediment of class13,13n* layer", + '*R14':"fraction of cohesive sediment of class14,14n* layer", + '*R15':"fraction of cohesive sediment of class15,15n* layer", + '*R16':"fraction of cohesive sediment of class16,16n* layer", + '*R17':"fraction of cohesive sediment of class17,17n* layer", + '*R18':"fraction of cohesive sediment of class18,18n* layer", + '*R19':"fraction of cohesive sediment of class19,19n* layer", + '*R**':"fraction of cohesive sediment of class**,**n* layer", + '1R*':"fraction of cohesive sediment of class*,*n1 layer", + '1R1':"fraction of cohesive sediment of class1,1n1 layer", + '1R2':"fraction of cohesive sediment of class2,2n1 layer", + '1R3':"fraction of cohesive sediment of class3,3n1 layer", + '1R4':"fraction of cohesive sediment of class4,4n1 layer", + '1R5':"fraction of cohesive sediment of class5,5n1 layer", + '1R6':"fraction of cohesive sediment of class6,6n1 layer", + '1R7':"fraction of cohesive sediment of class7,7n1 layer", + '1R8':"fraction of cohesive sediment of class8,8n1 layer", + '1R9':"fraction of cohesive sediment of class9,9n1 layer", + '1R10':"fraction of cohesive sediment of class10,10n1 layer", + '1R11':"fraction of cohesive sediment of class11,11n1 layer", + '1R12':"fraction of cohesive sediment of class12,12n1 layer", + '1R13':"fraction of cohesive sediment of class13,13n1 layer", + '1R14':"fraction of cohesive sediment of class14,14n1 layer", + '1R15':"fraction of cohesive sediment of class15,15n1 layer", + '1R16':"fraction of cohesive sediment of class16,16n1 layer", + '1R17':"fraction of cohesive sediment of class17,17n1 layer", + '1R18':"fraction of cohesive sediment of class18,18n1 layer", + '1R19':"fraction of cohesive sediment of class19,19n1 layer", + '1R**':"fraction of cohesive sediment of class**,**n1 layer", + '2R*':"fraction of cohesive sediment of class*,*n2 layer", + '2R1':"fraction of cohesive sediment of class1,1n2 layer", + '2R2':"fraction of cohesive sediment of class2,2n2 layer", + '2R3':"fraction of cohesive sediment of class3,3n2 layer", + '2R4':"fraction of cohesive sediment of class4,4n2 layer", + '2R5':"fraction of cohesive sediment of class5,5n2 layer", + '2R6':"fraction of cohesive sediment of class6,6n2 layer", + '2R7':"fraction of cohesive sediment of class7,7n2 layer", + '2R8':"fraction of cohesive sediment of class8,8n2 layer", + '2R9':"fraction of cohesive sediment of class9,9n2 layer", + '2R10':"fraction of cohesive sediment of class10,10n2 layer", + '2R11':"fraction of cohesive sediment of class11,11n2 layer", + '2R12':"fraction of cohesive sediment of class12,12n2 layer", + '2R13':"fraction of cohesive sediment of class13,13n2 layer", + '2R14':"fraction of cohesive sediment of class14,14n2 layer", + '2R15':"fraction of cohesive sediment of class15,15n2 layer", + '2R16':"fraction of cohesive sediment of class16,16n2 layer", + '2R17':"fraction of cohesive sediment of class17,17n2 layer", + '2R18':"fraction of cohesive sediment of class18,18n2 layer", + '2R19':"fraction of cohesive sediment of class19,19n2 layer", + '2R**':"fraction of cohesive sediment of class**,**n2 layer", + '3R*':"fraction of cohesive sediment of class*,*n3 layer", + '3R1':"fraction of cohesive sediment of class1,1n3 layer", + '3R2':"fraction of cohesive sediment of class2,2n3 layer", + '3R3':"fraction of cohesive sediment of class3,3n3 layer", + '3R4':"fraction of cohesive sediment of class4,4n3 layer", + '3R5':"fraction of cohesive sediment of class5,5n3 layer", + '3R6':"fraction of cohesive sediment of class6,6n3 layer", + '3R7':"fraction of cohesive sediment of class7,7n3 layer", + '3R8':"fraction of cohesive sediment of class8,8n3 layer", + '3R9':"fraction of cohesive sediment of class9,9n3 layer", + '3R10':"fraction of cohesive sediment of class10,10n3 layer", + '3R11':"fraction of cohesive sediment of class11,11n3 layer", + '3R12':"fraction of cohesive sediment of class12,12n3 layer", + '3R13':"fraction of cohesive sediment of class13,13n3 layer", + '3R14':"fraction of cohesive sediment of class14,14n3 layer", + '3R15':"fraction of cohesive sediment of class15,15n3 layer", + '3R16':"fraction of cohesive sediment of class16,16n3 layer", + '3R17':"fraction of cohesive sediment of class17,17n3 layer", + '3R18':"fraction of cohesive sediment of class18,18n3 layer", + '3R19':"fraction of cohesive sediment of class19,19n3 layer", + '3R**':"fraction of cohesive sediment of class**,**n3 layer", + '4R*':"fraction of cohesive sediment of class*,*n4 layer", + '4R1':"fraction of cohesive sediment of class1,1n4 layer", + '4R2':"fraction of cohesive sediment of class2,2n4 layer", + '4R3':"fraction of cohesive sediment of class3,3n4 layer", + '4R4':"fraction of cohesive sediment of class4,4n4 layer", + '4R5':"fraction of cohesive sediment of class5,5n4 layer", + '4R6':"fraction of cohesive sediment of class6,6n4 layer", + '4R7':"fraction of cohesive sediment of class7,7n4 layer", + '4R8':"fraction of cohesive sediment of class8,8n4 layer", + '4R9':"fraction of cohesive sediment of class9,9n4 layer", + '4R10':"fraction of cohesive sediment of class10,10n4 layer", + '4R11':"fraction of cohesive sediment of class11,11n4 layer", + '4R12':"fraction of cohesive sediment of class12,12n4 layer", + '4R13':"fraction of cohesive sediment of class13,13n4 layer", + '4R14':"fraction of cohesive sediment of class14,14n4 layer", + '4R15':"fraction of cohesive sediment of class15,15n4 layer", + '4R16':"fraction of cohesive sediment of class16,16n4 layer", + '4R17':"fraction of cohesive sediment of class17,17n4 layer", + '4R18':"fraction of cohesive sediment of class18,18n4 layer", + '4R19':"fraction of cohesive sediment of class19,19n4 layer", + '4R**':"fraction of cohesive sediment of class**,**n4 layer", + '5R*':"fraction of cohesive sediment of class*,*n5 layer", + '5R1':"fraction of cohesive sediment of class1,1n5 layer", + '5R2':"fraction of cohesive sediment of class2,2n5 layer", + '5R3':"fraction of cohesive sediment of class3,3n5 layer", + '5R4':"fraction of cohesive sediment of class4,4n5 layer", + '5R5':"fraction of cohesive sediment of class5,5n5 layer", + '5R6':"fraction of cohesive sediment of class6,6n5 layer", + '5R7':"fraction of cohesive sediment of class7,7n5 layer", + '5R8':"fraction of cohesive sediment of class8,8n5 layer", + '5R9':"fraction of cohesive sediment of class9,9n5 layer", + '5R10':"fraction of cohesive sediment of class10,10n5 layer", + '5R11':"fraction of cohesive sediment of class11,11n5 layer", + '5R12':"fraction of cohesive sediment of class12,12n5 layer", + '5R13':"fraction of cohesive sediment of class13,13n5 layer", + '5R14':"fraction of cohesive sediment of class14,14n5 layer", + '5R15':"fraction of cohesive sediment of class15,15n5 layer", + '5R16':"fraction of cohesive sediment of class16,16n5 layer", + '5R17':"fraction of cohesive sediment of class17,17n5 layer", + '5R18':"fraction of cohesive sediment of class18,18n5 layer", + '5R19':"fraction of cohesive sediment of class19,19n5 layer", + '5R**':"fraction of cohesive sediment of class**,**n5 layer", + '6R*':"fraction of cohesive sediment of class*,*n6 layer", + '6R1':"fraction of cohesive sediment of class1,1n6 layer", + '6R2':"fraction of cohesive sediment of class2,2n6 layer", + '6R3':"fraction of cohesive sediment of class3,3n6 layer", + '6R4':"fraction of cohesive sediment of class4,4n6 layer", + '6R5':"fraction of cohesive sediment of class5,5n6 layer", + '6R6':"fraction of cohesive sediment of class6,6n6 layer", + '6R7':"fraction of cohesive sediment of class7,7n6 layer", + '6R8':"fraction of cohesive sediment of class8,8n6 layer", + '6R9':"fraction of cohesive sediment of class9,9n6 layer", + '6R10':"fraction of cohesive sediment of class10,10n6 layer", + '6R11':"fraction of cohesive sediment of class11,11n6 layer", + '6R12':"fraction of cohesive sediment of class12,12n6 layer", + '6R13':"fraction of cohesive sediment of class13,13n6 layer", + '6R14':"fraction of cohesive sediment of class14,14n6 layer", + '6R15':"fraction of cohesive sediment of class15,15n6 layer", + '6R16':"fraction of cohesive sediment of class16,16n6 layer", + '6R17':"fraction of cohesive sediment of class17,17n6 layer", + '6R18':"fraction of cohesive sediment of class18,18n6 layer", + '6R19':"fraction of cohesive sediment of class19,19n6 layer", + '6R**':"fraction of cohesive sediment of class**,**n6 layer", + '7R*':"fraction of cohesive sediment of class*,*n7 layer", + '7R1':"fraction of cohesive sediment of class1,1n7 layer", + '7R2':"fraction of cohesive sediment of class2,2n7 layer", + '7R3':"fraction of cohesive sediment of class3,3n7 layer", + '7R4':"fraction of cohesive sediment of class4,4n7 layer", + '7R5':"fraction of cohesive sediment of class5,5n7 layer", + '7R6':"fraction of cohesive sediment of class6,6n7 layer", + '7R7':"fraction of cohesive sediment of class7,7n7 layer", + '7R8':"fraction of cohesive sediment of class8,8n7 layer", + '7R9':"fraction of cohesive sediment of class9,9n7 layer", + '7R10':"fraction of cohesive sediment of class10,10n7 layer", + '7R11':"fraction of cohesive sediment of class11,11n7 layer", + '7R12':"fraction of cohesive sediment of class12,12n7 layer", + '7R13':"fraction of cohesive sediment of class13,13n7 layer", + '7R14':"fraction of cohesive sediment of class14,14n7 layer", + '7R15':"fraction of cohesive sediment of class15,15n7 layer", + '7R16':"fraction of cohesive sediment of class16,16n7 layer", + '7R17':"fraction of cohesive sediment of class17,17n7 layer", + '7R18':"fraction of cohesive sediment of class18,18n7 layer", + '7R19':"fraction of cohesive sediment of class19,19n7 layer", + '7R**':"fraction of cohesive sediment of class**,**n7 layer", + '8R*':"fraction of cohesive sediment of class*,*n8 layer", + '8R1':"fraction of cohesive sediment of class1,1n8 layer", + '8R2':"fraction of cohesive sediment of class2,2n8 layer", + '8R3':"fraction of cohesive sediment of class3,3n8 layer", + '8R4':"fraction of cohesive sediment of class4,4n8 layer", + '8R5':"fraction of cohesive sediment of class5,5n8 layer", + '8R6':"fraction of cohesive sediment of class6,6n8 layer", + '8R7':"fraction of cohesive sediment of class7,7n8 layer", + '8R8':"fraction of cohesive sediment of class8,8n8 layer", + '8R9':"fraction of cohesive sediment of class9,9n8 layer", + '8R10':"fraction of cohesive sediment of class10,10n8 layer", + '8R11':"fraction of cohesive sediment of class11,11n8 layer", + '8R12':"fraction of cohesive sediment of class12,12n8 layer", + '8R13':"fraction of cohesive sediment of class13,13n8 layer", + '8R14':"fraction of cohesive sediment of class14,14n8 layer", + '8R15':"fraction of cohesive sediment of class15,15n8 layer", + '8R16':"fraction of cohesive sediment of class16,16n8 layer", + '8R17':"fraction of cohesive sediment of class17,17n8 layer", + '8R18':"fraction of cohesive sediment of class18,18n8 layer", + '8R19':"fraction of cohesive sediment of class19,19n8 layer", + '8R**':"fraction of cohesive sediment of class**,**n8 layer", + '9R*':"fraction of cohesive sediment of class*,*n9 layer", + '9R1':"fraction of cohesive sediment of class1,1n9 layer", + '9R2':"fraction of cohesive sediment of class2,2n9 layer", + '9R3':"fraction of cohesive sediment of class3,3n9 layer", + '9R4':"fraction of cohesive sediment of class4,4n9 layer", + '9R5':"fraction of cohesive sediment of class5,5n9 layer", + '9R6':"fraction of cohesive sediment of class6,6n9 layer", + '9R7':"fraction of cohesive sediment of class7,7n9 layer", + '9R8':"fraction of cohesive sediment of class8,8n9 layer", + '9R9':"fraction of cohesive sediment of class9,9n9 layer", + '9R10':"fraction of cohesive sediment of class10,10n9 layer", + '9R11':"fraction of cohesive sediment of class11,11n9 layer", + '9R12':"fraction of cohesive sediment of class12,12n9 layer", + '9R13':"fraction of cohesive sediment of class13,13n9 layer", + '9R14':"fraction of cohesive sediment of class14,14n9 layer", + '9R15':"fraction of cohesive sediment of class15,15n9 layer", + '9R16':"fraction of cohesive sediment of class16,16n9 layer", + '9R17':"fraction of cohesive sediment of class17,17n9 layer", + '9R18':"fraction of cohesive sediment of class18,18n9 layer", + '9R19':"fraction of cohesive sediment of class19,19n9 layer", + '9R**':"fraction of cohesive sediment of class**,**n9 layer", + '10R*':"fraction of cohesive sediment of class*,*n10 layer", + '10R1':"fraction of cohesive sediment of class1,1n10 layer", + '10R2':"fraction of cohesive sediment of class2,2n10 layer", + '10R3':"fraction of cohesive sediment of class3,3n10 layer", + '10R4':"fraction of cohesive sediment of class4,4n10 layer", + '10R5':"fraction of cohesive sediment of class5,5n10 layer", + '10R6':"fraction of cohesive sediment of class6,6n10 layer", + '10R7':"fraction of cohesive sediment of class7,7n10 layer", + '10R8':"fraction of cohesive sediment of class8,8n10 layer", + '10R9':"fraction of cohesive sediment of class9,9n10 layer", + '10R10':"fraction of cohesive sediment of class10,10n10 layer", + '10R11':"fraction of cohesive sediment of class11,11n10 layer", + '10R12':"fraction of cohesive sediment of class12,12n10 layer", + '10R13':"fraction of cohesive sediment of class13,13n10 layer", + '10R14':"fraction of cohesive sediment of class14,14n10 layer", + '10R15':"fraction of cohesive sediment of class15,15n10 layer", + '10R16':"fraction of cohesive sediment of class16,16n10 layer", + '10R17':"fraction of cohesive sediment of class17,17n10 layer", + '10R18':"fraction of cohesive sediment of class18,18n10 layer", + '10R19':"fraction of cohesive sediment of class19,19n10 layer", + '10R**':"fraction of cohesive sediment of class**,**n10 layer", + '11R*':"fraction of cohesive sediment of class*,*n11 layer", + '11R1':"fraction of cohesive sediment of class1,1n11 layer", + '11R2':"fraction of cohesive sediment of class2,2n11 layer", + '11R3':"fraction of cohesive sediment of class3,3n11 layer", + '11R4':"fraction of cohesive sediment of class4,4n11 layer", + '11R5':"fraction of cohesive sediment of class5,5n11 layer", + '11R6':"fraction of cohesive sediment of class6,6n11 layer", + '11R7':"fraction of cohesive sediment of class7,7n11 layer", + '11R8':"fraction of cohesive sediment of class8,8n11 layer", + '11R9':"fraction of cohesive sediment of class9,9n11 layer", + '11R10':"fraction of cohesive sediment of class10,10n11 layer", + '11R11':"fraction of cohesive sediment of class11,11n11 layer", + '11R12':"fraction of cohesive sediment of class12,12n11 layer", + '11R13':"fraction of cohesive sediment of class13,13n11 layer", + '11R14':"fraction of cohesive sediment of class14,14n11 layer", + '11R15':"fraction of cohesive sediment of class15,15n11 layer", + '11R16':"fraction of cohesive sediment of class16,16n11 layer", + '11R17':"fraction of cohesive sediment of class17,17n11 layer", + '11R18':"fraction of cohesive sediment of class18,18n11 layer", + '11R19':"fraction of cohesive sediment of class19,19n11 layer", + '11R**':"fraction of cohesive sediment of class**,**n11 layer", + '12R*':"fraction of cohesive sediment of class*,*n12 layer", + '12R1':"fraction of cohesive sediment of class1,1n12 layer", + '12R2':"fraction of cohesive sediment of class2,2n12 layer", + '12R3':"fraction of cohesive sediment of class3,3n12 layer", + '12R4':"fraction of cohesive sediment of class4,4n12 layer", + '12R5':"fraction of cohesive sediment of class5,5n12 layer", + '12R6':"fraction of cohesive sediment of class6,6n12 layer", + '12R7':"fraction of cohesive sediment of class7,7n12 layer", + '12R8':"fraction of cohesive sediment of class8,8n12 layer", + '12R9':"fraction of cohesive sediment of class9,9n12 layer", + '12R10':"fraction of cohesive sediment of class10,10n12 layer", + '12R11':"fraction of cohesive sediment of class11,11n12 layer", + '12R12':"fraction of cohesive sediment of class12,12n12 layer", + '12R13':"fraction of cohesive sediment of class13,13n12 layer", + '12R14':"fraction of cohesive sediment of class14,14n12 layer", + '12R15':"fraction of cohesive sediment of class15,15n12 layer", + '12R16':"fraction of cohesive sediment of class16,16n12 layer", + '12R17':"fraction of cohesive sediment of class17,17n12 layer", + '12R18':"fraction of cohesive sediment of class18,18n12 layer", + '12R19':"fraction of cohesive sediment of class19,19n12 layer", + '12R**':"fraction of cohesive sediment of class**,**n12 layer", + '13R*':"fraction of cohesive sediment of class*,*n13 layer", + '13R1':"fraction of cohesive sediment of class1,1n13 layer", + '13R2':"fraction of cohesive sediment of class2,2n13 layer", + '13R3':"fraction of cohesive sediment of class3,3n13 layer", + '13R4':"fraction of cohesive sediment of class4,4n13 layer", + '13R5':"fraction of cohesive sediment of class5,5n13 layer", + '13R6':"fraction of cohesive sediment of class6,6n13 layer", + '13R7':"fraction of cohesive sediment of class7,7n13 layer", + '13R8':"fraction of cohesive sediment of class8,8n13 layer", + '13R9':"fraction of cohesive sediment of class9,9n13 layer", + '13R10':"fraction of cohesive sediment of class10,10n13 layer", + '13R11':"fraction of cohesive sediment of class11,11n13 layer", + '13R12':"fraction of cohesive sediment of class12,12n13 layer", + '13R13':"fraction of cohesive sediment of class13,13n13 layer", + '13R14':"fraction of cohesive sediment of class14,14n13 layer", + '13R15':"fraction of cohesive sediment of class15,15n13 layer", + '13R16':"fraction of cohesive sediment of class16,16n13 layer", + '13R17':"fraction of cohesive sediment of class17,17n13 layer", + '13R18':"fraction of cohesive sediment of class18,18n13 layer", + '13R19':"fraction of cohesive sediment of class19,19n13 layer", + '13R**':"fraction of cohesive sediment of class**,**n13 layer", + '14R*':"fraction of cohesive sediment of class*,*n14 layer", + '14R1':"fraction of cohesive sediment of class1,1n14 layer", + '14R2':"fraction of cohesive sediment of class2,2n14 layer", + '14R3':"fraction of cohesive sediment of class3,3n14 layer", + '14R4':"fraction of cohesive sediment of class4,4n14 layer", + '14R5':"fraction of cohesive sediment of class5,5n14 layer", + '14R6':"fraction of cohesive sediment of class6,6n14 layer", + '14R7':"fraction of cohesive sediment of class7,7n14 layer", + '14R8':"fraction of cohesive sediment of class8,8n14 layer", + '14R9':"fraction of cohesive sediment of class9,9n14 layer", + '14R10':"fraction of cohesive sediment of class10,10n14 layer", + '14R11':"fraction of cohesive sediment of class11,11n14 layer", + '14R12':"fraction of cohesive sediment of class12,12n14 layer", + '14R13':"fraction of cohesive sediment of class13,13n14 layer", + '14R14':"fraction of cohesive sediment of class14,14n14 layer", + '14R15':"fraction of cohesive sediment of class15,15n14 layer", + '14R16':"fraction of cohesive sediment of class16,16n14 layer", + '14R17':"fraction of cohesive sediment of class17,17n14 layer", + '14R18':"fraction of cohesive sediment of class18,18n14 layer", + '14R19':"fraction of cohesive sediment of class19,19n14 layer", + '14R**':"fraction of cohesive sediment of class**,**n14 layer", + '15R*':"fraction of cohesive sediment of class*,*n15 layer", + '15R1':"fraction of cohesive sediment of class1,1n15 layer", + '15R2':"fraction of cohesive sediment of class2,2n15 layer", + '15R3':"fraction of cohesive sediment of class3,3n15 layer", + '15R4':"fraction of cohesive sediment of class4,4n15 layer", + '15R5':"fraction of cohesive sediment of class5,5n15 layer", + '15R6':"fraction of cohesive sediment of class6,6n15 layer", + '15R7':"fraction of cohesive sediment of class7,7n15 layer", + '15R8':"fraction of cohesive sediment of class8,8n15 layer", + '15R9':"fraction of cohesive sediment of class9,9n15 layer", + '15R10':"fraction of cohesive sediment of class10,10n15 layer", + '15R11':"fraction of cohesive sediment of class11,11n15 layer", + '15R12':"fraction of cohesive sediment of class12,12n15 layer", + '15R13':"fraction of cohesive sediment of class13,13n15 layer", + '15R14':"fraction of cohesive sediment of class14,14n15 layer", + '15R15':"fraction of cohesive sediment of class15,15n15 layer", + '15R16':"fraction of cohesive sediment of class16,16n15 layer", + '15R17':"fraction of cohesive sediment of class17,17n15 layer", + '15R18':"fraction of cohesive sediment of class18,18n15 layer", + '15R19':"fraction of cohesive sediment of class19,19n15 layer", + '15R**':"fraction of cohesive sediment of class**,**n15 layer", + '16R*':"fraction of cohesive sediment of class*,*n16 layer", + '16R1':"fraction of cohesive sediment of class1,1n16 layer", + '16R2':"fraction of cohesive sediment of class2,2n16 layer", + '16R3':"fraction of cohesive sediment of class3,3n16 layer", + '16R4':"fraction of cohesive sediment of class4,4n16 layer", + '16R5':"fraction of cohesive sediment of class5,5n16 layer", + '16R6':"fraction of cohesive sediment of class6,6n16 layer", + '16R7':"fraction of cohesive sediment of class7,7n16 layer", + '16R8':"fraction of cohesive sediment of class8,8n16 layer", + '16R9':"fraction of cohesive sediment of class9,9n16 layer", + '16R10':"fraction of cohesive sediment of class10,10n16 layer", + '16R11':"fraction of cohesive sediment of class11,11n16 layer", + '16R12':"fraction of cohesive sediment of class12,12n16 layer", + '16R13':"fraction of cohesive sediment of class13,13n16 layer", + '16R14':"fraction of cohesive sediment of class14,14n16 layer", + '16R15':"fraction of cohesive sediment of class15,15n16 layer", + '16R16':"fraction of cohesive sediment of class16,16n16 layer", + '16R17':"fraction of cohesive sediment of class17,17n16 layer", + '16R18':"fraction of cohesive sediment of class18,18n16 layer", + '16R19':"fraction of cohesive sediment of class19,19n16 layer", + '16R**':"fraction of cohesive sediment of class**,**n16 layer", + '17R*':"fraction of cohesive sediment of class*,*n17 layer", + '17R1':"fraction of cohesive sediment of class1,1n17 layer", + '17R2':"fraction of cohesive sediment of class2,2n17 layer", + '17R3':"fraction of cohesive sediment of class3,3n17 layer", + '17R4':"fraction of cohesive sediment of class4,4n17 layer", + '17R5':"fraction of cohesive sediment of class5,5n17 layer", + '17R6':"fraction of cohesive sediment of class6,6n17 layer", + '17R7':"fraction of cohesive sediment of class7,7n17 layer", + '17R8':"fraction of cohesive sediment of class8,8n17 layer", + '17R9':"fraction of cohesive sediment of class9,9n17 layer", + '17R10':"fraction of cohesive sediment of class10,10n17 layer", + '17R11':"fraction of cohesive sediment of class11,11n17 layer", + '17R12':"fraction of cohesive sediment of class12,12n17 layer", + '17R13':"fraction of cohesive sediment of class13,13n17 layer", + '17R14':"fraction of cohesive sediment of class14,14n17 layer", + '17R15':"fraction of cohesive sediment of class15,15n17 layer", + '17R16':"fraction of cohesive sediment of class16,16n17 layer", + '17R17':"fraction of cohesive sediment of class17,17n17 layer", + '17R18':"fraction of cohesive sediment of class18,18n17 layer", + '17R19':"fraction of cohesive sediment of class19,19n17 layer", + '17R**':"fraction of cohesive sediment of class**,**n17 layer", + '18R*':"fraction of cohesive sediment of class*,*n18 layer", + '18R1':"fraction of cohesive sediment of class1,1n18 layer", + '18R2':"fraction of cohesive sediment of class2,2n18 layer", + '18R3':"fraction of cohesive sediment of class3,3n18 layer", + '18R4':"fraction of cohesive sediment of class4,4n18 layer", + '18R5':"fraction of cohesive sediment of class5,5n18 layer", + '18R6':"fraction of cohesive sediment of class6,6n18 layer", + '18R7':"fraction of cohesive sediment of class7,7n18 layer", + '18R8':"fraction of cohesive sediment of class8,8n18 layer", + '18R9':"fraction of cohesive sediment of class9,9n18 layer", + '18R10':"fraction of cohesive sediment of class10,10n18 layer", + '18R11':"fraction of cohesive sediment of class11,11n18 layer", + '18R12':"fraction of cohesive sediment of class12,12n18 layer", + '18R13':"fraction of cohesive sediment of class13,13n18 layer", + '18R14':"fraction of cohesive sediment of class14,14n18 layer", + '18R15':"fraction of cohesive sediment of class15,15n18 layer", + '18R16':"fraction of cohesive sediment of class16,16n18 layer", + '18R17':"fraction of cohesive sediment of class17,17n18 layer", + '18R18':"fraction of cohesive sediment of class18,18n18 layer", + '18R19':"fraction of cohesive sediment of class19,19n18 layer", + '18R**':"fraction of cohesive sediment of class**,**n18 layer", + '19R*':"fraction of cohesive sediment of class*,*n19 layer", + '19R1':"fraction of cohesive sediment of class1,1n19 layer", + '19R2':"fraction of cohesive sediment of class2,2n19 layer", + '19R3':"fraction of cohesive sediment of class3,3n19 layer", + '19R4':"fraction of cohesive sediment of class4,4n19 layer", + '19R5':"fraction of cohesive sediment of class5,5n19 layer", + '19R6':"fraction of cohesive sediment of class6,6n19 layer", + '19R7':"fraction of cohesive sediment of class7,7n19 layer", + '19R8':"fraction of cohesive sediment of class8,8n19 layer", + '19R9':"fraction of cohesive sediment of class9,9n19 layer", + '19R10':"fraction of cohesive sediment of class10,10n19 layer", + '19R11':"fraction of cohesive sediment of class11,11n19 layer", + '19R12':"fraction of cohesive sediment of class12,12n19 layer", + '19R13':"fraction of cohesive sediment of class13,13n19 layer", + '19R14':"fraction of cohesive sediment of class14,14n19 layer", + '19R15':"fraction of cohesive sediment of class15,15n19 layer", + '19R16':"fraction of cohesive sediment of class16,16n19 layer", + '19R17':"fraction of cohesive sediment of class17,17n19 layer", + '19R18':"fraction of cohesive sediment of class18,18n19 layer", + '19R19':"fraction of cohesive sediment of class19,19n19 layer", + '19R**':"fraction of cohesive sediment of class**,**n19 layer", + '**R*':"fraction of cohesive sediment of class*,*n** layer", + '**R1':"fraction of cohesive sediment of class1,1n** layer", + '**R2':"fraction of cohesive sediment of class2,2n** layer", + '**R3':"fraction of cohesive sediment of class3,3n** layer", + '**R4':"fraction of cohesive sediment of class4,4n** layer", + '**R5':"fraction of cohesive sediment of class5,5n** layer", + '**R6':"fraction of cohesive sediment of class6,6n** layer", + '**R7':"fraction of cohesive sediment of class7,7n** layer", + '**R8':"fraction of cohesive sediment of class8,8n** layer", + '**R9':"fraction of cohesive sediment of class9,9n** layer", + '**R10':"fraction of cohesive sediment of class10,10n** layer", + '**R11':"fraction of cohesive sediment of class11,11n** layer", + '**R12':"fraction of cohesive sediment of class12,12n** layer", + '**R13':"fraction of cohesive sediment of class13,13n** layer", + '**R14':"fraction of cohesive sediment of class14,14n** layer", + '**R15':"fraction of cohesive sediment of class15,15n** layer", + '**R16':"fraction of cohesive sediment of class16,16n** layer", + '**R17':"fraction of cohesive sediment of class17,17n** layer", + '**R18':"fraction of cohesive sediment of class18,18n** layer", + '**R19':"fraction of cohesive sediment of class19,19n** layer", + '**R**':"fraction of cohesive sediment of class**,**n** layer", 'kXKV':"porosity of k layer", - '1Si':"mass of non cohesive sediment of class i, in 1st layer", - '2Si':"mass of non cohesive sediment of class i, in 2nd layer", - 'kSi':"mass of non cohesive sediment of class i, in k layer", - '1Mi':"mass of cohesive sediment of class i, in 1st layer", - '2Mi':"mass of cohesive sediment of class i, in 2nd layer", - 'kMi':"mass of cohesive sediment of class i, in k layer", + '*S*':"mass of non cohesive sediment of class*,*n* layer", + '*S1':"mass of non cohesive sediment of class1,1n* layer", + '*S2':"mass of non cohesive sediment of class2,2n* layer", + '*S3':"mass of non cohesive sediment of class3,3n* layer", + '*S4':"mass of non cohesive sediment of class4,4n* layer", + '*S5':"mass of non cohesive sediment of class5,5n* layer", + '*S6':"mass of non cohesive sediment of class6,6n* layer", + '*S7':"mass of non cohesive sediment of class7,7n* layer", + '*S8':"mass of non cohesive sediment of class8,8n* layer", + '*S9':"mass of non cohesive sediment of class9,9n* layer", + '*S10':"mass of non cohesive sediment of class10,10n* layer", + '*S11':"mass of non cohesive sediment of class11,11n* layer", + '*S12':"mass of non cohesive sediment of class12,12n* layer", + '*S13':"mass of non cohesive sediment of class13,13n* layer", + '*S14':"mass of non cohesive sediment of class14,14n* layer", + '*S15':"mass of non cohesive sediment of class15,15n* layer", + '*S16':"mass of non cohesive sediment of class16,16n* layer", + '*S17':"mass of non cohesive sediment of class17,17n* layer", + '*S18':"mass of non cohesive sediment of class18,18n* layer", + '*S19':"mass of non cohesive sediment of class19,19n* layer", + '*S**':"mass of non cohesive sediment of class**,**n* layer", + '1S*':"mass of non cohesive sediment of class*,*n1 layer", + '1S1':"mass of non cohesive sediment of class1,1n1 layer", + '1S2':"mass of non cohesive sediment of class2,2n1 layer", + '1S3':"mass of non cohesive sediment of class3,3n1 layer", + '1S4':"mass of non cohesive sediment of class4,4n1 layer", + '1S5':"mass of non cohesive sediment of class5,5n1 layer", + '1S6':"mass of non cohesive sediment of class6,6n1 layer", + '1S7':"mass of non cohesive sediment of class7,7n1 layer", + '1S8':"mass of non cohesive sediment of class8,8n1 layer", + '1S9':"mass of non cohesive sediment of class9,9n1 layer", + '1S10':"mass of non cohesive sediment of class10,10n1 layer", + '1S11':"mass of non cohesive sediment of class11,11n1 layer", + '1S12':"mass of non cohesive sediment of class12,12n1 layer", + '1S13':"mass of non cohesive sediment of class13,13n1 layer", + '1S14':"mass of non cohesive sediment of class14,14n1 layer", + '1S15':"mass of non cohesive sediment of class15,15n1 layer", + '1S16':"mass of non cohesive sediment of class16,16n1 layer", + '1S17':"mass of non cohesive sediment of class17,17n1 layer", + '1S18':"mass of non cohesive sediment of class18,18n1 layer", + '1S19':"mass of non cohesive sediment of class19,19n1 layer", + '1S**':"mass of non cohesive sediment of class**,**n1 layer", + '2S*':"mass of non cohesive sediment of class*,*n2 layer", + '2S1':"mass of non cohesive sediment of class1,1n2 layer", + '2S2':"mass of non cohesive sediment of class2,2n2 layer", + '2S3':"mass of non cohesive sediment of class3,3n2 layer", + '2S4':"mass of non cohesive sediment of class4,4n2 layer", + '2S5':"mass of non cohesive sediment of class5,5n2 layer", + '2S6':"mass of non cohesive sediment of class6,6n2 layer", + '2S7':"mass of non cohesive sediment of class7,7n2 layer", + '2S8':"mass of non cohesive sediment of class8,8n2 layer", + '2S9':"mass of non cohesive sediment of class9,9n2 layer", + '2S10':"mass of non cohesive sediment of class10,10n2 layer", + '2S11':"mass of non cohesive sediment of class11,11n2 layer", + '2S12':"mass of non cohesive sediment of class12,12n2 layer", + '2S13':"mass of non cohesive sediment of class13,13n2 layer", + '2S14':"mass of non cohesive sediment of class14,14n2 layer", + '2S15':"mass of non cohesive sediment of class15,15n2 layer", + '2S16':"mass of non cohesive sediment of class16,16n2 layer", + '2S17':"mass of non cohesive sediment of class17,17n2 layer", + '2S18':"mass of non cohesive sediment of class18,18n2 layer", + '2S19':"mass of non cohesive sediment of class19,19n2 layer", + '2S**':"mass of non cohesive sediment of class**,**n2 layer", + '3S*':"mass of non cohesive sediment of class*,*n3 layer", + '3S1':"mass of non cohesive sediment of class1,1n3 layer", + '3S2':"mass of non cohesive sediment of class2,2n3 layer", + '3S3':"mass of non cohesive sediment of class3,3n3 layer", + '3S4':"mass of non cohesive sediment of class4,4n3 layer", + '3S5':"mass of non cohesive sediment of class5,5n3 layer", + '3S6':"mass of non cohesive sediment of class6,6n3 layer", + '3S7':"mass of non cohesive sediment of class7,7n3 layer", + '3S8':"mass of non cohesive sediment of class8,8n3 layer", + '3S9':"mass of non cohesive sediment of class9,9n3 layer", + '3S10':"mass of non cohesive sediment of class10,10n3 layer", + '3S11':"mass of non cohesive sediment of class11,11n3 layer", + '3S12':"mass of non cohesive sediment of class12,12n3 layer", + '3S13':"mass of non cohesive sediment of class13,13n3 layer", + '3S14':"mass of non cohesive sediment of class14,14n3 layer", + '3S15':"mass of non cohesive sediment of class15,15n3 layer", + '3S16':"mass of non cohesive sediment of class16,16n3 layer", + '3S17':"mass of non cohesive sediment of class17,17n3 layer", + '3S18':"mass of non cohesive sediment of class18,18n3 layer", + '3S19':"mass of non cohesive sediment of class19,19n3 layer", + '3S**':"mass of non cohesive sediment of class**,**n3 layer", + '4S*':"mass of non cohesive sediment of class*,*n4 layer", + '4S1':"mass of non cohesive sediment of class1,1n4 layer", + '4S2':"mass of non cohesive sediment of class2,2n4 layer", + '4S3':"mass of non cohesive sediment of class3,3n4 layer", + '4S4':"mass of non cohesive sediment of class4,4n4 layer", + '4S5':"mass of non cohesive sediment of class5,5n4 layer", + '4S6':"mass of non cohesive sediment of class6,6n4 layer", + '4S7':"mass of non cohesive sediment of class7,7n4 layer", + '4S8':"mass of non cohesive sediment of class8,8n4 layer", + '4S9':"mass of non cohesive sediment of class9,9n4 layer", + '4S10':"mass of non cohesive sediment of class10,10n4 layer", + '4S11':"mass of non cohesive sediment of class11,11n4 layer", + '4S12':"mass of non cohesive sediment of class12,12n4 layer", + '4S13':"mass of non cohesive sediment of class13,13n4 layer", + '4S14':"mass of non cohesive sediment of class14,14n4 layer", + '4S15':"mass of non cohesive sediment of class15,15n4 layer", + '4S16':"mass of non cohesive sediment of class16,16n4 layer", + '4S17':"mass of non cohesive sediment of class17,17n4 layer", + '4S18':"mass of non cohesive sediment of class18,18n4 layer", + '4S19':"mass of non cohesive sediment of class19,19n4 layer", + '4S**':"mass of non cohesive sediment of class**,**n4 layer", + '5S*':"mass of non cohesive sediment of class*,*n5 layer", + '5S1':"mass of non cohesive sediment of class1,1n5 layer", + '5S2':"mass of non cohesive sediment of class2,2n5 layer", + '5S3':"mass of non cohesive sediment of class3,3n5 layer", + '5S4':"mass of non cohesive sediment of class4,4n5 layer", + '5S5':"mass of non cohesive sediment of class5,5n5 layer", + '5S6':"mass of non cohesive sediment of class6,6n5 layer", + '5S7':"mass of non cohesive sediment of class7,7n5 layer", + '5S8':"mass of non cohesive sediment of class8,8n5 layer", + '5S9':"mass of non cohesive sediment of class9,9n5 layer", + '5S10':"mass of non cohesive sediment of class10,10n5 layer", + '5S11':"mass of non cohesive sediment of class11,11n5 layer", + '5S12':"mass of non cohesive sediment of class12,12n5 layer", + '5S13':"mass of non cohesive sediment of class13,13n5 layer", + '5S14':"mass of non cohesive sediment of class14,14n5 layer", + '5S15':"mass of non cohesive sediment of class15,15n5 layer", + '5S16':"mass of non cohesive sediment of class16,16n5 layer", + '5S17':"mass of non cohesive sediment of class17,17n5 layer", + '5S18':"mass of non cohesive sediment of class18,18n5 layer", + '5S19':"mass of non cohesive sediment of class19,19n5 layer", + '5S**':"mass of non cohesive sediment of class**,**n5 layer", + '6S*':"mass of non cohesive sediment of class*,*n6 layer", + '6S1':"mass of non cohesive sediment of class1,1n6 layer", + '6S2':"mass of non cohesive sediment of class2,2n6 layer", + '6S3':"mass of non cohesive sediment of class3,3n6 layer", + '6S4':"mass of non cohesive sediment of class4,4n6 layer", + '6S5':"mass of non cohesive sediment of class5,5n6 layer", + '6S6':"mass of non cohesive sediment of class6,6n6 layer", + '6S7':"mass of non cohesive sediment of class7,7n6 layer", + '6S8':"mass of non cohesive sediment of class8,8n6 layer", + '6S9':"mass of non cohesive sediment of class9,9n6 layer", + '6S10':"mass of non cohesive sediment of class10,10n6 layer", + '6S11':"mass of non cohesive sediment of class11,11n6 layer", + '6S12':"mass of non cohesive sediment of class12,12n6 layer", + '6S13':"mass of non cohesive sediment of class13,13n6 layer", + '6S14':"mass of non cohesive sediment of class14,14n6 layer", + '6S15':"mass of non cohesive sediment of class15,15n6 layer", + '6S16':"mass of non cohesive sediment of class16,16n6 layer", + '6S17':"mass of non cohesive sediment of class17,17n6 layer", + '6S18':"mass of non cohesive sediment of class18,18n6 layer", + '6S19':"mass of non cohesive sediment of class19,19n6 layer", + '6S**':"mass of non cohesive sediment of class**,**n6 layer", + '7S*':"mass of non cohesive sediment of class*,*n7 layer", + '7S1':"mass of non cohesive sediment of class1,1n7 layer", + '7S2':"mass of non cohesive sediment of class2,2n7 layer", + '7S3':"mass of non cohesive sediment of class3,3n7 layer", + '7S4':"mass of non cohesive sediment of class4,4n7 layer", + '7S5':"mass of non cohesive sediment of class5,5n7 layer", + '7S6':"mass of non cohesive sediment of class6,6n7 layer", + '7S7':"mass of non cohesive sediment of class7,7n7 layer", + '7S8':"mass of non cohesive sediment of class8,8n7 layer", + '7S9':"mass of non cohesive sediment of class9,9n7 layer", + '7S10':"mass of non cohesive sediment of class10,10n7 layer", + '7S11':"mass of non cohesive sediment of class11,11n7 layer", + '7S12':"mass of non cohesive sediment of class12,12n7 layer", + '7S13':"mass of non cohesive sediment of class13,13n7 layer", + '7S14':"mass of non cohesive sediment of class14,14n7 layer", + '7S15':"mass of non cohesive sediment of class15,15n7 layer", + '7S16':"mass of non cohesive sediment of class16,16n7 layer", + '7S17':"mass of non cohesive sediment of class17,17n7 layer", + '7S18':"mass of non cohesive sediment of class18,18n7 layer", + '7S19':"mass of non cohesive sediment of class19,19n7 layer", + '7S**':"mass of non cohesive sediment of class**,**n7 layer", + '8S*':"mass of non cohesive sediment of class*,*n8 layer", + '8S1':"mass of non cohesive sediment of class1,1n8 layer", + '8S2':"mass of non cohesive sediment of class2,2n8 layer", + '8S3':"mass of non cohesive sediment of class3,3n8 layer", + '8S4':"mass of non cohesive sediment of class4,4n8 layer", + '8S5':"mass of non cohesive sediment of class5,5n8 layer", + '8S6':"mass of non cohesive sediment of class6,6n8 layer", + '8S7':"mass of non cohesive sediment of class7,7n8 layer", + '8S8':"mass of non cohesive sediment of class8,8n8 layer", + '8S9':"mass of non cohesive sediment of class9,9n8 layer", + '8S10':"mass of non cohesive sediment of class10,10n8 layer", + '8S11':"mass of non cohesive sediment of class11,11n8 layer", + '8S12':"mass of non cohesive sediment of class12,12n8 layer", + '8S13':"mass of non cohesive sediment of class13,13n8 layer", + '8S14':"mass of non cohesive sediment of class14,14n8 layer", + '8S15':"mass of non cohesive sediment of class15,15n8 layer", + '8S16':"mass of non cohesive sediment of class16,16n8 layer", + '8S17':"mass of non cohesive sediment of class17,17n8 layer", + '8S18':"mass of non cohesive sediment of class18,18n8 layer", + '8S19':"mass of non cohesive sediment of class19,19n8 layer", + '8S**':"mass of non cohesive sediment of class**,**n8 layer", + '9S*':"mass of non cohesive sediment of class*,*n9 layer", + '9S1':"mass of non cohesive sediment of class1,1n9 layer", + '9S2':"mass of non cohesive sediment of class2,2n9 layer", + '9S3':"mass of non cohesive sediment of class3,3n9 layer", + '9S4':"mass of non cohesive sediment of class4,4n9 layer", + '9S5':"mass of non cohesive sediment of class5,5n9 layer", + '9S6':"mass of non cohesive sediment of class6,6n9 layer", + '9S7':"mass of non cohesive sediment of class7,7n9 layer", + '9S8':"mass of non cohesive sediment of class8,8n9 layer", + '9S9':"mass of non cohesive sediment of class9,9n9 layer", + '9S10':"mass of non cohesive sediment of class10,10n9 layer", + '9S11':"mass of non cohesive sediment of class11,11n9 layer", + '9S12':"mass of non cohesive sediment of class12,12n9 layer", + '9S13':"mass of non cohesive sediment of class13,13n9 layer", + '9S14':"mass of non cohesive sediment of class14,14n9 layer", + '9S15':"mass of non cohesive sediment of class15,15n9 layer", + '9S16':"mass of non cohesive sediment of class16,16n9 layer", + '9S17':"mass of non cohesive sediment of class17,17n9 layer", + '9S18':"mass of non cohesive sediment of class18,18n9 layer", + '9S19':"mass of non cohesive sediment of class19,19n9 layer", + '9S**':"mass of non cohesive sediment of class**,**n9 layer", + '10S*':"mass of non cohesive sediment of class*,*n10 layer", + '10S1':"mass of non cohesive sediment of class1,1n10 layer", + '10S2':"mass of non cohesive sediment of class2,2n10 layer", + '10S3':"mass of non cohesive sediment of class3,3n10 layer", + '10S4':"mass of non cohesive sediment of class4,4n10 layer", + '10S5':"mass of non cohesive sediment of class5,5n10 layer", + '10S6':"mass of non cohesive sediment of class6,6n10 layer", + '10S7':"mass of non cohesive sediment of class7,7n10 layer", + '10S8':"mass of non cohesive sediment of class8,8n10 layer", + '10S9':"mass of non cohesive sediment of class9,9n10 layer", + '10S10':"mass of non cohesive sediment of class10,10n10 layer", + '10S11':"mass of non cohesive sediment of class11,11n10 layer", + '10S12':"mass of non cohesive sediment of class12,12n10 layer", + '10S13':"mass of non cohesive sediment of class13,13n10 layer", + '10S14':"mass of non cohesive sediment of class14,14n10 layer", + '10S15':"mass of non cohesive sediment of class15,15n10 layer", + '10S16':"mass of non cohesive sediment of class16,16n10 layer", + '10S17':"mass of non cohesive sediment of class17,17n10 layer", + '10S18':"mass of non cohesive sediment of class18,18n10 layer", + '10S19':"mass of non cohesive sediment of class19,19n10 layer", + '10S**':"mass of non cohesive sediment of class**,**n10 layer", + '11S*':"mass of non cohesive sediment of class*,*n11 layer", + '11S1':"mass of non cohesive sediment of class1,1n11 layer", + '11S2':"mass of non cohesive sediment of class2,2n11 layer", + '11S3':"mass of non cohesive sediment of class3,3n11 layer", + '11S4':"mass of non cohesive sediment of class4,4n11 layer", + '11S5':"mass of non cohesive sediment of class5,5n11 layer", + '11S6':"mass of non cohesive sediment of class6,6n11 layer", + '11S7':"mass of non cohesive sediment of class7,7n11 layer", + '11S8':"mass of non cohesive sediment of class8,8n11 layer", + '11S9':"mass of non cohesive sediment of class9,9n11 layer", + '11S10':"mass of non cohesive sediment of class10,10n11 layer", + '11S11':"mass of non cohesive sediment of class11,11n11 layer", + '11S12':"mass of non cohesive sediment of class12,12n11 layer", + '11S13':"mass of non cohesive sediment of class13,13n11 layer", + '11S14':"mass of non cohesive sediment of class14,14n11 layer", + '11S15':"mass of non cohesive sediment of class15,15n11 layer", + '11S16':"mass of non cohesive sediment of class16,16n11 layer", + '11S17':"mass of non cohesive sediment of class17,17n11 layer", + '11S18':"mass of non cohesive sediment of class18,18n11 layer", + '11S19':"mass of non cohesive sediment of class19,19n11 layer", + '11S**':"mass of non cohesive sediment of class**,**n11 layer", + '12S*':"mass of non cohesive sediment of class*,*n12 layer", + '12S1':"mass of non cohesive sediment of class1,1n12 layer", + '12S2':"mass of non cohesive sediment of class2,2n12 layer", + '12S3':"mass of non cohesive sediment of class3,3n12 layer", + '12S4':"mass of non cohesive sediment of class4,4n12 layer", + '12S5':"mass of non cohesive sediment of class5,5n12 layer", + '12S6':"mass of non cohesive sediment of class6,6n12 layer", + '12S7':"mass of non cohesive sediment of class7,7n12 layer", + '12S8':"mass of non cohesive sediment of class8,8n12 layer", + '12S9':"mass of non cohesive sediment of class9,9n12 layer", + '12S10':"mass of non cohesive sediment of class10,10n12 layer", + '12S11':"mass of non cohesive sediment of class11,11n12 layer", + '12S12':"mass of non cohesive sediment of class12,12n12 layer", + '12S13':"mass of non cohesive sediment of class13,13n12 layer", + '12S14':"mass of non cohesive sediment of class14,14n12 layer", + '12S15':"mass of non cohesive sediment of class15,15n12 layer", + '12S16':"mass of non cohesive sediment of class16,16n12 layer", + '12S17':"mass of non cohesive sediment of class17,17n12 layer", + '12S18':"mass of non cohesive sediment of class18,18n12 layer", + '12S19':"mass of non cohesive sediment of class19,19n12 layer", + '12S**':"mass of non cohesive sediment of class**,**n12 layer", + '13S*':"mass of non cohesive sediment of class*,*n13 layer", + '13S1':"mass of non cohesive sediment of class1,1n13 layer", + '13S2':"mass of non cohesive sediment of class2,2n13 layer", + '13S3':"mass of non cohesive sediment of class3,3n13 layer", + '13S4':"mass of non cohesive sediment of class4,4n13 layer", + '13S5':"mass of non cohesive sediment of class5,5n13 layer", + '13S6':"mass of non cohesive sediment of class6,6n13 layer", + '13S7':"mass of non cohesive sediment of class7,7n13 layer", + '13S8':"mass of non cohesive sediment of class8,8n13 layer", + '13S9':"mass of non cohesive sediment of class9,9n13 layer", + '13S10':"mass of non cohesive sediment of class10,10n13 layer", + '13S11':"mass of non cohesive sediment of class11,11n13 layer", + '13S12':"mass of non cohesive sediment of class12,12n13 layer", + '13S13':"mass of non cohesive sediment of class13,13n13 layer", + '13S14':"mass of non cohesive sediment of class14,14n13 layer", + '13S15':"mass of non cohesive sediment of class15,15n13 layer", + '13S16':"mass of non cohesive sediment of class16,16n13 layer", + '13S17':"mass of non cohesive sediment of class17,17n13 layer", + '13S18':"mass of non cohesive sediment of class18,18n13 layer", + '13S19':"mass of non cohesive sediment of class19,19n13 layer", + '13S**':"mass of non cohesive sediment of class**,**n13 layer", + '14S*':"mass of non cohesive sediment of class*,*n14 layer", + '14S1':"mass of non cohesive sediment of class1,1n14 layer", + '14S2':"mass of non cohesive sediment of class2,2n14 layer", + '14S3':"mass of non cohesive sediment of class3,3n14 layer", + '14S4':"mass of non cohesive sediment of class4,4n14 layer", + '14S5':"mass of non cohesive sediment of class5,5n14 layer", + '14S6':"mass of non cohesive sediment of class6,6n14 layer", + '14S7':"mass of non cohesive sediment of class7,7n14 layer", + '14S8':"mass of non cohesive sediment of class8,8n14 layer", + '14S9':"mass of non cohesive sediment of class9,9n14 layer", + '14S10':"mass of non cohesive sediment of class10,10n14 layer", + '14S11':"mass of non cohesive sediment of class11,11n14 layer", + '14S12':"mass of non cohesive sediment of class12,12n14 layer", + '14S13':"mass of non cohesive sediment of class13,13n14 layer", + '14S14':"mass of non cohesive sediment of class14,14n14 layer", + '14S15':"mass of non cohesive sediment of class15,15n14 layer", + '14S16':"mass of non cohesive sediment of class16,16n14 layer", + '14S17':"mass of non cohesive sediment of class17,17n14 layer", + '14S18':"mass of non cohesive sediment of class18,18n14 layer", + '14S19':"mass of non cohesive sediment of class19,19n14 layer", + '14S**':"mass of non cohesive sediment of class**,**n14 layer", + '15S*':"mass of non cohesive sediment of class*,*n15 layer", + '15S1':"mass of non cohesive sediment of class1,1n15 layer", + '15S2':"mass of non cohesive sediment of class2,2n15 layer", + '15S3':"mass of non cohesive sediment of class3,3n15 layer", + '15S4':"mass of non cohesive sediment of class4,4n15 layer", + '15S5':"mass of non cohesive sediment of class5,5n15 layer", + '15S6':"mass of non cohesive sediment of class6,6n15 layer", + '15S7':"mass of non cohesive sediment of class7,7n15 layer", + '15S8':"mass of non cohesive sediment of class8,8n15 layer", + '15S9':"mass of non cohesive sediment of class9,9n15 layer", + '15S10':"mass of non cohesive sediment of class10,10n15 layer", + '15S11':"mass of non cohesive sediment of class11,11n15 layer", + '15S12':"mass of non cohesive sediment of class12,12n15 layer", + '15S13':"mass of non cohesive sediment of class13,13n15 layer", + '15S14':"mass of non cohesive sediment of class14,14n15 layer", + '15S15':"mass of non cohesive sediment of class15,15n15 layer", + '15S16':"mass of non cohesive sediment of class16,16n15 layer", + '15S17':"mass of non cohesive sediment of class17,17n15 layer", + '15S18':"mass of non cohesive sediment of class18,18n15 layer", + '15S19':"mass of non cohesive sediment of class19,19n15 layer", + '15S**':"mass of non cohesive sediment of class**,**n15 layer", + '16S*':"mass of non cohesive sediment of class*,*n16 layer", + '16S1':"mass of non cohesive sediment of class1,1n16 layer", + '16S2':"mass of non cohesive sediment of class2,2n16 layer", + '16S3':"mass of non cohesive sediment of class3,3n16 layer", + '16S4':"mass of non cohesive sediment of class4,4n16 layer", + '16S5':"mass of non cohesive sediment of class5,5n16 layer", + '16S6':"mass of non cohesive sediment of class6,6n16 layer", + '16S7':"mass of non cohesive sediment of class7,7n16 layer", + '16S8':"mass of non cohesive sediment of class8,8n16 layer", + '16S9':"mass of non cohesive sediment of class9,9n16 layer", + '16S10':"mass of non cohesive sediment of class10,10n16 layer", + '16S11':"mass of non cohesive sediment of class11,11n16 layer", + '16S12':"mass of non cohesive sediment of class12,12n16 layer", + '16S13':"mass of non cohesive sediment of class13,13n16 layer", + '16S14':"mass of non cohesive sediment of class14,14n16 layer", + '16S15':"mass of non cohesive sediment of class15,15n16 layer", + '16S16':"mass of non cohesive sediment of class16,16n16 layer", + '16S17':"mass of non cohesive sediment of class17,17n16 layer", + '16S18':"mass of non cohesive sediment of class18,18n16 layer", + '16S19':"mass of non cohesive sediment of class19,19n16 layer", + '16S**':"mass of non cohesive sediment of class**,**n16 layer", + '17S*':"mass of non cohesive sediment of class*,*n17 layer", + '17S1':"mass of non cohesive sediment of class1,1n17 layer", + '17S2':"mass of non cohesive sediment of class2,2n17 layer", + '17S3':"mass of non cohesive sediment of class3,3n17 layer", + '17S4':"mass of non cohesive sediment of class4,4n17 layer", + '17S5':"mass of non cohesive sediment of class5,5n17 layer", + '17S6':"mass of non cohesive sediment of class6,6n17 layer", + '17S7':"mass of non cohesive sediment of class7,7n17 layer", + '17S8':"mass of non cohesive sediment of class8,8n17 layer", + '17S9':"mass of non cohesive sediment of class9,9n17 layer", + '17S10':"mass of non cohesive sediment of class10,10n17 layer", + '17S11':"mass of non cohesive sediment of class11,11n17 layer", + '17S12':"mass of non cohesive sediment of class12,12n17 layer", + '17S13':"mass of non cohesive sediment of class13,13n17 layer", + '17S14':"mass of non cohesive sediment of class14,14n17 layer", + '17S15':"mass of non cohesive sediment of class15,15n17 layer", + '17S16':"mass of non cohesive sediment of class16,16n17 layer", + '17S17':"mass of non cohesive sediment of class17,17n17 layer", + '17S18':"mass of non cohesive sediment of class18,18n17 layer", + '17S19':"mass of non cohesive sediment of class19,19n17 layer", + '17S**':"mass of non cohesive sediment of class**,**n17 layer", + '18S*':"mass of non cohesive sediment of class*,*n18 layer", + '18S1':"mass of non cohesive sediment of class1,1n18 layer", + '18S2':"mass of non cohesive sediment of class2,2n18 layer", + '18S3':"mass of non cohesive sediment of class3,3n18 layer", + '18S4':"mass of non cohesive sediment of class4,4n18 layer", + '18S5':"mass of non cohesive sediment of class5,5n18 layer", + '18S6':"mass of non cohesive sediment of class6,6n18 layer", + '18S7':"mass of non cohesive sediment of class7,7n18 layer", + '18S8':"mass of non cohesive sediment of class8,8n18 layer", + '18S9':"mass of non cohesive sediment of class9,9n18 layer", + '18S10':"mass of non cohesive sediment of class10,10n18 layer", + '18S11':"mass of non cohesive sediment of class11,11n18 layer", + '18S12':"mass of non cohesive sediment of class12,12n18 layer", + '18S13':"mass of non cohesive sediment of class13,13n18 layer", + '18S14':"mass of non cohesive sediment of class14,14n18 layer", + '18S15':"mass of non cohesive sediment of class15,15n18 layer", + '18S16':"mass of non cohesive sediment of class16,16n18 layer", + '18S17':"mass of non cohesive sediment of class17,17n18 layer", + '18S18':"mass of non cohesive sediment of class18,18n18 layer", + '18S19':"mass of non cohesive sediment of class19,19n18 layer", + '18S**':"mass of non cohesive sediment of class**,**n18 layer", + '19S*':"mass of non cohesive sediment of class*,*n19 layer", + '19S1':"mass of non cohesive sediment of class1,1n19 layer", + '19S2':"mass of non cohesive sediment of class2,2n19 layer", + '19S3':"mass of non cohesive sediment of class3,3n19 layer", + '19S4':"mass of non cohesive sediment of class4,4n19 layer", + '19S5':"mass of non cohesive sediment of class5,5n19 layer", + '19S6':"mass of non cohesive sediment of class6,6n19 layer", + '19S7':"mass of non cohesive sediment of class7,7n19 layer", + '19S8':"mass of non cohesive sediment of class8,8n19 layer", + '19S9':"mass of non cohesive sediment of class9,9n19 layer", + '19S10':"mass of non cohesive sediment of class10,10n19 layer", + '19S11':"mass of non cohesive sediment of class11,11n19 layer", + '19S12':"mass of non cohesive sediment of class12,12n19 layer", + '19S13':"mass of non cohesive sediment of class13,13n19 layer", + '19S14':"mass of non cohesive sediment of class14,14n19 layer", + '19S15':"mass of non cohesive sediment of class15,15n19 layer", + '19S16':"mass of non cohesive sediment of class16,16n19 layer", + '19S17':"mass of non cohesive sediment of class17,17n19 layer", + '19S18':"mass of non cohesive sediment of class18,18n19 layer", + '19S19':"mass of non cohesive sediment of class19,19n19 layer", + '19S**':"mass of non cohesive sediment of class**,**n19 layer", + '**S*':"mass of non cohesive sediment of class*,*n** layer", + '**S1':"mass of non cohesive sediment of class1,1n** layer", + '**S2':"mass of non cohesive sediment of class2,2n** layer", + '**S3':"mass of non cohesive sediment of class3,3n** layer", + '**S4':"mass of non cohesive sediment of class4,4n** layer", + '**S5':"mass of non cohesive sediment of class5,5n** layer", + '**S6':"mass of non cohesive sediment of class6,6n** layer", + '**S7':"mass of non cohesive sediment of class7,7n** layer", + '**S8':"mass of non cohesive sediment of class8,8n** layer", + '**S9':"mass of non cohesive sediment of class9,9n** layer", + '**S10':"mass of non cohesive sediment of class10,10n** layer", + '**S11':"mass of non cohesive sediment of class11,11n** layer", + '**S12':"mass of non cohesive sediment of class12,12n** layer", + '**S13':"mass of non cohesive sediment of class13,13n** layer", + '**S14':"mass of non cohesive sediment of class14,14n** layer", + '**S15':"mass of non cohesive sediment of class15,15n** layer", + '**S16':"mass of non cohesive sediment of class16,16n** layer", + '**S17':"mass of non cohesive sediment of class17,17n** layer", + '**S18':"mass of non cohesive sediment of class18,18n** layer", + '**S19':"mass of non cohesive sediment of class19,19n** layer", + '**S**':"mass of non cohesive sediment of class**,**n** layer", + '*M*':"mass of cohesive sediment of class*,*n* layer", + '*M1':"mass of cohesive sediment of class1,1n* layer", + '*M2':"mass of cohesive sediment of class2,2n* layer", + '*M3':"mass of cohesive sediment of class3,3n* layer", + '*M4':"mass of cohesive sediment of class4,4n* layer", + '*M5':"mass of cohesive sediment of class5,5n* layer", + '*M6':"mass of cohesive sediment of class6,6n* layer", + '*M7':"mass of cohesive sediment of class7,7n* layer", + '*M8':"mass of cohesive sediment of class8,8n* layer", + '*M9':"mass of cohesive sediment of class9,9n* layer", + '*M10':"mass of cohesive sediment of class10,10n* layer", + '*M11':"mass of cohesive sediment of class11,11n* layer", + '*M12':"mass of cohesive sediment of class12,12n* layer", + '*M13':"mass of cohesive sediment of class13,13n* layer", + '*M14':"mass of cohesive sediment of class14,14n* layer", + '*M15':"mass of cohesive sediment of class15,15n* layer", + '*M16':"mass of cohesive sediment of class16,16n* layer", + '*M17':"mass of cohesive sediment of class17,17n* layer", + '*M18':"mass of cohesive sediment of class18,18n* layer", + '*M19':"mass of cohesive sediment of class19,19n* layer", + '*M**':"mass of cohesive sediment of class**,**n* layer", + '1M*':"mass of cohesive sediment of class*,*n1 layer", + '1M1':"mass of cohesive sediment of class1,1n1 layer", + '1M2':"mass of cohesive sediment of class2,2n1 layer", + '1M3':"mass of cohesive sediment of class3,3n1 layer", + '1M4':"mass of cohesive sediment of class4,4n1 layer", + '1M5':"mass of cohesive sediment of class5,5n1 layer", + '1M6':"mass of cohesive sediment of class6,6n1 layer", + '1M7':"mass of cohesive sediment of class7,7n1 layer", + '1M8':"mass of cohesive sediment of class8,8n1 layer", + '1M9':"mass of cohesive sediment of class9,9n1 layer", + '1M10':"mass of cohesive sediment of class10,10n1 layer", + '1M11':"mass of cohesive sediment of class11,11n1 layer", + '1M12':"mass of cohesive sediment of class12,12n1 layer", + '1M13':"mass of cohesive sediment of class13,13n1 layer", + '1M14':"mass of cohesive sediment of class14,14n1 layer", + '1M15':"mass of cohesive sediment of class15,15n1 layer", + '1M16':"mass of cohesive sediment of class16,16n1 layer", + '1M17':"mass of cohesive sediment of class17,17n1 layer", + '1M18':"mass of cohesive sediment of class18,18n1 layer", + '1M19':"mass of cohesive sediment of class19,19n1 layer", + '1M**':"mass of cohesive sediment of class**,**n1 layer", + '2M*':"mass of cohesive sediment of class*,*n2 layer", + '2M1':"mass of cohesive sediment of class1,1n2 layer", + '2M2':"mass of cohesive sediment of class2,2n2 layer", + '2M3':"mass of cohesive sediment of class3,3n2 layer", + '2M4':"mass of cohesive sediment of class4,4n2 layer", + '2M5':"mass of cohesive sediment of class5,5n2 layer", + '2M6':"mass of cohesive sediment of class6,6n2 layer", + '2M7':"mass of cohesive sediment of class7,7n2 layer", + '2M8':"mass of cohesive sediment of class8,8n2 layer", + '2M9':"mass of cohesive sediment of class9,9n2 layer", + '2M10':"mass of cohesive sediment of class10,10n2 layer", + '2M11':"mass of cohesive sediment of class11,11n2 layer", + '2M12':"mass of cohesive sediment of class12,12n2 layer", + '2M13':"mass of cohesive sediment of class13,13n2 layer", + '2M14':"mass of cohesive sediment of class14,14n2 layer", + '2M15':"mass of cohesive sediment of class15,15n2 layer", + '2M16':"mass of cohesive sediment of class16,16n2 layer", + '2M17':"mass of cohesive sediment of class17,17n2 layer", + '2M18':"mass of cohesive sediment of class18,18n2 layer", + '2M19':"mass of cohesive sediment of class19,19n2 layer", + '2M**':"mass of cohesive sediment of class**,**n2 layer", + '3M*':"mass of cohesive sediment of class*,*n3 layer", + '3M1':"mass of cohesive sediment of class1,1n3 layer", + '3M2':"mass of cohesive sediment of class2,2n3 layer", + '3M3':"mass of cohesive sediment of class3,3n3 layer", + '3M4':"mass of cohesive sediment of class4,4n3 layer", + '3M5':"mass of cohesive sediment of class5,5n3 layer", + '3M6':"mass of cohesive sediment of class6,6n3 layer", + '3M7':"mass of cohesive sediment of class7,7n3 layer", + '3M8':"mass of cohesive sediment of class8,8n3 layer", + '3M9':"mass of cohesive sediment of class9,9n3 layer", + '3M10':"mass of cohesive sediment of class10,10n3 layer", + '3M11':"mass of cohesive sediment of class11,11n3 layer", + '3M12':"mass of cohesive sediment of class12,12n3 layer", + '3M13':"mass of cohesive sediment of class13,13n3 layer", + '3M14':"mass of cohesive sediment of class14,14n3 layer", + '3M15':"mass of cohesive sediment of class15,15n3 layer", + '3M16':"mass of cohesive sediment of class16,16n3 layer", + '3M17':"mass of cohesive sediment of class17,17n3 layer", + '3M18':"mass of cohesive sediment of class18,18n3 layer", + '3M19':"mass of cohesive sediment of class19,19n3 layer", + '3M**':"mass of cohesive sediment of class**,**n3 layer", + '4M*':"mass of cohesive sediment of class*,*n4 layer", + '4M1':"mass of cohesive sediment of class1,1n4 layer", + '4M2':"mass of cohesive sediment of class2,2n4 layer", + '4M3':"mass of cohesive sediment of class3,3n4 layer", + '4M4':"mass of cohesive sediment of class4,4n4 layer", + '4M5':"mass of cohesive sediment of class5,5n4 layer", + '4M6':"mass of cohesive sediment of class6,6n4 layer", + '4M7':"mass of cohesive sediment of class7,7n4 layer", + '4M8':"mass of cohesive sediment of class8,8n4 layer", + '4M9':"mass of cohesive sediment of class9,9n4 layer", + '4M10':"mass of cohesive sediment of class10,10n4 layer", + '4M11':"mass of cohesive sediment of class11,11n4 layer", + '4M12':"mass of cohesive sediment of class12,12n4 layer", + '4M13':"mass of cohesive sediment of class13,13n4 layer", + '4M14':"mass of cohesive sediment of class14,14n4 layer", + '4M15':"mass of cohesive sediment of class15,15n4 layer", + '4M16':"mass of cohesive sediment of class16,16n4 layer", + '4M17':"mass of cohesive sediment of class17,17n4 layer", + '4M18':"mass of cohesive sediment of class18,18n4 layer", + '4M19':"mass of cohesive sediment of class19,19n4 layer", + '4M**':"mass of cohesive sediment of class**,**n4 layer", + '5M*':"mass of cohesive sediment of class*,*n5 layer", + '5M1':"mass of cohesive sediment of class1,1n5 layer", + '5M2':"mass of cohesive sediment of class2,2n5 layer", + '5M3':"mass of cohesive sediment of class3,3n5 layer", + '5M4':"mass of cohesive sediment of class4,4n5 layer", + '5M5':"mass of cohesive sediment of class5,5n5 layer", + '5M6':"mass of cohesive sediment of class6,6n5 layer", + '5M7':"mass of cohesive sediment of class7,7n5 layer", + '5M8':"mass of cohesive sediment of class8,8n5 layer", + '5M9':"mass of cohesive sediment of class9,9n5 layer", + '5M10':"mass of cohesive sediment of class10,10n5 layer", + '5M11':"mass of cohesive sediment of class11,11n5 layer", + '5M12':"mass of cohesive sediment of class12,12n5 layer", + '5M13':"mass of cohesive sediment of class13,13n5 layer", + '5M14':"mass of cohesive sediment of class14,14n5 layer", + '5M15':"mass of cohesive sediment of class15,15n5 layer", + '5M16':"mass of cohesive sediment of class16,16n5 layer", + '5M17':"mass of cohesive sediment of class17,17n5 layer", + '5M18':"mass of cohesive sediment of class18,18n5 layer", + '5M19':"mass of cohesive sediment of class19,19n5 layer", + '5M**':"mass of cohesive sediment of class**,**n5 layer", + '6M*':"mass of cohesive sediment of class*,*n6 layer", + '6M1':"mass of cohesive sediment of class1,1n6 layer", + '6M2':"mass of cohesive sediment of class2,2n6 layer", + '6M3':"mass of cohesive sediment of class3,3n6 layer", + '6M4':"mass of cohesive sediment of class4,4n6 layer", + '6M5':"mass of cohesive sediment of class5,5n6 layer", + '6M6':"mass of cohesive sediment of class6,6n6 layer", + '6M7':"mass of cohesive sediment of class7,7n6 layer", + '6M8':"mass of cohesive sediment of class8,8n6 layer", + '6M9':"mass of cohesive sediment of class9,9n6 layer", + '6M10':"mass of cohesive sediment of class10,10n6 layer", + '6M11':"mass of cohesive sediment of class11,11n6 layer", + '6M12':"mass of cohesive sediment of class12,12n6 layer", + '6M13':"mass of cohesive sediment of class13,13n6 layer", + '6M14':"mass of cohesive sediment of class14,14n6 layer", + '6M15':"mass of cohesive sediment of class15,15n6 layer", + '6M16':"mass of cohesive sediment of class16,16n6 layer", + '6M17':"mass of cohesive sediment of class17,17n6 layer", + '6M18':"mass of cohesive sediment of class18,18n6 layer", + '6M19':"mass of cohesive sediment of class19,19n6 layer", + '6M**':"mass of cohesive sediment of class**,**n6 layer", + '7M*':"mass of cohesive sediment of class*,*n7 layer", + '7M1':"mass of cohesive sediment of class1,1n7 layer", + '7M2':"mass of cohesive sediment of class2,2n7 layer", + '7M3':"mass of cohesive sediment of class3,3n7 layer", + '7M4':"mass of cohesive sediment of class4,4n7 layer", + '7M5':"mass of cohesive sediment of class5,5n7 layer", + '7M6':"mass of cohesive sediment of class6,6n7 layer", + '7M7':"mass of cohesive sediment of class7,7n7 layer", + '7M8':"mass of cohesive sediment of class8,8n7 layer", + '7M9':"mass of cohesive sediment of class9,9n7 layer", + '7M10':"mass of cohesive sediment of class10,10n7 layer", + '7M11':"mass of cohesive sediment of class11,11n7 layer", + '7M12':"mass of cohesive sediment of class12,12n7 layer", + '7M13':"mass of cohesive sediment of class13,13n7 layer", + '7M14':"mass of cohesive sediment of class14,14n7 layer", + '7M15':"mass of cohesive sediment of class15,15n7 layer", + '7M16':"mass of cohesive sediment of class16,16n7 layer", + '7M17':"mass of cohesive sediment of class17,17n7 layer", + '7M18':"mass of cohesive sediment of class18,18n7 layer", + '7M19':"mass of cohesive sediment of class19,19n7 layer", + '7M**':"mass of cohesive sediment of class**,**n7 layer", + '8M*':"mass of cohesive sediment of class*,*n8 layer", + '8M1':"mass of cohesive sediment of class1,1n8 layer", + '8M2':"mass of cohesive sediment of class2,2n8 layer", + '8M3':"mass of cohesive sediment of class3,3n8 layer", + '8M4':"mass of cohesive sediment of class4,4n8 layer", + '8M5':"mass of cohesive sediment of class5,5n8 layer", + '8M6':"mass of cohesive sediment of class6,6n8 layer", + '8M7':"mass of cohesive sediment of class7,7n8 layer", + '8M8':"mass of cohesive sediment of class8,8n8 layer", + '8M9':"mass of cohesive sediment of class9,9n8 layer", + '8M10':"mass of cohesive sediment of class10,10n8 layer", + '8M11':"mass of cohesive sediment of class11,11n8 layer", + '8M12':"mass of cohesive sediment of class12,12n8 layer", + '8M13':"mass of cohesive sediment of class13,13n8 layer", + '8M14':"mass of cohesive sediment of class14,14n8 layer", + '8M15':"mass of cohesive sediment of class15,15n8 layer", + '8M16':"mass of cohesive sediment of class16,16n8 layer", + '8M17':"mass of cohesive sediment of class17,17n8 layer", + '8M18':"mass of cohesive sediment of class18,18n8 layer", + '8M19':"mass of cohesive sediment of class19,19n8 layer", + '8M**':"mass of cohesive sediment of class**,**n8 layer", + '9M*':"mass of cohesive sediment of class*,*n9 layer", + '9M1':"mass of cohesive sediment of class1,1n9 layer", + '9M2':"mass of cohesive sediment of class2,2n9 layer", + '9M3':"mass of cohesive sediment of class3,3n9 layer", + '9M4':"mass of cohesive sediment of class4,4n9 layer", + '9M5':"mass of cohesive sediment of class5,5n9 layer", + '9M6':"mass of cohesive sediment of class6,6n9 layer", + '9M7':"mass of cohesive sediment of class7,7n9 layer", + '9M8':"mass of cohesive sediment of class8,8n9 layer", + '9M9':"mass of cohesive sediment of class9,9n9 layer", + '9M10':"mass of cohesive sediment of class10,10n9 layer", + '9M11':"mass of cohesive sediment of class11,11n9 layer", + '9M12':"mass of cohesive sediment of class12,12n9 layer", + '9M13':"mass of cohesive sediment of class13,13n9 layer", + '9M14':"mass of cohesive sediment of class14,14n9 layer", + '9M15':"mass of cohesive sediment of class15,15n9 layer", + '9M16':"mass of cohesive sediment of class16,16n9 layer", + '9M17':"mass of cohesive sediment of class17,17n9 layer", + '9M18':"mass of cohesive sediment of class18,18n9 layer", + '9M19':"mass of cohesive sediment of class19,19n9 layer", + '9M**':"mass of cohesive sediment of class**,**n9 layer", + '10M*':"mass of cohesive sediment of class*,*n10 layer", + '10M1':"mass of cohesive sediment of class1,1n10 layer", + '10M2':"mass of cohesive sediment of class2,2n10 layer", + '10M3':"mass of cohesive sediment of class3,3n10 layer", + '10M4':"mass of cohesive sediment of class4,4n10 layer", + '10M5':"mass of cohesive sediment of class5,5n10 layer", + '10M6':"mass of cohesive sediment of class6,6n10 layer", + '10M7':"mass of cohesive sediment of class7,7n10 layer", + '10M8':"mass of cohesive sediment of class8,8n10 layer", + '10M9':"mass of cohesive sediment of class9,9n10 layer", + '10M10':"mass of cohesive sediment of class10,10n10 layer", + '10M11':"mass of cohesive sediment of class11,11n10 layer", + '10M12':"mass of cohesive sediment of class12,12n10 layer", + '10M13':"mass of cohesive sediment of class13,13n10 layer", + '10M14':"mass of cohesive sediment of class14,14n10 layer", + '10M15':"mass of cohesive sediment of class15,15n10 layer", + '10M16':"mass of cohesive sediment of class16,16n10 layer", + '10M17':"mass of cohesive sediment of class17,17n10 layer", + '10M18':"mass of cohesive sediment of class18,18n10 layer", + '10M19':"mass of cohesive sediment of class19,19n10 layer", + '10M**':"mass of cohesive sediment of class**,**n10 layer", + '11M*':"mass of cohesive sediment of class*,*n11 layer", + '11M1':"mass of cohesive sediment of class1,1n11 layer", + '11M2':"mass of cohesive sediment of class2,2n11 layer", + '11M3':"mass of cohesive sediment of class3,3n11 layer", + '11M4':"mass of cohesive sediment of class4,4n11 layer", + '11M5':"mass of cohesive sediment of class5,5n11 layer", + '11M6':"mass of cohesive sediment of class6,6n11 layer", + '11M7':"mass of cohesive sediment of class7,7n11 layer", + '11M8':"mass of cohesive sediment of class8,8n11 layer", + '11M9':"mass of cohesive sediment of class9,9n11 layer", + '11M10':"mass of cohesive sediment of class10,10n11 layer", + '11M11':"mass of cohesive sediment of class11,11n11 layer", + '11M12':"mass of cohesive sediment of class12,12n11 layer", + '11M13':"mass of cohesive sediment of class13,13n11 layer", + '11M14':"mass of cohesive sediment of class14,14n11 layer", + '11M15':"mass of cohesive sediment of class15,15n11 layer", + '11M16':"mass of cohesive sediment of class16,16n11 layer", + '11M17':"mass of cohesive sediment of class17,17n11 layer", + '11M18':"mass of cohesive sediment of class18,18n11 layer", + '11M19':"mass of cohesive sediment of class19,19n11 layer", + '11M**':"mass of cohesive sediment of class**,**n11 layer", + '12M*':"mass of cohesive sediment of class*,*n12 layer", + '12M1':"mass of cohesive sediment of class1,1n12 layer", + '12M2':"mass of cohesive sediment of class2,2n12 layer", + '12M3':"mass of cohesive sediment of class3,3n12 layer", + '12M4':"mass of cohesive sediment of class4,4n12 layer", + '12M5':"mass of cohesive sediment of class5,5n12 layer", + '12M6':"mass of cohesive sediment of class6,6n12 layer", + '12M7':"mass of cohesive sediment of class7,7n12 layer", + '12M8':"mass of cohesive sediment of class8,8n12 layer", + '12M9':"mass of cohesive sediment of class9,9n12 layer", + '12M10':"mass of cohesive sediment of class10,10n12 layer", + '12M11':"mass of cohesive sediment of class11,11n12 layer", + '12M12':"mass of cohesive sediment of class12,12n12 layer", + '12M13':"mass of cohesive sediment of class13,13n12 layer", + '12M14':"mass of cohesive sediment of class14,14n12 layer", + '12M15':"mass of cohesive sediment of class15,15n12 layer", + '12M16':"mass of cohesive sediment of class16,16n12 layer", + '12M17':"mass of cohesive sediment of class17,17n12 layer", + '12M18':"mass of cohesive sediment of class18,18n12 layer", + '12M19':"mass of cohesive sediment of class19,19n12 layer", + '12M**':"mass of cohesive sediment of class**,**n12 layer", + '13M*':"mass of cohesive sediment of class*,*n13 layer", + '13M1':"mass of cohesive sediment of class1,1n13 layer", + '13M2':"mass of cohesive sediment of class2,2n13 layer", + '13M3':"mass of cohesive sediment of class3,3n13 layer", + '13M4':"mass of cohesive sediment of class4,4n13 layer", + '13M5':"mass of cohesive sediment of class5,5n13 layer", + '13M6':"mass of cohesive sediment of class6,6n13 layer", + '13M7':"mass of cohesive sediment of class7,7n13 layer", + '13M8':"mass of cohesive sediment of class8,8n13 layer", + '13M9':"mass of cohesive sediment of class9,9n13 layer", + '13M10':"mass of cohesive sediment of class10,10n13 layer", + '13M11':"mass of cohesive sediment of class11,11n13 layer", + '13M12':"mass of cohesive sediment of class12,12n13 layer", + '13M13':"mass of cohesive sediment of class13,13n13 layer", + '13M14':"mass of cohesive sediment of class14,14n13 layer", + '13M15':"mass of cohesive sediment of class15,15n13 layer", + '13M16':"mass of cohesive sediment of class16,16n13 layer", + '13M17':"mass of cohesive sediment of class17,17n13 layer", + '13M18':"mass of cohesive sediment of class18,18n13 layer", + '13M19':"mass of cohesive sediment of class19,19n13 layer", + '13M**':"mass of cohesive sediment of class**,**n13 layer", + '14M*':"mass of cohesive sediment of class*,*n14 layer", + '14M1':"mass of cohesive sediment of class1,1n14 layer", + '14M2':"mass of cohesive sediment of class2,2n14 layer", + '14M3':"mass of cohesive sediment of class3,3n14 layer", + '14M4':"mass of cohesive sediment of class4,4n14 layer", + '14M5':"mass of cohesive sediment of class5,5n14 layer", + '14M6':"mass of cohesive sediment of class6,6n14 layer", + '14M7':"mass of cohesive sediment of class7,7n14 layer", + '14M8':"mass of cohesive sediment of class8,8n14 layer", + '14M9':"mass of cohesive sediment of class9,9n14 layer", + '14M10':"mass of cohesive sediment of class10,10n14 layer", + '14M11':"mass of cohesive sediment of class11,11n14 layer", + '14M12':"mass of cohesive sediment of class12,12n14 layer", + '14M13':"mass of cohesive sediment of class13,13n14 layer", + '14M14':"mass of cohesive sediment of class14,14n14 layer", + '14M15':"mass of cohesive sediment of class15,15n14 layer", + '14M16':"mass of cohesive sediment of class16,16n14 layer", + '14M17':"mass of cohesive sediment of class17,17n14 layer", + '14M18':"mass of cohesive sediment of class18,18n14 layer", + '14M19':"mass of cohesive sediment of class19,19n14 layer", + '14M**':"mass of cohesive sediment of class**,**n14 layer", + '15M*':"mass of cohesive sediment of class*,*n15 layer", + '15M1':"mass of cohesive sediment of class1,1n15 layer", + '15M2':"mass of cohesive sediment of class2,2n15 layer", + '15M3':"mass of cohesive sediment of class3,3n15 layer", + '15M4':"mass of cohesive sediment of class4,4n15 layer", + '15M5':"mass of cohesive sediment of class5,5n15 layer", + '15M6':"mass of cohesive sediment of class6,6n15 layer", + '15M7':"mass of cohesive sediment of class7,7n15 layer", + '15M8':"mass of cohesive sediment of class8,8n15 layer", + '15M9':"mass of cohesive sediment of class9,9n15 layer", + '15M10':"mass of cohesive sediment of class10,10n15 layer", + '15M11':"mass of cohesive sediment of class11,11n15 layer", + '15M12':"mass of cohesive sediment of class12,12n15 layer", + '15M13':"mass of cohesive sediment of class13,13n15 layer", + '15M14':"mass of cohesive sediment of class14,14n15 layer", + '15M15':"mass of cohesive sediment of class15,15n15 layer", + '15M16':"mass of cohesive sediment of class16,16n15 layer", + '15M17':"mass of cohesive sediment of class17,17n15 layer", + '15M18':"mass of cohesive sediment of class18,18n15 layer", + '15M19':"mass of cohesive sediment of class19,19n15 layer", + '15M**':"mass of cohesive sediment of class**,**n15 layer", + '16M*':"mass of cohesive sediment of class*,*n16 layer", + '16M1':"mass of cohesive sediment of class1,1n16 layer", + '16M2':"mass of cohesive sediment of class2,2n16 layer", + '16M3':"mass of cohesive sediment of class3,3n16 layer", + '16M4':"mass of cohesive sediment of class4,4n16 layer", + '16M5':"mass of cohesive sediment of class5,5n16 layer", + '16M6':"mass of cohesive sediment of class6,6n16 layer", + '16M7':"mass of cohesive sediment of class7,7n16 layer", + '16M8':"mass of cohesive sediment of class8,8n16 layer", + '16M9':"mass of cohesive sediment of class9,9n16 layer", + '16M10':"mass of cohesive sediment of class10,10n16 layer", + '16M11':"mass of cohesive sediment of class11,11n16 layer", + '16M12':"mass of cohesive sediment of class12,12n16 layer", + '16M13':"mass of cohesive sediment of class13,13n16 layer", + '16M14':"mass of cohesive sediment of class14,14n16 layer", + '16M15':"mass of cohesive sediment of class15,15n16 layer", + '16M16':"mass of cohesive sediment of class16,16n16 layer", + '16M17':"mass of cohesive sediment of class17,17n16 layer", + '16M18':"mass of cohesive sediment of class18,18n16 layer", + '16M19':"mass of cohesive sediment of class19,19n16 layer", + '16M**':"mass of cohesive sediment of class**,**n16 layer", + '17M*':"mass of cohesive sediment of class*,*n17 layer", + '17M1':"mass of cohesive sediment of class1,1n17 layer", + '17M2':"mass of cohesive sediment of class2,2n17 layer", + '17M3':"mass of cohesive sediment of class3,3n17 layer", + '17M4':"mass of cohesive sediment of class4,4n17 layer", + '17M5':"mass of cohesive sediment of class5,5n17 layer", + '17M6':"mass of cohesive sediment of class6,6n17 layer", + '17M7':"mass of cohesive sediment of class7,7n17 layer", + '17M8':"mass of cohesive sediment of class8,8n17 layer", + '17M9':"mass of cohesive sediment of class9,9n17 layer", + '17M10':"mass of cohesive sediment of class10,10n17 layer", + '17M11':"mass of cohesive sediment of class11,11n17 layer", + '17M12':"mass of cohesive sediment of class12,12n17 layer", + '17M13':"mass of cohesive sediment of class13,13n17 layer", + '17M14':"mass of cohesive sediment of class14,14n17 layer", + '17M15':"mass of cohesive sediment of class15,15n17 layer", + '17M16':"mass of cohesive sediment of class16,16n17 layer", + '17M17':"mass of cohesive sediment of class17,17n17 layer", + '17M18':"mass of cohesive sediment of class18,18n17 layer", + '17M19':"mass of cohesive sediment of class19,19n17 layer", + '17M**':"mass of cohesive sediment of class**,**n17 layer", + '18M*':"mass of cohesive sediment of class*,*n18 layer", + '18M1':"mass of cohesive sediment of class1,1n18 layer", + '18M2':"mass of cohesive sediment of class2,2n18 layer", + '18M3':"mass of cohesive sediment of class3,3n18 layer", + '18M4':"mass of cohesive sediment of class4,4n18 layer", + '18M5':"mass of cohesive sediment of class5,5n18 layer", + '18M6':"mass of cohesive sediment of class6,6n18 layer", + '18M7':"mass of cohesive sediment of class7,7n18 layer", + '18M8':"mass of cohesive sediment of class8,8n18 layer", + '18M9':"mass of cohesive sediment of class9,9n18 layer", + '18M10':"mass of cohesive sediment of class10,10n18 layer", + '18M11':"mass of cohesive sediment of class11,11n18 layer", + '18M12':"mass of cohesive sediment of class12,12n18 layer", + '18M13':"mass of cohesive sediment of class13,13n18 layer", + '18M14':"mass of cohesive sediment of class14,14n18 layer", + '18M15':"mass of cohesive sediment of class15,15n18 layer", + '18M16':"mass of cohesive sediment of class16,16n18 layer", + '18M17':"mass of cohesive sediment of class17,17n18 layer", + '18M18':"mass of cohesive sediment of class18,18n18 layer", + '18M19':"mass of cohesive sediment of class19,19n18 layer", + '18M**':"mass of cohesive sediment of class**,**n18 layer", + '19M*':"mass of cohesive sediment of class*,*n19 layer", + '19M1':"mass of cohesive sediment of class1,1n19 layer", + '19M2':"mass of cohesive sediment of class2,2n19 layer", + '19M3':"mass of cohesive sediment of class3,3n19 layer", + '19M4':"mass of cohesive sediment of class4,4n19 layer", + '19M5':"mass of cohesive sediment of class5,5n19 layer", + '19M6':"mass of cohesive sediment of class6,6n19 layer", + '19M7':"mass of cohesive sediment of class7,7n19 layer", + '19M8':"mass of cohesive sediment of class8,8n19 layer", + '19M9':"mass of cohesive sediment of class9,9n19 layer", + '19M10':"mass of cohesive sediment of class10,10n19 layer", + '19M11':"mass of cohesive sediment of class11,11n19 layer", + '19M12':"mass of cohesive sediment of class12,12n19 layer", + '19M13':"mass of cohesive sediment of class13,13n19 layer", + '19M14':"mass of cohesive sediment of class14,14n19 layer", + '19M15':"mass of cohesive sediment of class15,15n19 layer", + '19M16':"mass of cohesive sediment of class16,16n19 layer", + '19M17':"mass of cohesive sediment of class17,17n19 layer", + '19M18':"mass of cohesive sediment of class18,18n19 layer", + '19M19':"mass of cohesive sediment of class19,19n19 layer", + '19M**':"mass of cohesive sediment of class**,**n19 layer", + '**M*':"mass of cohesive sediment of class*,*n** layer", + '**M1':"mass of cohesive sediment of class1,1n** layer", + '**M2':"mass of cohesive sediment of class2,2n** layer", + '**M3':"mass of cohesive sediment of class3,3n** layer", + '**M4':"mass of cohesive sediment of class4,4n** layer", + '**M5':"mass of cohesive sediment of class5,5n** layer", + '**M6':"mass of cohesive sediment of class6,6n** layer", + '**M7':"mass of cohesive sediment of class7,7n** layer", + '**M8':"mass of cohesive sediment of class8,8n** layer", + '**M9':"mass of cohesive sediment of class9,9n** layer", + '**M10':"mass of cohesive sediment of class10,10n** layer", + '**M11':"mass of cohesive sediment of class11,11n** layer", + '**M12':"mass of cohesive sediment of class12,12n** layer", + '**M13':"mass of cohesive sediment of class13,13n** layer", + '**M14':"mass of cohesive sediment of class14,14n** layer", + '**M15':"mass of cohesive sediment of class15,15n** layer", + '**M16':"mass of cohesive sediment of class16,16n** layer", + '**M17':"mass of cohesive sediment of class17,17n** layer", + '**M18':"mass of cohesive sediment of class18,18n** layer", + '**M19':"mass of cohesive sediment of class19,19n** layer", + '**M**':"mass of cohesive sediment of class**,**n** layer", 'ZRL':"reference level for Nestor", }, 'VERTICAL_PROFILES_OF_SUSPENDED_SEDIMENTS' : { @@ -101,7 +7132,7 @@ TelemacdicoEn = { 3:"EXPLICIT LEO POSTMA", 4:"EXPLICIT + MURD SCHEME N", 5:"EXPLICIT + MURD SCHEME PSI", - 13:"N-SCHEME FOR TIDAL FLATS", + 13:"N-SCHEME FOR TIDAL FLATS LP", 14:"N-SCHEME FOR TIDAL FLATS", 15:"ERIA SCHEME - ONLY IN 2D", }, @@ -156,12 +7187,451 @@ TelemacdicoFr = { 'KS':"coefficient de frottement (m)", 'TOB':"frottement moyen (N/m2)", 'THETAW':"angle entre la houle et l axe Oy (deg)", - '1Ai':"fraction de sediment de la classe i dans la premiere couche", - '2Ai':"fraction de sediment de la classe i dans la deuxieme couche", + 'kAi':"fraction de sediment non cohesif de la classe i, couche k", 'QSi':"debit solide pour la classe i", 'CSi':"concentration pour la classe i", - '*ES':"thicknes of bed layer i", - '*CONC':"concentration of bed layer i ", + 'kES':"thicknes of bed layer k", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", 'A':"variable supplementaire A", 'G':"variable supplementaire G", 'L':"variable supplementaire L", @@ -189,34 +7659,466 @@ TelemacdicoFr = { 'MU':"Coefficient de correction pour frottement de peau", 'D50':"Diametre moyen du sediment", 'UWB':"wave orbital velocity (m/s)", - '1Ai':"fraction de sediment non cohesif de la classe i, 1ere couche", - '2Ai':"fraction de sediment non cohesif de la classe i, 2eme couche", 'kAi':"fraction de sediment non cohesif de la classe i, couche k", 'QSi':"debit solide pour la classe i", 'CSi':"concentration massique pour la classe i", - 'C2DSi':"concentration massique pour la classe i pour les sortie 2D (que po, - 'SVX':"viscosites pour les sediments suivant l axe des x (m2/s) - 3D", - 'SVY':"viscosites pour les sediments suivant l axe des y (m2/s) - 3D", - 'SVZ':"viscosites pour les sediments suivant l axe des z (m2/s) - 3D", + 'C2DSi':"concentration massique pour la classe i pour les sortie 2D", + 'SVXi':"viscosites pour le sediment i suivant l axe des x (m2/s) - 3D", + 'SVYi':"viscosites pour le sediment i suivant l axe des y (m2/s) - 3D", + 'SVZi':"viscosites pour le sediment i suivant l axe des z (m2/s) - 3D", 'QSBL':"taux de transport par charriage", 'QSBLX':"taux de transport par charriage selon l axe des x", 'QSBLY':"taux de transport par charriage selon l axe des y", 'QSBLi':"taux de transport par charriage pour la classe i", 'kES':"epaisseur de la couche k", - 'kCONC':"concentration of bed layer k", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '*CONC':"concentration of bed layer*", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '1CONC':"concentration of bed layer1", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '2CONC':"concentration of bed layer2", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '3CONC':"concentration of bed layer3", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '4CONC':"concentration of bed layer4", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '5CONC':"concentration of bed layer5", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '6CONC':"concentration of bed layer6", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '7CONC':"concentration of bed layer7", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '8CONC':"concentration of bed layer8", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '9CONC':"concentration of bed layer9", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '10CONC':"concentration of bed layer10", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '11CONC':"concentration of bed layer11", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '12CONC':"concentration of bed layer12", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '13CONC':"concentration of bed layer13", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '14CONC':"concentration of bed layer14", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '15CONC':"concentration of bed layer15", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '16CONC':"concentration of bed layer16", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '17CONC':"concentration of bed layer17", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '18CONC':"concentration of bed layer18", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '19CONC':"concentration of bed layer19", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", + '**CONC':"concentration of bed layer**", 'A':"variable supplementaire A", 'G':"variable supplementaire G", 'L':"variable supplementaire L", 'O':"variable supplementaire O", - '1Ri':"fraction de sediment cohesif de la classe i, 1ere couche", - '2Ri':"fraction de sediment cohesif de la classe i, 2eme couche", 'kRi':"fraction de sediment cohesif of classe i, couche k", 'kXKV':"porosite de la couche k", - '1Si':"masse de sediment non cohesif de la classe i, 1ere couche", - '2Si':"masse de sediment non cohesif de la classe i, 2eme couche", 'kSi':"masse de sediment non cohesif of classe i, couche k", - '1Mi':"masse de sediment cohesif de la classe i, 1ere couche", - '2Mi':"masse de sediment cohesif de la classe i, 2eme couche", 'kMi':"masse de sediment cohesif of classe i, couche k", 'ZRL':"reference level for Nestor", }, @@ -234,7 +8136,7 @@ TelemacdicoFr = { 3:"EXPLICITE LEO POSTMA", 4:"EXPLICITE + MURD SCHEMA N", 5:"EXPLICITE + MURD SCHEMA PSI", - 13:"SCHEMA N POUR BANCS DECOUVRANTS", + 13:"SCHEMA N POUR BANCS DECOUVRANTS LP", 14:"SCHEMA N POUR BANCS DECOUVRANTS", 15:"SCHEMA ERIA - UNIQUEMENT 2D", }, diff --git a/Telemac/khione_cata_auto.py b/Telemac/khione_cata_auto.py new file mode 100644 index 00000000..83ec706d --- /dev/null +++ b/Telemac/khione_cata_auto.py @@ -0,0 +1,1313 @@ + +# -*- coding: latin-1 -*- + +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 + +class grma(GEOM): + pass + +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 = 'KHIONE', + execmodul = None, + ) +# ======================================================================= +# Catalog entry for the MAP function : c_pre_interfaceBody_mesh +# ======================================================================= + +VERSION_CATALOGUE="TRUNK_20210323" +# ----------------------------------------------------------------------- +COMPUTATION_ENVIRONMENT = PROC(nom= "COMPUTATION_ENVIRONMENT",op = None, +# ----------------------------------------------------------------------- +# ----------------------------------- + INPUT = FACT(statut='f', +# ----------------------------------- +# ----------------------------------- + DATA = FACT(statut='f', +# ----------------------------------- +# ----------------------------------- + STEERING_FILE = SIMP(statut ='f', +# ----------------------------------- + typ = ('Fichier','All Files (*)'), + defaut = '', + fr = """Nom du fichier contenant les parametres du calcul +des glaces a realiser. Donne par l''utilisateur.""", + ang = """Name of the file containing parameters of the ice +computation. Provided by the user.""", + ), +# ----------------------------------- + FORTRAN_FILE = SIMP(statut ='f', +# ----------------------------------- + typ = ('Fichier','All Files (*)'), max='**', + defaut = '', + fr = """Nom du fichier ou repertoire FORTRAN a soumettre, +contenant les sous-programmes specifiques au modele.""", + ang = """Name of the FORTRAN file or directory to be submitted, +including specific subroutines of the model.""", + ), +# ----------------------------------- + BOUNDARY_CONDITIONS_FILE = SIMP(statut ='f', +# ----------------------------------- + typ = ('Fichier','All Files (*)'), max='**', + 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 +colours that are assigned to the boundary nodes.""", + ), +# ----------------------------------- + GEOMETRY_FILE = SIMP(statut ='f', +# ----------------------------------- + typ = ('Fichier','All Files (*)'), max='**', + defaut = '', + fr = """Fichier de geometrie, identique a celui de \telemac{2D}.""", + ang = """Geometry file identical to the \telemac{2D} one.""", + ), +# ----------------------------------- + GEOMETRY_FILE_FORMAT = SIMP(statut ='f', +# ----------------------------------- + typ = 'TXM', + into = ['SERAFIN','SERAFIND','MED'], + defaut = 'SERAFIN', + fr = """Format du \telkey{FICHIER DE GEOMETRIE}. +Les valeurs possibles sont : +\begin{itemize} +\item SERAFIN : format standard simple precision pour \tel ; +\item SERAFIND: format standard double precision pour \tel ; +\item MED : format MED double precision base sur HDF5. +\end{itemize}""", + ang = """Format of the \telkey{GEOMETRY FILE}. +Possible choices are: +\begin{itemize} +\item SERAFIN : classical single precision format in \tel, +\item SERAFIND: classical double precision format in \tel, +\item MED : MED double precision format based on HDF5. +\end{itemize}""", + ), +# ----------------------------------- + REFERENCE_FILE = SIMP(statut ='f', +# ----------------------------------- + typ = ('Fichier','All Files (*)'), max='**', + defaut = '', + fr = """Nom du fichier de resultats de reference pour la validation. +Si \telkey{VALIDATION} = OUI, les resultats du calcul vont etre +compares aux valeurs contenues dans ce fichier. +La comparaison est effectuee par le sous-programme \telfile{VALIDA}.""", + ang = """Name of the binary-coded result file used to validate the compuation. +If \telkey{VALIDATION} = YES, the results of the computation will be +compared with the values of this file. +The comparison is done by the subroutine \telfile{BIEF\_VALIDA}.""", + ), +# ----------------------------------- + REFERENCE_FILE_FORMAT = SIMP(statut ='o', +# ----------------------------------- + typ = 'TXM', + into = ['SERAFIN','SERAFIND','MED'], + defaut = 'SERAFIN', + fr = """Format du \telkey{FICHIER DE REFERENCE}. +Les valeurs possibles sont : +\begin{itemize} +\item SERAFIN : format standard simple precision pour \tel ; +\item SERAFIND: format standard double precision pour \tel ; +\item MED : format MED double precision base sur HDF5. +\end{itemize}""", + ang = """Format of the \telkey{REFERENCE FILE}. +Possible choices are: +\begin{itemize} +\item SERAFIN : classical single precision format in \tel, +\item SERAFIND: classical double precision format in \tel, +\item MED : MED double precision format based on HDF5. +\end{itemize}""", + ), +# ----------------------------------- + VALIDATION = SIMP(statut ='f', +# ----------------------------------- + typ = bool, + defaut = False, + fr = """Option utilisee principalement pour le dossier de validation. +Si ce mot-cle vaut OUI, les resultats du calcul vont alors etre +compares aux valeurs du \telkey{FICHIER DE REFERENCE}. +Le \telkey{FICHIER DE REFERENCE} est alors considere comme une +reference a laquelle on va comparer le calcul. La comparaison est +effectuee par le sous-programme \telfile{BIEF\_VALIDA} +qui peut etre une comparaison avec une solution exacte par exemple.""", + ang = """This option is primarily used for the validation documents. +If this keyword is equal to YES, the \telkey{REFERENCE FILE} +is then considered as a reference which the computation is +going to be compared with. +The \telkey{REFERENCE FILE} is then considered as a reference +which the computation is going to be compared with. +The comparison is done by the subroutine \telfile{BIEF\_VALIDA}, +which can be modified so as to include, for example, +a comparison with an exact solution.""", + ), + ), + ), +# ----------------------------------- + GLOBAL = FACT(statut='f', +# ----------------------------------- +# ----------------------------------- + TITLE = SIMP(statut ='f', +# ----------------------------------- + typ = 'TXM', + defaut = '', + fr = """Titre du cas etudie.""", + ang = """Title of the case being considered.""", + ), +# ----------------------------------- + PARALLEL_PROCESSORS = SIMP(statut ='f', +# ----------------------------------- + typ = 'I', + defaut = 0, + fr = """Nombre de processeurs pour la decomposition en parallele: +\begin{itemize} +\item 0 : 1 machine, compilation sans bibliotheque de parallelisme ; +\item 1 : 1 machine, compilation avec bibliotheque de parallelisme ; +\item 2 : 2 processeurs ou machines en parallele etc... +\end{itemize}""", + ang = """Number of processors for domain partition. +\begin{itemize} +\item 0: 1 machine, compiling without parallel library, +\item 1: 1 machine, compiling with a parallel library, +\item 2: 2 processors or machines in parallel etc... +\end{itemize}""", + ), + ), +# ----------------------------------- + OUTPUT = FACT(statut='f', +# ----------------------------------- +# ----------------------------------- + RESULTS = FACT(statut='f', +# ----------------------------------- +# ----------------------------------- + RESULTS_FILE = SIMP(statut ='f', +# ----------------------------------- + typ = ('Fichier','All Files (*)','Sauvegarde'), max='**', + fr = """Nom du fichier dans lequel seront ecrits les resultats du +calcul avec la periodicite donnee par le mot cle \telkey{PERIODE DE +SORTIES DES GLACES}.""", + ang = """Name of the file into which the computation results +are written with a periodicity given by the keyword +\telkey{ICE PRINTOUT PERIOD}.""", + ), +# ----------------------------------- + RESULTS_FILE_FORMAT = SIMP(statut ='f', +# ----------------------------------- + typ = 'TXM', + into = ['SERAFIN','SERAFIND','MED'], + defaut = 'SERAFIN', + fr = """Format du \telkey{FICHIER DES RESULTATS}. +Les valeurs possibles sont : +\begin{itemize} +\item SERAFIN : format standard simple precision pour \tel ; +\item SERAFIND: format standard double precision pour \tel ; +\item MED : format MED double precision base sur HDF5. +\end{itemize}""", + ang = """Format of the \telkey{RESULTS FILE}. Possible choices are: +\begin{itemize} +\item SERAFIN : classical single precision format in \tel, +\item SERAFIND: classical double precision format in \tel, +\item MED : MED double precision format based on HDF5. +\end{itemize}""", + ), +# ----------------------------------- + VARIABLES_FOR_GRAPHIC_PRINTOUTS = SIMP(statut ='f', +# ----------------------------------- + typ = 'TXM', max='**', + into = ["SOLRAD CLEAR SKY","SOLRAD CLOUDY","NET SOLRAD","EFFECTIVE SOLRAD","EVAPO HEAT FLUX","CONDUC HEAT FLUX","PRECIP HEAT FLUX","FRAZIL THETA0","FRAZIL THETA1","REENTRAINMENT","SETTLING VEL.","SOLID ICE CONC.","SOLID ICE THICK.","FRAZIL THICKNESS","UNDER ICE THICK.","EQUIV. SURFACE","TOP ICE COVER","BOTTOM ICE COVERM","TOTAL ICE THICK.M ","CARACTERISTIQUES","TOTAL NUMBER OF PARTICLES","TOTAL CONCENTRATION OF FRAZIL","CONCENTRATION OF FRAZIL FOR CLASS*","CONCENTRATION OF FRAZIL FOR CLASS1","CONCENTRATION OF FRAZIL FOR CLASS2","CONCENTRATION OF FRAZIL FOR CLASS3","CONCENTRATION OF FRAZIL FOR CLASS4","CONCENTRATION OF FRAZIL FOR CLASS5","CONCENTRATION OF FRAZIL FOR CLASS6","CONCENTRATION OF FRAZIL FOR CLASS7","CONCENTRATION OF FRAZIL FOR CLASS8","CONCENTRATION OF FRAZIL FOR CLASS9","CONCENTRATION OF FRAZIL FOR CLASS10","CONCENTRATION OF FRAZIL FOR CLASS11","CONCENTRATION OF FRAZIL FOR CLASS12","CONCENTRATION OF FRAZIL FOR CLASS13","CONCENTRATION OF FRAZIL FOR CLASS14","CONCENTRATION OF FRAZIL FOR CLASS15","CONCENTRATION OF FRAZIL FOR CLASS16","CONCENTRATION OF FRAZIL FOR CLASS17","CONCENTRATION OF FRAZIL FOR CLASS18","CONCENTRATION OF FRAZIL FOR CLASS19","CONCENTRATION OF FRAZIL FOR CLASS**","CONCENTRATION OF FRAZIL FOR CLASS*","CONCENTRATION OF FRAZIL FOR CLASS1","CONCENTRATION OF FRAZIL FOR CLASS2","CONCENTRATION OF FRAZIL FOR CLASS3","CONCENTRATION OF FRAZIL FOR CLASS4","CONCENTRATION OF FRAZIL FOR CLASS5","CONCENTRATION OF FRAZIL FOR CLASS6","CONCENTRATION OF FRAZIL FOR CLASS7","CONCENTRATION OF FRAZIL FOR CLASS8","CONCENTRATION OF FRAZIL FOR CLASS9","CONCENTRATION OF FRAZIL FOR CLASS10","CONCENTRATION OF FRAZIL FOR CLASS11","CONCENTRATION OF FRAZIL FOR CLASS12","CONCENTRATION OF FRAZIL FOR CLASS13","CONCENTRATION OF FRAZIL FOR CLASS14","CONCENTRATION OF FRAZIL FOR CLASS15","CONCENTRATION OF FRAZIL FOR CLASS16","CONCENTRATION OF FRAZIL FOR CLASS17","CONCENTRATION OF FRAZIL FOR CLASS18","CONCENTRATION OF FRAZIL FOR CLASS19","CONCENTRATION OF FRAZIL FOR CLASS**","CONCENTRATION OF FRAZIL FOR CLASS*","CONCENTRATION OF FRAZIL FOR CLASS1","CONCENTRATION OF FRAZIL FOR CLASS2","CONCENTRATION OF FRAZIL FOR CLASS3","CONCENTRATION OF FRAZIL FOR CLASS4","CONCENTRATION OF FRAZIL FOR CLASS5","CONCENTRATION OF FRAZIL FOR CLASS6","CONCENTRATION OF FRAZIL FOR CLASS7","CONCENTRATION OF FRAZIL FOR CLASS8","CONCENTRATION OF FRAZIL FOR CLASS9","CONCENTRATION OF FRAZIL FOR CLASS10","CONCENTRATION OF FRAZIL FOR CLASS11","CONCENTRATION OF FRAZIL FOR CLASS12","CONCENTRATION OF FRAZIL FOR CLASS13","CONCENTRATION OF FRAZIL FOR CLASS14","CONCENTRATION OF FRAZIL FOR CLASS15","CONCENTRATION OF FRAZIL FOR CLASS16","CONCENTRATION OF FRAZIL FOR CLASS17","CONCENTRATION OF FRAZIL FOR CLASS18","CONCENTRATION OF FRAZIL FOR CLASS19","CONCENTRATION OF FRAZIL FOR CLASS**","CONCENTRATION OF FRAZIL FOR CLASS*","CONCENTRATION OF FRAZIL FOR CLASS1","CONCENTRATION OF FRAZIL FOR CLASS2","CONCENTRATION OF FRAZIL FOR CLASS3","CONCENTRATION OF FRAZIL FOR CLASS4","CONCENTRATION OF FRAZIL FOR CLASS5","CONCENTRATION OF FRAZIL FOR CLASS6","CONCENTRATION OF FRAZIL FOR CLASS7","CONCENTRATION OF FRAZIL FOR CLASS8","CONCENTRATION OF FRAZIL FOR CLASS9","CONCENTRATION OF FRAZIL FOR CLASS10","CONCENTRATION OF FRAZIL FOR CLASS11","CONCENTRATION OF FRAZIL FOR CLASS12","CONCENTRATION OF FRAZIL FOR CLASS13","CONCENTRATION OF FRAZIL FOR CLASS14","CONCENTRATION OF FRAZIL FOR CLASS15","CONCENTRATION OF FRAZIL FOR CLASS16","CONCENTRATION OF FRAZIL FOR CLASS17","CONCENTRATION OF FRAZIL FOR CLASS18","CONCENTRATION OF FRAZIL FOR CLASS19","CONCENTRATION OF FRAZIL FOR CLASS**","CONCENTRATION OF FRAZIL FOR CLASS*","CONCENTRATION OF FRAZIL FOR CLASS1","CONCENTRATION OF FRAZIL FOR CLASS2","CONCENTRATION OF FRAZIL FOR CLASS3","CONCENTRATION OF FRAZIL FOR CLASS4","CONCENTRATION OF FRAZIL FOR CLASS5","CONCENTRATION OF FRAZIL FOR CLASS6","CONCENTRATION OF FRAZIL FOR CLASS7","CONCENTRATION OF FRAZIL FOR CLASS8","CONCENTRATION OF FRAZIL FOR CLASS9","CONCENTRATION OF FRAZIL FOR CLASS10","CONCENTRATION OF FRAZIL FOR CLASS11","CONCENTRATION OF FRAZIL FOR CLASS12","CONCENTRATION OF FRAZIL FOR CLASS13","CONCENTRATION OF FRAZIL FOR CLASS14","CONCENTRATION OF FRAZIL FOR CLASS15","CONCENTRATION OF FRAZIL FOR CLASS16","CONCENTRATION OF FRAZIL FOR CLASS17","CONCENTRATION OF FRAZIL FOR CLASS18","CONCENTRATION OF FRAZIL FOR CLASS19","CONCENTRATION OF FRAZIL FOR CLASS**","CONCENTRATION OF FRAZIL FOR CLASS*","CONCENTRATION OF FRAZIL FOR CLASS1","CONCENTRATION OF FRAZIL FOR CLASS2","CONCENTRATION OF FRAZIL FOR CLASS3","CONCENTRATION OF FRAZIL FOR CLASS4","CONCENTRATION OF FRAZIL FOR CLASS5","CONCENTRATION OF FRAZIL FOR CLASS6","CONCENTRATION OF FRAZIL FOR CLASS7","CONCENTRATION OF FRAZIL FOR CLASS8","CONCENTRATION OF FRAZIL FOR CLASS9","CONCENTRATION OF FRAZIL FOR CLASS10","CONCENTRATION OF FRAZIL FOR CLASS11","CONCENTRATION OF FRAZIL FOR CLASS12","CONCENTRATION OF FRAZIL FOR CLASS13","CONCENTRATION OF FRAZIL FOR CLASS14","CONCENTRATION OF FRAZIL FOR CLASS15","CONCENTRATION OF FRAZIL FOR CLASS16","CONCENTRATION OF FRAZIL FOR CLASS17","CONCENTRATION OF FRAZIL FOR CLASS18","CONCENTRATION OF FRAZIL FOR CLASS19","CONCENTRATION OF FRAZIL FOR CLASS**","CONCENTRATION OF FRAZIL FOR CLASS*","CONCENTRATION OF FRAZIL FOR CLASS1","CONCENTRATION OF FRAZIL FOR CLASS2","CONCENTRATION OF FRAZIL FOR CLASS3","CONCENTRATION OF FRAZIL FOR CLASS4","CONCENTRATION OF FRAZIL FOR CLASS5","CONCENTRATION OF FRAZIL FOR CLASS6","CONCENTRATION OF FRAZIL FOR CLASS7","CONCENTRATION OF FRAZIL FOR CLASS8","CONCENTRATION OF FRAZIL FOR CLASS9","CONCENTRATION OF FRAZIL FOR CLASS10","CONCENTRATION OF FRAZIL FOR CLASS11","CONCENTRATION OF FRAZIL FOR CLASS12","CONCENTRATION OF FRAZIL FOR CLASS13","CONCENTRATION OF FRAZIL FOR CLASS14","CONCENTRATION OF FRAZIL FOR CLASS15","CONCENTRATION OF FRAZIL FOR CLASS16","CONCENTRATION OF FRAZIL FOR CLASS17","CONCENTRATION OF FRAZIL FOR CLASS18","CONCENTRATION OF FRAZIL FOR CLASS19","CONCENTRATION OF FRAZIL FOR CLASS**","CONCENTRATION OF FRAZIL FOR CLASS*","CONCENTRATION OF FRAZIL FOR CLASS1","CONCENTRATION OF FRAZIL FOR CLASS2","CONCENTRATION OF FRAZIL FOR CLASS3","CONCENTRATION OF FRAZIL FOR CLASS4","CONCENTRATION OF FRAZIL FOR CLASS5","CONCENTRATION OF FRAZIL FOR CLASS6","CONCENTRATION OF FRAZIL FOR CLASS7","CONCENTRATION OF FRAZIL FOR CLASS8","CONCENTRATION OF FRAZIL FOR CLASS9","CONCENTRATION OF FRAZIL FOR CLASS10","CONCENTRATION OF FRAZIL FOR CLASS11","CONCENTRATION OF FRAZIL FOR CLASS12","CONCENTRATION OF FRAZIL FOR CLASS13","CONCENTRATION OF FRAZIL FOR CLASS14","CONCENTRATION OF FRAZIL FOR CLASS15","CONCENTRATION OF FRAZIL FOR CLASS16","CONCENTRATION OF FRAZIL FOR CLASS17","CONCENTRATION OF FRAZIL FOR CLASS18","CONCENTRATION OF FRAZIL FOR CLASS19","CONCENTRATION OF FRAZIL FOR CLASS**","CONCENTRATION OF FRAZIL FOR CLASS*","CONCENTRATION OF FRAZIL FOR CLASS1","CONCENTRATION OF FRAZIL FOR CLASS2","CONCENTRATION OF FRAZIL FOR CLASS3","CONCENTRATION OF FRAZIL FOR CLASS4","CONCENTRATION OF FRAZIL FOR CLASS5","CONCENTRATION OF FRAZIL FOR CLASS6","CONCENTRATION OF FRAZIL FOR CLASS7","CONCENTRATION OF FRAZIL FOR CLASS8","CONCENTRATION OF FRAZIL FOR CLASS9","CONCENTRATION OF FRAZIL FOR CLASS10","CONCENTRATION OF FRAZIL FOR CLASS11","CONCENTRATION OF FRAZIL FOR CLASS12","CONCENTRATION OF FRAZIL FOR CLASS13","CONCENTRATION OF FRAZIL FOR CLASS14","CONCENTRATION OF FRAZIL FOR CLASS15","CONCENTRATION OF FRAZIL FOR CLASS16","CONCENTRATION OF FRAZIL FOR CLASS17","CONCENTRATION OF FRAZIL FOR CLASS18","CONCENTRATION OF FRAZIL FOR CLASS19","CONCENTRATION OF FRAZIL FOR CLASS**","CONCENTRATION OF FRAZIL FOR CLASS*","CONCENTRATION OF FRAZIL FOR CLASS1","CONCENTRATION OF FRAZIL FOR CLASS2","CONCENTRATION OF FRAZIL FOR CLASS3","CONCENTRATION OF FRAZIL FOR CLASS4","CONCENTRATION OF FRAZIL FOR CLASS5","CONCENTRATION OF FRAZIL FOR CLASS6","CONCENTRATION OF FRAZIL FOR CLASS7","CONCENTRATION OF FRAZIL FOR CLASS8","CONCENTRATION OF FRAZIL FOR CLASS9","CONCENTRATION OF FRAZIL FOR CLASS10","CONCENTRATION OF FRAZIL FOR CLASS11","CONCENTRATION OF FRAZIL FOR CLASS12","CONCENTRATION OF FRAZIL FOR CLASS13","CONCENTRATION OF FRAZIL FOR CLASS14","CONCENTRATION OF FRAZIL FOR CLASS15","CONCENTRATION OF FRAZIL FOR CLASS16","CONCENTRATION OF FRAZIL FOR CLASS17","CONCENTRATION OF FRAZIL FOR CLASS18","CONCENTRATION OF FRAZIL FOR CLASS19","CONCENTRATION OF FRAZIL FOR CLASS**","CONCENTRATION OF FRAZIL FOR CLASS*","CONCENTRATION OF FRAZIL FOR CLASS1","CONCENTRATION OF FRAZIL FOR CLASS2","CONCENTRATION OF FRAZIL FOR CLASS3","CONCENTRATION OF FRAZIL FOR CLASS4","CONCENTRATION OF FRAZIL FOR CLASS5","CONCENTRATION OF FRAZIL FOR CLASS6","CONCENTRATION OF FRAZIL FOR CLASS7","CONCENTRATION OF FRAZIL FOR CLASS8","CONCENTRATION OF FRAZIL FOR CLASS9","CONCENTRATION OF FRAZIL FOR CLASS10","CONCENTRATION OF FRAZIL FOR CLASS11","CONCENTRATION OF FRAZIL FOR CLASS12","CONCENTRATION OF FRAZIL FOR CLASS13","CONCENTRATION OF FRAZIL FOR CLASS14","CONCENTRATION OF FRAZIL FOR CLASS15","CONCENTRATION OF FRAZIL FOR CLASS16","CONCENTRATION OF FRAZIL FOR CLASS17","CONCENTRATION OF FRAZIL FOR CLASS18","CONCENTRATION OF FRAZIL FOR CLASS19","CONCENTRATION OF FRAZIL FOR CLASS**","CONCENTRATION OF FRAZIL FOR CLASS*","CONCENTRATION OF FRAZIL FOR CLASS1","CONCENTRATION OF FRAZIL FOR CLASS2","CONCENTRATION OF FRAZIL FOR CLASS3","CONCENTRATION OF FRAZIL FOR CLASS4","CONCENTRATION OF FRAZIL FOR CLASS5","CONCENTRATION OF FRAZIL FOR CLASS6","CONCENTRATION OF FRAZIL FOR CLASS7","CONCENTRATION OF FRAZIL FOR CLASS8","CONCENTRATION OF FRAZIL FOR CLASS9","CONCENTRATION OF FRAZIL FOR CLASS10","CONCENTRATION OF FRAZIL FOR CLASS11","CONCENTRATION OF FRAZIL FOR CLASS12","CONCENTRATION OF FRAZIL FOR CLASS13","CONCENTRATION OF FRAZIL FOR CLASS14","CONCENTRATION OF FRAZIL FOR CLASS15","CONCENTRATION OF FRAZIL FOR CLASS16","CONCENTRATION OF FRAZIL FOR CLASS17","CONCENTRATION OF FRAZIL FOR CLASS18","CONCENTRATION OF FRAZIL FOR CLASS19","CONCENTRATION OF FRAZIL FOR CLASS**","CONCENTRATION OF FRAZIL FOR CLASS*","CONCENTRATION OF FRAZIL FOR CLASS1","CONCENTRATION OF FRAZIL FOR CLASS2","CONCENTRATION OF FRAZIL FOR CLASS3","CONCENTRATION OF FRAZIL FOR CLASS4","CONCENTRATION OF FRAZIL FOR CLASS5","CONCENTRATION OF FRAZIL FOR CLASS6","CONCENTRATION OF FRAZIL FOR CLASS7","CONCENTRATION OF FRAZIL FOR CLASS8","CONCENTRATION OF FRAZIL FOR CLASS9","CONCENTRATION OF FRAZIL FOR CLASS10","CONCENTRATION OF FRAZIL FOR CLASS11","CONCENTRATION OF FRAZIL FOR CLASS12","CONCENTRATION OF FRAZIL FOR CLASS13","CONCENTRATION OF FRAZIL FOR CLASS14","CONCENTRATION OF FRAZIL FOR CLASS15","CONCENTRATION OF FRAZIL FOR CLASS16","CONCENTRATION OF FRAZIL FOR CLASS17","CONCENTRATION OF FRAZIL FOR CLASS18","CONCENTRATION OF FRAZIL FOR CLASS19","CONCENTRATION OF FRAZIL FOR CLASS**","CONCENTRATION OF FRAZIL FOR CLASS*","CONCENTRATION OF FRAZIL FOR CLASS1","CONCENTRATION OF FRAZIL FOR CLASS2","CONCENTRATION OF FRAZIL FOR CLASS3","CONCENTRATION OF FRAZIL FOR CLASS4","CONCENTRATION OF FRAZIL FOR CLASS5","CONCENTRATION OF FRAZIL FOR CLASS6","CONCENTRATION OF FRAZIL FOR CLASS7","CONCENTRATION OF FRAZIL FOR CLASS8","CONCENTRATION OF FRAZIL FOR CLASS9","CONCENTRATION OF FRAZIL FOR CLASS10","CONCENTRATION OF FRAZIL FOR CLASS11","CONCENTRATION OF FRAZIL FOR CLASS12","CONCENTRATION OF FRAZIL FOR CLASS13","CONCENTRATION OF FRAZIL FOR CLASS14","CONCENTRATION OF FRAZIL FOR CLASS15","CONCENTRATION OF FRAZIL FOR CLASS16","CONCENTRATION OF FRAZIL FOR CLASS17","CONCENTRATION OF FRAZIL FOR CLASS18","CONCENTRATION OF FRAZIL FOR CLASS19","CONCENTRATION OF FRAZIL FOR CLASS**","CONCENTRATION OF FRAZIL FOR CLASS*","CONCENTRATION OF FRAZIL FOR CLASS1","CONCENTRATION OF FRAZIL FOR CLASS2","CONCENTRATION OF FRAZIL FOR CLASS3","CONCENTRATION OF FRAZIL FOR CLASS4","CONCENTRATION OF FRAZIL FOR CLASS5","CONCENTRATION OF FRAZIL FOR CLASS6","CONCENTRATION OF FRAZIL FOR CLASS7","CONCENTRATION OF FRAZIL FOR CLASS8","CONCENTRATION OF FRAZIL FOR CLASS9","CONCENTRATION OF FRAZIL FOR CLASS10","CONCENTRATION OF FRAZIL FOR CLASS11","CONCENTRATION OF FRAZIL FOR CLASS12","CONCENTRATION OF FRAZIL FOR CLASS13","CONCENTRATION OF FRAZIL FOR CLASS14","CONCENTRATION OF FRAZIL FOR CLASS15","CONCENTRATION OF FRAZIL FOR CLASS16","CONCENTRATION OF FRAZIL FOR CLASS17","CONCENTRATION OF FRAZIL FOR CLASS18","CONCENTRATION OF FRAZIL FOR CLASS19","CONCENTRATION OF FRAZIL FOR CLASS**","CONCENTRATION OF FRAZIL FOR CLASS*","CONCENTRATION OF FRAZIL FOR CLASS1","CONCENTRATION OF FRAZIL FOR CLASS2","CONCENTRATION OF FRAZIL FOR CLASS3","CONCENTRATION OF FRAZIL FOR CLASS4","CONCENTRATION OF FRAZIL FOR CLASS5","CONCENTRATION OF FRAZIL FOR CLASS6","CONCENTRATION OF FRAZIL FOR CLASS7","CONCENTRATION OF FRAZIL FOR CLASS8","CONCENTRATION OF FRAZIL FOR CLASS9","CONCENTRATION OF FRAZIL FOR CLASS10","CONCENTRATION OF FRAZIL FOR CLASS11","CONCENTRATION OF FRAZIL FOR CLASS12","CONCENTRATION OF FRAZIL FOR CLASS13","CONCENTRATION OF FRAZIL FOR CLASS14","CONCENTRATION OF FRAZIL FOR CLASS15","CONCENTRATION OF FRAZIL FOR CLASS16","CONCENTRATION OF FRAZIL FOR CLASS17","CONCENTRATION OF FRAZIL FOR CLASS18","CONCENTRATION OF FRAZIL FOR CLASS19","CONCENTRATION OF FRAZIL FOR CLASS**","CONCENTRATION OF FRAZIL FOR CLASS*","CONCENTRATION OF FRAZIL FOR CLASS1","CONCENTRATION OF FRAZIL FOR CLASS2","CONCENTRATION OF FRAZIL FOR CLASS3","CONCENTRATION OF FRAZIL FOR CLASS4","CONCENTRATION OF FRAZIL FOR CLASS5","CONCENTRATION OF FRAZIL FOR CLASS6","CONCENTRATION OF FRAZIL FOR CLASS7","CONCENTRATION OF FRAZIL FOR CLASS8","CONCENTRATION OF FRAZIL FOR CLASS9","CONCENTRATION OF FRAZIL FOR CLASS10","CONCENTRATION OF FRAZIL FOR CLASS11","CONCENTRATION OF FRAZIL FOR CLASS12","CONCENTRATION OF FRAZIL FOR CLASS13","CONCENTRATION OF FRAZIL FOR CLASS14","CONCENTRATION OF FRAZIL FOR CLASS15","CONCENTRATION OF FRAZIL FOR CLASS16","CONCENTRATION OF FRAZIL FOR CLASS17","CONCENTRATION OF FRAZIL FOR CLASS18","CONCENTRATION OF FRAZIL FOR CLASS19","CONCENTRATION OF FRAZIL FOR CLASS**","CONCENTRATION OF FRAZIL FOR CLASS*","CONCENTRATION OF FRAZIL FOR CLASS1","CONCENTRATION OF FRAZIL FOR CLASS2","CONCENTRATION OF FRAZIL FOR CLASS3","CONCENTRATION OF FRAZIL FOR CLASS4","CONCENTRATION OF FRAZIL FOR CLASS5","CONCENTRATION OF FRAZIL FOR CLASS6","CONCENTRATION OF FRAZIL FOR CLASS7","CONCENTRATION OF FRAZIL FOR CLASS8","CONCENTRATION OF FRAZIL FOR CLASS9","CONCENTRATION OF FRAZIL FOR CLASS10","CONCENTRATION OF FRAZIL FOR CLASS11","CONCENTRATION OF FRAZIL FOR CLASS12","CONCENTRATION OF FRAZIL FOR CLASS13","CONCENTRATION OF FRAZIL FOR CLASS14","CONCENTRATION OF FRAZIL FOR CLASS15","CONCENTRATION OF FRAZIL FOR CLASS16","CONCENTRATION OF FRAZIL FOR CLASS17","CONCENTRATION OF FRAZIL FOR CLASS18","CONCENTRATION OF FRAZIL FOR CLASS19","CONCENTRATION OF FRAZIL FOR CLASS**","CONCENTRATION OF FRAZIL FOR CLASS*","CONCENTRATION OF FRAZIL FOR CLASS1","CONCENTRATION OF FRAZIL FOR CLASS2","CONCENTRATION OF FRAZIL FOR CLASS3","CONCENTRATION OF FRAZIL FOR CLASS4","CONCENTRATION OF FRAZIL FOR CLASS5","CONCENTRATION OF FRAZIL FOR CLASS6","CONCENTRATION OF FRAZIL FOR CLASS7","CONCENTRATION OF FRAZIL FOR CLASS8","CONCENTRATION OF FRAZIL FOR CLASS9","CONCENTRATION OF FRAZIL FOR CLASS10","CONCENTRATION OF FRAZIL FOR CLASS11","CONCENTRATION OF FRAZIL FOR CLASS12","CONCENTRATION OF FRAZIL FOR CLASS13","CONCENTRATION OF FRAZIL FOR CLASS14","CONCENTRATION OF FRAZIL FOR CLASS15","CONCENTRATION OF FRAZIL FOR CLASS16","CONCENTRATION OF FRAZIL FOR CLASS17","CONCENTRATION OF FRAZIL FOR CLASS18","CONCENTRATION OF FRAZIL FOR CLASS19","CONCENTRATION OF FRAZIL FOR CLASS**","CONCENTRATION OF FRAZIL FOR CLASS*","CONCENTRATION OF FRAZIL FOR CLASS1","CONCENTRATION OF FRAZIL FOR CLASS2","CONCENTRATION OF FRAZIL FOR CLASS3","CONCENTRATION OF FRAZIL FOR CLASS4","CONCENTRATION OF FRAZIL FOR CLASS5","CONCENTRATION OF FRAZIL FOR CLASS6","CONCENTRATION OF FRAZIL FOR CLASS7","CONCENTRATION OF FRAZIL FOR CLASS8","CONCENTRATION OF FRAZIL FOR CLASS9","CONCENTRATION OF FRAZIL FOR CLASS10","CONCENTRATION OF FRAZIL FOR CLASS11","CONCENTRATION OF FRAZIL FOR CLASS12","CONCENTRATION OF FRAZIL FOR CLASS13","CONCENTRATION OF FRAZIL FOR CLASS14","CONCENTRATION OF FRAZIL FOR CLASS15","CONCENTRATION OF FRAZIL FOR CLASS16","CONCENTRATION OF FRAZIL FOR CLASS17","CONCENTRATION OF FRAZIL FOR CLASS18","CONCENTRATION OF FRAZIL FOR CLASS19","CONCENTRATION OF FRAZIL FOR CLASS**","CONCENTRATION OF FRAZIL FOR CLASS*","CONCENTRATION OF FRAZIL FOR CLASS1","CONCENTRATION OF FRAZIL FOR CLASS2","CONCENTRATION OF FRAZIL FOR CLASS3","CONCENTRATION OF FRAZIL FOR CLASS4","CONCENTRATION OF FRAZIL FOR CLASS5","CONCENTRATION OF FRAZIL FOR CLASS6","CONCENTRATION OF FRAZIL FOR CLASS7","CONCENTRATION OF FRAZIL FOR CLASS8","CONCENTRATION OF FRAZIL FOR CLASS9","CONCENTRATION OF FRAZIL FOR CLASS10","CONCENTRATION OF FRAZIL FOR CLASS11","CONCENTRATION OF FRAZIL FOR CLASS12","CONCENTRATION OF FRAZIL FOR CLASS13","CONCENTRATION OF FRAZIL FOR CLASS14","CONCENTRATION OF FRAZIL FOR CLASS15","CONCENTRATION OF FRAZIL FOR CLASS16","CONCENTRATION OF FRAZIL FOR CLASS17","CONCENTRATION OF FRAZIL FOR CLASS18","CONCENTRATION OF FRAZIL FOR CLASS19","CONCENTRATION OF FRAZIL FOR CLASS**","PARTICLE NUMBER OF FRAZIL FOR CLASS*","PARTICLE NUMBER OF FRAZIL FOR CLASS1","PARTICLE NUMBER OF FRAZIL FOR CLASS2","PARTICLE NUMBER OF FRAZIL FOR CLASS3","PARTICLE NUMBER OF FRAZIL FOR CLASS4","PARTICLE NUMBER OF FRAZIL FOR CLASS5","PARTICLE NUMBER OF FRAZIL FOR CLASS6","PARTICLE NUMBER OF FRAZIL FOR CLASS7","PARTICLE NUMBER OF FRAZIL FOR CLASS8","PARTICLE NUMBER OF FRAZIL FOR CLASS9","PARTICLE NUMBER OF FRAZIL FOR CLASS10","PARTICLE NUMBER OF FRAZIL FOR CLASS11","PARTICLE NUMBER OF FRAZIL FOR CLASS12","PARTICLE NUMBER OF FRAZIL FOR CLASS13","PARTICLE NUMBER OF FRAZIL FOR CLASS14","PARTICLE NUMBER OF FRAZIL FOR CLASS15","PARTICLE NUMBER OF FRAZIL FOR CLASS16","PARTICLE NUMBER OF FRAZIL FOR CLASS17","PARTICLE NUMBER OF FRAZIL FOR CLASS18","PARTICLE NUMBER OF FRAZIL FOR CLASS19","PARTICLE NUMBER OF FRAZIL FOR CLASS**","PARTICLE NUMBER OF FRAZIL FOR CLASS*","PARTICLE NUMBER OF FRAZIL FOR CLASS1","PARTICLE NUMBER OF FRAZIL FOR CLASS2","PARTICLE NUMBER OF FRAZIL FOR CLASS3","PARTICLE NUMBER OF FRAZIL FOR CLASS4","PARTICLE NUMBER OF FRAZIL FOR CLASS5","PARTICLE NUMBER OF FRAZIL FOR CLASS6","PARTICLE NUMBER OF FRAZIL FOR CLASS7","PARTICLE NUMBER OF FRAZIL FOR CLASS8","PARTICLE NUMBER OF FRAZIL FOR CLASS9","PARTICLE NUMBER OF FRAZIL FOR CLASS10","PARTICLE NUMBER OF FRAZIL FOR CLASS11","PARTICLE NUMBER OF FRAZIL FOR CLASS12","PARTICLE NUMBER OF FRAZIL FOR CLASS13","PARTICLE NUMBER OF FRAZIL FOR CLASS14","PARTICLE NUMBER OF FRAZIL FOR CLASS15","PARTICLE NUMBER OF FRAZIL FOR CLASS16","PARTICLE NUMBER OF FRAZIL FOR CLASS17","PARTICLE NUMBER OF FRAZIL FOR CLASS18","PARTICLE NUMBER OF FRAZIL FOR CLASS19","PARTICLE NUMBER OF FRAZIL FOR CLASS**","PARTICLE NUMBER OF FRAZIL FOR CLASS*","PARTICLE NUMBER OF FRAZIL FOR CLASS1","PARTICLE NUMBER OF FRAZIL FOR CLASS2","PARTICLE NUMBER OF FRAZIL FOR CLASS3","PARTICLE NUMBER OF FRAZIL FOR CLASS4","PARTICLE NUMBER OF FRAZIL FOR CLASS5","PARTICLE NUMBER OF FRAZIL FOR CLASS6","PARTICLE NUMBER OF FRAZIL FOR CLASS7","PARTICLE NUMBER OF FRAZIL FOR CLASS8","PARTICLE NUMBER OF FRAZIL FOR CLASS9","PARTICLE NUMBER OF FRAZIL FOR CLASS10","PARTICLE NUMBER OF FRAZIL FOR CLASS11","PARTICLE NUMBER OF FRAZIL FOR CLASS12","PARTICLE NUMBER OF FRAZIL FOR CLASS13","PARTICLE NUMBER OF FRAZIL FOR CLASS14","PARTICLE NUMBER OF FRAZIL FOR CLASS15","PARTICLE NUMBER OF FRAZIL FOR CLASS16","PARTICLE NUMBER OF FRAZIL FOR CLASS17","PARTICLE NUMBER OF FRAZIL FOR CLASS18","PARTICLE NUMBER OF FRAZIL FOR CLASS19","PARTICLE NUMBER OF FRAZIL FOR CLASS**","PARTICLE NUMBER OF FRAZIL FOR CLASS*","PARTICLE NUMBER OF FRAZIL FOR CLASS1","PARTICLE NUMBER OF FRAZIL FOR CLASS2","PARTICLE NUMBER OF FRAZIL FOR CLASS3","PARTICLE NUMBER OF FRAZIL FOR CLASS4","PARTICLE NUMBER OF FRAZIL FOR CLASS5","PARTICLE NUMBER OF FRAZIL FOR CLASS6","PARTICLE NUMBER OF FRAZIL FOR CLASS7","PARTICLE NUMBER OF FRAZIL FOR CLASS8","PARTICLE NUMBER OF FRAZIL FOR CLASS9","PARTICLE NUMBER OF FRAZIL FOR CLASS10","PARTICLE NUMBER OF FRAZIL FOR CLASS11","PARTICLE NUMBER OF FRAZIL FOR CLASS12","PARTICLE NUMBER OF FRAZIL FOR CLASS13","PARTICLE NUMBER OF FRAZIL FOR CLASS14","PARTICLE NUMBER OF FRAZIL FOR CLASS15","PARTICLE NUMBER OF FRAZIL FOR CLASS16","PARTICLE NUMBER OF FRAZIL FOR CLASS17","PARTICLE NUMBER OF FRAZIL FOR CLASS18","PARTICLE NUMBER OF FRAZIL FOR CLASS19","PARTICLE NUMBER OF FRAZIL FOR CLASS**","PARTICLE NUMBER OF FRAZIL FOR CLASS*","PARTICLE NUMBER OF FRAZIL FOR CLASS1","PARTICLE NUMBER OF FRAZIL FOR CLASS2","PARTICLE NUMBER OF FRAZIL FOR CLASS3","PARTICLE NUMBER OF FRAZIL FOR CLASS4","PARTICLE NUMBER OF FRAZIL FOR CLASS5","PARTICLE NUMBER OF FRAZIL FOR CLASS6","PARTICLE NUMBER OF FRAZIL FOR CLASS7","PARTICLE NUMBER OF FRAZIL FOR CLASS8","PARTICLE NUMBER OF FRAZIL FOR CLASS9","PARTICLE NUMBER OF FRAZIL FOR CLASS10","PARTICLE NUMBER OF FRAZIL FOR CLASS11","PARTICLE NUMBER OF FRAZIL FOR CLASS12","PARTICLE NUMBER OF FRAZIL FOR CLASS13","PARTICLE NUMBER OF FRAZIL FOR CLASS14","PARTICLE NUMBER OF FRAZIL FOR CLASS15","PARTICLE NUMBER OF FRAZIL FOR CLASS16","PARTICLE NUMBER OF FRAZIL FOR CLASS17","PARTICLE NUMBER OF FRAZIL FOR CLASS18","PARTICLE NUMBER OF FRAZIL FOR CLASS19","PARTICLE NUMBER OF FRAZIL FOR CLASS**","PARTICLE NUMBER OF FRAZIL FOR CLASS*","PARTICLE NUMBER OF FRAZIL FOR CLASS1","PARTICLE NUMBER OF FRAZIL FOR CLASS2","PARTICLE NUMBER OF FRAZIL FOR CLASS3","PARTICLE NUMBER OF FRAZIL FOR CLASS4","PARTICLE NUMBER OF FRAZIL FOR CLASS5","PARTICLE NUMBER OF FRAZIL FOR CLASS6","PARTICLE NUMBER OF FRAZIL FOR CLASS7","PARTICLE NUMBER OF FRAZIL FOR CLASS8","PARTICLE NUMBER OF FRAZIL FOR CLASS9","PARTICLE NUMBER OF FRAZIL FOR CLASS10","PARTICLE NUMBER OF FRAZIL FOR CLASS11","PARTICLE NUMBER OF FRAZIL FOR CLASS12","PARTICLE NUMBER OF FRAZIL FOR CLASS13","PARTICLE NUMBER OF FRAZIL FOR CLASS14","PARTICLE NUMBER OF FRAZIL FOR CLASS15","PARTICLE NUMBER OF FRAZIL FOR CLASS16","PARTICLE NUMBER OF FRAZIL FOR CLASS17","PARTICLE NUMBER OF FRAZIL FOR CLASS18","PARTICLE NUMBER OF FRAZIL FOR CLASS19","PARTICLE NUMBER OF FRAZIL FOR CLASS**","PARTICLE NUMBER OF FRAZIL FOR CLASS*","PARTICLE NUMBER OF FRAZIL FOR CLASS1","PARTICLE NUMBER OF FRAZIL FOR CLASS2","PARTICLE NUMBER OF FRAZIL FOR CLASS3","PARTICLE NUMBER OF FRAZIL FOR CLASS4","PARTICLE NUMBER OF FRAZIL FOR CLASS5","PARTICLE NUMBER OF FRAZIL FOR CLASS6","PARTICLE NUMBER OF FRAZIL FOR CLASS7","PARTICLE NUMBER OF FRAZIL FOR CLASS8","PARTICLE NUMBER OF FRAZIL FOR CLASS9","PARTICLE NUMBER OF FRAZIL FOR CLASS10","PARTICLE NUMBER OF FRAZIL FOR CLASS11","PARTICLE NUMBER OF FRAZIL FOR CLASS12","PARTICLE NUMBER OF FRAZIL FOR CLASS13","PARTICLE NUMBER OF FRAZIL FOR CLASS14","PARTICLE NUMBER OF FRAZIL FOR CLASS15","PARTICLE NUMBER OF FRAZIL FOR CLASS16","PARTICLE NUMBER OF FRAZIL FOR CLASS17","PARTICLE NUMBER OF FRAZIL FOR CLASS18","PARTICLE NUMBER OF FRAZIL FOR CLASS19","PARTICLE NUMBER OF FRAZIL FOR CLASS**","PARTICLE NUMBER OF FRAZIL FOR CLASS*","PARTICLE NUMBER OF FRAZIL FOR CLASS1","PARTICLE NUMBER OF FRAZIL FOR CLASS2","PARTICLE NUMBER OF FRAZIL FOR CLASS3","PARTICLE NUMBER OF FRAZIL FOR CLASS4","PARTICLE NUMBER OF FRAZIL FOR CLASS5","PARTICLE NUMBER OF FRAZIL FOR CLASS6","PARTICLE NUMBER OF FRAZIL FOR CLASS7","PARTICLE NUMBER OF FRAZIL FOR CLASS8","PARTICLE NUMBER OF FRAZIL FOR CLASS9","PARTICLE NUMBER OF FRAZIL FOR CLASS10","PARTICLE NUMBER OF FRAZIL FOR CLASS11","PARTICLE NUMBER OF FRAZIL FOR CLASS12","PARTICLE NUMBER OF FRAZIL FOR CLASS13","PARTICLE NUMBER OF FRAZIL FOR CLASS14","PARTICLE NUMBER OF FRAZIL FOR CLASS15","PARTICLE NUMBER OF FRAZIL FOR CLASS16","PARTICLE NUMBER OF FRAZIL FOR CLASS17","PARTICLE NUMBER OF FRAZIL FOR CLASS18","PARTICLE NUMBER OF FRAZIL FOR CLASS19","PARTICLE NUMBER OF FRAZIL FOR CLASS**","PARTICLE NUMBER OF FRAZIL FOR CLASS*","PARTICLE NUMBER OF FRAZIL FOR CLASS1","PARTICLE NUMBER OF FRAZIL FOR CLASS2","PARTICLE NUMBER OF FRAZIL FOR CLASS3","PARTICLE NUMBER OF FRAZIL FOR CLASS4","PARTICLE NUMBER OF FRAZIL FOR CLASS5","PARTICLE NUMBER OF FRAZIL FOR CLASS6","PARTICLE NUMBER OF FRAZIL FOR CLASS7","PARTICLE NUMBER OF FRAZIL FOR CLASS8","PARTICLE NUMBER OF FRAZIL FOR CLASS9","PARTICLE NUMBER OF FRAZIL FOR CLASS10","PARTICLE NUMBER OF FRAZIL FOR CLASS11","PARTICLE NUMBER OF FRAZIL FOR CLASS12","PARTICLE NUMBER OF FRAZIL FOR CLASS13","PARTICLE NUMBER OF FRAZIL FOR CLASS14","PARTICLE NUMBER OF FRAZIL FOR CLASS15","PARTICLE NUMBER OF FRAZIL FOR CLASS16","PARTICLE NUMBER OF FRAZIL FOR CLASS17","PARTICLE NUMBER OF FRAZIL FOR CLASS18","PARTICLE NUMBER OF FRAZIL FOR CLASS19","PARTICLE NUMBER OF FRAZIL FOR CLASS**","PARTICLE NUMBER OF FRAZIL FOR CLASS*","PARTICLE NUMBER OF FRAZIL FOR CLASS1","PARTICLE NUMBER OF FRAZIL FOR CLASS2","PARTICLE NUMBER OF FRAZIL FOR CLASS3","PARTICLE NUMBER OF FRAZIL FOR CLASS4","PARTICLE NUMBER OF FRAZIL FOR CLASS5","PARTICLE NUMBER OF FRAZIL FOR CLASS6","PARTICLE NUMBER OF FRAZIL FOR CLASS7","PARTICLE NUMBER OF FRAZIL FOR CLASS8","PARTICLE NUMBER OF FRAZIL FOR CLASS9","PARTICLE NUMBER OF FRAZIL FOR CLASS10","PARTICLE NUMBER OF FRAZIL FOR CLASS11","PARTICLE NUMBER OF FRAZIL FOR CLASS12","PARTICLE NUMBER OF FRAZIL FOR CLASS13","PARTICLE NUMBER OF FRAZIL FOR CLASS14","PARTICLE NUMBER OF FRAZIL FOR CLASS15","PARTICLE NUMBER OF FRAZIL FOR CLASS16","PARTICLE NUMBER OF FRAZIL FOR CLASS17","PARTICLE NUMBER OF FRAZIL FOR CLASS18","PARTICLE NUMBER OF FRAZIL FOR CLASS19","PARTICLE NUMBER OF FRAZIL FOR CLASS**","PARTICLE NUMBER OF FRAZIL FOR CLASS*","PARTICLE NUMBER OF FRAZIL FOR CLASS1","PARTICLE NUMBER OF FRAZIL FOR CLASS2","PARTICLE NUMBER OF FRAZIL FOR CLASS3","PARTICLE NUMBER OF FRAZIL FOR CLASS4","PARTICLE NUMBER OF FRAZIL FOR CLASS5","PARTICLE NUMBER OF FRAZIL FOR CLASS6","PARTICLE NUMBER OF FRAZIL FOR CLASS7","PARTICLE NUMBER OF FRAZIL FOR CLASS8","PARTICLE NUMBER OF FRAZIL FOR CLASS9","PARTICLE NUMBER OF FRAZIL FOR CLASS10","PARTICLE NUMBER OF FRAZIL FOR CLASS11","PARTICLE NUMBER OF FRAZIL FOR CLASS12","PARTICLE NUMBER OF FRAZIL FOR CLASS13","PARTICLE NUMBER OF FRAZIL FOR CLASS14","PARTICLE NUMBER OF FRAZIL FOR CLASS15","PARTICLE NUMBER OF FRAZIL FOR CLASS16","PARTICLE NUMBER OF FRAZIL FOR CLASS17","PARTICLE NUMBER OF FRAZIL FOR CLASS18","PARTICLE NUMBER OF FRAZIL FOR CLASS19","PARTICLE NUMBER OF FRAZIL FOR CLASS**","PARTICLE NUMBER OF FRAZIL FOR CLASS*","PARTICLE NUMBER OF FRAZIL FOR CLASS1","PARTICLE NUMBER OF FRAZIL FOR CLASS2","PARTICLE NUMBER OF FRAZIL FOR CLASS3","PARTICLE NUMBER OF FRAZIL FOR CLASS4","PARTICLE NUMBER OF FRAZIL FOR CLASS5","PARTICLE NUMBER OF FRAZIL FOR CLASS6","PARTICLE NUMBER OF FRAZIL FOR CLASS7","PARTICLE NUMBER OF FRAZIL FOR CLASS8","PARTICLE NUMBER OF FRAZIL FOR CLASS9","PARTICLE NUMBER OF FRAZIL FOR CLASS10","PARTICLE NUMBER OF FRAZIL FOR CLASS11","PARTICLE NUMBER OF FRAZIL FOR CLASS12","PARTICLE NUMBER OF FRAZIL FOR CLASS13","PARTICLE NUMBER OF FRAZIL FOR CLASS14","PARTICLE NUMBER OF FRAZIL FOR CLASS15","PARTICLE NUMBER OF FRAZIL FOR CLASS16","PARTICLE NUMBER OF FRAZIL FOR CLASS17","PARTICLE NUMBER OF FRAZIL FOR CLASS18","PARTICLE NUMBER OF FRAZIL FOR CLASS19","PARTICLE NUMBER OF FRAZIL FOR CLASS**","PARTICLE NUMBER OF FRAZIL FOR CLASS*","PARTICLE NUMBER OF FRAZIL FOR CLASS1","PARTICLE NUMBER OF FRAZIL FOR CLASS2","PARTICLE NUMBER OF FRAZIL FOR CLASS3","PARTICLE NUMBER OF FRAZIL FOR CLASS4","PARTICLE NUMBER OF FRAZIL FOR CLASS5","PARTICLE NUMBER OF FRAZIL FOR CLASS6","PARTICLE NUMBER OF FRAZIL FOR CLASS7","PARTICLE NUMBER OF FRAZIL FOR CLASS8","PARTICLE NUMBER OF FRAZIL FOR CLASS9","PARTICLE NUMBER OF FRAZIL FOR CLASS10","PARTICLE NUMBER OF FRAZIL FOR CLASS11","PARTICLE NUMBER OF FRAZIL FOR CLASS12","PARTICLE NUMBER OF FRAZIL FOR CLASS13","PARTICLE NUMBER OF FRAZIL FOR CLASS14","PARTICLE NUMBER OF FRAZIL FOR CLASS15","PARTICLE NUMBER OF FRAZIL FOR CLASS16","PARTICLE NUMBER OF FRAZIL FOR CLASS17","PARTICLE NUMBER OF FRAZIL FOR CLASS18","PARTICLE NUMBER OF FRAZIL FOR CLASS19","PARTICLE NUMBER OF FRAZIL FOR CLASS**","PARTICLE NUMBER OF FRAZIL FOR CLASS*","PARTICLE NUMBER OF FRAZIL FOR CLASS1","PARTICLE NUMBER OF FRAZIL FOR CLASS2","PARTICLE NUMBER OF FRAZIL FOR CLASS3","PARTICLE NUMBER OF FRAZIL FOR CLASS4","PARTICLE NUMBER OF FRAZIL FOR CLASS5","PARTICLE NUMBER OF FRAZIL FOR CLASS6","PARTICLE NUMBER OF FRAZIL FOR CLASS7","PARTICLE NUMBER OF FRAZIL FOR CLASS8","PARTICLE NUMBER OF FRAZIL FOR CLASS9","PARTICLE NUMBER OF FRAZIL FOR CLASS10","PARTICLE NUMBER OF FRAZIL FOR CLASS11","PARTICLE NUMBER OF FRAZIL FOR CLASS12","PARTICLE NUMBER OF FRAZIL FOR CLASS13","PARTICLE NUMBER OF FRAZIL FOR CLASS14","PARTICLE NUMBER OF FRAZIL FOR CLASS15","PARTICLE NUMBER OF FRAZIL FOR CLASS16","PARTICLE NUMBER OF FRAZIL FOR CLASS17","PARTICLE NUMBER OF FRAZIL FOR CLASS18","PARTICLE NUMBER OF FRAZIL FOR CLASS19","PARTICLE NUMBER OF FRAZIL FOR CLASS**","PARTICLE NUMBER OF FRAZIL FOR CLASS*","PARTICLE NUMBER OF FRAZIL FOR CLASS1","PARTICLE NUMBER OF FRAZIL FOR CLASS2","PARTICLE NUMBER OF FRAZIL FOR CLASS3","PARTICLE NUMBER OF FRAZIL FOR CLASS4","PARTICLE NUMBER OF FRAZIL FOR CLASS5","PARTICLE NUMBER OF FRAZIL FOR CLASS6","PARTICLE NUMBER OF FRAZIL FOR CLASS7","PARTICLE NUMBER OF FRAZIL FOR CLASS8","PARTICLE NUMBER OF FRAZIL FOR CLASS9","PARTICLE NUMBER OF FRAZIL FOR CLASS10","PARTICLE NUMBER OF FRAZIL FOR CLASS11","PARTICLE NUMBER OF FRAZIL FOR CLASS12","PARTICLE NUMBER OF FRAZIL FOR CLASS13","PARTICLE NUMBER OF FRAZIL FOR CLASS14","PARTICLE NUMBER OF FRAZIL FOR CLASS15","PARTICLE NUMBER OF FRAZIL FOR CLASS16","PARTICLE NUMBER OF FRAZIL FOR CLASS17","PARTICLE NUMBER OF FRAZIL FOR CLASS18","PARTICLE NUMBER OF FRAZIL FOR CLASS19","PARTICLE NUMBER OF FRAZIL FOR CLASS**","PARTICLE NUMBER OF FRAZIL FOR CLASS*","PARTICLE NUMBER OF FRAZIL FOR CLASS1","PARTICLE NUMBER OF FRAZIL FOR CLASS2","PARTICLE NUMBER OF FRAZIL FOR CLASS3","PARTICLE NUMBER OF FRAZIL FOR CLASS4","PARTICLE NUMBER OF FRAZIL FOR CLASS5","PARTICLE NUMBER OF FRAZIL FOR CLASS6","PARTICLE NUMBER OF FRAZIL FOR CLASS7","PARTICLE NUMBER OF FRAZIL FOR CLASS8","PARTICLE NUMBER OF FRAZIL FOR CLASS9","PARTICLE NUMBER OF FRAZIL FOR CLASS10","PARTICLE NUMBER OF FRAZIL FOR CLASS11","PARTICLE NUMBER OF FRAZIL FOR CLASS12","PARTICLE NUMBER OF FRAZIL FOR CLASS13","PARTICLE NUMBER OF FRAZIL FOR CLASS14","PARTICLE NUMBER OF FRAZIL FOR CLASS15","PARTICLE NUMBER OF FRAZIL FOR CLASS16","PARTICLE NUMBER OF FRAZIL FOR CLASS17","PARTICLE NUMBER OF FRAZIL FOR CLASS18","PARTICLE NUMBER OF FRAZIL FOR CLASS19","PARTICLE NUMBER OF FRAZIL FOR CLASS**","PARTICLE NUMBER OF FRAZIL FOR CLASS*","PARTICLE NUMBER OF FRAZIL FOR CLASS1","PARTICLE NUMBER OF FRAZIL FOR CLASS2","PARTICLE NUMBER OF FRAZIL FOR CLASS3","PARTICLE NUMBER OF FRAZIL FOR CLASS4","PARTICLE NUMBER OF FRAZIL FOR CLASS5","PARTICLE NUMBER OF FRAZIL FOR CLASS6","PARTICLE NUMBER OF FRAZIL FOR CLASS7","PARTICLE NUMBER OF FRAZIL FOR CLASS8","PARTICLE NUMBER OF FRAZIL FOR CLASS9","PARTICLE NUMBER OF FRAZIL FOR CLASS10","PARTICLE NUMBER OF FRAZIL FOR CLASS11","PARTICLE NUMBER OF FRAZIL FOR CLASS12","PARTICLE NUMBER OF FRAZIL FOR CLASS13","PARTICLE NUMBER OF FRAZIL FOR CLASS14","PARTICLE NUMBER OF FRAZIL FOR CLASS15","PARTICLE NUMBER OF FRAZIL FOR CLASS16","PARTICLE NUMBER OF FRAZIL FOR CLASS17","PARTICLE NUMBER OF FRAZIL FOR CLASS18","PARTICLE NUMBER OF FRAZIL FOR CLASS19","PARTICLE NUMBER OF FRAZIL FOR CLASS**","PARTICLE NUMBER OF FRAZIL FOR CLASS*","PARTICLE NUMBER OF FRAZIL FOR CLASS1","PARTICLE NUMBER OF FRAZIL FOR CLASS2","PARTICLE NUMBER OF FRAZIL FOR CLASS3","PARTICLE NUMBER OF FRAZIL FOR CLASS4","PARTICLE NUMBER OF FRAZIL FOR CLASS5","PARTICLE NUMBER OF FRAZIL FOR CLASS6","PARTICLE NUMBER OF FRAZIL FOR CLASS7","PARTICLE NUMBER OF FRAZIL FOR CLASS8","PARTICLE NUMBER OF FRAZIL FOR CLASS9","PARTICLE NUMBER OF FRAZIL FOR CLASS10","PARTICLE NUMBER OF FRAZIL FOR CLASS11","PARTICLE NUMBER OF FRAZIL FOR CLASS12","PARTICLE NUMBER OF FRAZIL FOR CLASS13","PARTICLE NUMBER OF FRAZIL FOR CLASS14","PARTICLE NUMBER OF FRAZIL FOR CLASS15","PARTICLE NUMBER OF FRAZIL FOR CLASS16","PARTICLE NUMBER OF FRAZIL FOR CLASS17","PARTICLE NUMBER OF FRAZIL FOR CLASS18","PARTICLE NUMBER OF FRAZIL FOR CLASS19","PARTICLE NUMBER OF FRAZIL FOR CLASS**","PARTICLE NUMBER OF FRAZIL FOR CLASS*","PARTICLE NUMBER OF FRAZIL FOR CLASS1","PARTICLE NUMBER OF FRAZIL FOR CLASS2","PARTICLE NUMBER OF FRAZIL FOR CLASS3","PARTICLE NUMBER OF FRAZIL FOR CLASS4","PARTICLE NUMBER OF FRAZIL FOR CLASS5","PARTICLE NUMBER OF FRAZIL FOR CLASS6","PARTICLE NUMBER OF FRAZIL FOR CLASS7","PARTICLE NUMBER OF FRAZIL FOR CLASS8","PARTICLE NUMBER OF FRAZIL FOR CLASS9","PARTICLE NUMBER OF FRAZIL FOR CLASS10","PARTICLE NUMBER OF FRAZIL FOR CLASS11","PARTICLE NUMBER OF FRAZIL FOR CLASS12","PARTICLE NUMBER OF FRAZIL FOR CLASS13","PARTICLE NUMBER OF FRAZIL FOR CLASS14","PARTICLE NUMBER OF FRAZIL FOR CLASS15","PARTICLE NUMBER OF FRAZIL FOR CLASS16","PARTICLE NUMBER OF FRAZIL FOR CLASS17","PARTICLE NUMBER OF FRAZIL FOR CLASS18","PARTICLE NUMBER OF FRAZIL FOR CLASS19","PARTICLE NUMBER OF FRAZIL FOR CLASS**","PARTICLE NUMBER OF FRAZIL FOR CLASS*","PARTICLE NUMBER OF FRAZIL FOR CLASS1","PARTICLE NUMBER OF FRAZIL FOR CLASS2","PARTICLE NUMBER OF FRAZIL FOR CLASS3","PARTICLE NUMBER OF FRAZIL FOR CLASS4","PARTICLE NUMBER OF FRAZIL FOR CLASS5","PARTICLE NUMBER OF FRAZIL FOR CLASS6","PARTICLE NUMBER OF FRAZIL FOR CLASS7","PARTICLE NUMBER OF FRAZIL FOR CLASS8","PARTICLE NUMBER OF FRAZIL FOR CLASS9","PARTICLE NUMBER OF FRAZIL FOR CLASS10","PARTICLE NUMBER OF FRAZIL FOR CLASS11","PARTICLE NUMBER OF FRAZIL FOR CLASS12","PARTICLE NUMBER OF FRAZIL FOR CLASS13","PARTICLE NUMBER OF FRAZIL FOR CLASS14","PARTICLE NUMBER OF FRAZIL FOR CLASS15","PARTICLE NUMBER OF FRAZIL FOR CLASS16","PARTICLE NUMBER OF FRAZIL FOR CLASS17","PARTICLE NUMBER OF FRAZIL FOR CLASS18","PARTICLE NUMBER OF FRAZIL FOR CLASS19","PARTICLE NUMBER OF FRAZIL FOR CLASS**","PARTICLE NUMBER OF FRAZIL FOR CLASS*","PARTICLE NUMBER OF FRAZIL FOR CLASS1","PARTICLE NUMBER OF FRAZIL FOR CLASS2","PARTICLE NUMBER OF FRAZIL FOR CLASS3","PARTICLE NUMBER OF FRAZIL FOR CLASS4","PARTICLE NUMBER OF FRAZIL FOR CLASS5","PARTICLE NUMBER OF FRAZIL FOR CLASS6","PARTICLE NUMBER OF FRAZIL FOR CLASS7","PARTICLE NUMBER OF FRAZIL FOR CLASS8","PARTICLE NUMBER OF FRAZIL FOR CLASS9","PARTICLE NUMBER OF FRAZIL FOR CLASS10","PARTICLE NUMBER OF FRAZIL FOR CLASS11","PARTICLE NUMBER OF FRAZIL FOR CLASS12","PARTICLE NUMBER OF FRAZIL FOR CLASS13","PARTICLE NUMBER OF FRAZIL FOR CLASS14","PARTICLE NUMBER OF FRAZIL FOR CLASS15","PARTICLE NUMBER OF FRAZIL FOR CLASS16","PARTICLE NUMBER OF FRAZIL FOR CLASS17","PARTICLE NUMBER OF FRAZIL FOR CLASS18","PARTICLE NUMBER OF FRAZIL FOR CLASS19","PARTICLE NUMBER OF FRAZIL FOR CLASS**","WATER TEMPERATURE","SALINITY OF WATER"], + defaut = '', + fr = """Noms des variables que l''utilisateur veut ecrire dans +le \telkey{FICHIER DES RESULTATS DES GLACES}. +Chaque variable est representee par une lettre. +Le choix des separateurs est libre.""", + ang = """Names of variables that may be written in the +\telkey{ICE RESULTS FILE}. +Every variable is represented by a group of letters with +any separator between them , ; or blank.""", + ), +# ----------------------------------- + GRAPHIC_PRINTOUT_PERIOD = SIMP(statut ='f', +# ----------------------------------- + typ = 'I', + defaut = [1], + fr = """Determine la periode en nombre de pas de temps d''impression des +\telkey{VARIABLES POUR LES SORTIES GRAPHIQUES} +(voir ce mot-cle) dans le \telkey{FICHIER DES RESULTATS}.""", + ang = """Determines, in number of time steps, the printout period for the +\telkey{VARIABLES FOR GRAPHIC PRINTOUTS} +in the \telkey{RESULTS FILE}.""", + ), +# ----------------------------------- + CLOGGING_RESULTS_FILE = SIMP(statut ='f', +# ----------------------------------- + typ = ('Fichier','All Files (*)','Sauvegarde'), + defaut = '', + fr = """Fichier ASCII de resultats de la glace accumulee aux prises d eau.""", + ang = """ASCII file of results for clogged ice parameters at water intakes.""", + ), + ), +# ----------------------------------- + LISTING = FACT(statut='f', +# ----------------------------------- +# ----------------------------------- + VARIABLES_TO_BE_PRINTED = SIMP(statut ='f', +# ----------------------------------- + typ = 'TXM', max='**', + into = ['TO BE EDITED'], + defaut = '', + fr = """Mot cle necessaire mais qui ne fait rien.""", + ang = """Necessary keyword but does not do much.""", + ), +# ----------------------------------- + LISTING_PRINTOUT_PERIOD = SIMP(statut ='f', +# ----------------------------------- + typ = 'I', + defaut = [1], + fr = """Determine la periode en nombre de pas de temps d''impression des +\telkey{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 +listing (CAS.SORTIE sur station de travail).""", + ang = """Determines, in number of time steps, the printout period of the +\telkey{VARIABLES TO BE PRINTED}. +The results are systematically printed out on +the listing file (file CAS.SORTIE at the workstation).""", + ), +# ----------------------------------- + MASS_BALANCE = SIMP(statut ='f', +# ----------------------------------- + typ = bool, + defaut = False, + fr = """Determine si l''on effectue ou non le bilan de masse +sur le domaine.""", + ang = """Determines whether a check of the mass-balance over +the domain is done or not.""", + ), + ), + ), +# ----------------------------------- + RESTART = FACT(statut='f', +# ----------------------------------- +# ----------------------------------- + PREVIOUS_ICE_COVER_COMPUTATION_FILE = SIMP(statut ='f', +# ----------------------------------- + typ = ('Fichier','All Files (*)'), + defaut = '', + fr = """Nom d''un fichier contenant les resultats d''un calcul de couvert de +glace 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.""", + ang = """Name of a file containing the results of an earlier ice cover +computation which was made on the same mesh. The last recorded time +step will provide the initial conditions for the new computation.""", + ), +# ----------------------------------- + PREVIOUS_ICE_COVER_COMPUTATION_FILE_FORMAT = SIMP(statut ='f', +# ----------------------------------- + typ = 'TXM', + into = ['SERAFIN','SERAFIND'], + defaut = 'SERAFIN', + fr = """Format du fichier de resultats du calcul de couvert de glace precedent. +Les valeurs possibles sont : +\begin{itemize} +\item SERAFIN : format standard simple precision pour \tel ; +\item SERAFIND: format standard double precision pour \tel. +\end{itemize}""", + ang = """Previous ice cover computation results file format. +Possible values are: +\begin{itemize} +\item SERAFIN : classical single precision format in \tel, +\item SERAFIND: classical double precision format in \tel. +\end{itemize}""", + ), +# ----------------------------------- + PREVIOUS_ICE_BLOCKS_COMPUTATION_FILE = SIMP(statut ='f', +# ----------------------------------- + typ = ('Fichier','All Files (*)'), + defaut = '', + fr = """Nom d''un fichier contenant les resultats d''un calcul Lagrangien de +couvert de blocs de glace precedent 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 ice blocks from an earlier +Lagrangian computation. The last recorded time step will provide the +initial conditions for the new computation.""", + ), +# ----------------------------------- + PREVIOUS_ICE_BLOCKS_COMPUTATION_FILE_FORMAT = SIMP(statut ='f', +# ----------------------------------- + typ = 'TXM', + into = ['SERAFIN','SERAFIND'], + defaut = 'SERAFIN', + fr = """Format du fichier de resultats Lagrangien du calcul de couvert +de glace precedent. +Les valeurs possibles sont : +\begin{itemize} +\item UNKNOWN : format non-defini simple precision pour \tel ; +\item UNKNOWND: format non-defini double precision pour \tel. +\end{itemize}""", + ang = """Previous ice cover blocks computation results file format. +Possible values are: +\begin{itemize} +\item UNKNOWN : not-yet-defined single precision format in \tel, +\item UNKNOWND: not-yet-defined double precision format in \tel. +\end{itemize}""", + ), + ), +# ----------------------------------- + INITIALIZATION = FACT(statut='f', +# ----------------------------------- +# ----------------------------------- + INITIAL_CONDITIONS = SIMP(statut ='f', +# ----------------------------------- + typ = 'TXM', + into = ['WITHOUT ICE COVER','CONSTANT ICE COVER','SPECIAL','PARTICULIERES','PARTICULAR'], + defaut = 'WITHOUT ICE COVER', + fr = """Permet de definir les conditions initiales sur le couvert de glaces. +Les valeurs possibles sont : +\begin{itemize} +\item SANS COUVERT DE GLACE ; +\item COUVERT DE GLACE CONSTANT ; +\item PARTICULIERES. Les conditions initiales sur le couvert de glace +doivent etre precisees dans le sous-programme \telfile{CONDICE}. +\end{itemize}""", + ang = """Makes it possible to define the initial conditions with ice cover. +The possible values are as follows: +\begin{itemize} +\item WITHOUT ICE COVER, +\item CONSTANT ICE COVER, +\item SPECIAL. The initial conditions with the water depth should be +stated in the \telfile{CONDICE} subroutine. +\end{itemize}""", + ), + ), +) +# ----------------------------------------------------------------------- +INTERNAL = PROC(nom= "INTERNAL",op = None, +# ----------------------------------------------------------------------- +# ----------------------------------- + DICTIONARY = SIMP(statut ='f', +# ----------------------------------- + typ = ('Fichier','All Files (*)'), + defaut = 'KHIONE.DICO', + fr = """Dictionnaire des mots cles.""", + ang = """Key word dictionary.""", + ), +) +# ----------------------------------------------------------------------- +ICE_COVER = PROC(nom= "ICE_COVER",op = None, +# ----------------------------------------------------------------------- +# ----------------------------------- + CRITICAL_VELOCITY_FOR_STATIC_BORDER_ICE = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = [0.07], + fr = """""", + ang = """""", + ), +# ----------------------------------- + CRITICAL_VELOCITY_FOR_DYNAMIC_BORDER_ICE = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = [0.4], + fr = """""", + ang = """""", + ), +# ----------------------------------- + ICE_COVER_IMPACT_ON_HYDRODYNAMIC = SIMP(statut ='f', +# ----------------------------------- + typ = bool, + defaut = [False], + fr = """Prise en compte de l''impact du couvert de glace sur +l''hydrodynamique.""", + ang = """Computation of ice cover impact on the hydrodynamic.""", + ), +# ----------------------------------- + BORDER_ICE_COVER = SIMP(statut ='f', +# ----------------------------------- + typ = bool, + defaut = [False], + fr = """Prise en compte du calcul de glace de bord statique.""", + ang = """Computation of border ice cover.""", + ), +# ----------------------------------- + PHYSICAL_PARAMETERS = FACT(statut='f', +# ----------------------------------- +# ----------------------------------- + CRITICAL_WATER_TEMPERATURE_FOR_STATIC_BORDER_ICE = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = [-1.1], + fr = """""", + ang = """""", + ), +# ----------------------------------- + CONCENTRATION_OF_SURFACE_ICE_WHEN_FORMATION = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = [1.], + fr = """""", + ang = """""", + ), +# ----------------------------------- + FRICTION = FACT(statut='f', +# ----------------------------------- +# ----------------------------------- + LAW_OF_ICE_COVER_FRICTION = SIMP(statut ='o', +# ----------------------------------- + typ = 'TXM', + into = ["NO FRICTION","HAALAND","CHEZY","STRICKLER","MANNING","NIKURADSE"], + defaut = "MANNING", + fr = """Selectionne le type de formulation utilisee pour le calcul du +frottement sous le couvert de glace. Les lois possibles sont les +suivantes (cf. Note de principe) : +\begin{itemize} +\item 0 : pas de frottement sur le fond ; +\item 1 : formule de Haaland ; +\item 2 : formule de Chezy ; +\item 3 : formule de Strickler ; +\item 4 : formule de Manning ; +\item 5 : formule de Nikuradse. +\end{itemize}""", + ang = """Selects the type of formulation used for the under ice cover friction. +The possible laws are as follows (refer to the Principle note): +\begin{itemize} +\item 0: no friction against bottom, +\item 1: Haaland formula, +\item 2: Chezy formula, +\item 3: Strickler formula, +\item 4: Manning formula, +\item 5: Nikuradse formula. +\end{itemize}""", + ), +# ----------------------------------- + FRICTION_COEFFICIENT = SIMP(statut ='o', +# ----------------------------------- + typ = 'R', + defaut = 0.04, + fr = """Fixe la valeur du coefficient de frottement pour la +formulation choisie. +Attention : la signification de ce chiffre varie suivant la formule +choisie : +\begin{itemize} +\item 1 : coefficient lineaire ; +\item 2 : coefficient de Chezy ; +\item 3 : coefficient de Strickler ; +\item 4 : coefficient de Manning ; +\item 5 : hauteur de rugosite de Nikuradse. +\end{itemize}""", + 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.): +\begin{itemize} +\item 1: linear coefficient, +\item 2: Chezy coefficient, +\item 3: Strickler coefficient, +\item 4: Manning coefficient, +\item 5: Nikuradse grain size. +\end{itemize}""", + ), +# ----------------------------------- + MAXIMAL_FRICTION_COEFFICIENT = SIMP(statut ='o', +# ----------------------------------- + typ = 'R', + defaut = 0.04, + fr = """Fixe le coefficient de frottement maximal lorsque la celui-ci depend +de l''epaisseur du couvert de glace.""", + ang = """Sets the maximal friction coefficient when it depends linearly on the +ice cover thickness.""", + ), +# ----------------------------------- + LAW_FOR_FRICTION_COEFFICIENT = SIMP(statut ='o', +# ----------------------------------- + typ = 'TXM', + into = ["CONSTANT FRICTION COEF","LINEAR FRICTION COEF"], + defaut = "CONSTANT FRICTION COEF", + fr = """Selectionne entre un coefficient de friction constant ou variable +lineairement en fonction de l''epaisseur du couvert de glace.""", + ang = """Selection between constant friction coefficient of linearly dependant +on ice cover thickness.""", + ), +# ----------------------------------- + EQUIVALENT_SURFACE_ICE_THICKNESS = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = [0.001], + fr = """""", + ang = """""", + ), + ), + ), +# ----------------------------------- + ICE_DYNAMICS = FACT(statut='f', +# ----------------------------------- +# ----------------------------------- + INCLUDE_ICE_DYNAMICS = SIMP(statut ='f', +# ----------------------------------- + typ = bool, + defaut = [False], + fr = """Active les processessus de dynamique des glaces de surfaces.""", + ang = """Switch the surface ice dynamics processes.""", + ), + ), +) +# ----------------------------------------------------------------------- +GENERAL = PROC(nom= "GENERAL",op = None, +# ----------------------------------------------------------------------- +# ----------------------------------- + SALINITY = SIMP(statut ='o', +# ----------------------------------- + typ = bool, + defaut = [False], + fr = """Ajoute la salinite et modifie le point de congelation de la glace en +fonction.""", + ang = """Add salinity tracer and modify freezing point of water accordingly.""", + ), +# ----------------------------------- + ENERGY_BALANCE_VERSION = SIMP(statut ='o', +# ----------------------------------- + typ = 'TXM', + into = ["SIMPLIFIED ENERGY BALANCE","FULL ENERGY BALANCE"], + defaut = ["SIMPLIFIED ENERGY BALANCE"], + fr = """Choix de la version du bilan energetique.""", + ang = """Choice of the energy balance version.""", + ), +# ----------------------------------- + PHYSICAL_PARAMETERS = FACT(statut='f', +# ----------------------------------- +# ----------------------------------- + AIR_DENSITY = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = 1.225, + fr = """Fixe la valeur de la masse volumique de l''air.""", + ang = """Sets the value of air density.""", + ), +# ----------------------------------- + ICE_DENSITY = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = 916.8, + fr = """Fixe la valeur de la masse volumique de la glace, en kg/m$^3$.""", + ang = """Sets the value of ice density, in kg/m$^3$.""", + ), +# ----------------------------------- + POROSITY_OF_SURFACE_ICE = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = [0.4], + fr = """""", + ang = """""", + ), +# ----------------------------------- + WATER_DENSITY = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = 999.972, + fr = """Fixe la valeur de la masse volumique de l''eau, en kg/m$^3$.""", + ang = """Sets the value of water density, in kg/m$^3$.""", + ), +# ----------------------------------- + KINEMATIC_WATER_VISCOSITY = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = 1.792E-6, + fr = """Definit la viscosite cinematique de l''eau. En m/s$^2$.""", + ang = """Specifies the water kinematic viscosity. In m/s$^2$.""", + ), + ), +) +# ----------------------------------------------------------------------- +THERMAL_BUDGET = PROC(nom= "THERMAL_BUDGET",op = None, +# ----------------------------------------------------------------------- +# ----------------------------------- + HEAT_BUDGET = SIMP(statut ='f', +# ----------------------------------- + typ = bool, + defaut = [True ], + fr = """Prise en compte des echanges thermiques dans le calcul.""", + ang = """Computation of the thermal exchanges in \khione.""", + ), +# ----------------------------------- + PHYSICAL_PARAMETERS = FACT(statut='f', +# ----------------------------------- +# ----------------------------------- + WATER_SPECIFIC_HEAT = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = [4180.], + fr = """Fixe la valeur de la chaleur specifique de l eau, en J/kg/K.""", + ang = """Sets the value of the specific heat of water, in J/kg/K.""", + ), +# ----------------------------------- + SPECIFIC_HEAT_OF_ICE = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = 2.04E+03, + fr = """Fixe la valeur de la chaleur specifique de la glace, +en J/kg/K.""", + ang = """Sets the value of the specific heat of ice, +in J/kg/K.""", + ), +# ----------------------------------- + LATENT_HEAT_OF_ICE = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = 3.34E5, + fr = """Fixe la valeur de la chaleur latente de la glace.""", + ang = """Sets the value of the latent heat of ice.""", + ), +# ----------------------------------- + WATER_AIR_HEAT_EXCHANGE_COEFFICIENT = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = [20.], + fr = """Fixe la valeur du coefficient d''echange thermique entre + l''eau et l''air.""", + ang = """Sets the heat exchange coefficient between water and air.""", + ), + ), +# ----------------------------------- + CONSTANT = FACT(statut='f', +# ----------------------------------- +# ----------------------------------- + WATER_AIR_HEAT_EXCHANGE_CONSTANT = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = [-50.], + fr = """Fixe la valeur de la constante d''echange thermique entre + l''eau et l''air.""", + ang = """Sets the heat exchange constant between water and air.""", + ), +# ----------------------------------- + ICE_AIR_HEAT_EXCHANGE_COEFFICIENT = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = [12.189], + fr = """Fixe la valeur du coefficient d''echange thermique lineaire + entre la glace et l''air.""", + ang = """Sets the linearised heat flux exchange coefficient between + ice and air.""", + ), +# ----------------------------------- + ICE_AIR_HEAT_EXCHANGE_CONSTANT = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = [-32.547], + fr = """Fixe la valeur de la constante d''echange thermique lineaire + entre la glace et l''air.""", + ang = """Sets the linearised heat flux exchange constant between ice and air.""", + ), +# ----------------------------------- + WATER_ICE_HEAT_TRANSFER_COEF__FOR_TURBULENT_FLOW = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = [1448.], + fr = """""", + ang = """""", + ), +# ----------------------------------- + WATER_ICE_HEAT_TRANSFER_COEF__FOR_SUPERCOOLED_TURBULENT_FLOW = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = [1118.], + fr = """""", + ang = """""", + ), +# ----------------------------------- + BOLTZMANN_CONSTANT__WM_2K_4_ = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = [5.67E-8], + fr = """""", + ang = """""", + ), + ), +# ----------------------------------- + CALIBRATION_COEFFICIENT = FACT(statut='f', +# ----------------------------------- +# ----------------------------------- + COEFFICIENT_FOR_CALIBRATION_OF_BACK_RADIATION = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = [1.], + fr = """Fixe la valeur du coefficient de calage du flux radiatif +entre l''atmosphere et la surface libre.""", + ang = """Sets heat flux calibration coefficient for effective back +radiation on the free surface.""", + ), +# ----------------------------------- + COEFFICIENT_FOR_CALIBRATION_OF_EVAPORATIVE_HEAT_TRANSFERT = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = [1.], + fr = """Fixe la valeur du coefficient de calage du transfert de chaleur +evaporatif entre l''atmosphere et la surface libre.""", + ang = """Sets heat flux calibration coefficient for evaporative heat +transfert between air and atmosphere.""", + ), +# ----------------------------------- + COEFFICIENT_FOR_CALIBRATION_OF_CONDUCTIVE_HEAT_TRANSFERT = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = [1.], + fr = """Fixe la valeur du coefficient de calage du transfert de chaleur +conductif entre l''atmosphere et la surface libre.""", + ang = """Sets heat flux calibration coefficient for conductive heat +transfert between air and atmosphere.""", + ), +# ----------------------------------- + COEFFICIENT_FOR_CALIBRATION_OF_PRECIPITATION_HEAT_TRANSFERT = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = [1.], + fr = """Fixe la valeur du coefficient de calage du transfert de chaleur +entre l''atmosphere et la surface libre lie aux precipitations.""", + ang = """Sets heat flux calibration coefficient for precipitation heat +transfert between air and atmosphere.""", + ), + ), +# ----------------------------------- + THERMAL_CONDUCTIVITY = FACT(statut='f', +# ----------------------------------- +# ----------------------------------- + THERMAL_CONDUCTIVITY_BETWEEN_WATER_AND_FRAZIL = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = [0.56594], + fr = """""", + ang = """""", + ), +# ----------------------------------- + THERMAL_CONDUCTIVITY_OF_BLACK_ICE = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = [2.24], + fr = """""", + ang = """""", + ), +# ----------------------------------- + THERMAL_CONDUCTIVITY_OF_SNOW = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = [0.3], + fr = """""", + ang = """""", + ), + ), +# ----------------------------------- + TURBULENCE = FACT(statut='f', +# ----------------------------------- +# ----------------------------------- + NUSSELT_NUMBER_FOR_HEAT_TRANSFER_BETWEEN_WATER_AND_ICE = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = [7.541], + fr = """""", + ang = """""", + ), + ), +# ----------------------------------- + METEOROLOGICAL_PROCESSES = FACT(statut='f', +# ----------------------------------- +# ----------------------------------- + ALBEDO_OF_ICE = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = [0.2], + fr = """Fixe la constante albedo des glaces.""", + ang = """Sets the albedo of ice.""", + ), +# ----------------------------------- + ATMOSPHERE_WATER_EXCHANGE_MODEL = SIMP(statut ='f', +# ----------------------------------- + typ = 'TXM', + into = ["LINEARISED FORMULA","MODEL WITH COMPLETE BALANCE"], + defaut = ["LINEARISED FORMULA"], + fr = """Choix du modele d echanges entre l eau et l atmosphere. +\begin{itemize} +\item 0: formule linearisee (default) ; +\item 1: modele a bilan complet. +\end{itemize}""", + ang = """Choice of the atmosphere-water exchange model. +\begin{itemize} +\item 0: linearised formula, +\item 1: model with complete balance. +\end{itemize}""", + ), +# ----------------------------------- + WIND = FACT(statut='f', +# ----------------------------------- +# ----------------------------------- + HEIGHT_OF_MEASURED_WIND = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = [4.5], + fr = """Fixe la valeur de la hauteur a laquelle le vent est mesure, en metres.""", + ang = """Sets the height at which the wind is measured, in meters.""", + ), + ), +# ----------------------------------- + SUN = FACT(statut='f', +# ----------------------------------- +# ----------------------------------- + RELATIVE_MODEL_ELEVATION_FROM_MEAN_SEA_LEVEL = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = [0.], + fr = """Fixe l''elevation du modele relative au niveau moyen des oceans.""", + ang = """Sets the relative model elevation from mean sea level.""", + ), +# ----------------------------------- + SUN_SET_ANGLE = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = [180.], + fr = """Fixe l''angle du soleil couchant, 180 degres pour l''horizontale.""", + ang = """Sets the sun set angle, 180 degrees for the horizontal.""", + ), +# ----------------------------------- + SUN_RISE_ANGLE = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = [0.], + fr = """Fixe l''angle du soleil levant, 0 degres pour l''horizontale.""", + ang = """Sets the sun rise angle, 0 degrees for the horizontal.""", + ), +# ----------------------------------- + SOLAR_CONSTANT = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = [1380.], + fr = """Fixe la constante solaire.""", + ang = """Sets the solar constant. +The solar constant, a measure of flux density, is the mean solar +electromagnetic radiation (the solar irradiance) per unit area that +would be incident on a plane perpendicular to the rays, at a distance +of one astronomical unit (AU) from the Sun (roughly the mean distance +from the Sun to the Earth). The solar constant includes all types of +solar radiation, not just the visible light. It is measured by +satellite as being 1.361 kilowatts per square meter (kW/m$^2$) at solar +minimum and approximately 0.1~\% greater (roughly 1.362 kW/m$^2$) at +solar maximum. +The solar "constant" is not a physical constant in scientific +sense; that is, it is not like the Planck constant or the speed of +light, which are absolutely constant in physics. The solar constant is +merely an average of the actually varying value. It has been shown to +vary in the past 400 years over a range of less than 0.2~\%.""", + ), + ), +# ----------------------------------- + AIR = FACT(statut='f', +# ----------------------------------- +# ----------------------------------- + DEWPOINT_TEMPERATURE = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = [0.], + fr = """En $^{\circ}$C, temperature de rosee lorsque celle-ci n est pas deja +donnee dans un des fichiers meteo.""", + ang = """In $^{\circ}$C, dewpoint temperature used when it is not already +provided within one of the meteo files.""", + ), +# ----------------------------------- + VISIBILITY = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = [1.E13], + fr = """En metres, visibilite lorsque celle-ci n est pas deja donnee +dans un des fichiers meteo.""", + ang = """In meters, visibility used when it is not already provided +within one of the meteo files.""", + ), + ), +# ----------------------------------- + POSITION = FACT(statut='f', +# ----------------------------------- +# ----------------------------------- + GLOBAL_LONGITUDE__IN_DEGREES = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = [75.], + fr = """Fixe la longitude globale, en degres.""", + ang = """Sets the global longitude, in degrees.""", + ), +# ----------------------------------- + LOCAL_LONGITUDE__IN__DEGREES = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = [75.43], + fr = """Fixe la longitude locale, en degres.""", + ang = """Sets the local longitude, in degrees.""", + ), +# ----------------------------------- + EAST_OR_WEST_LONGITUDE = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = [-1.], + fr = """-1., pour les longitudes ouest; +1. pour les longitude est.""", + ang = """-1., for west longitudes; +1. for east longitudes""", + ), + ), + ), +) +# ----------------------------------------------------------------------- +FRAZIL = PROC(nom= "FRAZIL",op = None, +# ----------------------------------------------------------------------- +# ----------------------------------- + SCHEME_OPTION_FOR_THERMAL_GROWTH = SIMP(statut ='o', +# ----------------------------------- + typ = 'TXM', + into = ["EXPLICIT TIME SCHEME","SEMI-IMPLICIT TIME SCHEME"], + defaut = ["EXPLICIT TIME SCHEME"], + fr = """Choix du schema d''integration en temps pour le terme source +de croissance thermique de frasil.""", + ang = """Time integration option for the frazil thermal growth source term.""", + ), +# ----------------------------------- + MODEL_FOR_THE_SECONDARY_NUCLEATION = SIMP(statut ='o', +# ----------------------------------- + typ = 'TXM', + into = ["NO SECONDARY NUCLEATION","SVENSSON AND OMSTEDT 1994","WANG AND DOERING 2005"], + defaut = ["SVENSSON AND OMSTEDT 1994"], + fr = """Choix du modele de nucleation secondaire, +valable uniquement pour le modele multi-classes.""", + ang = """Choice of the model for secondary nucleation, +only for multi-class model.""", + ), +# ----------------------------------- + SECONDARY_NUCLEATION_NMAX_PARAMETER = SIMP(statut ='o', +# ----------------------------------- + typ = 'R', + defaut = [1.E3], + fr = """Choix du parametre NMAX pour la nucleation secondaire.""", + ang = """Choice of secondary nucleation NMAX parameter.""", + ), +# ----------------------------------- + MODEL_FOR_THE_FLOCCULATION_AND_BREAKUP = SIMP(statut ='o', +# ----------------------------------- + typ = 'TXM', + into = ["NO FLOCCULATION","SVENSSON AND OMSTEDT 1994"], + defaut = ["SVENSSON AND OMSTEDT 1994"], + fr = """Choix du modele de floculation et rupture, +valable uniquement pour le modele multi-classes.""", + ang = """Choice of the model for flocculation and breakup, +only for multi-class model.""", + ), +# ----------------------------------- + FLOCCULATION_AFLOC_PARAMETER = SIMP(statut ='o', +# ----------------------------------- + typ = 'R', + defaut = [1.E3], + fr = """Choix du parametre \telfile{AFLOC} pour la floculation.""", + ang = """Choice of flocculation \telfile{AFLOC} parameter.""", + ), +# ----------------------------------- + MODEL_FOR_FRAZIL_SEEDING = SIMP(statut ='o', +# ----------------------------------- + typ = 'TXM', + into = ["NO SEEDING","MINIMUM CONC. THRESHOLD","CONSTANT SEEDING RATE","BOTH OPTIONS 1 AND 2"], + defaut = ["MINIMUM CONC. THRESHOLD"], + fr = """Choix du modele d''ensemencement du frasil.""", + ang = """Choice of the model for frazil seeding.""", + ), +# ----------------------------------- + PHYSICAL_PARAMETERS = FACT(statut='f', +# ----------------------------------- +# ----------------------------------- + NUMBER_OF_CLASSES_FOR_SUSPENDED_FRAZIL_ICE = SIMP(statut ='f', +# ----------------------------------- + typ = 'I', + defaut = [1], + fr = """Fixe le nombre de classes de particules de frasil en suspension.""", + ang = """Sets the number of classes of suspended frazil ice granules.""", + ), +# ----------------------------------- + FRAZIL_CRYSTALS_RADIUS = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', min=0, max='**', + defaut = [1.E-4], + fr = """""", + ang = """""", + ), +# ----------------------------------- + FRAZIL_CRYSTALS_DIAMETER_THICKNESS_RATIO = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = [10.], + fr = """""", + ang = """""", + ), +# ----------------------------------- + MODEL_FOR_THE_BUOYANCY_VELOCITY = SIMP(statut ='f', +# ----------------------------------- + typ = 'TXM', + into = ["DALY (1984)","DALY INTERMEDIATE (1984)","MATOUSEK (1992)","GOSIK & OSTERKAMP (1983)"], + defaut = ["DALY (1984)"], + fr = """""", + ang = """""", + ), +# ----------------------------------- + FREEZING_POINT_OF_WATER = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = [0.], + fr = """""", + ang = """""", + ), +# ----------------------------------- + CHANNEL_WIDTH_FOR_THE_COMPUTATION_OF_SURFACE_TEMPERATURE = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = [15.], + fr = """""", + ang = """""", + ), +# ----------------------------------- + FRAZIL_SEEDING_RATE = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = [50.], + fr = """Nombre de cristaux par unite de volume ajoutees par seconde.""", + ang = """Number of crystals per unit volume added per second.""", + ), +# ----------------------------------- + MINIMUM_NUMBER_OF_FRAZIL_CRYSTALS = SIMP(statut ='f', +# ----------------------------------- + typ = 'I', + defaut = [1000], + fr = """Nombre minimum de cristaux par unite de volume.""", + ang = """Minimum number of crystals per unit volume.""", + ), + ), +# ----------------------------------- + CALIBRATION_COEFFICIENT = FACT(statut='f', +# ----------------------------------- +# ----------------------------------- + SETTLING_COEFFICIENT_OF_FRAZIL_ON_BARS = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = [1.], + fr = """""", + ang = """""", + ), + ), +# ----------------------------------- + TURBULENCE = FACT(statut='f', +# ----------------------------------- +# ----------------------------------- + NUSSELT_NUMBER = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = [4.], + fr = """""", + ang = """""", + ), +# ----------------------------------- + MODEL_FOR_THE_NUSSELT_NUMBER = SIMP(statut ='f', +# ----------------------------------- + typ = 'TXM', + into = ["WADIA (1974) AND BATCHELOR (1980)","CONSTANT NUSSELT NUMBER"], + defaut = ["WADIA (1974) AND BATCHELOR (1980)"], + fr = """""", + ang = """""", + ), +# ----------------------------------- + MODEL_FOR_ESTIMATION_OF_TURBULENCE_PARAMETERS = SIMP(statut ='o', +# ----------------------------------- + typ = 'TXM', + into = ["CONSTANT VALUES","MIXING LENGTH MODEL","K-EPS MODEL OF TELEMAC-2D"], + defaut = ["CONSTANT VALUES"], + fr = """\begin{itemize} +\item 0: valeurs constantes fixees par defaut dans le code ; +\item 1: valeurs estimees a partir d''une integration verticale +du modele de longueur de melange ; +\item 2: valeurs calculees et donnees par \telemac{2D}. +\end{itemize}""", + ang = """\begin{itemize} +\item 0: constant values set in the code, +\item 1: values estimated from vertical integration of a mixed length +model, +\item 2: values computed and given by \telemac{2D}. +\end{itemize}""", + ), + ), +# ----------------------------------- + PRECIPITATION = FACT(statut='f', +# ----------------------------------- +# ----------------------------------- + FRAZIL_PRECIPITATION = SIMP(statut ='o', +# ----------------------------------- + typ = bool, + defaut = [False], + fr = """Prise en compte de le precipitation du frasil.""", + ang = """Computation of the frazil precipitation.""", + ), + ), +) +# ----------------------------------------------------------------------- +CLOGGING = PROC(nom= "CLOGGING",op = None, +# ----------------------------------------------------------------------- +# ----------------------------------- + CLOGGING_ON_BARS = SIMP(statut ='f', +# ----------------------------------- + typ = bool, + defaut = [False], + fr = """Prise en compte de l''impact du colmatage sur les grilles.""", + ang = """Computation of clogging on grid.""", + ), +# ----------------------------------- + PHYSICAL_PARAMETERS = FACT(statut='f', +# ----------------------------------- +# ----------------------------------- + GLACE = FACT(statut='f', +# ----------------------------------- +# ----------------------------------- + POROSITY_OF_ACCUMULATED_ICE = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = [0.67], + fr = """""", + ang = """""", + ), +# ----------------------------------- + ANGLE_OF_ACCUMULATED_ICE = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = [35.], + fr = """""", + ang = """""", + ), + ), +# ----------------------------------- + GRID = FACT(statut='f', +# ----------------------------------- +# ----------------------------------- + PHYSICAL_CHARACTERISTICS_OF_THE_INTAKE_RACK = SIMP(statut ='o', +# ----------------------------------- + typ = 'R', min= 4, max= 4, + defaut = [0.06,0.01,0.06,0.01], + fr = """Caracteristiques des barres verticales et horizontales, dans l ordre : +\begin{itemize} +\item 1 : distance entre les centres des barres transversales ; +\item 2 : diametre des barres transversales ; +\item 3 : distance verticale entre les centres des barres verticales ; +\item 4 : diametre des barres verticales. +\end{itemize} +Un diametre de zero pour un certain groupe de barres entrainera la + supression des barres de ce groupe.""", + ang = """Characteristics of vertical and transverse bars, in order of +appearance: +\begin{itemize} +\item 1: distance between the centre of the transverse bars, +\item 2: diameter of the transverse bars, +\item 3: distance between the centre of the vertical bars, +\item 4: diameter of the vertical bars. +\end{itemize} +A zero diameter for one particular set of bars will result in not + having those bars on the rack.""", + ), + ), + ), +# ----------------------------------- + BOUNDARIES_CONDITION = FACT(statut='f', +# ----------------------------------- +# ----------------------------------- + CLOGGED_BOUNDARY_NUMBERS = SIMP(statut ='f', +# ----------------------------------- + typ = 'I', + defaut = 0, + fr = """Liste des numeros de frontieres liquides ou des grilles de prises +d''eau sont presentes.""", + ang = """List of liquid boundary numbers where intake racks are present.""", + ), +# ----------------------------------- + CLOGGED_SECTIONS = SIMP(statut ='f', +# ----------------------------------- + typ = 'I', min=0, max='**', + defaut = [0], + fr = """Liste des noeuds composant les sections sur lequelles +on a une grille potentiellement colmatee, vont par paire : +sec1\_depart;sec1\_arrivee;sec2\_depart;sec2\_arrivee;...""", + ang = """List of nodes on which the sections represent +a clogged rack, goes by couple: +sec1\_start;sec1\_end;sec2\_start;sec2\_end;...""", + ), + ), +) +# ----------------------------------------------------------------------- +NUMERICAL_PARAMETERS = PROC(nom= "NUMERICAL_PARAMETERS",op = None, +# ----------------------------------------------------------------------- +# ----------------------------------- + AUTOMATIC_DIFFERENTIATION = FACT(statut='f', +# ----------------------------------- +# ----------------------------------- + AD_NUMBER_OF_DERIVATIVES = SIMP(statut ='o', +# ----------------------------------- + typ = 'I', + defaut = 0, + fr = """Definit le nombre de derivees utilisateurs, dans le cadre +de la differentiation algorithmique.""", + ang = """Defines the number of user derivatives, within the framework +of the algorithmic differentiation.""", + ), +# ----------------------------------- + AD_NAMES_OF_DERIVATIVES = SIMP(statut ='o', +# ----------------------------------- + typ = 'TXM', min= 2, max= 2, + fr = """Noms des derivees utilisateurs en 32 caracteres, +16 pour le nom, 16 pour l''unite.""", + ang = """Name of user derivatives in 32 characters, +16 for the name, 16 for the unit.""", + ), + ), +) +TEXTE_NEW_JDC = "\ +" +Ordre_Des_Commandes = ( +'COMPUTATION_ENVIRONMENT', +'INTERNAL', +'ICE_COVER', +'GENERAL', +'THERMAL_BUDGET', +'FRAZIL', +'CLOGGING', +'NUMERICAL_PARAMETERS') +try: + import TelApy + source = "eficas" +except Exception as excpt: + source = "Telemac" +enum = source+'.khione_enum_auto' +dicoCasEn = source+'.khione_dicoCasEnToCata' +dicoCasFr = source+'.khione_dicoCasFrToCata' diff --git a/Telemac/khione_dicoCasEnToCata.py b/Telemac/khione_dicoCasEnToCata.py new file mode 100644 index 00000000..e3fb9613 --- /dev/null +++ b/Telemac/khione_dicoCasEnToCata.py @@ -0,0 +1,206 @@ +dicoCataToEngTelemac = { + "STEERING_FILE" : "STEERING FILE", + "FORTRAN_FILE" : "FORTRAN FILE", + "TITLE" : "TITLE", + "BOUNDARY_CONDITIONS_FILE" : "BOUNDARY CONDITIONS FILE", + "GEOMETRY_FILE" : "GEOMETRY FILE", + "GEOMETRY_FILE_FORMAT" : "GEOMETRY FILE FORMAT", + "REFERENCE_FILE" : "REFERENCE FILE", + "REFERENCE_FILE_FORMAT" : "REFERENCE FILE FORMAT", + "RESULTS_FILE" : "RESULTS FILE", + "RESULTS_FILE_FORMAT" : "RESULTS FILE FORMAT", + "PREVIOUS_ICE_COVER_COMPUTATION_FILE" : "PREVIOUS ICE COVER COMPUTATION FILE", + "PREVIOUS_ICE_COVER_COMPUTATION_FILE_FORMAT" : "PREVIOUS ICE COVER COMPUTATION FILE FORMAT", + "PREVIOUS_ICE_BLOCKS_COMPUTATION_FILE" : "PREVIOUS ICE BLOCKS COMPUTATION FILE", + "PREVIOUS_ICE_BLOCKS_COMPUTATION_FILE_FORMAT" : "PREVIOUS ICE BLOCKS COMPUTATION FILE FORMAT", + "DICTIONARY" : "DICTIONARY", + "INITIAL_CONDITIONS" : "INITIAL CONDITIONS", + "VARIABLES_FOR_GRAPHIC_PRINTOUTS" : "VARIABLES FOR GRAPHIC PRINTOUTS", + "VARIABLES_TO_BE_PRINTED" : "VARIABLES TO BE PRINTED", + "GRAPHIC_PRINTOUT_PERIOD" : "GRAPHIC PRINTOUT PERIOD", + "LISTING_PRINTOUT_PERIOD" : "LISTING PRINTOUT PERIOD", + "MASS_BALANCE" : "MASS-BALANCE", + "VALIDATION" : "VALIDATION", + "LAW_OF_ICE_COVER_FRICTION" : "LAW OF ICE COVER FRICTION", + "FRICTION_COEFFICIENT" : "FRICTION COEFFICIENT", + "MAXIMAL_FRICTION_COEFFICIENT" : "MAXIMAL FRICTION COEFFICIENT", + "LAW_FOR_FRICTION_COEFFICIENT" : "LAW FOR FRICTION COEFFICIENT", + "EQUIVALENT_SURFACE_ICE_THICKNESS" : "EQUIVALENT SURFACE ICE THICKNESS", + "AIR_DENSITY" : "AIR DENSITY", + "ICE_DENSITY" : "ICE DENSITY", + "WATER_SPECIFIC_HEAT" : "WATER SPECIFIC HEAT", + "SPECIFIC_HEAT_OF_ICE" : "SPECIFIC HEAT OF ICE", + "LATENT_HEAT_OF_ICE" : "LATENT HEAT OF ICE", + "WATER_AIR_HEAT_EXCHANGE_COEFFICIENT" : "WATER-AIR HEAT EXCHANGE COEFFICIENT", + "WATER_AIR_HEAT_EXCHANGE_CONSTANT" : "WATER-AIR HEAT EXCHANGE CONSTANT", + "ICE_AIR_HEAT_EXCHANGE_COEFFICIENT" : "ICE-AIR HEAT EXCHANGE COEFFICIENT", + "ICE_AIR_HEAT_EXCHANGE_CONSTANT" : "ICE-AIR HEAT EXCHANGE CONSTANT", + "COEFFICIENT_FOR_CALIBRATION_OF_BACK_RADIATION" : "COEFFICIENT FOR CALIBRATION OF BACK RADIATION", + "COEFFICIENT_FOR_CALIBRATION_OF_EVAPORATIVE_HEAT_TRANSFERT" : "COEFFICIENT FOR CALIBRATION OF EVAPORATIVE HEAT TRANSFERT", + "COEFFICIENT_FOR_CALIBRATION_OF_CONDUCTIVE_HEAT_TRANSFERT" : "COEFFICIENT FOR CALIBRATION OF CONDUCTIVE HEAT TRANSFERT", + "COEFFICIENT_FOR_CALIBRATION_OF_PRECIPITATION_HEAT_TRANSFERT" : "COEFFICIENT FOR CALIBRATION OF PRECIPITATION HEAT TRANSFERT", + "THERMAL_CONDUCTIVITY_BETWEEN_WATER_AND_FRAZIL" : "THERMAL CONDUCTIVITY BETWEEN WATER AND FRAZIL", + "THERMAL_CONDUCTIVITY_OF_BLACK_ICE" : "THERMAL CONDUCTIVITY OF BLACK ICE", + "THERMAL_CONDUCTIVITY_OF_SNOW" : "THERMAL CONDUCTIVITY OF SNOW", + "POROSITY_OF_SURFACE_ICE" : "POROSITY OF SURFACE ICE", + "NUMBER_OF_CLASSES_FOR_SUSPENDED_FRAZIL_ICE" : "NUMBER OF CLASSES FOR SUSPENDED FRAZIL ICE", + "NUSSELT_NUMBER" : "NUSSELT NUMBER", + "MODEL_FOR_THE_NUSSELT_NUMBER" : "MODEL FOR THE NUSSELT NUMBER", + "FRAZIL_CRYSTALS_RADIUS" : "FRAZIL CRYSTALS RADIUS", + "FRAZIL_CRYSTALS_DIAMETER_THICKNESS_RATIO" : "FRAZIL CRYSTALS DIAMETER THICKNESS RATIO", + "MODEL_FOR_THE_BUOYANCY_VELOCITY" : "MODEL FOR THE BUOYANCY VELOCITY", + "SETTLING_COEFFICIENT_OF_FRAZIL_ON_BARS" : "SETTLING COEFFICIENT OF FRAZIL ON BARS", + "POROSITY_OF_ACCUMULATED_ICE" : "POROSITY OF ACCUMULATED ICE", + "ANGLE_OF_ACCUMULATED_ICE" : "ANGLE OF ACCUMULATED ICE", + "PHYSICAL_CHARACTERISTICS_OF_THE_INTAKE_RACK" : "PHYSICAL CHARACTERISTICS OF THE INTAKE RACK", + "CLOGGED_BOUNDARY_NUMBERS" : "CLOGGED BOUNDARY NUMBERS", + "CLOGGED_SECTIONS" : "CLOGGED SECTIONS", + "CLOGGING_RESULTS_FILE" : "CLOGGING RESULTS FILE", + "CRITICAL_VELOCITY_FOR_STATIC_BORDER_ICE" : "CRITICAL VELOCITY FOR STATIC BORDER ICE", + "CRITICAL_VELOCITY_FOR_DYNAMIC_BORDER_ICE" : "CRITICAL VELOCITY FOR DYNAMIC BORDER ICE", + "HEIGHT_OF_MEASURED_WIND" : "HEIGHT OF MEASURED WIND", + "RELATIVE_MODEL_ELEVATION_FROM_MEAN_SEA_LEVEL" : "RELATIVE MODEL ELEVATION FROM MEAN SEA LEVEL", + "SUN_SET_ANGLE" : "SUN SET ANGLE", + "SUN_RISE_ANGLE" : "SUN RISE ANGLE", + "SOLAR_CONSTANT" : "SOLAR CONSTANT", + "ALBEDO_OF_ICE" : "ALBEDO OF ICE", + "DEWPOINT_TEMPERATURE" : "DEWPOINT TEMPERATURE", + "VISIBILITY" : "VISIBILITY", + "GLOBAL_LONGITUDE__IN_DEGREES" : "GLOBAL LONGITUDE, IN DEGREES", + "LOCAL_LONGITUDE__IN__DEGREES" : "LOCAL LONGITUDE, IN DEGREES", + "EAST_OR_WEST_LONGITUDE" : "EAST OR WEST LONGITUDE", + "INCLUDE_ICE_DYNAMICS" : "INCLUDE ICE DYNAMICS", + "AD_NUMBER_OF_DERIVATIVES" : "AD NUMBER OF DERIVATIVES", + "AD_NAMES_OF_DERIVATIVES" : "AD NAMES OF DERIVATIVES", + "WATER_DENSITY" : "WATER DENSITY", + "KINEMATIC_WATER_VISCOSITY" : "KINEMATIC WATER VISCOSITY", + "WATER_ICE_HEAT_TRANSFER_COEF__FOR_TURBULENT_FLOW" : "WATER-ICE HEAT TRANSFER COEF. FOR TURBULENT FLOW", + "WATER_ICE_HEAT_TRANSFER_COEF__FOR_SUPERCOOLED_TURBULENT_FLOW" : "WATER-ICE HEAT TRANSFER COEF. FOR SUPERCOOLED TURBULENT FLOW", + "NUSSELT_NUMBER_FOR_HEAT_TRANSFER_BETWEEN_WATER_AND_ICE" : "NUSSELT NUMBER FOR HEAT TRANSFER BETWEEN WATER AND ICE", + "BOLTZMANN_CONSTANT__WM_2K_4_" : "BOLTZMANN CONSTANT (WM-2K-4)", + "FREEZING_POINT_OF_WATER" : "FREEZING POINT OF WATER", + "CRITICAL_WATER_TEMPERATURE_FOR_STATIC_BORDER_ICE" : "CRITICAL WATER TEMPERATURE FOR STATIC BORDER ICE", + "CHANNEL_WIDTH_FOR_THE_COMPUTATION_OF_SURFACE_TEMPERATURE" : "CHANNEL WIDTH FOR THE COMPUTATION OF SURFACE TEMPERATURE", + "CONCENTRATION_OF_SURFACE_ICE_WHEN_FORMATION" : "CONCENTRATION OF SURFACE ICE WHEN FORMATION", + "PARALLEL_PROCESSORS" : "PARALLEL PROCESSORS", + "HEAT_BUDGET" : "HEAT BUDGET", + "ICE_COVER_IMPACT_ON_HYDRODYNAMIC" : "ICE COVER IMPACT ON HYDRODYNAMIC", + "CLOGGING_ON_BARS" : "CLOGGING ON BARS", + "BORDER_ICE_COVER" : "BORDER ICE COVER", + "SALINITY" : "SALINITY", + "ENERGY_BALANCE_VERSION" : "ENERGY BALANCE VERSION", + "SCHEME_OPTION_FOR_THERMAL_GROWTH" : "SCHEME OPTION FOR THERMAL GROWTH", + "MODEL_FOR_THE_SECONDARY_NUCLEATION" : "MODEL FOR THE SECONDARY NUCLEATION", + "SECONDARY_NUCLEATION_NMAX_PARAMETER" : "SECONDARY NUCLEATION NMAX PARAMETER", + "MODEL_FOR_THE_FLOCCULATION_AND_BREAKUP" : "MODEL FOR THE FLOCCULATION AND BREAKUP", + "FLOCCULATION_AFLOC_PARAMETER" : "FLOCCULATION AFLOC PARAMETER", + "MODEL_FOR_FRAZIL_SEEDING" : "MODEL FOR FRAZIL SEEDING", + "FRAZIL_SEEDING_RATE" : "FRAZIL SEEDING RATE", + "MINIMUM_NUMBER_OF_FRAZIL_CRYSTALS" : "MINIMUM NUMBER OF FRAZIL CRYSTALS", + "ATMOSPHERE_WATER_EXCHANGE_MODEL" : "ATMOSPHERE-WATER EXCHANGE MODEL", + "MODEL_FOR_ESTIMATION_OF_TURBULENCE_PARAMETERS" : "MODEL FOR ESTIMATION OF TURBULENCE PARAMETERS", + "FRAZIL_PRECIPITATION" : "FRAZIL PRECIPITATION", +} +dicoCasEnToCata = { + "STEERING FILE" : "STEERING_FILE", + "FORTRAN FILE" : "FORTRAN_FILE", + "TITLE" : "TITLE", + "BOUNDARY CONDITIONS FILE" : "BOUNDARY_CONDITIONS_FILE", + "GEOMETRY FILE" : "GEOMETRY_FILE", + "GEOMETRY FILE FORMAT" : "GEOMETRY_FILE_FORMAT", + "REFERENCE FILE" : "REFERENCE_FILE", + "REFERENCE FILE FORMAT" : "REFERENCE_FILE_FORMAT", + "RESULTS FILE" : "RESULTS_FILE", + "RESULTS FILE FORMAT" : "RESULTS_FILE_FORMAT", + "PREVIOUS ICE COVER COMPUTATION FILE" : "PREVIOUS_ICE_COVER_COMPUTATION_FILE", + "PREVIOUS ICE COVER COMPUTATION FILE FORMAT" : "PREVIOUS_ICE_COVER_COMPUTATION_FILE_FORMAT", + "PREVIOUS ICE BLOCKS COMPUTATION FILE" : "PREVIOUS_ICE_BLOCKS_COMPUTATION_FILE", + "PREVIOUS ICE BLOCKS COMPUTATION FILE FORMAT" : "PREVIOUS_ICE_BLOCKS_COMPUTATION_FILE_FORMAT", + "DICTIONARY" : "DICTIONARY", + "INITIAL CONDITIONS" : "INITIAL_CONDITIONS", + "VARIABLES FOR GRAPHIC PRINTOUTS" : "VARIABLES_FOR_GRAPHIC_PRINTOUTS", + "VARIABLES TO BE PRINTED" : "VARIABLES_TO_BE_PRINTED", + "GRAPHIC PRINTOUT PERIOD" : "GRAPHIC_PRINTOUT_PERIOD", + "LISTING PRINTOUT PERIOD" : "LISTING_PRINTOUT_PERIOD", + "MASS-BALANCE" : "MASS_BALANCE", + "VALIDATION" : "VALIDATION", + "LAW OF ICE COVER FRICTION" : "LAW_OF_ICE_COVER_FRICTION", + "FRICTION COEFFICIENT" : "FRICTION_COEFFICIENT", + "MAXIMAL FRICTION COEFFICIENT" : "MAXIMAL_FRICTION_COEFFICIENT", + "LAW FOR FRICTION COEFFICIENT" : "LAW_FOR_FRICTION_COEFFICIENT", + "EQUIVALENT SURFACE ICE THICKNESS" : "EQUIVALENT_SURFACE_ICE_THICKNESS", + "AIR DENSITY" : "AIR_DENSITY", + "ICE DENSITY" : "ICE_DENSITY", + "WATER SPECIFIC HEAT" : "WATER_SPECIFIC_HEAT", + "SPECIFIC HEAT OF ICE" : "SPECIFIC_HEAT_OF_ICE", + "LATENT HEAT OF ICE" : "LATENT_HEAT_OF_ICE", + "WATER-AIR HEAT EXCHANGE COEFFICIENT" : "WATER_AIR_HEAT_EXCHANGE_COEFFICIENT", + "WATER-AIR HEAT EXCHANGE CONSTANT" : "WATER_AIR_HEAT_EXCHANGE_CONSTANT", + "ICE-AIR HEAT EXCHANGE COEFFICIENT" : "ICE_AIR_HEAT_EXCHANGE_COEFFICIENT", + "ICE-AIR HEAT EXCHANGE CONSTANT" : "ICE_AIR_HEAT_EXCHANGE_CONSTANT", + "COEFFICIENT FOR CALIBRATION OF BACK RADIATION" : "COEFFICIENT_FOR_CALIBRATION_OF_BACK_RADIATION", + "COEFFICIENT FOR CALIBRATION OF EVAPORATIVE HEAT TRANSFERT" : "COEFFICIENT_FOR_CALIBRATION_OF_EVAPORATIVE_HEAT_TRANSFERT", + "COEFFICIENT FOR CALIBRATION OF CONDUCTIVE HEAT TRANSFERT" : "COEFFICIENT_FOR_CALIBRATION_OF_CONDUCTIVE_HEAT_TRANSFERT", + "COEFFICIENT FOR CALIBRATION OF PRECIPITATION HEAT TRANSFERT" : "COEFFICIENT_FOR_CALIBRATION_OF_PRECIPITATION_HEAT_TRANSFERT", + "THERMAL CONDUCTIVITY BETWEEN WATER AND FRAZIL" : "THERMAL_CONDUCTIVITY_BETWEEN_WATER_AND_FRAZIL", + "THERMAL CONDUCTIVITY OF BLACK ICE" : "THERMAL_CONDUCTIVITY_OF_BLACK_ICE", + "THERMAL CONDUCTIVITY OF SNOW" : "THERMAL_CONDUCTIVITY_OF_SNOW", + "POROSITY OF SURFACE ICE" : "POROSITY_OF_SURFACE_ICE", + "NUMBER OF CLASSES FOR SUSPENDED FRAZIL ICE" : "NUMBER_OF_CLASSES_FOR_SUSPENDED_FRAZIL_ICE", + "NUSSELT NUMBER" : "NUSSELT_NUMBER", + "MODEL FOR THE NUSSELT NUMBER" : "MODEL_FOR_THE_NUSSELT_NUMBER", + "FRAZIL CRYSTALS RADIUS" : "FRAZIL_CRYSTALS_RADIUS", + "FRAZIL CRYSTALS DIAMETER THICKNESS RATIO" : "FRAZIL_CRYSTALS_DIAMETER_THICKNESS_RATIO", + "MODEL FOR THE BUOYANCY VELOCITY" : "MODEL_FOR_THE_BUOYANCY_VELOCITY", + "SETTLING COEFFICIENT OF FRAZIL ON BARS" : "SETTLING_COEFFICIENT_OF_FRAZIL_ON_BARS", + "POROSITY OF ACCUMULATED ICE" : "POROSITY_OF_ACCUMULATED_ICE", + "ANGLE OF ACCUMULATED ICE" : "ANGLE_OF_ACCUMULATED_ICE", + "PHYSICAL CHARACTERISTICS OF THE INTAKE RACK" : "PHYSICAL_CHARACTERISTICS_OF_THE_INTAKE_RACK", + "CLOGGED BOUNDARY NUMBERS" : "CLOGGED_BOUNDARY_NUMBERS", + "CLOGGED SECTIONS" : "CLOGGED_SECTIONS", + "CLOGGING RESULTS FILE" : "CLOGGING_RESULTS_FILE", + "CRITICAL VELOCITY FOR STATIC BORDER ICE" : "CRITICAL_VELOCITY_FOR_STATIC_BORDER_ICE", + "CRITICAL VELOCITY FOR DYNAMIC BORDER ICE" : "CRITICAL_VELOCITY_FOR_DYNAMIC_BORDER_ICE", + "HEIGHT OF MEASURED WIND" : "HEIGHT_OF_MEASURED_WIND", + "RELATIVE MODEL ELEVATION FROM MEAN SEA LEVEL" : "RELATIVE_MODEL_ELEVATION_FROM_MEAN_SEA_LEVEL", + "SUN SET ANGLE" : "SUN_SET_ANGLE", + "SUN RISE ANGLE" : "SUN_RISE_ANGLE", + "SOLAR CONSTANT" : "SOLAR_CONSTANT", + "ALBEDO OF ICE" : "ALBEDO_OF_ICE", + "DEWPOINT TEMPERATURE" : "DEWPOINT_TEMPERATURE", + "VISIBILITY" : "VISIBILITY", + "GLOBAL LONGITUDE, IN DEGREES" : "GLOBAL_LONGITUDE__IN_DEGREES", + "LOCAL LONGITUDE, IN DEGREES" : "LOCAL_LONGITUDE__IN__DEGREES", + "EAST OR WEST LONGITUDE" : "EAST_OR_WEST_LONGITUDE", + "INCLUDE ICE DYNAMICS" : "INCLUDE_ICE_DYNAMICS", + "AD NUMBER OF DERIVATIVES" : "AD_NUMBER_OF_DERIVATIVES", + "AD NAMES OF DERIVATIVES" : "AD_NAMES_OF_DERIVATIVES", + "WATER DENSITY" : "WATER_DENSITY", + "KINEMATIC WATER VISCOSITY" : "KINEMATIC_WATER_VISCOSITY", + "WATER-ICE HEAT TRANSFER COEF. FOR TURBULENT FLOW" : "WATER_ICE_HEAT_TRANSFER_COEF__FOR_TURBULENT_FLOW", + "WATER-ICE HEAT TRANSFER COEF. FOR SUPERCOOLED TURBULENT FLOW" : "WATER_ICE_HEAT_TRANSFER_COEF__FOR_SUPERCOOLED_TURBULENT_FLOW", + "NUSSELT NUMBER FOR HEAT TRANSFER BETWEEN WATER AND ICE" : "NUSSELT_NUMBER_FOR_HEAT_TRANSFER_BETWEEN_WATER_AND_ICE", + "BOLTZMANN CONSTANT (WM-2K-4)" : "BOLTZMANN_CONSTANT__WM_2K_4_", + "FREEZING POINT OF WATER" : "FREEZING_POINT_OF_WATER", + "CRITICAL WATER TEMPERATURE FOR STATIC BORDER ICE" : "CRITICAL_WATER_TEMPERATURE_FOR_STATIC_BORDER_ICE", + "CHANNEL WIDTH FOR THE COMPUTATION OF SURFACE TEMPERATURE" : "CHANNEL_WIDTH_FOR_THE_COMPUTATION_OF_SURFACE_TEMPERATURE", + "CONCENTRATION OF SURFACE ICE WHEN FORMATION" : "CONCENTRATION_OF_SURFACE_ICE_WHEN_FORMATION", + "PARALLEL PROCESSORS" : "PARALLEL_PROCESSORS", + "HEAT BUDGET" : "HEAT_BUDGET", + "ICE COVER IMPACT ON HYDRODYNAMIC" : "ICE_COVER_IMPACT_ON_HYDRODYNAMIC", + "CLOGGING ON BARS" : "CLOGGING_ON_BARS", + "BORDER ICE COVER" : "BORDER_ICE_COVER", + "SALINITY" : "SALINITY", + "ENERGY BALANCE VERSION" : "ENERGY_BALANCE_VERSION", + "SCHEME OPTION FOR THERMAL GROWTH" : "SCHEME_OPTION_FOR_THERMAL_GROWTH", + "MODEL FOR THE SECONDARY NUCLEATION" : "MODEL_FOR_THE_SECONDARY_NUCLEATION", + "SECONDARY NUCLEATION NMAX PARAMETER" : "SECONDARY_NUCLEATION_NMAX_PARAMETER", + "MODEL FOR THE FLOCCULATION AND BREAKUP" : "MODEL_FOR_THE_FLOCCULATION_AND_BREAKUP", + "FLOCCULATION AFLOC PARAMETER" : "FLOCCULATION_AFLOC_PARAMETER", + "MODEL FOR FRAZIL SEEDING" : "MODEL_FOR_FRAZIL_SEEDING", + "FRAZIL SEEDING RATE" : "FRAZIL_SEEDING_RATE", + "MINIMUM NUMBER OF FRAZIL CRYSTALS" : "MINIMUM_NUMBER_OF_FRAZIL_CRYSTALS", + "ATMOSPHERE-WATER EXCHANGE MODEL" : "ATMOSPHERE_WATER_EXCHANGE_MODEL", + "MODEL FOR ESTIMATION OF TURBULENCE PARAMETERS" : "MODEL_FOR_ESTIMATION_OF_TURBULENCE_PARAMETERS", + "FRAZIL PRECIPITATION" : "FRAZIL_PRECIPITATION", +} diff --git a/Telemac/khione_dicoCasFrToCata.py b/Telemac/khione_dicoCasFrToCata.py new file mode 100644 index 00000000..2edd4390 --- /dev/null +++ b/Telemac/khione_dicoCasFrToCata.py @@ -0,0 +1,206 @@ +dicoCataToFrTelemac = { + "STEERING_FILE" : "FICHIER DES PARAMETRES", + "FORTRAN_FILE" : "FICHIER FORTRAN", + "TITLE" : "TITRE", + "BOUNDARY_CONDITIONS_FILE" : "FICHIER DES CONDITIONS AUX LIMITES", + "GEOMETRY_FILE" : "FICHIER DE GEOMETRIE", + "GEOMETRY_FILE_FORMAT" : "FORMAT DU FICHIER DE GEOMETRIE", + "REFERENCE_FILE" : "FICHIER DE REFERENCE", + "REFERENCE_FILE_FORMAT" : "FORMAT DU FICHIER DE REFERENCE", + "RESULTS_FILE" : "FICHIER DES RESULTATS", + "RESULTS_FILE_FORMAT" : "FORMAT DU FICHIER DES RESULTATS", + "PREVIOUS_ICE_COVER_COMPUTATION_FILE" : "FICHIER COUVERT DE GLACE DU CALCUL PRECEDENT", + "PREVIOUS_ICE_COVER_COMPUTATION_FILE_FORMAT" : "FORMAT DU FICHIER COUVERT DE GLACE DU CALCUL PRECEDENT", + "PREVIOUS_ICE_BLOCKS_COMPUTATION_FILE" : "FICHIER BLOCS DE GLACE DU CALCUL PRECEDENT", + "PREVIOUS_ICE_BLOCKS_COMPUTATION_FILE_FORMAT" : "FORMAT DU FICHIER BLOCS DE GLACE DU CALCUL PRECEDENT", + "DICTIONARY" : "DICTIONNAIRE", + "INITIAL_CONDITIONS" : "CONDITIONS INITIALES", + "VARIABLES_FOR_GRAPHIC_PRINTOUTS" : "VARIABLES POUR LES SORTIES GRAPHIQUES", + "VARIABLES_TO_BE_PRINTED" : "VARIABLES A IMPRIMER", + "GRAPHIC_PRINTOUT_PERIOD" : "PERIODE POUR LES SORTIES GRAPHIQUES", + "LISTING_PRINTOUT_PERIOD" : "PERIODE DE SORTIE LISTING", + "MASS_BALANCE" : "BILAN DE MASSE", + "VALIDATION" : "VALIDATION", + "LAW_OF_ICE_COVER_FRICTION" : "LOI DE FROTTEMENT SOUS LE COUVERT DE GLACE", + "FRICTION_COEFFICIENT" : "COEFFICIENT DE FROTTEMENT", + "MAXIMAL_FRICTION_COEFFICIENT" : "COEFFICIENT DE FROTTEMENT MAXIMAL", + "LAW_FOR_FRICTION_COEFFICIENT" : "LOI POUR LE COEFFICIENT DE FROTTEMENT", + "EQUIVALENT_SURFACE_ICE_THICKNESS" : "EPAISSEUR DE COUVERT DE GLACE CARACTERISTIQUE", + "AIR_DENSITY" : "MASSE VOLUMIQUE DE L'AIR", + "ICE_DENSITY" : "MASSE VOLUMIQUE DE LA GLACE", + "WATER_SPECIFIC_HEAT" : "CHALEUR SPECIFIQUE DE L'EAU", + "SPECIFIC_HEAT_OF_ICE" : "CHALEUR SPECIFIQUE DE LA GLACE", + "LATENT_HEAT_OF_ICE" : "CHALEUR LATENTE DE LA GLACE", + "WATER_AIR_HEAT_EXCHANGE_COEFFICIENT" : "COEFFICIENT D'ECHANGE THERMIQUE EAU-AIR", + "WATER_AIR_HEAT_EXCHANGE_CONSTANT" : "CONSTANTE D'ECHANGE THERMIQUE EAU-AIR", + "ICE_AIR_HEAT_EXCHANGE_COEFFICIENT" : "COEFFICIENT D'ECHANGE THERMIQUE GLACE-AIR", + "ICE_AIR_HEAT_EXCHANGE_CONSTANT" : "CONSTANTE D'ECHANGE THERMIQUE GLACE-AIR", + "COEFFICIENT_FOR_CALIBRATION_OF_BACK_RADIATION" : "COEFFICIENT DE CALAGE DU FLUX RADIATIF ATMOSPHERIQUE", + "COEFFICIENT_FOR_CALIBRATION_OF_EVAPORATIVE_HEAT_TRANSFERT" : "COEFFICIENT DE CALAGE DU TRANSFERT EVAPORATIF", + "COEFFICIENT_FOR_CALIBRATION_OF_CONDUCTIVE_HEAT_TRANSFERT" : "COEFFICIENT DE CALAGE DU TRANSFERT CONDUCTIF", + "COEFFICIENT_FOR_CALIBRATION_OF_PRECIPITATION_HEAT_TRANSFERT" : "COEFFICIENT DE CALAGE DU TRANSFERT LIE AUX PRECIPITATIONS", + "THERMAL_CONDUCTIVITY_BETWEEN_WATER_AND_FRAZIL" : "CONDUCTIVITE THERMIQUE ENTRE EAU ET FRASIL", + "THERMAL_CONDUCTIVITY_OF_BLACK_ICE" : "CONDUCTIVITE THERMIQUE DE LA GLACE SOMBRE", + "THERMAL_CONDUCTIVITY_OF_SNOW" : "CONDUCTIVITE THERMIQUE DE LA NEIGE", + "POROSITY_OF_SURFACE_ICE" : "POROSITE DE LA GLACE DE SURFACE", + "NUMBER_OF_CLASSES_FOR_SUSPENDED_FRAZIL_ICE" : "NOMBRE DE CLASSES POUR LA SUSPENSION DE FRASIL", + "NUSSELT_NUMBER" : "NOMBRE DE NUSSELT", + "MODEL_FOR_THE_NUSSELT_NUMBER" : "MODELE POUR LE CALCUL DU NOMBRE DE NUSSELT", + "FRAZIL_CRYSTALS_RADIUS" : "RAYON DES CRISTAUX DE FRASIL", + "FRAZIL_CRYSTALS_DIAMETER_THICKNESS_RATIO" : "RATIO DIAMETRE EPAISSEUR D'UN CRISTAL DE FRASIL", + "MODEL_FOR_THE_BUOYANCY_VELOCITY" : "MODELE POUR LE CALCUL DE LA VITESSE DE FLOTTABILITE", + "SETTLING_COEFFICIENT_OF_FRAZIL_ON_BARS" : "COEFFICIENT DE DEPOSITION DES GLACES SUR BARRES", + "POROSITY_OF_ACCUMULATED_ICE" : "POROSITE DE LA GLACE ACCUMULEE", + "ANGLE_OF_ACCUMULATED_ICE" : "ANGLE D ACCUMULATION DE LA GLACE", + "PHYSICAL_CHARACTERISTICS_OF_THE_INTAKE_RACK" : "PARAMETRES PHYSIQUES DE LA GRILLE D ENTREE", + "CLOGGED_BOUNDARY_NUMBERS" : "NUMEROS DES FRONTIERES GLACEES", + "CLOGGED_SECTIONS" : "SECTIONS COLMATEES", + "CLOGGING_RESULTS_FILE" : "FICHIER DE RESULTATS DE LA GLACE ACCUMULEE", + "CRITICAL_VELOCITY_FOR_STATIC_BORDER_ICE" : "VITESSE CRITIQUE POUR LA GLACE DE BORD STATIQUE", + "CRITICAL_VELOCITY_FOR_DYNAMIC_BORDER_ICE" : "VITESSE CRITIQUE POUR LA GLACE DE BORD DYNAMIQUE", + "HEIGHT_OF_MEASURED_WIND" : "HAUTEUR DE MESURE DU VENT", + "RELATIVE_MODEL_ELEVATION_FROM_MEAN_SEA_LEVEL" : "ELEVATION DU MODELE RELATIVE AU NIVEAU MOYEN DES OCEANS", + "SUN_SET_ANGLE" : "ANGLE DU SOLEIL COUCHANT", + "SUN_RISE_ANGLE" : "ANGLE DU SOLEIL LEVANT", + "SOLAR_CONSTANT" : "CONSTANTE SOLAIRE", + "ALBEDO_OF_ICE" : "ALBEDO DES GLACES", + "DEWPOINT_TEMPERATURE" : "TEMPERATURE DE ROSEE", + "VISIBILITY" : "VISIBILITE", + "GLOBAL_LONGITUDE__IN_DEGREES" : "LONGITUDE GLOBALE, EN DEGRES", + "LOCAL_LONGITUDE__IN__DEGREES" : "LONGITUDE LOCALE, EN DEGRES", + "EAST_OR_WEST_LONGITUDE" : "LONGITUDE EST OU OUEST", + "INCLUDE_ICE_DYNAMICS" : "INCLURE LA DYNAMIQUE DES GLACES", + "AD_NUMBER_OF_DERIVATIVES" : "AD NOMBRE DE DERIVEES", + "AD_NAMES_OF_DERIVATIVES" : "AD NOMS DES DERIVEES", + "WATER_DENSITY" : "MASSE VOLUMIQUE DE L'EAU", + "KINEMATIC_WATER_VISCOSITY" : "VISCOSITE CINEMATIQUE DE L'EAU", + "WATER_ICE_HEAT_TRANSFER_COEF__FOR_TURBULENT_FLOW" : "CONST. POUR LE FLUX THERMIQUE TURBULENT GLACE-EAU", + "WATER_ICE_HEAT_TRANSFER_COEF__FOR_SUPERCOOLED_TURBULENT_FLOW" : "CONST. POUR LE FLUX THERMIQUE TURBULENT GLACE-EAU EN SURFUSION", + "NUSSELT_NUMBER_FOR_HEAT_TRANSFER_BETWEEN_WATER_AND_ICE" : "NOMBRE DE NUSSELT POUR LE TRANFERT THERMIQUE GLACE-EAU", + "BOLTZMANN_CONSTANT__WM_2K_4_" : "CONSTANTE DE BOLTZMANN", + "FREEZING_POINT_OF_WATER" : "TEMPERATURE DE CONGELATION DE L'EAU", + "CRITICAL_WATER_TEMPERATURE_FOR_STATIC_BORDER_ICE" : "TEMPERATURE D'EAU CRITIQUE POUR LA GLACE DE BORD STATIQUE", + "CHANNEL_WIDTH_FOR_THE_COMPUTATION_OF_SURFACE_TEMPERATURE" : "LARGEUR DU CHENAL POUR LE CALCUL DE LA TEMPERATURE DE SURFACE", + "CONCENTRATION_OF_SURFACE_ICE_WHEN_FORMATION" : "CONCENTRATION MAXIMALE DU COUVERT DE GLACE", + "PARALLEL_PROCESSORS" : "PROCESSEURS PARALLELES", + "HEAT_BUDGET" : "BILAN THERMIQUE", + "ICE_COVER_IMPACT_ON_HYDRODYNAMIC" : "IMPACT DU COUVERT SUR L'HYDRODYNAMIQUE", + "CLOGGING_ON_BARS" : "COLMATAGE DES GRILLES", + "BORDER_ICE_COVER" : "GLACE DE BORD STATIQUE", + "SALINITY" : "SALINITE", + "ENERGY_BALANCE_VERSION" : "VERSION DU BILAN ENERGETIQUE", + "SCHEME_OPTION_FOR_THERMAL_GROWTH" : "OPTION DU SCHEMA POUR LA CROISSANCE THERMIQUE", + "MODEL_FOR_THE_SECONDARY_NUCLEATION" : "MODELE POUR LA NUCLEATION SECONDAIRE", + "SECONDARY_NUCLEATION_NMAX_PARAMETER" : "PARAMETRE NMAX POUR LA NUCLEATION SECONDAIRE", + "MODEL_FOR_THE_FLOCCULATION_AND_BREAKUP" : "MODELE POUR LA FLOCULATION ET RUPTURE", + "FLOCCULATION_AFLOC_PARAMETER" : "PARAMETRE AFLOC POUR LA FLOCULATION", + "MODEL_FOR_FRAZIL_SEEDING" : "MODELE POUR L'ENSEMENCEMENT DU FRASIL", + "FRAZIL_SEEDING_RATE" : "TAUX D'ENSEMENCEMENT DE FRASIL", + "MINIMUM_NUMBER_OF_FRAZIL_CRYSTALS" : "NOMBRE MINIMUM DE CRISTAUX DE FRASIL", + "ATMOSPHERE_WATER_EXCHANGE_MODEL" : "MODELE D'ECHANGES EAU-ATMOSPHERE", + "MODEL_FOR_ESTIMATION_OF_TURBULENCE_PARAMETERS" : "MODELE POUR L'ESTIMATION DES PARAMETRES DE TURBULENCE", + "FRAZIL_PRECIPITATION" : "PRECIPITATION DU FRASIL", +} +dicoCasFrToCata = { + "FICHIER DES PARAMETRES" : "STEERING_FILE", + "FICHIER FORTRAN" : "FORTRAN_FILE", + "TITRE" : "TITLE", + "FICHIER DES CONDITIONS AUX LIMITES" : "BOUNDARY_CONDITIONS_FILE", + "FICHIER DE GEOMETRIE" : "GEOMETRY_FILE", + "FORMAT DU FICHIER DE GEOMETRIE" : "GEOMETRY_FILE_FORMAT", + "FICHIER DE REFERENCE" : "REFERENCE_FILE", + "FORMAT DU FICHIER DE REFERENCE" : "REFERENCE_FILE_FORMAT", + "FICHIER DES RESULTATS" : "RESULTS_FILE", + "FORMAT DU FICHIER DES RESULTATS" : "RESULTS_FILE_FORMAT", + "FICHIER COUVERT DE GLACE DU CALCUL PRECEDENT" : "PREVIOUS_ICE_COVER_COMPUTATION_FILE", + "FORMAT DU FICHIER COUVERT DE GLACE DU CALCUL PRECEDENT" : "PREVIOUS_ICE_COVER_COMPUTATION_FILE_FORMAT", + "FICHIER BLOCS DE GLACE DU CALCUL PRECEDENT" : "PREVIOUS_ICE_BLOCKS_COMPUTATION_FILE", + "FORMAT DU FICHIER BLOCS DE GLACE DU CALCUL PRECEDENT" : "PREVIOUS_ICE_BLOCKS_COMPUTATION_FILE_FORMAT", + "DICTIONNAIRE" : "DICTIONARY", + "CONDITIONS INITIALES" : "INITIAL_CONDITIONS", + "VARIABLES POUR LES SORTIES GRAPHIQUES" : "VARIABLES_FOR_GRAPHIC_PRINTOUTS", + "VARIABLES A IMPRIMER" : "VARIABLES_TO_BE_PRINTED", + "PERIODE POUR LES SORTIES GRAPHIQUES" : "GRAPHIC_PRINTOUT_PERIOD", + "PERIODE DE SORTIE LISTING" : "LISTING_PRINTOUT_PERIOD", + "BILAN DE MASSE" : "MASS_BALANCE", + "VALIDATION" : "VALIDATION", + "LOI DE FROTTEMENT SOUS LE COUVERT DE GLACE" : "LAW_OF_ICE_COVER_FRICTION", + "COEFFICIENT DE FROTTEMENT" : "FRICTION_COEFFICIENT", + "COEFFICIENT DE FROTTEMENT MAXIMAL" : "MAXIMAL_FRICTION_COEFFICIENT", + "LOI POUR LE COEFFICIENT DE FROTTEMENT" : "LAW_FOR_FRICTION_COEFFICIENT", + "EPAISSEUR DE COUVERT DE GLACE CARACTERISTIQUE" : "EQUIVALENT_SURFACE_ICE_THICKNESS", + "MASSE VOLUMIQUE DE L'AIR" : "AIR_DENSITY", + "MASSE VOLUMIQUE DE LA GLACE" : "ICE_DENSITY", + "CHALEUR SPECIFIQUE DE L'EAU" : "WATER_SPECIFIC_HEAT", + "CHALEUR SPECIFIQUE DE LA GLACE" : "SPECIFIC_HEAT_OF_ICE", + "CHALEUR LATENTE DE LA GLACE" : "LATENT_HEAT_OF_ICE", + "COEFFICIENT D'ECHANGE THERMIQUE EAU-AIR" : "WATER_AIR_HEAT_EXCHANGE_COEFFICIENT", + "CONSTANTE D'ECHANGE THERMIQUE EAU-AIR" : "WATER_AIR_HEAT_EXCHANGE_CONSTANT", + "COEFFICIENT D'ECHANGE THERMIQUE GLACE-AIR" : "ICE_AIR_HEAT_EXCHANGE_COEFFICIENT", + "CONSTANTE D'ECHANGE THERMIQUE GLACE-AIR" : "ICE_AIR_HEAT_EXCHANGE_CONSTANT", + "COEFFICIENT DE CALAGE DU FLUX RADIATIF ATMOSPHERIQUE" : "COEFFICIENT_FOR_CALIBRATION_OF_BACK_RADIATION", + "COEFFICIENT DE CALAGE DU TRANSFERT EVAPORATIF" : "COEFFICIENT_FOR_CALIBRATION_OF_EVAPORATIVE_HEAT_TRANSFERT", + "COEFFICIENT DE CALAGE DU TRANSFERT CONDUCTIF" : "COEFFICIENT_FOR_CALIBRATION_OF_CONDUCTIVE_HEAT_TRANSFERT", + "COEFFICIENT DE CALAGE DU TRANSFERT LIE AUX PRECIPITATIONS" : "COEFFICIENT_FOR_CALIBRATION_OF_PRECIPITATION_HEAT_TRANSFERT", + "CONDUCTIVITE THERMIQUE ENTRE EAU ET FRASIL" : "THERMAL_CONDUCTIVITY_BETWEEN_WATER_AND_FRAZIL", + "CONDUCTIVITE THERMIQUE DE LA GLACE SOMBRE" : "THERMAL_CONDUCTIVITY_OF_BLACK_ICE", + "CONDUCTIVITE THERMIQUE DE LA NEIGE" : "THERMAL_CONDUCTIVITY_OF_SNOW", + "POROSITE DE LA GLACE DE SURFACE" : "POROSITY_OF_SURFACE_ICE", + "NOMBRE DE CLASSES POUR LA SUSPENSION DE FRASIL" : "NUMBER_OF_CLASSES_FOR_SUSPENDED_FRAZIL_ICE", + "NOMBRE DE NUSSELT" : "NUSSELT_NUMBER", + "MODELE POUR LE CALCUL DU NOMBRE DE NUSSELT" : "MODEL_FOR_THE_NUSSELT_NUMBER", + "RAYON DES CRISTAUX DE FRASIL" : "FRAZIL_CRYSTALS_RADIUS", + "RATIO DIAMETRE EPAISSEUR D'UN CRISTAL DE FRASIL" : "FRAZIL_CRYSTALS_DIAMETER_THICKNESS_RATIO", + "MODELE POUR LE CALCUL DE LA VITESSE DE FLOTTABILITE" : "MODEL_FOR_THE_BUOYANCY_VELOCITY", + "COEFFICIENT DE DEPOSITION DES GLACES SUR BARRES" : "SETTLING_COEFFICIENT_OF_FRAZIL_ON_BARS", + "POROSITE DE LA GLACE ACCUMULEE" : "POROSITY_OF_ACCUMULATED_ICE", + "ANGLE D ACCUMULATION DE LA GLACE" : "ANGLE_OF_ACCUMULATED_ICE", + "PARAMETRES PHYSIQUES DE LA GRILLE D ENTREE" : "PHYSICAL_CHARACTERISTICS_OF_THE_INTAKE_RACK", + "NUMEROS DES FRONTIERES GLACEES" : "CLOGGED_BOUNDARY_NUMBERS", + "SECTIONS COLMATEES" : "CLOGGED_SECTIONS", + "FICHIER DE RESULTATS DE LA GLACE ACCUMULEE" : "CLOGGING_RESULTS_FILE", + "VITESSE CRITIQUE POUR LA GLACE DE BORD STATIQUE" : "CRITICAL_VELOCITY_FOR_STATIC_BORDER_ICE", + "VITESSE CRITIQUE POUR LA GLACE DE BORD DYNAMIQUE" : "CRITICAL_VELOCITY_FOR_DYNAMIC_BORDER_ICE", + "HAUTEUR DE MESURE DU VENT" : "HEIGHT_OF_MEASURED_WIND", + "ELEVATION DU MODELE RELATIVE AU NIVEAU MOYEN DES OCEANS" : "RELATIVE_MODEL_ELEVATION_FROM_MEAN_SEA_LEVEL", + "ANGLE DU SOLEIL COUCHANT" : "SUN_SET_ANGLE", + "ANGLE DU SOLEIL LEVANT" : "SUN_RISE_ANGLE", + "CONSTANTE SOLAIRE" : "SOLAR_CONSTANT", + "ALBEDO DES GLACES" : "ALBEDO_OF_ICE", + "TEMPERATURE DE ROSEE" : "DEWPOINT_TEMPERATURE", + "VISIBILITE" : "VISIBILITY", + "LONGITUDE GLOBALE, EN DEGRES" : "GLOBAL_LONGITUDE__IN_DEGREES", + "LONGITUDE LOCALE, EN DEGRES" : "LOCAL_LONGITUDE__IN__DEGREES", + "LONGITUDE EST OU OUEST" : "EAST_OR_WEST_LONGITUDE", + "INCLURE LA DYNAMIQUE DES GLACES" : "INCLUDE_ICE_DYNAMICS", + "AD NOMBRE DE DERIVEES" : "AD_NUMBER_OF_DERIVATIVES", + "AD NOMS DES DERIVEES" : "AD_NAMES_OF_DERIVATIVES", + "MASSE VOLUMIQUE DE L'EAU" : "WATER_DENSITY", + "VISCOSITE CINEMATIQUE DE L'EAU" : "KINEMATIC_WATER_VISCOSITY", + "CONST. POUR LE FLUX THERMIQUE TURBULENT GLACE-EAU" : "WATER_ICE_HEAT_TRANSFER_COEF__FOR_TURBULENT_FLOW", + "CONST. POUR LE FLUX THERMIQUE TURBULENT GLACE-EAU EN SURFUSION" : "WATER_ICE_HEAT_TRANSFER_COEF__FOR_SUPERCOOLED_TURBULENT_FLOW", + "NOMBRE DE NUSSELT POUR LE TRANFERT THERMIQUE GLACE-EAU" : "NUSSELT_NUMBER_FOR_HEAT_TRANSFER_BETWEEN_WATER_AND_ICE", + "CONSTANTE DE BOLTZMANN" : "BOLTZMANN_CONSTANT__WM_2K_4_", + "TEMPERATURE DE CONGELATION DE L'EAU" : "FREEZING_POINT_OF_WATER", + "TEMPERATURE D'EAU CRITIQUE POUR LA GLACE DE BORD STATIQUE" : "CRITICAL_WATER_TEMPERATURE_FOR_STATIC_BORDER_ICE", + "LARGEUR DU CHENAL POUR LE CALCUL DE LA TEMPERATURE DE SURFACE" : "CHANNEL_WIDTH_FOR_THE_COMPUTATION_OF_SURFACE_TEMPERATURE", + "CONCENTRATION MAXIMALE DU COUVERT DE GLACE" : "CONCENTRATION_OF_SURFACE_ICE_WHEN_FORMATION", + "PROCESSEURS PARALLELES" : "PARALLEL_PROCESSORS", + "BILAN THERMIQUE" : "HEAT_BUDGET", + "IMPACT DU COUVERT SUR L'HYDRODYNAMIQUE" : "ICE_COVER_IMPACT_ON_HYDRODYNAMIC", + "COLMATAGE DES GRILLES" : "CLOGGING_ON_BARS", + "GLACE DE BORD STATIQUE" : "BORDER_ICE_COVER", + "SALINITE" : "SALINITY", + "VERSION DU BILAN ENERGETIQUE" : "ENERGY_BALANCE_VERSION", + "OPTION DU SCHEMA POUR LA CROISSANCE THERMIQUE" : "SCHEME_OPTION_FOR_THERMAL_GROWTH", + "MODELE POUR LA NUCLEATION SECONDAIRE" : "MODEL_FOR_THE_SECONDARY_NUCLEATION", + "PARAMETRE NMAX POUR LA NUCLEATION SECONDAIRE" : "SECONDARY_NUCLEATION_NMAX_PARAMETER", + "MODELE POUR LA FLOCULATION ET RUPTURE" : "MODEL_FOR_THE_FLOCCULATION_AND_BREAKUP", + "PARAMETRE AFLOC POUR LA FLOCULATION" : "FLOCCULATION_AFLOC_PARAMETER", + "MODELE POUR L'ENSEMENCEMENT DU FRASIL" : "MODEL_FOR_FRAZIL_SEEDING", + "TAUX D'ENSEMENCEMENT DE FRASIL" : "FRAZIL_SEEDING_RATE", + "NOMBRE MINIMUM DE CRISTAUX DE FRASIL" : "MINIMUM_NUMBER_OF_FRAZIL_CRYSTALS", + "MODELE D'ECHANGES EAU-ATMOSPHERE" : "ATMOSPHERE_WATER_EXCHANGE_MODEL", + "MODELE POUR L'ESTIMATION DES PARAMETRES DE TURBULENCE" : "MODEL_FOR_ESTIMATION_OF_TURBULENCE_PARAMETERS", + "PRECIPITATION DU FRASIL" : "FRAZIL_PRECIPITATION", +} diff --git a/Telemac/khione_enum_auto.py b/Telemac/khione_enum_auto.py new file mode 100644 index 00000000..91b013aa --- /dev/null +++ b/Telemac/khione_enum_auto.py @@ -0,0 +1,2180 @@ +#/usr/bin/env python +# -*- coding: latin-1 -*- +TelemacdicoEn = { +'VARIABLES_FOR_GRAPHIC_PRINTOUTS' : { + 'PHCL':"SOLRAD CLEAR SKY", + 'PHRI':"SOLRAD CLOUDY", + 'PHPS':"NET SOLRAD", + 'PHIB':"EFFECTIVE SOLRAD", + 'PHIE':"EVAPO HEAT FLUX", + 'PHIH':"CONDUC HEAT FLUX", + 'PHIP':"PRECIP HEAT FLUX", + 'COV_TH0':"FRAZIL THETA0", + 'COV_TH1':"FRAZIL THETA1", + 'COV_BT1':"REENTRAINMENT", + 'COV_VBB':"SETTLING VEL.", + 'COV_FC':"SOLID ICE CONC.", + 'COV_THS':"SOLID ICE THICK.", + 'COV_THF':"FRAZIL THICKNESS", + 'COV_THUN':"UNDER ICE THICK.", + 'COV_EQ':"EQUIV. SURFACE", + 'COV_ET':"TOP ICE COVER", + 'COV_EB':"BOTTOM ICE COVERM", + 'COV_THT':"TOTAL ICE THICK.M ", + 'ICETYPE':"CARACTERISTIQUES", + 'NTOT':"TOTAL NUMBER OF PARTICLES", + 'CTOT':"TOTAL CONCENTRATION OF FRAZIL", + 'F*':"CONCENTRATION OF FRAZIL FOR CLASS*", + 'F1':"CONCENTRATION OF FRAZIL FOR CLASS1", + 'F2':"CONCENTRATION OF FRAZIL FOR CLASS2", + 'F3':"CONCENTRATION OF FRAZIL FOR CLASS3", + 'F4':"CONCENTRATION OF FRAZIL FOR CLASS4", + 'F5':"CONCENTRATION OF FRAZIL FOR CLASS5", + 'F6':"CONCENTRATION OF FRAZIL FOR CLASS6", + 'F7':"CONCENTRATION OF FRAZIL FOR CLASS7", + 'F8':"CONCENTRATION OF FRAZIL FOR CLASS8", + 'F9':"CONCENTRATION OF FRAZIL FOR CLASS9", + 'F10':"CONCENTRATION OF FRAZIL FOR CLASS10", + 'F11':"CONCENTRATION OF FRAZIL FOR CLASS11", + 'F12':"CONCENTRATION OF FRAZIL FOR CLASS12", + 'F13':"CONCENTRATION OF FRAZIL FOR CLASS13", + 'F14':"CONCENTRATION OF FRAZIL FOR CLASS14", + 'F15':"CONCENTRATION OF FRAZIL FOR CLASS15", + 'F16':"CONCENTRATION OF FRAZIL FOR CLASS16", + 'F17':"CONCENTRATION OF FRAZIL FOR CLASS17", + 'F18':"CONCENTRATION OF FRAZIL FOR CLASS18", + 'F19':"CONCENTRATION OF FRAZIL FOR CLASS19", + 'F**':"CONCENTRATION OF FRAZIL FOR CLASS**", + 'F*':"CONCENTRATION OF FRAZIL FOR CLASS*", + 'F1':"CONCENTRATION OF FRAZIL FOR CLASS1", + 'F2':"CONCENTRATION OF FRAZIL FOR CLASS2", + 'F3':"CONCENTRATION OF FRAZIL FOR CLASS3", + 'F4':"CONCENTRATION OF FRAZIL FOR CLASS4", + 'F5':"CONCENTRATION OF FRAZIL FOR CLASS5", + 'F6':"CONCENTRATION OF FRAZIL FOR CLASS6", + 'F7':"CONCENTRATION OF FRAZIL FOR CLASS7", + 'F8':"CONCENTRATION OF FRAZIL FOR CLASS8", + 'F9':"CONCENTRATION OF FRAZIL FOR CLASS9", + 'F10':"CONCENTRATION OF FRAZIL FOR CLASS10", + 'F11':"CONCENTRATION OF FRAZIL FOR CLASS11", + 'F12':"CONCENTRATION OF FRAZIL FOR CLASS12", + 'F13':"CONCENTRATION OF FRAZIL FOR CLASS13", + 'F14':"CONCENTRATION OF FRAZIL FOR CLASS14", + 'F15':"CONCENTRATION OF FRAZIL FOR CLASS15", + 'F16':"CONCENTRATION OF FRAZIL FOR CLASS16", + 'F17':"CONCENTRATION OF FRAZIL FOR CLASS17", + 'F18':"CONCENTRATION OF FRAZIL FOR CLASS18", + 'F19':"CONCENTRATION OF FRAZIL FOR CLASS19", + 'F**':"CONCENTRATION OF FRAZIL FOR CLASS**", + 'F*':"CONCENTRATION OF FRAZIL FOR CLASS*", + 'F1':"CONCENTRATION OF FRAZIL FOR CLASS1", + 'F2':"CONCENTRATION OF FRAZIL FOR CLASS2", + 'F3':"CONCENTRATION OF FRAZIL FOR CLASS3", + 'F4':"CONCENTRATION OF FRAZIL FOR CLASS4", + 'F5':"CONCENTRATION OF FRAZIL FOR CLASS5", + 'F6':"CONCENTRATION OF FRAZIL FOR CLASS6", + 'F7':"CONCENTRATION OF FRAZIL FOR CLASS7", + 'F8':"CONCENTRATION OF FRAZIL FOR CLASS8", + 'F9':"CONCENTRATION OF FRAZIL FOR CLASS9", + 'F10':"CONCENTRATION OF FRAZIL FOR CLASS10", + 'F11':"CONCENTRATION OF FRAZIL FOR CLASS11", + 'F12':"CONCENTRATION OF FRAZIL FOR CLASS12", + 'F13':"CONCENTRATION OF FRAZIL FOR CLASS13", + 'F14':"CONCENTRATION OF FRAZIL FOR CLASS14", + 'F15':"CONCENTRATION OF FRAZIL FOR CLASS15", + 'F16':"CONCENTRATION OF FRAZIL FOR CLASS16", + 'F17':"CONCENTRATION OF FRAZIL FOR CLASS17", + 'F18':"CONCENTRATION OF FRAZIL FOR CLASS18", + 'F19':"CONCENTRATION OF FRAZIL FOR CLASS19", + 'F**':"CONCENTRATION OF FRAZIL FOR CLASS**", + 'F*':"CONCENTRATION OF FRAZIL FOR CLASS*", + 'F1':"CONCENTRATION OF FRAZIL FOR CLASS1", + 'F2':"CONCENTRATION OF FRAZIL FOR CLASS2", + 'F3':"CONCENTRATION OF FRAZIL FOR CLASS3", + 'F4':"CONCENTRATION OF FRAZIL FOR CLASS4", + 'F5':"CONCENTRATION OF FRAZIL FOR CLASS5", + 'F6':"CONCENTRATION OF FRAZIL FOR CLASS6", + 'F7':"CONCENTRATION OF FRAZIL FOR CLASS7", + 'F8':"CONCENTRATION OF FRAZIL FOR CLASS8", + 'F9':"CONCENTRATION OF FRAZIL FOR CLASS9", + 'F10':"CONCENTRATION OF FRAZIL FOR CLASS10", + 'F11':"CONCENTRATION OF FRAZIL FOR CLASS11", + 'F12':"CONCENTRATION OF FRAZIL FOR CLASS12", + 'F13':"CONCENTRATION OF FRAZIL FOR CLASS13", + 'F14':"CONCENTRATION OF FRAZIL FOR CLASS14", + 'F15':"CONCENTRATION OF FRAZIL FOR CLASS15", + 'F16':"CONCENTRATION OF FRAZIL FOR CLASS16", + 'F17':"CONCENTRATION OF FRAZIL FOR CLASS17", + 'F18':"CONCENTRATION OF FRAZIL FOR CLASS18", + 'F19':"CONCENTRATION OF FRAZIL FOR CLASS19", + 'F**':"CONCENTRATION OF FRAZIL FOR CLASS**", + 'F*':"CONCENTRATION OF FRAZIL FOR CLASS*", + 'F1':"CONCENTRATION OF FRAZIL FOR CLASS1", + 'F2':"CONCENTRATION OF FRAZIL FOR CLASS2", + 'F3':"CONCENTRATION OF FRAZIL FOR CLASS3", + 'F4':"CONCENTRATION OF FRAZIL FOR CLASS4", + 'F5':"CONCENTRATION OF FRAZIL FOR CLASS5", + 'F6':"CONCENTRATION OF FRAZIL FOR CLASS6", + 'F7':"CONCENTRATION OF FRAZIL FOR CLASS7", + 'F8':"CONCENTRATION OF FRAZIL FOR CLASS8", + 'F9':"CONCENTRATION OF FRAZIL FOR CLASS9", + 'F10':"CONCENTRATION OF FRAZIL FOR CLASS10", + 'F11':"CONCENTRATION OF FRAZIL FOR CLASS11", + 'F12':"CONCENTRATION OF FRAZIL FOR CLASS12", + 'F13':"CONCENTRATION OF FRAZIL FOR CLASS13", + 'F14':"CONCENTRATION OF FRAZIL FOR CLASS14", + 'F15':"CONCENTRATION OF FRAZIL FOR CLASS15", + 'F16':"CONCENTRATION OF FRAZIL FOR CLASS16", + 'F17':"CONCENTRATION OF FRAZIL FOR CLASS17", + 'F18':"CONCENTRATION OF FRAZIL FOR CLASS18", + 'F19':"CONCENTRATION OF FRAZIL FOR CLASS19", + 'F**':"CONCENTRATION OF FRAZIL FOR CLASS**", + 'F*':"CONCENTRATION OF FRAZIL FOR CLASS*", + 'F1':"CONCENTRATION OF FRAZIL FOR CLASS1", + 'F2':"CONCENTRATION OF FRAZIL FOR CLASS2", + 'F3':"CONCENTRATION OF FRAZIL FOR CLASS3", + 'F4':"CONCENTRATION OF FRAZIL FOR CLASS4", + 'F5':"CONCENTRATION OF FRAZIL FOR CLASS5", + 'F6':"CONCENTRATION OF FRAZIL FOR CLASS6", + 'F7':"CONCENTRATION OF FRAZIL FOR CLASS7", + 'F8':"CONCENTRATION OF FRAZIL FOR CLASS8", + 'F9':"CONCENTRATION OF FRAZIL FOR CLASS9", + 'F10':"CONCENTRATION OF FRAZIL FOR CLASS10", + 'F11':"CONCENTRATION OF FRAZIL FOR CLASS11", + 'F12':"CONCENTRATION OF FRAZIL FOR CLASS12", + 'F13':"CONCENTRATION OF FRAZIL FOR CLASS13", + 'F14':"CONCENTRATION OF FRAZIL FOR CLASS14", + 'F15':"CONCENTRATION OF FRAZIL FOR CLASS15", + 'F16':"CONCENTRATION OF FRAZIL FOR CLASS16", + 'F17':"CONCENTRATION OF FRAZIL FOR CLASS17", + 'F18':"CONCENTRATION OF FRAZIL FOR CLASS18", + 'F19':"CONCENTRATION OF FRAZIL FOR CLASS19", + 'F**':"CONCENTRATION OF FRAZIL FOR CLASS**", + 'F*':"CONCENTRATION OF FRAZIL FOR CLASS*", + 'F1':"CONCENTRATION OF FRAZIL FOR CLASS1", + 'F2':"CONCENTRATION OF FRAZIL FOR CLASS2", + 'F3':"CONCENTRATION OF FRAZIL FOR CLASS3", + 'F4':"CONCENTRATION OF FRAZIL FOR CLASS4", + 'F5':"CONCENTRATION OF FRAZIL FOR CLASS5", + 'F6':"CONCENTRATION OF FRAZIL FOR CLASS6", + 'F7':"CONCENTRATION OF FRAZIL FOR CLASS7", + 'F8':"CONCENTRATION OF FRAZIL FOR CLASS8", + 'F9':"CONCENTRATION OF FRAZIL FOR CLASS9", + 'F10':"CONCENTRATION OF FRAZIL FOR CLASS10", + 'F11':"CONCENTRATION OF FRAZIL FOR CLASS11", + 'F12':"CONCENTRATION OF FRAZIL FOR CLASS12", + 'F13':"CONCENTRATION OF FRAZIL FOR CLASS13", + 'F14':"CONCENTRATION OF FRAZIL FOR CLASS14", + 'F15':"CONCENTRATION OF FRAZIL FOR CLASS15", + 'F16':"CONCENTRATION OF FRAZIL FOR CLASS16", + 'F17':"CONCENTRATION OF FRAZIL FOR CLASS17", + 'F18':"CONCENTRATION OF FRAZIL FOR CLASS18", + 'F19':"CONCENTRATION OF FRAZIL FOR CLASS19", + 'F**':"CONCENTRATION OF FRAZIL FOR CLASS**", + 'F*':"CONCENTRATION OF FRAZIL FOR CLASS*", + 'F1':"CONCENTRATION OF FRAZIL FOR CLASS1", + 'F2':"CONCENTRATION OF FRAZIL FOR CLASS2", + 'F3':"CONCENTRATION OF FRAZIL FOR CLASS3", + 'F4':"CONCENTRATION OF FRAZIL FOR CLASS4", + 'F5':"CONCENTRATION OF FRAZIL FOR CLASS5", + 'F6':"CONCENTRATION OF FRAZIL FOR CLASS6", + 'F7':"CONCENTRATION OF FRAZIL FOR CLASS7", + 'F8':"CONCENTRATION OF FRAZIL FOR CLASS8", + 'F9':"CONCENTRATION OF FRAZIL FOR CLASS9", + 'F10':"CONCENTRATION OF FRAZIL FOR CLASS10", + 'F11':"CONCENTRATION OF FRAZIL FOR CLASS11", + 'F12':"CONCENTRATION OF FRAZIL FOR CLASS12", + 'F13':"CONCENTRATION OF FRAZIL FOR CLASS13", + 'F14':"CONCENTRATION OF FRAZIL FOR CLASS14", + 'F15':"CONCENTRATION OF FRAZIL FOR CLASS15", + 'F16':"CONCENTRATION OF FRAZIL FOR CLASS16", + 'F17':"CONCENTRATION OF FRAZIL FOR CLASS17", + 'F18':"CONCENTRATION OF FRAZIL FOR CLASS18", + 'F19':"CONCENTRATION OF FRAZIL FOR CLASS19", + 'F**':"CONCENTRATION OF FRAZIL FOR CLASS**", + 'F*':"CONCENTRATION OF FRAZIL FOR CLASS*", + 'F1':"CONCENTRATION OF FRAZIL FOR CLASS1", + 'F2':"CONCENTRATION OF FRAZIL FOR CLASS2", + 'F3':"CONCENTRATION OF FRAZIL FOR CLASS3", + 'F4':"CONCENTRATION OF FRAZIL FOR CLASS4", + 'F5':"CONCENTRATION OF FRAZIL FOR CLASS5", + 'F6':"CONCENTRATION OF FRAZIL FOR CLASS6", + 'F7':"CONCENTRATION OF FRAZIL FOR CLASS7", + 'F8':"CONCENTRATION OF FRAZIL FOR CLASS8", + 'F9':"CONCENTRATION OF FRAZIL FOR CLASS9", + 'F10':"CONCENTRATION OF FRAZIL FOR CLASS10", + 'F11':"CONCENTRATION OF FRAZIL FOR CLASS11", + 'F12':"CONCENTRATION OF FRAZIL FOR CLASS12", + 'F13':"CONCENTRATION OF FRAZIL FOR CLASS13", + 'F14':"CONCENTRATION OF FRAZIL FOR CLASS14", + 'F15':"CONCENTRATION OF FRAZIL FOR CLASS15", + 'F16':"CONCENTRATION OF FRAZIL FOR CLASS16", + 'F17':"CONCENTRATION OF FRAZIL FOR CLASS17", + 'F18':"CONCENTRATION OF FRAZIL FOR CLASS18", + 'F19':"CONCENTRATION OF FRAZIL FOR CLASS19", + 'F**':"CONCENTRATION OF FRAZIL FOR CLASS**", + 'F*':"CONCENTRATION OF FRAZIL FOR CLASS*", + 'F1':"CONCENTRATION OF FRAZIL FOR CLASS1", + 'F2':"CONCENTRATION OF FRAZIL FOR CLASS2", + 'F3':"CONCENTRATION OF FRAZIL FOR CLASS3", + 'F4':"CONCENTRATION OF FRAZIL FOR CLASS4", + 'F5':"CONCENTRATION OF FRAZIL FOR CLASS5", + 'F6':"CONCENTRATION OF FRAZIL FOR CLASS6", + 'F7':"CONCENTRATION OF FRAZIL FOR CLASS7", + 'F8':"CONCENTRATION OF FRAZIL FOR CLASS8", + 'F9':"CONCENTRATION OF FRAZIL FOR CLASS9", + 'F10':"CONCENTRATION OF FRAZIL FOR CLASS10", + 'F11':"CONCENTRATION OF FRAZIL FOR CLASS11", + 'F12':"CONCENTRATION OF FRAZIL FOR CLASS12", + 'F13':"CONCENTRATION OF FRAZIL FOR CLASS13", + 'F14':"CONCENTRATION OF FRAZIL FOR CLASS14", + 'F15':"CONCENTRATION OF FRAZIL FOR CLASS15", + 'F16':"CONCENTRATION OF FRAZIL FOR CLASS16", + 'F17':"CONCENTRATION OF FRAZIL FOR CLASS17", + 'F18':"CONCENTRATION OF FRAZIL FOR CLASS18", + 'F19':"CONCENTRATION OF FRAZIL FOR CLASS19", + 'F**':"CONCENTRATION OF FRAZIL FOR CLASS**", + 'F*':"CONCENTRATION OF FRAZIL FOR CLASS*", + 'F1':"CONCENTRATION OF FRAZIL FOR CLASS1", + 'F2':"CONCENTRATION OF FRAZIL FOR CLASS2", + 'F3':"CONCENTRATION OF FRAZIL FOR CLASS3", + 'F4':"CONCENTRATION OF FRAZIL FOR CLASS4", + 'F5':"CONCENTRATION OF FRAZIL FOR CLASS5", + 'F6':"CONCENTRATION OF FRAZIL FOR CLASS6", + 'F7':"CONCENTRATION OF FRAZIL FOR CLASS7", + 'F8':"CONCENTRATION OF FRAZIL FOR CLASS8", + 'F9':"CONCENTRATION OF FRAZIL FOR CLASS9", + 'F10':"CONCENTRATION OF FRAZIL FOR CLASS10", + 'F11':"CONCENTRATION OF FRAZIL FOR CLASS11", + 'F12':"CONCENTRATION OF FRAZIL FOR CLASS12", + 'F13':"CONCENTRATION OF FRAZIL FOR CLASS13", + 'F14':"CONCENTRATION OF FRAZIL FOR CLASS14", + 'F15':"CONCENTRATION OF FRAZIL FOR CLASS15", + 'F16':"CONCENTRATION OF FRAZIL FOR CLASS16", + 'F17':"CONCENTRATION OF FRAZIL FOR CLASS17", + 'F18':"CONCENTRATION OF FRAZIL FOR CLASS18", + 'F19':"CONCENTRATION OF FRAZIL FOR CLASS19", + 'F**':"CONCENTRATION OF FRAZIL FOR CLASS**", + 'F*':"CONCENTRATION OF FRAZIL FOR CLASS*", + 'F1':"CONCENTRATION OF FRAZIL FOR CLASS1", + 'F2':"CONCENTRATION OF FRAZIL FOR CLASS2", + 'F3':"CONCENTRATION OF FRAZIL FOR CLASS3", + 'F4':"CONCENTRATION OF FRAZIL FOR CLASS4", + 'F5':"CONCENTRATION OF FRAZIL FOR CLASS5", + 'F6':"CONCENTRATION OF FRAZIL FOR CLASS6", + 'F7':"CONCENTRATION OF FRAZIL FOR CLASS7", + 'F8':"CONCENTRATION OF FRAZIL FOR CLASS8", + 'F9':"CONCENTRATION OF FRAZIL FOR CLASS9", + 'F10':"CONCENTRATION OF FRAZIL FOR CLASS10", + 'F11':"CONCENTRATION OF FRAZIL FOR CLASS11", + 'F12':"CONCENTRATION OF FRAZIL FOR CLASS12", + 'F13':"CONCENTRATION OF FRAZIL FOR CLASS13", + 'F14':"CONCENTRATION OF FRAZIL FOR CLASS14", + 'F15':"CONCENTRATION OF FRAZIL FOR CLASS15", + 'F16':"CONCENTRATION OF FRAZIL FOR CLASS16", + 'F17':"CONCENTRATION OF FRAZIL FOR CLASS17", + 'F18':"CONCENTRATION OF FRAZIL FOR CLASS18", + 'F19':"CONCENTRATION OF FRAZIL FOR CLASS19", + 'F**':"CONCENTRATION OF FRAZIL FOR CLASS**", + 'F*':"CONCENTRATION OF FRAZIL FOR CLASS*", + 'F1':"CONCENTRATION OF FRAZIL FOR CLASS1", + 'F2':"CONCENTRATION OF FRAZIL FOR CLASS2", + 'F3':"CONCENTRATION OF FRAZIL FOR CLASS3", + 'F4':"CONCENTRATION OF FRAZIL FOR CLASS4", + 'F5':"CONCENTRATION OF FRAZIL FOR CLASS5", + 'F6':"CONCENTRATION OF FRAZIL FOR CLASS6", + 'F7':"CONCENTRATION OF FRAZIL FOR CLASS7", + 'F8':"CONCENTRATION OF FRAZIL FOR CLASS8", + 'F9':"CONCENTRATION OF FRAZIL FOR CLASS9", + 'F10':"CONCENTRATION OF FRAZIL FOR CLASS10", + 'F11':"CONCENTRATION OF FRAZIL FOR CLASS11", + 'F12':"CONCENTRATION OF FRAZIL FOR CLASS12", + 'F13':"CONCENTRATION OF FRAZIL FOR CLASS13", + 'F14':"CONCENTRATION OF FRAZIL FOR CLASS14", + 'F15':"CONCENTRATION OF FRAZIL FOR CLASS15", + 'F16':"CONCENTRATION OF FRAZIL FOR CLASS16", + 'F17':"CONCENTRATION OF FRAZIL FOR CLASS17", + 'F18':"CONCENTRATION OF FRAZIL FOR CLASS18", + 'F19':"CONCENTRATION OF FRAZIL FOR CLASS19", + 'F**':"CONCENTRATION OF FRAZIL FOR CLASS**", + 'F*':"CONCENTRATION OF FRAZIL FOR CLASS*", + 'F1':"CONCENTRATION OF FRAZIL FOR CLASS1", + 'F2':"CONCENTRATION OF FRAZIL FOR CLASS2", + 'F3':"CONCENTRATION OF FRAZIL FOR CLASS3", + 'F4':"CONCENTRATION OF FRAZIL FOR CLASS4", + 'F5':"CONCENTRATION OF FRAZIL FOR CLASS5", + 'F6':"CONCENTRATION OF FRAZIL FOR CLASS6", + 'F7':"CONCENTRATION OF FRAZIL FOR CLASS7", + 'F8':"CONCENTRATION OF FRAZIL FOR CLASS8", + 'F9':"CONCENTRATION OF FRAZIL FOR CLASS9", + 'F10':"CONCENTRATION OF FRAZIL FOR CLASS10", + 'F11':"CONCENTRATION OF FRAZIL FOR CLASS11", + 'F12':"CONCENTRATION OF FRAZIL FOR CLASS12", + 'F13':"CONCENTRATION OF FRAZIL FOR CLASS13", + 'F14':"CONCENTRATION OF FRAZIL FOR CLASS14", + 'F15':"CONCENTRATION OF FRAZIL FOR CLASS15", + 'F16':"CONCENTRATION OF FRAZIL FOR CLASS16", + 'F17':"CONCENTRATION OF FRAZIL FOR CLASS17", + 'F18':"CONCENTRATION OF FRAZIL FOR CLASS18", + 'F19':"CONCENTRATION OF FRAZIL FOR CLASS19", + 'F**':"CONCENTRATION OF FRAZIL FOR CLASS**", + 'F*':"CONCENTRATION OF FRAZIL FOR CLASS*", + 'F1':"CONCENTRATION OF FRAZIL FOR CLASS1", + 'F2':"CONCENTRATION OF FRAZIL FOR CLASS2", + 'F3':"CONCENTRATION OF FRAZIL FOR CLASS3", + 'F4':"CONCENTRATION OF FRAZIL FOR CLASS4", + 'F5':"CONCENTRATION OF FRAZIL FOR CLASS5", + 'F6':"CONCENTRATION OF FRAZIL FOR CLASS6", + 'F7':"CONCENTRATION OF FRAZIL FOR CLASS7", + 'F8':"CONCENTRATION OF FRAZIL FOR CLASS8", + 'F9':"CONCENTRATION OF FRAZIL FOR CLASS9", + 'F10':"CONCENTRATION OF FRAZIL FOR CLASS10", + 'F11':"CONCENTRATION OF FRAZIL FOR CLASS11", + 'F12':"CONCENTRATION OF FRAZIL FOR CLASS12", + 'F13':"CONCENTRATION OF FRAZIL FOR CLASS13", + 'F14':"CONCENTRATION OF FRAZIL FOR CLASS14", + 'F15':"CONCENTRATION OF FRAZIL FOR CLASS15", + 'F16':"CONCENTRATION OF FRAZIL FOR CLASS16", + 'F17':"CONCENTRATION OF FRAZIL FOR CLASS17", + 'F18':"CONCENTRATION OF FRAZIL FOR CLASS18", + 'F19':"CONCENTRATION OF FRAZIL FOR CLASS19", + 'F**':"CONCENTRATION OF FRAZIL FOR CLASS**", + 'F*':"CONCENTRATION OF FRAZIL FOR CLASS*", + 'F1':"CONCENTRATION OF FRAZIL FOR CLASS1", + 'F2':"CONCENTRATION OF FRAZIL FOR CLASS2", + 'F3':"CONCENTRATION OF FRAZIL FOR CLASS3", + 'F4':"CONCENTRATION OF FRAZIL FOR CLASS4", + 'F5':"CONCENTRATION OF FRAZIL FOR CLASS5", + 'F6':"CONCENTRATION OF FRAZIL FOR CLASS6", + 'F7':"CONCENTRATION OF FRAZIL FOR CLASS7", + 'F8':"CONCENTRATION OF FRAZIL FOR CLASS8", + 'F9':"CONCENTRATION OF FRAZIL FOR CLASS9", + 'F10':"CONCENTRATION OF FRAZIL FOR CLASS10", + 'F11':"CONCENTRATION OF FRAZIL FOR CLASS11", + 'F12':"CONCENTRATION OF FRAZIL FOR CLASS12", + 'F13':"CONCENTRATION OF FRAZIL FOR CLASS13", + 'F14':"CONCENTRATION OF FRAZIL FOR CLASS14", + 'F15':"CONCENTRATION OF FRAZIL FOR CLASS15", + 'F16':"CONCENTRATION OF FRAZIL FOR CLASS16", + 'F17':"CONCENTRATION OF FRAZIL FOR CLASS17", + 'F18':"CONCENTRATION OF FRAZIL FOR CLASS18", + 'F19':"CONCENTRATION OF FRAZIL FOR CLASS19", + 'F**':"CONCENTRATION OF FRAZIL FOR CLASS**", + 'F*':"CONCENTRATION OF FRAZIL FOR CLASS*", + 'F1':"CONCENTRATION OF FRAZIL FOR CLASS1", + 'F2':"CONCENTRATION OF FRAZIL FOR CLASS2", + 'F3':"CONCENTRATION OF FRAZIL FOR CLASS3", + 'F4':"CONCENTRATION OF FRAZIL FOR CLASS4", + 'F5':"CONCENTRATION OF FRAZIL FOR CLASS5", + 'F6':"CONCENTRATION OF FRAZIL FOR CLASS6", + 'F7':"CONCENTRATION OF FRAZIL FOR CLASS7", + 'F8':"CONCENTRATION OF FRAZIL FOR CLASS8", + 'F9':"CONCENTRATION OF FRAZIL FOR CLASS9", + 'F10':"CONCENTRATION OF FRAZIL FOR CLASS10", + 'F11':"CONCENTRATION OF FRAZIL FOR CLASS11", + 'F12':"CONCENTRATION OF FRAZIL FOR CLASS12", + 'F13':"CONCENTRATION OF FRAZIL FOR CLASS13", + 'F14':"CONCENTRATION OF FRAZIL FOR CLASS14", + 'F15':"CONCENTRATION OF FRAZIL FOR CLASS15", + 'F16':"CONCENTRATION OF FRAZIL FOR CLASS16", + 'F17':"CONCENTRATION OF FRAZIL FOR CLASS17", + 'F18':"CONCENTRATION OF FRAZIL FOR CLASS18", + 'F19':"CONCENTRATION OF FRAZIL FOR CLASS19", + 'F**':"CONCENTRATION OF FRAZIL FOR CLASS**", + 'F*':"CONCENTRATION OF FRAZIL FOR CLASS*", + 'F1':"CONCENTRATION OF FRAZIL FOR CLASS1", + 'F2':"CONCENTRATION OF FRAZIL FOR CLASS2", + 'F3':"CONCENTRATION OF FRAZIL FOR CLASS3", + 'F4':"CONCENTRATION OF FRAZIL FOR CLASS4", + 'F5':"CONCENTRATION OF FRAZIL FOR CLASS5", + 'F6':"CONCENTRATION OF FRAZIL FOR CLASS6", + 'F7':"CONCENTRATION OF FRAZIL FOR CLASS7", + 'F8':"CONCENTRATION OF FRAZIL FOR CLASS8", + 'F9':"CONCENTRATION OF FRAZIL FOR CLASS9", + 'F10':"CONCENTRATION OF FRAZIL FOR CLASS10", + 'F11':"CONCENTRATION OF FRAZIL FOR CLASS11", + 'F12':"CONCENTRATION OF FRAZIL FOR CLASS12", + 'F13':"CONCENTRATION OF FRAZIL FOR CLASS13", + 'F14':"CONCENTRATION OF FRAZIL FOR CLASS14", + 'F15':"CONCENTRATION OF FRAZIL FOR CLASS15", + 'F16':"CONCENTRATION OF FRAZIL FOR CLASS16", + 'F17':"CONCENTRATION OF FRAZIL FOR CLASS17", + 'F18':"CONCENTRATION OF FRAZIL FOR CLASS18", + 'F19':"CONCENTRATION OF FRAZIL FOR CLASS19", + 'F**':"CONCENTRATION OF FRAZIL FOR CLASS**", + 'F*':"CONCENTRATION OF FRAZIL FOR CLASS*", + 'F1':"CONCENTRATION OF FRAZIL FOR CLASS1", + 'F2':"CONCENTRATION OF FRAZIL FOR CLASS2", + 'F3':"CONCENTRATION OF FRAZIL FOR CLASS3", + 'F4':"CONCENTRATION OF FRAZIL FOR CLASS4", + 'F5':"CONCENTRATION OF FRAZIL FOR CLASS5", + 'F6':"CONCENTRATION OF FRAZIL FOR CLASS6", + 'F7':"CONCENTRATION OF FRAZIL FOR CLASS7", + 'F8':"CONCENTRATION OF FRAZIL FOR CLASS8", + 'F9':"CONCENTRATION OF FRAZIL FOR CLASS9", + 'F10':"CONCENTRATION OF FRAZIL FOR CLASS10", + 'F11':"CONCENTRATION OF FRAZIL FOR CLASS11", + 'F12':"CONCENTRATION OF FRAZIL FOR CLASS12", + 'F13':"CONCENTRATION OF FRAZIL FOR CLASS13", + 'F14':"CONCENTRATION OF FRAZIL FOR CLASS14", + 'F15':"CONCENTRATION OF FRAZIL FOR CLASS15", + 'F16':"CONCENTRATION OF FRAZIL FOR CLASS16", + 'F17':"CONCENTRATION OF FRAZIL FOR CLASS17", + 'F18':"CONCENTRATION OF FRAZIL FOR CLASS18", + 'F19':"CONCENTRATION OF FRAZIL FOR CLASS19", + 'F**':"CONCENTRATION OF FRAZIL FOR CLASS**", + 'F*':"CONCENTRATION OF FRAZIL FOR CLASS*", + 'F1':"CONCENTRATION OF FRAZIL FOR CLASS1", + 'F2':"CONCENTRATION OF FRAZIL FOR CLASS2", + 'F3':"CONCENTRATION OF FRAZIL FOR CLASS3", + 'F4':"CONCENTRATION OF FRAZIL FOR CLASS4", + 'F5':"CONCENTRATION OF FRAZIL FOR CLASS5", + 'F6':"CONCENTRATION OF FRAZIL FOR CLASS6", + 'F7':"CONCENTRATION OF FRAZIL FOR CLASS7", + 'F8':"CONCENTRATION OF FRAZIL FOR CLASS8", + 'F9':"CONCENTRATION OF FRAZIL FOR CLASS9", + 'F10':"CONCENTRATION OF FRAZIL FOR CLASS10", + 'F11':"CONCENTRATION OF FRAZIL FOR CLASS11", + 'F12':"CONCENTRATION OF FRAZIL FOR CLASS12", + 'F13':"CONCENTRATION OF FRAZIL FOR CLASS13", + 'F14':"CONCENTRATION OF FRAZIL FOR CLASS14", + 'F15':"CONCENTRATION OF FRAZIL FOR CLASS15", + 'F16':"CONCENTRATION OF FRAZIL FOR CLASS16", + 'F17':"CONCENTRATION OF FRAZIL FOR CLASS17", + 'F18':"CONCENTRATION OF FRAZIL FOR CLASS18", + 'F19':"CONCENTRATION OF FRAZIL FOR CLASS19", + 'F**':"CONCENTRATION OF FRAZIL FOR CLASS**", + 'F*':"CONCENTRATION OF FRAZIL FOR CLASS*", + 'F1':"CONCENTRATION OF FRAZIL FOR CLASS1", + 'F2':"CONCENTRATION OF FRAZIL FOR CLASS2", + 'F3':"CONCENTRATION OF FRAZIL FOR CLASS3", + 'F4':"CONCENTRATION OF FRAZIL FOR CLASS4", + 'F5':"CONCENTRATION OF FRAZIL FOR CLASS5", + 'F6':"CONCENTRATION OF FRAZIL FOR CLASS6", + 'F7':"CONCENTRATION OF FRAZIL FOR CLASS7", + 'F8':"CONCENTRATION OF FRAZIL FOR CLASS8", + 'F9':"CONCENTRATION OF FRAZIL FOR CLASS9", + 'F10':"CONCENTRATION OF FRAZIL FOR CLASS10", + 'F11':"CONCENTRATION OF FRAZIL FOR CLASS11", + 'F12':"CONCENTRATION OF FRAZIL FOR CLASS12", + 'F13':"CONCENTRATION OF FRAZIL FOR CLASS13", + 'F14':"CONCENTRATION OF FRAZIL FOR CLASS14", + 'F15':"CONCENTRATION OF FRAZIL FOR CLASS15", + 'F16':"CONCENTRATION OF FRAZIL FOR CLASS16", + 'F17':"CONCENTRATION OF FRAZIL FOR CLASS17", + 'F18':"CONCENTRATION OF FRAZIL FOR CLASS18", + 'F19':"CONCENTRATION OF FRAZIL FOR CLASS19", + 'F**':"CONCENTRATION OF FRAZIL FOR CLASS**", + 'N*':"PARTICLE NUMBER OF FRAZIL FOR CLASS*", + 'N1':"PARTICLE NUMBER OF FRAZIL FOR CLASS1", + 'N2':"PARTICLE NUMBER OF FRAZIL FOR CLASS2", + 'N3':"PARTICLE NUMBER OF FRAZIL FOR CLASS3", + 'N4':"PARTICLE NUMBER OF FRAZIL FOR CLASS4", + 'N5':"PARTICLE NUMBER OF FRAZIL FOR CLASS5", + 'N6':"PARTICLE NUMBER OF FRAZIL FOR CLASS6", + 'N7':"PARTICLE NUMBER OF FRAZIL FOR CLASS7", + 'N8':"PARTICLE NUMBER OF FRAZIL FOR CLASS8", + 'N9':"PARTICLE NUMBER OF FRAZIL FOR CLASS9", + 'N10':"PARTICLE NUMBER OF FRAZIL FOR CLASS10", + 'N11':"PARTICLE NUMBER OF FRAZIL FOR CLASS11", + 'N12':"PARTICLE NUMBER OF FRAZIL FOR CLASS12", + 'N13':"PARTICLE NUMBER OF FRAZIL FOR CLASS13", + 'N14':"PARTICLE NUMBER OF FRAZIL FOR CLASS14", + 'N15':"PARTICLE NUMBER OF FRAZIL FOR CLASS15", + 'N16':"PARTICLE NUMBER OF FRAZIL FOR CLASS16", + 'N17':"PARTICLE NUMBER OF FRAZIL FOR CLASS17", + 'N18':"PARTICLE NUMBER OF FRAZIL FOR CLASS18", + 'N19':"PARTICLE NUMBER OF FRAZIL FOR CLASS19", + 'N**':"PARTICLE NUMBER OF FRAZIL FOR CLASS**", + 'N*':"PARTICLE NUMBER OF FRAZIL FOR CLASS*", + 'N1':"PARTICLE NUMBER OF FRAZIL FOR CLASS1", + 'N2':"PARTICLE NUMBER OF FRAZIL FOR CLASS2", + 'N3':"PARTICLE NUMBER OF FRAZIL FOR CLASS3", + 'N4':"PARTICLE NUMBER OF FRAZIL FOR CLASS4", + 'N5':"PARTICLE NUMBER OF FRAZIL FOR CLASS5", + 'N6':"PARTICLE NUMBER OF FRAZIL FOR CLASS6", + 'N7':"PARTICLE NUMBER OF FRAZIL FOR CLASS7", + 'N8':"PARTICLE NUMBER OF FRAZIL FOR CLASS8", + 'N9':"PARTICLE NUMBER OF FRAZIL FOR CLASS9", + 'N10':"PARTICLE NUMBER OF FRAZIL FOR CLASS10", + 'N11':"PARTICLE NUMBER OF FRAZIL FOR CLASS11", + 'N12':"PARTICLE NUMBER OF FRAZIL FOR CLASS12", + 'N13':"PARTICLE NUMBER OF FRAZIL FOR CLASS13", + 'N14':"PARTICLE NUMBER OF FRAZIL FOR CLASS14", + 'N15':"PARTICLE NUMBER OF FRAZIL FOR CLASS15", + 'N16':"PARTICLE NUMBER OF FRAZIL FOR CLASS16", + 'N17':"PARTICLE NUMBER OF FRAZIL FOR CLASS17", + 'N18':"PARTICLE NUMBER OF FRAZIL FOR CLASS18", + 'N19':"PARTICLE NUMBER OF FRAZIL FOR CLASS19", + 'N**':"PARTICLE NUMBER OF FRAZIL FOR CLASS**", + 'N*':"PARTICLE NUMBER OF FRAZIL FOR CLASS*", + 'N1':"PARTICLE NUMBER OF FRAZIL FOR CLASS1", + 'N2':"PARTICLE NUMBER OF FRAZIL FOR CLASS2", + 'N3':"PARTICLE NUMBER OF FRAZIL FOR CLASS3", + 'N4':"PARTICLE NUMBER OF FRAZIL FOR CLASS4", + 'N5':"PARTICLE NUMBER OF FRAZIL FOR CLASS5", + 'N6':"PARTICLE NUMBER OF FRAZIL FOR CLASS6", + 'N7':"PARTICLE NUMBER OF FRAZIL FOR CLASS7", + 'N8':"PARTICLE NUMBER OF FRAZIL FOR CLASS8", + 'N9':"PARTICLE NUMBER OF FRAZIL FOR CLASS9", + 'N10':"PARTICLE NUMBER OF FRAZIL FOR CLASS10", + 'N11':"PARTICLE NUMBER OF FRAZIL FOR CLASS11", + 'N12':"PARTICLE NUMBER OF FRAZIL FOR CLASS12", + 'N13':"PARTICLE NUMBER OF FRAZIL FOR CLASS13", + 'N14':"PARTICLE NUMBER OF FRAZIL FOR CLASS14", + 'N15':"PARTICLE NUMBER OF FRAZIL FOR CLASS15", + 'N16':"PARTICLE NUMBER OF FRAZIL FOR CLASS16", + 'N17':"PARTICLE NUMBER OF FRAZIL FOR CLASS17", + 'N18':"PARTICLE NUMBER OF FRAZIL FOR CLASS18", + 'N19':"PARTICLE NUMBER OF FRAZIL FOR CLASS19", + 'N**':"PARTICLE NUMBER OF FRAZIL FOR CLASS**", + 'N*':"PARTICLE NUMBER OF FRAZIL FOR CLASS*", + 'N1':"PARTICLE NUMBER OF FRAZIL FOR CLASS1", + 'N2':"PARTICLE NUMBER OF FRAZIL FOR CLASS2", + 'N3':"PARTICLE NUMBER OF FRAZIL FOR CLASS3", + 'N4':"PARTICLE NUMBER OF FRAZIL FOR CLASS4", + 'N5':"PARTICLE NUMBER OF FRAZIL FOR CLASS5", + 'N6':"PARTICLE NUMBER OF FRAZIL FOR CLASS6", + 'N7':"PARTICLE NUMBER OF FRAZIL FOR CLASS7", + 'N8':"PARTICLE NUMBER OF FRAZIL FOR CLASS8", + 'N9':"PARTICLE NUMBER OF FRAZIL FOR CLASS9", + 'N10':"PARTICLE NUMBER OF FRAZIL FOR CLASS10", + 'N11':"PARTICLE NUMBER OF FRAZIL FOR CLASS11", + 'N12':"PARTICLE NUMBER OF FRAZIL FOR CLASS12", + 'N13':"PARTICLE NUMBER OF FRAZIL FOR CLASS13", + 'N14':"PARTICLE NUMBER OF FRAZIL FOR CLASS14", + 'N15':"PARTICLE NUMBER OF FRAZIL FOR CLASS15", + 'N16':"PARTICLE NUMBER OF FRAZIL FOR CLASS16", + 'N17':"PARTICLE NUMBER OF FRAZIL FOR CLASS17", + 'N18':"PARTICLE NUMBER OF FRAZIL FOR CLASS18", + 'N19':"PARTICLE NUMBER OF FRAZIL FOR CLASS19", + 'N**':"PARTICLE NUMBER OF FRAZIL FOR CLASS**", + 'N*':"PARTICLE NUMBER OF FRAZIL FOR CLASS*", + 'N1':"PARTICLE NUMBER OF FRAZIL FOR CLASS1", + 'N2':"PARTICLE NUMBER OF FRAZIL FOR CLASS2", + 'N3':"PARTICLE NUMBER OF FRAZIL FOR CLASS3", + 'N4':"PARTICLE NUMBER OF FRAZIL FOR CLASS4", + 'N5':"PARTICLE NUMBER OF FRAZIL FOR CLASS5", + 'N6':"PARTICLE NUMBER OF FRAZIL FOR CLASS6", + 'N7':"PARTICLE NUMBER OF FRAZIL FOR CLASS7", + 'N8':"PARTICLE NUMBER OF FRAZIL FOR CLASS8", + 'N9':"PARTICLE NUMBER OF FRAZIL FOR CLASS9", + 'N10':"PARTICLE NUMBER OF FRAZIL FOR CLASS10", + 'N11':"PARTICLE NUMBER OF FRAZIL FOR CLASS11", + 'N12':"PARTICLE NUMBER OF FRAZIL FOR CLASS12", + 'N13':"PARTICLE NUMBER OF FRAZIL FOR CLASS13", + 'N14':"PARTICLE NUMBER OF FRAZIL FOR CLASS14", + 'N15':"PARTICLE NUMBER OF FRAZIL FOR CLASS15", + 'N16':"PARTICLE NUMBER OF FRAZIL FOR CLASS16", + 'N17':"PARTICLE NUMBER OF FRAZIL FOR CLASS17", + 'N18':"PARTICLE NUMBER OF FRAZIL FOR CLASS18", + 'N19':"PARTICLE NUMBER OF FRAZIL FOR CLASS19", + 'N**':"PARTICLE NUMBER OF FRAZIL FOR CLASS**", + 'N*':"PARTICLE NUMBER OF FRAZIL FOR CLASS*", + 'N1':"PARTICLE NUMBER OF FRAZIL FOR CLASS1", + 'N2':"PARTICLE NUMBER OF FRAZIL FOR CLASS2", + 'N3':"PARTICLE NUMBER OF FRAZIL FOR CLASS3", + 'N4':"PARTICLE NUMBER OF FRAZIL FOR CLASS4", + 'N5':"PARTICLE NUMBER OF FRAZIL FOR CLASS5", + 'N6':"PARTICLE NUMBER OF FRAZIL FOR CLASS6", + 'N7':"PARTICLE NUMBER OF FRAZIL FOR CLASS7", + 'N8':"PARTICLE NUMBER OF FRAZIL FOR CLASS8", + 'N9':"PARTICLE NUMBER OF FRAZIL FOR CLASS9", + 'N10':"PARTICLE NUMBER OF FRAZIL FOR CLASS10", + 'N11':"PARTICLE NUMBER OF FRAZIL FOR CLASS11", + 'N12':"PARTICLE NUMBER OF FRAZIL FOR CLASS12", + 'N13':"PARTICLE NUMBER OF FRAZIL FOR CLASS13", + 'N14':"PARTICLE NUMBER OF FRAZIL FOR CLASS14", + 'N15':"PARTICLE NUMBER OF FRAZIL FOR CLASS15", + 'N16':"PARTICLE NUMBER OF FRAZIL FOR CLASS16", + 'N17':"PARTICLE NUMBER OF FRAZIL FOR CLASS17", + 'N18':"PARTICLE NUMBER OF FRAZIL FOR CLASS18", + 'N19':"PARTICLE NUMBER OF FRAZIL FOR CLASS19", + 'N**':"PARTICLE NUMBER OF FRAZIL FOR CLASS**", + 'N*':"PARTICLE NUMBER OF FRAZIL FOR CLASS*", + 'N1':"PARTICLE NUMBER OF FRAZIL FOR CLASS1", + 'N2':"PARTICLE NUMBER OF FRAZIL FOR CLASS2", + 'N3':"PARTICLE NUMBER OF FRAZIL FOR CLASS3", + 'N4':"PARTICLE NUMBER OF FRAZIL FOR CLASS4", + 'N5':"PARTICLE NUMBER OF FRAZIL FOR CLASS5", + 'N6':"PARTICLE NUMBER OF FRAZIL FOR CLASS6", + 'N7':"PARTICLE NUMBER OF FRAZIL FOR CLASS7", + 'N8':"PARTICLE NUMBER OF FRAZIL FOR CLASS8", + 'N9':"PARTICLE NUMBER OF FRAZIL FOR CLASS9", + 'N10':"PARTICLE NUMBER OF FRAZIL FOR CLASS10", + 'N11':"PARTICLE NUMBER OF FRAZIL FOR CLASS11", + 'N12':"PARTICLE NUMBER OF FRAZIL FOR CLASS12", + 'N13':"PARTICLE NUMBER OF FRAZIL FOR CLASS13", + 'N14':"PARTICLE NUMBER OF FRAZIL FOR CLASS14", + 'N15':"PARTICLE NUMBER OF FRAZIL FOR CLASS15", + 'N16':"PARTICLE NUMBER OF FRAZIL FOR CLASS16", + 'N17':"PARTICLE NUMBER OF FRAZIL FOR CLASS17", + 'N18':"PARTICLE NUMBER OF FRAZIL FOR CLASS18", + 'N19':"PARTICLE NUMBER OF FRAZIL FOR CLASS19", + 'N**':"PARTICLE NUMBER OF FRAZIL FOR CLASS**", + 'N*':"PARTICLE NUMBER OF FRAZIL FOR CLASS*", + 'N1':"PARTICLE NUMBER OF FRAZIL FOR CLASS1", + 'N2':"PARTICLE NUMBER OF FRAZIL FOR CLASS2", + 'N3':"PARTICLE NUMBER OF FRAZIL FOR CLASS3", + 'N4':"PARTICLE NUMBER OF FRAZIL FOR CLASS4", + 'N5':"PARTICLE NUMBER OF FRAZIL FOR CLASS5", + 'N6':"PARTICLE NUMBER OF FRAZIL FOR CLASS6", + 'N7':"PARTICLE NUMBER OF FRAZIL FOR CLASS7", + 'N8':"PARTICLE NUMBER OF FRAZIL FOR CLASS8", + 'N9':"PARTICLE NUMBER OF FRAZIL FOR CLASS9", + 'N10':"PARTICLE NUMBER OF FRAZIL FOR CLASS10", + 'N11':"PARTICLE NUMBER OF FRAZIL FOR CLASS11", + 'N12':"PARTICLE NUMBER OF FRAZIL FOR CLASS12", + 'N13':"PARTICLE NUMBER OF FRAZIL FOR CLASS13", + 'N14':"PARTICLE NUMBER OF FRAZIL FOR CLASS14", + 'N15':"PARTICLE NUMBER OF FRAZIL FOR CLASS15", + 'N16':"PARTICLE NUMBER OF FRAZIL FOR CLASS16", + 'N17':"PARTICLE NUMBER OF FRAZIL FOR CLASS17", + 'N18':"PARTICLE NUMBER OF FRAZIL FOR CLASS18", + 'N19':"PARTICLE NUMBER OF FRAZIL FOR CLASS19", + 'N**':"PARTICLE NUMBER OF FRAZIL FOR CLASS**", + 'N*':"PARTICLE NUMBER OF FRAZIL FOR CLASS*", + 'N1':"PARTICLE NUMBER OF FRAZIL FOR CLASS1", + 'N2':"PARTICLE NUMBER OF FRAZIL FOR CLASS2", + 'N3':"PARTICLE NUMBER OF FRAZIL FOR CLASS3", + 'N4':"PARTICLE NUMBER OF FRAZIL FOR CLASS4", + 'N5':"PARTICLE NUMBER OF FRAZIL FOR CLASS5", + 'N6':"PARTICLE NUMBER OF FRAZIL FOR CLASS6", + 'N7':"PARTICLE NUMBER OF FRAZIL FOR CLASS7", + 'N8':"PARTICLE NUMBER OF FRAZIL FOR CLASS8", + 'N9':"PARTICLE NUMBER OF FRAZIL FOR CLASS9", + 'N10':"PARTICLE NUMBER OF FRAZIL FOR CLASS10", + 'N11':"PARTICLE NUMBER OF FRAZIL FOR CLASS11", + 'N12':"PARTICLE NUMBER OF FRAZIL FOR CLASS12", + 'N13':"PARTICLE NUMBER OF FRAZIL FOR CLASS13", + 'N14':"PARTICLE NUMBER OF FRAZIL FOR CLASS14", + 'N15':"PARTICLE NUMBER OF FRAZIL FOR CLASS15", + 'N16':"PARTICLE NUMBER OF FRAZIL FOR CLASS16", + 'N17':"PARTICLE NUMBER OF FRAZIL FOR CLASS17", + 'N18':"PARTICLE NUMBER OF FRAZIL FOR CLASS18", + 'N19':"PARTICLE NUMBER OF FRAZIL FOR CLASS19", + 'N**':"PARTICLE NUMBER OF FRAZIL FOR CLASS**", + 'N*':"PARTICLE NUMBER OF FRAZIL FOR CLASS*", + 'N1':"PARTICLE NUMBER OF FRAZIL FOR CLASS1", + 'N2':"PARTICLE NUMBER OF FRAZIL FOR CLASS2", + 'N3':"PARTICLE NUMBER OF FRAZIL FOR CLASS3", + 'N4':"PARTICLE NUMBER OF FRAZIL FOR CLASS4", + 'N5':"PARTICLE NUMBER OF FRAZIL FOR CLASS5", + 'N6':"PARTICLE NUMBER OF FRAZIL FOR CLASS6", + 'N7':"PARTICLE NUMBER OF FRAZIL FOR CLASS7", + 'N8':"PARTICLE NUMBER OF FRAZIL FOR CLASS8", + 'N9':"PARTICLE NUMBER OF FRAZIL FOR CLASS9", + 'N10':"PARTICLE NUMBER OF FRAZIL FOR CLASS10", + 'N11':"PARTICLE NUMBER OF FRAZIL FOR CLASS11", + 'N12':"PARTICLE NUMBER OF FRAZIL FOR CLASS12", + 'N13':"PARTICLE NUMBER OF FRAZIL FOR CLASS13", + 'N14':"PARTICLE NUMBER OF FRAZIL FOR CLASS14", + 'N15':"PARTICLE NUMBER OF FRAZIL FOR CLASS15", + 'N16':"PARTICLE NUMBER OF FRAZIL FOR CLASS16", + 'N17':"PARTICLE NUMBER OF FRAZIL FOR CLASS17", + 'N18':"PARTICLE NUMBER OF FRAZIL FOR CLASS18", + 'N19':"PARTICLE NUMBER OF FRAZIL FOR CLASS19", + 'N**':"PARTICLE NUMBER OF FRAZIL FOR CLASS**", + 'N*':"PARTICLE NUMBER OF FRAZIL FOR CLASS*", + 'N1':"PARTICLE NUMBER OF FRAZIL FOR CLASS1", + 'N2':"PARTICLE NUMBER OF FRAZIL FOR CLASS2", + 'N3':"PARTICLE NUMBER OF FRAZIL FOR CLASS3", + 'N4':"PARTICLE NUMBER OF FRAZIL FOR CLASS4", + 'N5':"PARTICLE NUMBER OF FRAZIL FOR CLASS5", + 'N6':"PARTICLE NUMBER OF FRAZIL FOR CLASS6", + 'N7':"PARTICLE NUMBER OF FRAZIL FOR CLASS7", + 'N8':"PARTICLE NUMBER OF FRAZIL FOR CLASS8", + 'N9':"PARTICLE NUMBER OF FRAZIL FOR CLASS9", + 'N10':"PARTICLE NUMBER OF FRAZIL FOR CLASS10", + 'N11':"PARTICLE NUMBER OF FRAZIL FOR CLASS11", + 'N12':"PARTICLE NUMBER OF FRAZIL FOR CLASS12", + 'N13':"PARTICLE NUMBER OF FRAZIL FOR CLASS13", + 'N14':"PARTICLE NUMBER OF FRAZIL FOR CLASS14", + 'N15':"PARTICLE NUMBER OF FRAZIL FOR CLASS15", + 'N16':"PARTICLE NUMBER OF FRAZIL FOR CLASS16", + 'N17':"PARTICLE NUMBER OF FRAZIL FOR CLASS17", + 'N18':"PARTICLE NUMBER OF FRAZIL FOR CLASS18", + 'N19':"PARTICLE NUMBER OF FRAZIL FOR CLASS19", + 'N**':"PARTICLE NUMBER OF FRAZIL FOR CLASS**", + 'N*':"PARTICLE NUMBER OF FRAZIL FOR CLASS*", + 'N1':"PARTICLE NUMBER OF FRAZIL FOR CLASS1", + 'N2':"PARTICLE NUMBER OF FRAZIL FOR CLASS2", + 'N3':"PARTICLE NUMBER OF FRAZIL FOR CLASS3", + 'N4':"PARTICLE NUMBER OF FRAZIL FOR CLASS4", + 'N5':"PARTICLE NUMBER OF FRAZIL FOR CLASS5", + 'N6':"PARTICLE NUMBER OF FRAZIL FOR CLASS6", + 'N7':"PARTICLE NUMBER OF FRAZIL FOR CLASS7", + 'N8':"PARTICLE NUMBER OF FRAZIL FOR CLASS8", + 'N9':"PARTICLE NUMBER OF FRAZIL FOR CLASS9", + 'N10':"PARTICLE NUMBER OF FRAZIL FOR CLASS10", + 'N11':"PARTICLE NUMBER OF FRAZIL FOR CLASS11", + 'N12':"PARTICLE NUMBER OF FRAZIL FOR CLASS12", + 'N13':"PARTICLE NUMBER OF FRAZIL FOR CLASS13", + 'N14':"PARTICLE NUMBER OF FRAZIL FOR CLASS14", + 'N15':"PARTICLE NUMBER OF FRAZIL FOR CLASS15", + 'N16':"PARTICLE NUMBER OF FRAZIL FOR CLASS16", + 'N17':"PARTICLE NUMBER OF FRAZIL FOR CLASS17", + 'N18':"PARTICLE NUMBER OF FRAZIL FOR CLASS18", + 'N19':"PARTICLE NUMBER OF FRAZIL FOR CLASS19", + 'N**':"PARTICLE NUMBER OF FRAZIL FOR CLASS**", + 'N*':"PARTICLE NUMBER OF FRAZIL FOR CLASS*", + 'N1':"PARTICLE NUMBER OF FRAZIL FOR CLASS1", + 'N2':"PARTICLE NUMBER OF FRAZIL FOR CLASS2", + 'N3':"PARTICLE NUMBER OF FRAZIL FOR CLASS3", + 'N4':"PARTICLE NUMBER OF FRAZIL FOR CLASS4", + 'N5':"PARTICLE NUMBER OF FRAZIL FOR CLASS5", + 'N6':"PARTICLE NUMBER OF FRAZIL FOR CLASS6", + 'N7':"PARTICLE NUMBER OF FRAZIL FOR CLASS7", + 'N8':"PARTICLE NUMBER OF FRAZIL FOR CLASS8", + 'N9':"PARTICLE NUMBER OF FRAZIL FOR CLASS9", + 'N10':"PARTICLE NUMBER OF FRAZIL FOR CLASS10", + 'N11':"PARTICLE NUMBER OF FRAZIL FOR CLASS11", + 'N12':"PARTICLE NUMBER OF FRAZIL FOR CLASS12", + 'N13':"PARTICLE NUMBER OF FRAZIL FOR CLASS13", + 'N14':"PARTICLE NUMBER OF FRAZIL FOR CLASS14", + 'N15':"PARTICLE NUMBER OF FRAZIL FOR CLASS15", + 'N16':"PARTICLE NUMBER OF FRAZIL FOR CLASS16", + 'N17':"PARTICLE NUMBER OF FRAZIL FOR CLASS17", + 'N18':"PARTICLE NUMBER OF FRAZIL FOR CLASS18", + 'N19':"PARTICLE NUMBER OF FRAZIL FOR CLASS19", + 'N**':"PARTICLE NUMBER OF FRAZIL FOR CLASS**", + 'N*':"PARTICLE NUMBER OF FRAZIL FOR CLASS*", + 'N1':"PARTICLE NUMBER OF FRAZIL FOR CLASS1", + 'N2':"PARTICLE NUMBER OF FRAZIL FOR CLASS2", + 'N3':"PARTICLE NUMBER OF FRAZIL FOR CLASS3", + 'N4':"PARTICLE NUMBER OF FRAZIL FOR CLASS4", + 'N5':"PARTICLE NUMBER OF FRAZIL FOR CLASS5", + 'N6':"PARTICLE NUMBER OF FRAZIL FOR CLASS6", + 'N7':"PARTICLE NUMBER OF FRAZIL FOR CLASS7", + 'N8':"PARTICLE NUMBER OF FRAZIL FOR CLASS8", + 'N9':"PARTICLE NUMBER OF FRAZIL FOR CLASS9", + 'N10':"PARTICLE NUMBER OF FRAZIL FOR CLASS10", + 'N11':"PARTICLE NUMBER OF FRAZIL FOR CLASS11", + 'N12':"PARTICLE NUMBER OF FRAZIL FOR CLASS12", + 'N13':"PARTICLE NUMBER OF FRAZIL FOR CLASS13", + 'N14':"PARTICLE NUMBER OF FRAZIL FOR CLASS14", + 'N15':"PARTICLE NUMBER OF FRAZIL FOR CLASS15", + 'N16':"PARTICLE NUMBER OF FRAZIL FOR CLASS16", + 'N17':"PARTICLE NUMBER OF FRAZIL FOR CLASS17", + 'N18':"PARTICLE NUMBER OF FRAZIL FOR CLASS18", + 'N19':"PARTICLE NUMBER OF FRAZIL FOR CLASS19", + 'N**':"PARTICLE NUMBER OF FRAZIL FOR CLASS**", + 'N*':"PARTICLE NUMBER OF FRAZIL FOR CLASS*", + 'N1':"PARTICLE NUMBER OF FRAZIL FOR CLASS1", + 'N2':"PARTICLE NUMBER OF FRAZIL FOR CLASS2", + 'N3':"PARTICLE NUMBER OF FRAZIL FOR CLASS3", + 'N4':"PARTICLE NUMBER OF FRAZIL FOR CLASS4", + 'N5':"PARTICLE NUMBER OF FRAZIL FOR CLASS5", + 'N6':"PARTICLE NUMBER OF FRAZIL FOR CLASS6", + 'N7':"PARTICLE NUMBER OF FRAZIL FOR CLASS7", + 'N8':"PARTICLE NUMBER OF FRAZIL FOR CLASS8", + 'N9':"PARTICLE NUMBER OF FRAZIL FOR CLASS9", + 'N10':"PARTICLE NUMBER OF FRAZIL FOR CLASS10", + 'N11':"PARTICLE NUMBER OF FRAZIL FOR CLASS11", + 'N12':"PARTICLE NUMBER OF FRAZIL FOR CLASS12", + 'N13':"PARTICLE NUMBER OF FRAZIL FOR CLASS13", + 'N14':"PARTICLE NUMBER OF FRAZIL FOR CLASS14", + 'N15':"PARTICLE NUMBER OF FRAZIL FOR CLASS15", + 'N16':"PARTICLE NUMBER OF FRAZIL FOR CLASS16", + 'N17':"PARTICLE NUMBER OF FRAZIL FOR CLASS17", + 'N18':"PARTICLE NUMBER OF FRAZIL FOR CLASS18", + 'N19':"PARTICLE NUMBER OF FRAZIL FOR CLASS19", + 'N**':"PARTICLE NUMBER OF FRAZIL FOR CLASS**", + 'N*':"PARTICLE NUMBER OF FRAZIL FOR CLASS*", + 'N1':"PARTICLE NUMBER OF FRAZIL FOR CLASS1", + 'N2':"PARTICLE NUMBER OF FRAZIL FOR CLASS2", + 'N3':"PARTICLE NUMBER OF FRAZIL FOR CLASS3", + 'N4':"PARTICLE NUMBER OF FRAZIL FOR CLASS4", + 'N5':"PARTICLE NUMBER OF FRAZIL FOR CLASS5", + 'N6':"PARTICLE NUMBER OF FRAZIL FOR CLASS6", + 'N7':"PARTICLE NUMBER OF FRAZIL FOR CLASS7", + 'N8':"PARTICLE NUMBER OF FRAZIL FOR CLASS8", + 'N9':"PARTICLE NUMBER OF FRAZIL FOR CLASS9", + 'N10':"PARTICLE NUMBER OF FRAZIL FOR CLASS10", + 'N11':"PARTICLE NUMBER OF FRAZIL FOR CLASS11", + 'N12':"PARTICLE NUMBER OF FRAZIL FOR CLASS12", + 'N13':"PARTICLE NUMBER OF FRAZIL FOR CLASS13", + 'N14':"PARTICLE NUMBER OF FRAZIL FOR CLASS14", + 'N15':"PARTICLE NUMBER OF FRAZIL FOR CLASS15", + 'N16':"PARTICLE NUMBER OF FRAZIL FOR CLASS16", + 'N17':"PARTICLE NUMBER OF FRAZIL FOR CLASS17", + 'N18':"PARTICLE NUMBER OF FRAZIL FOR CLASS18", + 'N19':"PARTICLE NUMBER OF FRAZIL FOR CLASS19", + 'N**':"PARTICLE NUMBER OF FRAZIL FOR CLASS**", + 'N*':"PARTICLE NUMBER OF FRAZIL FOR CLASS*", + 'N1':"PARTICLE NUMBER OF FRAZIL FOR CLASS1", + 'N2':"PARTICLE NUMBER OF FRAZIL FOR CLASS2", + 'N3':"PARTICLE NUMBER OF FRAZIL FOR CLASS3", + 'N4':"PARTICLE NUMBER OF FRAZIL FOR CLASS4", + 'N5':"PARTICLE NUMBER OF FRAZIL FOR CLASS5", + 'N6':"PARTICLE NUMBER OF FRAZIL FOR CLASS6", + 'N7':"PARTICLE NUMBER OF FRAZIL FOR CLASS7", + 'N8':"PARTICLE NUMBER OF FRAZIL FOR CLASS8", + 'N9':"PARTICLE NUMBER OF FRAZIL FOR CLASS9", + 'N10':"PARTICLE NUMBER OF FRAZIL FOR CLASS10", + 'N11':"PARTICLE NUMBER OF FRAZIL FOR CLASS11", + 'N12':"PARTICLE NUMBER OF FRAZIL FOR CLASS12", + 'N13':"PARTICLE NUMBER OF FRAZIL FOR CLASS13", + 'N14':"PARTICLE NUMBER OF FRAZIL FOR CLASS14", + 'N15':"PARTICLE NUMBER OF FRAZIL FOR CLASS15", + 'N16':"PARTICLE NUMBER OF FRAZIL FOR CLASS16", + 'N17':"PARTICLE NUMBER OF FRAZIL FOR CLASS17", + 'N18':"PARTICLE NUMBER OF FRAZIL FOR CLASS18", + 'N19':"PARTICLE NUMBER OF FRAZIL FOR CLASS19", + 'N**':"PARTICLE NUMBER OF FRAZIL FOR CLASS**", + 'N*':"PARTICLE NUMBER OF FRAZIL FOR CLASS*", + 'N1':"PARTICLE NUMBER OF FRAZIL FOR CLASS1", + 'N2':"PARTICLE NUMBER OF FRAZIL FOR CLASS2", + 'N3':"PARTICLE NUMBER OF FRAZIL FOR CLASS3", + 'N4':"PARTICLE NUMBER OF FRAZIL FOR CLASS4", + 'N5':"PARTICLE NUMBER OF FRAZIL FOR CLASS5", + 'N6':"PARTICLE NUMBER OF FRAZIL FOR CLASS6", + 'N7':"PARTICLE NUMBER OF FRAZIL FOR CLASS7", + 'N8':"PARTICLE NUMBER OF FRAZIL FOR CLASS8", + 'N9':"PARTICLE NUMBER OF FRAZIL FOR CLASS9", + 'N10':"PARTICLE NUMBER OF FRAZIL FOR CLASS10", + 'N11':"PARTICLE NUMBER OF FRAZIL FOR CLASS11", + 'N12':"PARTICLE NUMBER OF FRAZIL FOR CLASS12", + 'N13':"PARTICLE NUMBER OF FRAZIL FOR CLASS13", + 'N14':"PARTICLE NUMBER OF FRAZIL FOR CLASS14", + 'N15':"PARTICLE NUMBER OF FRAZIL FOR CLASS15", + 'N16':"PARTICLE NUMBER OF FRAZIL FOR CLASS16", + 'N17':"PARTICLE NUMBER OF FRAZIL FOR CLASS17", + 'N18':"PARTICLE NUMBER OF FRAZIL FOR CLASS18", + 'N19':"PARTICLE NUMBER OF FRAZIL FOR CLASS19", + 'N**':"PARTICLE NUMBER OF FRAZIL FOR CLASS**", + 'N*':"PARTICLE NUMBER OF FRAZIL FOR CLASS*", + 'N1':"PARTICLE NUMBER OF FRAZIL FOR CLASS1", + 'N2':"PARTICLE NUMBER OF FRAZIL FOR CLASS2", + 'N3':"PARTICLE NUMBER OF FRAZIL FOR CLASS3", + 'N4':"PARTICLE NUMBER OF FRAZIL FOR CLASS4", + 'N5':"PARTICLE NUMBER OF FRAZIL FOR CLASS5", + 'N6':"PARTICLE NUMBER OF FRAZIL FOR CLASS6", + 'N7':"PARTICLE NUMBER OF FRAZIL FOR CLASS7", + 'N8':"PARTICLE NUMBER OF FRAZIL FOR CLASS8", + 'N9':"PARTICLE NUMBER OF FRAZIL FOR CLASS9", + 'N10':"PARTICLE NUMBER OF FRAZIL FOR CLASS10", + 'N11':"PARTICLE NUMBER OF FRAZIL FOR CLASS11", + 'N12':"PARTICLE NUMBER OF FRAZIL FOR CLASS12", + 'N13':"PARTICLE NUMBER OF FRAZIL FOR CLASS13", + 'N14':"PARTICLE NUMBER OF FRAZIL FOR CLASS14", + 'N15':"PARTICLE NUMBER OF FRAZIL FOR CLASS15", + 'N16':"PARTICLE NUMBER OF FRAZIL FOR CLASS16", + 'N17':"PARTICLE NUMBER OF FRAZIL FOR CLASS17", + 'N18':"PARTICLE NUMBER OF FRAZIL FOR CLASS18", + 'N19':"PARTICLE NUMBER OF FRAZIL FOR CLASS19", + 'N**':"PARTICLE NUMBER OF FRAZIL FOR CLASS**", + 'N*':"PARTICLE NUMBER OF FRAZIL FOR CLASS*", + 'N1':"PARTICLE NUMBER OF FRAZIL FOR CLASS1", + 'N2':"PARTICLE NUMBER OF FRAZIL FOR CLASS2", + 'N3':"PARTICLE NUMBER OF FRAZIL FOR CLASS3", + 'N4':"PARTICLE NUMBER OF FRAZIL FOR CLASS4", + 'N5':"PARTICLE NUMBER OF FRAZIL FOR CLASS5", + 'N6':"PARTICLE NUMBER OF FRAZIL FOR CLASS6", + 'N7':"PARTICLE NUMBER OF FRAZIL FOR CLASS7", + 'N8':"PARTICLE NUMBER OF FRAZIL FOR CLASS8", + 'N9':"PARTICLE NUMBER OF FRAZIL FOR CLASS9", + 'N10':"PARTICLE NUMBER OF FRAZIL FOR CLASS10", + 'N11':"PARTICLE NUMBER OF FRAZIL FOR CLASS11", + 'N12':"PARTICLE NUMBER OF FRAZIL FOR CLASS12", + 'N13':"PARTICLE NUMBER OF FRAZIL FOR CLASS13", + 'N14':"PARTICLE NUMBER OF FRAZIL FOR CLASS14", + 'N15':"PARTICLE NUMBER OF FRAZIL FOR CLASS15", + 'N16':"PARTICLE NUMBER OF FRAZIL FOR CLASS16", + 'N17':"PARTICLE NUMBER OF FRAZIL FOR CLASS17", + 'N18':"PARTICLE NUMBER OF FRAZIL FOR CLASS18", + 'N19':"PARTICLE NUMBER OF FRAZIL FOR CLASS19", + 'N**':"PARTICLE NUMBER OF FRAZIL FOR CLASS**", + 'N*':"PARTICLE NUMBER OF FRAZIL FOR CLASS*", + 'N1':"PARTICLE NUMBER OF FRAZIL FOR CLASS1", + 'N2':"PARTICLE NUMBER OF FRAZIL FOR CLASS2", + 'N3':"PARTICLE NUMBER OF FRAZIL FOR CLASS3", + 'N4':"PARTICLE NUMBER OF FRAZIL FOR CLASS4", + 'N5':"PARTICLE NUMBER OF FRAZIL FOR CLASS5", + 'N6':"PARTICLE NUMBER OF FRAZIL FOR CLASS6", + 'N7':"PARTICLE NUMBER OF FRAZIL FOR CLASS7", + 'N8':"PARTICLE NUMBER OF FRAZIL FOR CLASS8", + 'N9':"PARTICLE NUMBER OF FRAZIL FOR CLASS9", + 'N10':"PARTICLE NUMBER OF FRAZIL FOR CLASS10", + 'N11':"PARTICLE NUMBER OF FRAZIL FOR CLASS11", + 'N12':"PARTICLE NUMBER OF FRAZIL FOR CLASS12", + 'N13':"PARTICLE NUMBER OF FRAZIL FOR CLASS13", + 'N14':"PARTICLE NUMBER OF FRAZIL FOR CLASS14", + 'N15':"PARTICLE NUMBER OF FRAZIL FOR CLASS15", + 'N16':"PARTICLE NUMBER OF FRAZIL FOR CLASS16", + 'N17':"PARTICLE NUMBER OF FRAZIL FOR CLASS17", + 'N18':"PARTICLE NUMBER OF FRAZIL FOR CLASS18", + 'N19':"PARTICLE NUMBER OF FRAZIL FOR CLASS19", + 'N**':"PARTICLE NUMBER OF FRAZIL FOR CLASS**", + 'TEMP':"WATER TEMPERATURE", + 'SAL':"SALINITY OF WATER", + }, +'LAW_OF_ICE_COVER_FRICTION' : { + 0:"NO FRICTION", + 1:"HAALAND", + 2:"CHEZY", + 3:"STRICKLER", + 4:"MANNING", + 5:"NIKURADSE", + }, +'LAW_FOR_FRICTION_COEFFICIENT' : { + 0:"CONSTANT FRICTION COEF", + 1:"LINEAR FRICTION COEF", + }, +'MODEL_FOR_THE_NUSSELT_NUMBER' : { + 1:"WADIA (1974) AND BATCHELOR (1980)", + 2:"CONSTANT NUSSELT NUMBER", + }, +'MODEL_FOR_THE_BUOYANCY_VELOCITY' : { + 1:"DALY (1984)", + 2:"DALY INTERMEDIATE (1984)", + 3:"MATOUSEK (1992)", + 4:"GOSIK & OSTERKAMP (1983)", + }, +'ENERGY_BALANCE_VERSION' : { + 1:"SIMPLIFIED ENERGY BALANCE", + 2:"FULL ENERGY BALANCE", + }, +'SCHEME_OPTION_FOR_THERMAL_GROWTH' : { + 1:"EXPLICIT TIME SCHEME", + 2:"SEMI-IMPLICIT TIME SCHEME", + }, +'MODEL_FOR_THE_SECONDARY_NUCLEATION' : { + 0:"NO SECONDARY NUCLEATION", + 1:"SVENSSON AND OMSTEDT 1994", + 2:"WANG AND DOERING 2005", + }, +'MODEL_FOR_THE_FLOCCULATION_AND_BREAKUP' : { + 0:"NO FLOCCULATION", + 1:"SVENSSON AND OMSTEDT 1994", + }, +'MODEL_FOR_FRAZIL_SEEDING' : { + 0:"NO SEEDING", + 1:"MINIMUM CONC. THRESHOLD", + 2:"CONSTANT SEEDING RATE", + 3:"BOTH OPTIONS 1 AND 2", + }, +'ATMOSPHERE_WATER_EXCHANGE_MODEL' : { + 0:"LINEARISED FORMULA", + 1:"MODEL WITH COMPLETE BALANCE", + }, +'MODEL_FOR_ESTIMATION_OF_TURBULENCE_PARAMETERS' : { + 0:"CONSTANT VALUES", + 1:"MIXING LENGTH MODEL", + 2:"K-EPS MODEL OF TELEMAC-2D", + }, +} +TelemacdicoFr = { +'VARIABLES_FOR_GRAPHIC_PRINTOUTS' : { + 'PHCL':"SOLRAD CLEAR SKY", + 'PHRI':"SOLRAD CLOUDY", + 'PHPS':"NET SOLRAD", + 'PHIB':"EFFECTIVE SOLRAD", + 'PHIE':"EVAPO HEAT FLUX", + 'PHIH':"CONDUC HEAT FLUX", + 'PHIP':"PRECIP HEAT FLUX", + 'COV_TH0':"FRAZIL THETA0", + 'COV_TH1':"FRAZIL THETA1", + 'COV_BT1':"REENTRAINMENT", + 'COV_VBB':"SETTLING VEL.", + 'COV_FC':"SOLID ICE CONC.", + 'COV_THS':"SOLID ICE THICK.", + 'COV_THF':"FRAZIL THICKNESS", + 'COV_THUN':"UNDER ICE THICK.", + 'COV_EQ':"EQUIV. SURFACE", + 'COV_ET':"TOP ICE COVER", + 'COV_EB':"BOTTOM ICE COVERM", + 'COV_THT':"TOTAL ICE THICK.M ", + 'ICETYPE':"CARACTERISTIQUES", + 'NTOT':"TOTAL NUMBER OF PARTICLES", + 'CTOT':"TOTAL CONCENTRATION OF FRAZIL", + 'F*':"CONCENTRATION OF FRAZIL FOR CLASS*", + 'F1':"CONCENTRATION OF FRAZIL FOR CLASS1", + 'F2':"CONCENTRATION OF FRAZIL FOR CLASS2", + 'F3':"CONCENTRATION OF FRAZIL FOR CLASS3", + 'F4':"CONCENTRATION OF FRAZIL FOR CLASS4", + 'F5':"CONCENTRATION OF FRAZIL FOR CLASS5", + 'F6':"CONCENTRATION OF FRAZIL FOR CLASS6", + 'F7':"CONCENTRATION OF FRAZIL FOR CLASS7", + 'F8':"CONCENTRATION OF FRAZIL FOR CLASS8", + 'F9':"CONCENTRATION OF FRAZIL FOR CLASS9", + 'F10':"CONCENTRATION OF FRAZIL FOR CLASS10", + 'F11':"CONCENTRATION OF FRAZIL FOR CLASS11", + 'F12':"CONCENTRATION OF FRAZIL FOR CLASS12", + 'F13':"CONCENTRATION OF FRAZIL FOR CLASS13", + 'F14':"CONCENTRATION OF FRAZIL FOR CLASS14", + 'F15':"CONCENTRATION OF FRAZIL FOR CLASS15", + 'F16':"CONCENTRATION OF FRAZIL FOR CLASS16", + 'F17':"CONCENTRATION OF FRAZIL FOR CLASS17", + 'F18':"CONCENTRATION OF FRAZIL FOR CLASS18", + 'F19':"CONCENTRATION OF FRAZIL FOR CLASS19", + 'F**':"CONCENTRATION OF FRAZIL FOR CLASS**", + 'F*':"CONCENTRATION OF FRAZIL FOR CLASS*", + 'F1':"CONCENTRATION OF FRAZIL FOR CLASS1", + 'F2':"CONCENTRATION OF FRAZIL FOR CLASS2", + 'F3':"CONCENTRATION OF FRAZIL FOR CLASS3", + 'F4':"CONCENTRATION OF FRAZIL FOR CLASS4", + 'F5':"CONCENTRATION OF FRAZIL FOR CLASS5", + 'F6':"CONCENTRATION OF FRAZIL FOR CLASS6", + 'F7':"CONCENTRATION OF FRAZIL FOR CLASS7", + 'F8':"CONCENTRATION OF FRAZIL FOR CLASS8", + 'F9':"CONCENTRATION OF FRAZIL FOR CLASS9", + 'F10':"CONCENTRATION OF FRAZIL FOR CLASS10", + 'F11':"CONCENTRATION OF FRAZIL FOR CLASS11", + 'F12':"CONCENTRATION OF FRAZIL FOR CLASS12", + 'F13':"CONCENTRATION OF FRAZIL FOR CLASS13", + 'F14':"CONCENTRATION OF FRAZIL FOR CLASS14", + 'F15':"CONCENTRATION OF FRAZIL FOR CLASS15", + 'F16':"CONCENTRATION OF FRAZIL FOR CLASS16", + 'F17':"CONCENTRATION OF FRAZIL FOR CLASS17", + 'F18':"CONCENTRATION OF FRAZIL FOR CLASS18", + 'F19':"CONCENTRATION OF FRAZIL FOR CLASS19", + 'F**':"CONCENTRATION OF FRAZIL FOR CLASS**", + 'F*':"CONCENTRATION OF FRAZIL FOR CLASS*", + 'F1':"CONCENTRATION OF FRAZIL FOR CLASS1", + 'F2':"CONCENTRATION OF FRAZIL FOR CLASS2", + 'F3':"CONCENTRATION OF FRAZIL FOR CLASS3", + 'F4':"CONCENTRATION OF FRAZIL FOR CLASS4", + 'F5':"CONCENTRATION OF FRAZIL FOR CLASS5", + 'F6':"CONCENTRATION OF FRAZIL FOR CLASS6", + 'F7':"CONCENTRATION OF FRAZIL FOR CLASS7", + 'F8':"CONCENTRATION OF FRAZIL FOR CLASS8", + 'F9':"CONCENTRATION OF FRAZIL FOR CLASS9", + 'F10':"CONCENTRATION OF FRAZIL FOR CLASS10", + 'F11':"CONCENTRATION OF FRAZIL FOR CLASS11", + 'F12':"CONCENTRATION OF FRAZIL FOR CLASS12", + 'F13':"CONCENTRATION OF FRAZIL FOR CLASS13", + 'F14':"CONCENTRATION OF FRAZIL FOR CLASS14", + 'F15':"CONCENTRATION OF FRAZIL FOR CLASS15", + 'F16':"CONCENTRATION OF FRAZIL FOR CLASS16", + 'F17':"CONCENTRATION OF FRAZIL FOR CLASS17", + 'F18':"CONCENTRATION OF FRAZIL FOR CLASS18", + 'F19':"CONCENTRATION OF FRAZIL FOR CLASS19", + 'F**':"CONCENTRATION OF FRAZIL FOR CLASS**", + 'F*':"CONCENTRATION OF FRAZIL FOR CLASS*", + 'F1':"CONCENTRATION OF FRAZIL FOR CLASS1", + 'F2':"CONCENTRATION OF FRAZIL FOR CLASS2", + 'F3':"CONCENTRATION OF FRAZIL FOR CLASS3", + 'F4':"CONCENTRATION OF FRAZIL FOR CLASS4", + 'F5':"CONCENTRATION OF FRAZIL FOR CLASS5", + 'F6':"CONCENTRATION OF FRAZIL FOR CLASS6", + 'F7':"CONCENTRATION OF FRAZIL FOR CLASS7", + 'F8':"CONCENTRATION OF FRAZIL FOR CLASS8", + 'F9':"CONCENTRATION OF FRAZIL FOR CLASS9", + 'F10':"CONCENTRATION OF FRAZIL FOR CLASS10", + 'F11':"CONCENTRATION OF FRAZIL FOR CLASS11", + 'F12':"CONCENTRATION OF FRAZIL FOR CLASS12", + 'F13':"CONCENTRATION OF FRAZIL FOR CLASS13", + 'F14':"CONCENTRATION OF FRAZIL FOR CLASS14", + 'F15':"CONCENTRATION OF FRAZIL FOR CLASS15", + 'F16':"CONCENTRATION OF FRAZIL FOR CLASS16", + 'F17':"CONCENTRATION OF FRAZIL FOR CLASS17", + 'F18':"CONCENTRATION OF FRAZIL FOR CLASS18", + 'F19':"CONCENTRATION OF FRAZIL FOR CLASS19", + 'F**':"CONCENTRATION OF FRAZIL FOR CLASS**", + 'F*':"CONCENTRATION OF FRAZIL FOR CLASS*", + 'F1':"CONCENTRATION OF FRAZIL FOR CLASS1", + 'F2':"CONCENTRATION OF FRAZIL FOR CLASS2", + 'F3':"CONCENTRATION OF FRAZIL FOR CLASS3", + 'F4':"CONCENTRATION OF FRAZIL FOR CLASS4", + 'F5':"CONCENTRATION OF FRAZIL FOR CLASS5", + 'F6':"CONCENTRATION OF FRAZIL FOR CLASS6", + 'F7':"CONCENTRATION OF FRAZIL FOR CLASS7", + 'F8':"CONCENTRATION OF FRAZIL FOR CLASS8", + 'F9':"CONCENTRATION OF FRAZIL FOR CLASS9", + 'F10':"CONCENTRATION OF FRAZIL FOR CLASS10", + 'F11':"CONCENTRATION OF FRAZIL FOR CLASS11", + 'F12':"CONCENTRATION OF FRAZIL FOR CLASS12", + 'F13':"CONCENTRATION OF FRAZIL FOR CLASS13", + 'F14':"CONCENTRATION OF FRAZIL FOR CLASS14", + 'F15':"CONCENTRATION OF FRAZIL FOR CLASS15", + 'F16':"CONCENTRATION OF FRAZIL FOR CLASS16", + 'F17':"CONCENTRATION OF FRAZIL FOR CLASS17", + 'F18':"CONCENTRATION OF FRAZIL FOR CLASS18", + 'F19':"CONCENTRATION OF FRAZIL FOR CLASS19", + 'F**':"CONCENTRATION OF FRAZIL FOR CLASS**", + 'F*':"CONCENTRATION OF FRAZIL FOR CLASS*", + 'F1':"CONCENTRATION OF FRAZIL FOR CLASS1", + 'F2':"CONCENTRATION OF FRAZIL FOR CLASS2", + 'F3':"CONCENTRATION OF FRAZIL FOR CLASS3", + 'F4':"CONCENTRATION OF FRAZIL FOR CLASS4", + 'F5':"CONCENTRATION OF FRAZIL FOR CLASS5", + 'F6':"CONCENTRATION OF FRAZIL FOR CLASS6", + 'F7':"CONCENTRATION OF FRAZIL FOR CLASS7", + 'F8':"CONCENTRATION OF FRAZIL FOR CLASS8", + 'F9':"CONCENTRATION OF FRAZIL FOR CLASS9", + 'F10':"CONCENTRATION OF FRAZIL FOR CLASS10", + 'F11':"CONCENTRATION OF FRAZIL FOR CLASS11", + 'F12':"CONCENTRATION OF FRAZIL FOR CLASS12", + 'F13':"CONCENTRATION OF FRAZIL FOR CLASS13", + 'F14':"CONCENTRATION OF FRAZIL FOR CLASS14", + 'F15':"CONCENTRATION OF FRAZIL FOR CLASS15", + 'F16':"CONCENTRATION OF FRAZIL FOR CLASS16", + 'F17':"CONCENTRATION OF FRAZIL FOR CLASS17", + 'F18':"CONCENTRATION OF FRAZIL FOR CLASS18", + 'F19':"CONCENTRATION OF FRAZIL FOR CLASS19", + 'F**':"CONCENTRATION OF FRAZIL FOR CLASS**", + 'F*':"CONCENTRATION OF FRAZIL FOR CLASS*", + 'F1':"CONCENTRATION OF FRAZIL FOR CLASS1", + 'F2':"CONCENTRATION OF FRAZIL FOR CLASS2", + 'F3':"CONCENTRATION OF FRAZIL FOR CLASS3", + 'F4':"CONCENTRATION OF FRAZIL FOR CLASS4", + 'F5':"CONCENTRATION OF FRAZIL FOR CLASS5", + 'F6':"CONCENTRATION OF FRAZIL FOR CLASS6", + 'F7':"CONCENTRATION OF FRAZIL FOR CLASS7", + 'F8':"CONCENTRATION OF FRAZIL FOR CLASS8", + 'F9':"CONCENTRATION OF FRAZIL FOR CLASS9", + 'F10':"CONCENTRATION OF FRAZIL FOR CLASS10", + 'F11':"CONCENTRATION OF FRAZIL FOR CLASS11", + 'F12':"CONCENTRATION OF FRAZIL FOR CLASS12", + 'F13':"CONCENTRATION OF FRAZIL FOR CLASS13", + 'F14':"CONCENTRATION OF FRAZIL FOR CLASS14", + 'F15':"CONCENTRATION OF FRAZIL FOR CLASS15", + 'F16':"CONCENTRATION OF FRAZIL FOR CLASS16", + 'F17':"CONCENTRATION OF FRAZIL FOR CLASS17", + 'F18':"CONCENTRATION OF FRAZIL FOR CLASS18", + 'F19':"CONCENTRATION OF FRAZIL FOR CLASS19", + 'F**':"CONCENTRATION OF FRAZIL FOR CLASS**", + 'F*':"CONCENTRATION OF FRAZIL FOR CLASS*", + 'F1':"CONCENTRATION OF FRAZIL FOR CLASS1", + 'F2':"CONCENTRATION OF FRAZIL FOR CLASS2", + 'F3':"CONCENTRATION OF FRAZIL FOR CLASS3", + 'F4':"CONCENTRATION OF FRAZIL FOR CLASS4", + 'F5':"CONCENTRATION OF FRAZIL FOR CLASS5", + 'F6':"CONCENTRATION OF FRAZIL FOR CLASS6", + 'F7':"CONCENTRATION OF FRAZIL FOR CLASS7", + 'F8':"CONCENTRATION OF FRAZIL FOR CLASS8", + 'F9':"CONCENTRATION OF FRAZIL FOR CLASS9", + 'F10':"CONCENTRATION OF FRAZIL FOR CLASS10", + 'F11':"CONCENTRATION OF FRAZIL FOR CLASS11", + 'F12':"CONCENTRATION OF FRAZIL FOR CLASS12", + 'F13':"CONCENTRATION OF FRAZIL FOR CLASS13", + 'F14':"CONCENTRATION OF FRAZIL FOR CLASS14", + 'F15':"CONCENTRATION OF FRAZIL FOR CLASS15", + 'F16':"CONCENTRATION OF FRAZIL FOR CLASS16", + 'F17':"CONCENTRATION OF FRAZIL FOR CLASS17", + 'F18':"CONCENTRATION OF FRAZIL FOR CLASS18", + 'F19':"CONCENTRATION OF FRAZIL FOR CLASS19", + 'F**':"CONCENTRATION OF FRAZIL FOR CLASS**", + 'F*':"CONCENTRATION OF FRAZIL FOR CLASS*", + 'F1':"CONCENTRATION OF FRAZIL FOR CLASS1", + 'F2':"CONCENTRATION OF FRAZIL FOR CLASS2", + 'F3':"CONCENTRATION OF FRAZIL FOR CLASS3", + 'F4':"CONCENTRATION OF FRAZIL FOR CLASS4", + 'F5':"CONCENTRATION OF FRAZIL FOR CLASS5", + 'F6':"CONCENTRATION OF FRAZIL FOR CLASS6", + 'F7':"CONCENTRATION OF FRAZIL FOR CLASS7", + 'F8':"CONCENTRATION OF FRAZIL FOR CLASS8", + 'F9':"CONCENTRATION OF FRAZIL FOR CLASS9", + 'F10':"CONCENTRATION OF FRAZIL FOR CLASS10", + 'F11':"CONCENTRATION OF FRAZIL FOR CLASS11", + 'F12':"CONCENTRATION OF FRAZIL FOR CLASS12", + 'F13':"CONCENTRATION OF FRAZIL FOR CLASS13", + 'F14':"CONCENTRATION OF FRAZIL FOR CLASS14", + 'F15':"CONCENTRATION OF FRAZIL FOR CLASS15", + 'F16':"CONCENTRATION OF FRAZIL FOR CLASS16", + 'F17':"CONCENTRATION OF FRAZIL FOR CLASS17", + 'F18':"CONCENTRATION OF FRAZIL FOR CLASS18", + 'F19':"CONCENTRATION OF FRAZIL FOR CLASS19", + 'F**':"CONCENTRATION OF FRAZIL FOR CLASS**", + 'F*':"CONCENTRATION OF FRAZIL FOR CLASS*", + 'F1':"CONCENTRATION OF FRAZIL FOR CLASS1", + 'F2':"CONCENTRATION OF FRAZIL FOR CLASS2", + 'F3':"CONCENTRATION OF FRAZIL FOR CLASS3", + 'F4':"CONCENTRATION OF FRAZIL FOR CLASS4", + 'F5':"CONCENTRATION OF FRAZIL FOR CLASS5", + 'F6':"CONCENTRATION OF FRAZIL FOR CLASS6", + 'F7':"CONCENTRATION OF FRAZIL FOR CLASS7", + 'F8':"CONCENTRATION OF FRAZIL FOR CLASS8", + 'F9':"CONCENTRATION OF FRAZIL FOR CLASS9", + 'F10':"CONCENTRATION OF FRAZIL FOR CLASS10", + 'F11':"CONCENTRATION OF FRAZIL FOR CLASS11", + 'F12':"CONCENTRATION OF FRAZIL FOR CLASS12", + 'F13':"CONCENTRATION OF FRAZIL FOR CLASS13", + 'F14':"CONCENTRATION OF FRAZIL FOR CLASS14", + 'F15':"CONCENTRATION OF FRAZIL FOR CLASS15", + 'F16':"CONCENTRATION OF FRAZIL FOR CLASS16", + 'F17':"CONCENTRATION OF FRAZIL FOR CLASS17", + 'F18':"CONCENTRATION OF FRAZIL FOR CLASS18", + 'F19':"CONCENTRATION OF FRAZIL FOR CLASS19", + 'F**':"CONCENTRATION OF FRAZIL FOR CLASS**", + 'F*':"CONCENTRATION OF FRAZIL FOR CLASS*", + 'F1':"CONCENTRATION OF FRAZIL FOR CLASS1", + 'F2':"CONCENTRATION OF FRAZIL FOR CLASS2", + 'F3':"CONCENTRATION OF FRAZIL FOR CLASS3", + 'F4':"CONCENTRATION OF FRAZIL FOR CLASS4", + 'F5':"CONCENTRATION OF FRAZIL FOR CLASS5", + 'F6':"CONCENTRATION OF FRAZIL FOR CLASS6", + 'F7':"CONCENTRATION OF FRAZIL FOR CLASS7", + 'F8':"CONCENTRATION OF FRAZIL FOR CLASS8", + 'F9':"CONCENTRATION OF FRAZIL FOR CLASS9", + 'F10':"CONCENTRATION OF FRAZIL FOR CLASS10", + 'F11':"CONCENTRATION OF FRAZIL FOR CLASS11", + 'F12':"CONCENTRATION OF FRAZIL FOR CLASS12", + 'F13':"CONCENTRATION OF FRAZIL FOR CLASS13", + 'F14':"CONCENTRATION OF FRAZIL FOR CLASS14", + 'F15':"CONCENTRATION OF FRAZIL FOR CLASS15", + 'F16':"CONCENTRATION OF FRAZIL FOR CLASS16", + 'F17':"CONCENTRATION OF FRAZIL FOR CLASS17", + 'F18':"CONCENTRATION OF FRAZIL FOR CLASS18", + 'F19':"CONCENTRATION OF FRAZIL FOR CLASS19", + 'F**':"CONCENTRATION OF FRAZIL FOR CLASS**", + 'F*':"CONCENTRATION OF FRAZIL FOR CLASS*", + 'F1':"CONCENTRATION OF FRAZIL FOR CLASS1", + 'F2':"CONCENTRATION OF FRAZIL FOR CLASS2", + 'F3':"CONCENTRATION OF FRAZIL FOR CLASS3", + 'F4':"CONCENTRATION OF FRAZIL FOR CLASS4", + 'F5':"CONCENTRATION OF FRAZIL FOR CLASS5", + 'F6':"CONCENTRATION OF FRAZIL FOR CLASS6", + 'F7':"CONCENTRATION OF FRAZIL FOR CLASS7", + 'F8':"CONCENTRATION OF FRAZIL FOR CLASS8", + 'F9':"CONCENTRATION OF FRAZIL FOR CLASS9", + 'F10':"CONCENTRATION OF FRAZIL FOR CLASS10", + 'F11':"CONCENTRATION OF FRAZIL FOR CLASS11", + 'F12':"CONCENTRATION OF FRAZIL FOR CLASS12", + 'F13':"CONCENTRATION OF FRAZIL FOR CLASS13", + 'F14':"CONCENTRATION OF FRAZIL FOR CLASS14", + 'F15':"CONCENTRATION OF FRAZIL FOR CLASS15", + 'F16':"CONCENTRATION OF FRAZIL FOR CLASS16", + 'F17':"CONCENTRATION OF FRAZIL FOR CLASS17", + 'F18':"CONCENTRATION OF FRAZIL FOR CLASS18", + 'F19':"CONCENTRATION OF FRAZIL FOR CLASS19", + 'F**':"CONCENTRATION OF FRAZIL FOR CLASS**", + 'F*':"CONCENTRATION OF FRAZIL FOR CLASS*", + 'F1':"CONCENTRATION OF FRAZIL FOR CLASS1", + 'F2':"CONCENTRATION OF FRAZIL FOR CLASS2", + 'F3':"CONCENTRATION OF FRAZIL FOR CLASS3", + 'F4':"CONCENTRATION OF FRAZIL FOR CLASS4", + 'F5':"CONCENTRATION OF FRAZIL FOR CLASS5", + 'F6':"CONCENTRATION OF FRAZIL FOR CLASS6", + 'F7':"CONCENTRATION OF FRAZIL FOR CLASS7", + 'F8':"CONCENTRATION OF FRAZIL FOR CLASS8", + 'F9':"CONCENTRATION OF FRAZIL FOR CLASS9", + 'F10':"CONCENTRATION OF FRAZIL FOR CLASS10", + 'F11':"CONCENTRATION OF FRAZIL FOR CLASS11", + 'F12':"CONCENTRATION OF FRAZIL FOR CLASS12", + 'F13':"CONCENTRATION OF FRAZIL FOR CLASS13", + 'F14':"CONCENTRATION OF FRAZIL FOR CLASS14", + 'F15':"CONCENTRATION OF FRAZIL FOR CLASS15", + 'F16':"CONCENTRATION OF FRAZIL FOR CLASS16", + 'F17':"CONCENTRATION OF FRAZIL FOR CLASS17", + 'F18':"CONCENTRATION OF FRAZIL FOR CLASS18", + 'F19':"CONCENTRATION OF FRAZIL FOR CLASS19", + 'F**':"CONCENTRATION OF FRAZIL FOR CLASS**", + 'F*':"CONCENTRATION OF FRAZIL FOR CLASS*", + 'F1':"CONCENTRATION OF FRAZIL FOR CLASS1", + 'F2':"CONCENTRATION OF FRAZIL FOR CLASS2", + 'F3':"CONCENTRATION OF FRAZIL FOR CLASS3", + 'F4':"CONCENTRATION OF FRAZIL FOR CLASS4", + 'F5':"CONCENTRATION OF FRAZIL FOR CLASS5", + 'F6':"CONCENTRATION OF FRAZIL FOR CLASS6", + 'F7':"CONCENTRATION OF FRAZIL FOR CLASS7", + 'F8':"CONCENTRATION OF FRAZIL FOR CLASS8", + 'F9':"CONCENTRATION OF FRAZIL FOR CLASS9", + 'F10':"CONCENTRATION OF FRAZIL FOR CLASS10", + 'F11':"CONCENTRATION OF FRAZIL FOR CLASS11", + 'F12':"CONCENTRATION OF FRAZIL FOR CLASS12", + 'F13':"CONCENTRATION OF FRAZIL FOR CLASS13", + 'F14':"CONCENTRATION OF FRAZIL FOR CLASS14", + 'F15':"CONCENTRATION OF FRAZIL FOR CLASS15", + 'F16':"CONCENTRATION OF FRAZIL FOR CLASS16", + 'F17':"CONCENTRATION OF FRAZIL FOR CLASS17", + 'F18':"CONCENTRATION OF FRAZIL FOR CLASS18", + 'F19':"CONCENTRATION OF FRAZIL FOR CLASS19", + 'F**':"CONCENTRATION OF FRAZIL FOR CLASS**", + 'F*':"CONCENTRATION OF FRAZIL FOR CLASS*", + 'F1':"CONCENTRATION OF FRAZIL FOR CLASS1", + 'F2':"CONCENTRATION OF FRAZIL FOR CLASS2", + 'F3':"CONCENTRATION OF FRAZIL FOR CLASS3", + 'F4':"CONCENTRATION OF FRAZIL FOR CLASS4", + 'F5':"CONCENTRATION OF FRAZIL FOR CLASS5", + 'F6':"CONCENTRATION OF FRAZIL FOR CLASS6", + 'F7':"CONCENTRATION OF FRAZIL FOR CLASS7", + 'F8':"CONCENTRATION OF FRAZIL FOR CLASS8", + 'F9':"CONCENTRATION OF FRAZIL FOR CLASS9", + 'F10':"CONCENTRATION OF FRAZIL FOR CLASS10", + 'F11':"CONCENTRATION OF FRAZIL FOR CLASS11", + 'F12':"CONCENTRATION OF FRAZIL FOR CLASS12", + 'F13':"CONCENTRATION OF FRAZIL FOR CLASS13", + 'F14':"CONCENTRATION OF FRAZIL FOR CLASS14", + 'F15':"CONCENTRATION OF FRAZIL FOR CLASS15", + 'F16':"CONCENTRATION OF FRAZIL FOR CLASS16", + 'F17':"CONCENTRATION OF FRAZIL FOR CLASS17", + 'F18':"CONCENTRATION OF FRAZIL FOR CLASS18", + 'F19':"CONCENTRATION OF FRAZIL FOR CLASS19", + 'F**':"CONCENTRATION OF FRAZIL FOR CLASS**", + 'F*':"CONCENTRATION OF FRAZIL FOR CLASS*", + 'F1':"CONCENTRATION OF FRAZIL FOR CLASS1", + 'F2':"CONCENTRATION OF FRAZIL FOR CLASS2", + 'F3':"CONCENTRATION OF FRAZIL FOR CLASS3", + 'F4':"CONCENTRATION OF FRAZIL FOR CLASS4", + 'F5':"CONCENTRATION OF FRAZIL FOR CLASS5", + 'F6':"CONCENTRATION OF FRAZIL FOR CLASS6", + 'F7':"CONCENTRATION OF FRAZIL FOR CLASS7", + 'F8':"CONCENTRATION OF FRAZIL FOR CLASS8", + 'F9':"CONCENTRATION OF FRAZIL FOR CLASS9", + 'F10':"CONCENTRATION OF FRAZIL FOR CLASS10", + 'F11':"CONCENTRATION OF FRAZIL FOR CLASS11", + 'F12':"CONCENTRATION OF FRAZIL FOR CLASS12", + 'F13':"CONCENTRATION OF FRAZIL FOR CLASS13", + 'F14':"CONCENTRATION OF FRAZIL FOR CLASS14", + 'F15':"CONCENTRATION OF FRAZIL FOR CLASS15", + 'F16':"CONCENTRATION OF FRAZIL FOR CLASS16", + 'F17':"CONCENTRATION OF FRAZIL FOR CLASS17", + 'F18':"CONCENTRATION OF FRAZIL FOR CLASS18", + 'F19':"CONCENTRATION OF FRAZIL FOR CLASS19", + 'F**':"CONCENTRATION OF FRAZIL FOR CLASS**", + 'F*':"CONCENTRATION OF FRAZIL FOR CLASS*", + 'F1':"CONCENTRATION OF FRAZIL FOR CLASS1", + 'F2':"CONCENTRATION OF FRAZIL FOR CLASS2", + 'F3':"CONCENTRATION OF FRAZIL FOR CLASS3", + 'F4':"CONCENTRATION OF FRAZIL FOR CLASS4", + 'F5':"CONCENTRATION OF FRAZIL FOR CLASS5", + 'F6':"CONCENTRATION OF FRAZIL FOR CLASS6", + 'F7':"CONCENTRATION OF FRAZIL FOR CLASS7", + 'F8':"CONCENTRATION OF FRAZIL FOR CLASS8", + 'F9':"CONCENTRATION OF FRAZIL FOR CLASS9", + 'F10':"CONCENTRATION OF FRAZIL FOR CLASS10", + 'F11':"CONCENTRATION OF FRAZIL FOR CLASS11", + 'F12':"CONCENTRATION OF FRAZIL FOR CLASS12", + 'F13':"CONCENTRATION OF FRAZIL FOR CLASS13", + 'F14':"CONCENTRATION OF FRAZIL FOR CLASS14", + 'F15':"CONCENTRATION OF FRAZIL FOR CLASS15", + 'F16':"CONCENTRATION OF FRAZIL FOR CLASS16", + 'F17':"CONCENTRATION OF FRAZIL FOR CLASS17", + 'F18':"CONCENTRATION OF FRAZIL FOR CLASS18", + 'F19':"CONCENTRATION OF FRAZIL FOR CLASS19", + 'F**':"CONCENTRATION OF FRAZIL FOR CLASS**", + 'F*':"CONCENTRATION OF FRAZIL FOR CLASS*", + 'F1':"CONCENTRATION OF FRAZIL FOR CLASS1", + 'F2':"CONCENTRATION OF FRAZIL FOR CLASS2", + 'F3':"CONCENTRATION OF FRAZIL FOR CLASS3", + 'F4':"CONCENTRATION OF FRAZIL FOR CLASS4", + 'F5':"CONCENTRATION OF FRAZIL FOR CLASS5", + 'F6':"CONCENTRATION OF FRAZIL FOR CLASS6", + 'F7':"CONCENTRATION OF FRAZIL FOR CLASS7", + 'F8':"CONCENTRATION OF FRAZIL FOR CLASS8", + 'F9':"CONCENTRATION OF FRAZIL FOR CLASS9", + 'F10':"CONCENTRATION OF FRAZIL FOR CLASS10", + 'F11':"CONCENTRATION OF FRAZIL FOR CLASS11", + 'F12':"CONCENTRATION OF FRAZIL FOR CLASS12", + 'F13':"CONCENTRATION OF FRAZIL FOR CLASS13", + 'F14':"CONCENTRATION OF FRAZIL FOR CLASS14", + 'F15':"CONCENTRATION OF FRAZIL FOR CLASS15", + 'F16':"CONCENTRATION OF FRAZIL FOR CLASS16", + 'F17':"CONCENTRATION OF FRAZIL FOR CLASS17", + 'F18':"CONCENTRATION OF FRAZIL FOR CLASS18", + 'F19':"CONCENTRATION OF FRAZIL FOR CLASS19", + 'F**':"CONCENTRATION OF FRAZIL FOR CLASS**", + 'F*':"CONCENTRATION OF FRAZIL FOR CLASS*", + 'F1':"CONCENTRATION OF FRAZIL FOR CLASS1", + 'F2':"CONCENTRATION OF FRAZIL FOR CLASS2", + 'F3':"CONCENTRATION OF FRAZIL FOR CLASS3", + 'F4':"CONCENTRATION OF FRAZIL FOR CLASS4", + 'F5':"CONCENTRATION OF FRAZIL FOR CLASS5", + 'F6':"CONCENTRATION OF FRAZIL FOR CLASS6", + 'F7':"CONCENTRATION OF FRAZIL FOR CLASS7", + 'F8':"CONCENTRATION OF FRAZIL FOR CLASS8", + 'F9':"CONCENTRATION OF FRAZIL FOR CLASS9", + 'F10':"CONCENTRATION OF FRAZIL FOR CLASS10", + 'F11':"CONCENTRATION OF FRAZIL FOR CLASS11", + 'F12':"CONCENTRATION OF FRAZIL FOR CLASS12", + 'F13':"CONCENTRATION OF FRAZIL FOR CLASS13", + 'F14':"CONCENTRATION OF FRAZIL FOR CLASS14", + 'F15':"CONCENTRATION OF FRAZIL FOR CLASS15", + 'F16':"CONCENTRATION OF FRAZIL FOR CLASS16", + 'F17':"CONCENTRATION OF FRAZIL FOR CLASS17", + 'F18':"CONCENTRATION OF FRAZIL FOR CLASS18", + 'F19':"CONCENTRATION OF FRAZIL FOR CLASS19", + 'F**':"CONCENTRATION OF FRAZIL FOR CLASS**", + 'F*':"CONCENTRATION OF FRAZIL FOR CLASS*", + 'F1':"CONCENTRATION OF FRAZIL FOR CLASS1", + 'F2':"CONCENTRATION OF FRAZIL FOR CLASS2", + 'F3':"CONCENTRATION OF FRAZIL FOR CLASS3", + 'F4':"CONCENTRATION OF FRAZIL FOR CLASS4", + 'F5':"CONCENTRATION OF FRAZIL FOR CLASS5", + 'F6':"CONCENTRATION OF FRAZIL FOR CLASS6", + 'F7':"CONCENTRATION OF FRAZIL FOR CLASS7", + 'F8':"CONCENTRATION OF FRAZIL FOR CLASS8", + 'F9':"CONCENTRATION OF FRAZIL FOR CLASS9", + 'F10':"CONCENTRATION OF FRAZIL FOR CLASS10", + 'F11':"CONCENTRATION OF FRAZIL FOR CLASS11", + 'F12':"CONCENTRATION OF FRAZIL FOR CLASS12", + 'F13':"CONCENTRATION OF FRAZIL FOR CLASS13", + 'F14':"CONCENTRATION OF FRAZIL FOR CLASS14", + 'F15':"CONCENTRATION OF FRAZIL FOR CLASS15", + 'F16':"CONCENTRATION OF FRAZIL FOR CLASS16", + 'F17':"CONCENTRATION OF FRAZIL FOR CLASS17", + 'F18':"CONCENTRATION OF FRAZIL FOR CLASS18", + 'F19':"CONCENTRATION OF FRAZIL FOR CLASS19", + 'F**':"CONCENTRATION OF FRAZIL FOR CLASS**", + 'F*':"CONCENTRATION OF FRAZIL FOR CLASS*", + 'F1':"CONCENTRATION OF FRAZIL FOR CLASS1", + 'F2':"CONCENTRATION OF FRAZIL FOR CLASS2", + 'F3':"CONCENTRATION OF FRAZIL FOR CLASS3", + 'F4':"CONCENTRATION OF FRAZIL FOR CLASS4", + 'F5':"CONCENTRATION OF FRAZIL FOR CLASS5", + 'F6':"CONCENTRATION OF FRAZIL FOR CLASS6", + 'F7':"CONCENTRATION OF FRAZIL FOR CLASS7", + 'F8':"CONCENTRATION OF FRAZIL FOR CLASS8", + 'F9':"CONCENTRATION OF FRAZIL FOR CLASS9", + 'F10':"CONCENTRATION OF FRAZIL FOR CLASS10", + 'F11':"CONCENTRATION OF FRAZIL FOR CLASS11", + 'F12':"CONCENTRATION OF FRAZIL FOR CLASS12", + 'F13':"CONCENTRATION OF FRAZIL FOR CLASS13", + 'F14':"CONCENTRATION OF FRAZIL FOR CLASS14", + 'F15':"CONCENTRATION OF FRAZIL FOR CLASS15", + 'F16':"CONCENTRATION OF FRAZIL FOR CLASS16", + 'F17':"CONCENTRATION OF FRAZIL FOR CLASS17", + 'F18':"CONCENTRATION OF FRAZIL FOR CLASS18", + 'F19':"CONCENTRATION OF FRAZIL FOR CLASS19", + 'F**':"CONCENTRATION OF FRAZIL FOR CLASS**", + 'N*':"PARTICLE NUMBER OF FRAZIL FOR CLASS*", + 'N1':"PARTICLE NUMBER OF FRAZIL FOR CLASS1", + 'N2':"PARTICLE NUMBER OF FRAZIL FOR CLASS2", + 'N3':"PARTICLE NUMBER OF FRAZIL FOR CLASS3", + 'N4':"PARTICLE NUMBER OF FRAZIL FOR CLASS4", + 'N5':"PARTICLE NUMBER OF FRAZIL FOR CLASS5", + 'N6':"PARTICLE NUMBER OF FRAZIL FOR CLASS6", + 'N7':"PARTICLE NUMBER OF FRAZIL FOR CLASS7", + 'N8':"PARTICLE NUMBER OF FRAZIL FOR CLASS8", + 'N9':"PARTICLE NUMBER OF FRAZIL FOR CLASS9", + 'N10':"PARTICLE NUMBER OF FRAZIL FOR CLASS10", + 'N11':"PARTICLE NUMBER OF FRAZIL FOR CLASS11", + 'N12':"PARTICLE NUMBER OF FRAZIL FOR CLASS12", + 'N13':"PARTICLE NUMBER OF FRAZIL FOR CLASS13", + 'N14':"PARTICLE NUMBER OF FRAZIL FOR CLASS14", + 'N15':"PARTICLE NUMBER OF FRAZIL FOR CLASS15", + 'N16':"PARTICLE NUMBER OF FRAZIL FOR CLASS16", + 'N17':"PARTICLE NUMBER OF FRAZIL FOR CLASS17", + 'N18':"PARTICLE NUMBER OF FRAZIL FOR CLASS18", + 'N19':"PARTICLE NUMBER OF FRAZIL FOR CLASS19", + 'N**':"PARTICLE NUMBER OF FRAZIL FOR CLASS**", + 'N*':"PARTICLE NUMBER OF FRAZIL FOR CLASS*", + 'N1':"PARTICLE NUMBER OF FRAZIL FOR CLASS1", + 'N2':"PARTICLE NUMBER OF FRAZIL FOR CLASS2", + 'N3':"PARTICLE NUMBER OF FRAZIL FOR CLASS3", + 'N4':"PARTICLE NUMBER OF FRAZIL FOR CLASS4", + 'N5':"PARTICLE NUMBER OF FRAZIL FOR CLASS5", + 'N6':"PARTICLE NUMBER OF FRAZIL FOR CLASS6", + 'N7':"PARTICLE NUMBER OF FRAZIL FOR CLASS7", + 'N8':"PARTICLE NUMBER OF FRAZIL FOR CLASS8", + 'N9':"PARTICLE NUMBER OF FRAZIL FOR CLASS9", + 'N10':"PARTICLE NUMBER OF FRAZIL FOR CLASS10", + 'N11':"PARTICLE NUMBER OF FRAZIL FOR CLASS11", + 'N12':"PARTICLE NUMBER OF FRAZIL FOR CLASS12", + 'N13':"PARTICLE NUMBER OF FRAZIL FOR CLASS13", + 'N14':"PARTICLE NUMBER OF FRAZIL FOR CLASS14", + 'N15':"PARTICLE NUMBER OF FRAZIL FOR CLASS15", + 'N16':"PARTICLE NUMBER OF FRAZIL FOR CLASS16", + 'N17':"PARTICLE NUMBER OF FRAZIL FOR CLASS17", + 'N18':"PARTICLE NUMBER OF FRAZIL FOR CLASS18", + 'N19':"PARTICLE NUMBER OF FRAZIL FOR CLASS19", + 'N**':"PARTICLE NUMBER OF FRAZIL FOR CLASS**", + 'N*':"PARTICLE NUMBER OF FRAZIL FOR CLASS*", + 'N1':"PARTICLE NUMBER OF FRAZIL FOR CLASS1", + 'N2':"PARTICLE NUMBER OF FRAZIL FOR CLASS2", + 'N3':"PARTICLE NUMBER OF FRAZIL FOR CLASS3", + 'N4':"PARTICLE NUMBER OF FRAZIL FOR CLASS4", + 'N5':"PARTICLE NUMBER OF FRAZIL FOR CLASS5", + 'N6':"PARTICLE NUMBER OF FRAZIL FOR CLASS6", + 'N7':"PARTICLE NUMBER OF FRAZIL FOR CLASS7", + 'N8':"PARTICLE NUMBER OF FRAZIL FOR CLASS8", + 'N9':"PARTICLE NUMBER OF FRAZIL FOR CLASS9", + 'N10':"PARTICLE NUMBER OF FRAZIL FOR CLASS10", + 'N11':"PARTICLE NUMBER OF FRAZIL FOR CLASS11", + 'N12':"PARTICLE NUMBER OF FRAZIL FOR CLASS12", + 'N13':"PARTICLE NUMBER OF FRAZIL FOR CLASS13", + 'N14':"PARTICLE NUMBER OF FRAZIL FOR CLASS14", + 'N15':"PARTICLE NUMBER OF FRAZIL FOR CLASS15", + 'N16':"PARTICLE NUMBER OF FRAZIL FOR CLASS16", + 'N17':"PARTICLE NUMBER OF FRAZIL FOR CLASS17", + 'N18':"PARTICLE NUMBER OF FRAZIL FOR CLASS18", + 'N19':"PARTICLE NUMBER OF FRAZIL FOR CLASS19", + 'N**':"PARTICLE NUMBER OF FRAZIL FOR CLASS**", + 'N*':"PARTICLE NUMBER OF FRAZIL FOR CLASS*", + 'N1':"PARTICLE NUMBER OF FRAZIL FOR CLASS1", + 'N2':"PARTICLE NUMBER OF FRAZIL FOR CLASS2", + 'N3':"PARTICLE NUMBER OF FRAZIL FOR CLASS3", + 'N4':"PARTICLE NUMBER OF FRAZIL FOR CLASS4", + 'N5':"PARTICLE NUMBER OF FRAZIL FOR CLASS5", + 'N6':"PARTICLE NUMBER OF FRAZIL FOR CLASS6", + 'N7':"PARTICLE NUMBER OF FRAZIL FOR CLASS7", + 'N8':"PARTICLE NUMBER OF FRAZIL FOR CLASS8", + 'N9':"PARTICLE NUMBER OF FRAZIL FOR CLASS9", + 'N10':"PARTICLE NUMBER OF FRAZIL FOR CLASS10", + 'N11':"PARTICLE NUMBER OF FRAZIL FOR CLASS11", + 'N12':"PARTICLE NUMBER OF FRAZIL FOR CLASS12", + 'N13':"PARTICLE NUMBER OF FRAZIL FOR CLASS13", + 'N14':"PARTICLE NUMBER OF FRAZIL FOR CLASS14", + 'N15':"PARTICLE NUMBER OF FRAZIL FOR CLASS15", + 'N16':"PARTICLE NUMBER OF FRAZIL FOR CLASS16", + 'N17':"PARTICLE NUMBER OF FRAZIL FOR CLASS17", + 'N18':"PARTICLE NUMBER OF FRAZIL FOR CLASS18", + 'N19':"PARTICLE NUMBER OF FRAZIL FOR CLASS19", + 'N**':"PARTICLE NUMBER OF FRAZIL FOR CLASS**", + 'N*':"PARTICLE NUMBER OF FRAZIL FOR CLASS*", + 'N1':"PARTICLE NUMBER OF FRAZIL FOR CLASS1", + 'N2':"PARTICLE NUMBER OF FRAZIL FOR CLASS2", + 'N3':"PARTICLE NUMBER OF FRAZIL FOR CLASS3", + 'N4':"PARTICLE NUMBER OF FRAZIL FOR CLASS4", + 'N5':"PARTICLE NUMBER OF FRAZIL FOR CLASS5", + 'N6':"PARTICLE NUMBER OF FRAZIL FOR CLASS6", + 'N7':"PARTICLE NUMBER OF FRAZIL FOR CLASS7", + 'N8':"PARTICLE NUMBER OF FRAZIL FOR CLASS8", + 'N9':"PARTICLE NUMBER OF FRAZIL FOR CLASS9", + 'N10':"PARTICLE NUMBER OF FRAZIL FOR CLASS10", + 'N11':"PARTICLE NUMBER OF FRAZIL FOR CLASS11", + 'N12':"PARTICLE NUMBER OF FRAZIL FOR CLASS12", + 'N13':"PARTICLE NUMBER OF FRAZIL FOR CLASS13", + 'N14':"PARTICLE NUMBER OF FRAZIL FOR CLASS14", + 'N15':"PARTICLE NUMBER OF FRAZIL FOR CLASS15", + 'N16':"PARTICLE NUMBER OF FRAZIL FOR CLASS16", + 'N17':"PARTICLE NUMBER OF FRAZIL FOR CLASS17", + 'N18':"PARTICLE NUMBER OF FRAZIL FOR CLASS18", + 'N19':"PARTICLE NUMBER OF FRAZIL FOR CLASS19", + 'N**':"PARTICLE NUMBER OF FRAZIL FOR CLASS**", + 'N*':"PARTICLE NUMBER OF FRAZIL FOR CLASS*", + 'N1':"PARTICLE NUMBER OF FRAZIL FOR CLASS1", + 'N2':"PARTICLE NUMBER OF FRAZIL FOR CLASS2", + 'N3':"PARTICLE NUMBER OF FRAZIL FOR CLASS3", + 'N4':"PARTICLE NUMBER OF FRAZIL FOR CLASS4", + 'N5':"PARTICLE NUMBER OF FRAZIL FOR CLASS5", + 'N6':"PARTICLE NUMBER OF FRAZIL FOR CLASS6", + 'N7':"PARTICLE NUMBER OF FRAZIL FOR CLASS7", + 'N8':"PARTICLE NUMBER OF FRAZIL FOR CLASS8", + 'N9':"PARTICLE NUMBER OF FRAZIL FOR CLASS9", + 'N10':"PARTICLE NUMBER OF FRAZIL FOR CLASS10", + 'N11':"PARTICLE NUMBER OF FRAZIL FOR CLASS11", + 'N12':"PARTICLE NUMBER OF FRAZIL FOR CLASS12", + 'N13':"PARTICLE NUMBER OF FRAZIL FOR CLASS13", + 'N14':"PARTICLE NUMBER OF FRAZIL FOR CLASS14", + 'N15':"PARTICLE NUMBER OF FRAZIL FOR CLASS15", + 'N16':"PARTICLE NUMBER OF FRAZIL FOR CLASS16", + 'N17':"PARTICLE NUMBER OF FRAZIL FOR CLASS17", + 'N18':"PARTICLE NUMBER OF FRAZIL FOR CLASS18", + 'N19':"PARTICLE NUMBER OF FRAZIL FOR CLASS19", + 'N**':"PARTICLE NUMBER OF FRAZIL FOR CLASS**", + 'N*':"PARTICLE NUMBER OF FRAZIL FOR CLASS*", + 'N1':"PARTICLE NUMBER OF FRAZIL FOR CLASS1", + 'N2':"PARTICLE NUMBER OF FRAZIL FOR CLASS2", + 'N3':"PARTICLE NUMBER OF FRAZIL FOR CLASS3", + 'N4':"PARTICLE NUMBER OF FRAZIL FOR CLASS4", + 'N5':"PARTICLE NUMBER OF FRAZIL FOR CLASS5", + 'N6':"PARTICLE NUMBER OF FRAZIL FOR CLASS6", + 'N7':"PARTICLE NUMBER OF FRAZIL FOR CLASS7", + 'N8':"PARTICLE NUMBER OF FRAZIL FOR CLASS8", + 'N9':"PARTICLE NUMBER OF FRAZIL FOR CLASS9", + 'N10':"PARTICLE NUMBER OF FRAZIL FOR CLASS10", + 'N11':"PARTICLE NUMBER OF FRAZIL FOR CLASS11", + 'N12':"PARTICLE NUMBER OF FRAZIL FOR CLASS12", + 'N13':"PARTICLE NUMBER OF FRAZIL FOR CLASS13", + 'N14':"PARTICLE NUMBER OF FRAZIL FOR CLASS14", + 'N15':"PARTICLE NUMBER OF FRAZIL FOR CLASS15", + 'N16':"PARTICLE NUMBER OF FRAZIL FOR CLASS16", + 'N17':"PARTICLE NUMBER OF FRAZIL FOR CLASS17", + 'N18':"PARTICLE NUMBER OF FRAZIL FOR CLASS18", + 'N19':"PARTICLE NUMBER OF FRAZIL FOR CLASS19", + 'N**':"PARTICLE NUMBER OF FRAZIL FOR CLASS**", + 'N*':"PARTICLE NUMBER OF FRAZIL FOR CLASS*", + 'N1':"PARTICLE NUMBER OF FRAZIL FOR CLASS1", + 'N2':"PARTICLE NUMBER OF FRAZIL FOR CLASS2", + 'N3':"PARTICLE NUMBER OF FRAZIL FOR CLASS3", + 'N4':"PARTICLE NUMBER OF FRAZIL FOR CLASS4", + 'N5':"PARTICLE NUMBER OF FRAZIL FOR CLASS5", + 'N6':"PARTICLE NUMBER OF FRAZIL FOR CLASS6", + 'N7':"PARTICLE NUMBER OF FRAZIL FOR CLASS7", + 'N8':"PARTICLE NUMBER OF FRAZIL FOR CLASS8", + 'N9':"PARTICLE NUMBER OF FRAZIL FOR CLASS9", + 'N10':"PARTICLE NUMBER OF FRAZIL FOR CLASS10", + 'N11':"PARTICLE NUMBER OF FRAZIL FOR CLASS11", + 'N12':"PARTICLE NUMBER OF FRAZIL FOR CLASS12", + 'N13':"PARTICLE NUMBER OF FRAZIL FOR CLASS13", + 'N14':"PARTICLE NUMBER OF FRAZIL FOR CLASS14", + 'N15':"PARTICLE NUMBER OF FRAZIL FOR CLASS15", + 'N16':"PARTICLE NUMBER OF FRAZIL FOR CLASS16", + 'N17':"PARTICLE NUMBER OF FRAZIL FOR CLASS17", + 'N18':"PARTICLE NUMBER OF FRAZIL FOR CLASS18", + 'N19':"PARTICLE NUMBER OF FRAZIL FOR CLASS19", + 'N**':"PARTICLE NUMBER OF FRAZIL FOR CLASS**", + 'N*':"PARTICLE NUMBER OF FRAZIL FOR CLASS*", + 'N1':"PARTICLE NUMBER OF FRAZIL FOR CLASS1", + 'N2':"PARTICLE NUMBER OF FRAZIL FOR CLASS2", + 'N3':"PARTICLE NUMBER OF FRAZIL FOR CLASS3", + 'N4':"PARTICLE NUMBER OF FRAZIL FOR CLASS4", + 'N5':"PARTICLE NUMBER OF FRAZIL FOR CLASS5", + 'N6':"PARTICLE NUMBER OF FRAZIL FOR CLASS6", + 'N7':"PARTICLE NUMBER OF FRAZIL FOR CLASS7", + 'N8':"PARTICLE NUMBER OF FRAZIL FOR CLASS8", + 'N9':"PARTICLE NUMBER OF FRAZIL FOR CLASS9", + 'N10':"PARTICLE NUMBER OF FRAZIL FOR CLASS10", + 'N11':"PARTICLE NUMBER OF FRAZIL FOR CLASS11", + 'N12':"PARTICLE NUMBER OF FRAZIL FOR CLASS12", + 'N13':"PARTICLE NUMBER OF FRAZIL FOR CLASS13", + 'N14':"PARTICLE NUMBER OF FRAZIL FOR CLASS14", + 'N15':"PARTICLE NUMBER OF FRAZIL FOR CLASS15", + 'N16':"PARTICLE NUMBER OF FRAZIL FOR CLASS16", + 'N17':"PARTICLE NUMBER OF FRAZIL FOR CLASS17", + 'N18':"PARTICLE NUMBER OF FRAZIL FOR CLASS18", + 'N19':"PARTICLE NUMBER OF FRAZIL FOR CLASS19", + 'N**':"PARTICLE NUMBER OF FRAZIL FOR CLASS**", + 'N*':"PARTICLE NUMBER OF FRAZIL FOR CLASS*", + 'N1':"PARTICLE NUMBER OF FRAZIL FOR CLASS1", + 'N2':"PARTICLE NUMBER OF FRAZIL FOR CLASS2", + 'N3':"PARTICLE NUMBER OF FRAZIL FOR CLASS3", + 'N4':"PARTICLE NUMBER OF FRAZIL FOR CLASS4", + 'N5':"PARTICLE NUMBER OF FRAZIL FOR CLASS5", + 'N6':"PARTICLE NUMBER OF FRAZIL FOR CLASS6", + 'N7':"PARTICLE NUMBER OF FRAZIL FOR CLASS7", + 'N8':"PARTICLE NUMBER OF FRAZIL FOR CLASS8", + 'N9':"PARTICLE NUMBER OF FRAZIL FOR CLASS9", + 'N10':"PARTICLE NUMBER OF FRAZIL FOR CLASS10", + 'N11':"PARTICLE NUMBER OF FRAZIL FOR CLASS11", + 'N12':"PARTICLE NUMBER OF FRAZIL FOR CLASS12", + 'N13':"PARTICLE NUMBER OF FRAZIL FOR CLASS13", + 'N14':"PARTICLE NUMBER OF FRAZIL FOR CLASS14", + 'N15':"PARTICLE NUMBER OF FRAZIL FOR CLASS15", + 'N16':"PARTICLE NUMBER OF FRAZIL FOR CLASS16", + 'N17':"PARTICLE NUMBER OF FRAZIL FOR CLASS17", + 'N18':"PARTICLE NUMBER OF FRAZIL FOR CLASS18", + 'N19':"PARTICLE NUMBER OF FRAZIL FOR CLASS19", + 'N**':"PARTICLE NUMBER OF FRAZIL FOR CLASS**", + 'N*':"PARTICLE NUMBER OF FRAZIL FOR CLASS*", + 'N1':"PARTICLE NUMBER OF FRAZIL FOR CLASS1", + 'N2':"PARTICLE NUMBER OF FRAZIL FOR CLASS2", + 'N3':"PARTICLE NUMBER OF FRAZIL FOR CLASS3", + 'N4':"PARTICLE NUMBER OF FRAZIL FOR CLASS4", + 'N5':"PARTICLE NUMBER OF FRAZIL FOR CLASS5", + 'N6':"PARTICLE NUMBER OF FRAZIL FOR CLASS6", + 'N7':"PARTICLE NUMBER OF FRAZIL FOR CLASS7", + 'N8':"PARTICLE NUMBER OF FRAZIL FOR CLASS8", + 'N9':"PARTICLE NUMBER OF FRAZIL FOR CLASS9", + 'N10':"PARTICLE NUMBER OF FRAZIL FOR CLASS10", + 'N11':"PARTICLE NUMBER OF FRAZIL FOR CLASS11", + 'N12':"PARTICLE NUMBER OF FRAZIL FOR CLASS12", + 'N13':"PARTICLE NUMBER OF FRAZIL FOR CLASS13", + 'N14':"PARTICLE NUMBER OF FRAZIL FOR CLASS14", + 'N15':"PARTICLE NUMBER OF FRAZIL FOR CLASS15", + 'N16':"PARTICLE NUMBER OF FRAZIL FOR CLASS16", + 'N17':"PARTICLE NUMBER OF FRAZIL FOR CLASS17", + 'N18':"PARTICLE NUMBER OF FRAZIL FOR CLASS18", + 'N19':"PARTICLE NUMBER OF FRAZIL FOR CLASS19", + 'N**':"PARTICLE NUMBER OF FRAZIL FOR CLASS**", + 'N*':"PARTICLE NUMBER OF FRAZIL FOR CLASS*", + 'N1':"PARTICLE NUMBER OF FRAZIL FOR CLASS1", + 'N2':"PARTICLE NUMBER OF FRAZIL FOR CLASS2", + 'N3':"PARTICLE NUMBER OF FRAZIL FOR CLASS3", + 'N4':"PARTICLE NUMBER OF FRAZIL FOR CLASS4", + 'N5':"PARTICLE NUMBER OF FRAZIL FOR CLASS5", + 'N6':"PARTICLE NUMBER OF FRAZIL FOR CLASS6", + 'N7':"PARTICLE NUMBER OF FRAZIL FOR CLASS7", + 'N8':"PARTICLE NUMBER OF FRAZIL FOR CLASS8", + 'N9':"PARTICLE NUMBER OF FRAZIL FOR CLASS9", + 'N10':"PARTICLE NUMBER OF FRAZIL FOR CLASS10", + 'N11':"PARTICLE NUMBER OF FRAZIL FOR CLASS11", + 'N12':"PARTICLE NUMBER OF FRAZIL FOR CLASS12", + 'N13':"PARTICLE NUMBER OF FRAZIL FOR CLASS13", + 'N14':"PARTICLE NUMBER OF FRAZIL FOR CLASS14", + 'N15':"PARTICLE NUMBER OF FRAZIL FOR CLASS15", + 'N16':"PARTICLE NUMBER OF FRAZIL FOR CLASS16", + 'N17':"PARTICLE NUMBER OF FRAZIL FOR CLASS17", + 'N18':"PARTICLE NUMBER OF FRAZIL FOR CLASS18", + 'N19':"PARTICLE NUMBER OF FRAZIL FOR CLASS19", + 'N**':"PARTICLE NUMBER OF FRAZIL FOR CLASS**", + 'N*':"PARTICLE NUMBER OF FRAZIL FOR CLASS*", + 'N1':"PARTICLE NUMBER OF FRAZIL FOR CLASS1", + 'N2':"PARTICLE NUMBER OF FRAZIL FOR CLASS2", + 'N3':"PARTICLE NUMBER OF FRAZIL FOR CLASS3", + 'N4':"PARTICLE NUMBER OF FRAZIL FOR CLASS4", + 'N5':"PARTICLE NUMBER OF FRAZIL FOR CLASS5", + 'N6':"PARTICLE NUMBER OF FRAZIL FOR CLASS6", + 'N7':"PARTICLE NUMBER OF FRAZIL FOR CLASS7", + 'N8':"PARTICLE NUMBER OF FRAZIL FOR CLASS8", + 'N9':"PARTICLE NUMBER OF FRAZIL FOR CLASS9", + 'N10':"PARTICLE NUMBER OF FRAZIL FOR CLASS10", + 'N11':"PARTICLE NUMBER OF FRAZIL FOR CLASS11", + 'N12':"PARTICLE NUMBER OF FRAZIL FOR CLASS12", + 'N13':"PARTICLE NUMBER OF FRAZIL FOR CLASS13", + 'N14':"PARTICLE NUMBER OF FRAZIL FOR CLASS14", + 'N15':"PARTICLE NUMBER OF FRAZIL FOR CLASS15", + 'N16':"PARTICLE NUMBER OF FRAZIL FOR CLASS16", + 'N17':"PARTICLE NUMBER OF FRAZIL FOR CLASS17", + 'N18':"PARTICLE NUMBER OF FRAZIL FOR CLASS18", + 'N19':"PARTICLE NUMBER OF FRAZIL FOR CLASS19", + 'N**':"PARTICLE NUMBER OF FRAZIL FOR CLASS**", + 'N*':"PARTICLE NUMBER OF FRAZIL FOR CLASS*", + 'N1':"PARTICLE NUMBER OF FRAZIL FOR CLASS1", + 'N2':"PARTICLE NUMBER OF FRAZIL FOR CLASS2", + 'N3':"PARTICLE NUMBER OF FRAZIL FOR CLASS3", + 'N4':"PARTICLE NUMBER OF FRAZIL FOR CLASS4", + 'N5':"PARTICLE NUMBER OF FRAZIL FOR CLASS5", + 'N6':"PARTICLE NUMBER OF FRAZIL FOR CLASS6", + 'N7':"PARTICLE NUMBER OF FRAZIL FOR CLASS7", + 'N8':"PARTICLE NUMBER OF FRAZIL FOR CLASS8", + 'N9':"PARTICLE NUMBER OF FRAZIL FOR CLASS9", + 'N10':"PARTICLE NUMBER OF FRAZIL FOR CLASS10", + 'N11':"PARTICLE NUMBER OF FRAZIL FOR CLASS11", + 'N12':"PARTICLE NUMBER OF FRAZIL FOR CLASS12", + 'N13':"PARTICLE NUMBER OF FRAZIL FOR CLASS13", + 'N14':"PARTICLE NUMBER OF FRAZIL FOR CLASS14", + 'N15':"PARTICLE NUMBER OF FRAZIL FOR CLASS15", + 'N16':"PARTICLE NUMBER OF FRAZIL FOR CLASS16", + 'N17':"PARTICLE NUMBER OF FRAZIL FOR CLASS17", + 'N18':"PARTICLE NUMBER OF FRAZIL FOR CLASS18", + 'N19':"PARTICLE NUMBER OF FRAZIL FOR CLASS19", + 'N**':"PARTICLE NUMBER OF FRAZIL FOR CLASS**", + 'N*':"PARTICLE NUMBER OF FRAZIL FOR CLASS*", + 'N1':"PARTICLE NUMBER OF FRAZIL FOR CLASS1", + 'N2':"PARTICLE NUMBER OF FRAZIL FOR CLASS2", + 'N3':"PARTICLE NUMBER OF FRAZIL FOR CLASS3", + 'N4':"PARTICLE NUMBER OF FRAZIL FOR CLASS4", + 'N5':"PARTICLE NUMBER OF FRAZIL FOR CLASS5", + 'N6':"PARTICLE NUMBER OF FRAZIL FOR CLASS6", + 'N7':"PARTICLE NUMBER OF FRAZIL FOR CLASS7", + 'N8':"PARTICLE NUMBER OF FRAZIL FOR CLASS8", + 'N9':"PARTICLE NUMBER OF FRAZIL FOR CLASS9", + 'N10':"PARTICLE NUMBER OF FRAZIL FOR CLASS10", + 'N11':"PARTICLE NUMBER OF FRAZIL FOR CLASS11", + 'N12':"PARTICLE NUMBER OF FRAZIL FOR CLASS12", + 'N13':"PARTICLE NUMBER OF FRAZIL FOR CLASS13", + 'N14':"PARTICLE NUMBER OF FRAZIL FOR CLASS14", + 'N15':"PARTICLE NUMBER OF FRAZIL FOR CLASS15", + 'N16':"PARTICLE NUMBER OF FRAZIL FOR CLASS16", + 'N17':"PARTICLE NUMBER OF FRAZIL FOR CLASS17", + 'N18':"PARTICLE NUMBER OF FRAZIL FOR CLASS18", + 'N19':"PARTICLE NUMBER OF FRAZIL FOR CLASS19", + 'N**':"PARTICLE NUMBER OF FRAZIL FOR CLASS**", + 'N*':"PARTICLE NUMBER OF FRAZIL FOR CLASS*", + 'N1':"PARTICLE NUMBER OF FRAZIL FOR CLASS1", + 'N2':"PARTICLE NUMBER OF FRAZIL FOR CLASS2", + 'N3':"PARTICLE NUMBER OF FRAZIL FOR CLASS3", + 'N4':"PARTICLE NUMBER OF FRAZIL FOR CLASS4", + 'N5':"PARTICLE NUMBER OF FRAZIL FOR CLASS5", + 'N6':"PARTICLE NUMBER OF FRAZIL FOR CLASS6", + 'N7':"PARTICLE NUMBER OF FRAZIL FOR CLASS7", + 'N8':"PARTICLE NUMBER OF FRAZIL FOR CLASS8", + 'N9':"PARTICLE NUMBER OF FRAZIL FOR CLASS9", + 'N10':"PARTICLE NUMBER OF FRAZIL FOR CLASS10", + 'N11':"PARTICLE NUMBER OF FRAZIL FOR CLASS11", + 'N12':"PARTICLE NUMBER OF FRAZIL FOR CLASS12", + 'N13':"PARTICLE NUMBER OF FRAZIL FOR CLASS13", + 'N14':"PARTICLE NUMBER OF FRAZIL FOR CLASS14", + 'N15':"PARTICLE NUMBER OF FRAZIL FOR CLASS15", + 'N16':"PARTICLE NUMBER OF FRAZIL FOR CLASS16", + 'N17':"PARTICLE NUMBER OF FRAZIL FOR CLASS17", + 'N18':"PARTICLE NUMBER OF FRAZIL FOR CLASS18", + 'N19':"PARTICLE NUMBER OF FRAZIL FOR CLASS19", + 'N**':"PARTICLE NUMBER OF FRAZIL FOR CLASS**", + 'N*':"PARTICLE NUMBER OF FRAZIL FOR CLASS*", + 'N1':"PARTICLE NUMBER OF FRAZIL FOR CLASS1", + 'N2':"PARTICLE NUMBER OF FRAZIL FOR CLASS2", + 'N3':"PARTICLE NUMBER OF FRAZIL FOR CLASS3", + 'N4':"PARTICLE NUMBER OF FRAZIL FOR CLASS4", + 'N5':"PARTICLE NUMBER OF FRAZIL FOR CLASS5", + 'N6':"PARTICLE NUMBER OF FRAZIL FOR CLASS6", + 'N7':"PARTICLE NUMBER OF FRAZIL FOR CLASS7", + 'N8':"PARTICLE NUMBER OF FRAZIL FOR CLASS8", + 'N9':"PARTICLE NUMBER OF FRAZIL FOR CLASS9", + 'N10':"PARTICLE NUMBER OF FRAZIL FOR CLASS10", + 'N11':"PARTICLE NUMBER OF FRAZIL FOR CLASS11", + 'N12':"PARTICLE NUMBER OF FRAZIL FOR CLASS12", + 'N13':"PARTICLE NUMBER OF FRAZIL FOR CLASS13", + 'N14':"PARTICLE NUMBER OF FRAZIL FOR CLASS14", + 'N15':"PARTICLE NUMBER OF FRAZIL FOR CLASS15", + 'N16':"PARTICLE NUMBER OF FRAZIL FOR CLASS16", + 'N17':"PARTICLE NUMBER OF FRAZIL FOR CLASS17", + 'N18':"PARTICLE NUMBER OF FRAZIL FOR CLASS18", + 'N19':"PARTICLE NUMBER OF FRAZIL FOR CLASS19", + 'N**':"PARTICLE NUMBER OF FRAZIL FOR CLASS**", + 'N*':"PARTICLE NUMBER OF FRAZIL FOR CLASS*", + 'N1':"PARTICLE NUMBER OF FRAZIL FOR CLASS1", + 'N2':"PARTICLE NUMBER OF FRAZIL FOR CLASS2", + 'N3':"PARTICLE NUMBER OF FRAZIL FOR CLASS3", + 'N4':"PARTICLE NUMBER OF FRAZIL FOR CLASS4", + 'N5':"PARTICLE NUMBER OF FRAZIL FOR CLASS5", + 'N6':"PARTICLE NUMBER OF FRAZIL FOR CLASS6", + 'N7':"PARTICLE NUMBER OF FRAZIL FOR CLASS7", + 'N8':"PARTICLE NUMBER OF FRAZIL FOR CLASS8", + 'N9':"PARTICLE NUMBER OF FRAZIL FOR CLASS9", + 'N10':"PARTICLE NUMBER OF FRAZIL FOR CLASS10", + 'N11':"PARTICLE NUMBER OF FRAZIL FOR CLASS11", + 'N12':"PARTICLE NUMBER OF FRAZIL FOR CLASS12", + 'N13':"PARTICLE NUMBER OF FRAZIL FOR CLASS13", + 'N14':"PARTICLE NUMBER OF FRAZIL FOR CLASS14", + 'N15':"PARTICLE NUMBER OF FRAZIL FOR CLASS15", + 'N16':"PARTICLE NUMBER OF FRAZIL FOR CLASS16", + 'N17':"PARTICLE NUMBER OF FRAZIL FOR CLASS17", + 'N18':"PARTICLE NUMBER OF FRAZIL FOR CLASS18", + 'N19':"PARTICLE NUMBER OF FRAZIL FOR CLASS19", + 'N**':"PARTICLE NUMBER OF FRAZIL FOR CLASS**", + 'N*':"PARTICLE NUMBER OF FRAZIL FOR CLASS*", + 'N1':"PARTICLE NUMBER OF FRAZIL FOR CLASS1", + 'N2':"PARTICLE NUMBER OF FRAZIL FOR CLASS2", + 'N3':"PARTICLE NUMBER OF FRAZIL FOR CLASS3", + 'N4':"PARTICLE NUMBER OF FRAZIL FOR CLASS4", + 'N5':"PARTICLE NUMBER OF FRAZIL FOR CLASS5", + 'N6':"PARTICLE NUMBER OF FRAZIL FOR CLASS6", + 'N7':"PARTICLE NUMBER OF FRAZIL FOR CLASS7", + 'N8':"PARTICLE NUMBER OF FRAZIL FOR CLASS8", + 'N9':"PARTICLE NUMBER OF FRAZIL FOR CLASS9", + 'N10':"PARTICLE NUMBER OF FRAZIL FOR CLASS10", + 'N11':"PARTICLE NUMBER OF FRAZIL FOR CLASS11", + 'N12':"PARTICLE NUMBER OF FRAZIL FOR CLASS12", + 'N13':"PARTICLE NUMBER OF FRAZIL FOR CLASS13", + 'N14':"PARTICLE NUMBER OF FRAZIL FOR CLASS14", + 'N15':"PARTICLE NUMBER OF FRAZIL FOR CLASS15", + 'N16':"PARTICLE NUMBER OF FRAZIL FOR CLASS16", + 'N17':"PARTICLE NUMBER OF FRAZIL FOR CLASS17", + 'N18':"PARTICLE NUMBER OF FRAZIL FOR CLASS18", + 'N19':"PARTICLE NUMBER OF FRAZIL FOR CLASS19", + 'N**':"PARTICLE NUMBER OF FRAZIL FOR CLASS**", + 'N*':"PARTICLE NUMBER OF FRAZIL FOR CLASS*", + 'N1':"PARTICLE NUMBER OF FRAZIL FOR CLASS1", + 'N2':"PARTICLE NUMBER OF FRAZIL FOR CLASS2", + 'N3':"PARTICLE NUMBER OF FRAZIL FOR CLASS3", + 'N4':"PARTICLE NUMBER OF FRAZIL FOR CLASS4", + 'N5':"PARTICLE NUMBER OF FRAZIL FOR CLASS5", + 'N6':"PARTICLE NUMBER OF FRAZIL FOR CLASS6", + 'N7':"PARTICLE NUMBER OF FRAZIL FOR CLASS7", + 'N8':"PARTICLE NUMBER OF FRAZIL FOR CLASS8", + 'N9':"PARTICLE NUMBER OF FRAZIL FOR CLASS9", + 'N10':"PARTICLE NUMBER OF FRAZIL FOR CLASS10", + 'N11':"PARTICLE NUMBER OF FRAZIL FOR CLASS11", + 'N12':"PARTICLE NUMBER OF FRAZIL FOR CLASS12", + 'N13':"PARTICLE NUMBER OF FRAZIL FOR CLASS13", + 'N14':"PARTICLE NUMBER OF FRAZIL FOR CLASS14", + 'N15':"PARTICLE NUMBER OF FRAZIL FOR CLASS15", + 'N16':"PARTICLE NUMBER OF FRAZIL FOR CLASS16", + 'N17':"PARTICLE NUMBER OF FRAZIL FOR CLASS17", + 'N18':"PARTICLE NUMBER OF FRAZIL FOR CLASS18", + 'N19':"PARTICLE NUMBER OF FRAZIL FOR CLASS19", + 'N**':"PARTICLE NUMBER OF FRAZIL FOR CLASS**", + 'N*':"PARTICLE NUMBER OF FRAZIL FOR CLASS*", + 'N1':"PARTICLE NUMBER OF FRAZIL FOR CLASS1", + 'N2':"PARTICLE NUMBER OF FRAZIL FOR CLASS2", + 'N3':"PARTICLE NUMBER OF FRAZIL FOR CLASS3", + 'N4':"PARTICLE NUMBER OF FRAZIL FOR CLASS4", + 'N5':"PARTICLE NUMBER OF FRAZIL FOR CLASS5", + 'N6':"PARTICLE NUMBER OF FRAZIL FOR CLASS6", + 'N7':"PARTICLE NUMBER OF FRAZIL FOR CLASS7", + 'N8':"PARTICLE NUMBER OF FRAZIL FOR CLASS8", + 'N9':"PARTICLE NUMBER OF FRAZIL FOR CLASS9", + 'N10':"PARTICLE NUMBER OF FRAZIL FOR CLASS10", + 'N11':"PARTICLE NUMBER OF FRAZIL FOR CLASS11", + 'N12':"PARTICLE NUMBER OF FRAZIL FOR CLASS12", + 'N13':"PARTICLE NUMBER OF FRAZIL FOR CLASS13", + 'N14':"PARTICLE NUMBER OF FRAZIL FOR CLASS14", + 'N15':"PARTICLE NUMBER OF FRAZIL FOR CLASS15", + 'N16':"PARTICLE NUMBER OF FRAZIL FOR CLASS16", + 'N17':"PARTICLE NUMBER OF FRAZIL FOR CLASS17", + 'N18':"PARTICLE NUMBER OF FRAZIL FOR CLASS18", + 'N19':"PARTICLE NUMBER OF FRAZIL FOR CLASS19", + 'N**':"PARTICLE NUMBER OF FRAZIL FOR CLASS**", + 'TEMP':"WATER TEMPERATURE", + 'SAL':"SALINITY OF WATER", + }, +'LAW_OF_ICE_COVER_FRICTION' : { + 0:"PAS DE FROTTEMENT", + 1:"HAALAND", + 2:"CHEZY", + 3:"STRICKLER", + 4:"MANNING", + 5:"NIKURADSE", + }, +'LAW_FOR_FRICTION_COEFFICIENT' : { + 0:"COEF DE FRICTION CONSTANT", + 1:"COEF DE FRICTION LINEAIRE", + }, +'MODEL_FOR_THE_NUSSELT_NUMBER' : { + 1:"WADIA (1974) AND BATCHELOR (1980)", + 2:"CONSTANT NUSSELT NUMBER", + }, +'MODEL_FOR_THE_BUOYANCY_VELOCITY' : { + 1:"DALY (1984)", + 2:"DALY INTERMEDIATE (1984)", + 3:"MATOUSEK (1992)", + 4:"GOSIK & OSTERKAMP (1983)", + }, +'ENERGY_BALANCE_VERSION' : { + 1:"SIMPLIFIED ENERGY BALANCE", + 2:"FULL ENERGY BALANCE", + }, +'SCHEME_OPTION_FOR_THERMAL_GROWTH' : { + 1:"EXPLICIT TIME SCHEME", + 2:"SEMI-IMPLICIT TIME SCHEME", + }, +'MODEL_FOR_THE_SECONDARY_NUCLEATION' : { + 0:"PAS DE NUCLEATION SECONDAIRE", + 1:"SVENSSON ET OMSTEDT 1994", + 2:"WANG ET DOERING 2005", + }, +'MODEL_FOR_THE_FLOCCULATION_AND_BREAKUP' : { + 0:"PAS DE FLOCCULATION", + 1:"SVENSSON ET OMSTEDT 1994", + }, +'MODEL_FOR_FRAZIL_SEEDING' : { + 0:"PAS D'ENSEMENCEMENT", + 1:"SEUIL MINIMUM DE CONC.", + 2:"TAUX D'ENSEMENCEMENT CONSTANT", + 3:"OPTIONS 1 AND 2", + }, +'ATMOSPHERE_WATER_EXCHANGE_MODEL' : { + 0:"FORMULE LINEARISEE", + 1:"MODELE A BILAN COMPLET", + }, +'MODEL_FOR_ESTIMATION_OF_TURBULENCE_PARAMETERS' : { + 0:"VALEURS CONSTANTES", + 1:"MODELE A LONGUEUR DE MELANGE", + 2:"MODELE K-EPS DE TELEMAC-2D", + }, +} + +DicoCasFrToCata = { + "FICHIER DES PARAMETRES":"STEERING_FILE", + "FICHIER FORTRAN":"FORTRAN_FILE", + "TITRE":"TITLE", + "FICHIER DES CONDITIONS AUX LIMITES":"BOUNDARY_CONDITIONS_FILE", + "FICHIER DE GEOMETRIE":"GEOMETRY_FILE", + "FORMAT DU FICHIER DE GEOMETRIE":"GEOMETRY_FILE_FORMAT", + "FICHIER DE REFERENCE":"REFERENCE_FILE", + "FORMAT DU FICHIER DE REFERENCE":"REFERENCE_FILE_FORMAT", + "FICHIER DES RESULTATS":"RESULTS_FILE", + "FORMAT DU FICHIER DES RESULTATS":"RESULTS_FILE_FORMAT", + "FICHIER COUVERT DE GLACE DU CALCUL PRECEDENT":"PREVIOUS_ICE_COVER_COMPUTATION_FILE", + "FORMAT DU FICHIER COUVERT DE GLACE DU CALCUL PRECEDENT":"PREVIOUS_ICE_COVER_COMPUTATION_FILE_FORMAT", + "FICHIER BLOCS DE GLACE DU CALCUL PRECEDENT":"PREVIOUS_ICE_BLOCKS_COMPUTATION_FILE", + "FORMAT DU FICHIER BLOCS DE GLACE DU CALCUL PRECEDENT":"PREVIOUS_ICE_BLOCKS_COMPUTATION_FILE_FORMAT", + "DICTIONNAIRE":"DICTIONARY", + "CONDITIONS INITIALES":"INITIAL_CONDITIONS", + "VARIABLES POUR LES SORTIES GRAPHIQUES":"VARIABLES_FOR_GRAPHIC_PRINTOUTS", + "VARIABLES A IMPRIMER":"VARIABLES_TO_BE_PRINTED", + "PERIODE POUR LES SORTIES GRAPHIQUES":"GRAPHIC_PRINTOUT_PERIOD", + "PERIODE DE SORTIE LISTING":"LISTING_PRINTOUT_PERIOD", + "BILAN DE MASSE":"MASS_BALANCE", + "VALIDATION":"VALIDATION", + "LOI DE FROTTEMENT SOUS LE COUVERT DE GLACE":"LAW_OF_ICE_COVER_FRICTION", + "COEFFICIENT DE FROTTEMENT":"FRICTION_COEFFICIENT", + "COEFFICIENT DE FROTTEMENT MAXIMAL":"MAXIMAL_FRICTION_COEFFICIENT", + "LOI POUR LE COEFFICIENT DE FROTTEMENT":"LAW_FOR_FRICTION_COEFFICIENT", + "EPAISSEUR DE COUVERT DE GLACE CARACTERISTIQUE":"EQUIVALENT_SURFACE_ICE_THICKNESS", + "MASSE VOLUMIQUE DE L'AIR":"AIR_DENSITY", + "MASSE VOLUMIQUE DE LA GLACE":"ICE_DENSITY", + "CHALEUR SPECIFIQUE DE L'EAU":"WATER_SPECIFIC_HEAT", + "CHALEUR SPECIFIQUE DE LA GLACE":"SPECIFIC_HEAT_OF_ICE", + "CHALEUR LATENTE DE LA GLACE":"LATENT_HEAT_OF_ICE", + "COEFFICIENT D'ECHANGE THERMIQUE EAU-AIR":"WATER_AIR_HEAT_EXCHANGE_COEFFICIENT", + "CONSTANTE D'ECHANGE THERMIQUE EAU-AIR":"WATER_AIR_HEAT_EXCHANGE_CONSTANT", + "COEFFICIENT D'ECHANGE THERMIQUE GLACE-AIR":"ICE_AIR_HEAT_EXCHANGE_COEFFICIENT", + "CONSTANTE D'ECHANGE THERMIQUE GLACE-AIR":"ICE_AIR_HEAT_EXCHANGE_CONSTANT", + "COEFFICIENT DE CALAGE DU FLUX RADIATIF ATMOSPHERIQUE":"COEFFICIENT_FOR_CALIBRATION_OF_BACK_RADIATION", + "COEFFICIENT DE CALAGE DU TRANSFERT EVAPORATIF":"COEFFICIENT_FOR_CALIBRATION_OF_EVAPORATIVE_HEAT_TRANSFERT", + "COEFFICIENT DE CALAGE DU TRANSFERT CONDUCTIF":"COEFFICIENT_FOR_CALIBRATION_OF_CONDUCTIVE_HEAT_TRANSFERT", + "COEFFICIENT DE CALAGE DU TRANSFERT LIE AUX PRECIPITATIONS":"COEFFICIENT_FOR_CALIBRATION_OF_PRECIPITATION_HEAT_TRANSFERT", + "CONDUCTIVITE THERMIQUE ENTRE EAU ET FRASIL":"THERMAL_CONDUCTIVITY_BETWEEN_WATER_AND_FRAZIL", + "CONDUCTIVITE THERMIQUE DE LA GLACE SOMBRE":"THERMAL_CONDUCTIVITY_OF_BLACK_ICE", + "CONDUCTIVITE THERMIQUE DE LA NEIGE":"THERMAL_CONDUCTIVITY_OF_SNOW", + "POROSITE DE LA GLACE DE SURFACE":"POROSITY_OF_SURFACE_ICE", + "NOMBRE DE CLASSES POUR LA SUSPENSION DE FRASIL":"NUMBER_OF_CLASSES_FOR_SUSPENDED_FRAZIL_ICE", + "NOMBRE DE NUSSELT":"NUSSELT_NUMBER", + "MODELE POUR LE CALCUL DU NOMBRE DE NUSSELT":"MODEL_FOR_THE_NUSSELT_NUMBER", + "RAYON DES CRISTAUX DE FRASIL":"FRAZIL_CRYSTALS_RADIUS", + "RATIO DIAMETRE EPAISSEUR D'UN CRISTAL DE FRASIL":"FRAZIL_CRYSTALS_DIAMETER_THICKNESS_RATIO", + "MODELE POUR LE CALCUL DE LA VITESSE DE FLOTTABILITE":"MODEL_FOR_THE_BUOYANCY_VELOCITY", + "COEFFICIENT DE DEPOSITION DES GLACES SUR BARRES":"SETTLING_COEFFICIENT_OF_FRAZIL_ON_BARS", + "POROSITE DE LA GLACE ACCUMULEE":"POROSITY_OF_ACCUMULATED_ICE", + "ANGLE D ACCUMULATION DE LA GLACE":"ANGLE_OF_ACCUMULATED_ICE", + "PARAMETRES PHYSIQUES DE LA GRILLE D ENTREE":"PHYSICAL_CHARACTERISTICS_OF_THE_INTAKE_RACK", + "NUMEROS DES FRONTIERES GLACEES":"CLOGGED_BOUNDARY_NUMBERS", + "SECTIONS COLMATEES":"CLOGGED_SECTIONS", + "FICHIER DE RESULTATS DE LA GLACE ACCUMULEE":"CLOGGING_RESULTS_FILE", + "VITESSE CRITIQUE POUR LA GLACE DE BORD STATIQUE":"CRITICAL_VELOCITY_FOR_STATIC_BORDER_ICE", + "VITESSE CRITIQUE POUR LA GLACE DE BORD DYNAMIQUE":"CRITICAL_VELOCITY_FOR_DYNAMIC_BORDER_ICE", + "HAUTEUR DE MESURE DU VENT":"HEIGHT_OF_MEASURED_WIND", + "ELEVATION DU MODELE RELATIVE AU NIVEAU MOYEN DES OCEANS":"RELATIVE_MODEL_ELEVATION_FROM_MEAN_SEA_LEVEL", + "ANGLE DU SOLEIL COUCHANT":"SUN_SET_ANGLE", + "ANGLE DU SOLEIL LEVANT":"SUN_RISE_ANGLE", + "CONSTANTE SOLAIRE":"SOLAR_CONSTANT", + "ALBEDO DES GLACES":"ALBEDO_OF_ICE", + "TEMPERATURE DE ROSEE":"DEWPOINT_TEMPERATURE", + "VISIBILITE":"VISIBILITY", + "LONGITUDE GLOBALE, EN DEGRES":"GLOBAL_LONGITUDE__IN_DEGREES", + "LONGITUDE LOCALE, EN DEGRES":"LOCAL_LONGITUDE__IN__DEGREES", + "LONGITUDE EST OU OUEST":"EAST_OR_WEST_LONGITUDE", + "INCLURE LA DYNAMIQUE DES GLACES":"INCLUDE_ICE_DYNAMICS", + "AD NOMBRE DE DERIVEES":"AD_NUMBER_OF_DERIVATIVES", + "AD NOMS DES DERIVEES":"AD_NAMES_OF_DERIVATIVES", + "MASSE VOLUMIQUE DE L'EAU":"WATER_DENSITY", + "VISCOSITE CINEMATIQUE DE L'EAU":"KINEMATIC_WATER_VISCOSITY", + "CONST. POUR LE FLUX THERMIQUE TURBULENT GLACE-EAU":"WATER_ICE_HEAT_TRANSFER_COEF__FOR_TURBULENT_FLOW", + "CONST. POUR LE FLUX THERMIQUE TURBULENT GLACE-EAU EN SURFUSION":"WATER_ICE_HEAT_TRANSFER_COEF__FOR_SUPERCOOLED_TURBULENT_FLOW", + "NOMBRE DE NUSSELT POUR LE TRANFERT THERMIQUE GLACE-EAU":"NUSSELT_NUMBER_FOR_HEAT_TRANSFER_BETWEEN_WATER_AND_ICE", + "CONSTANTE DE BOLTZMANN":"BOLTZMANN_CONSTANT__WM_2K_4_", + "TEMPERATURE DE CONGELATION DE L'EAU":"FREEZING_POINT_OF_WATER", + "TEMPERATURE D'EAU CRITIQUE POUR LA GLACE DE BORD STATIQUE":"CRITICAL_WATER_TEMPERATURE_FOR_STATIC_BORDER_ICE", + "LARGEUR DU CHENAL POUR LE CALCUL DE LA TEMPERATURE DE SURFACE":"CHANNEL_WIDTH_FOR_THE_COMPUTATION_OF_SURFACE_TEMPERATURE", + "CONCENTRATION MAXIMALE DU COUVERT DE GLACE":"CONCENTRATION_OF_SURFACE_ICE_WHEN_FORMATION", + "PROCESSEURS PARALLELES":"PARALLEL_PROCESSORS", + "BILAN THERMIQUE":"HEAT_BUDGET", + "IMPACT DU COUVERT SUR L'HYDRODYNAMIQUE":"ICE_COVER_IMPACT_ON_HYDRODYNAMIC", + "COLMATAGE DES GRILLES":"CLOGGING_ON_BARS", + "GLACE DE BORD STATIQUE":"BORDER_ICE_COVER", + "SALINITE":"SALINITY", + "VERSION DU BILAN ENERGETIQUE":"ENERGY_BALANCE_VERSION", + "OPTION DU SCHEMA POUR LA CROISSANCE THERMIQUE":"SCHEME_OPTION_FOR_THERMAL_GROWTH", + "MODELE POUR LA NUCLEATION SECONDAIRE":"MODEL_FOR_THE_SECONDARY_NUCLEATION", + "PARAMETRE NMAX POUR LA NUCLEATION SECONDAIRE":"SECONDARY_NUCLEATION_NMAX_PARAMETER", + "MODELE POUR LA FLOCULATION ET RUPTURE":"MODEL_FOR_THE_FLOCCULATION_AND_BREAKUP", + "PARAMETRE AFLOC POUR LA FLOCULATION":"FLOCCULATION_AFLOC_PARAMETER", + "MODELE POUR L'ENSEMENCEMENT DU FRASIL":"MODEL_FOR_FRAZIL_SEEDING", + "TAUX D'ENSEMENCEMENT DE FRASIL":"FRAZIL_SEEDING_RATE", + "NOMBRE MINIMUM DE CRISTAUX DE FRASIL":"MINIMUM_NUMBER_OF_FRAZIL_CRYSTALS", + "MODELE D'ECHANGES EAU-ATMOSPHERE":"ATMOSPHERE_WATER_EXCHANGE_MODEL", + "MODELE POUR L'ESTIMATION DES PARAMETRES DE TURBULENCE":"MODEL_FOR_ESTIMATION_OF_TURBULENCE_PARAMETERS", + "PRECIPITATION DU FRASIL":"FRAZIL_PRECIPITATION", +} + +DicoCasEnToCata = { + 'STEERING FILE':'STEERING_FILE', + 'FORTRAN FILE':'FORTRAN_FILE', + 'TITLE':'TITLE', + 'BOUNDARY CONDITIONS FILE':'BOUNDARY_CONDITIONS_FILE', + 'GEOMETRY FILE':'GEOMETRY_FILE', + 'GEOMETRY FILE FORMAT':'GEOMETRY_FILE_FORMAT', + 'REFERENCE FILE':'REFERENCE_FILE', + 'REFERENCE FILE FORMAT':'REFERENCE_FILE_FORMAT', + 'RESULTS FILE':'RESULTS_FILE', + 'RESULTS FILE FORMAT':'RESULTS_FILE_FORMAT', + 'PREVIOUS ICE COVER COMPUTATION FILE':'PREVIOUS_ICE_COVER_COMPUTATION_FILE', + 'PREVIOUS ICE COVER COMPUTATION FILE FORMAT':'PREVIOUS_ICE_COVER_COMPUTATION_FILE_FORMAT', + 'PREVIOUS ICE BLOCKS COMPUTATION FILE':'PREVIOUS_ICE_BLOCKS_COMPUTATION_FILE', + 'PREVIOUS ICE BLOCKS COMPUTATION FILE FORMAT':'PREVIOUS_ICE_BLOCKS_COMPUTATION_FILE_FORMAT', + 'DICTIONARY':'DICTIONARY', + 'INITIAL CONDITIONS':'INITIAL_CONDITIONS', + 'VARIABLES FOR GRAPHIC PRINTOUTS':'VARIABLES_FOR_GRAPHIC_PRINTOUTS', + 'VARIABLES TO BE PRINTED':'VARIABLES_TO_BE_PRINTED', + 'GRAPHIC PRINTOUT PERIOD':'GRAPHIC_PRINTOUT_PERIOD', + 'LISTING PRINTOUT PERIOD':'LISTING_PRINTOUT_PERIOD', + 'MASS-BALANCE':'MASS_BALANCE', + 'VALIDATION':'VALIDATION', + 'LAW OF ICE COVER FRICTION':'LAW_OF_ICE_COVER_FRICTION', + 'FRICTION COEFFICIENT':'FRICTION_COEFFICIENT', + 'MAXIMAL FRICTION COEFFICIENT':'MAXIMAL_FRICTION_COEFFICIENT', + 'LAW FOR FRICTION COEFFICIENT':'LAW_FOR_FRICTION_COEFFICIENT', + 'EQUIVALENT SURFACE ICE THICKNESS':'EQUIVALENT_SURFACE_ICE_THICKNESS', + 'AIR DENSITY':'AIR_DENSITY', + 'ICE DENSITY':'ICE_DENSITY', + 'WATER SPECIFIC HEAT':'WATER_SPECIFIC_HEAT', + 'SPECIFIC HEAT OF ICE':'SPECIFIC_HEAT_OF_ICE', + 'LATENT HEAT OF ICE':'LATENT_HEAT_OF_ICE', + 'WATER-AIR HEAT EXCHANGE COEFFICIENT':'WATER_AIR_HEAT_EXCHANGE_COEFFICIENT', + 'WATER-AIR HEAT EXCHANGE CONSTANT':'WATER_AIR_HEAT_EXCHANGE_CONSTANT', + 'ICE-AIR HEAT EXCHANGE COEFFICIENT':'ICE_AIR_HEAT_EXCHANGE_COEFFICIENT', + 'ICE-AIR HEAT EXCHANGE CONSTANT':'ICE_AIR_HEAT_EXCHANGE_CONSTANT', + 'COEFFICIENT FOR CALIBRATION OF BACK RADIATION':'COEFFICIENT_FOR_CALIBRATION_OF_BACK_RADIATION', + 'COEFFICIENT FOR CALIBRATION OF EVAPORATIVE HEAT TRANSFERT':'COEFFICIENT_FOR_CALIBRATION_OF_EVAPORATIVE_HEAT_TRANSFERT', + 'COEFFICIENT FOR CALIBRATION OF CONDUCTIVE HEAT TRANSFERT':'COEFFICIENT_FOR_CALIBRATION_OF_CONDUCTIVE_HEAT_TRANSFERT', + 'COEFFICIENT FOR CALIBRATION OF PRECIPITATION HEAT TRANSFERT':'COEFFICIENT_FOR_CALIBRATION_OF_PRECIPITATION_HEAT_TRANSFERT', + 'THERMAL CONDUCTIVITY BETWEEN WATER AND FRAZIL':'THERMAL_CONDUCTIVITY_BETWEEN_WATER_AND_FRAZIL', + 'THERMAL CONDUCTIVITY OF BLACK ICE':'THERMAL_CONDUCTIVITY_OF_BLACK_ICE', + 'THERMAL CONDUCTIVITY OF SNOW':'THERMAL_CONDUCTIVITY_OF_SNOW', + 'POROSITY OF SURFACE ICE':'POROSITY_OF_SURFACE_ICE', + 'NUMBER OF CLASSES FOR SUSPENDED FRAZIL ICE':'NUMBER_OF_CLASSES_FOR_SUSPENDED_FRAZIL_ICE', + 'NUSSELT NUMBER':'NUSSELT_NUMBER', + 'MODEL FOR THE NUSSELT NUMBER':'MODEL_FOR_THE_NUSSELT_NUMBER', + 'FRAZIL CRYSTALS RADIUS':'FRAZIL_CRYSTALS_RADIUS', + 'FRAZIL CRYSTALS DIAMETER THICKNESS RATIO':'FRAZIL_CRYSTALS_DIAMETER_THICKNESS_RATIO', + 'MODEL FOR THE BUOYANCY VELOCITY':'MODEL_FOR_THE_BUOYANCY_VELOCITY', + 'SETTLING COEFFICIENT OF FRAZIL ON BARS':'SETTLING_COEFFICIENT_OF_FRAZIL_ON_BARS', + 'POROSITY OF ACCUMULATED ICE':'POROSITY_OF_ACCUMULATED_ICE', + 'ANGLE OF ACCUMULATED ICE':'ANGLE_OF_ACCUMULATED_ICE', + 'PHYSICAL CHARACTERISTICS OF THE INTAKE RACK':'PHYSICAL_CHARACTERISTICS_OF_THE_INTAKE_RACK', + 'CLOGGED BOUNDARY NUMBERS':'CLOGGED_BOUNDARY_NUMBERS', + 'CLOGGED SECTIONS':'CLOGGED_SECTIONS', + 'CLOGGING RESULTS FILE':'CLOGGING_RESULTS_FILE', + 'CRITICAL VELOCITY FOR STATIC BORDER ICE':'CRITICAL_VELOCITY_FOR_STATIC_BORDER_ICE', + 'CRITICAL VELOCITY FOR DYNAMIC BORDER ICE':'CRITICAL_VELOCITY_FOR_DYNAMIC_BORDER_ICE', + 'HEIGHT OF MEASURED WIND':'HEIGHT_OF_MEASURED_WIND', + 'RELATIVE MODEL ELEVATION FROM MEAN SEA LEVEL':'RELATIVE_MODEL_ELEVATION_FROM_MEAN_SEA_LEVEL', + 'SUN SET ANGLE':'SUN_SET_ANGLE', + 'SUN RISE ANGLE':'SUN_RISE_ANGLE', + 'SOLAR CONSTANT':'SOLAR_CONSTANT', + 'ALBEDO OF ICE':'ALBEDO_OF_ICE', + 'DEWPOINT TEMPERATURE':'DEWPOINT_TEMPERATURE', + 'VISIBILITY':'VISIBILITY', + 'GLOBAL LONGITUDE, IN DEGREES':'GLOBAL_LONGITUDE__IN_DEGREES', + 'LOCAL LONGITUDE, IN DEGREES':'LOCAL_LONGITUDE__IN__DEGREES', + 'EAST OR WEST LONGITUDE':'EAST_OR_WEST_LONGITUDE', + 'INCLUDE ICE DYNAMICS':'INCLUDE_ICE_DYNAMICS', + 'AD NUMBER OF DERIVATIVES':'AD_NUMBER_OF_DERIVATIVES', + 'AD NAMES OF DERIVATIVES':'AD_NAMES_OF_DERIVATIVES', + 'WATER DENSITY':'WATER_DENSITY', + 'KINEMATIC WATER VISCOSITY':'KINEMATIC_WATER_VISCOSITY', + 'WATER-ICE HEAT TRANSFER COEF. FOR TURBULENT FLOW':'WATER_ICE_HEAT_TRANSFER_COEF__FOR_TURBULENT_FLOW', + 'WATER-ICE HEAT TRANSFER COEF. FOR SUPERCOOLED TURBULENT FLOW':'WATER_ICE_HEAT_TRANSFER_COEF__FOR_SUPERCOOLED_TURBULENT_FLOW', + 'NUSSELT NUMBER FOR HEAT TRANSFER BETWEEN WATER AND ICE':'NUSSELT_NUMBER_FOR_HEAT_TRANSFER_BETWEEN_WATER_AND_ICE', + 'BOLTZMANN CONSTANT (WM-2K-4)':'BOLTZMANN_CONSTANT__WM_2K_4_', + 'FREEZING POINT OF WATER':'FREEZING_POINT_OF_WATER', + 'CRITICAL WATER TEMPERATURE FOR STATIC BORDER ICE':'CRITICAL_WATER_TEMPERATURE_FOR_STATIC_BORDER_ICE', + 'CHANNEL WIDTH FOR THE COMPUTATION OF SURFACE TEMPERATURE':'CHANNEL_WIDTH_FOR_THE_COMPUTATION_OF_SURFACE_TEMPERATURE', + 'CONCENTRATION OF SURFACE ICE WHEN FORMATION':'CONCENTRATION_OF_SURFACE_ICE_WHEN_FORMATION', + 'PARALLEL PROCESSORS':'PARALLEL_PROCESSORS', + 'HEAT BUDGET':'HEAT_BUDGET', + 'ICE COVER IMPACT ON HYDRODYNAMIC':'ICE_COVER_IMPACT_ON_HYDRODYNAMIC', + 'CLOGGING ON BARS':'CLOGGING_ON_BARS', + 'BORDER ICE COVER':'BORDER_ICE_COVER', + 'SALINITY':'SALINITY', + 'ENERGY BALANCE VERSION':'ENERGY_BALANCE_VERSION', + 'SCHEME OPTION FOR THERMAL GROWTH':'SCHEME_OPTION_FOR_THERMAL_GROWTH', + 'MODEL FOR THE SECONDARY NUCLEATION':'MODEL_FOR_THE_SECONDARY_NUCLEATION', + 'SECONDARY NUCLEATION NMAX PARAMETER':'SECONDARY_NUCLEATION_NMAX_PARAMETER', + 'MODEL FOR THE FLOCCULATION AND BREAKUP':'MODEL_FOR_THE_FLOCCULATION_AND_BREAKUP', + 'FLOCCULATION AFLOC PARAMETER':'FLOCCULATION_AFLOC_PARAMETER', + 'MODEL FOR FRAZIL SEEDING':'MODEL_FOR_FRAZIL_SEEDING', + 'FRAZIL SEEDING RATE':'FRAZIL_SEEDING_RATE', + 'MINIMUM NUMBER OF FRAZIL CRYSTALS':'MINIMUM_NUMBER_OF_FRAZIL_CRYSTALS', + 'ATMOSPHERE-WATER EXCHANGE MODEL':'ATMOSPHERE_WATER_EXCHANGE_MODEL', + 'MODEL FOR ESTIMATION OF TURBULENCE PARAMETERS':'MODEL_FOR_ESTIMATION_OF_TURBULENCE_PARAMETERS', + 'FRAZIL PRECIPITATION':'FRAZIL_PRECIPITATION', +} +DicoEnumCasFrToEnumCasEn = { +'GEOMETRY_FILE_FORMAT':{ + "SERAFIN":"SERAFIN", + "SERAFIND":"SERAFIND", + "MED":"MED", +}, + +'REFERENCE_FILE_FORMAT':{ + "SERAFIN":"SERAFIN", + "SERAFIND":"SERAFIND", + "MED":"MED", +}, + +'RESULTS_FILE_FORMAT':{ + "SERAFIN":"SERAFIN", + "SERAFIND":"SERAFIND", + "MED":"MED", +}, + +'PREVIOUS_ICE_COVER_COMPUTATION_FILE_FORMAT':{ + "SERAFIN":"SERAFIN", + "SERAFIND":"SERAFIND", +}, + +'PREVIOUS_ICE_BLOCKS_COMPUTATION_FILE_FORMAT':{ + "SERAFIN":"SERAFIN", + "SERAFIND":"SERAFIND", +}, + +'INITIAL_CONDITIONS':{ + "SANS COUVERT DE GLACE":"WITHOUT ICE COVER", + "COUVERT DE GLACE CONSTANT":"CONSTANT ICE COVER", + "PARTICULIERES":"SPECIAL", + "SPECIAL":"PARTICULIERES", + "PARTICULAR":"PARTICULAR", +}, + +'VARIABLES_TO_BE_PRINTED':{ + "A EDITER":"TO BE EDITED", +}, + +} diff --git a/Telemac/khione_labelCataToIhm_en.qm b/Telemac/khione_labelCataToIhm_en.qm new file mode 100644 index 0000000000000000000000000000000000000000..9a139d177c452ebe3090c64276a674d80a404430 GIT binary patch literal 14330 zcmb_jeQ+FSd4DCHPG{-vBrI8y9VM1y$5#BIs!rk&V~@vscYD%Cce~fUJ;_p`Ygv+Q zjb+J|CELmHQJ|qTEg`fq3@y+CNeR;o9Xw2imXeSup_#OSA%r$lAb(_18aF`bBq`0b z)9LSd-`jV0Z{L&Tnqgw;PWwLJAHU~$mm^=B?S1z3PhWX%N8ghtKKG3uXBdkOF{Z!F z82fw1j(?W1ecxsc%U@vZrk}Cchd;nr@;_MY+b=NIHN~2r*u~f#zr&J$@KwgPonc!( zh39_FWQFEc#ya;i^R9;(>($utYt4)eKE@U&@O?7J{_uMyW7{k2)dw!&+#&XhPhVkd zM`uGaiSJwQZs`82os8`*H|+T2ZH%>DZ8-clUt}!a*08L-1$lnj@XYpG7~A@t#zQR^ z7=&mXz3)!O_Uvq&`|2Bvb=!?+{_~GP_u0mkyFoYg<;FichjaVyX#C_4<``?AYW&P& zkZa2q8o#lt%vhh@)cqC6*YsS|T{p*|*N2+MU(=!Q;imiNw=>rGc+>qC{}y_jYkH{Z zDxTZZ^jsVC-n1QnhZ}4Ar?(mV^)s>d70`txZyoz7{@xQC{vhnr z`fBWbzrV=XuA5?yFa8K}{Aui|L+^r}jyK@-gk|$+i!{w-1{xa{hs*IhoNV~ zzWD6nyBNFe>+wfF40#9oD z7~A~)mi{MK7#n)6<ioTyv!D19?Ds^=(%df@yZK_vBfVST&lg*snm7qM=Mr1~ zdo#|zk~ny6557N~7=Gpr*!B6u(WX1$$CndF{{eDs*_p_ULa&CUgmd3-!JpR>9~*oG zdj56dn_szuv0L9tJpE(Xq2;5ApAbLxv&5@^345k4B!1qE&)wfmy#3NU;fK#}+WW3f zJm0Ws<|^bJn%nfLXJC)`vDT^N6~xB}TOVIU{HCw9K6w>#_5Wk*D=)(y+h1&bq(wHtOqL{`ub!=a03&^d~XI#ie-=`%)7; zHpnzK%lg?On`YVhat&f6&y}-svG0cOFSyYjBc;XBn~F?Y*~ueq#1Tp zly31cngc(ICh^xLwkWx6)hdovL=p56%ZsF#B;1j)Y~%xZ29(EjMHminVylpK z7LrnqiM$i?leNe~LECg?tcsb_Yy+EJHPf?~z6c5alU;3Jef~QtI9+gGrx! z+07dTMFG3`mxGtj(eKSLt4Stl0{EeD;OD@dlX#seBQ_!@Nv}G=fOcl z<|1e;fbu0!n}t=*;P+Fo3`H<~@?3BZaZYg;ltxss3;2E+XDG?&X-Y17nqrZjroZ}T z7^d(x^@2NLsbmO1+k6* zv3baLTDmU54;$u4)K@_X_#vo8SxD+qZ2M{n2|&cPOgE$13JLbsN&qrcGRTRP?9`lU zBX^4@n``UkO2MfYwo{PB(8slsMI~qhdR)9gJ*n%OAfE2OUc%=M#-p_rS-f*RhznUv`$i$z6c4I@%KeMQCqbGwNE$44cjt{ z%BnriIV|!zOFiE6o~Q=uYV5VqOFT%aYKZFYp@(1(+=m#WTKA~y+44FKe0h^SEJbqOW(6$-2^(jK))fJOw#){^LiLZTqn zRQB9};WjSgkd#s2(Le|0_S=B436|rjH!Xb;%V~}lwetWToCETpN<^Ja6wtNMLsw3p zC|L%OWI(Pc;VuxS2=SUUwMl;lY0VkDL2I^R1liAY2v7E+E=wrr5@ZygDJTicQ&_Gd z7=2XJt!rh+1(uo6@v~r=BZgDSDKHC>C&;x7GK5d4=g~wWl3K(*S~^$+6SG@4b$etI z-L0S@LlMz-S($^!K>oKOo0utS1QJ%Q#b{ntAcRN1pXEYb2w;hR{WmI@I14BT5{*$6 za7K;nn5mZ)*kYLFt9eVamYA~yNa}}%r>cMJhr7uiVi=~t^^tvF9+{e@!3)~C8hvt0 znvEeCqfyk&y9eOE+szBEbq}%x6Mr-`+qquu9Yj`_~nU*wJ*d8gOrS zEknXg6@^m=YRK2^xl)&|D(O)7jLN;chA_cun#w(hD~#l)SZ9@NS=Vy}abXTcehqS} zM2UP#$x89&mlx3_W$Bbc_vCF|pCY=VyrB2-`WKbEgL4Q}7fBy~UZI;-Ni7=aBd7gZ_2Ibd#=XJaF_p?I*H`Ed9oSkLl_ z*`H0?IJV7HawEE8+!*Ai=W*r?7h2>H#Sb+~KHh_(SRr8HB8BN0)s2x+w8gwzM1RB# zpTpE|D&)&BgItaU(liW2O_vrA0=`GrXlp0V4(d|0W#l@^by@)GM-6%8y7{YM?k)8= zi{)38?dB?5Q47LLu1!R&&UWiq^c+k!kCda7stg#Wjj0 zEemIv?&xIBwyHQeDs;DGPOD6^14rqSWE+vJyW#B(oDK*S$g(6qFHpK7s|G-Tz|sN_ zV;a6Gx9Dd`!vMi9!^{={#`wOls+NLqA15p(5yE8i=pfPkL)tJgRbb6FRc8v?RYOMj zmiCZ>G@p>9u{Kx9!PC{1qe8M)PLhw6@?f)JVqX^ZP6vOMqbisw*bx#aCc15^O5;H` z2I;7YcvImF>?xZhey8d60_;rt?y$SJjv1ydcFJO47&ppUOTFIT#R}Y{9xC;dT$B{< zNvYyyz(7KuJdaUB5EoH>hdIeh5Yby&p5jH;$NuXz+P;D|!6%!IHQa-eVL)cEC)@B0 z=AuxYmm)}wwh}9$iAZhN;~7;f4L)RZ8exKq!j^(jc7Ri&CkDeOAjby#O_k#M{f3N9 zV>zYA+6}aB3k9ObL@oy;-a+fP&|X#qGmItZ453L$nlxF|%4KgZirQqD6Sxc;Qe>0V z*Bu^3?YL2d%$}>(#$!WZNVsYahN7}dD1!z@&uHWlG9itWgm`^)(Mv;)Wn0)x^Q}e6 zwz3$rRLCL&CKMH<6|J|!Yi{q_j5Mu|Hh7|DR*?qWQA7zUR*HdZz?#t@YSk(5uij*F zi;6i}Ov%F1-r()YB5nZ)dWe}+RP4wg7%;~He*eW26C*V|z(+zP5AFgo6^y0mGIBIj z6isqORK~DPLL-N?NUzU1JaR-0aa75~yEY+pm(X^_bWb?DX0s((ZueQzWk{xCO=8ZU zl$)z4=fawty;)l|hf^z}y#t}!X$=0W?7Wm?cUX?_G;ZR$#MZU3N+~K1VvkD8t;E48;`d6!FGq!SBKvM3+?wnRXg?ux1R5pW_WgrhOs{r39T^4S7v9Ihql zuB==smvl1+BwdY7Wmg=iibi{;VC|{dy9Cm$3+ymuP;p)>tNJ+M^?aFL&wC4NkqH>h zpIW>Xk9V&^5lnTKmUCp%FkGRGBLjy`dMGRww`XXn?`CvoLdTX{AQ=r2uQYFxS@7lx zyorBh1jjL|DKXh@RzgTnF<#*DM{OwF2dIGhouHFEP$=MzwAuqK)lJ?wsGi~LC*Q;3 zbpzr=;6r#{K!_P0i~_QFX-O@FE=|tjNwJi|B2cQcuQWPY<^h2lTN|SR!UKgk%U?&K zDg`{Ljp^9KWXGcUNjld`w^q6Dl-$+|zeAuZ`f3%1LT;fGX}ta$9yj4?ieu9az2q@i zmz#2(DlOL&Gy5E3}oL`L;bu6@Z12WY$P#?45Jpa8Tf$M5x zBW>&aWg|c~brkGfi%cE4w}gq-74bNy?cGKY0t>u|h2QC}QCx`opp_akg*`n4Z2QDBcjQPH8eF`TIVhSF5r7v93)fZIsxB{{uqXuB)zzM4C0R6W!-UL^^xF+OP#U`HS4}q)CX~B)FmZ_ zAgc9fx@;9R8?@`KLkB>H05UZ;@dicXd4I<91?&?Tng3J zs8rd}fpDO_xpegLB>5bE< ze@S3LhDgxJ6eW@(BJfx}8hy;+N#dt~YV)54lH&niZ}~qEA>#$V{|Zz%b-O&0G(_#Z^M zpfP;i{4XHbQ0Als`s#5ln-=~5Bx>FyZv{j0CYqci(d-zGDoDHVEM5MDwmR}utG}m- zvgu;uuoBfSn$N4n+dqoe4h+08qC~$(`BBQQX^vFGQ#MukwQk(}A#3|M-u2Zoh3Z^g zd*`O;p@T}!beAUrG`MfYd@t4M@i{pbf=}#Ob;UIpnT4tbz4uEm4~O%r6`OSF80sS%c+zgTlaeEa)8DG z7*XI^|DGbchVa_%Afmv#f}rtG-0ad{sWXawPwf_z3cFa<`3ZYONQiMU{2D0l$u1!& z?0|3~oVBb1wm@E%IWCrUiiAG#D^X}8f)A}P_F~#HL?(UUz?cKY}-Mfz#+lQwRe$%H0^32B*j(wPvFW@uqrhEiOZLI#omNi+Sv zbM`)V?^#JEbQmn{-FyD`|DW&w&(W@L9qIqaS3h^=hie8NyZ(XiJew7w{U#yI=YJ0ryUqb*Cm_5$AfeoHEa@4L>nto*BWLR@iY%bNQy6=2eG&A0zTh{WNR8RHj_ z>w%UhS6_nl$69xEp2G8<*3mnz6k^jv>*P0H7oz`I>kYsB6y*AN>+BxT&-_j6pPt~l zH(T%j$)pg=KGpj9M<8F{pS6BxeMN}XtJ_w79dfq)y6viq+o9iqwy~E@tbe=huBp{R zv_9W<*Xh55KF_q>*LD`~jkG=bYO4^xe?i+1yVnb`whA|d+uuQKG-J21&_3M z|MV>(-uqzt(pk`lh1c$VMTqUMwD0^V?A2|z-~RDwAvXMP`!}cm4e~tG{`igqLabQP zvF8lry7bbH>(f8RvI8B*dO>$XU&k-s=V09(9lv@W>o-;st)F}va(+3{{$Ngsb>B@S zUq39w(%Ta0@lGLj{y34@bWVsZk0yq0c>?}>Ut;%z(7Wa8#F1;R65{el6A#}Bxi{aQ zc=& z7bbT;`8w?VP;z(Ml|pRWklg)GkgqS9%#K3OmOGNxZ7DpTO}cknCq(CmlJ{(V2>O2_ z`Ms~dM~KTFOa9+eC~fO`POq+3vp3; z$;JcA@t(Wn@LA}wI~vxb=TxqUC4WF*EgpT|I2#29y<%V>sNKX z@I36b?xL>OzlQaz?CzbNPl4{5?rT2$197xa5OmAU>oJkO*uci#?w^`tVN|1IL{bZWx~ z+p+#k%Df5kbv%$7ehu<&DW=B11-tZaOg++W!OlNR{b&MwlRr(pH3UAJ-%j_hM_g_C zhjjTx6Y=q4dg@E(pr@Ojb#jpVi|LQ7gg<)v(toshH{^Y9`eXn72JG@e`d{CG9lOfu zmzQB(&*{vn$MJJhB6H}jU%);;&wOChDcJ4h%%|@KzstKb54XZDTmLw7cHn8`{YNv8 z4gUfBu`cuS+B2~GMN3=Pz%CbkcRo0%ZUrIO%%mJD0E6PKMggHi#ez|CH@dULxGNq4R|j~uN(BB zpk1-ti8$T0;C@^j0)-=>8Jg`Fo*op3@jNtH+9+hre2E%aIWtb{{h&21xKhb8C@CD4 za?VM5vykj0-to;x9)og)^ptCK(yIT(wv&7_OOb#0#2b_JWx#Z`;TB7k@~G*U-Z&UKp1ChK3Q0__SjwA)xWYR` z9ts`Bf07dTQ9<(X)g;$h@Hgifh=e=ZzP=?R&i|Jspz~=_mR< zN_<8pmtsxj>eX15Ejh>_`UhObOilQ1tVw?ai|eg(6Br%GQ-(5i3d5~8TdLZ5!?BQ~ z5I%3|4U-qcSW1UaNjHQsd{`PR%94eFE@{rRzs7VTWLfcst%4@pl}?k={}h1i=@;K{ zhrx;gju;I5(U&s{R@RX|1_yI^*veV(dfXMahyvEm$OxXpPg0%3zf_cbNP7@bd=gLj zt%`odlPSkPCg|+AH_FteIV^lhQDnVym2eS&C$OW0s>Lb7N2g^J zltxBS3IZ>wBCDy|>qQ0R4ok8mPofNn<1$BRjVR$|KH-X)W0+|O_Q(+Sm)E;BDVJOJ zNZgMqO6rzHls^XLryvu(7e>C42IRbw?PU!|BaN$#`a$VbI+NvqZuTwhhe2r9#_9}% z1dd*G0QrCM;CrN9l+CW}e|sWb!lC}dL^$UtOvs)BhG-|@Hl^4wT!wnUOf24pm$ z5R6$Px7Txwe6upT?;S`y3#+o^o~jjkrnp~Q=4v5!G_c*y1terCt0Kt8OmEaQT+ek3 zyMo%UsR8@nC1EFleh$i7p>iL4Rv_-x3y5ou8RZfS)*|Gcd6(qne!$w~m+Bj3ShK?3 zi2qe!s~tAXnQIo%qwJVDt8CTE)TF8dd#S?}=q+Ub66rlBkL?7|#(d#LMHiK{0}@%)od2op0DE z%`TqU!VSpw_+$qm;9wIJaXm=aPy%FQgdBz)6r%89aCAqk1DAMP?T1853eX%8H^ZX` zVdcg$Gn8`xH&9!=F|$z00XoZKlb=A#0JIhYp12jRdzXc5hPpQBMFhqpo}5p@8Cbs= z7$A6N+WoGkZ6@`$KxzfCBcMTAcoE`f5LV0*=45o&Y|k665%5^#qW=(KFp^j=LPA}6OQH$G(R5y$krhn6H}SJjvPUepn%4lXod`o#iBll2YKp>-hwzz*kWCmX58q*z6o>UI zP1|%vCa|Rz3=|V&f>Y6!i~Y##8>RB9KlS0NO3--=mW(sPTmnymGNv;v(3p^e=CxI{ z=mpfY0C2LDxuaHYuWeQ|5NTMHL6)Rhxw(l`po0>CoCLdi^vqg8Xu@ymn$^Jc1H-5U zIrgHkf@koPS2i5X5YQ{e!{d?|LOTlLEZY<*Y|&CE#KZtix{MUaZ~^^zJdh=^qk zO-p(mDzCy*s+%XeimE@U_0$Ha%z#kkRON2iKoFrf3NWMu@N&)sQnpY*1FH-XdIT^G zmWmr@rxfw#ASxN)^{f>X;h^E{tRfPN6Zp(+yMm8&H;9TA`@H9 zc*3xX4<*>vHsjJ;$EAkO;x_Gq!gO%7P45^fp#P4)o09LI#B?uen#4$)6(c5c@6hl4wI#x!E7|rcf}2DOL^)# z3904pD$6C!WKlEDxFGC2=0zfbv6ql^lLn+9EI5oTp7}YGYO< zSJIy%?SQ3t;KEUbDsBpd$TEg!YP*QdAOmH30IG@XWo1E?Lo~%Lu}AJtQy>=Y@kyMD zzB8CHP%y@2-?=!r;RYgv;Isk3KpgH_bNH9~`r<|FgAX_w_wiK}MrmIw2fkEsV`LzS z-zlMo3@q7MuqrN4U3|s%*lw%ji0-hISVy(5Ms?wxRSzOmTczS7gb*q!Vju#273MBM zYb!BCa}Y65w>vA97~--O4a|}%8kLIQ$;NGym6?8CAq4M|O)#VjSPc}7eO3_~_|Ahb z=Q-y|ppu&+A1rSxnwovR3vUsb0zC$A_OtOUIVBv4$VpY%Ddo@z>yXwcW^Dww{^2#j z3v1X3#OVoWqRbZU{uXM%))Z0diq&G|l)IrRi(B~vP$GI%8%<*Z0@e5X^~oPvs7;4^ zE|H%P(A85Vw>r!^1YMYKa-h6DJGp}h2BKQ|R$#8xp=dnm z%T`MhnEgxyQ_#4C^BJh=Oa&pwXy)*34%NJN8W~7&S-lkXa~B(@e~xMFt(N1$xaVmu zdPrRv@iRl2XYf3&a|z7t5|9*$Qqg1LDGr&La#hLneeo9Jq%4I+=1mn?_PL z&J)+x3xKmqzzhr*AwsTzvn1_w?m$EC`?=2DM+FCWs%S1!IAT~{l3+eXM~DnM-4J7A zc-tjcK&{1@J&%hk)k@j4^XOMg*4pQ6K9e@hn8uTVzDc1!1?NUMy+Xy7Mb9Yr5kmj&u}G zGms%#GpBIwq9%~h@kRoTvKD!6mcuj7L;Wg3Xs3cj6=QX7%?J+tvYg&16mV&vwjY&r z$Jf1}ZOB6+3tMj$UOYUZjLXi>(NnFBC3L?Kv|_7_>WN296aZj&J6 zEa7GuWlmf0Bdrb`Y za(m;YVra3l1==nT_{|snyFiy7kM;rey45f!v|>-ojf9whE)83ai*Nuef&Zc|WbHl= zo=O(gFE?I3>5Fpp@0e)gdYR;?Ivsh~5m+f%rrg@Hcp(-w84U-^(+kXh$3NTV1w7d<1>Dzz`?C*;WWEN!0**PC)O^$#c`>+EJDbj zKC3fquDKcC`U7jGrP|QseV!oIHajMd^>D>SAuO|iYcH}>7+XTB z#ZJb9HFbDNVN}RQGCg3`iOtEy_7+cs9!Z78Fu1%`w~F_$;;S~s(ucgMDBYo_mYV-o z*X~6{{=#gQN7*#>`7-S1Y-0SWTDb2dD;UmUMyEME-;Zk~>>KLOwmI_R?MSweaY)Pd z_9Rvi^wRyrH5x1y*nF^(8#Rl#gg1AWM z-vX@Dfqu`%%pruqak+?@cqhkzXDwj|Dt1t2Su=+$(J6(&8DrE-oceOF9>5HzB-=Y&j z(_yMqi+em2V8d1%DAD0st}c|9A(RJEK=P>2E(=MpBIT9_v*sXf zhv2VZ;!Jw+Iy-ay0JJL{bn2FlAt1Q-a@bVcP6NJOxNl|QQk}Mc+Ji$TZgsq1#AZTa zj_4RkJ)s|Y>4`UbRh4gkfWLYSf9+vp3$@`<<8i(Q{S0ZPV6EhETOl$zK?;=W3wgLD z#I-uo(A$-_O}SU;CZ%0C4zsdWL7SrL*js;|u(+e|@DG-vNAT-v6Q1)sgx{mx_0)wW zzc3=mVKm)fN-xP^b4i-*m*?{*Y?5iQGc;tf)tPV7voUeNXeB-1q?*}ymURxw>7on(Eq_veH%asUqcqU%3lJZt-6e6_iFT!jDe&r4G3S73pt@J>I V3&t&X6w}aVSI|F(`rg{s@_*Wnh<*S7 literal 0 HcmV?d00001 diff --git a/Telemac/postel3d_cata_auto.py b/Telemac/postel3d_cata_auto.py index 33b523ea..f3041915 100644 --- a/Telemac/postel3d_cata_auto.py +++ b/Telemac/postel3d_cata_auto.py @@ -44,556 +44,474 @@ JdC = JDC_CATA (code = 'POSTEL3D', # Catalog entry for the MAP function : c_pre_interfaceBody_mesh # ======================================================================= -VERSION_CATALOGUE="TRUNK_20180306" +VERSION_CATALOGUE="TRUNK_20210323" # ----------------------------------------------------------------------- -INPUT_OUTPUT__GRAPHICS_AND_LISTING = PROC(nom= "INPUT_OUTPUT__GRAPHICS_AND_LISTING",op = None, +COMPUTATION_ENVIRONMENT = PROC(nom= "COMPUTATION_ENVIRONMENT",op = None, # ----------------------------------------------------------------------- # ----------------------------------- - NUMBER_OF_HORIZONTAL_CROSS_SECTIONS = SIMP(statut ='f', + INPUT = FACT(statut='o', +# ----------------------------------- +# ----------------------------------- + DATA = FACT(statut='o', +# ----------------------------------- +# ----------------------------------- + RD_RESULT_FILE_FORMAT = SIMP(statut ='o', +# ----------------------------------- + typ = 'TXM', + into = ['SERAFIN','SERAFIND','MED'], + defaut = 'SERAFIN', + fr = """Format du fichier de resultats. +Les valeurs possibles sont : +\begin{itemize} +\item SERAFIN : format standard simple precision pour \tel ; +\item SERAFIND: format standard double precision pour \tel ; +\item MED : format MED base sur HDF5. +\end{itemize}""", + ang = """Results file format. Possible values are: +\begin{itemize} +\item SERAFIN : classical single precision format in \tel, +\item SERAFIND: classical double precision format in \tel, +\item MED : MED format based on HDF5. +\end{itemize}""", + ), +# ----------------------------------- + RD_RESULT_FILE = SIMP(statut ='o', +# ----------------------------------- + typ = ('Fichier','All Files (*)'), + defaut = '', + fr = """Nom du fichier des resultats 3D obtenu par un calcul avec +\telemac{3D}.""", + ang = """Name of the 3D result file generated by a \telemac{3D} run.""", + ), +# ----------------------------------- + GEOMETRY_FILE_FORMAT = SIMP(statut ='o', +# ----------------------------------- + typ = 'TXM', + into = ['SERAFIN','SERAFIND','MED'], + defaut = 'SERAFIN', + fr = """Format du fichier de geometrie. +Les valeurs possibles sont : +\begin{itemize} +\item SERAFIN : format standard simple precision pour \tel ; +\item SERAFIND: format standard double precision pour \tel ; +\item MED : format MED base sur HDF5. +\end{itemize}""", + ang = """Geometry file format. +Possible values are: +\begin{itemize} +\item SERAFIN : classical single precision format in \tel, +\item SERAFIND: classical double precision format in \tel, +\item MED : MED format based on HDF5. +\end{itemize}""", + ), +# ----------------------------------- + GEOMETRY_FILE = SIMP(statut ='o', +# ----------------------------------- + typ = ('Fichier','All Files (*)'), + defaut = '', + fr = """Nom du fichier de geometrie.""", + ang = """Name of the geometry file.""", + ), +# ----------------------------------- + FORTRAN_FILE = SIMP(statut ='f', +# ----------------------------------- + typ = ('Fichier','All Files (*)'), + defaut = '', + fr = """Nom du fichier FORTRAN a soumettre.\\ +Il ne sert a priori qu''a dimensionner les tableaux utilises par +\postel, mais peut contenir des sous-programmes modifies ou propres +a l''utilisateur.""", + ang = """Name of FORTRAN file to be submitted.\\ +It is supposed to be used only to dimension the array used by \postel +but can also contain subroutines modified by the user.""", + ), + ), + ), +# ----------------------------------- + GLOBAL = FACT(statut='o', +# ----------------------------------- +# ----------------------------------- + PARALLEL_PROCESSORS = SIMP(statut ='f', +# ----------------------------------- + typ = 'I', + defaut = 0, + fr = """Nombre de processeurs pour la decomposition en parallele: +\begin{itemize} +\item 0 : 1 machine, compilation sans bibliotheque de parallelisme ; +\item 1 : 1 machine, compilation avec bibliotheque de parallelisme ; +\item 2 : 2 processeurs ou machines en parallele etc... +\end{itemize}""", + ang = """Number of processors for domain partition. +\begin{itemize} +\item 0: 1 machine, compiling without parallel library, +\item 1: 1 machine, compiling with a parallel library, +\item 2: 2 processors or machines in parallel etc... +\end{itemize}""", + ), + ), +) +# ----------------------------------------------------------------------- +GENERAL = PROC(nom= "GENERAL",op = None, +# ----------------------------------------------------------------------- +# ----------------------------------- + NUMBER_OF_FIRST_RECORD_FOR_CROSS_SECTIONS = SIMP(statut ='o', # ----------------------------------- typ = 'I', - defaut = [0], - fr = """Permet de definir simultanement plusieurs coupes horizontales. -La valeur maximale autorisee est 9.""", - ang = """Allow multiple horizontal sections. The maximum value is 9""", + defaut = 1, + fr = """Seuls les enregistrements au-dela de ce numero seront traites +pour les coupes.""", + ang = """Only records after that time will be in the cross sections.""", ), # ----------------------------------- - NUMBER_OF_VERTICAL_CROSS_SECTIONS = SIMP(statut ='f', + PRINTOUT_PERIOD_FOR_CROSS_SECTIONS = SIMP(statut ='o', # ----------------------------------- typ = 'I', - defaut = [0], - fr = """Permet de definir simultanement plusieurs coupes verticales. + defaut = 1, + fr = """Periode en nombre d''enregistrements entre 2 coupes.""", + ang = """Period in number of records between two cross sections.""", + ), +) +# ----------------------------------------------------------------------- +HORIZONTAL_CROSS_SECTION = PROC(nom= "HORIZONTAL_CROSS_SECTION",op = None, +# ----------------------------------------------------------------------- +# ----------------------------------- + NUMBER_OF_HORIZONTAL_CROSS_SECTIONS = SIMP(statut ='o', +# ----------------------------------- + typ = 'I', + defaut = 0, + fr = """Permet de definir simultanement plusieurs coupes horizontales. La valeur maximale autorisee est 9.""", - ang = """Allow multiple vertical sections. The maximum value is 9""", + ang = """Allow multiple horizontal sections. The maximum value is 9.""", ), # ----------------------------------- - b_NUMBER_OF_VERTICAL_CROSS_SECTIONSG = BLOC(condition="NUMBER_OF_VERTICAL_CROSS_SECTIONS == 1", + b_NUMBER_OF_HORIZONTAL_CROSS_SECTIONSG = BLOC(condition="NUMBER_OF_HORIZONTAL_CROSS_SECTIONS > 0", # ----------------------------------- # ----------------------------------- - ABSCISSAE_OF_THE_VERTICES_OF_VERTICAL_CROSS_SECTION_1 = SIMP(statut ='f', + HORIZONTAL_CROSS_SECTION_FILE_FORMAT = SIMP(statut ='o', # ----------------------------------- - typ = 'R', min=10, max=10, - fr = """Tout est dans le titre""", - ang = """It is all said in the title""", + typ = 'TXM', + into = ['SERAFIN','SERAFIND','MED'], + defaut = 'SERAFIN', + fr = """Format du fichier de resultats. +Les valeurs possibles sont : +\begin{itemize} +\item SERAFIN : format standard simple precision pour \tel ; +\item SERAFIND: format standard double precision pour \tel ; +\item MED : format MED base sur HDF5. +\end{itemize}""", + ang = """Results file format. Possible values are: +\begin{itemize} +\item SERAFIN : classical single precision format in \tel, +\item SERAFIND: classical double precision format in \tel, +\item MED : MED format based on HDF5. +\end{itemize}""", ), # ----------------------------------- - ORDINATES_OF_THE_VERTICES_OF_VERTICAL_CROSS_SECTION_1 = SIMP(statut ='f', + HORIZONTAL_CROSS_SECTION_FILE = SIMP(statut ='o', # ----------------------------------- - typ = 'R', min=10, max=10, - fr = """Tout est dans le titre""", - ang = """It is all said in the title""", + typ = ('Fichier','All Files (*)','Sauvegarde'), + defaut = '', + fr = """Nom generique des fichiers des coupes horizontales. +Le fichier contenant la coupe $i$ aura pour nom ce nom generique suivi +de l''extension .i.""", + ang = """Generic name for the horizontal cross sections file. +The file containing the cross section $i$ name will be the generic +followed by the extension .i.""", ), - ), -# ----------------------------------- - b_NUMBER_OF_VERTICAL_CROSS_SECTIONSH = BLOC(condition="NUMBER_OF_VERTICAL_CROSS_SECTIONS == 2", -# ----------------------------------- # ----------------------------------- - ABSCISSAE_OF_THE_VERTICES_OF_VERTICAL_CROSS_SECTION_2 = SIMP(statut ='f', + REFERENCE_LEVEL_FOR_EACH_HORIZONTAL_CROSS_SECTION = SIMP(statut ='o', # ----------------------------------- - typ = 'R', min=10, max=10, - fr = """Tout est dans le titre""", - ang = """It is all said in the title""", + typ = 'I', min=0, max='**', + defaut = [0,1,2,3,4,5,6,7,8], + fr = """Chaque coupe horizontale sera parallele a son plan de reference. +Ainsi il est possible de faire des coupes par exemple : +\begin{itemize} +\item a telle distance au-dessus du fond ; +\item a telle distance sous la surface ; +\item suivant un plan intermediaire\ldots +\end{itemize} +Le plan 0 correspond au plan parfaitement horizontal a la cote 0.""", + ang = """Each horizontal cross section will be parallel to its reference +plane. It is then possible to make cross sections which are: +\begin{itemize} +\item at a chosen distance above the bottom, +\item at a chosen distance below the surface, +\item referenced to an inbetween plane\ldots +\end{itemize} +Plane 0 corresponds to the plane perfecly horizontal to the height 0.""", ), # ----------------------------------- - ORDINATES_OF_THE_VERTICES_OF_VERTICAL_CROSS_SECTION_2 = SIMP(statut ='f', + ELEVATION_FROM_REFERENCE_LEVEL = SIMP(statut ='o', # ----------------------------------- - typ = 'R', min=10, max=10, - fr = """Tout est dans le titre""", - ang = """It is all said in the title""", + typ = 'R', min=0, max='**', + defaut = [0.,0.,0.,0.,0.,0.,0.,0.,0.], + fr = """Decalage entre la coupe et son plan de reference, ceci pour +chaque coupe horizontale.""", + ang = """Gap between the cross sections and its reference plane, this +must be defined for cross section.""", ), ), +) +# ----------------------------------------------------------------------- +VERTICAL_CROSS_SECTION = PROC(nom= "VERTICAL_CROSS_SECTION",op = None, +# ----------------------------------------------------------------------- # ----------------------------------- - b_NUMBER_OF_VERTICAL_CROSS_SECTIONSI = BLOC(condition="NUMBER_OF_VERTICAL_CROSS_SECTIONS == 3", + NUMBER_OF_VERTICAL_CROSS_SECTIONS = SIMP(statut ='o', # ----------------------------------- -# ----------------------------------- - ABSCISSAE_OF_THE_VERTICES_OF_VERTICAL_CROSS_SECTION_3 = SIMP(statut ='f', -# ----------------------------------- - typ = 'R', min=10, max=10, - fr = """Tout est dans le titre""", - ang = """It is all said in the title""", - ), -# ----------------------------------- - ORDINATES_OF_THE_VERTICES_OF_VERTICAL_CROSS_SECTION_3 = SIMP(statut ='f', -# ----------------------------------- - typ = 'R', min=10, max=10, - fr = """Tout est dans le titre""", - ang = """It is all said in the title""", - ), + typ = 'I', + defaut = 0, + fr = """Permet de definir simultanement plusieurs coupes verticales. +La valeur maximale autorisee est 9.""", + ang = """Allow multiple vertical sections. The maximum value is 9.""", ), # ----------------------------------- - b_NUMBER_OF_VERTICAL_CROSS_SECTIONSJ = BLOC(condition="NUMBER_OF_VERTICAL_CROSS_SECTIONS == 4", + b_NUMBER_OF_VERTICAL_CROSS_SECTIONSG = BLOC(condition="NUMBER_OF_VERTICAL_CROSS_SECTIONS > 0", # ----------------------------------- # ----------------------------------- - ABSCISSAE_OF_THE_VERTICES_OF_VERTICAL_CROSS_SECTION_4 = SIMP(statut ='f', + VERTICAL_CROSS_SECTION_FILE_FORMAT = SIMP(statut ='o', # ----------------------------------- - typ = 'R', min=10, max=10, - fr = """Tout est dans le titre""", - ang = """It is all said in the title""", + typ = 'TXM', + into = ['SERAFIN','SERAFIND','MED'], + defaut = 'SERAFIN', + fr = """Format du fichier de resultats. +Les valeurs possibles sont : +\begin{itemize} +\item SERAFIN : format standard simple precision pour \tel ; +\item SERAFIND: format standard double precision pour \tel ; +\item MED : format MED base sur HDF5. +\end{itemize}""", + ang = """Results file format. Possible values are: +\begin{itemize} +\item SERAFIN : classical single precision format in \tel, +\item SERAFIND: classical double precision format in \tel, +\item MED : MED format based on HDF5. +\end{itemize}""", ), # ----------------------------------- - ORDINATES_OF_THE_VERTICES_OF_VERTICAL_CROSS_SECTION_4 = SIMP(statut ='f', + VERTICAL_CROSS_SECTION_FILE = SIMP(statut ='o', # ----------------------------------- - typ = 'R', min=10, max=10, - fr = """Tout est dans le titre""", - ang = """It is all said in the title""", + typ = ('Fichier','All Files (*)','Sauvegarde'), + defaut = '', + fr = """Nom generique des fichiers des coupes verticales. +Le fichier contenant la coupe $i$ au $j$e pas de temps enregistre aura +pour nom ce nom generique suivi de l extension .i.j.""", + ang = """Generic name for the vertical cross sections file. The file +containing the cross section $i$ for the $j$ time step name will be the +generic followed by the extension .i.j.""", ), - ), -# ----------------------------------- - b_NUMBER_OF_VERTICAL_CROSS_SECTIONSK = BLOC(condition="NUMBER_OF_VERTICAL_CROSS_SECTIONS == 5", -# ----------------------------------- # ----------------------------------- - ABSCISSAE_OF_THE_VERTICES_OF_VERTICAL_CROSS_SECTION_5 = SIMP(statut ='f', + NUMBER_OF_NODES_FOR_VERTICAL_CROSS_SECTION_DISCRETIZATION = SIMP(statut ='o', # ----------------------------------- - typ = 'R', min=10, max=10, - fr = """Tout est dans le titre""", - ang = """It is all said in the title""", + typ = 'I', + defaut = 120, + fr = """Il s''agit du nombre de points suivant l''horizontale.""", + ang = """It is the number of points along the horizontal.""", ), # ----------------------------------- - ORDINATES_OF_THE_VERTICES_OF_VERTICAL_CROSS_SECTION_5 = SIMP(statut ='f', + DISTORSION_BETWEEN_VERTICAL_AND_HORIZONTAL = SIMP(statut ='o', # ----------------------------------- - typ = 'R', min=10, max=10, - fr = """Tout est dans le titre""", - ang = """It is all said in the title""", + typ = 'R', min=0, max='**', + defaut = [1.,1.,1.,1.,1.,1.,1.,1.,1.], + fr = """Rapport entre echelles verticale et horizontale pour chaque +coupe verticale.""", + ang = """Ratio between vertical and horizontal scales for each vertical +cross section.""", ), - ), -# ----------------------------------- - b_NUMBER_OF_VERTICAL_CROSS_SECTIONSL = BLOC(condition="NUMBER_OF_VERTICAL_CROSS_SECTIONS == 6", -# ----------------------------------- # ----------------------------------- - ABSCISSAE_OF_THE_VERTICES_OF_VERTICAL_CROSS_SECTION_6 = SIMP(statut ='f', + ABSCISSAE_OF_THE_VERTICES_OF_VERTICAL_CROSS_SECTION_1 = SIMP(statut ='o', # ----------------------------------- - typ = 'R', min=10, max=10, - fr = """Tout est dans le titre""", - ang = """It is all said in the title""", + typ = 'R', min=0, max='**', + fr = """Tout est dans le titre.""", + ang = """It is all said in the title.""", ), # ----------------------------------- - ORDINATES_OF_THE_VERTICES_OF_VERTICAL_CROSS_SECTION_6 = SIMP(statut ='f', + ORDINATES_OF_THE_VERTICES_OF_VERTICAL_CROSS_SECTION_1 = SIMP(statut ='o', # ----------------------------------- - typ = 'R', min=10, max=10, - fr = """Tout est dans le titre""", - ang = """It is all said in the title""", + typ = 'R', min=0, max='**', + fr = """Tout est dans le titre.""", + ang = """It is all said in the title.""", ), ), # ----------------------------------- - b_NUMBER_OF_VERTICAL_CROSS_SECTIONSM = BLOC(condition="NUMBER_OF_VERTICAL_CROSS_SECTIONS == 7", + b_NUMBER_OF_VERTICAL_CROSS_SECTIONSH = BLOC(condition="NUMBER_OF_VERTICAL_CROSS_SECTIONS > 1", # ----------------------------------- # ----------------------------------- - ABSCISSAE_OF_THE_VERTICES_OF_VERTICAL_CROSS_SECTION_7 = SIMP(statut ='f', + ABSCISSAE_OF_THE_VERTICES_OF_VERTICAL_CROSS_SECTION_2 = SIMP(statut ='o', # ----------------------------------- - typ = 'R', min=10, max=10, - fr = """Tout est dans le titre""", - ang = """It is all said in the title""", + typ = 'R', min=0, max='**', + fr = """Tout est dans le titre.""", + ang = """It is all said in the title.""", ), # ----------------------------------- - ORDINATES_OF_THE_VERTICES_OF_VERTICAL_CROSS_SECTION_7 = SIMP(statut ='f', + ORDINATES_OF_THE_VERTICES_OF_VERTICAL_CROSS_SECTION_2 = SIMP(statut ='o', # ----------------------------------- - typ = 'R', min=10, max=10, - fr = """Tout est dans le titre""", - ang = """It is all said in the title""", + typ = 'R', min=0, max='**', + fr = """Tout est dans le titre.""", + ang = """It is all said in the title.""", ), ), # ----------------------------------- - b_NUMBER_OF_VERTICAL_CROSS_SECTIONSN = BLOC(condition="NUMBER_OF_VERTICAL_CROSS_SECTIONS == 8", + b_NUMBER_OF_VERTICAL_CROSS_SECTIONSI = BLOC(condition="NUMBER_OF_VERTICAL_CROSS_SECTIONS > 2", # ----------------------------------- # ----------------------------------- - ABSCISSAE_OF_THE_VERTICES_OF_VERTICAL_CROSS_SECTION_8 = SIMP(statut ='f', + ABSCISSAE_OF_THE_VERTICES_OF_VERTICAL_CROSS_SECTION_3 = SIMP(statut ='o', # ----------------------------------- - typ = 'R', min=10, max=10, - fr = """Tout est dans le titre""", - ang = """It is all said in the title""", + typ = 'R', min=0, max='**', + fr = """Tout est dans le titre.""", + ang = """It is all said in the title.""", ), # ----------------------------------- - ORDINATES_OF_THE_VERTICES_OF_VERTICAL_CROSS_SECTION_8 = SIMP(statut ='f', + ORDINATES_OF_THE_VERTICES_OF_VERTICAL_CROSS_SECTION_3 = SIMP(statut ='o', # ----------------------------------- - typ = 'R', min=10, max=10, - fr = """Tout est dans le titre""", - ang = """It is all said in the title""", + typ = 'R', min=0, max='**', + fr = """Tout est dans le titre.""", + ang = """It is all said in the title.""", ), ), # ----------------------------------- - b_NUMBER_OF_VERTICAL_CROSS_SECTIONSO = BLOC(condition="NUMBER_OF_VERTICAL_CROSS_SECTIONS == 9", + b_NUMBER_OF_VERTICAL_CROSS_SECTIONSJ = BLOC(condition="NUMBER_OF_VERTICAL_CROSS_SECTIONS > 3", # ----------------------------------- # ----------------------------------- - ABSCISSAE_OF_THE_VERTICES_OF_VERTICAL_CROSS_SECTION_9 = SIMP(statut ='f', + ABSCISSAE_OF_THE_VERTICES_OF_VERTICAL_CROSS_SECTION_4 = SIMP(statut ='o', # ----------------------------------- - typ = 'R', min=10, max=10, - fr = """Tout est dans le titre""", - ang = """It is all said in the title""", + typ = 'R', min=0, max='**', + fr = """Tout est dans le titre.""", + ang = """It is all said in the title.""", ), # ----------------------------------- - ORDINATES_OF_THE_VERTICES_OF_VERTICAL_CROSS_SECTION_9 = SIMP(statut ='f', + ORDINATES_OF_THE_VERTICES_OF_VERTICAL_CROSS_SECTION_4 = SIMP(statut ='o', # ----------------------------------- - typ = 'R', min=10, max=10, - fr = """Tout est dans le titre""", - ang = """It is all said in the title""", + typ = 'R', min=0, max='**', + fr = """Tout est dans le titre.""", + ang = """It is all said in the title.""", ), ), # ----------------------------------- - NUMBER_OF_FIRST_RECORD_FOR_CROSS_SECTIONS = SIMP(statut ='f', + b_NUMBER_OF_VERTICAL_CROSS_SECTIONSK = BLOC(condition="NUMBER_OF_VERTICAL_CROSS_SECTIONS > 4", # ----------------------------------- - typ = 'I', - defaut = [1], - fr = """Seuls les enregistrements au-dela de ce numero seront traites -pour les coupes.""", - ang = """Only records after that time will be in the cross sections""", - ), -# ----------------------------------- - PRINTOUT_PERIOD_FOR_CROSS_SECTIONS = SIMP(statut ='f', -# ----------------------------------- - typ = 'I', - defaut = [1], - fr = """Periode en nombre d''enregistrements entre 2 coupes.""", - ang = """Period in number of records between two cross sections""", - ), -# ----------------------------------- - REFERENCE_LEVEL_FOR_EACH_HORIZONTAL_CROSS_SECTION = SIMP(statut ='f', -# ----------------------------------- - typ = 'I', min= 9, max= 9, - defaut = [0,1,2,3,4,5,6,7,8], - fr = """Chaque coupe horizontale sera parallele a son plan de reference. -Ainsi il est possible de faire des coupes par exemple : -\begin{itemize} -\item a telle distance au-dessus du fond, -\item a telle distance sous la surface, -\item suivant un plan intermediaire \ldots -\end{itemize} -Le plan 0 correspond au plan parfaitement horizontal a la cote 0.""", - ang = """Each horizontal cross section will be parallel to its reference -plane. It is then possible to make cross section which are: -\begin{itemize} -\item at a chosen distance above the bottom, -\item at a chosen distance below the surface, -\item referenced to an inbetween plane \ldots -\end{itemize} -Plane 0 correspond to the plane perfecly horizontal to the heigh 0.""", - ), -# ----------------------------------- - NUMBER_OF_NODES_FOR_VERTICAL_CROSS_SECTION_DISCRETIZATION = SIMP(statut ='f', -# ----------------------------------- - typ = 'I', - defaut = [120], - fr = """Il s''agit du nombre de points suivant l''horizontale.""", - ang = """It is the number of points along the horizontal""", - ), -) -# ----------------------------------------------------------------------- -GRAPHIC = PROC(nom= "GRAPHIC",op = None, -# ----------------------------------------------------------------------- -# ----------------------------------- - ELEVATION_FROM_REFERENCE_LEVEL = SIMP(statut ='f', -# ----------------------------------- - typ = 'R', min= 9, max= 9, - defaut = [0.,0.,0.,0.,0.,0.,0.,0.,0.], - fr = """Decalage entre la coupe et son plan de reference, ceci pour -chaque coupe horizontale.""", - ang = """Gap between the cross sections and its reference plane, this -must be defined for cross section""", - ), -# ----------------------------------- - DISTORSION_BETWEEN_VERTICAL_AND_HORIZONTAL = SIMP(statut ='f', -# ----------------------------------- - typ = 'R', min= 9, max= 9, - defaut = [1.,1.,1.,1.,1.,1.,1.,1.,1.], - fr = """Rapport entre echelles verticale et horizontale pour chaque -coupe verticale.""", - ang = """Ratio between vertical and horizontal scale for each vertical -cross section""", - ), -) -# ----------------------------------------------------------------------- -INPUT_OUTPUT__FILES = PROC(nom= "INPUT_OUTPUT__FILES",op = None, -# ----------------------------------------------------------------------- -# ----------------------------------- - RD_RESULT_FILE_FORMAT = SIMP(statut ='f', -# ----------------------------------- - typ = 'TXM', - into = ['SERAFIN','SERAFIND','MED'], - defaut = 'SERAFIN?', - fr = """Format du fichier de resultats. -Les valeurs possibles sont : -\begin{itemize} -\item SERAFIN : format standard simple precision pour Telemac; -\item SERAFIND: format standard double precision pour Telemac; -\item MED : format MED base sur HDF5 -\end{itemize}""", - ang = """Results file format. Possible values are: -\begin{itemize} -\item SERAFIN : classical single precision format in Telemac; -\item SERAFIND: classical double precision format in Telemac; -\item MED : MED format based on HDF5 -\end{itemize}""", - ), -# ----------------------------------- - HORIZONTAL_CROSS_SECTION_FILE_FORMAT = SIMP(statut ='f', -# ----------------------------------- - typ = 'TXM', - into = ['SERAFIN','SERAFIND','MED'], - defaut = 'SERAFIN?', - fr = """Format du fichier de resultats. -Les valeurs possibles sont : -\begin{itemize} -\item SERAFIN : format standard simple precision pour Telemac; -\item SERAFIND: format standard double precision pour Telemac; -\item MED : format MED base sur HDF5 -\end{itemize}""", - ang = """Results file format. Possible values are: -\begin{itemize} -\item SERAFIN : classical single precision format in Telemac; -\item SERAFIND: classical double precision format in Telemac; -\item MED : MED format based on HDF5 -\end{itemize}""", - ), -# ----------------------------------- - VERTICAL_CROSS_SECTION_FILE_FORMAT = SIMP(statut ='f', -# ----------------------------------- - typ = 'TXM', - into = ['SERAFIN','SERAFIND','MED'], - defaut = 'SERAFIN?', - fr = """Format du fichier de resultats. -Les valeurs possibles sont : -\begin{itemize} -\item SERAFIN : format standard simple precision pour Telemac; -\item SERAFIND: format standard double precision pour Telemac; -\item MED : format MED base sur HDF5 -\end{itemize}""", - ang = """Results file format. Possible values are: -\begin{itemize} -\item SERAFIN : classical single precision format in Telemac; -\item SERAFIND: classical double precision format in Telemac; -\item MED : MED format based on HDF5 -\end{itemize}""", - ), -# ----------------------------------- - GEOMETRY_FILE_FORMAT = SIMP(statut ='f', -# ----------------------------------- - typ = 'TXM', - into = ['SERAFIN','SERAFIND','MED'], - defaut = 'SERAFIN?', - fr = """Format du fichier de geometrie. -Les valeurs possibles sont : -\begin{itemize} -\item SERAFIN : format standard simple precision pour Telemac; -\item SERAFIND: format standard double precision pour Telemac; -\item MED : format MED base sur HDF5 -\end{itemize}""", - ang = """Geometry file format. -Possible values are: -\begin{itemize} -\item SERAFIN : classical single precision format in Telemac; -\item SERAFIND: classical double precision format in Telemac; -\item MED : MED format based on HDF5 -\end{itemize}""", - ), -# ----------------------------------- - NAMES = FACT(statut='f', -# ----------------------------------- -# ----------------------------------- - FORTRAN_FILE = SIMP(statut ='f', -# ----------------------------------- - typ = ('Fichier','All Files (*)'), - defaut = 'DEFAUT', - fr = """Nom du fichier FORTRAN a soumettre.\\ -Il ne sert a priori qu''a dimensionner les tableaux utilises par -\postel3d, mais peut contenir des sous-programmes modifies ou propres -a l''utilisateur.""", - ang = """Name of FORTRAN file to be submitted.\\ -It is supposed to be used only to dimension the array used by \postel3d -but can also contain subroutines modified by the user.""", - ), # ----------------------------------- - STEERING_FILE = SIMP(statut ='f', + ABSCISSAE_OF_THE_VERTICES_OF_VERTICAL_CROSS_SECTION_5 = SIMP(statut ='o', # ----------------------------------- - typ = ('Fichier','All Files (*)'), - defaut = '', - fr = """Nom du fichier contenant les references des fichiers et -les options du calcul a realiser.""", - ang = """Name of the file containing the parameters of the computation -Written by the user.""", + typ = 'R', min=0, max='**', + fr = """Tout est dans le titre.""", + ang = """It is all said in the title.""", ), # ----------------------------------- - RD_RESULT_FILE = SIMP(statut ='f', + ORDINATES_OF_THE_VERTICES_OF_VERTICAL_CROSS_SECTION_5 = SIMP(statut ='o', # ----------------------------------- - typ = ('Fichier','All Files (*)'), - defaut = '', - fr = """Nom du fichier des resultats 3D obtenu par un calcul avec -\telemac{3D}.""", - ang = """Name of the 3d result file generated by a \telemac{3D} run.""", - ), -# ----------------------------------- - HORIZONTAL_CROSS_SECTION_FILE = SIMP(statut ='f', -# ----------------------------------- - typ = ('Fichier','All Files (*)','Sauvegarde'), - defaut = '', - fr = """Nom generique des fichiers des coupes horizontales. -Le fichier contenant la coupe i aura pour nom ce nom generique suivi -de l''extension ''.i''.""", - ang = """Generic name for the horizontal cross sections file. -The file containing the cross section i name will be the generic -followed by the extension''.i''.""", - ), -# ----------------------------------- - VERTICAL_CROSS_SECTION_FILE = SIMP(statut ='f', -# ----------------------------------- - typ = ('Fichier','All Files (*)','Sauvegarde'), - defaut = '', - fr = """Nom generique des fichiers des coupes verticales. -Le fichier contenant la coupe i au j ieme pas de temps enregistre aura -pour nom ce nom generique suivi de l''extension ''.i.j''.""", - ang = """Generic name for the vertical cross sections file. The file -containing the cross section i for the j time step name will be the -generic followed by the extension''.i.j''.""", - ), -# ----------------------------------- - GEOMETRY_FILE = SIMP(statut ='f', -# ----------------------------------- - typ = ('Fichier','All Files (*)'), - defaut = '', - fr = """Nom du fichier de geometrie""", - ang = """Name of the geometry file""", + typ = 'R', min=0, max='**', + fr = """Tout est dans le titre.""", + ang = """It is all said in the title.""", ), ), # ----------------------------------- - TYPE_OF_BINARY = FACT(statut='f', + b_NUMBER_OF_VERTICAL_CROSS_SECTIONSL = BLOC(condition="NUMBER_OF_VERTICAL_CROSS_SECTIONS > 5", # ----------------------------------- # ----------------------------------- - RD_RESULT_FILE_BINARY = SIMP(statut ='f', -# ----------------------------------- - typ = 'TXM', - into = ['STD','IBM','I3E'], - defaut = 'STD', - fr = """Type du binaire utilise pour l''ecriture du fichier des -resultats 3d.\\ -Ce type depend de la machine sur laquelle le fichier a ete genere. -Les valeurs possibles sont : -\begin{itemize} -\item IBM: pour un fichier crEE sur IBM; -\item I3E: pour un fichier crEE sur HP; -\item STD: il s''agit alors d''ordres READ et WRITE normaux. -\end{itemize}""", - ang = """Binary file type used for writing the results file. -This type depends on the machine on which the file was generated. -The possible values are as follows: -\begin{itemize} -\item IBM: for a file on an IBM (from a CRAY) -\item I3E: for a file on an HP (from a CRAY) -\item STD: binary type of the machine on which the user is working. In -that case, normal READ and WRITE commands are used -\end{itemize}""", - ), -# ----------------------------------- - CROSS_SECTION_FILE_BINARY = SIMP(statut ='f', + ABSCISSAE_OF_THE_VERTICES_OF_VERTICAL_CROSS_SECTION_6 = SIMP(statut ='o', # ----------------------------------- - typ = 'TXM', - into = ['STD','I3E'], - defaut = 'STD', - fr = """Type du binaire utilise pour l''ecriture des fichiers des -coupes.\\ -Ce type depend de la machine sur laquelle le fichier a ete genere. -Les valeurs possibles sont les memes que pour le fichier des -resultats 3D.""", - ang = """Binary file type used for writing the cross section files. -This type depends on the machine on which the file was generated. -The possible values are as follows: -\begin{itemize} -\item I3E, for a file on an HP (from a CRAY) -\item STD, binary type of the machine on which the user is working. In -that case, normal READ and WRITE commands are used. -\end{itemize}""", + typ = 'R', min=0, max='**', + fr = """Tout est dans le titre.""", + ang = """It is all said in the title.""", ), # ----------------------------------- - GEOMETRY_FILE_BINARY = SIMP(statut ='f', + ORDINATES_OF_THE_VERTICES_OF_VERTICAL_CROSS_SECTION_6 = SIMP(statut ='o', # ----------------------------------- - typ = 'TXM', - into = ['STD','I3E'], - defaut = 'STD', - fr = """Type du binaire utilise pour l''ecriture des fichiers des -coupes.\\ -Ce type depend de la machine sur laquelle le fichier a ete genere. -Les valeurs possibles sont les memes que pour le fichier des -resultats 3D.""", - ang = """Binary file type used for writing the cross section files. -This type depends on the machine on which the file was generated. -The possible values are as follows: -\begin{itemize} -\item I3E, for a file on an HP (from a CRAY) -\item STD, binary type of the machine on which the user is working. In - that case, normal READ and WRITE commands are used. -\end{itemize}""", + typ = 'R', min=0, max='**', + fr = """Tout est dans le titre.""", + ang = """It is all said in the title.""", ), ), -) -# ----------------------------------------------------------------------- -INPUT_OUTPUT__INFORMATION = PROC(nom= "INPUT_OUTPUT__INFORMATION",op = None, -# ----------------------------------------------------------------------- # ----------------------------------- - COMPUTATIONAL_INFORMATION = FACT(statut='f', + b_NUMBER_OF_VERTICAL_CROSS_SECTIONSM = BLOC(condition="NUMBER_OF_VERTICAL_CROSS_SECTIONS > 6", # ----------------------------------- # ----------------------------------- - RELEASE = SIMP(statut ='f', + ABSCISSAE_OF_THE_VERTICES_OF_VERTICAL_CROSS_SECTION_7 = SIMP(statut ='o', # ----------------------------------- - typ = 'TXM', - defaut = 'TRUNK', - fr = """Tout est dans le titre""", - ang = """It is all said in the title""", + typ = 'R', min=0, max='**', + fr = """Tout est dans le titre.""", + ang = """It is all said in the title.""", ), # ----------------------------------- - DESCRIPTION_OF_LIBRARIES = SIMP(statut ='f', + ORDINATES_OF_THE_VERTICES_OF_VERTICAL_CROSS_SECTION_7 = SIMP(statut ='o', # ----------------------------------- - typ = 'TXM', min= 6, max= 6, - defaut = 'builds|PPP|lib|postel3dMMMVVV.LLL;builds|PPP|lib|biefMMMVVV.LLL;builds|PPP|lib|hermesMMMVVV.LLL;builds|PPP|lib|damoMMMVVV.LLL;builds|PPP|lib|parallelMMMVVV.LLL;builds|PPP|lib|specialMMMVVV.LLL', - fr = """Description des librairies de \postel3d""", - ang = """\postel3d libraries description""", + typ = 'R', min=0, max='**', + fr = """Tout est dans le titre.""", + ang = """It is all said in the title.""", ), + ), +# ----------------------------------- + b_NUMBER_OF_VERTICAL_CROSS_SECTIONSN = BLOC(condition="NUMBER_OF_VERTICAL_CROSS_SECTIONS > 7", +# ----------------------------------- # ----------------------------------- - DEFAULT_EXECUTABLE = SIMP(statut ='f', + ABSCISSAE_OF_THE_VERTICES_OF_VERTICAL_CROSS_SECTION_8 = SIMP(statut ='o', # ----------------------------------- - typ = 'TXM', - defaut = 'builds|PPP|bin|postel3dMMMVVV.exe', - fr = """Executable par defaut de \postel3d""", - ang = """Default executable for \postel3d""", + typ = 'R', min=0, max='**', + fr = """Tout est dans le titre.""", + ang = """It is all said in the title.""", ), # ----------------------------------- - DEFAULT_PARALLEL_EXECUTABLE = SIMP(statut ='f', + ORDINATES_OF_THE_VERTICES_OF_VERTICAL_CROSS_SECTION_8 = SIMP(statut ='o', # ----------------------------------- - typ = 'TXM', - defaut = 'builds|PPP|bin|postel3dMMMVVV.exe', - fr = """Executable parallele par defaut de \postel3d""", - ang = """Default parallel executable for \postel3d""", + typ = 'R', min=0, max='**', + fr = """Tout est dans le titre.""", + ang = """It is all said in the title.""", ), ), # ----------------------------------- - COMPUTATION_ENVIRONMENT = FACT(statut='f', + b_NUMBER_OF_VERTICAL_CROSS_SECTIONSO = BLOC(condition="NUMBER_OF_VERTICAL_CROSS_SECTIONS > 8", # ----------------------------------- # ----------------------------------- - DICTIONARY = SIMP(statut ='f', + ABSCISSAE_OF_THE_VERTICES_OF_VERTICAL_CROSS_SECTION_9 = SIMP(statut ='o', +# ----------------------------------- + typ = 'R', min=0, max='**', + fr = """Tout est dans le titre.""", + ang = """It is all said in the title.""", + ), +# ----------------------------------- + ORDINATES_OF_THE_VERTICES_OF_VERTICAL_CROSS_SECTION_9 = SIMP(statut ='o', # ----------------------------------- - typ = ('Fichier','All Files (*)'), - defaut = 'postel3d.dico', - fr = """Dictionnaire des mots cles.""", - ang = """Key word dictionary.""", + typ = 'R', min=0, max='**', + fr = """Tout est dans le titre.""", + ang = """It is all said in the title.""", ), ), ) # ----------------------------------------------------------------------- -FILES = PROC(nom= "FILES",op = None, +INTERNAL = PROC(nom= "INTERNAL",op = None, # ----------------------------------------------------------------------- + UIinfo = {"groupes": ("CACHE")}, +# ----------------------------------- + STEERING_FILE = SIMP(statut ='o', +# ----------------------------------- + typ = ('Fichier','All Files (*)'), + defaut = '', + fr = """Nom du fichier contenant les references des fichiers et +les options du calcul a realiser.""", + ang = """Name of the file containing the parameters of the computation. +Written by the user.""", + ), # ----------------------------------- - LIST_OF_FILES = SIMP(statut ='f', + DICTIONARY = SIMP(statut ='o', # ----------------------------------- - typ = 'TXM', min= 8, max= 8, - defaut = 'STEERING FILE;DICTIONARY;FORTRAN FILE;GEOMETRY FILE;STEERING FILE;3D RESULT FILE;HORIZONTAL CROSS SECTION FILE;VERTICAL CROSS SECTION FILE', - fr = """Noms des fichiers exploites par le code""", - ang = """File names of the used files""", + typ = ('Fichier','All Files (*)'), + defaut = 'postel3d.dico', + fr = """Dictionnaire des mots cles.""", + ang = """Key word dictionary.""", ), ) TEXTE_NEW_JDC = "\ +COMPUTATION_ENVIRONMENT();\ +GENERAL();\ +HORIZONTAL_CROSS_SECTION();\ +VERTICAL_CROSS_SECTION();\ " Ordre_Des_Commandes = ( -'INPUT_OUTPUT__GRAPHICS_AND_LISTING', -'GRAPHIC', -'INPUT_OUTPUT__FILES', -'INPUT_OUTPUT__INFORMATION', -'FILES') +'COMPUTATION_ENVIRONMENT', +'GENERAL', +'HORIZONTAL_CROSS_SECTION', +'VERTICAL_CROSS_SECTION', +'INTERNAL') try: import TelApy source = "eficas" diff --git a/Telemac/postel3d_dicoCasEnToCata.py b/Telemac/postel3d_dicoCasEnToCata.py index b64bf09e..6413e89c 100644 --- a/Telemac/postel3d_dicoCasEnToCata.py +++ b/Telemac/postel3d_dicoCasEnToCata.py @@ -1,11 +1,20 @@ dicoCataToEngTelemac = { - "NUMBER_OF_HORIZONTAL_CROSS_SECTIONS" : "NUMBER OF HORIZONTAL CROSS SECTIONS", - "NUMBER_OF_VERTICAL_CROSS_SECTIONS" : "NUMBER OF VERTICAL CROSS SECTIONS", + "RD_RESULT_FILE_FORMAT" : "3D RESULT FILE FORMAT", + "RD_RESULT_FILE" : "3D RESULT FILE", + "GEOMETRY_FILE_FORMAT" : "GEOMETRY FILE FORMAT", + "GEOMETRY_FILE" : "GEOMETRY FILE", + "FORTRAN_FILE" : "FORTRAN FILE", "NUMBER_OF_FIRST_RECORD_FOR_CROSS_SECTIONS" : "NUMBER OF FIRST RECORD FOR CROSS SECTIONS", "PRINTOUT_PERIOD_FOR_CROSS_SECTIONS" : "PRINTOUT PERIOD FOR CROSS SECTIONS", + "NUMBER_OF_HORIZONTAL_CROSS_SECTIONS" : "NUMBER OF HORIZONTAL CROSS SECTIONS", + "HORIZONTAL_CROSS_SECTION_FILE_FORMAT" : "HORIZONTAL CROSS SECTION FILE FORMAT", + "HORIZONTAL_CROSS_SECTION_FILE" : "HORIZONTAL CROSS SECTION FILE", "REFERENCE_LEVEL_FOR_EACH_HORIZONTAL_CROSS_SECTION" : "REFERENCE LEVEL FOR EACH HORIZONTAL CROSS SECTION", - "NUMBER_OF_NODES_FOR_VERTICAL_CROSS_SECTION_DISCRETIZATION" : "NUMBER OF NODES FOR VERTICAL CROSS SECTION DISCRETIZATION", "ELEVATION_FROM_REFERENCE_LEVEL" : "ELEVATION FROM REFERENCE LEVEL", + "NUMBER_OF_VERTICAL_CROSS_SECTIONS" : "NUMBER OF VERTICAL CROSS SECTIONS", + "VERTICAL_CROSS_SECTION_FILE_FORMAT" : "VERTICAL CROSS SECTION FILE FORMAT", + "VERTICAL_CROSS_SECTION_FILE" : "VERTICAL CROSS SECTION FILE", + "NUMBER_OF_NODES_FOR_VERTICAL_CROSS_SECTION_DISCRETIZATION" : "NUMBER OF NODES FOR VERTICAL CROSS SECTION DISCRETIZATION", "ABSCISSAE_OF_THE_VERTICES_OF_VERTICAL_CROSS_SECTION_1" : "ABSCISSAE OF THE VERTICES OF VERTICAL CROSS SECTION 1", "ORDINATES_OF_THE_VERTICES_OF_VERTICAL_CROSS_SECTION_1" : "ORDINATES OF THE VERTICES OF VERTICAL CROSS SECTION 1", "ABSCISSAE_OF_THE_VERTICES_OF_VERTICAL_CROSS_SECTION_2" : "ABSCISSAE OF THE VERTICES OF VERTICAL CROSS SECTION 2", @@ -25,34 +34,27 @@ dicoCataToEngTelemac = { "ABSCISSAE_OF_THE_VERTICES_OF_VERTICAL_CROSS_SECTION_9" : "ABSCISSAE OF THE VERTICES OF VERTICAL CROSS SECTION 9", "ORDINATES_OF_THE_VERTICES_OF_VERTICAL_CROSS_SECTION_9" : "ORDINATES OF THE VERTICES OF VERTICAL CROSS SECTION 9", "DISTORSION_BETWEEN_VERTICAL_AND_HORIZONTAL" : "DISTORSION BETWEEN VERTICAL AND HORIZONTAL", - "FORTRAN_FILE" : "FORTRAN FILE", "STEERING_FILE" : "STEERING FILE", - "RD_RESULT_FILE" : "3D RESULT FILE", - "RD_RESULT_FILE_FORMAT" : "3D RESULT FILE FORMAT", - "HORIZONTAL_CROSS_SECTION_FILE" : "HORIZONTAL CROSS SECTION FILE", - "HORIZONTAL_CROSS_SECTION_FILE_FORMAT" : "HORIZONTAL CROSS SECTION FILE FORMAT", - "VERTICAL_CROSS_SECTION_FILE" : "VERTICAL CROSS SECTION FILE", - "VERTICAL_CROSS_SECTION_FILE_FORMAT" : "VERTICAL CROSS SECTION FILE FORMAT", - "RELEASE" : "RELEASE", - "RD_RESULT_FILE_BINARY" : "3D RESULT FILE BINARY", - "CROSS_SECTION_FILE_BINARY" : "CROSS SECTION FILE BINARY", - "GEOMETRY_FILE" : "GEOMETRY FILE", - "GEOMETRY_FILE_FORMAT" : "GEOMETRY FILE FORMAT", - "GEOMETRY_FILE_BINARY" : "GEOMETRY FILE BINARY", "DICTIONARY" : "DICTIONARY", - "LIST_OF_FILES" : "LIST OF FILES", - "DESCRIPTION_OF_LIBRARIES" : "DESCRIPTION OF LIBRARIES", - "DEFAULT_EXECUTABLE" : "DEFAULT EXECUTABLE", - "DEFAULT_PARALLEL_EXECUTABLE" : "DEFAULT PARALLEL EXECUTABLE", + "PARALLEL_PROCESSORS" : "PARALLEL PROCESSORS", } dicoCasEnToCata = { - "NUMBER OF HORIZONTAL CROSS SECTIONS" : "NUMBER_OF_HORIZONTAL_CROSS_SECTIONS", - "NUMBER OF VERTICAL CROSS SECTIONS" : "NUMBER_OF_VERTICAL_CROSS_SECTIONS", + "3D RESULT FILE FORMAT" : "RD_RESULT_FILE_FORMAT", + "3D RESULT FILE" : "RD_RESULT_FILE", + "GEOMETRY FILE FORMAT" : "GEOMETRY_FILE_FORMAT", + "GEOMETRY FILE" : "GEOMETRY_FILE", + "FORTRAN FILE" : "FORTRAN_FILE", "NUMBER OF FIRST RECORD FOR CROSS SECTIONS" : "NUMBER_OF_FIRST_RECORD_FOR_CROSS_SECTIONS", "PRINTOUT PERIOD FOR CROSS SECTIONS" : "PRINTOUT_PERIOD_FOR_CROSS_SECTIONS", + "NUMBER OF HORIZONTAL CROSS SECTIONS" : "NUMBER_OF_HORIZONTAL_CROSS_SECTIONS", + "HORIZONTAL CROSS SECTION FILE FORMAT" : "HORIZONTAL_CROSS_SECTION_FILE_FORMAT", + "HORIZONTAL CROSS SECTION FILE" : "HORIZONTAL_CROSS_SECTION_FILE", "REFERENCE LEVEL FOR EACH HORIZONTAL CROSS SECTION" : "REFERENCE_LEVEL_FOR_EACH_HORIZONTAL_CROSS_SECTION", - "NUMBER OF NODES FOR VERTICAL CROSS SECTION DISCRETIZATION" : "NUMBER_OF_NODES_FOR_VERTICAL_CROSS_SECTION_DISCRETIZATION", "ELEVATION FROM REFERENCE LEVEL" : "ELEVATION_FROM_REFERENCE_LEVEL", + "NUMBER OF VERTICAL CROSS SECTIONS" : "NUMBER_OF_VERTICAL_CROSS_SECTIONS", + "VERTICAL CROSS SECTION FILE FORMAT" : "VERTICAL_CROSS_SECTION_FILE_FORMAT", + "VERTICAL CROSS SECTION FILE" : "VERTICAL_CROSS_SECTION_FILE", + "NUMBER OF NODES FOR VERTICAL CROSS SECTION DISCRETIZATION" : "NUMBER_OF_NODES_FOR_VERTICAL_CROSS_SECTION_DISCRETIZATION", "ABSCISSAE OF THE VERTICES OF VERTICAL CROSS SECTION 1" : "ABSCISSAE_OF_THE_VERTICES_OF_VERTICAL_CROSS_SECTION_1", "ORDINATES OF THE VERTICES OF VERTICAL CROSS SECTION 1" : "ORDINATES_OF_THE_VERTICES_OF_VERTICAL_CROSS_SECTION_1", "ABSCISSAE OF THE VERTICES OF VERTICAL CROSS SECTION 2" : "ABSCISSAE_OF_THE_VERTICES_OF_VERTICAL_CROSS_SECTION_2", @@ -72,23 +74,7 @@ dicoCasEnToCata = { "ABSCISSAE OF THE VERTICES OF VERTICAL CROSS SECTION 9" : "ABSCISSAE_OF_THE_VERTICES_OF_VERTICAL_CROSS_SECTION_9", "ORDINATES OF THE VERTICES OF VERTICAL CROSS SECTION 9" : "ORDINATES_OF_THE_VERTICES_OF_VERTICAL_CROSS_SECTION_9", "DISTORSION BETWEEN VERTICAL AND HORIZONTAL" : "DISTORSION_BETWEEN_VERTICAL_AND_HORIZONTAL", - "FORTRAN FILE" : "FORTRAN_FILE", "STEERING FILE" : "STEERING_FILE", - "3D RESULT FILE" : "RD_RESULT_FILE", - "3D RESULT FILE FORMAT" : "RD_RESULT_FILE_FORMAT", - "HORIZONTAL CROSS SECTION FILE" : "HORIZONTAL_CROSS_SECTION_FILE", - "HORIZONTAL CROSS SECTION FILE FORMAT" : "HORIZONTAL_CROSS_SECTION_FILE_FORMAT", - "VERTICAL CROSS SECTION FILE" : "VERTICAL_CROSS_SECTION_FILE", - "VERTICAL CROSS SECTION FILE FORMAT" : "VERTICAL_CROSS_SECTION_FILE_FORMAT", - "RELEASE" : "RELEASE", - "3D RESULT FILE BINARY" : "RD_RESULT_FILE_BINARY", - "CROSS SECTION FILE BINARY" : "CROSS_SECTION_FILE_BINARY", - "GEOMETRY FILE" : "GEOMETRY_FILE", - "GEOMETRY FILE FORMAT" : "GEOMETRY_FILE_FORMAT", - "GEOMETRY FILE BINARY" : "GEOMETRY_FILE_BINARY", "DICTIONARY" : "DICTIONARY", - "LIST OF FILES" : "LIST_OF_FILES", - "DESCRIPTION OF LIBRARIES" : "DESCRIPTION_OF_LIBRARIES", - "DEFAULT EXECUTABLE" : "DEFAULT_EXECUTABLE", - "DEFAULT PARALLEL EXECUTABLE" : "DEFAULT_PARALLEL_EXECUTABLE", + "PARALLEL PROCESSORS" : "PARALLEL_PROCESSORS", } diff --git a/Telemac/postel3d_dicoCasFrToCata.py b/Telemac/postel3d_dicoCasFrToCata.py index 59219c82..072fc59e 100644 --- a/Telemac/postel3d_dicoCasFrToCata.py +++ b/Telemac/postel3d_dicoCasFrToCata.py @@ -1,11 +1,20 @@ dicoCataToFrTelemac = { - "NUMBER_OF_HORIZONTAL_CROSS_SECTIONS" : "NOMBRE DE COUPES HORIZONTALES", - "NUMBER_OF_VERTICAL_CROSS_SECTIONS" : "NOMBRE DE COUPES VERTICALES", + "RD_RESULT_FILE_FORMAT" : "FORMAT DU FICHIER DES RESULTATS 3D", + "RD_RESULT_FILE" : "FICHIER DES RESULTATS 3D", + "GEOMETRY_FILE_FORMAT" : "FORMAT DU FICHIER DE GEOMETRIE", + "GEOMETRY_FILE" : "FICHIER DE GEOMETRIE", + "FORTRAN_FILE" : "FICHIER FORTRAN", "NUMBER_OF_FIRST_RECORD_FOR_CROSS_SECTIONS" : "NUMERO DU PREMIER ENREGISTREMENT POUR LES COUPES", "PRINTOUT_PERIOD_FOR_CROSS_SECTIONS" : "PERIODE DE SORTIE DES COUPES", + "NUMBER_OF_HORIZONTAL_CROSS_SECTIONS" : "NOMBRE DE COUPES HORIZONTALES", + "HORIZONTAL_CROSS_SECTION_FILE_FORMAT" : "FORMAT DU FICHIER DES COUPES HORIZONTALES", + "HORIZONTAL_CROSS_SECTION_FILE" : "FICHIER DES COUPES HORIZONTALES", "REFERENCE_LEVEL_FOR_EACH_HORIZONTAL_CROSS_SECTION" : "PLAN DE REFERENCE POUR CHAQUE COUPE HORIZONTALE", - "NUMBER_OF_NODES_FOR_VERTICAL_CROSS_SECTION_DISCRETIZATION" : "NOMBRE DE POINTS DE DISCRETISATION POUR LES COUPES VERTICALES", "ELEVATION_FROM_REFERENCE_LEVEL" : "HAUTEUR PAR RAPPORT AU PLAN DE REFERENCE", + "NUMBER_OF_VERTICAL_CROSS_SECTIONS" : "NOMBRE DE COUPES VERTICALES", + "VERTICAL_CROSS_SECTION_FILE_FORMAT" : "FORMAT DU FICHIER DES COUPES VERTICALES", + "VERTICAL_CROSS_SECTION_FILE" : "FICHIER DES COUPES VERTICALES", + "NUMBER_OF_NODES_FOR_VERTICAL_CROSS_SECTION_DISCRETIZATION" : "NOMBRE DE POINTS DE DISCRETISATION POUR LES COUPES VERTICALES", "ABSCISSAE_OF_THE_VERTICES_OF_VERTICAL_CROSS_SECTION_1" : "ABSCISSES DES SOMMETS DE LA COUPE VERTICALE 1", "ORDINATES_OF_THE_VERTICES_OF_VERTICAL_CROSS_SECTION_1" : "ORDONNEES DES SOMMETS DE LA COUPE VERTICALE 1", "ABSCISSAE_OF_THE_VERTICES_OF_VERTICAL_CROSS_SECTION_2" : "ABSCISSES DES SOMMETS DE LA COUPE VERTICALE 2", @@ -25,34 +34,27 @@ dicoCataToFrTelemac = { "ABSCISSAE_OF_THE_VERTICES_OF_VERTICAL_CROSS_SECTION_9" : "ABSCISSES DES SOMMETS DE LA COUPE VERTICALE 9", "ORDINATES_OF_THE_VERTICES_OF_VERTICAL_CROSS_SECTION_9" : "ORDONNEES DES SOMMETS DE LA COUPE VERTICALE 9", "DISTORSION_BETWEEN_VERTICAL_AND_HORIZONTAL" : "DISTORSION ENTRE VERTICALE ET HORIZONTALE", - "FORTRAN_FILE" : "FICHIER FORTRAN", "STEERING_FILE" : "FICHIER DES PARAMETRES", - "RD_RESULT_FILE" : "FICHIER DES RESULTATS 3D", - "RD_RESULT_FILE_FORMAT" : "FORMAT DU FICHIER DES RESULTATS 3D", - "HORIZONTAL_CROSS_SECTION_FILE" : "FICHIER DES COUPES HORIZONTALES", - "HORIZONTAL_CROSS_SECTION_FILE_FORMAT" : "FORMAT DU FICHIER DES COUPES HORIZONTALES", - "VERTICAL_CROSS_SECTION_FILE" : "FICHIER DES COUPES VERTICALES", - "VERTICAL_CROSS_SECTION_FILE_FORMAT" : "FORMAT DU FICHIER DES COUPES VERTICALES", - "RELEASE" : "NUMERO DE VERSION", - "RD_RESULT_FILE_BINARY" : "BINAIRE DU FICHIER DES RESULTATS 3D", - "CROSS_SECTION_FILE_BINARY" : "BINAIRE DES FICHIERS DES COUPES", - "GEOMETRY_FILE" : "FICHIER DE GEOMETRIE", - "GEOMETRY_FILE_FORMAT" : "FORMAT DU FICHIER DE GEOMETRIE", - "GEOMETRY_FILE_BINARY" : "BINAIRE DU FICHIER DE GEOMETRIE", "DICTIONARY" : "DICTIONNAIRE", - "LIST_OF_FILES" : "LISTE DES FICHIERS", - "DESCRIPTION_OF_LIBRARIES" : "DESCRIPTION DES LIBRAIRIES", - "DEFAULT_EXECUTABLE" : "EXECUTABLE PAR DEFAUT", - "DEFAULT_PARALLEL_EXECUTABLE" : "EXECUTABLE PARALLELE PAR DEFAUT", + "PARALLEL_PROCESSORS" : "PROCESSEURS PARALLELES", } dicoCasFrToCata = { - "NOMBRE DE COUPES HORIZONTALES" : "NUMBER_OF_HORIZONTAL_CROSS_SECTIONS", - "NOMBRE DE COUPES VERTICALES" : "NUMBER_OF_VERTICAL_CROSS_SECTIONS", + "FORMAT DU FICHIER DES RESULTATS 3D" : "RD_RESULT_FILE_FORMAT", + "FICHIER DES RESULTATS 3D" : "RD_RESULT_FILE", + "FORMAT DU FICHIER DE GEOMETRIE" : "GEOMETRY_FILE_FORMAT", + "FICHIER DE GEOMETRIE" : "GEOMETRY_FILE", + "FICHIER FORTRAN" : "FORTRAN_FILE", "NUMERO DU PREMIER ENREGISTREMENT POUR LES COUPES" : "NUMBER_OF_FIRST_RECORD_FOR_CROSS_SECTIONS", "PERIODE DE SORTIE DES COUPES" : "PRINTOUT_PERIOD_FOR_CROSS_SECTIONS", + "NOMBRE DE COUPES HORIZONTALES" : "NUMBER_OF_HORIZONTAL_CROSS_SECTIONS", + "FORMAT DU FICHIER DES COUPES HORIZONTALES" : "HORIZONTAL_CROSS_SECTION_FILE_FORMAT", + "FICHIER DES COUPES HORIZONTALES" : "HORIZONTAL_CROSS_SECTION_FILE", "PLAN DE REFERENCE POUR CHAQUE COUPE HORIZONTALE" : "REFERENCE_LEVEL_FOR_EACH_HORIZONTAL_CROSS_SECTION", - "NOMBRE DE POINTS DE DISCRETISATION POUR LES COUPES VERTICALES" : "NUMBER_OF_NODES_FOR_VERTICAL_CROSS_SECTION_DISCRETIZATION", "HAUTEUR PAR RAPPORT AU PLAN DE REFERENCE" : "ELEVATION_FROM_REFERENCE_LEVEL", + "NOMBRE DE COUPES VERTICALES" : "NUMBER_OF_VERTICAL_CROSS_SECTIONS", + "FORMAT DU FICHIER DES COUPES VERTICALES" : "VERTICAL_CROSS_SECTION_FILE_FORMAT", + "FICHIER DES COUPES VERTICALES" : "VERTICAL_CROSS_SECTION_FILE", + "NOMBRE DE POINTS DE DISCRETISATION POUR LES COUPES VERTICALES" : "NUMBER_OF_NODES_FOR_VERTICAL_CROSS_SECTION_DISCRETIZATION", "ABSCISSES DES SOMMETS DE LA COUPE VERTICALE 1" : "ABSCISSAE_OF_THE_VERTICES_OF_VERTICAL_CROSS_SECTION_1", "ORDONNEES DES SOMMETS DE LA COUPE VERTICALE 1" : "ORDINATES_OF_THE_VERTICES_OF_VERTICAL_CROSS_SECTION_1", "ABSCISSES DES SOMMETS DE LA COUPE VERTICALE 2" : "ABSCISSAE_OF_THE_VERTICES_OF_VERTICAL_CROSS_SECTION_2", @@ -72,23 +74,7 @@ dicoCasFrToCata = { "ABSCISSES DES SOMMETS DE LA COUPE VERTICALE 9" : "ABSCISSAE_OF_THE_VERTICES_OF_VERTICAL_CROSS_SECTION_9", "ORDONNEES DES SOMMETS DE LA COUPE VERTICALE 9" : "ORDINATES_OF_THE_VERTICES_OF_VERTICAL_CROSS_SECTION_9", "DISTORSION ENTRE VERTICALE ET HORIZONTALE" : "DISTORSION_BETWEEN_VERTICAL_AND_HORIZONTAL", - "FICHIER FORTRAN" : "FORTRAN_FILE", "FICHIER DES PARAMETRES" : "STEERING_FILE", - "FICHIER DES RESULTATS 3D" : "RD_RESULT_FILE", - "FORMAT DU FICHIER DES RESULTATS 3D" : "RD_RESULT_FILE_FORMAT", - "FICHIER DES COUPES HORIZONTALES" : "HORIZONTAL_CROSS_SECTION_FILE", - "FORMAT DU FICHIER DES COUPES HORIZONTALES" : "HORIZONTAL_CROSS_SECTION_FILE_FORMAT", - "FICHIER DES COUPES VERTICALES" : "VERTICAL_CROSS_SECTION_FILE", - "FORMAT DU FICHIER DES COUPES VERTICALES" : "VERTICAL_CROSS_SECTION_FILE_FORMAT", - "NUMERO DE VERSION" : "RELEASE", - "BINAIRE DU FICHIER DES RESULTATS 3D" : "RD_RESULT_FILE_BINARY", - "BINAIRE DES FICHIERS DES COUPES" : "CROSS_SECTION_FILE_BINARY", - "FICHIER DE GEOMETRIE" : "GEOMETRY_FILE", - "FORMAT DU FICHIER DE GEOMETRIE" : "GEOMETRY_FILE_FORMAT", - "BINAIRE DU FICHIER DE GEOMETRIE" : "GEOMETRY_FILE_BINARY", "DICTIONNAIRE" : "DICTIONARY", - "LISTE DES FICHIERS" : "LIST_OF_FILES", - "DESCRIPTION DES LIBRAIRIES" : "DESCRIPTION_OF_LIBRARIES", - "EXECUTABLE PAR DEFAUT" : "DEFAULT_EXECUTABLE", - "EXECUTABLE PARALLELE PAR DEFAUT" : "DEFAULT_PARALLEL_EXECUTABLE", + "PROCESSEURS PARALLELES" : "PARALLEL_PROCESSORS", } diff --git a/Telemac/postel3d_enum_auto.py b/Telemac/postel3d_enum_auto.py index 5bb66dfd..3fe6691a 100644 --- a/Telemac/postel3d_enum_auto.py +++ b/Telemac/postel3d_enum_auto.py @@ -6,13 +6,22 @@ TelemacdicoFr = { } DicoCasFrToCata = { - "NOMBRE DE COUPES HORIZONTALES":"NUMBER_OF_HORIZONTAL_CROSS_SECTIONS", - "NOMBRE DE COUPES VERTICALES":"NUMBER_OF_VERTICAL_CROSS_SECTIONS", + "FORMAT DU FICHIER DES RESULTATS 3D":"RD_RESULT_FILE_FORMAT", + "FICHIER DES RESULTATS 3D":"RD_RESULT_FILE", + "FORMAT DU FICHIER DE GEOMETRIE":"GEOMETRY_FILE_FORMAT", + "FICHIER DE GEOMETRIE":"GEOMETRY_FILE", + "FICHIER FORTRAN":"FORTRAN_FILE", "NUMERO DU PREMIER ENREGISTREMENT POUR LES COUPES":"NUMBER_OF_FIRST_RECORD_FOR_CROSS_SECTIONS", "PERIODE DE SORTIE DES COUPES":"PRINTOUT_PERIOD_FOR_CROSS_SECTIONS", + "NOMBRE DE COUPES HORIZONTALES":"NUMBER_OF_HORIZONTAL_CROSS_SECTIONS", + "FORMAT DU FICHIER DES COUPES HORIZONTALES":"HORIZONTAL_CROSS_SECTION_FILE_FORMAT", + "FICHIER DES COUPES HORIZONTALES":"HORIZONTAL_CROSS_SECTION_FILE", "PLAN DE REFERENCE POUR CHAQUE COUPE HORIZONTALE":"REFERENCE_LEVEL_FOR_EACH_HORIZONTAL_CROSS_SECTION", - "NOMBRE DE POINTS DE DISCRETISATION POUR LES COUPES VERTICALES":"NUMBER_OF_NODES_FOR_VERTICAL_CROSS_SECTION_DISCRETIZATION", "HAUTEUR PAR RAPPORT AU PLAN DE REFERENCE":"ELEVATION_FROM_REFERENCE_LEVEL", + "NOMBRE DE COUPES VERTICALES":"NUMBER_OF_VERTICAL_CROSS_SECTIONS", + "FORMAT DU FICHIER DES COUPES VERTICALES":"VERTICAL_CROSS_SECTION_FILE_FORMAT", + "FICHIER DES COUPES VERTICALES":"VERTICAL_CROSS_SECTION_FILE", + "NOMBRE DE POINTS DE DISCRETISATION POUR LES COUPES VERTICALES":"NUMBER_OF_NODES_FOR_VERTICAL_CROSS_SECTION_DISCRETIZATION", "ABSCISSES DES SOMMETS DE LA COUPE VERTICALE 1":"ABSCISSAE_OF_THE_VERTICES_OF_VERTICAL_CROSS_SECTION_1", "ORDONNEES DES SOMMETS DE LA COUPE VERTICALE 1":"ORDINATES_OF_THE_VERTICES_OF_VERTICAL_CROSS_SECTION_1", "ABSCISSES DES SOMMETS DE LA COUPE VERTICALE 2":"ABSCISSAE_OF_THE_VERTICES_OF_VERTICAL_CROSS_SECTION_2", @@ -32,35 +41,28 @@ DicoCasFrToCata = { "ABSCISSES DES SOMMETS DE LA COUPE VERTICALE 9":"ABSCISSAE_OF_THE_VERTICES_OF_VERTICAL_CROSS_SECTION_9", "ORDONNEES DES SOMMETS DE LA COUPE VERTICALE 9":"ORDINATES_OF_THE_VERTICES_OF_VERTICAL_CROSS_SECTION_9", "DISTORSION ENTRE VERTICALE ET HORIZONTALE":"DISTORSION_BETWEEN_VERTICAL_AND_HORIZONTAL", - "FICHIER FORTRAN":"FORTRAN_FILE", "FICHIER DES PARAMETRES":"STEERING_FILE", - "FICHIER DES RESULTATS 3D":"RD_RESULT_FILE", - "FORMAT DU FICHIER DES RESULTATS 3D":"RD_RESULT_FILE_FORMAT", - "FICHIER DES COUPES HORIZONTALES":"HORIZONTAL_CROSS_SECTION_FILE", - "FORMAT DU FICHIER DES COUPES HORIZONTALES":"HORIZONTAL_CROSS_SECTION_FILE_FORMAT", - "FICHIER DES COUPES VERTICALES":"VERTICAL_CROSS_SECTION_FILE", - "FORMAT DU FICHIER DES COUPES VERTICALES":"VERTICAL_CROSS_SECTION_FILE_FORMAT", - "NUMERO DE VERSION":"RELEASE", - "BINAIRE DU FICHIER DES RESULTATS 3D":"RD_RESULT_FILE_BINARY", - "BINAIRE DES FICHIERS DES COUPES":"CROSS_SECTION_FILE_BINARY", - "FICHIER DE GEOMETRIE":"GEOMETRY_FILE", - "FORMAT DU FICHIER DE GEOMETRIE":"GEOMETRY_FILE_FORMAT", - "BINAIRE DU FICHIER DE GEOMETRIE":"GEOMETRY_FILE_BINARY", "DICTIONNAIRE":"DICTIONARY", - "LISTE DES FICHIERS":"LIST_OF_FILES", - "DESCRIPTION DES LIBRAIRIES":"DESCRIPTION_OF_LIBRARIES", - "EXECUTABLE PAR DEFAUT":"DEFAULT_EXECUTABLE", - "EXECUTABLE PARALLELE PAR DEFAUT":"DEFAULT_PARALLEL_EXECUTABLE", + "PROCESSEURS PARALLELES":"PARALLEL_PROCESSORS", } DicoCasEnToCata = { - 'NUMBER OF HORIZONTAL CROSS SECTIONS':'NUMBER_OF_HORIZONTAL_CROSS_SECTIONS', - 'NUMBER OF VERTICAL CROSS SECTIONS':'NUMBER_OF_VERTICAL_CROSS_SECTIONS', + '3D RESULT FILE FORMAT':'RD_RESULT_FILE_FORMAT', + '3D RESULT FILE':'RD_RESULT_FILE', + 'GEOMETRY FILE FORMAT':'GEOMETRY_FILE_FORMAT', + 'GEOMETRY FILE':'GEOMETRY_FILE', + 'FORTRAN FILE':'FORTRAN_FILE', 'NUMBER OF FIRST RECORD FOR CROSS SECTIONS':'NUMBER_OF_FIRST_RECORD_FOR_CROSS_SECTIONS', 'PRINTOUT PERIOD FOR CROSS SECTIONS':'PRINTOUT_PERIOD_FOR_CROSS_SECTIONS', + 'NUMBER OF HORIZONTAL CROSS SECTIONS':'NUMBER_OF_HORIZONTAL_CROSS_SECTIONS', + 'HORIZONTAL CROSS SECTION FILE FORMAT':'HORIZONTAL_CROSS_SECTION_FILE_FORMAT', + 'HORIZONTAL CROSS SECTION FILE':'HORIZONTAL_CROSS_SECTION_FILE', 'REFERENCE LEVEL FOR EACH HORIZONTAL CROSS SECTION':'REFERENCE_LEVEL_FOR_EACH_HORIZONTAL_CROSS_SECTION', - 'NUMBER OF NODES FOR VERTICAL CROSS SECTION DISCRETIZATION':'NUMBER_OF_NODES_FOR_VERTICAL_CROSS_SECTION_DISCRETIZATION', 'ELEVATION FROM REFERENCE LEVEL':'ELEVATION_FROM_REFERENCE_LEVEL', + 'NUMBER OF VERTICAL CROSS SECTIONS':'NUMBER_OF_VERTICAL_CROSS_SECTIONS', + 'VERTICAL CROSS SECTION FILE FORMAT':'VERTICAL_CROSS_SECTION_FILE_FORMAT', + 'VERTICAL CROSS SECTION FILE':'VERTICAL_CROSS_SECTION_FILE', + 'NUMBER OF NODES FOR VERTICAL CROSS SECTION DISCRETIZATION':'NUMBER_OF_NODES_FOR_VERTICAL_CROSS_SECTION_DISCRETIZATION', 'ABSCISSAE OF THE VERTICES OF VERTICAL CROSS SECTION 1':'ABSCISSAE_OF_THE_VERTICES_OF_VERTICAL_CROSS_SECTION_1', 'ORDINATES OF THE VERTICES OF VERTICAL CROSS SECTION 1':'ORDINATES_OF_THE_VERTICES_OF_VERTICAL_CROSS_SECTION_1', 'ABSCISSAE OF THE VERTICES OF VERTICAL CROSS SECTION 2':'ABSCISSAE_OF_THE_VERTICES_OF_VERTICAL_CROSS_SECTION_2', @@ -80,25 +82,9 @@ DicoCasEnToCata = { 'ABSCISSAE OF THE VERTICES OF VERTICAL CROSS SECTION 9':'ABSCISSAE_OF_THE_VERTICES_OF_VERTICAL_CROSS_SECTION_9', 'ORDINATES OF THE VERTICES OF VERTICAL CROSS SECTION 9':'ORDINATES_OF_THE_VERTICES_OF_VERTICAL_CROSS_SECTION_9', 'DISTORSION BETWEEN VERTICAL AND HORIZONTAL':'DISTORSION_BETWEEN_VERTICAL_AND_HORIZONTAL', - 'FORTRAN FILE':'FORTRAN_FILE', 'STEERING FILE':'STEERING_FILE', - '3D RESULT FILE':'RD_RESULT_FILE', - '3D RESULT FILE FORMAT':'RD_RESULT_FILE_FORMAT', - 'HORIZONTAL CROSS SECTION FILE':'HORIZONTAL_CROSS_SECTION_FILE', - 'HORIZONTAL CROSS SECTION FILE FORMAT':'HORIZONTAL_CROSS_SECTION_FILE_FORMAT', - 'VERTICAL CROSS SECTION FILE':'VERTICAL_CROSS_SECTION_FILE', - 'VERTICAL CROSS SECTION FILE FORMAT':'VERTICAL_CROSS_SECTION_FILE_FORMAT', - 'RELEASE':'RELEASE', - '3D RESULT FILE BINARY':'RD_RESULT_FILE_BINARY', - 'CROSS SECTION FILE BINARY':'CROSS_SECTION_FILE_BINARY', - 'GEOMETRY FILE':'GEOMETRY_FILE', - 'GEOMETRY FILE FORMAT':'GEOMETRY_FILE_FORMAT', - 'GEOMETRY FILE BINARY':'GEOMETRY_FILE_BINARY', 'DICTIONARY':'DICTIONARY', - 'LIST OF FILES':'LIST_OF_FILES', - 'DESCRIPTION OF LIBRARIES':'DESCRIPTION_OF_LIBRARIES', - 'DEFAULT EXECUTABLE':'DEFAULT_EXECUTABLE', - 'DEFAULT PARALLEL EXECUTABLE':'DEFAULT_PARALLEL_EXECUTABLE', + 'PARALLEL PROCESSORS':'PARALLEL_PROCESSORS', } DicoEnumCasFrToEnumCasEn = { 'RD_RESULT_FILE_FORMAT':{ @@ -107,38 +93,22 @@ DicoEnumCasFrToEnumCasEn = { "MED":"MED", }, -'HORIZONTAL_CROSS_SECTION_FILE_FORMAT':{ +'GEOMETRY_FILE_FORMAT':{ "SERAFIN":"SERAFIN", "SERAFIND":"SERAFIND", "MED":"MED", }, -'VERTICAL_CROSS_SECTION_FILE_FORMAT':{ +'HORIZONTAL_CROSS_SECTION_FILE_FORMAT':{ "SERAFIN":"SERAFIN", "SERAFIND":"SERAFIND", "MED":"MED", }, -'RD_RESULT_FILE_BINARY':{ - "STD":"STD", - "IBM":"IBM", - "I3E":"I3E", -}, - -'CROSS_SECTION_FILE_BINARY':{ - "STD":"STD", - "I3E":"I3E", -}, - -'GEOMETRY_FILE_FORMAT':{ +'VERTICAL_CROSS_SECTION_FILE_FORMAT':{ "SERAFIN":"SERAFIN", "SERAFIND":"SERAFIND", "MED":"MED", }, -'GEOMETRY_FILE_BINARY':{ - "STD":"STD", - "I3E":"I3E", -}, - } diff --git a/Telemac/postel3d_labelCataToIhm_en.qm b/Telemac/postel3d_labelCataToIhm_en.qm index 13461a3bbf8ec88d580825b8409a2ffec72c43a8..224bf8904868fa700826226ab72ca390f2c53551 100644 GIT binary patch delta 663 zcmY+AOK1~e6opUBbY7WB(`1?^O%_$bKvalYOHq(cJ0S$aB<4{;f@z`=gpigtEp=lN zMMPXEf5j|ZNf1O)Ym9B72rdN?9|(f(L@c;)6U0Iry<`#T43}@t+&lN2f0mEDK6F#- znF4q962P}$9ARUl`Sr?$q%Y)zQfMS$rFDrV*%P*+r9gKKy28)b6sS7LP{5`MuGi1&iv? zt`r5HQ|AYl$mlEa8DOsx$)Gz;d=5Aq#0K#V@deOxjkpXr4dM#m0&&$#4{Pd|CjAfo zuAMtzP=M-rz%$HR)^dG#$3dQb5DR@G4CGNkUIbk{6=&#az5Z0rS=doUAFv~WBFa?L zG+64436ZcFPU=dg=H9$+JDc~7WGjvaqn(0`$5;~nK7LMf-$@o|}m5L`*Y}C8iKHua1 d&uqnKSodL^ExCgKW4oEf>1Gw5la2YC{{Y;1mrwuz delta 1455 zcmah|Pi)(C7=0m`lQ?$DR?{Z!G=+&V4e@6y+YTHMZsHVgu9Mkrw<4IAY{?k3p=wrX zJw<{EgoMN>#ReIyNE4Ty*kKY(aDW3y69V-DOcm-Rgm`f~lM+-cS>Nyb z*}wPR_rCA<<>ObMIHja7W6zK008xciVoV;uYYQ3>yZ`hSvms90bIto1kheuf555KT zO-E+JH6R@mdN0O#>bCIS*)7cHgi8?xkoE{)y>o{D-4cHNlX+rqbg@qY;*Uj_ez*Y$ z@5bH^-vsV`A@<9~J7ifDciw6OT^q$`B;uzR#6wH30KKn@SN0!71M+O*r^q@W6_@M} zM+o?>w14g!5`QF>w$2jxx>Pkh?w^;wJ~>bMiuA{wzXRV2-($>cT#X~cbq!VKQ~V?N76TuFZ#r8TE{-^=qZdroaCI|Zu!dFdRHDaw zC{_*=+FKv#_e@D_lzpfYfo9r{TLs&8Z7tgZaPzvMxr4f?T4Pay$DTS;sg|b4kB7p{ z9zYHiN-0t1I7Mcdo#1m7|PRpw!hU01nv@8VkB=M*G(uw99 zuog@IU6!J1sfM8$0bK{%C`;Jx)72??ie^j(PG{(El?9D+x9romzE@BW%1PxkJ8S7h z-=;#|HS|GCwRFvHo{PDmJ`s5yXes{Z$hwxBw)b1y_NK-1w*RtU8PW>Fnq!T%JMVoU zzL-g3$k#E6=Lvi`&=DQ7)Z){6ws|Je70Nvbozt;AH;=G}*8D7I53`zThoo-ZS7l(_e7&qAWD zo!-9Qw6J_@no94c5SwTDvs)obz3om!EzQtWTk|rh(OnziV20hQ1j^bV12dD(SW#dI)jp7?U~YHcLdbl{YEYCg!4g5s4&v z2<0S2AVh>91(EBIK}hxBLoX##J=mKCz4;=c5Y{&zjLwg9zVrKYe&6pqGsizQOt`CV z0-bjNyC2H<7@%elJ^BbRmL}VyqdMeUm*3F)qnzxU0xI?^SLF<_E2F$?>;-Ji>Qlwd ze3QC#k6kM6t82gM>&qIt7MRa!{kA5+^HrPaxlQzH>t2&A-}JlkGT>;_e?H!%KW#hM z>jGRK4F75#Fk$qVQy7J3%s9Pq9dPe6tl1k^dLI-f!e2v0@L&9)!eNsZZBJ!DuiZhzO@SAXd$b zJ`*AK%i>I-@6KyA6zMp@st46>TMM%}48am_jXhGO_~@u)ygWbduuGjLf}|e7aDjg3 zd2u)z>q=@ILvJ3i&ZTnc5lN=!M0mT}VtwX6LOmQ!2IEmujyR9yzc`2VwnK=qEK9A_ zMYA}?FtL`iqaT{-@g&3s7Dp80nA2J6eK?L`OU!{8iuc6W%&WY*Y`58#Uch Wie>p_@c@H delta 1698 zcma)6U1%It7(MyhpV`@L%x?Z08bjKkv|vptDm8R=cQzTBolR#pZ4*hhn{*R{$u{Pv zv@b5$LMjwdr)nPhASi(nQB0y%2vq2c4@KIFAWBU|ibV=-p-3tso|%o~riIvr*>msx zX1?=%=bn2nx6SW)EA-rTK%D_Z6Nrx!zXJB10m@GS2Tua^X}oy-L%_QLJxwhC1hc=( zfP3`qom$R&t$4-!4e(2)`v=|y8n%}nFUbOR9#_qR7Z8rRK6q~%=gY27OGC^K*OfVD zZVk^&#ZfG^;^ItdfqSj4ygFXb93Q7*Sm!FUzdQuYeJt$ zp88qg(Ao*)P}3!3&Lz39Ls&jAz(OwhZj_b*H5WwVTo2$oB_25cJ&9VxbnC}#qe&cA z*{V+$ub#ZfcAgjixc@g3ulZXKDa>=t|4g&N^&k8l!@WRlz5iJIXTW27h>OIVL>5wc zhPa#tf_pjmoOp})1rVAeehE}XiRX!Th}5+DtpD}?-PEnZfBJ5axa$Au-bd_ID=*y@ zCDA+OD;MA3{A^(UsS{LcbrjgL&D4qq7K<0l`b9*L#u$b$gE0^IbMdK*B;wsYNhzr$ zG)YYxtNgK<7tOq;*B+n(q^n6WHb ztT!@f!eRbT5r?@lgqQiBVPwj@U9~k=7ts@jkuv0n#hr>Ns+ zm#bUSB~_JGht$063+-=5lxe0|{v;)sU<;$Rfd2_J#+5-v^U_%|O*xI!Mr9+SE8VtC ziC9Wi!n&j@vbir1T#9&xindlD#_tORcD^mMWVK#2=e?a~tDpxS*d+6=uhD!#*kWD~ z0duTt5Jlhoa*OWj>cWU0^BSQKSA4;owH`*i zU_Bf!+(@<$zsIeZQjVcu7;74v?w>nNGe)qzKmUkr{~#6sl~kGZ5*lF zn19nV*#dRF#!b$fQ@P(NFGUYIw)j!pUgLpA&BqHYSEfmE+ct~-36FWH>S`di@odvJ zkDL9~P3EoYignv8ovv;#YHMb$8T(eS?ufj>n|No~=bn}F-f*gM>#{0KhUFIX>zWZd x$v_fOCthMC%~0(tyOTK1LzC}shB*iA{aC+coVUx9z1_0aTi(S>E487be*oi$U`>?E24;s2r7@L2~H_! z5?Ik?G-y_{C=Zh|5|<$n;wvc^lg(->F2>EP)I_3**;T;@7+JFiwu&D~QO(yq-*?YF z=bn4N{jJOghnQWSj+I37KOk~vi7Vbh#Fr9Zht(29e1m}~)sy&JWkl%>B-eKlODET#}X0VSaa3izh0*IJDW7=y+h$4HKqtYHC&r^&`T}edwOxI`gKqQ{&eR7s4 z=u7643B5!KMa-S71agqKU1i#|3916z4Nl4_70Bek-eqfDrW@*6Xi4k#K_bc6)`$ zt%)_ZTqR-;vC$d`Hng$}f3i4G(tonWXC8p@AX`^;lE}ZBt>399ig=D~djMrg9qgM! zP$cBBUFu0h+IqJ4n--!OU$R&Jg~T$?4xcSV!a+{;67c5j;&_vVXzn^rbNLaG^+irQ zoI*4wj#DbKiI@t`^0fbHn>~RoIGz(lS@WBd|0M4n)`VB}Js&2?a#ik{x_ojKk>z~wbwZo#sTk0dh z6&PQ$`iCRv1^0dGCm~N0g)I?fE3A|q+e8m9Jq|XB{*UiroYZ1i9=>C$#6>+Ilt|+9 zb6pr0y|~ediXKrTI}74iiAE9 z|M3gXC0`RS+&+qRl6Wx{O>ULMJFdTB{->UjOru_zPD^nu3c5X9%BoI4lj)`BWRxn! zUn*Go9lj4sRp&uu;$&%)gaq@erN-`VqO@~TTTl$9Wms|zEr(K3>RNVJ`{4yS z^)9T9y(lm0{v0?LcU&GCWn{6*k3tLxh?O5NXho9^ zXz4JTGxkNTEe`quU2`o~Ka(%|e~=Lklh> zQ5X2f?=c;sE~>L17tl@J(goP}>C(O6gUTRtO`>Bd0^M{Ue;9-dqfhrObpS9}_xKMW zG=I9Hw@*f3fD+?84n?x^yb%>Ju2FW>MBt`-q`Y2*(kr#f0dpZL;85D5YH&l&RgN{8 z&_gEWL=4XBLzRD*;a;(xQ3h^~5QQ&W1)oL-k-}X&g$kAlaB@;OHStwDHTzf zdX%7mN1J3x$yu$>&B>GL_-zGAf`7T8_8>uK~0cZ|lc?E1>|K zsl@x*(f{L+#$>xK*_>ms;mOZ5XXRKj^6j}fnYqq`p?cTP%5^svYkY@wnf+#orU_&P z_-KmtV@XQJVboSzjwQ=x&Tth@jb@ysA+qa6aFmZLEorL|A4u6$g6wM%7=Wh;f6KwP z0$;zD=$@Tn&$Q%QQd2F-IpZ=vNy}iSc>$&jKviS;e;caFwr4D~WQ_-TrLR-X@kdZ4 gm5=2v#ky*&QojvWvU9UDEw*f{-8K&Ja>gG1fBWVTe*gdg delta 2260 zcmaJ>YgAO{6+L(EgSmI^%v|%GPdjaEaS=WC4D~L)2!KD*P*WX|>RCqk`~(i{V=|6)5XJF~{lp@? zyO>o)hlu9fU^cBUC(7$)oOk+(B8Qpg4?!q5p6P5FBbt@M9Ftxpuw~rJ1|lk9xs9tf}^)1nq9~J#uQi%LcDX#wB1chqFo#Yur^Uf>&UWEky%UM+dgm?|Jfp7Cf z!gFkp*EXzeY_bYMgS7188+r#(go&*@dk;)MVz-LKH#e3Yhlp<*VeZZ1i#`s zN6+BE8SeOe7FOQoPL2T}(9K<3lS>rV%nfYpM@f3QyC;?tX?Jt~=s@D6&v=TQMZ~uA zalb^5%(%=aCLlh*${Uj)U{VclcC6G8<@E5+r~$xS=9@y>vCiOMhyqY#4F9VaQG!Vq zc~`5GNNVNV7H~w<&hvc|l!&AJ&0QbCnNEJB5jfLt@gw`&K%|)e(XWN*@!10V4hU!e zAaDnfcvh7VbVMWy*(`+p09@Sz!4bZEHxgC}E4w<-{WhVp5rDG|!ln&TMA0LHbEpo9 zs)e@GAdv72Vdp1oMHs7Gf_1XPE3+aJ*YAp#zPA{b@AO)AH-%`v&TI4vh$sz8 zK6w(9XDAbH>tOXPWzAp!YJExBVufSzrE0xj#UO9+x6LrHW3ItQ#|N|09~ECuLZq&yeh;e?@I0q;(fSVDb)W zg9PA$BB}M{NdWATI-*n1RJD?Oq#RxTrPRFyJu-E()YEkUgXk^k-8na*__&JS1-!IS zmG%x21xBd?j!!|{HC6GJH*h^gRm1Cfz)MrTFnka9KRjR6QWu316sg)fVReY4`tB9f za`If6n+|~7ZL((HI27};?;a3KtdV1@ILr&XoG`Ks&Bn=@ntaRwn`{_DZ8J8?OHN(_ zPKLa}7f!|8kl*a6#$a0`|EUSM5lVT)L&z{qzCS$x_doq_@`Iv-2&_`mA#`U(tlGQ` z0I53l)~9E~dW+f_p9v?N>K(WJpwL^rw*mVp->84fAmRKr_2+kSUX(QK)jC|WDvkdc zIHZy_A@A#<*r}Pe;~O~Z)Fho4!~i;=DJ{bOq^X+cLLIOU+?-jZsLdA5@7|9_b2&6$ zQx}NzYaToerUi`F&k}(_^o2IX^$rMJ(>@gfXF@;KHainA=`LyatV3zE^R)YPW$60r z+Rh{==E))L@tu(nvQK*|1@Zp8_WK&ln*}cI?Qh30^1ob7EG^vb-YTqTna5mXV!XRr zTE#O7E+1`BYB-hCv$T#@Q!Ult-Xj8md5EtdJ2g->)sqLU5zh*&>+!V|U&|k2`R3^jx<#hq68%zrE--Ukg^B)8 z&iNmVwK!Rer`mHG&;Lga`w6vBXVsZZdeeWwo0BHs>p-a%BG-b}>ItFY_^kkRHP)pQ z={)=8RQHf>aGu_lYc&>5NVgbDOvW6m>uv8K_tfCGSci!WK&XXb9_jY~z^$109!_OI zTZ{j7zl2Gi|F#?dOY-!E7MpQ`g3g>*qPJpYF?*5A zP~hwSI4nhUr$vV|@u6e_QXTUAq^kmJkA08ys7*#&af!vy8WrsNK1Ozz#UzD>ctY$r l_^3)=R=r8Dv$={A{oF0t+XQz-zKL-U75rS`KC&T<5D_e`FBFzVR$-Tym?jEEBMRD(h!CLB)uJ}h zh^cD^$ixgjAUX;vOBzV5HZ@F>RND}>aq`ewX|0bS@r9{YdmuCIAIaAhlLM2h1dLDZNS{$0luw3{!ZYDt&l1=0P=CjTX@>9Lv9KH=G}vQtqO2{0mIfF zAaW1^t$Tr-^9U|-0Lgce)RqBE_zd>>YXRd3^7mgR-cb~kF>c~fJattD=9i+RYaJkc zg}O>B;L=pV)%6bWWD8zyas!E>=qo-8m^NW}V>MvV3d)z=fM!6L+1U=n*9c|Z3mBg& ztjK>G_=!9!vD62r|*!U2b^0m;ZdmRXPQSfMM04x`JKAl4% zQ9}QtlW-ySgz$+^KagP;ZWg2g!ILzWhNTSHs!6*v2&A6WWN(@Z%OdKlxUjI zv0&hU=9v2m5Pn{BW&sCi=LiMwQcNZe9;42T#Iw{ABBNeyEAU3NA% zQ`|qoj+7R$M;ifnKM?!BqQohW#S5Rauwk)y|KziPnkZ>rB7WvQNwyGoj#1M870#hmBz;parV(t!mSV>-7aN^x`FXGq_Ryr zIP2%7RSBzsxS7(<{^cZmP3pLRoblz-ky#?~%u??|<_Bt|vp=^2|(xrGK@v?v(X1T$U-6EJ2Qch31LRk|!rJAs|_{C$W<-MRqJV0=AFkpLr8N<0IE) z*8ypd<&B|x_&ihIJb{1~hy3ebaYSJ**}bC?&_~NV=Se{Hkle3hL%Nsbp_V_CMr?Hcgft^tVsJvAUQw@I;a96f->$K0%smoB1^a-wi?C$ zR|2c+l;vIRRO*USSx4a13CatddwDh~>l!A|^$|+ra5dwuDLapm(Bv4Ud0>#EDp%f` z&BoHVEBkk!1ZG9MlvBQMGT>F^{1y@k3RW)0aJKPhl|lIq5Nc6wKJ+J%)yl)lg*-2M zrIlN_t|z=~eMLa*U9S~)Qh?csUL8*}KjWs?{fi`|y`hzp!`OMRHu2kZ;+)b}4F=Ey z!`h|-DmiJ5wk6vSnC|M-9_ZlgGBdOXW7lxM>$U$pNR#-@&_0Tr1|+Ok4R+4h@VV+2 zXr@9})$j+mDfuBaei6U_=p%JuABkCu)n{gU*x4<$E;o+Ab!xqvN@cXE^(UfNW7 zVmSLAbzjg_n*OlbH-q`Egd1vK-x-eJvf96$5+#JIe|*fq>@Di)p-#HJUmeKe7C3b3 zP0xokU9-+II>VR}-Hg2^?s>1SU~L*rxLxaw8)yHdZrK4UWR23*o+7dF z^K}h6*2!6^+tJ$#aV`W8He35 zNO2^bb>Cpz^@yEY4SsKsP?FgYyHetQ27O{k99cv+#v0O$b9s>j8M21`>2kASVedHt z9X2%hQL@-{!z-sJbIo=e4z#c04QVlqj1rpXZ}=`QfM$Bi@F0I5&G)r8-llnH9rSiA zV*b>}-i--q?0lE^n>C}~o4tQ45P$Y2qj=d>&2{+F=zp9F=sS!dAK2L0O=I+{f2V}4 z#-#2+n#pcllF#4A9WuTcN@ci6jkA|<6qk%2eGo%atv6mm7YT1LK3GgbIld;dGm1A{ zxhci{E*0!HJrhC&LbsW=H74>#JZyTSHiZogn|7t7KT8GjO&v*%yh>|LN181(RfXyO z6egH2nr>9_0&<))eS760{~MYsfIQLjd*zxqH4Ij)Kp9r^Rl##PmLZa#oGI^CrZT&Vu}hh`hMCWeofTuxB2mqAHJ?|EVLm@r zWi)Ele{n;sPKPzU$mZa?G%vlN$d*&;Tu_v^z+IMP_T>2FYdz;e{vdjy!vCyB`@qfu zqX4VN3jGg8Yj+gc3LNR~7ktg0;n+;U^UI0n$9dXp+r7jv*xY-W+5>ch3sJ!YFV^~W&d9peW5d_*jDg;&Zmy|HSR8x d;x5iNS$-hcRJfop&*mt!J00IA)aOr9{sY`BCg1=7 delta 2367 zcmah}dvuI<8h*Z+@B1>}TqE~L5F(^0X-H@&VUqbqhRIAaNpMhULIjN>5e;V<8kbhx zYEq%6dfXCGN2rNQb}f3y-n5I=s;*sKm8Iyq1RLtI`wY9?%OATZXY%`gx95GH_j%vn ziQPiO9${^mw-Fd|4Cpif$g2fjcGnZ|s!+VI z5a`n=OwHQ?3|b^CoL34sCJQy~XMuz@!m7_nY{UVfVaa14)h+DSzYj!=68yR<0A)h+ z>EZBV)FYww>2ctNe!_2pTLGIO-11}q(aSXP^CyvUsV3u68<0Lglf5(z$mpe+bnz}T zlCG)yk^!TVG>3gxfw+E}vx`%KusqG>UpuKVU(??I1z>2i=C7|4KisS}BvXhkUmNj> z1jswIkwI^JfuMSAe*=|99@UP%p)$3HwbPH@C(}jRch`gh{l3@M-=~u7soKU4Dv&+e zW?eVHRHtqI!!}^RZ0*Ib7|8HY`{4Lw2KY{t;)!GZg=jeU5O5cYrUy3Q6`N?8lMe{Z zV#t9d6!4Z9GuRvO;)&QL=_b9li+$Rofhm-CWuT@9c=BGrx*x&E5es;3}*lyq~$Z&`$*)KN{mq*ke8b1f~rBs~dT zO=72I?LiV(-LhBQP6DaR<;YzM(0QC3^A`f!r^#^>H*)-1E^Df1H*AroR}=8%_44f9 z+Xw`C;ryQLmiOeE+m(Q_Os+jlA}Mup-I+F8qme%vMnPF4J89J+KHn`k%U@wPZI~R4cir?gB}|zm5_)~9^9gIeRP-Y)Ky8E z!1>FAl`$!d z3hyURR9afj0)q>c)-}wOx9?izIxBMsQouZEqc-ZT- z-m@Ts#V6>;8JRK1ZGCacx14X%m+oX{Y+vi=envuFx9jKY86Zd1uRC;zIJNrvgj5#a z3cbIhl!{II<}s|HxWoGWP21T2X{Yo*9e9%&a2ccx1RmUCu(UH^#5qIw-mXCRBtyaC zElk}RL)Aw%0;U_5-M!ECI>YM9o>aKsu(g4yk3MI(ww4}u%`u9Jyq_IwG;exJmr^+s<=t6Lzq8hfOlMCh-2i*`~K%9Y71dGS&3S zU?$!)t-KS;m$kw4VO3yXG5uU%JnK-?g?nBCDCuVHs&O7q{9KhgTH>pha8GgQ2R zxtN9u-=&P`u*fWTPHtg=wZP$a6{)V#4v*XAvsxnjjlp?3HHoLIQHn{Z!Wk3$dwoYoW8CNFA$Y5joQrYz`~Q_@79{#0?<-fApAtqUTyY zR;N>S{zsU?G}s7JNx~JBIE$pGVI~DXr&`IeoGT^VEe@oBKc4=PdX!Dg&+<5OpC!X> zFLF9EJywsy*F84O|1j#8T5l%ogsZ>|DlR9)zu;$ay^1@}0|jPt_+9#s{}r59KBw|y zuwHhzC#TT)JoEf6vZ=Z5e8;ocR+p_v^>F5P1u><%;gd_J6jzn|W_6PN$6`+@{u8}y z!oZ$z60?#q0-glC2nd|QwMm%zOj^aii8DDJ`2|I8yKiAalwX&4J|?vXT;x21_X7N$ zBgC;b0`vc78{|=)sx{x&$sFqcQ`VXwLj(<-!aqv%EgF^P*Er`0{sTEXHU6EsG4kI5 D$n9I8 diff --git a/Telemac/stbtel_cata_auto.py b/Telemac/stbtel_cata_auto.py index abd65076..1283831f 100644 --- a/Telemac/stbtel_cata_auto.py +++ b/Telemac/stbtel_cata_auto.py @@ -44,110 +44,280 @@ JdC = JDC_CATA (code = 'STBTEL', # Catalog entry for the MAP function : c_pre_interfaceBody_mesh # ======================================================================= -VERSION_CATALOGUE="TRUNK_20180306" +VERSION_CATALOGUE="TRUNK_20210323" # ----------------------------------------------------------------------- -GENERALITIES = PROC(nom= "GENERALITIES",op = None, +TREATMENT = PROC(nom= "TREATMENT",op = None, # ----------------------------------------------------------------------- # ----------------------------------- - MAXIMUM_NUMBER_OF_BATHYMETRIC_POINTS = SIMP(statut ='f', + MINIMUM_DISTANCE_BETWEEN_TWO_POINTS = SIMP(statut ='o', # ----------------------------------- - typ = 'I', - defaut = 20000, - fr = """Permet de dimensionner le tableau utilise pour la lecture, dans les -\telkey{FICHIERS DES FONDS}, des points releves a la table a -digitaliser.""", - ang = """Designed for dimensioning the array that is used for reading, in the -\telkey{BOTTOM TOPOGRAPHY FILES}, the points recorded at the digitizing -tablet.""", + typ = 'R', + defaut = 1.E-5, + fr = """Distance (en metres)en dessous de laquelle deux noeuds sont consideres +comme confondus par \stbtel, lors de la verification des resultats +fournis par le mailleur. Lorsque deux noeuds sont confondus, l''un +d''entre eux est elimine, et tous les noeuds du maillage sont +renumerotes.""", + ang = """Distance (in meters) below which two nodes are considered as identical +by \stbtel when the results supplied by the mesh generator are being +checked. When two nodes occur at the same place, one of them is +eliminated and all the mesh nodes are renumbered.""", ), # ----------------------------------- - VECTOR_LENGTH = SIMP(statut ='f', + MESH_GENERATOR = SIMP(statut ='o', # ----------------------------------- - typ = 'I', - defaut = 1, - fr = """Permet de fixer, sur machine vectorielle, la longueur du vecteur.""", - ang = """Designed for dimensioning the vector length on vector machine.""", + typ = 'TXM', + into = ['SUPERTAB4','SUPERTAB6','MASTER2','SIMAIL','SELAFIN','TRIGRID','ADCIRC','FASTTABS'], + defaut = 'MASTER2', + fr = """Nom du mailleur utilise pour la creation du \telkey{FICHIER UNIVERSEL}. +Ce peut etre : +\begin{itemize} +\item SUPERTAB6 (version 6 du mailleur SUPERTAB), +\item SUPERTAB4 (version 4 du mailleur SUPERTAB), +\item MASTER2 (version 2 du mailleur MASTER-SERIES), +\item SIMAIL, +\item SELAFIN (afin de modifier un maillage deja utilise, comme pour : +\begin{itemize} +\item interpoler de nouveau fonds +\item eliminer des dependances arrieres +\item coupe triangles surcontraints), +\end{itemize} +\item TRIGRID, +\item FASTTABS. +\end{itemize}""", + ang = """Name of the mesh generator used for preparing the \telkey{UNIVERSAL +FILE}. It will be selected among the following: +\begin{itemize} +\item SUPERTAB6 (version 6 of SUPERTAB mesh generator), +\item SUPERTAB4 (version 4 of SUPERTAB mesh generator), +\item MASTER2 (version 2 of MASTER-SERIES mesh generator), +\item SIMAIL, +\item SELAFIN (in order to modify a mesh already used, as for example : +\begin{itemize} +\item to interpolate a new bathymetry +\item to eliminate backward dependencies +\item to cut overstressed triangles ), +\end{itemize} +\item TRIGRID, +\item FASTTABS. +\end{itemize}""", ), # ----------------------------------- - NUMBER_OF_VERTICES_OF_THE_POLYGON_TO_EXTRACT_THE_MESH = SIMP(statut ='f', + b_MESH_GENERATORG = BLOC(condition="MESH_GENERATOR == 'TRIGRID'", # ----------------------------------- - typ = 'I', - defaut = 0, - fr = """Lorsque l''on souhaite extraire une partie du maillage, permet de -definir le nombre de sommets du polygone a l''interieur duquel le -maillage sera effectivement extrait.\\ -\begin{WarningBlock}{Attention :} -Ce polygone doit etre convexe et les coordonnees des sommets donnes dans -l''ordre trigonometrique. \end{WarningBlock}""", - ang = """When you want to extract a piece of the mesh, this key-word fixes -the number of vertices of a polygon inside of which the mesh will be -finally extracted.\\ -\begin{WarningBlock}{Warning:} -This polygon should have a convex shape and the coordinates of the -vertices be given with an anti clock wise order. -\end{WarningBlock}""", +# ----------------------------------- + BOTTOM_CORRECTION_OF_TRIGRID = SIMP(statut ='o', +# ----------------------------------- + typ = 'R', + defaut = 0., + fr = """Fixe la valeur a ajouter a la bathymetrie lue dans le fichier +gemere par Trigrid.""", + ang = """Value to be added at the bottom value read in the Trigrid file""", + ), ), # ----------------------------------- - NUMBER_OF_VERTICES_OF_THE_POLYGON_TO_REFINE_THE_MESH = SIMP(statut ='f', + b_MESH_GENERATORH = BLOC(condition="MESH_GENERATOR in ['FASTTABS', 'TRIGRID']", # ----------------------------------- - typ = 'I', - defaut = 0, - fr = """Lorsque l''on souhaite raffiner une partie du maillage, -permet de definir le nombre de sommets du polygone a l''interieur -duquel le maillage sera effectivement raffine.\\ -\begin{WarningBlock}{Attention:} -Ce polygone doit etre convexe et les coordonnees des -sommets donnes dans l''ordre trigonometrique. -\end{WarningBlock}""", - ang = """When you want to refine a piece of the mesh, this key-word fixes -the number of vertices of a polygon inside of which the mesh will be -finally refined.\\ -\begin{WarningBlock}{ATTENTION:} -This polygon should have a convex shape and the coordinates -of the vertices be given with an anti clock wise order. -\end{WarningBlock}""", +# ----------------------------------- + BATHYMETRY_IN_THE_UNIVERSAL_FILE = SIMP(statut ='o', +# ----------------------------------- + typ = bool, + defaut = False, + fr = """Permet de relire la bathymetrie directement dans le fichier de +maillage (Trigrid ou Fasttabs).""", + ang = """The bathymetry will be read in the mesh file (Trigrid or Fasttabs).""", + ), +# ----------------------------------- + MESH_ADDITIONAL_DATA_FILE = SIMP(statut ='o', +# ----------------------------------- + typ = ('Fichier','All Files (*)'), + defaut = '', + fr = """Nom du fichier additionnel. Ce fichier a une signification +differente en fonction du mailleur choisi. +\begin{itemize} +\item Trigrid : Fichier contenant la table de connectivites +(obligatoire). +\item Fasttabs : Fichier contenant les conditions limites (optionnel). +\end{itemize}""", + ang = """Name of the additionql file. The meaning of this file depend on the +type of mesh generator. +\begin{itemize} +\item Trigrid : containing the connectivity table built (mandatory). +\item Fasttabs : boundary condition file built by Fasttabs (optional). +\end{itemize}""", + ), ), # ----------------------------------- - PARALLEL_PROCESSORS = SIMP(statut ='f', + BINARY_STANDARD = SIMP(statut ='f', # ----------------------------------- - typ = 'I', - defaut = 0, - fr = """Nombre de processeurs en calcul parallele + typ = 'TXM', + into = ['STD','IBM','I3E'], + defaut = 'STD', + fr = """Adapte l''ecriture du \telkey{FICHIER DE GEOMETRIE POUR TELEMAC} au +standard binaire choisi pour celui-ci. Ce peut etre : \begin{itemize} -\item 0 : 1 machine, compilation sans bibliotheque de parallelisme -\item 1 : 1 machine, compilation avec bibliotheque de parallelisme -\item 2 : 2 processeurs ou machines en parallele -\item etc\ldots +\item IBM : binaire IBM, +\item I3E : binaire HP, +\item STD : prend par defaut le binaire de la machine sur laquelle + l''utilisateur travaille. Ce sont alors des ordres READ et + WRITE normaux qui sont utilises. \end{itemize}""", - ang = """Number of processors for parallel processing + ang = """Matches the writing of the \telkey{GEOMETRY FILE FOR TELEMAC} to the +binary standard chosen for the latter. It will be selected among the +following: \begin{itemize} -\item 0 : 1 machine, compiling without parallel library -\item 1 : 1 machine, compiling with a parallel library -\item 2 : 2 processors or machines in parallel -\item etc\ldots +\item IBM: IBM binary, +\item I3E: HP binary, +\item STD: takes by default the binary on the computer with which + the user is working. The normal READ and WRITE commands + are then used. \end{itemize}""", ), # ----------------------------------- - MINIMUM_DISTANCE_BETWEEN_TWO_POINTS = SIMP(statut ='f', + UNIVERSAL_FILE = SIMP(statut ='o', # ----------------------------------- - typ = 'R', - defaut = 1.E-5, - fr = """Distance (en metres)en dessous de laquelle deux noeuds sont consideres -comme confondus par \stbtel, lors de la verification des resultats -fournis par le mailleur. Lorsque deux noeuds sont confondus, l''un -d''entre eux est elimine, et tous les noeuds du maillage sont -renumerotes.""", - ang = """Distance (in meters) below which two nodes are considered as identical -by \stbtel when the results supplied by the mesh generator are being -checked. When two nodes occur at the same place, one of them is -eliminated and all the mesh nodes are renumbered.""", + typ = ('Fichier','All Files (*)'), + defaut = '', + fr = """Nom du fichier construit par le mailleur, a partir duquel \stbtel va +travailler.""", + ang = """Name of the file created by the mesh generator, and from which \stbtel +will work.""", ), # ----------------------------------- - MINIMUM_DISTANCE_AT_BOUNDARY = SIMP(statut ='f', + GEOMETRY_FILE_FORMAT_FOR_TELEMAC = SIMP(statut ='f', # ----------------------------------- - typ = 'R', - defaut = 0., - fr = """L''interpolation de la bathymetrie sur les noeuds du maillage est + typ = 'TXM', + into = ['','SERAFIN','SERAFIND','MED'], + defaut = '', + fr = """Format du fichier qui contiendra le maillage, et qui servira pour +les calculs \telemac{2D}. Si aucun format n''est donné il prendra +soit le même format que le fichier universel si il est en +SERAFIN/SERAFIND sinon SERAFIN""", + ang = """Format of the file that will contain the mesh data, +and to be used in \telemac{2D} computations. +If no format is given it will take the format of the universal +file (if it is SERAFIN file) SERAFIN otherwise""", + ), +# ----------------------------------- + GEOMETRY_FILE_FOR_TELEMAC = SIMP(statut ='o', +# ----------------------------------- + typ = ('Fichier','All Files (*)','Sauvegarde'), + defaut = '', + fr = """Nom du fichier qui contiendra le maillage mis au format SELAFIN, et +qui servira pour les calculs \telemac{2D}.""", + ang = """Name of the file that will contain the mesh data to SELAFIN format, +and to be used in \telemac{2D} computations.""", + ), +# ----------------------------------- + BOUNDARY_CONDITIONS_FILE = SIMP(statut ='o', +# ----------------------------------- + typ = ('Fichier','All Files (*)','Sauvegarde'), + defaut = '', + fr = """Nom du fichier qui contiendra les conditions aux limites lues dans le +\telkey{FICHIER UNIVERSEL}, et qui servira pour les calculs +\telemac{2D}. (les conditions aux limites sont definies lors de la +realisation du maillage, au moyen de couleurs affectees aux noeuds des +frontieres du domaine de calcul).""", + ang = """Name of the file that will contain the boundary conditions being read +from the \telkey{UNIVERSAL FILE}, and to be used in \telemac{2D} +computations. (The boundary conditions are defined when preparing the +meshes, through colours that are allotted to the nodes of the +computation domain boundaries).""", + ), +# ----------------------------------- + BOUNDARY_CONDITIONS_IN_THE_ADDITIONAL_FILE = SIMP(statut ='o', +# ----------------------------------- + typ = bool, + defaut = False, + fr = """Permet de relire les conditions limites dans le fichier +additionnel (Fasttabs).""", + ang = """The boundary condition will be read in the additional file + (Fasttabs).""", + ), +# ----------------------------------- + BOUNDARY_UNIVERSAL_FILE = SIMP(statut ='f', +# ----------------------------------- + typ = ('Fichier','All Files (*)'), + defaut = '', + fr = """Nom du fichier construit par le mailleur, a partir duquel \stbtel va +travailler.""", + ang = """Name of the file created by the mesh generator, and from which \stbtel +will work.""", + ), +# ----------------------------------- + OVERSTRESSED_TRIANGLES_CUTTING = SIMP(statut ='o', +# ----------------------------------- + typ = bool, + defaut = False, + fr = """Un triangle surcontraint est tel que ses trois noeuds soient situes +sur une frontiere du domaine de calcul. La presence de tels triangles +peut entrainer des instabilites lors des calculs realises par +TELEMAC 2D.\\ +Cette option permet, en creant un noeud place au barycentre de des +triangles surcontraints, d''eviter de tels problemes.""", + ang = """An overstressed triangle is one whose three nodes are located along a +boundary of the computational domain. The occurrence of such triangles +may bring about instabilities in the computations made by TELEMAC 2D. +Such problems can be prevented by this option, through the creation of +a node at the geometric centres of the overstressed triangles.""", + ), +# ----------------------------------- + ELIMINATION_OF_BACKWARD_DEPENDENCIES = SIMP(statut ='o', +# ----------------------------------- + typ = bool, + defaut = True, + fr = """Permet de renumeroter les noeuds du maillage de maniere a eliminer les +dependances arrieres et autoriser ainsi le forcage de la vectorisation +lorsque les calculs TELEMAC 2D son effectues sur CRAY.\\ +\begin{WarningBlock}{Attention :} +Un nombre minimum d''environ 500 noeuds est requis pour +l''activation de cette option. +\end{WarningBlock}""", + ang = """Provides for renumbering of the mesh nodes in order to eliminate the +backward dependencies, thereby enabling a forced vectorisation when +the TELEMAC 2D computations are made on a CRAY.\\ +\begin{WarningBlock}{Warning:} +About 500 nodes is the least number required for activating +this option. +\end{WarningBlock}""", + ), +# ----------------------------------- + NODES_RENUMBERING = SIMP(statut ='o', +# ----------------------------------- + typ = bool, + defaut = False, + fr = """Permet d''utiliser le nouveau type de stockage des matrices.""", + ang = """Necessary to use the new storage scheme for the matrix.""", + ), +# ----------------------------------- + WRITING_NODE_COLOURS = SIMP(statut ='o', +# ----------------------------------- + typ = bool, + defaut = False, + fr = """Option non activee.""", + ang = """Option not activated""", + ), +# ----------------------------------- + BOTTOM = FACT(statut='f', +# ----------------------------------- +# ----------------------------------- + MAXIMUM_NUMBER_OF_BATHYMETRIC_POINTS = SIMP(statut ='o', +# ----------------------------------- + typ = 'I', + defaut = 20000, + fr = """Permet de dimensionner le tableau utilise pour la lecture, dans les +\telkey{FICHIERS DES FONDS}, des points releves a la table a +digitaliser.""", + ang = """Designed for dimensioning the array that is used for reading, in the +\telkey{BOTTOM TOPOGRAPHY FILES}, the points recorded at the digitizing +tablet.""", + ), +# ----------------------------------- + MINIMUM_DISTANCE_AT_BOUNDARY = SIMP(statut ='o', +# ----------------------------------- + typ = 'R', + defaut = 0., + fr = """L''interpolation de la bathymetrie sur les noeuds du maillage est realisee de la facon suivante. Pour chaque noeud du maillage, on decoupe le plan en 4 quadrans. Dans chacun de ces quadrans, on cherche le point releve a la table a digitaliser le plus proche. On affecte @@ -160,7 +330,7 @@ introduire d''aberration dans la bathymetrie.\\ Ce mot-cle permet alors de definir la distance minimale aux frontieres du domaine en dessous de laquelle on refuse de prendre en compte les points releves.""", - ang = """The bathymetric data at the mesh nodes are interpolated. At each mesh + ang = """The bathymetric data at the mesh nodes are interpolated. At each mesh node, the plane is cut into 4 quadrants in each of which, among the points recorded at the digitizing tablet, the closest one to the node being considered is searched for.\\ @@ -172,347 +342,322 @@ make sure the boundaries aare not overstepped in order to prevent aberrations from being introduced into the bathymetric data.\\ The keyword can then be used for specifying the minimum distance to the boundaries below which the recorded points should be ignored.""", + ), +# ----------------------------------- + BOTTOM_TOPOGRAPHY_FILES = SIMP(statut ='f', +# ----------------------------------- + typ = ('Fichier','All Files (*)'), + defaut = '', + fr = """Nom du fichier contenant la bathymetrie (au standard SINUSX), qui +servira pour la definition, par interpolation, de la profondeur en +chaque point du maillage.""", + ang = """Name of the file containing the bathymetric points (to SINUSX +standard), to be used, through interpolation, for defining the depth +at each point of the mesh.""", + ), +# ----------------------------------- + BOTTOM_TOPOGRAPHY_FILES_2 = SIMP(statut ='f', +# ----------------------------------- + typ = ('Fichier','All Files (*)'), + defaut = '', + fr = """Nom du fichier contenant la bathymetrie (au standard SINUSX), qui +servira pour la definition, par interpolation, de la profondeur en +chaque point du maillage.""", + ang = """Name of the file containing the bathymetric points (to SINUSX +standard), to be used, through interpolation, for defining the depth +at each point of the mesh.""", + ), +# ----------------------------------- + BOTTOM_TOPOGRAPHY_FILES_3 = SIMP(statut ='f', +# ----------------------------------- + typ = ('Fichier','All Files (*)'), + defaut = '', + fr = """Nom du fichier contenant la bathymetrie (au standard SINUSX), qui +servira pour la definition, par interpolation, de la profondeur en +chaque point du maillage.""", + ang = """Name of the file containing the bathymetric points (to SINUSX +standard), to be used, through interpolation, for defining the depth +at each point of the mesh.""", + ), +# ----------------------------------- + BOTTOM_TOPOGRAPHY_FILES_4 = SIMP(statut ='f', +# ----------------------------------- + typ = ('Fichier','All Files (*)'), + defaut = '', + fr = """Nom du fichier contenant la bathymetrie (au standard SINUSX), qui +servira pour la definition, par interpolation, de la profondeur en +chaque point du maillage.""", + ang = """Name of the file containing the bathymetric points (to SINUSX +standard), to be used, through interpolation, for defining the depth +at each point of the mesh.""", + ), +# ----------------------------------- + BOTTOM_TOPOGRAPHY_FILES_5 = SIMP(statut ='f', +# ----------------------------------- + typ = ('Fichier','All Files (*)'), + defaut = '', + fr = """Nom du fichier contenant la bathymetrie (au standard SINUSX), qui +servira pour la definition, par interpolation, de la profondeur en +chaque point du maillage.""", + ang = """Name of the file containing the bathymetric points (to SINUSX +standard), to be used, through interpolation, for defining the depth +at each point of the mesh.""", + ), ), # ----------------------------------- - BOTTOM_CORRECTION_OF_TRIGRID = SIMP(statut ='f', -# ----------------------------------- - typ = 'R', - defaut = 0., - fr = """Fixe la valeur a ajouter a la bathymetrie lue dans le fichier -gemere par Trigrid.""", - ang = """Value to be added at the bottom value read in the Trigrid file""", - ), -# ----------------------------------- - ABSCISSAE_OF_THE_VERTICES_OF_THE_POLYGON_TO_EXTRACT_THE_MESH = SIMP(statut ='f', + EXTRACTION = FACT(statut='f', # ----------------------------------- - typ = 'R', min= 9, max= 9, - defaut = [0,0,0,0,0,0,0,0,0], - fr = """Lorsque l''on souhaite extraire une partie du maillage, +# ----------------------------------- + NUMBER_OF_VERTICES_OF_THE_POLYGON_TO_EXTRACT_THE_MESH = SIMP(statut ='o', +# ----------------------------------- + typ = 'I', + defaut = 0, + fr = """Lorsque l''on souhaite extraire une partie du maillage, permet de +definir le nombre de sommets du polygone a l''interieur duquel le +maillage sera effectivement extrait.\\ +\begin{WarningBlock}{Attention :} +Ce polygone doit etre convexe et les coordonnees des sommets donnes dans +l''ordre trigonometrique. \end{WarningBlock}""", + ang = """When you want to extract a piece of the mesh, this key-word fixes +the number of vertices of a polygon inside of which the mesh will be +finally extracted.\\ +\begin{WarningBlock}{Warning:} +This polygon should have a convex shape and the coordinates of the +vertices be given with an anti clock wise order. +\end{WarningBlock}""", + ), +# ----------------------------------- + b_NUMBER_OF_VERTICES_OF_THE_POLYGON_TO_EXTRACT_THE_MESHG = BLOC(condition="NUMBER_OF_VERTICES_OF_THE_POLYGON_TO_EXTRACT_THE_MESH > 0", +# ----------------------------------- +# ----------------------------------- + ABSCISSAE_OF_THE_VERTICES_OF_THE_POLYGON_TO_EXTRACT_THE_MESH = SIMP(statut ='o', +# ----------------------------------- + typ = 'R', min=0, max='**', + defaut = [0,0,0,0,0,0,0,0,0], + fr = """Lorsque l''on souhaite extraire une partie du maillage, permet de definir les abscisses des sommets du polygone a l''interieur duquel le maillage sera effectivement extrait. \begin{WarningBlock}{Attention :} ce polygone doit etre convexe et les coordonnees des sommets donnes dans l''ordre trigonometrique. \end{WarningBlock}""", - ang = """When you want to extract a piece of the mesh, this key-word fixes + ang = """When you want to extract a piece of the mesh, this key-word fixes the abscissae of the vertices of a polygon inside of which the mesh will be finally extracted.\\ \begin{WarningBlock}{Warning:} This polygon should have a convex shape and the coordinates of the vertices be given with an anti clock wise order. \end{WarningBlock}""", - ), -# ----------------------------------- - ORDINATES_OF_THE_VERTICES_OF_THE_POLYGON_TO_EXTRACT_THE_MESH = SIMP(statut ='f', -# ----------------------------------- - typ = 'R', min= 9, max= 9, - defaut = [0,0,0,0,0,0,0,0,0], - fr = """Lorsque l''on souhaite extraire une partie du maillage, + ), +# ----------------------------------- + ORDINATES_OF_THE_VERTICES_OF_THE_POLYGON_TO_EXTRACT_THE_MESH = SIMP(statut ='o', +# ----------------------------------- + typ = 'R', min=0, max='**', + defaut = [0,0,0,0,0,0,0,0,0], + fr = """Lorsque l''on souhaite extraire une partie du maillage, permet de definir les ordonnees des sommets du polygone a l''interieur duquel le maillage sera effectivement extrait.\\ \begin{WarningBlock}{Attention :} Ce polygone doit etre convexe et les coordonnees des sommets donnes dans l''ordre trigonometrique. \end{WarningBlock}""", - ang = """When you want to extract a piece of the mesh, this key-word fixes + ang = """When you want to extract a piece of the mesh, this key-word fixes the ordinates of the vertices of a polygon inside of which the mesh will be finally extracted.\\ \begin{WarningBlock}{Warning:} This polygon should have a convex shape and the coordinates of the vertices be given with an anti clock wise order. \end{WarningBlock}""", + ), +# ----------------------------------- + PROJECTION_AFTER_EXTRACTION = SIMP(statut ='o', +# ----------------------------------- + typ = bool, min=0, max='**', + defaut = [True ], + fr = """Lors d''une extraction de maillage suivant un polygone, projette ou +non le maillage extrait sur les aretes du polygone.""", + ang = """When a mesh is extracted inside a polygon, indicates whether the mesh +should be projected through the faces of the polygon or not.""", + ), + ), ), # ----------------------------------- - ABSCISSAE_OF_THE_VERTICES_OF_THE_POLYGON_TO_REFINE_THE_MESH = SIMP(statut ='f', + REFINEMENT = FACT(statut='f', # ----------------------------------- - typ = 'R', min= 9, max= 9, - defaut = [0,0,0,0,0,0,0,0,0], - fr = """Lorsque l''on souhaite raffiner une partie du maillage, +# ----------------------------------- + CUTTING_ELEMENTS_IN_FOUR = SIMP(statut ='o', +# ----------------------------------- + typ = bool, + defaut = False, + fr = """Decoupe chaque element du mayage en quatre elements homothetiques +en joignant les milieux des aretes.""", + ang = """Cuts every element of the mesh in four homothetic elements +by joigning the middle points of each side.""", + ), +# ----------------------------------- + MAX_SEGMENTS_PER_POINT = SIMP(statut ='f', +# ----------------------------------- + typ = 'I', + defaut = 11, + fr = """Nombre max de segments qui contiennent le meme point. +Cette valeur est à incrémentée si le code le demande.""", + ang = """Max number of segments containing the same point. +This is to be increased if the code asks for it.""", + ), +# ----------------------------------- + NUMBER_OF_VERTICES_OF_THE_POLYGON_TO_REFINE_THE_MESH = SIMP(statut ='f', +# ----------------------------------- + typ = 'I', + defaut = 0, + fr = """Lorsque l''on souhaite raffiner une partie du maillage, +permet de definir le nombre de sommets du polygone a l''interieur +duquel le maillage sera effectivement raffine.\\ +\begin{WarningBlock}{Attention:} +Ce polygone doit etre convexe et les coordonnees des +sommets donnes dans l''ordre trigonometrique. +\end{WarningBlock}""", + ang = """When you want to refine a piece of the mesh, this key-word fixes +the number of vertices of a polygon inside of which the mesh will be +finally refined.\\ +\begin{WarningBlock}{ATTENTION:} +This polygon should have a convex shape and the coordinates +of the vertices be given with an anti clock wise order. +\end{WarningBlock}""", + ), +# ----------------------------------- + b_NUMBER_OF_VERTICES_OF_THE_POLYGON_TO_REFINE_THE_MESHG = BLOC(condition="NUMBER_OF_VERTICES_OF_THE_POLYGON_TO_REFINE_THE_MESH > 0", +# ----------------------------------- +# ----------------------------------- + ABSCISSAE_OF_THE_VERTICES_OF_THE_POLYGON_TO_REFINE_THE_MESH = SIMP(statut ='o', +# ----------------------------------- + typ = 'R', min=0, max='**', + defaut = [0,0,0,0,0,0,0,0,0], + fr = """Lorsque l''on souhaite raffiner une partie du maillage, permet de definir les abscisses des sommets du polygone a l''interieur duquel le maillage sera effectivement raffine.\\ \begin{WarningBlock}{Attention :} ce polygone doit etre convexe et les coordonnees des sommets donnes dans l''ordre trigonometrique. \end{WarningBlock}""", - ang = """When you want to refine a piece of the mesh, this key-word fixes + ang = """When you want to refine a piece of the mesh, this key-word fixes the abscissae of the vertices of a polygon inside of which the mesh will be finally refined.\\ \begin{WarningBlock}{Warning:} This polygon should have a convex shape and the coordinates of the vertices be given with an anti clock wise order. \end{WarningBlock}""", - ), -# ----------------------------------- - ORDINATES_OF_THE_VERTICES_OF_THE_POLYGON_TO_REFINE_THE_MESH = SIMP(statut ='f', -# ----------------------------------- - typ = 'R', min= 9, max= 9, - defaut = [0,0,0,0,0,0,0,0,0], - fr = """Lorsque l''on souhaite raffiner une partie du maillage, + ), +# ----------------------------------- + ORDINATES_OF_THE_VERTICES_OF_THE_POLYGON_TO_REFINE_THE_MESH = SIMP(statut ='o', +# ----------------------------------- + typ = 'R', min=0, max='**', + defaut = [0,0,0,0,0,0,0,0,0], + fr = """Lorsque l''on souhaite raffiner une partie du maillage, permet de definir les ordonnees des sommets du polygone a l''interieur duquel le maillage sera effectivement raffine.\\ \begin{WarningBlock}{Attention :} ce polygone doit etre convexe et les coordonnees des sommets donnes dans l''ordre trigonometrique. \end{WarningBlock}""", - ang = """When you want to refine a piece of the mesh, this key-word fixes + ang = """When you want to refine a piece of the mesh, this key-word fixes the ordinates of the vertices of a polygon inside of which the mesh -will be finally refined.\\ -\begin{WarningBlock}{Warning:} -This polygon should have a convex shape and the coordinates -of the vertices be given with an anti clock wise order. -\end{WarningBlock}""", - ), -# ----------------------------------- - OVERSTRESSED_TRIANGLES_CUTTING = SIMP(statut ='f', -# ----------------------------------- - typ = bool, - defaut = False, - fr = """Un triangle surcontraint est tel que ses trois noeuds soient situes -sur une frontiere du domaine de calcul. La presence de tels triangles -peut entrainer des instabilites lors des calculs realises par -TELEMAC 2D.\\ -Cette option permet, en creant un noeud place au barycentre de des -triangles surcontraints, d''eviter de tels problemes.""", - ang = """An overstressed triangle is one whose three nodes are located along a -boundary of the computational domain. The occurrence of such triangles -may bring about instabilities in the computations made by TELEMAC 2D. -Such problems can be prevented by this option, through the creation of -a node at the geometric centres of the overstressed triangles.""", - ), -# ----------------------------------- - WRITING_NODE_COLOURS = SIMP(statut ='f', -# ----------------------------------- - typ = bool, - defaut = False, - fr = """Option non activee.""", - ang = """Option not activated""", - ), -# ----------------------------------- - ELIMINATION_OF_BACKWARD_DEPENDENCIES = SIMP(statut ='f', -# ----------------------------------- - typ = bool, - defaut = True, - fr = """Permet de renumeroter les noeuds du maillage de maniere a eliminer les -dependances arrieres et autoriser ainsi le forcage de la vectorisation -lorsque les calculs TELEMAC 2D son effectues sur CRAY.\\ -\begin{WarningBlock}{Attention :} -Un nombre minimum d''environ 500 noeuds est requis pour -l''activation de cette option. -\end{WarningBlock}""", - ang = """Provides for renumbering of the mesh nodes in order to eliminate the -backward dependencies, thereby enabling a forced vectorisation when -the TELEMAC 2D computations are made on a CRAY.\\ -\begin{WarningBlock}{Warning:} -About 500 nodes is the least number required for activating -this option. -\end{WarningBlock}""", - ), -# ----------------------------------- - CUTTING_ELEMENTS_IN_FOUR = SIMP(statut ='f', -# ----------------------------------- - typ = bool, - defaut = False, - fr = """Decoupe chaque element du mayage en quatre elements homothetiques -en joignant les milieux des aretes.""", - ang = """Cuts every element of the mesh in four homothetic elements -by joigning the middle points of each side.""", - ), -# ----------------------------------- - BATHYMETRY_IN_THE_UNIVERSAL_FILE = SIMP(statut ='f', -# ----------------------------------- - typ = bool, - defaut = False, - fr = """Permet de relire la bathymetrie directement dans le fichier de -maillage (Trigrid ou Fasttabs).""", - ang = """The bathymetry will be read in the mesh file (Trigrid or Fasttabs).""", - ), -# ----------------------------------- - NODES_RENUMBERING = SIMP(statut ='f', -# ----------------------------------- - typ = bool, - defaut = False, - fr = """Permet d''utiliser le nouveau type de stockage des matrices.""", - ang = """Necessary to use the new storage scheme for the matrix.""", - ), -# ----------------------------------- - BOUNDARY_CONDITIONS_IN_THE_ADDITIONAL_FILE = SIMP(statut ='f', -# ----------------------------------- - typ = bool, - defaut = False, - fr = """Permet de relire les conditions limites dans le fichier -additionnel (Fasttabs).""", - ang = """The boundary condition will be read in the additional file - (Fasttabs).""", - ), -# ----------------------------------- - PROJECTION_AFTER_EXTRACTION = SIMP(statut ='f', -# ----------------------------------- - typ = bool, - defaut = True, - fr = """Lors d''une extraction de maillage suivant un polygone, projette ou -non le maillage extrait sur les aretes du polygone.""", - ang = """When a mesh is extracted inside a polygon, indicates whether the mesh -should be projected through the faces of the polygon or not.""", - ), -# ----------------------------------- - DRY_LIMIT = SIMP(statut ='f', -# ----------------------------------- - typ = 'R', - defaut = 0.1, - fr = """Fixe la valeur du seuil (en metre) de hauteur d''eau en dessous -duquel un noeud est considere comme sec.""", - ang = """Limit of water depth value (in meter) under which the node is -considered as dry node.""", - ), -# ----------------------------------- - DRY_ELEMENTS_ELIMINATION = SIMP(statut ='f', -# ----------------------------------- - typ = bool, - defaut = False, - fr = """Lors du traitement d''un fichier de resultats issu de \telemac{2D}, -permet d''activer l''elimination des elements secs.""", - ang = """When using a \telemac{2D} results file, this keyword activates the -dry elements elimination.""", - ), -# ----------------------------------- - PARTIALLY_DRY_ELEMENTS_ELIMINATION = SIMP(statut ='f', -# ----------------------------------- - typ = bool, - defaut = False, - fr = """Lors de l''elimination des elements secs, permet de specifier si -on traite les elements parteillement secs (au moins un noeud sec).""", - ang = """When removing dry elements, specify if the partially dry elements are -treated (at least one dry node).""", - ), -# ----------------------------------- - STORAGE_OF_ALL_TIME_STEPS = SIMP(statut ='f', -# ----------------------------------- - typ = bool, - defaut = False, - fr = """Lors du traitement d''elimination des elements secs, permet de -specifier si on restocke tous les pas de temps dans le fichier -resultat""", - ang = """When treating dry elements elimination, specify that -all time steps are to be stored in the results file.""", - ), -) -# ----------------------------------------------------------------------- -INPUT_OUTPUT__FILES = PROC(nom= "INPUT_OUTPUT__FILES",op = None, -# ----------------------------------------------------------------------- -# ----------------------------------- - NAMES = FACT(statut='f', -# ----------------------------------- -# ----------------------------------- - FORTRAN_FILE = SIMP(statut ='f', -# ----------------------------------- - typ = ('Fichier','All Files (*)'), max='**', - defaut = 'DEFAUT', - fr = """Nom du fichier Fortran a soumettre. -Il ne sert a priori qu''a dimensionner les tableaux utilises par -\stbtel, mais peut contenir des sous-programmes modifies ou propres a -l''utilisateur.""", - ang = """Name of Fortran file to be entered. -It is a priori only designed for dimensioning the arrays that are -used by \stbtel, but it may contain either modified or user-written -subroutines.""", - ), -# ----------------------------------- - STEERING_FILE = SIMP(statut ='f', -# ----------------------------------- - typ = ('Fichier','All Files (*)'), max='**', - defaut = '', - fr = """Nom du fichier contenant les references des fichiers et les options -du calcul a realiser.""", - ang = """Name of the file that contains the file references and of options for -the computation to be made.""", +will be finally refined.\\ +\begin{WarningBlock}{Warning:} +This polygon should have a convex shape and the coordinates +of the vertices be given with an anti clock wise order. +\end{WarningBlock}""", + ), ), + ), +# ----------------------------------- + DRY_ELEMENTS = FACT(statut='f', +# ----------------------------------- # ----------------------------------- - UNIVERSAL_FILE = SIMP(statut ='f', + DRY_ELEMENTS_ELIMINATION = SIMP(statut ='o', # ----------------------------------- - typ = ('Fichier','All Files (*)'), max='**', - defaut = '', - fr = """Nom du fichier construit par le mailleur, a partir duquel \stbtel va -travailler.""", - ang = """Name of the file created by the mesh generator, and from which \stbtel -will work.""", + typ = bool, + defaut = False, + fr = """Lors du traitement d''un fichier de resultats issu de \telemac{2D}, +permet d''activer l''elimination des elements secs.""", + ang = """When using a \telemac{2D} results file, this keyword activates the +dry elements elimination.""", ), # ----------------------------------- - GEOMETRY_FILE_FOR_TELEMAC = SIMP(statut ='f', + PARTIALLY_DRY_ELEMENTS_ELIMINATION = SIMP(statut ='o', # ----------------------------------- - typ = ('Fichier','All Files (*)','Sauvegarde'), max='**', - defaut = '', - fr = """Nom du fichier qui contiendra le maillage mis au format SELAFIN, et -qui servira pour les calculs \telemac{2D}.""", - ang = """Name of the file that will contain the mesh data to SELAFIN format, -and to be used in \telemac{2D} computations.""", + typ = bool, + defaut = False, + fr = """Lors de l''elimination des elements secs, permet de specifier si +on traite les elements parteillement secs (au moins un noeud sec).""", + ang = """When removing dry elements, specify if the partially dry elements are +treated (at least one dry node).""", ), # ----------------------------------- - BOUNDARY_CONDITIONS_FILE = SIMP(statut ='f', + DRY_LIMIT = SIMP(statut ='o', # ----------------------------------- - typ = ('Fichier','All Files (*)','Sauvegarde'), max='**', - defaut = '', - fr = """Nom du fichier qui contiendra les conditions aux limites lues dans le -\telkey{FICHIER UNIVERSEL}, et qui servira pour les calculs -\telemac{2D}. (les conditions aux limites sont definies lors de la -realisation du maillage, au moyen de couleurs affectees aux noeuds des -frontieres du domaine de calcul).""", - ang = """Name of the file that will contain the boundary conditions being read -from the \telkey{UNIVERSAL FILE}, and to be used in \telemac{2D} -computations. (The boundary conditions are defined when preparing the -meshes, through colours that are allotted to the nodes of the -computation domain boundaries).""", + typ = 'R', + defaut = 0.1, + fr = """Fixe la valeur du seuil (en metre) de hauteur d''eau en dessous +duquel un noeud est considere comme sec.""", + ang = """Limit of water depth value (in meter) under which the node is +considered as dry node.""", ), # ----------------------------------- - BOTTOM_TOPOGRAPHY_FILES = SIMP(statut ='f', + STORAGE_OF_ALL_TIME_STEPS = SIMP(statut ='o', # ----------------------------------- - typ = ('Fichier','All Files (*)'), max='**', - defaut = ';;;;', - fr = """Nom du fichier contenant la bathymetrie (au standard SINUSX), qui -servira pour la definition, par interpolation, de la profondeur en -chaque point du maillage.""", - ang = """Name of the file containing the bathymetric points (to SINUSX -standard), to be used, through interpolation, for defining the depth -at each point of the mesh.""", + typ = bool, + defaut = False, + fr = """Lors du traitement d''elimination des elements secs, permet de +specifier si on restocke tous les pas de temps dans le fichier +resultat""", + ang = """When treating dry elements elimination, specify that +all time steps are to be stored in the results file.""", ), + ), +) +# ----------------------------------------------------------------------- +CONVERTER_INFO = PROC(nom= "CONVERTER_INFO",op = None, +# ----------------------------------------------------------------------- +# ----------------------------------- + DEBUG = SIMP(statut ='o', +# ----------------------------------- + typ = bool, + defaut = False, + fr = """Permet d activer le mode debuggage.""", + ang = """Activate the debug mode.""", + ), +# ----------------------------------- + CONVERTER = SIMP(statut ='o', +# ----------------------------------- + typ = bool, + defaut = False, + fr = """Permet d activer le module de conversion.""", + ang = """Activate the conversion module.""", + ), +# ----------------------------------- + INPUT = FACT(statut='o', +# ----------------------------------- # ----------------------------------- - MESH_ADDITIONAL_DATA_FILE = SIMP(statut ='f', + INPUT_FILE_FORMAT = SIMP(statut ='o', # ----------------------------------- - typ = ('Fichier','All Files (*)'), max='**', - defaut = '', - fr = """Nom du fichier additionnel. Ce fichier a une signification -differente en fonction du mailleur choisi. -\begin{itemize} -\item Trigrid : Fichier contenant la table de connectivites -(obligatoire). -\item Fasttabs : Fichier contenant les conditions limites (optionnel). -\end{itemize}""", - ang = """Name of the additionql file. The meaning of this file depend on the -type of mesh generator. -\begin{itemize} -\item Trigrid : containing the connectivity table built (mandatory). -\item Fasttabs : boundary condition file built by Fasttabs (optional). -\end{itemize}""", + typ = 'TXM', + into = ['SERAFIN','SERAFIND','MED','UNV','CGNS'], + defaut = 'SERAFIN', + fr = """Specifie le format du fichier d entree""", + ang = """Specify input file format""", ), # ----------------------------------- - INPUT_FILE = SIMP(statut ='f', + INPUT_FILE = SIMP(statut ='o', # ----------------------------------- typ = ('Fichier','All Files (*)'), defaut = '', fr = """Nom du fichier a convertir.""", ang = """Name of the file to convert.""", ), -# ----------------------------------- - OUTPUT_FILE = SIMP(statut ='f', -# ----------------------------------- - typ = ('Fichier','All Files (*)','Sauvegarde'), max='**', - defaut = '', - fr = """Nom du fichier converti""", - ang = """Name of the converted file""", - ), # ----------------------------------- BOUNDARY_FILE = SIMP(statut ='f', # ----------------------------------- - typ = ('Fichier','All Files (*)'), max='**', + typ = ('Fichier','All Files (*)'), defaut = '', fr = """Nom du fichier des conditions limites""", ang = """Name of the boundary condition file""", @@ -520,196 +665,63 @@ type of mesh generator. # ----------------------------------- LOG_FILE = SIMP(statut ='f', # ----------------------------------- - typ = ('Fichier','All Files (*)'), max='**', + typ = ('Fichier','All Files (*)'), defaut = '', fr = """Nom du fichier complementaire pour le format UNV""", ang = """Name of the complementary file for the UNV format""", ), # ----------------------------------- - OUTPUT_BOUNDARY_FILE = SIMP(statut ='f', -# ----------------------------------- - typ = ('Fichier','All Files (*)','Sauvegarde'), max='**', - defaut = '', - fr = """Nom du fichier des conditions limites pour le fichier converti""", - ang = """Name of the boundary file for the converted file""", - ), -# ----------------------------------- - OUTPUT_LOG_FILE = SIMP(statut ='f', -# ----------------------------------- - typ = ('Fichier','All Files (*)','Sauvegarde'), max='**', - defaut = '', - fr = """Nom du fichier complementaire pour le fichier converti""", - ang = """Name of the complementary file for the converted file""", - ), -# ----------------------------------- - BOUNDARY_UNIVERSAL_FILE = SIMP(statut ='f', + BOUNDARY_CONDITION_IN_SERAFIN_FORMAT = SIMP(statut ='o', # ----------------------------------- - typ = ('Fichier','All Files (*)'), max='**', - defaut = '', - fr = """Nom du fichier construit par le mailleur, a partir duquel \stbtel va -travailler.""", - ang = """Name of the file created by the mesh generator, and from which \stbtel -will work.""", + typ = bool, + defaut = False, + fr = """Fichier de conditions limites dans le cas d''une conversion depuis +SERAFIN.""", + ang = """Boundary condition file when converting from SERAFIN.""", ), ), # ----------------------------------- - STANDARD = FACT(statut='f', + OUTPUT = FACT(statut='o', # ----------------------------------- # ----------------------------------- - BINARY_STANDARD = SIMP(statut ='f', + OUTPUT_FILE_FORMAT = SIMP(statut ='o', # ----------------------------------- typ = 'TXM', - into = ['STD','IBM','I3E'], - defaut = 'STD', - fr = """Adapte l''ecriture du \teleky{FICHIER DE GEOMETRIE POUR TELEMAC} au -standard binaire choisi pour celui-ci. Ce peut etre : -\begin{itemize} -\item IBM : binaire IBM, -\item I3E : binaire HP, -\item STD : prend par defaut le binaire de la machine sur laquelle - l''utilisateur travaille. Ce sont alors des ordres READ et - WRITE normaux qui sont utilises. -\end{itemize}""", - ang = """Matches the writing of the \telkey{GEOMETRY FILE FOR TELEMAC} to the -binary standard chosen for the latter. It will be selected among the -following: -\begin{itemize} -\item IBM: IBM binary, -\item I3E: HP binary, -\item STD: takes by default the binary on the computer with which - the user is working. The normal READ and WRITE commands - are then used. -\end{itemize}""", + into = ['SERAFIN','SERAFIND','MED','UNV','CGNS','VTK','CGNS'], + defaut = 'SERAFIN', + fr = """Specifie le format du fichier de sortie""", + ang = """Specify output file format""", ), - ), -) -# ----------------------------------------------------------------------- -MESH_GENERATOR = PROC(nom= "MESH_GENERATOR",op = None, -# ----------------------------------------------------------------------- -# ----------------------------------- - MESH_GENERATOR = SIMP(statut ='f', -# ----------------------------------- - typ = 'TXM', - into = ['SUPERTAB4','SUPERTAB6','MASTER2','SIMAIL','SELAFIN','TRIGRID','FASTTABS'], - defaut = 'MASTER2', - fr = """Nom du mailleur utilise pour la creation du \telkey{FICHIER UNIVERSEL}. -Ce peut etre : -\begin{itemize} -\item SUPERTAB6 (version 6 du mailleur SUPERTAB), -\item SUPERTAB4 (version 4 du mailleur SUPERTAB), -\item MASTER2 (version 2 du mailleur MASTER-SERIES), -\item SIMAIL, -\item SELAFIN (afin de modifier un maillage deja utilise, comme pour : -\begin{itemize} -\item interpoler de nouveau fonds -\item eliminer des dependances arrieres -\item coupe triangles surcontraints), -\end{itemize} -\item TRIGRID, -\item FASTTABS. -\end{itemize}""", - ang = """Name of the mesh generator used for preparing the \telkey{UNIVERSAL -FILE}. It will be selected among the following: -\begin{itemize} -\item SUPERTAB6 (version 6 of SUPERTAB mesh generator), -\item SUPERTAB4 (version 4 of SUPERTAB mesh generator), -\item MASTER2 (version 2 of MASTER-SERIES mesh generator), -\item SIMAIL, -\item SELAFIN (in order to modify a mesh already used, as for example : -\begin{itemize} -\item to interpolate a new bathymetry -\item to eliminate backward dependencies -\item to cut overstressed triangles ), -\end{itemize} -\item TRIGRID, -\item FASTTABS. -\end{itemize}""", - ), -) -# ----------------------------------------------------------------------- -INPUT_OUTPUT__INFORMATION = PROC(nom= "INPUT_OUTPUT__INFORMATION",op = None, -# ----------------------------------------------------------------------- -# ----------------------------------- - COMPUTATION_ENVIRONMENT = FACT(statut='f', -# ----------------------------------- # ----------------------------------- - BIBLIOTHEQUES = SIMP(statut ='f', + OUTPUT_FILE = SIMP(statut ='o', # ----------------------------------- - typ = 'TXM', + typ = ('Fichier','All Files (*)','Sauvegarde'), defaut = '', - fr = """""", - ang = """""", + fr = """Nom du fichier converti""", + ang = """Name of the converted file""", ), # ----------------------------------- - RELEASE = SIMP(statut ='f', + OUTPUT_BOUNDARY_FILE = SIMP(statut ='f', # ----------------------------------- - typ = 'TXM', - defaut = 'TRUNK', - fr = """Numeros de version respectivement des bibliotheques - stbtel,damo,util,hp""", - ang = """Version numbers of STBTEL, DAMO, UTIL, HP libraries, respectively.""", + typ = ('Fichier','All Files (*)','Sauvegarde'), + defaut = '', + fr = """Nom du fichier des conditions limites pour le fichier converti""", + ang = """Name of the boundary file for the converted file""", ), # ----------------------------------- - DICTIONARY = SIMP(statut ='f', + OUTPUT_LOG_FILE = SIMP(statut ='f', # ----------------------------------- - typ = ('Fichier','All Files (*)'), - defaut = 'stbtel.dico', - fr = """Dictionnaire des mots cles.""", - ang = """Key word dictionary.""", + typ = ('Fichier','All Files (*)','Sauvegarde'), + defaut = '', + fr = """Nom du fichier complementaire pour le fichier converti""", + ang = """Name of the complementary file for the converted file""", ), ), -) -# ----------------------------------------------------------------------- -CONVERTER_INFO = PROC(nom= "CONVERTER_INFO",op = None, -# ----------------------------------------------------------------------- -# ----------------------------------- - DEBUG = SIMP(statut ='f', -# ----------------------------------- - typ = bool, - defaut = False, - fr = """Permet d activer le mode debuggage.""", - ang = """Activate the debug mode.""", - ), -# ----------------------------------- - CONVERTER = SIMP(statut ='f', -# ----------------------------------- - typ = bool, - defaut = False, - fr = """Permet d activer le module de conversion.""", - ang = """Activate the conversion module.""", - ), -# ----------------------------------- - BOUNDARY_CONDITION_IN_SERAFIN_FORMAT = SIMP(statut ='f', -# ----------------------------------- - typ = bool, - defaut = False, - fr = """Fichier de conditions limites dans le cas d''une conversion depuis -SERAFIN.""", - ang = """Boundary condition file when converting from SERAFIN.""", - ), -# ----------------------------------- - INPUT_FILE_FORMAT = SIMP(statut ='f', -# ----------------------------------- - typ = 'TXM', - into = ['SERAFIN','SERAFIND','MED','UNV','CGNS'], - defaut = 'SERAFIN', - fr = """Specifie le format du fichier d entree""", - ang = """Specify input file format""", - ), -# ----------------------------------- - OUTPUT_FILE_FORMAT = SIMP(statut ='f', -# ----------------------------------- - typ = 'TXM', - into = ['SERAFIN','SERAFIND','MED','UNV','CGNS','VTK','CGNS'], - defaut = 'SERAFIN', - fr = """Specifie le format du fichier de sortie""", - ang = """Specify output file format""", - ), # ----------------------------------- - TRANSLATION_INFO = FACT(statut='f', + TRANSLATION_INFO = FACT(statut='o', # ----------------------------------- # ----------------------------------- - TRANSLATION = SIMP(statut ='f', + TRANSLATION = SIMP(statut ='o', # ----------------------------------- typ = bool, defaut = False, @@ -720,7 +732,7 @@ SERAFIN.""", b_TRANSLATIONG = BLOC(condition="TRANSLATION == True", # ----------------------------------- # ----------------------------------- - X_TRANSLATION = SIMP(statut ='f', + X_TRANSLATION = SIMP(statut ='o', # ----------------------------------- typ = 'R', defaut = 0., @@ -728,7 +740,7 @@ SERAFIN.""", ang = """Translation on the x axes""", ), # ----------------------------------- - Y_TRANSLATION = SIMP(statut ='f', + Y_TRANSLATION = SIMP(statut ='o', # ----------------------------------- typ = 'R', defaut = 0., @@ -739,49 +751,80 @@ SERAFIN.""", ), ) # ----------------------------------------------------------------------- -INTERNAL = PROC(nom= "INTERNAL",op = None, +SETTINGS = PROC(nom= "SETTINGS",op = None, # ----------------------------------------------------------------------- # ----------------------------------- - DESCRIPTION_OF_LIBRARIES = SIMP(statut ='f', + PARALLEL_PROCESSORS = SIMP(statut ='o', +# ----------------------------------- + typ = 'I', + defaut = 0, + fr = """Nombre de processeurs en calcul parallele +\begin{itemize} +\item 0 : 1 machine, compilation sans bibliotheque de parallelisme +\item 1 : 1 machine, compilation avec bibliotheque de parallelisme +\item 2 : 2 processeurs ou machines en parallele +\item etc\ldots +\end{itemize}""", + ang = """Number of processors for parallel processing +\begin{itemize} +\item 0 : 1 machine, compiling without parallel library +\item 1 : 1 machine, compiling with a parallel library +\item 2 : 2 processors or machines in parallel +\item etc\ldots +\end{itemize}""", + ), +# ----------------------------------- + FORTRAN_FILE = SIMP(statut ='f', # ----------------------------------- - typ = 'TXM', min= 6, max= 6, - defaut = 'builds|PPP|lib|stbtelMMMVVV.LLL;builds|PPP|lib|biefMMMVVV.LLL;builds|PPP|lib|hermesMMMVVV.LLL;builds|PPP|lib|damoMMMVVV.LLL;builds|PPP|lib|parallelMMMVVV.LLL;builds|PPP|lib|specialMMMVVV.LLL', - fr = """Description des librairies de \stbtel""", - ang = """Description of \stbtel libraries""", + typ = 'FichierOuRepertoire', + defaut = '', + fr = """Nom du fichier Fortran a soumettre. +Il ne sert a priori qu''a dimensionner les tableaux utilises par +\stbtel, mais peut contenir des sous-programmes modifies ou propres a +l''utilisateur.""", + ang = """Name of Fortran file to be entered. +It is a priori only designed for dimensioning the arrays that are +used by \stbtel, but it may contain either modified or user-written +subroutines.""", ), # ----------------------------------- - DEFAULT_EXECUTABLE = SIMP(statut ='f', + VECTOR_LENGTH = SIMP(statut ='o', # ----------------------------------- - typ = 'TXM', - defaut = 'builds|PPP|bin|stbtelMMMVVV.exe', - fr = """Executable par defaut de \stbtel""", - ang = """Default executable for \stbtel""", + typ = 'I', + defaut = 1, + fr = """Permet de fixer, sur machine vectorielle, la longueur du vecteur.""", + ang = """Designed for dimensioning the vector length on vector machine.""", ), +) +# ----------------------------------------------------------------------- +INTERNAL = PROC(nom= "INTERNAL",op = None, +# ----------------------------------------------------------------------- + UIinfo = {"groupes": ("CACHE")}, # ----------------------------------- - DEFAULT_PARALLEL_EXECUTABLE = SIMP(statut ='f', + STEERING_FILE = SIMP(statut ='o', # ----------------------------------- - typ = 'TXM', - defaut = 'builds|PPP|bin|stbtelMMMVVV.exe', - fr = """Executable parallele par defaut de \stbtel""", - ang = """Default parallel executable for \stbtel""", + typ = ('Fichier','All Files (*)'), + defaut = '', + fr = """Nom du fichier contenant les references des fichiers et les options +du calcul a realiser.""", + ang = """Name of the file that contains the file references and of options for +the computation to be made.""", ), # ----------------------------------- - LIST_OF_FILES = SIMP(statut ='f', + DICTIONARY = SIMP(statut ='o', # ----------------------------------- - typ = 'TXM', min=14, max=14, - defaut = 'UNIVERSAL FILE;GEOMETRY FILE FOR TELEMAC;BOUNDARY CONDITIONS FILE;MESH ADDITIONAL DATA FILE;BOTTOM TOPOGRAPHY FILES;FORTRAN FILE;STEERING FILE;DICTIONARY;INPUT FILE;OUTPUT FILE;BOUNDARY FILE;LOG FILE;OUTPUT BOUNDARY FILE;OUTPUT LOG FILE', - fr = """Noms des fichiers exploites par le code""", - ang = """File names of the used files""", + typ = ('Fichier','All Files (*)'), + defaut = 'stbtel.dico', + fr = """Dictionnaire des mots cles.""", + ang = """Key word dictionary.""", ), ) TEXTE_NEW_JDC = "\ " Ordre_Des_Commandes = ( -'GENERALITIES', -'INPUT_OUTPUT__FILES', -'MESH_GENERATOR', -'INPUT_OUTPUT__INFORMATION', +'TREATMENT', 'CONVERTER_INFO', +'SETTINGS', 'INTERNAL') try: import TelApy diff --git a/Telemac/stbtel_dicoCasEnToCata.py b/Telemac/stbtel_dicoCasEnToCata.py index fde5dfd8..09588a4e 100644 --- a/Telemac/stbtel_dicoCasEnToCata.py +++ b/Telemac/stbtel_dicoCasEnToCata.py @@ -1,114 +1,114 @@ dicoCataToEngTelemac = { - "MAXIMUM_NUMBER_OF_BATHYMETRIC_POINTS" : "MAXIMUM NUMBER OF BATHYMETRIC POINTS", - "VECTOR_LENGTH" : "VECTOR LENGTH", - "NUMBER_OF_VERTICES_OF_THE_POLYGON_TO_EXTRACT_THE_MESH" : "NUMBER OF VERTICES OF THE POLYGON TO EXTRACT THE MESH", - "NUMBER_OF_VERTICES_OF_THE_POLYGON_TO_REFINE_THE_MESH" : "NUMBER OF VERTICES OF THE POLYGON TO REFINE THE MESH", - "PARALLEL_PROCESSORS" : "PARALLEL PROCESSORS", "MINIMUM_DISTANCE_BETWEEN_TWO_POINTS" : "MINIMUM DISTANCE BETWEEN TWO POINTS", - "MINIMUM_DISTANCE_AT_BOUNDARY" : "MINIMUM DISTANCE AT BOUNDARY", + "MESH_GENERATOR" : "MESH GENERATOR", + "BINARY_STANDARD" : "BINARY STANDARD", + "UNIVERSAL_FILE" : "UNIVERSAL FILE", + "MESH_ADDITIONAL_DATA_FILE" : "MESH ADDITIONAL DATA FILE", + "GEOMETRY_FILE_FORMAT_FOR_TELEMAC" : "GEOMETRY FILE FORMAT FOR TELEMAC", + "GEOMETRY_FILE_FOR_TELEMAC" : "GEOMETRY FILE FOR TELEMAC", + "BOUNDARY_CONDITIONS_FILE" : "BOUNDARY CONDITIONS FILE", "BOTTOM_CORRECTION_OF_TRIGRID" : "BOTTOM CORRECTION OF TRIGRID", - "ABSCISSAE_OF_THE_VERTICES_OF_THE_POLYGON_TO_EXTRACT_THE_MESH" : "ABSCISSAE OF THE VERTICES OF THE POLYGON TO EXTRACT THE MESH", - "ORDINATES_OF_THE_VERTICES_OF_THE_POLYGON_TO_EXTRACT_THE_MESH" : "ORDINATES OF THE VERTICES OF THE POLYGON TO EXTRACT THE MESH", - "ABSCISSAE_OF_THE_VERTICES_OF_THE_POLYGON_TO_REFINE_THE_MESH" : "ABSCISSAE OF THE VERTICES OF THE POLYGON TO REFINE THE MESH", - "ORDINATES_OF_THE_VERTICES_OF_THE_POLYGON_TO_REFINE_THE_MESH" : "ORDINATES OF THE VERTICES OF THE POLYGON TO REFINE THE MESH", + "BATHYMETRY_IN_THE_UNIVERSAL_FILE" : "BATHYMETRY IN THE UNIVERSAL FILE", + "BOUNDARY_CONDITIONS_IN_THE_ADDITIONAL_FILE" : "BOUNDARY CONDITIONS IN THE ADDITIONAL FILE", + "BOUNDARY_UNIVERSAL_FILE" : "BOUNDARY UNIVERSAL FILE", "OVERSTRESSED_TRIANGLES_CUTTING" : "OVERSTRESSED TRIANGLES CUTTING", - "WRITING_NODE_COLOURS" : "WRITING NODE COLOURS", "ELIMINATION_OF_BACKWARD_DEPENDENCIES" : "ELIMINATION OF BACKWARD DEPENDENCIES", - "CUTTING_ELEMENTS_IN_FOUR" : "CUTTING ELEMENTS IN FOUR", - "BATHYMETRY_IN_THE_UNIVERSAL_FILE" : "BATHYMETRY IN THE UNIVERSAL FILE", "NODES_RENUMBERING" : "NODES RENUMBERING", - "BOUNDARY_CONDITIONS_IN_THE_ADDITIONAL_FILE" : "BOUNDARY CONDITIONS IN THE ADDITIONAL FILE", - "PROJECTION_AFTER_EXTRACTION" : "PROJECTION AFTER EXTRACTION", - "FORTRAN_FILE" : "FORTRAN FILE", - "STEERING_FILE" : "STEERING FILE", - "UNIVERSAL_FILE" : "UNIVERSAL FILE", - "MESH_GENERATOR" : "MESH GENERATOR", - "GEOMETRY_FILE_FOR_TELEMAC" : "GEOMETRY FILE FOR TELEMAC", - "BINARY_STANDARD" : "BINARY STANDARD", - "BOUNDARY_CONDITIONS_FILE" : "BOUNDARY CONDITIONS FILE", + "WRITING_NODE_COLOURS" : "WRITING NODE COLOURS", + "MAXIMUM_NUMBER_OF_BATHYMETRIC_POINTS" : "MAXIMUM NUMBER OF BATHYMETRIC POINTS", + "MINIMUM_DISTANCE_AT_BOUNDARY" : "MINIMUM DISTANCE AT BOUNDARY", "BOTTOM_TOPOGRAPHY_FILES" : "BOTTOM TOPOGRAPHY FILES", - "BIBLIOTHEQUES" : "BIBLIOTHEQUES", - "RELEASE" : "RELEASE", - "MESH_ADDITIONAL_DATA_FILE" : "MESH ADDITIONAL DATA FILE", - "DICTIONARY" : "DICTIONARY", - "DRY_LIMIT" : "DRY LIMIT", + "BOTTOM_TOPOGRAPHY_FILES_2" : "BOTTOM TOPOGRAPHY FILES 2", + "BOTTOM_TOPOGRAPHY_FILES_3" : "BOTTOM TOPOGRAPHY FILES 3", + "BOTTOM_TOPOGRAPHY_FILES_4" : "BOTTOM TOPOGRAPHY FILES 4", + "BOTTOM_TOPOGRAPHY_FILES_5" : "BOTTOM TOPOGRAPHY FILES 5", + "NUMBER_OF_VERTICES_OF_THE_POLYGON_TO_EXTRACT_THE_MESH" : "NUMBER OF VERTICES OF THE POLYGON TO EXTRACT THE MESH", + "ABSCISSAE_OF_THE_VERTICES_OF_THE_POLYGON_TO_EXTRACT_THE_MESH" : "ABSCISSAE OF THE VERTICES OF THE POLYGON TO EXTRACT THE MESH", + "ORDINATES_OF_THE_VERTICES_OF_THE_POLYGON_TO_EXTRACT_THE_MESH" : "ORDINATES OF THE VERTICES OF THE POLYGON TO EXTRACT THE MESH", + "PROJECTION_AFTER_EXTRACTION" : "PROJECTION AFTER EXTRACTION", + "CUTTING_ELEMENTS_IN_FOUR" : "CUTTING ELEMENTS IN FOUR", + "MAX_SEGMENTS_PER_POINT" : "MAX SEGMENTS PER POINT", + "NUMBER_OF_VERTICES_OF_THE_POLYGON_TO_REFINE_THE_MESH" : "NUMBER OF VERTICES OF THE POLYGON TO REFINE THE MESH", + "ABSCISSAE_OF_THE_VERTICES_OF_THE_POLYGON_TO_REFINE_THE_MESH" : "ABSCISSAE OF THE VERTICES OF THE POLYGON TO REFINE THE MESH", + "ORDINATES_OF_THE_VERTICES_OF_THE_POLYGON_TO_REFINE_THE_MESH" : "ORDINATES OF THE VERTICES OF THE POLYGON TO REFINE THE MESH", "DRY_ELEMENTS_ELIMINATION" : "DRY ELEMENTS ELIMINATION", "PARTIALLY_DRY_ELEMENTS_ELIMINATION" : "PARTIALLY DRY ELEMENTS ELIMINATION", + "DRY_LIMIT" : "DRY LIMIT", "STORAGE_OF_ALL_TIME_STEPS" : "STORAGE OF ALL TIME STEPS", "DEBUG" : "DEBUG", "CONVERTER" : "CONVERTER", - "BOUNDARY_CONDITION_IN_SERAFIN_FORMAT" : "BOUNDARY CONDITION IN SERAFIN FORMAT", "INPUT_FILE_FORMAT" : "INPUT FILE FORMAT", - "OUTPUT_FILE_FORMAT" : "OUTPUT FILE FORMAT", "INPUT_FILE" : "INPUT FILE", - "OUTPUT_FILE" : "OUTPUT FILE", "BOUNDARY_FILE" : "BOUNDARY FILE", "LOG_FILE" : "LOG FILE", + "BOUNDARY_CONDITION_IN_SERAFIN_FORMAT" : "BOUNDARY CONDITION IN SERAFIN FORMAT", + "OUTPUT_FILE_FORMAT" : "OUTPUT FILE FORMAT", + "OUTPUT_FILE" : "OUTPUT FILE", "OUTPUT_BOUNDARY_FILE" : "OUTPUT BOUNDARY FILE", "OUTPUT_LOG_FILE" : "OUTPUT LOG FILE", "TRANSLATION" : "TRANSLATION", "X_TRANSLATION" : "X TRANSLATION", "Y_TRANSLATION" : "Y TRANSLATION", - "BOUNDARY_UNIVERSAL_FILE" : "BOUNDARY UNIVERSAL FILE", - "DESCRIPTION_OF_LIBRARIES" : "DESCRIPTION OF LIBRARIES", - "DEFAULT_EXECUTABLE" : "DEFAULT EXECUTABLE", - "DEFAULT_PARALLEL_EXECUTABLE" : "DEFAULT PARALLEL EXECUTABLE", - "LIST_OF_FILES" : "LIST OF FILES", + "PARALLEL_PROCESSORS" : "PARALLEL PROCESSORS", + "FORTRAN_FILE" : "FORTRAN FILE", + "VECTOR_LENGTH" : "VECTOR LENGTH", + "STEERING_FILE" : "STEERING FILE", + "DICTIONARY" : "DICTIONARY", } dicoCasEnToCata = { - "MAXIMUM NUMBER OF BATHYMETRIC POINTS" : "MAXIMUM_NUMBER_OF_BATHYMETRIC_POINTS", - "VECTOR LENGTH" : "VECTOR_LENGTH", - "NUMBER OF VERTICES OF THE POLYGON TO EXTRACT THE MESH" : "NUMBER_OF_VERTICES_OF_THE_POLYGON_TO_EXTRACT_THE_MESH", - "NUMBER OF VERTICES OF THE POLYGON TO REFINE THE MESH" : "NUMBER_OF_VERTICES_OF_THE_POLYGON_TO_REFINE_THE_MESH", - "PARALLEL PROCESSORS" : "PARALLEL_PROCESSORS", "MINIMUM DISTANCE BETWEEN TWO POINTS" : "MINIMUM_DISTANCE_BETWEEN_TWO_POINTS", - "MINIMUM DISTANCE AT BOUNDARY" : "MINIMUM_DISTANCE_AT_BOUNDARY", + "MESH GENERATOR" : "MESH_GENERATOR", + "BINARY STANDARD" : "BINARY_STANDARD", + "UNIVERSAL FILE" : "UNIVERSAL_FILE", + "MESH ADDITIONAL DATA FILE" : "MESH_ADDITIONAL_DATA_FILE", + "GEOMETRY FILE FORMAT FOR TELEMAC" : "GEOMETRY_FILE_FORMAT_FOR_TELEMAC", + "GEOMETRY FILE FOR TELEMAC" : "GEOMETRY_FILE_FOR_TELEMAC", + "BOUNDARY CONDITIONS FILE" : "BOUNDARY_CONDITIONS_FILE", "BOTTOM CORRECTION OF TRIGRID" : "BOTTOM_CORRECTION_OF_TRIGRID", - "ABSCISSAE OF THE VERTICES OF THE POLYGON TO EXTRACT THE MESH" : "ABSCISSAE_OF_THE_VERTICES_OF_THE_POLYGON_TO_EXTRACT_THE_MESH", - "ORDINATES OF THE VERTICES OF THE POLYGON TO EXTRACT THE MESH" : "ORDINATES_OF_THE_VERTICES_OF_THE_POLYGON_TO_EXTRACT_THE_MESH", - "ABSCISSAE OF THE VERTICES OF THE POLYGON TO REFINE THE MESH" : "ABSCISSAE_OF_THE_VERTICES_OF_THE_POLYGON_TO_REFINE_THE_MESH", - "ORDINATES OF THE VERTICES OF THE POLYGON TO REFINE THE MESH" : "ORDINATES_OF_THE_VERTICES_OF_THE_POLYGON_TO_REFINE_THE_MESH", + "BATHYMETRY IN THE UNIVERSAL FILE" : "BATHYMETRY_IN_THE_UNIVERSAL_FILE", + "BOUNDARY CONDITIONS IN THE ADDITIONAL FILE" : "BOUNDARY_CONDITIONS_IN_THE_ADDITIONAL_FILE", + "BOUNDARY UNIVERSAL FILE" : "BOUNDARY_UNIVERSAL_FILE", "OVERSTRESSED TRIANGLES CUTTING" : "OVERSTRESSED_TRIANGLES_CUTTING", - "WRITING NODE COLOURS" : "WRITING_NODE_COLOURS", "ELIMINATION OF BACKWARD DEPENDENCIES" : "ELIMINATION_OF_BACKWARD_DEPENDENCIES", - "CUTTING ELEMENTS IN FOUR" : "CUTTING_ELEMENTS_IN_FOUR", - "BATHYMETRY IN THE UNIVERSAL FILE" : "BATHYMETRY_IN_THE_UNIVERSAL_FILE", "NODES RENUMBERING" : "NODES_RENUMBERING", - "BOUNDARY CONDITIONS IN THE ADDITIONAL FILE" : "BOUNDARY_CONDITIONS_IN_THE_ADDITIONAL_FILE", - "PROJECTION AFTER EXTRACTION" : "PROJECTION_AFTER_EXTRACTION", - "FORTRAN FILE" : "FORTRAN_FILE", - "STEERING FILE" : "STEERING_FILE", - "UNIVERSAL FILE" : "UNIVERSAL_FILE", - "MESH GENERATOR" : "MESH_GENERATOR", - "GEOMETRY FILE FOR TELEMAC" : "GEOMETRY_FILE_FOR_TELEMAC", - "BINARY STANDARD" : "BINARY_STANDARD", - "BOUNDARY CONDITIONS FILE" : "BOUNDARY_CONDITIONS_FILE", + "WRITING NODE COLOURS" : "WRITING_NODE_COLOURS", + "MAXIMUM NUMBER OF BATHYMETRIC POINTS" : "MAXIMUM_NUMBER_OF_BATHYMETRIC_POINTS", + "MINIMUM DISTANCE AT BOUNDARY" : "MINIMUM_DISTANCE_AT_BOUNDARY", "BOTTOM TOPOGRAPHY FILES" : "BOTTOM_TOPOGRAPHY_FILES", - "BIBLIOTHEQUES" : "BIBLIOTHEQUES", - "RELEASE" : "RELEASE", - "MESH ADDITIONAL DATA FILE" : "MESH_ADDITIONAL_DATA_FILE", - "DICTIONARY" : "DICTIONARY", - "DRY LIMIT" : "DRY_LIMIT", + "BOTTOM TOPOGRAPHY FILES 2" : "BOTTOM_TOPOGRAPHY_FILES_2", + "BOTTOM TOPOGRAPHY FILES 3" : "BOTTOM_TOPOGRAPHY_FILES_3", + "BOTTOM TOPOGRAPHY FILES 4" : "BOTTOM_TOPOGRAPHY_FILES_4", + "BOTTOM TOPOGRAPHY FILES 5" : "BOTTOM_TOPOGRAPHY_FILES_5", + "NUMBER OF VERTICES OF THE POLYGON TO EXTRACT THE MESH" : "NUMBER_OF_VERTICES_OF_THE_POLYGON_TO_EXTRACT_THE_MESH", + "ABSCISSAE OF THE VERTICES OF THE POLYGON TO EXTRACT THE MESH" : "ABSCISSAE_OF_THE_VERTICES_OF_THE_POLYGON_TO_EXTRACT_THE_MESH", + "ORDINATES OF THE VERTICES OF THE POLYGON TO EXTRACT THE MESH" : "ORDINATES_OF_THE_VERTICES_OF_THE_POLYGON_TO_EXTRACT_THE_MESH", + "PROJECTION AFTER EXTRACTION" : "PROJECTION_AFTER_EXTRACTION", + "CUTTING ELEMENTS IN FOUR" : "CUTTING_ELEMENTS_IN_FOUR", + "MAX SEGMENTS PER POINT" : "MAX_SEGMENTS_PER_POINT", + "NUMBER OF VERTICES OF THE POLYGON TO REFINE THE MESH" : "NUMBER_OF_VERTICES_OF_THE_POLYGON_TO_REFINE_THE_MESH", + "ABSCISSAE OF THE VERTICES OF THE POLYGON TO REFINE THE MESH" : "ABSCISSAE_OF_THE_VERTICES_OF_THE_POLYGON_TO_REFINE_THE_MESH", + "ORDINATES OF THE VERTICES OF THE POLYGON TO REFINE THE MESH" : "ORDINATES_OF_THE_VERTICES_OF_THE_POLYGON_TO_REFINE_THE_MESH", "DRY ELEMENTS ELIMINATION" : "DRY_ELEMENTS_ELIMINATION", "PARTIALLY DRY ELEMENTS ELIMINATION" : "PARTIALLY_DRY_ELEMENTS_ELIMINATION", + "DRY LIMIT" : "DRY_LIMIT", "STORAGE OF ALL TIME STEPS" : "STORAGE_OF_ALL_TIME_STEPS", "DEBUG" : "DEBUG", "CONVERTER" : "CONVERTER", - "BOUNDARY CONDITION IN SERAFIN FORMAT" : "BOUNDARY_CONDITION_IN_SERAFIN_FORMAT", "INPUT FILE FORMAT" : "INPUT_FILE_FORMAT", - "OUTPUT FILE FORMAT" : "OUTPUT_FILE_FORMAT", "INPUT FILE" : "INPUT_FILE", - "OUTPUT FILE" : "OUTPUT_FILE", "BOUNDARY FILE" : "BOUNDARY_FILE", "LOG FILE" : "LOG_FILE", + "BOUNDARY CONDITION IN SERAFIN FORMAT" : "BOUNDARY_CONDITION_IN_SERAFIN_FORMAT", + "OUTPUT FILE FORMAT" : "OUTPUT_FILE_FORMAT", + "OUTPUT FILE" : "OUTPUT_FILE", "OUTPUT BOUNDARY FILE" : "OUTPUT_BOUNDARY_FILE", "OUTPUT LOG FILE" : "OUTPUT_LOG_FILE", "TRANSLATION" : "TRANSLATION", "X TRANSLATION" : "X_TRANSLATION", "Y TRANSLATION" : "Y_TRANSLATION", - "BOUNDARY UNIVERSAL FILE" : "BOUNDARY_UNIVERSAL_FILE", - "DESCRIPTION OF LIBRARIES" : "DESCRIPTION_OF_LIBRARIES", - "DEFAULT EXECUTABLE" : "DEFAULT_EXECUTABLE", - "DEFAULT PARALLEL EXECUTABLE" : "DEFAULT_PARALLEL_EXECUTABLE", - "LIST OF FILES" : "LIST_OF_FILES", + "PARALLEL PROCESSORS" : "PARALLEL_PROCESSORS", + "FORTRAN FILE" : "FORTRAN_FILE", + "VECTOR LENGTH" : "VECTOR_LENGTH", + "STEERING FILE" : "STEERING_FILE", + "DICTIONARY" : "DICTIONARY", } diff --git a/Telemac/stbtel_dicoCasFrToCata.py b/Telemac/stbtel_dicoCasFrToCata.py index 9ab513a4..a7132299 100644 --- a/Telemac/stbtel_dicoCasFrToCata.py +++ b/Telemac/stbtel_dicoCasFrToCata.py @@ -1,114 +1,114 @@ dicoCataToFrTelemac = { - "MAXIMUM_NUMBER_OF_BATHYMETRIC_POINTS" : "NOMBRE MAXIMUM DE POINTS DE BATHYMETRIE", - "VECTOR_LENGTH" : "LONGUEUR DU VECTEUR", - "NUMBER_OF_VERTICES_OF_THE_POLYGON_TO_EXTRACT_THE_MESH" : "NOMBRE DE SOMMETS DU POLYGONE D'EXTRACTION", - "NUMBER_OF_VERTICES_OF_THE_POLYGON_TO_REFINE_THE_MESH" : "NOMBRE DE SOMMETS DU POLYGONE DE RAFFINEMENT", - "PARALLEL_PROCESSORS" : "PROCESSEURS PARALLELES", "MINIMUM_DISTANCE_BETWEEN_TWO_POINTS" : "DISTANCE MINIMALE ENTRE DEUX POINTS", - "MINIMUM_DISTANCE_AT_BOUNDARY" : "DISTANCE MINIMALE A LA FRONTIERE", + "MESH_GENERATOR" : "MAILLEUR", + "BINARY_STANDARD" : "STANDARD DE BINAIRE", + "UNIVERSAL_FILE" : "FICHIER UNIVERSEL", + "MESH_ADDITIONAL_DATA_FILE" : "FICHIER ADDITIONNEL DU MAILLEUR", + "GEOMETRY_FILE_FORMAT_FOR_TELEMAC" : "FORMAT DU FICHIER DE GEOMETRIE POUR TELEMAC", + "GEOMETRY_FILE_FOR_TELEMAC" : "FICHIER DE GEOMETRIE POUR TELEMAC", + "BOUNDARY_CONDITIONS_FILE" : "FICHIER DES CONDITIONS AUX LIMITES", "BOTTOM_CORRECTION_OF_TRIGRID" : "CORRECTION DES FONDS DE TRIGRID", - "ABSCISSAE_OF_THE_VERTICES_OF_THE_POLYGON_TO_EXTRACT_THE_MESH" : "ABSCISSES DES SOMMETS DU POLYGONE D'EXTRACTION", - "ORDINATES_OF_THE_VERTICES_OF_THE_POLYGON_TO_EXTRACT_THE_MESH" : "ORDONNEES DES SOMMETS DU POLYGONE D'EXTRACTION", - "ABSCISSAE_OF_THE_VERTICES_OF_THE_POLYGON_TO_REFINE_THE_MESH" : "ABSCISSES DES SOMMETS DU POLYGONE DE RAFFINEMENT", - "ORDINATES_OF_THE_VERTICES_OF_THE_POLYGON_TO_REFINE_THE_MESH" : "ORDONNEES DES SOMMETS DU POLYGONE DE RAFFINEMENT", + "BATHYMETRY_IN_THE_UNIVERSAL_FILE" : "BATHYMETRIE DANS LE FICHIER UNIVERSEL", + "BOUNDARY_CONDITIONS_IN_THE_ADDITIONAL_FILE" : "CONDITIONS LIMITES DANS LE FICHIER ADDITIONNEL", + "BOUNDARY_UNIVERSAL_FILE" : "FICHIER UNIVERSEL LIMITE", "OVERSTRESSED_TRIANGLES_CUTTING" : "DECOUPAGE DES TRIANGLES SURCONTRAINTS", - "WRITING_NODE_COLOURS" : "ECRITURE DE LA COULEUR DES NOEUDS", "ELIMINATION_OF_BACKWARD_DEPENDENCIES" : "ELIMINATION DES DEPENDANCES ARRIERES", - "CUTTING_ELEMENTS_IN_FOUR" : "DECOUPAGE DES TRIANGLES EN QUATRE", - "BATHYMETRY_IN_THE_UNIVERSAL_FILE" : "BATHYMETRIE DANS LE FICHIER UNIVERSEL", "NODES_RENUMBERING" : "RENUMEROTATION DES POINTS", - "BOUNDARY_CONDITIONS_IN_THE_ADDITIONAL_FILE" : "CONDITIONS LIMITES DANS LE FICHIER ADDITIONNEL", - "PROJECTION_AFTER_EXTRACTION" : "PROJECTION APRES EXTRACTION", - "FORTRAN_FILE" : "FICHIER FORTRAN", - "STEERING_FILE" : "FICHIER DES PARAMETRES", - "UNIVERSAL_FILE" : "FICHIER UNIVERSEL", - "MESH_GENERATOR" : "MAILLEUR", - "GEOMETRY_FILE_FOR_TELEMAC" : "FICHIER DE GEOMETRIE POUR TELEMAC", - "BINARY_STANDARD" : "STANDARD DE BINAIRE", - "BOUNDARY_CONDITIONS_FILE" : "FICHIER DES CONDITIONS AUX LIMITES", + "WRITING_NODE_COLOURS" : "ECRITURE DE LA COULEUR DES NOEUDS", + "MAXIMUM_NUMBER_OF_BATHYMETRIC_POINTS" : "NOMBRE MAXIMUM DE POINTS DE BATHYMETRIE", + "MINIMUM_DISTANCE_AT_BOUNDARY" : "DISTANCE MINIMALE A LA FRONTIERE", "BOTTOM_TOPOGRAPHY_FILES" : "FICHIERS DES FONDS", - "BIBLIOTHEQUES" : "BIBLIOTHEQUES", - "RELEASE" : "NUMERO DE VERSION", - "MESH_ADDITIONAL_DATA_FILE" : "FICHIER ADDITIONNEL DU MAILLEUR", - "DICTIONARY" : "DICTIONNAIRE", - "DRY_LIMIT" : "SEUIL DE SECHERESSE", + "BOTTOM_TOPOGRAPHY_FILES_2" : "FICHIERS DES FONDS 2", + "BOTTOM_TOPOGRAPHY_FILES_3" : "FICHIERS DES FONDS 3", + "BOTTOM_TOPOGRAPHY_FILES_4" : "FICHIERS DES FONDS 4", + "BOTTOM_TOPOGRAPHY_FILES_5" : "FICHIERS DES FONDS 5", + "NUMBER_OF_VERTICES_OF_THE_POLYGON_TO_EXTRACT_THE_MESH" : "NOMBRE DE SOMMETS DU POLYGONE D'EXTRACTION", + "ABSCISSAE_OF_THE_VERTICES_OF_THE_POLYGON_TO_EXTRACT_THE_MESH" : "ABSCISSES DES SOMMETS DU POLYGONE D'EXTRACTION", + "ORDINATES_OF_THE_VERTICES_OF_THE_POLYGON_TO_EXTRACT_THE_MESH" : "ORDONNEES DES SOMMETS DU POLYGONE D'EXTRACTION", + "PROJECTION_AFTER_EXTRACTION" : "PROJECTION APRES EXTRACTION", + "CUTTING_ELEMENTS_IN_FOUR" : "DECOUPAGE DES TRIANGLES EN QUATRE", + "MAX_SEGMENTS_PER_POINT" : "MAX DE SEGMENTS PAR POINT", + "NUMBER_OF_VERTICES_OF_THE_POLYGON_TO_REFINE_THE_MESH" : "NOMBRE DE SOMMETS DU POLYGONE DE RAFFINEMENT", + "ABSCISSAE_OF_THE_VERTICES_OF_THE_POLYGON_TO_REFINE_THE_MESH" : "ABSCISSES DES SOMMETS DU POLYGONE DE RAFFINEMENT", + "ORDINATES_OF_THE_VERTICES_OF_THE_POLYGON_TO_REFINE_THE_MESH" : "ORDONNEES DES SOMMETS DU POLYGONE DE RAFFINEMENT", "DRY_ELEMENTS_ELIMINATION" : "ELIMINATION DES ELEMENTS SECS", "PARTIALLY_DRY_ELEMENTS_ELIMINATION" : "ELIMINATION DES ELEMENTS PARTIELLEMENT SECS", + "DRY_LIMIT" : "SEUIL DE SECHERESSE", "STORAGE_OF_ALL_TIME_STEPS" : "STOCKAGE DE TOUS LES PAS DE TEMPS", "DEBUG" : "DEBUG", "CONVERTER" : "CONVERTISSEUR", - "BOUNDARY_CONDITION_IN_SERAFIN_FORMAT" : "CONDITION LIMITE EN FORMAT SERAFIN", "INPUT_FILE_FORMAT" : "FORMAT DU FICHIER D ENTREE", - "OUTPUT_FILE_FORMAT" : "FORMAT DU FICHIER DE SORTIE", "INPUT_FILE" : "FICHIER D ENTREE", - "OUTPUT_FILE" : "FICHIER DE SORTIE", "BOUNDARY_FILE" : "FICHIER DES CONDITIONS LIMITES", "LOG_FILE" : "FICHIER LOG", + "BOUNDARY_CONDITION_IN_SERAFIN_FORMAT" : "CONDITION LIMITE EN FORMAT SERAFIN", + "OUTPUT_FILE_FORMAT" : "FORMAT DU FICHIER DE SORTIE", + "OUTPUT_FILE" : "FICHIER DE SORTIE", "OUTPUT_BOUNDARY_FILE" : "FICHIER DES CONDITIONS LIMITES EN SORTIE", "OUTPUT_LOG_FILE" : "FICHIER LOG EN SORTIE", "TRANSLATION" : "TRANSLATION", "X_TRANSLATION" : "TRANSLATION SELON X", "Y_TRANSLATION" : "TRANSLATION SELON Y", - "BOUNDARY_UNIVERSAL_FILE" : "FICHIER UNIVERSEL LIMITE", - "DESCRIPTION_OF_LIBRARIES" : "DESCRIPTION DES LIBRAIRIES", - "DEFAULT_EXECUTABLE" : "EXECUTABLE PAR DEFAUT", - "DEFAULT_PARALLEL_EXECUTABLE" : "EXECUTABLE PARALLELE PAR DEFAUT", - "LIST_OF_FILES" : "LISTE DES FICHIERS", + "PARALLEL_PROCESSORS" : "PROCESSEURS PARALLELES", + "FORTRAN_FILE" : "FICHIER FORTRAN", + "VECTOR_LENGTH" : "LONGUEUR DU VECTEUR", + "STEERING_FILE" : "FICHIER DES PARAMETRES", + "DICTIONARY" : "DICTIONNAIRE", } dicoCasFrToCata = { - "NOMBRE MAXIMUM DE POINTS DE BATHYMETRIE" : "MAXIMUM_NUMBER_OF_BATHYMETRIC_POINTS", - "LONGUEUR DU VECTEUR" : "VECTOR_LENGTH", - "NOMBRE DE SOMMETS DU POLYGONE D'EXTRACTION" : "NUMBER_OF_VERTICES_OF_THE_POLYGON_TO_EXTRACT_THE_MESH", - "NOMBRE DE SOMMETS DU POLYGONE DE RAFFINEMENT" : "NUMBER_OF_VERTICES_OF_THE_POLYGON_TO_REFINE_THE_MESH", - "PROCESSEURS PARALLELES" : "PARALLEL_PROCESSORS", "DISTANCE MINIMALE ENTRE DEUX POINTS" : "MINIMUM_DISTANCE_BETWEEN_TWO_POINTS", - "DISTANCE MINIMALE A LA FRONTIERE" : "MINIMUM_DISTANCE_AT_BOUNDARY", + "MAILLEUR" : "MESH_GENERATOR", + "STANDARD DE BINAIRE" : "BINARY_STANDARD", + "FICHIER UNIVERSEL" : "UNIVERSAL_FILE", + "FICHIER ADDITIONNEL DU MAILLEUR" : "MESH_ADDITIONAL_DATA_FILE", + "FORMAT DU FICHIER DE GEOMETRIE POUR TELEMAC" : "GEOMETRY_FILE_FORMAT_FOR_TELEMAC", + "FICHIER DE GEOMETRIE POUR TELEMAC" : "GEOMETRY_FILE_FOR_TELEMAC", + "FICHIER DES CONDITIONS AUX LIMITES" : "BOUNDARY_CONDITIONS_FILE", "CORRECTION DES FONDS DE TRIGRID" : "BOTTOM_CORRECTION_OF_TRIGRID", - "ABSCISSES DES SOMMETS DU POLYGONE D'EXTRACTION" : "ABSCISSAE_OF_THE_VERTICES_OF_THE_POLYGON_TO_EXTRACT_THE_MESH", - "ORDONNEES DES SOMMETS DU POLYGONE D'EXTRACTION" : "ORDINATES_OF_THE_VERTICES_OF_THE_POLYGON_TO_EXTRACT_THE_MESH", - "ABSCISSES DES SOMMETS DU POLYGONE DE RAFFINEMENT" : "ABSCISSAE_OF_THE_VERTICES_OF_THE_POLYGON_TO_REFINE_THE_MESH", - "ORDONNEES DES SOMMETS DU POLYGONE DE RAFFINEMENT" : "ORDINATES_OF_THE_VERTICES_OF_THE_POLYGON_TO_REFINE_THE_MESH", + "BATHYMETRIE DANS LE FICHIER UNIVERSEL" : "BATHYMETRY_IN_THE_UNIVERSAL_FILE", + "CONDITIONS LIMITES DANS LE FICHIER ADDITIONNEL" : "BOUNDARY_CONDITIONS_IN_THE_ADDITIONAL_FILE", + "FICHIER UNIVERSEL LIMITE" : "BOUNDARY_UNIVERSAL_FILE", "DECOUPAGE DES TRIANGLES SURCONTRAINTS" : "OVERSTRESSED_TRIANGLES_CUTTING", - "ECRITURE DE LA COULEUR DES NOEUDS" : "WRITING_NODE_COLOURS", "ELIMINATION DES DEPENDANCES ARRIERES" : "ELIMINATION_OF_BACKWARD_DEPENDENCIES", - "DECOUPAGE DES TRIANGLES EN QUATRE" : "CUTTING_ELEMENTS_IN_FOUR", - "BATHYMETRIE DANS LE FICHIER UNIVERSEL" : "BATHYMETRY_IN_THE_UNIVERSAL_FILE", "RENUMEROTATION DES POINTS" : "NODES_RENUMBERING", - "CONDITIONS LIMITES DANS LE FICHIER ADDITIONNEL" : "BOUNDARY_CONDITIONS_IN_THE_ADDITIONAL_FILE", - "PROJECTION APRES EXTRACTION" : "PROJECTION_AFTER_EXTRACTION", - "FICHIER FORTRAN" : "FORTRAN_FILE", - "FICHIER DES PARAMETRES" : "STEERING_FILE", - "FICHIER UNIVERSEL" : "UNIVERSAL_FILE", - "MAILLEUR" : "MESH_GENERATOR", - "FICHIER DE GEOMETRIE POUR TELEMAC" : "GEOMETRY_FILE_FOR_TELEMAC", - "STANDARD DE BINAIRE" : "BINARY_STANDARD", - "FICHIER DES CONDITIONS AUX LIMITES" : "BOUNDARY_CONDITIONS_FILE", + "ECRITURE DE LA COULEUR DES NOEUDS" : "WRITING_NODE_COLOURS", + "NOMBRE MAXIMUM DE POINTS DE BATHYMETRIE" : "MAXIMUM_NUMBER_OF_BATHYMETRIC_POINTS", + "DISTANCE MINIMALE A LA FRONTIERE" : "MINIMUM_DISTANCE_AT_BOUNDARY", "FICHIERS DES FONDS" : "BOTTOM_TOPOGRAPHY_FILES", - "BIBLIOTHEQUES" : "BIBLIOTHEQUES", - "NUMERO DE VERSION" : "RELEASE", - "FICHIER ADDITIONNEL DU MAILLEUR" : "MESH_ADDITIONAL_DATA_FILE", - "DICTIONNAIRE" : "DICTIONARY", - "SEUIL DE SECHERESSE" : "DRY_LIMIT", + "FICHIERS DES FONDS 2" : "BOTTOM_TOPOGRAPHY_FILES_2", + "FICHIERS DES FONDS 3" : "BOTTOM_TOPOGRAPHY_FILES_3", + "FICHIERS DES FONDS 4" : "BOTTOM_TOPOGRAPHY_FILES_4", + "FICHIERS DES FONDS 5" : "BOTTOM_TOPOGRAPHY_FILES_5", + "NOMBRE DE SOMMETS DU POLYGONE D'EXTRACTION" : "NUMBER_OF_VERTICES_OF_THE_POLYGON_TO_EXTRACT_THE_MESH", + "ABSCISSES DES SOMMETS DU POLYGONE D'EXTRACTION" : "ABSCISSAE_OF_THE_VERTICES_OF_THE_POLYGON_TO_EXTRACT_THE_MESH", + "ORDONNEES DES SOMMETS DU POLYGONE D'EXTRACTION" : "ORDINATES_OF_THE_VERTICES_OF_THE_POLYGON_TO_EXTRACT_THE_MESH", + "PROJECTION APRES EXTRACTION" : "PROJECTION_AFTER_EXTRACTION", + "DECOUPAGE DES TRIANGLES EN QUATRE" : "CUTTING_ELEMENTS_IN_FOUR", + "MAX DE SEGMENTS PAR POINT" : "MAX_SEGMENTS_PER_POINT", + "NOMBRE DE SOMMETS DU POLYGONE DE RAFFINEMENT" : "NUMBER_OF_VERTICES_OF_THE_POLYGON_TO_REFINE_THE_MESH", + "ABSCISSES DES SOMMETS DU POLYGONE DE RAFFINEMENT" : "ABSCISSAE_OF_THE_VERTICES_OF_THE_POLYGON_TO_REFINE_THE_MESH", + "ORDONNEES DES SOMMETS DU POLYGONE DE RAFFINEMENT" : "ORDINATES_OF_THE_VERTICES_OF_THE_POLYGON_TO_REFINE_THE_MESH", "ELIMINATION DES ELEMENTS SECS" : "DRY_ELEMENTS_ELIMINATION", "ELIMINATION DES ELEMENTS PARTIELLEMENT SECS" : "PARTIALLY_DRY_ELEMENTS_ELIMINATION", + "SEUIL DE SECHERESSE" : "DRY_LIMIT", "STOCKAGE DE TOUS LES PAS DE TEMPS" : "STORAGE_OF_ALL_TIME_STEPS", "DEBUG" : "DEBUG", "CONVERTISSEUR" : "CONVERTER", - "CONDITION LIMITE EN FORMAT SERAFIN" : "BOUNDARY_CONDITION_IN_SERAFIN_FORMAT", "FORMAT DU FICHIER D ENTREE" : "INPUT_FILE_FORMAT", - "FORMAT DU FICHIER DE SORTIE" : "OUTPUT_FILE_FORMAT", "FICHIER D ENTREE" : "INPUT_FILE", - "FICHIER DE SORTIE" : "OUTPUT_FILE", "FICHIER DES CONDITIONS LIMITES" : "BOUNDARY_FILE", "FICHIER LOG" : "LOG_FILE", + "CONDITION LIMITE EN FORMAT SERAFIN" : "BOUNDARY_CONDITION_IN_SERAFIN_FORMAT", + "FORMAT DU FICHIER DE SORTIE" : "OUTPUT_FILE_FORMAT", + "FICHIER DE SORTIE" : "OUTPUT_FILE", "FICHIER DES CONDITIONS LIMITES EN SORTIE" : "OUTPUT_BOUNDARY_FILE", "FICHIER LOG EN SORTIE" : "OUTPUT_LOG_FILE", "TRANSLATION" : "TRANSLATION", "TRANSLATION SELON X" : "X_TRANSLATION", "TRANSLATION SELON Y" : "Y_TRANSLATION", - "FICHIER UNIVERSEL LIMITE" : "BOUNDARY_UNIVERSAL_FILE", - "DESCRIPTION DES LIBRAIRIES" : "DESCRIPTION_OF_LIBRARIES", - "EXECUTABLE PAR DEFAUT" : "DEFAULT_EXECUTABLE", - "EXECUTABLE PARALLELE PAR DEFAUT" : "DEFAULT_PARALLEL_EXECUTABLE", - "LISTE DES FICHIERS" : "LIST_OF_FILES", + "PROCESSEURS PARALLELES" : "PARALLEL_PROCESSORS", + "FICHIER FORTRAN" : "FORTRAN_FILE", + "LONGUEUR DU VECTEUR" : "VECTOR_LENGTH", + "FICHIER DES PARAMETRES" : "STEERING_FILE", + "DICTIONNAIRE" : "DICTIONARY", } diff --git a/Telemac/stbtel_enum_auto.py b/Telemac/stbtel_enum_auto.py index 005e93f7..4db9c2b1 100644 --- a/Telemac/stbtel_enum_auto.py +++ b/Telemac/stbtel_enum_auto.py @@ -6,119 +6,119 @@ TelemacdicoFr = { } DicoCasFrToCata = { - "NOMBRE MAXIMUM DE POINTS DE BATHYMETRIE":"MAXIMUM_NUMBER_OF_BATHYMETRIC_POINTS", - "LONGUEUR DU VECTEUR":"VECTOR_LENGTH", - "NOMBRE DE SOMMETS DU POLYGONE D'EXTRACTION":"NUMBER_OF_VERTICES_OF_THE_POLYGON_TO_EXTRACT_THE_MESH", - "NOMBRE DE SOMMETS DU POLYGONE DE RAFFINEMENT":"NUMBER_OF_VERTICES_OF_THE_POLYGON_TO_REFINE_THE_MESH", - "PROCESSEURS PARALLELES":"PARALLEL_PROCESSORS", "DISTANCE MINIMALE ENTRE DEUX POINTS":"MINIMUM_DISTANCE_BETWEEN_TWO_POINTS", - "DISTANCE MINIMALE A LA FRONTIERE":"MINIMUM_DISTANCE_AT_BOUNDARY", + "MAILLEUR":"MESH_GENERATOR", + "STANDARD DE BINAIRE":"BINARY_STANDARD", + "FICHIER UNIVERSEL":"UNIVERSAL_FILE", + "FICHIER ADDITIONNEL DU MAILLEUR":"MESH_ADDITIONAL_DATA_FILE", + "FORMAT DU FICHIER DE GEOMETRIE POUR TELEMAC":"GEOMETRY_FILE_FORMAT_FOR_TELEMAC", + "FICHIER DE GEOMETRIE POUR TELEMAC":"GEOMETRY_FILE_FOR_TELEMAC", + "FICHIER DES CONDITIONS AUX LIMITES":"BOUNDARY_CONDITIONS_FILE", "CORRECTION DES FONDS DE TRIGRID":"BOTTOM_CORRECTION_OF_TRIGRID", - "ABSCISSES DES SOMMETS DU POLYGONE D'EXTRACTION":"ABSCISSAE_OF_THE_VERTICES_OF_THE_POLYGON_TO_EXTRACT_THE_MESH", - "ORDONNEES DES SOMMETS DU POLYGONE D'EXTRACTION":"ORDINATES_OF_THE_VERTICES_OF_THE_POLYGON_TO_EXTRACT_THE_MESH", - "ABSCISSES DES SOMMETS DU POLYGONE DE RAFFINEMENT":"ABSCISSAE_OF_THE_VERTICES_OF_THE_POLYGON_TO_REFINE_THE_MESH", - "ORDONNEES DES SOMMETS DU POLYGONE DE RAFFINEMENT":"ORDINATES_OF_THE_VERTICES_OF_THE_POLYGON_TO_REFINE_THE_MESH", + "BATHYMETRIE DANS LE FICHIER UNIVERSEL":"BATHYMETRY_IN_THE_UNIVERSAL_FILE", + "CONDITIONS LIMITES DANS LE FICHIER ADDITIONNEL":"BOUNDARY_CONDITIONS_IN_THE_ADDITIONAL_FILE", + "FICHIER UNIVERSEL LIMITE":"BOUNDARY_UNIVERSAL_FILE", "DECOUPAGE DES TRIANGLES SURCONTRAINTS":"OVERSTRESSED_TRIANGLES_CUTTING", - "ECRITURE DE LA COULEUR DES NOEUDS":"WRITING_NODE_COLOURS", "ELIMINATION DES DEPENDANCES ARRIERES":"ELIMINATION_OF_BACKWARD_DEPENDENCIES", - "DECOUPAGE DES TRIANGLES EN QUATRE":"CUTTING_ELEMENTS_IN_FOUR", - "BATHYMETRIE DANS LE FICHIER UNIVERSEL":"BATHYMETRY_IN_THE_UNIVERSAL_FILE", "RENUMEROTATION DES POINTS":"NODES_RENUMBERING", - "CONDITIONS LIMITES DANS LE FICHIER ADDITIONNEL":"BOUNDARY_CONDITIONS_IN_THE_ADDITIONAL_FILE", - "PROJECTION APRES EXTRACTION":"PROJECTION_AFTER_EXTRACTION", - "FICHIER FORTRAN":"FORTRAN_FILE", - "FICHIER DES PARAMETRES":"STEERING_FILE", - "FICHIER UNIVERSEL":"UNIVERSAL_FILE", - "MAILLEUR":"MESH_GENERATOR", - "FICHIER DE GEOMETRIE POUR TELEMAC":"GEOMETRY_FILE_FOR_TELEMAC", - "STANDARD DE BINAIRE":"BINARY_STANDARD", - "FICHIER DES CONDITIONS AUX LIMITES":"BOUNDARY_CONDITIONS_FILE", + "ECRITURE DE LA COULEUR DES NOEUDS":"WRITING_NODE_COLOURS", + "NOMBRE MAXIMUM DE POINTS DE BATHYMETRIE":"MAXIMUM_NUMBER_OF_BATHYMETRIC_POINTS", + "DISTANCE MINIMALE A LA FRONTIERE":"MINIMUM_DISTANCE_AT_BOUNDARY", "FICHIERS DES FONDS":"BOTTOM_TOPOGRAPHY_FILES", - "BIBLIOTHEQUES":"BIBLIOTHEQUES", - "NUMERO DE VERSION":"RELEASE", - "FICHIER ADDITIONNEL DU MAILLEUR":"MESH_ADDITIONAL_DATA_FILE", - "DICTIONNAIRE":"DICTIONARY", - "SEUIL DE SECHERESSE":"DRY_LIMIT", + "FICHIERS DES FONDS 2":"BOTTOM_TOPOGRAPHY_FILES_2", + "FICHIERS DES FONDS 3":"BOTTOM_TOPOGRAPHY_FILES_3", + "FICHIERS DES FONDS 4":"BOTTOM_TOPOGRAPHY_FILES_4", + "FICHIERS DES FONDS 5":"BOTTOM_TOPOGRAPHY_FILES_5", + "NOMBRE DE SOMMETS DU POLYGONE D'EXTRACTION":"NUMBER_OF_VERTICES_OF_THE_POLYGON_TO_EXTRACT_THE_MESH", + "ABSCISSES DES SOMMETS DU POLYGONE D'EXTRACTION":"ABSCISSAE_OF_THE_VERTICES_OF_THE_POLYGON_TO_EXTRACT_THE_MESH", + "ORDONNEES DES SOMMETS DU POLYGONE D'EXTRACTION":"ORDINATES_OF_THE_VERTICES_OF_THE_POLYGON_TO_EXTRACT_THE_MESH", + "PROJECTION APRES EXTRACTION":"PROJECTION_AFTER_EXTRACTION", + "DECOUPAGE DES TRIANGLES EN QUATRE":"CUTTING_ELEMENTS_IN_FOUR", + "MAX DE SEGMENTS PAR POINT":"MAX_SEGMENTS_PER_POINT", + "NOMBRE DE SOMMETS DU POLYGONE DE RAFFINEMENT":"NUMBER_OF_VERTICES_OF_THE_POLYGON_TO_REFINE_THE_MESH", + "ABSCISSES DES SOMMETS DU POLYGONE DE RAFFINEMENT":"ABSCISSAE_OF_THE_VERTICES_OF_THE_POLYGON_TO_REFINE_THE_MESH", + "ORDONNEES DES SOMMETS DU POLYGONE DE RAFFINEMENT":"ORDINATES_OF_THE_VERTICES_OF_THE_POLYGON_TO_REFINE_THE_MESH", "ELIMINATION DES ELEMENTS SECS":"DRY_ELEMENTS_ELIMINATION", "ELIMINATION DES ELEMENTS PARTIELLEMENT SECS":"PARTIALLY_DRY_ELEMENTS_ELIMINATION", + "SEUIL DE SECHERESSE":"DRY_LIMIT", "STOCKAGE DE TOUS LES PAS DE TEMPS":"STORAGE_OF_ALL_TIME_STEPS", "DEBUG":"DEBUG", "CONVERTISSEUR":"CONVERTER", - "CONDITION LIMITE EN FORMAT SERAFIN":"BOUNDARY_CONDITION_IN_SERAFIN_FORMAT", "FORMAT DU FICHIER D ENTREE":"INPUT_FILE_FORMAT", - "FORMAT DU FICHIER DE SORTIE":"OUTPUT_FILE_FORMAT", "FICHIER D ENTREE":"INPUT_FILE", - "FICHIER DE SORTIE":"OUTPUT_FILE", "FICHIER DES CONDITIONS LIMITES":"BOUNDARY_FILE", "FICHIER LOG":"LOG_FILE", + "CONDITION LIMITE EN FORMAT SERAFIN":"BOUNDARY_CONDITION_IN_SERAFIN_FORMAT", + "FORMAT DU FICHIER DE SORTIE":"OUTPUT_FILE_FORMAT", + "FICHIER DE SORTIE":"OUTPUT_FILE", "FICHIER DES CONDITIONS LIMITES EN SORTIE":"OUTPUT_BOUNDARY_FILE", "FICHIER LOG EN SORTIE":"OUTPUT_LOG_FILE", "TRANSLATION":"TRANSLATION", "TRANSLATION SELON X":"X_TRANSLATION", "TRANSLATION SELON Y":"Y_TRANSLATION", - "FICHIER UNIVERSEL LIMITE":"BOUNDARY_UNIVERSAL_FILE", - "DESCRIPTION DES LIBRAIRIES":"DESCRIPTION_OF_LIBRARIES", - "EXECUTABLE PAR DEFAUT":"DEFAULT_EXECUTABLE", - "EXECUTABLE PARALLELE PAR DEFAUT":"DEFAULT_PARALLEL_EXECUTABLE", - "LISTE DES FICHIERS":"LIST_OF_FILES", + "PROCESSEURS PARALLELES":"PARALLEL_PROCESSORS", + "FICHIER FORTRAN":"FORTRAN_FILE", + "LONGUEUR DU VECTEUR":"VECTOR_LENGTH", + "FICHIER DES PARAMETRES":"STEERING_FILE", + "DICTIONNAIRE":"DICTIONARY", } DicoCasEnToCata = { - 'MAXIMUM NUMBER OF BATHYMETRIC POINTS':'MAXIMUM_NUMBER_OF_BATHYMETRIC_POINTS', - 'VECTOR LENGTH':'VECTOR_LENGTH', - 'NUMBER OF VERTICES OF THE POLYGON TO EXTRACT THE MESH':'NUMBER_OF_VERTICES_OF_THE_POLYGON_TO_EXTRACT_THE_MESH', - 'NUMBER OF VERTICES OF THE POLYGON TO REFINE THE MESH':'NUMBER_OF_VERTICES_OF_THE_POLYGON_TO_REFINE_THE_MESH', - 'PARALLEL PROCESSORS':'PARALLEL_PROCESSORS', 'MINIMUM DISTANCE BETWEEN TWO POINTS':'MINIMUM_DISTANCE_BETWEEN_TWO_POINTS', - 'MINIMUM DISTANCE AT BOUNDARY':'MINIMUM_DISTANCE_AT_BOUNDARY', + 'MESH GENERATOR':'MESH_GENERATOR', + 'BINARY STANDARD':'BINARY_STANDARD', + 'UNIVERSAL FILE':'UNIVERSAL_FILE', + 'MESH ADDITIONAL DATA FILE':'MESH_ADDITIONAL_DATA_FILE', + 'GEOMETRY FILE FORMAT FOR TELEMAC':'GEOMETRY_FILE_FORMAT_FOR_TELEMAC', + 'GEOMETRY FILE FOR TELEMAC':'GEOMETRY_FILE_FOR_TELEMAC', + 'BOUNDARY CONDITIONS FILE':'BOUNDARY_CONDITIONS_FILE', 'BOTTOM CORRECTION OF TRIGRID':'BOTTOM_CORRECTION_OF_TRIGRID', - 'ABSCISSAE OF THE VERTICES OF THE POLYGON TO EXTRACT THE MESH':'ABSCISSAE_OF_THE_VERTICES_OF_THE_POLYGON_TO_EXTRACT_THE_MESH', - 'ORDINATES OF THE VERTICES OF THE POLYGON TO EXTRACT THE MESH':'ORDINATES_OF_THE_VERTICES_OF_THE_POLYGON_TO_EXTRACT_THE_MESH', - 'ABSCISSAE OF THE VERTICES OF THE POLYGON TO REFINE THE MESH':'ABSCISSAE_OF_THE_VERTICES_OF_THE_POLYGON_TO_REFINE_THE_MESH', - 'ORDINATES OF THE VERTICES OF THE POLYGON TO REFINE THE MESH':'ORDINATES_OF_THE_VERTICES_OF_THE_POLYGON_TO_REFINE_THE_MESH', + 'BATHYMETRY IN THE UNIVERSAL FILE':'BATHYMETRY_IN_THE_UNIVERSAL_FILE', + 'BOUNDARY CONDITIONS IN THE ADDITIONAL FILE':'BOUNDARY_CONDITIONS_IN_THE_ADDITIONAL_FILE', + 'BOUNDARY UNIVERSAL FILE':'BOUNDARY_UNIVERSAL_FILE', 'OVERSTRESSED TRIANGLES CUTTING':'OVERSTRESSED_TRIANGLES_CUTTING', - 'WRITING NODE COLOURS':'WRITING_NODE_COLOURS', 'ELIMINATION OF BACKWARD DEPENDENCIES':'ELIMINATION_OF_BACKWARD_DEPENDENCIES', - 'CUTTING ELEMENTS IN FOUR':'CUTTING_ELEMENTS_IN_FOUR', - 'BATHYMETRY IN THE UNIVERSAL FILE':'BATHYMETRY_IN_THE_UNIVERSAL_FILE', 'NODES RENUMBERING':'NODES_RENUMBERING', - 'BOUNDARY CONDITIONS IN THE ADDITIONAL FILE':'BOUNDARY_CONDITIONS_IN_THE_ADDITIONAL_FILE', - 'PROJECTION AFTER EXTRACTION':'PROJECTION_AFTER_EXTRACTION', - 'FORTRAN FILE':'FORTRAN_FILE', - 'STEERING FILE':'STEERING_FILE', - 'UNIVERSAL FILE':'UNIVERSAL_FILE', - 'MESH GENERATOR':'MESH_GENERATOR', - 'GEOMETRY FILE FOR TELEMAC':'GEOMETRY_FILE_FOR_TELEMAC', - 'BINARY STANDARD':'BINARY_STANDARD', - 'BOUNDARY CONDITIONS FILE':'BOUNDARY_CONDITIONS_FILE', + 'WRITING NODE COLOURS':'WRITING_NODE_COLOURS', + 'MAXIMUM NUMBER OF BATHYMETRIC POINTS':'MAXIMUM_NUMBER_OF_BATHYMETRIC_POINTS', + 'MINIMUM DISTANCE AT BOUNDARY':'MINIMUM_DISTANCE_AT_BOUNDARY', 'BOTTOM TOPOGRAPHY FILES':'BOTTOM_TOPOGRAPHY_FILES', - 'BIBLIOTHEQUES':'BIBLIOTHEQUES', - 'RELEASE':'RELEASE', - 'MESH ADDITIONAL DATA FILE':'MESH_ADDITIONAL_DATA_FILE', - 'DICTIONARY':'DICTIONARY', - 'DRY LIMIT':'DRY_LIMIT', + 'BOTTOM TOPOGRAPHY FILES 2':'BOTTOM_TOPOGRAPHY_FILES_2', + 'BOTTOM TOPOGRAPHY FILES 3':'BOTTOM_TOPOGRAPHY_FILES_3', + 'BOTTOM TOPOGRAPHY FILES 4':'BOTTOM_TOPOGRAPHY_FILES_4', + 'BOTTOM TOPOGRAPHY FILES 5':'BOTTOM_TOPOGRAPHY_FILES_5', + 'NUMBER OF VERTICES OF THE POLYGON TO EXTRACT THE MESH':'NUMBER_OF_VERTICES_OF_THE_POLYGON_TO_EXTRACT_THE_MESH', + 'ABSCISSAE OF THE VERTICES OF THE POLYGON TO EXTRACT THE MESH':'ABSCISSAE_OF_THE_VERTICES_OF_THE_POLYGON_TO_EXTRACT_THE_MESH', + 'ORDINATES OF THE VERTICES OF THE POLYGON TO EXTRACT THE MESH':'ORDINATES_OF_THE_VERTICES_OF_THE_POLYGON_TO_EXTRACT_THE_MESH', + 'PROJECTION AFTER EXTRACTION':'PROJECTION_AFTER_EXTRACTION', + 'CUTTING ELEMENTS IN FOUR':'CUTTING_ELEMENTS_IN_FOUR', + 'MAX SEGMENTS PER POINT':'MAX_SEGMENTS_PER_POINT', + 'NUMBER OF VERTICES OF THE POLYGON TO REFINE THE MESH':'NUMBER_OF_VERTICES_OF_THE_POLYGON_TO_REFINE_THE_MESH', + 'ABSCISSAE OF THE VERTICES OF THE POLYGON TO REFINE THE MESH':'ABSCISSAE_OF_THE_VERTICES_OF_THE_POLYGON_TO_REFINE_THE_MESH', + 'ORDINATES OF THE VERTICES OF THE POLYGON TO REFINE THE MESH':'ORDINATES_OF_THE_VERTICES_OF_THE_POLYGON_TO_REFINE_THE_MESH', 'DRY ELEMENTS ELIMINATION':'DRY_ELEMENTS_ELIMINATION', 'PARTIALLY DRY ELEMENTS ELIMINATION':'PARTIALLY_DRY_ELEMENTS_ELIMINATION', + 'DRY LIMIT':'DRY_LIMIT', 'STORAGE OF ALL TIME STEPS':'STORAGE_OF_ALL_TIME_STEPS', 'DEBUG':'DEBUG', 'CONVERTER':'CONVERTER', - 'BOUNDARY CONDITION IN SERAFIN FORMAT':'BOUNDARY_CONDITION_IN_SERAFIN_FORMAT', 'INPUT FILE FORMAT':'INPUT_FILE_FORMAT', - 'OUTPUT FILE FORMAT':'OUTPUT_FILE_FORMAT', 'INPUT FILE':'INPUT_FILE', - 'OUTPUT FILE':'OUTPUT_FILE', 'BOUNDARY FILE':'BOUNDARY_FILE', 'LOG FILE':'LOG_FILE', + 'BOUNDARY CONDITION IN SERAFIN FORMAT':'BOUNDARY_CONDITION_IN_SERAFIN_FORMAT', + 'OUTPUT FILE FORMAT':'OUTPUT_FILE_FORMAT', + 'OUTPUT FILE':'OUTPUT_FILE', 'OUTPUT BOUNDARY FILE':'OUTPUT_BOUNDARY_FILE', 'OUTPUT LOG FILE':'OUTPUT_LOG_FILE', 'TRANSLATION':'TRANSLATION', 'X TRANSLATION':'X_TRANSLATION', 'Y TRANSLATION':'Y_TRANSLATION', - 'BOUNDARY UNIVERSAL FILE':'BOUNDARY_UNIVERSAL_FILE', - 'DESCRIPTION OF LIBRARIES':'DESCRIPTION_OF_LIBRARIES', - 'DEFAULT EXECUTABLE':'DEFAULT_EXECUTABLE', - 'DEFAULT PARALLEL EXECUTABLE':'DEFAULT_PARALLEL_EXECUTABLE', - 'LIST OF FILES':'LIST_OF_FILES', + 'PARALLEL PROCESSORS':'PARALLEL_PROCESSORS', + 'FORTRAN FILE':'FORTRAN_FILE', + 'VECTOR LENGTH':'VECTOR_LENGTH', + 'STEERING FILE':'STEERING_FILE', + 'DICTIONARY':'DICTIONARY', } DicoEnumCasFrToEnumCasEn = { 'MESH_GENERATOR':{ @@ -128,6 +128,7 @@ DicoEnumCasFrToEnumCasEn = { "SIMAIL":"SIMAIL", "SELAFIN":"SELAFIN", "TRIGRID":"TRIGRID", + "ADCIRC":"ADCIRC", "FASTTABS":"FASTTABS", }, @@ -137,6 +138,13 @@ DicoEnumCasFrToEnumCasEn = { "I3E":"I3E", }, +'GEOMETRY_FILE_FORMAT_FOR_TELEMAC':{ + "":"", + "SERAFIN":"SERAFIN", + "SERAFIND":"SERAFIND", + "MED":"MED", +}, + 'INPUT_FILE_FORMAT':{ "SERAFIN":"SERAFIN", "SERAFIND":"SERAFIND", diff --git a/Telemac/stbtel_labelCataToIhm_en.qm b/Telemac/stbtel_labelCataToIhm_en.qm index 6d29faf393c9c20193a63564039616f59cabe4e1..50f975273679414673b8925bc9c7848b7ee7071b 100644 GIT binary patch delta 1264 zcmah{ZEO=|9RFRf*WNw5zN~L60VfFK#el)BWdxmBfm_#Q?bY_Cn}P+U8&gK7EerTz zjV~Ax&A`WHLLv$d5RDSjKv*P;3DLw)ie`b2W;z)OF)BniFzWv{?FWtSE_eUS|M~x3 zp5Jrhpnhqc;FHj^?2uK%S38co?W?!N^NBfbAfzo&A*R7^WV58FUGOo7FUT zQ8+w01-K>Q*cU!Py(xTle+~#-u?&r6iEoMJw*x{t87nK9(mxm?pufqPWM%@n+@jO%?ubGC8s(ee0wr@s`E_ZD zgtss)WF?^mEU|(%;CYqJ&PUiI>LB3%feq~8fM{c{pFdCdVfN-#!udzoNxhAD`q-(y zvqiw$$1Y3M@Jz7jtG|=*YZcRB4`4s1HtvYh`X`S5sXQh0lw+SYL`NYz4(=VJgLvEV z)5#-5=ytAp`VFf6&W`6!6E5fcZX+4>E_PM6jL=RkuEzIhU0Lqh!;g`n?Nr~T`X$vn zDN^fN`Z!MY9oOyeU!aI;yJ_2>ixl2&{-dRXS9@2Kj#>^0yx-b#hl=&cp+I*IJ+k>n z*vx0WZWwx;pR-N~wS1j)&pIqbZFza#>~hA?lX^52Nj7(6nqsY5I#X*Wu-v#U+qreu zj)Gunmf>}C!|VPB9-12-`VaUrG9R8B9xm;ZB9_uh*)8zL*?mHgA7Md%8K-Vcb!4)MLRuuRab&-EzRMX>{ zK@?_EnI=6Ij~IMFt>&7#eI7#$JJE|>D3tZ2SR&cREA3wXp}L>{;t2DcbF_6O;>5X| zc9cgJUFf0rPCC6jb$aRhnVFhHx7jUo1>%wROj?VY-qV?+mdYgcSi&SPt#X|ZN`JVw zi3?Qdrh$Lhu<32atdG(YzMn12eMpf^=Zrx1Z~3wiOKDB9gqe{^ewQ0*8aDqf(@z)j p88qd_~&Hu#{hzT9qix$WI_gn*3oqv zEP)0=oT34_>JmRpjB^t-F{UhG#_WSc6a5BcfkYE^PMii4ha_&G#Q$xz8zI`{+|zT< zd4A9TdH(0#Zk%m6<;W4)-uaz~eUMs5Mu-eINlv^=WSyiJf8mLY`)TUpg#S?4-n)r zoEmZ=(FVhrH?d!}(bzQqBS5o8|K?*vnscTNo93bGk|}<}3L$N#-ACteE@jGH-HZ6| zP1m+w26xaj|G^T32h8U38Oo7!#{BTkN}|f&%+if#p!6^EcVk&}QE+D>^oseRPKgpgQm;~3up5F>?SucB4 zkN5UbcIl_PM2=wDQllOHH@s?T?ry=sgO7w#K9g#{0fX}iK2eaOt$as}k0_gTJC%#NEBPj)M(XB>fs2cy9y6RtQyI1y#A}`*9 zkJK0NeUOwvk-aMlPeb?`;MKOO>D2v|?Q{kBh+h`k3#CiJxG4B!uPmUmd)QEZfvsZ{ z+2ZxMs0Cp?7)8ygLW-3jOA8<7p-qUY!FMe~${2TIa~%nYD*EvVdawFYT&;(!E{IX9 zUv{@r2*ZfD6pN~pa#-({{tu7>ybIV2OfT78vZCf5SX>APB{`&QDXUgI*2eX25|O^I zU}&*R_sii#Ap$i)2yrQ$*6I8a+c;ChQW)9POSCLpANGd$yrW`JoBzadQxme1jD5AZ z1ad5252MVByf?xdag|NYoyo35e|MHqKZA0LKuZD@b>f+!&QcvFWk~1F*Sa<``4cs1 F=5M)JHs}BV diff --git a/Telemac/stbtel_labelCataToIhm_fr.qm b/Telemac/stbtel_labelCataToIhm_fr.qm index 1fe6afcdb9ba6c663d856b6054b2cd6c4c6281dd..9b32caac832a852ff7a4b7883e8ca48bb406afb9 100644 GIT binary patch delta 1314 zcmaKqZ%kWd6vm(1+e`1g{YT+app=EVxlN3b@n>1$7}RoMU1-bN3+rIo5y6Q8fdNyL z(2(f@Geh)+uq|f6$wV}6F_mP?=02z+`!Y>Na7$1kP6rw?qb`$fi}Aorjr*{h-23!> z-{+k3JLm1_){8|0O5_Mo-T{~j0B;j%4X|Snu-pVfuLEflK=mdd;~AjlP0}goyYc`- z0M_^Z1dN|!+wd?T_P|##O7T57d+<>pp%=eQTqM1TrJ7#Q!`W}G0;DIo7Y^wF^Cj-s zg(V#(d$ZP!6cnYl#^LOr2VXLCIw-BJXs1J2NM`fGz?MDj%U59?``&&TzIO%QDIl=m3 z2oWT&6SfZ#dGf5#TzDNw+#+V6>gGs6cfdPCf}d4U?95UUCa#F#CH7cJCSx)`~-m-2rhUfX$vKzqf7 zk7E%c{X~)yr>WCKDSLM^U{90$i_Zei^HPILqrg$AX_5*#W~CoS+iAqNrN7oiX_UXp zYQCNT*2uocXab5^z8}{pSDS{Yff>1eoZ{2c4XzJCHpDU`1Yv{w4%*!27)R+iy(M zh~G8;K6acYAX%Ph9VC6(va9DbUClYmPbCDbT(jD?pQVn!v=)Cz=hAU&Cp$qv&DPE} z?0x!inKtMO^pBICB<-`_y>Wo zsU)x~td^@@)u#ocEygO2SLkRqIl~~UAuZr?vjL}_O`5v6Dt6eio(-8dr(~6>ey^%g zWT~fI4VU@@UYEvZ%&S z!MNW;TfC?kR5i`xD+{uIhbyYj_>J43KqJChqH8Daf7#;!k`_>1+A?Ew&gs_u1K$oh AasU7T delta 1519 zcma)4ZA?{V9RJ<-a}S*R0+;I*q*z%is|BLW%D@X8;JVAbcwZDzyMZ8Lz@>YESvhZn zMVc%0n5>#WYBu)4;knfSi@kZz}{0P9AmFN0O)6MX>@}7pT)IxuY-@qIdu;poY!pLr3Dhw zkD7PCyaw0@HOH4nNhD|o&NLBtgZ9YqG1ejNjfFuHcj)Z-RX~PU=lsk7=+^3Xb$f-Fq9=rlpG?#7hi0?w3=Q^~7p>0(vc}E+%g-c$ z1%>9e<0Qxqn|~VWWD9;X|Mg%JFdr1~9?159F4tV@5JM7zbNkq`xa zCBF57LZKRQ@6n^gnGuKmVd4ynBi*Bb2E}k{;yW>f5`j>wIXI|R$(nJQM zJCVMkwUUZT(ogPS;^(oX#n_OeUbeU-|E<hSvn9JS;&^A2dHENgo{CGJa>^W`+;*kQG=9Agrl))gP^qp_g%aDFcZ)mX3F ze&)n=u7xr5>KNvFrBzp{M6>Qq=IV?ZC7|!i&qgU)(12FHqv*tDG~s!4@f{b`3uWYx zN)6qeJ;tA5c~szD^!6?bk{&+R@F^F`jQ%3Y=Nad1e0UnsCS+^7wrb z*|*vg@cXJ|rQhyI7Kn>A@*>FCN`{T(=|p{sy$N~f;5^3K$bXwS=igZk8Rc??JM0Zb z zJBJFSLUzspO0SfCGWB^vHxI`x<4TitWaVO}(9XRv?p9?!#u4R8m8q^DrNB*`Z)A7X zFR|OiWqN#URm2|-sYQ{DuG(e)1Fo4ccNRK-4rs*VtMCV^-HK0gDK=YS(L#8sBc5`1 zv)gKfcTy;MJwXbrP_-##wj0SI`)Q3+fR7&AZgXPrxvSMolUp+v=#s~rTXco@aZ?vJ zsg|R+x|PSvnu>rD*u&W_nF6v`b_bO`=1gTv_B+b*oX2x)2vTG{oi_3vL*wjjL9rXM Plh5V+u1W68Eztf8CO~4b diff --git a/Telemac/telemac2d_cata_auto.py b/Telemac/telemac2d_cata_auto.py index 5fe6197c..52447414 100644 --- a/Telemac/telemac2d_cata_auto.py +++ b/Telemac/telemac2d_cata_auto.py @@ -44,11 +44,10 @@ JdC = JDC_CATA (code = 'TELEMAC2D', # Catalog entry for the MAP function : c_pre_interfaceBody_mesh # ======================================================================= -VERSION_CATALOGUE="TRUNK_20180306" +VERSION_CATALOGUE="TRUNK_20210323" # ----------------------------------------------------------------------- COMPUTATION_ENVIRONMENT = PROC(nom= "COMPUTATION_ENVIRONMENT",op = None, # ----------------------------------------------------------------------- - UIinfo = {"groupes": ("CACHE")}, # ----------------------------------- INITIALIZATION = FACT(statut='o', # ----------------------------------- @@ -57,9 +56,8 @@ COMPUTATION_ENVIRONMENT = PROC(nom= "COMPUTATION_ENVIRONMENT",op = None, # ----------------------------------- typ = 'TXM', defaut = '', - 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.""", + fr = """Titre du cas etudie.""", + ang = """Title of the case being considered.""", ), # ----------------------------------- INITIAL_CONDITIONS = SIMP(statut ='o', @@ -68,44 +66,48 @@ drawings.""", into = ['ZERO ELEVATION','CONSTANT ELEVATION','ZERO DEPTH','CONSTANT DEPTH','SPECIAL','PARTICULIERES','PARTICULAR','TPXO SATELLITE ALTIMETRY'], defaut = 'ZERO ELEVATION', fr = """Permet de definir les conditions initiales sur -les hauteurs d''eau. +les hauteurs d''eau notamment. Les valeurs possibles sont : - - COTE NULLE. Initialise la cote de surface libre a 0. +\begin{itemize} +\item 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 + et du fond ; +\item COTE CONSTANTE : Initialise la cote de surface libre a la +valeur donnee par le mot-cle \telkey{COTE INITIALE}. Les hauteurs +d''eau initiales sont calculees comme precedemment ; +\item HAUTEUR NULLE : Initialise les hauteurs d''eau a 0 ; +\item HAUTEUR CONSTANTE : Initialise les hauteurs d''eau a la valeur +donnee par le mot-cle \telkey{HAUTEUR INITIALE} ; +\item ALTIMETRIE SATELLITE TPXO : Les conditions initiales sur la +hauteur d''eau et les vitesses sont etablies 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.""", - ang = """Makes it possible to define the initial conditions with +ont ete extraites et +sauvees dans les fichiers +\telkey{BASE BINAIRE 1/2 DE DONNEES DE MAREE} ; +\item PARTICULIERES : Les conditions initiales sur la hauteur d''eau +doivent etre precisees dans le sous-programme \telkey{USER\_CONDIN\_H}. +\end{itemize}""", + ang = """Makes it possible to define the initial conditions of the water depth. The possible values are as follows: - - ZERO ELEVATION-. Initializes the free surface elevation to 0. +\begin{itemize} +\item 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.""", +between the free surface and the bottom, +\item CONSTANT ELEVATION: Initializes the water elevation to the value +given by the keyword \telkey{INITIAL ELEVATION}. +The initial water depths are computed as in the previous case, +\item ZERO DEPTH: Initializes the water depths to 0. +\item CONSTANT DEPTH: Initializes the water depths to the value given +by the keyword \telkey{INITIAL DEPTH}, +\item TPXO SATELITE ALTIMETRY: The initial conditions on the free +surface and velocities are established from the satellite program +data given by the harmonic constants database coming from OSU +(e.g. TPXO) and stored in the \telkey{BINARY DATABASE 1/2 FOR TIDE}, +\item SPECIAL or PARTICULAR: The initial conditions with the water depth +should be stated in the \telfile{USER\_CONDIN\_H} subroutine. +\end{itemize}""", ), # ----------------------------------- b_INITIAL_CONDITIONSG = BLOC(condition="INITIAL_CONDITIONS == 'CONSTANT ELEVATION'", @@ -116,9 +118,9 @@ constituents of which are stored in the TIDE DATA BASE file.""", typ = 'R', defaut = 0., fr = """Valeur utilisee avec l''option : - CONDITIONS INITIALES - COTE CONSTANTE""", - ang = """Value to be used with the option : -INITIAL CONDITIONS -CONSTANT ELEVATION""", +\telkey{CONDITIONS INITIALES} : ''COTE CONSTANTE''.""", + ang = """Value to be used with the option: +\telkey{INITIAL CONDITIONS} : ''CONSTANT ELEVATION''.""", ), ), # ----------------------------------- @@ -130,9 +132,9 @@ INITIAL CONDITIONS -CONSTANT ELEVATION""", typ = 'R', defaut = 0., fr = """Valeur utilisee avec l''option : -CONDITIONS INITIALES :-HAUTEUR CONSTANTE-""", +\telkey{CONDITIONS INITIALES} : ''HAUTEUR CONSTANTE''.""", ang = """Value to be used along with the option: - INITIAL CONDITIONS -CONSTANT DEPTH-""", +\telkey{INITIAL CONDITIONS} : ''CONSTANT DEPTH''.""", ), ), # ----------------------------------- @@ -141,18 +143,22 @@ CONDITIONS INITIALES :-HAUTEUR CONSTANTE-""", typ = 'TXM', into = ['BIN','SERAFIN','SERAFIND','MED'], defaut = 'BIN', - fr = """Format du fichier de geometrie. + fr = """Format du \telkey{FICHIER DE DONNEES BINAIRE 1}. Les valeurs possibles sont : -- BIN : format binaire standard -- SERAFIN : format standard simple precision pour Telemac; -- SERAFIND: format standard double precision pour Telemac; -- MED : format MED base sur HDF5""", - ang = """Geometry file format. +\begin{itemize} +\item BIN : format binaire standard ; +\item SERAFIN : format standard simple precision pour \tel ; +\item SERAFIND: format standard double precision pour \tel ; +\item MED : format MED double precision base sur HDF5. +\end{itemize}""", + ang = """Format of the \telkey{BINARY DATA FILE 1}. Possible values are: -- BIN : Standard binary format -- SERAFIN : classical single precision format in Telemac; -- SERAFIND: classical double precision format in Telemac; -- MED : MED format based on HDF5""", +\begin{itemize} +\item BIN : standard binary format, +\item SERAFIN : classical single precision format in \tel, +\item SERAFIND: classical double precision format in \tel, +\item MED : MED double precision format based on HDF5. +\end{itemize}""", ), # ----------------------------------- BINARY_DATA_FILE_1 = SIMP(statut ='f', @@ -160,10 +166,8 @@ Possible values are: typ = ('Fichier','All Files (*)'), defaut = '', fr = """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.""", - ang = """Binary-coded data file made available to the user. -The data in this file shall be read on channel 24.""", +de l''utilisateur.""", + ang = """Binary-coded data file available to the user.""", ), # ----------------------------------- BINARY_DATA_FILE_2_FORMAT = SIMP(statut ='f', @@ -171,18 +175,22 @@ The data in this file shall be read on channel 24.""", typ = 'TXM', into = ['BIN','SERAFIN','SERAFIND','MED'], defaut = 'BIN', - fr = """Format du fichier de geometrie. + fr = """Format du \telkey{FICHIER DE DONNEES BINAIRE 2}. Les valeurs possibles sont : -- BIN : format binaire standard -- SERAFIN : format standard simple precision pour Telemac; -- SERAFIND: format standard double precision pour Telemac; -- MED : format MED base sur HDF5""", - ang = """Geometry file format. +\begin{itemize} +\item BIN : format binaire standard ; +\item SERAFIN : format standard simple precision pour \tel ; +\item SERAFIND: format standard double precision pour \tel ; +\item MED : format MED double precision base sur HDF5. +\end{itemize}""", + ang = """Format of the \telkey{BINARY DATA FILE 2}. Possible values are: -- BIN : Standard binary format -- SERAFIN : classical single precision format in Telemac; -- SERAFIND: classical double precision format in Telemac; -- MED : MED format based on HDF5""", +\begin{itemize} +\item BIN : standard binary format, +\item SERAFIN : classical single precision format in \tel, +\item SERAFIND: classical double precision format in \tel, +\item MED : MED double precision format based on HDF5. +\end{itemize}""", ), # ----------------------------------- BINARY_DATA_FILE_2 = SIMP(statut ='f', @@ -190,10 +198,8 @@ Possible values are: typ = ('Fichier','All Files (*)'), defaut = '', fr = """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.""", - ang = """Binary-coded data file made available to the user. -The data in this file shall be read on channel 25.""", +de l''utilisateur.""", + ang = """Binary-coded data file available to the user.""", ), # ----------------------------------- FORMATTED_DATA_FILE_1 = SIMP(statut ='f', @@ -201,10 +207,8 @@ The data in this file shall be read on channel 25.""", typ = ('Fichier','All Files (*)'), defaut = '', fr = """Fichier de donnees formate mis a la disposition de -l''utilisateur. -Les donnees de ce fichier seront a lire sur le canal 26.""", - ang = """Formatted data file made available to the user. -The data in this file shall be read on channel 26.""", +l''utilisateur.""", + ang = """Formatted data file available to the user.""", ), # ----------------------------------- FORMATTED_DATA_FILE_2 = SIMP(statut ='f', @@ -212,10 +216,8 @@ The data in this file shall be read on channel 26.""", typ = ('Fichier','All Files (*)'), defaut = '', fr = """Fichier de donnees formate mis a la disposition de -l''utilisateur. -Les donnees de ce fichier seront a lire sur le canal 27.""", - ang = """Formatted data file made available to the user. -The data in this file shall be read on channel 27.""", +l''utilisateur.""", + ang = """Formatted data file available to the user.""", ), # ----------------------------------- INPUT_FILES = FACT(statut='o', @@ -224,18 +226,22 @@ The data in this file shall be read on channel 27.""", GEOMETRY_FILE_FORMAT = SIMP(statut ='o', # ----------------------------------- typ = 'TXM', - into = ['SERAFIN?','SERAFIND','MED'], - defaut = 'SERAFIN?', - fr = """Format du fichier de geometrie. + into = ['SERAFIN','SERAFIND','MED'], + defaut = 'SERAFIN', + fr = """Format du \telkey{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""", - ang = """Geometry file format. +\begin{itemize} +\item SERAFIN : format standard simple precision pour \tel ; +\item SERAFIND: format standard double precision pour \tel ; +\item MED : format MED double precision base sur HDF5. +\end{itemize}""", + ang = """Format of the \telkey{GEOMETRY FILE}. Possible values are: -- SERAFIN : classical single precision format in Telemac; -- SERAFIND: classical double precision format in Telemac; -- MED : MED format based on HDF5""", +\begin{itemize} +\item SERAFIN : classical single precision format in \tel, +\item SERAFIND: classical double precision format in \tel, +\item MED : MED double precision format based on HDF5. +\end{itemize}""", ), # ----------------------------------- GEOMETRY_FILE = SIMP(statut ='o', @@ -249,9 +255,11 @@ contain the topography and the friction coefficients.""", FORTRAN_FILE = SIMP(statut ='f', # ----------------------------------- typ = 'FichierOuRepertoire', - defaut = 'DEFAUT', - fr = """Nom du fichier FORTRAN a soumettre.""", - ang = """Name of FORTRAN file to be submitted.""", + defaut = '', + fr = """Nom du fichier ou repertoire FORTRAN a soumettre, contenant les +sous-programmes specifiques au modele.""", + ang = """Name of the FORTRAN file or directory to be submitted, +including specific subroutines of the model.""", ), # ----------------------------------- BOTTOM_TOPOGRAPHY_FILE = SIMP(statut ='f', @@ -272,15 +280,27 @@ the computation.""", typ = 'I', defaut = 0, fr = """Nombre de lissages effectues sur la topographie. -chaque lissage, effectue a l''aide d''une matrice de masse, +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.""", ang = """Number of smoothings on bottom topography. -each smoothing is mass conservative. +Each smoothing is mass conservative. to be used when interpolation of bathymetry on the mesh gives very rough results.""", ), +# ----------------------------------- + BOTTOM_SMOOTHINGS_AFTER_USER_MODIFICATIONS = SIMP(statut ='o', +# ----------------------------------- + typ = bool, + defaut = True, + fr = """Indique si le nombre d eventuels lissages sur la topographie est +effectue apres (ou sinon avant) les modifications de topographie +apportees par l utilisateur.""", + ang = """Indicates if the number of potential smoothings on bottom topography +is done after (or before otherwise) the topography modifications +implemented by the user.""", + ), # ----------------------------------- BOUNDARY_CONDITIONS_FILE = SIMP(statut ='o', # ----------------------------------- @@ -298,42 +318,45 @@ through colours that are assigned to the boundary nodes.""", typ = bool, defaut = False, fr = """Option utilisee principalement pour le dossier de validation. Le -fichier des resultats du calcul precedent est alors considere comme une +\telkey{FICHIER DE REFERENCE} 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.""", - ang = """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.""", +effectuee par le sous-programme \telfile{BIEF\_VALIDA} +qui peut etre une comparaison avec une solution exacte par exemple.""", + ang = """This option is primarily used for the validation documents. +The \telkey{REFERENCE FILE} is then considered as a reference +which the computation is going to be compared with. +The comparison is done by the subroutine \telfile{BIEF\_VALIDA}, +which can be modified so as to include, for example, +a comparison with an exact solution.""", ), # ----------------------------------- REFERENCE_FILE_FORMAT = SIMP(statut ='f', # ----------------------------------- typ = 'TXM', - into = ['SERAFIN?','SERAFIND','MED'], - defaut = 'SERAFIN?', - fr = """Format du fichier de resultats du calcul precedent. + into = ['SERAFIN','SERAFIND','MED'], + defaut = 'SERAFIN', + fr = """Format du \telkey{FICHIER DE REFERENCE}. Les valeurs possibles sont : -- SERAFIN : format standard simple precision pour Telemac; -- SERAFIND: format standard double precision pour Telemac; -- MED : format MED base sur HDF5""", - ang = """Previous computation results file format. +\begin{itemize} +\item SERAFIN : format standard simple precision pour \tel ; +\item SERAFIND: format standard double precision pour \tel ; +\item MED : format MED double precision base sur HDF5. +\end{itemize}""", + ang = """Format of the \telkey{REFERENCE FILE}. Possible values are: -- SERAFIN : classical single precision format in Telemac; -- SERAFIND: classical double precision format in Telemac; -- MED : MED format based on HDF5""", +\begin{itemize} +\item SERAFIN : classical single precision format in \tel, +\item SERAFIND: classical double precision format in \tel, +\item MED : MED double precision format based on HDF5. +\end{itemize}""", ), # ----------------------------------- REFERENCE_FILE = SIMP(statut ='f', # ----------------------------------- typ = ('Fichier','All Files (*)'), defaut = '', - 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.""", + fr = """Fichier de resultats de reference pour la validation.""", + ang = """Binary-coded result file for validation.""", ), ), # ----------------------------------- @@ -344,64 +367,76 @@ into this file shall be written on channel 22.""", # ----------------------------------- typ = 'I', defaut = 0, - fr = """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...""", - ang = """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....""", + fr = """Nombre de processeurs pour la decomposition en parallele: +\begin{itemize} +\item 0 : 1 machine, compilation sans bibliotheque de parallelisme ; +\item 1 : 1 machine, compilation avec bibliotheque de parallelisme ; +\item 2 : 2 processeurs ou machines en parallele etc... +\end{itemize}""", + ang = """Number of processors for domain partition. +\begin{itemize} +\item 0: 1 machine, compiling without parallel library, +\item 1: 1 machine, compiling with a parallel library, +\item 2: 2 processors or machines in parallel etc... +\end{itemize}""", ), # ----------------------------------- CHECKING_THE_MESH = SIMP(statut ='o', # ----------------------------------- typ = bool, defaut = False, - fr = """Si oui on appelle le sous-programme checkmesh qui verifie + fr = """Si OUI on appelle le sous-programme \telfile{CHECKMESH} qui verifie la coherence du maillage, points superposes, etc.""", - ang = """if this key word is equal to yes, a call to subroutine -checkmesh will look for errors in the mesh, superimposed points, etc.""", + ang = """If this keyword is equal to YES, a call to subroutine +\telfile{CHECKMESH} will look for errors in the mesh, +superimposed points, etc.""", ), # ----------------------------------- MAXIMUM_NUMBER_OF_BOUNDARIES = SIMP(statut ='f', # ----------------------------------- typ = 'I', defaut = 30, - fr = """nombre maximal de frontieres differentes dans le maillage. -Sert au dimensionnement de la memoire, a augmenter si necessaire""", - ang = """maximal number of boundaries in the mesh. -Used for dimensioning arrays. Can be increased if needed""", + fr = """Nombre maximal de frontieres differentes dans le maillage. +Sert au dimensionnement de la memoire, a augmenter si necessaire.""", + ang = """Maximal number of boundaries in the mesh. +Used for dimensioning arrays. Can be increased if needed.""", ), # ----------------------------------- MAXIMUM_NUMBER_OF_SOURCES = SIMP(statut ='f', # ----------------------------------- typ = 'I', defaut = 20, - fr = """nombre maximal de points sources dans le maillage. -Sert au dimensionnement de la memoire, a augmenter si necessaire""", - ang = """maximal number of punctual sources in the mesh. -Used for dimensioning arrays. Can be increased if needed""", + fr = """Nombre maximal de points sources dans le maillage. +Sert au dimensionnement de la memoire, a augmenter si necessaire.""", + ang = """Maximal number of punctual sources in the mesh. +Used for dimensioning arrays. Can be increased if needed.""", ), # ----------------------------------- MAXIMUM_NUMBER_OF_TRACERS = SIMP(statut ='f', # ----------------------------------- typ = 'I', defaut = 20, - fr = """nombre maximal de traceurs. -Sert au dimensionnement de la memoire, a augmenter si necessaire""", - ang = """maximal number of tracers. -Used for dimensioning arrays. Can be increased if needed""", + fr = """Nombre maximal de traceurs. +Sert au dimensionnement de la memoire, a augmenter si necessaire.""", + ang = """Maximal number of tracers. +Used for dimensioning arrays. Can be increased if needed.""", ), # ----------------------------------- VECTOR_LENGTH = SIMP(statut ='f', # ----------------------------------- typ = 'I', defaut = 1, - fr = """LONGUEUR DU VECTEUR POUR LES MACHINES VECTORIELLES""", - ang = """VECTOR LENGTH ON VECTOR MACHINES""", + fr = """Longueur du vecteur pour les machines vectorielles.""", + ang = """Vector length on vector machines.""", + ), +# ----------------------------------- + SECURITY_COEFFICIENT_FOR_SCARACT = SIMP(statut ='o', +# ----------------------------------- + typ = 'R', + defaut = 1., + fr = """Coefficient de securite pour l''allocation de memoire pour +\telfile{SCARACT}.""", + ang = """Security coefficient for memory allocation for \telfile{SCARACT}.""", ), ), ), @@ -416,31 +451,37 @@ Used for dimensioning arrays. Can be increased if needed""", fr = """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 : +\begin{itemize} +\item NON : Il s''agit du premier passage pour ce calcul et il est +necessaire de definir un jeu complet de conditions initiales +\item 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 +temps du \telkey{FICHIER DU CALCUL PRECEDENT} du fichier des parametres utilise pour soumettre le calcul. +\end{itemize} Par contre, l''ensemble des donnees du fichier des parametres -peuvent etre redefinies ; ce qui offre la possibilite de changer +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 ... +frottement, d''ajouter ou retirer un traceur\ldots\\ De meme, il est necessaire de definir des conditions aux limites -(sous-programme BORD ou valeurs placees dans le fichier des +(sous-programme \telfile{BORD} ou valeurs placees dans le fichier des parametres), qui peuvent egalement etre modifiees.""", ang = """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: +\begin{itemize} +\item NO: It is the first run for this computation and a whole set of +initial conditions should be defined, +\item 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. +\telkey{PREVIOUS COMPUTATION FILE} defined in the steering file +used for submitting the computation. +\end{itemize} 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.""", +the turbulence model, the friction, to add or remove a tracer\ldots\\ +It is also possible to define new boundary conditions +(in the subroutine \telfile{BORD} or values defined +in the steering file).""", ), # ----------------------------------- b_COMPUTATION_CONTINUEDG = BLOC(condition="COMPUTATION_CONTINUED == True", @@ -449,31 +490,34 @@ It is also possible to define new boundary conditions.""", PREVIOUS_COMPUTATION_FILE_FORMAT = SIMP(statut ='o', # ----------------------------------- typ = 'TXM', - into = ['SERAFIN?','SERAFIND','MED'], - defaut = 'SERAFIN?', - fr = """Format du fichier de resultats du calcul precedent. + into = ['SERAFIN','SERAFIND','MED'], + defaut = 'SERAFIN', + fr = """Format du \telkey{FICHIER 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""", - ang = """Previous computation results file format. +\begin{itemize} +\item SERAFIN : format standard simple precision pour \tel ; +\item SERAFIND: format standard double precision pour \tel ; +\item MED : format MED double precision base sur HDF5. +\end{itemize}""", + ang = """Format of the \telkey{PREVIOUS COMPUTATION FILE}. Possible values are: -- SERAFIN : classical single precision format in Telemac; -- SERAFIND: classical double precision format in Telemac; -- MED : MED format based on HDF5""", +\begin{itemize} +\item SERAFIN : classical single precision format in \tel, +\item SERAFIND: classical double precision format in \tel, +\item MED : MED double precision format based on HDF5. +\end{itemize}""", ), # ----------------------------------- PREVIOUS_COMPUTATION_FILE = SIMP(statut ='o', # ----------------------------------- typ = ('Fichier','All Files (*)'), defaut = '', - fr = """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.""", - ang = """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.""", + fr = """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 calcul.""", + ang = """Name of a file containing the results of an earlier computation +which was made on the same mesh. The last recorded time step will +provide the initial conditions for the new computation.""", ), # ----------------------------------- RECORD_NUMBER_FOR_RESTART = SIMP(statut ='o', @@ -482,9 +526,10 @@ step will provid the initial conditions for the new computation.""", defaut = 0, fr = """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""", - ang = """In case of COMPUTATION CONTINUED, record number to -start from in the PREVIOUS COMPUTATION FILE""", +que l''on prend le dernier enregistrement.""", + ang = """In case of \telkey{COMPUTATION CONTINUED} = YES, record number +to start from in the \telkey{PREVIOUS COMPUTATION FILE}. +0 means the last record is taken.""", ), ), # ----------------------------------- @@ -492,8 +537,8 @@ start from in the PREVIOUS COMPUTATION FILE""", # ----------------------------------- typ = bool, defaut = False, - fr = """Remet le temps a zero en cas de suite de calcul""", - ang = """Initial time set to zero in case of restart""", + fr = """Remet le temps a zero en cas de suite de calcul.""", + ang = """Initial time set to zero in case of restart.""", ), ), # ----------------------------------- @@ -508,158 +553,190 @@ start from in the PREVIOUS COMPUTATION FILE""", typ = 'I', defaut = 0, fr = """Determine le nombre de pas de temps a partir duquel debute -l''ecriture des resultats dans le FICHIER DES RESULTATS.""", +l''ecriture des resultats dans le \telkey{FICHIER DES RESULTATS}.""", ang = """Determines the number of time steps after which the results -are first written into the RESULTS FILE.""", +are first written into the \telkey{RESULTS FILE}.""", ), # ----------------------------------- 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 (voir ce mot-cle) 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.""", + fr = """Determine la periode en nombre de pas de temps d''impression des +\telkey{VARIABLES POUR LES SORTIES GRAPHIQUES} +(voir ce mot-cle) dans le \telkey{FICHIER DES RESULTATS}.""", + ang = """Determines, in number of time steps, the printout period for the +\telkey{VARIABLES FOR GRAPHIC PRINTOUTS} +in the \telkey{RESULTS FILE}.""", ), # ----------------------------------- VARIABLES_FOR_GRAPHIC_PRINTOUTS = SIMP(statut ='o', # ----------------------------------- typ = 'TXM', min=0, max='**', - 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.","All the tracers 1 to 9.","All the tracers 10 to 19.","turbulent kinetic energy in k-epsilon model (J/kg)","dissipation of turbulent energy (W/kg)","turbulent viscosity (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","gradient 1, etc. ","reference level for Nestor "], + 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* etc.","tracer1 etc.","tracer2 etc.","tracer3 etc.","tracer4 etc.","tracer5 etc.","tracer6 etc.","tracer7 etc.","tracer8 etc.","tracer9 etc.","tracer10 etc.","tracer11 etc.","tracer12 etc.","tracer13 etc.","tracer14 etc.","tracer15 etc.","tracer16 etc.","tracer17 etc.","tracer18 etc.","tracer19 etc.","tracer** etc.","tracer* etc.","tracer1 etc.","tracer2 etc.","tracer3 etc.","tracer4 etc.","tracer5 etc.","tracer6 etc.","tracer7 etc.","tracer8 etc.","tracer9 etc.","tracer10 etc.","tracer11 etc.","tracer12 etc.","tracer13 etc.","tracer14 etc.","tracer15 etc.","tracer16 etc.","tracer17 etc.","tracer18 etc.","tracer19 etc.","tracer** etc.","tracer* etc.","tracer1 etc.","tracer2 etc.","tracer3 etc.","tracer4 etc.","tracer5 etc.","tracer6 etc.","tracer7 etc.","tracer8 etc.","tracer9 etc.","tracer10 etc.","tracer11 etc.","tracer12 etc.","tracer13 etc.","tracer14 etc.","tracer15 etc.","tracer16 etc.","tracer17 etc.","tracer18 etc.","tracer19 etc.","tracer** etc.","tracer* etc.","tracer1 etc.","tracer2 etc.","tracer3 etc.","tracer4 etc.","tracer5 etc.","tracer6 etc.","tracer7 etc.","tracer8 etc.","tracer9 etc.","tracer10 etc.","tracer11 etc.","tracer12 etc.","tracer13 etc.","tracer14 etc.","tracer15 etc.","tracer16 etc.","tracer17 etc.","tracer18 etc.","tracer19 etc.","tracer** etc.","tracer* etc.","tracer1 etc.","tracer2 etc.","tracer3 etc.","tracer4 etc.","tracer5 etc.","tracer6 etc.","tracer7 etc.","tracer8 etc.","tracer9 etc.","tracer10 etc.","tracer11 etc.","tracer12 etc.","tracer13 etc.","tracer14 etc.","tracer15 etc.","tracer16 etc.","tracer17 etc.","tracer18 etc.","tracer19 etc.","tracer** etc.","tracer* etc.","tracer1 etc.","tracer2 etc.","tracer3 etc.","tracer4 etc.","tracer5 etc.","tracer6 etc.","tracer7 etc.","tracer8 etc.","tracer9 etc.","tracer10 etc.","tracer11 etc.","tracer12 etc.","tracer13 etc.","tracer14 etc.","tracer15 etc.","tracer16 etc.","tracer17 etc.","tracer18 etc.","tracer19 etc.","tracer** etc.","tracer* etc.","tracer1 etc.","tracer2 etc.","tracer3 etc.","tracer4 etc.","tracer5 etc.","tracer6 etc.","tracer7 etc.","tracer8 etc.","tracer9 etc.","tracer10 etc.","tracer11 etc.","tracer12 etc.","tracer13 etc.","tracer14 etc.","tracer15 etc.","tracer16 etc.","tracer17 etc.","tracer18 etc.","tracer19 etc.","tracer** etc.","tracer* etc.","tracer1 etc.","tracer2 etc.","tracer3 etc.","tracer4 etc.","tracer5 etc.","tracer6 etc.","tracer7 etc.","tracer8 etc.","tracer9 etc.","tracer10 etc.","tracer11 etc.","tracer12 etc.","tracer13 etc.","tracer14 etc.","tracer15 etc.","tracer16 etc.","tracer17 etc.","tracer18 etc.","tracer19 etc.","tracer** etc.","tracer* etc.","tracer1 etc.","tracer2 etc.","tracer3 etc.","tracer4 etc.","tracer5 etc.","tracer6 etc.","tracer7 etc.","tracer8 etc.","tracer9 etc.","tracer10 etc.","tracer11 etc.","tracer12 etc.","tracer13 etc.","tracer14 etc.","tracer15 etc.","tracer16 etc.","tracer17 etc.","tracer18 etc.","tracer19 etc.","tracer** etc.","tracer* etc.","tracer1 etc.","tracer2 etc.","tracer3 etc.","tracer4 etc.","tracer5 etc.","tracer6 etc.","tracer7 etc.","tracer8 etc.","tracer9 etc.","tracer10 etc.","tracer11 etc.","tracer12 etc.","tracer13 etc.","tracer14 etc.","tracer15 etc.","tracer16 etc.","tracer17 etc.","tracer18 etc.","tracer19 etc.","tracer** etc.","tracer* etc.","tracer1 etc.","tracer2 etc.","tracer3 etc.","tracer4 etc.","tracer5 etc.","tracer6 etc.","tracer7 etc.","tracer8 etc.","tracer9 etc.","tracer10 etc.","tracer11 etc.","tracer12 etc.","tracer13 etc.","tracer14 etc.","tracer15 etc.","tracer16 etc.","tracer17 etc.","tracer18 etc.","tracer19 etc.","tracer** etc.","tracer* etc.","tracer1 etc.","tracer2 etc.","tracer3 etc.","tracer4 etc.","tracer5 etc.","tracer6 etc.","tracer7 etc.","tracer8 etc.","tracer9 etc.","tracer10 etc.","tracer11 etc.","tracer12 etc.","tracer13 etc.","tracer14 etc.","tracer15 etc.","tracer16 etc.","tracer17 etc.","tracer18 etc.","tracer19 etc.","tracer** etc.","tracer* etc.","tracer1 etc.","tracer2 etc.","tracer3 etc.","tracer4 etc.","tracer5 etc.","tracer6 etc.","tracer7 etc.","tracer8 etc.","tracer9 etc.","tracer10 etc.","tracer11 etc.","tracer12 etc.","tracer13 etc.","tracer14 etc.","tracer15 etc.","tracer16 etc.","tracer17 etc.","tracer18 etc.","tracer19 etc.","tracer** etc.","tracer* etc.","tracer1 etc.","tracer2 etc.","tracer3 etc.","tracer4 etc.","tracer5 etc.","tracer6 etc.","tracer7 etc.","tracer8 etc.","tracer9 etc.","tracer10 etc.","tracer11 etc.","tracer12 etc.","tracer13 etc.","tracer14 etc.","tracer15 etc.","tracer16 etc.","tracer17 etc.","tracer18 etc.","tracer19 etc.","tracer** etc.","tracer* etc.","tracer1 etc.","tracer2 etc.","tracer3 etc.","tracer4 etc.","tracer5 etc.","tracer6 etc.","tracer7 etc.","tracer8 etc.","tracer9 etc.","tracer10 etc.","tracer11 etc.","tracer12 etc.","tracer13 etc.","tracer14 etc.","tracer15 etc.","tracer16 etc.","tracer17 etc.","tracer18 etc.","tracer19 etc.","tracer** etc.","tracer* etc.","tracer1 etc.","tracer2 etc.","tracer3 etc.","tracer4 etc.","tracer5 etc.","tracer6 etc.","tracer7 etc.","tracer8 etc.","tracer9 etc.","tracer10 etc.","tracer11 etc.","tracer12 etc.","tracer13 etc.","tracer14 etc.","tracer15 etc.","tracer16 etc.","tracer17 etc.","tracer18 etc.","tracer19 etc.","tracer** etc.","tracer* etc.","tracer1 etc.","tracer2 etc.","tracer3 etc.","tracer4 etc.","tracer5 etc.","tracer6 etc.","tracer7 etc.","tracer8 etc.","tracer9 etc.","tracer10 etc.","tracer11 etc.","tracer12 etc.","tracer13 etc.","tracer14 etc.","tracer15 etc.","tracer16 etc.","tracer17 etc.","tracer18 etc.","tracer19 etc.","tracer** etc.","tracer* etc.","tracer1 etc.","tracer2 etc.","tracer3 etc.","tracer4 etc.","tracer5 etc.","tracer6 etc.","tracer7 etc.","tracer8 etc.","tracer9 etc.","tracer10 etc.","tracer11 etc.","tracer12 etc.","tracer13 etc.","tracer14 etc.","tracer15 etc.","tracer16 etc.","tracer17 etc.","tracer18 etc.","tracer19 etc.","tracer** etc.","tracer* etc.","tracer1 etc.","tracer2 etc.","tracer3 etc.","tracer4 etc.","tracer5 etc.","tracer6 etc.","tracer7 etc.","tracer8 etc.","tracer9 etc.","tracer10 etc.","tracer11 etc.","tracer12 etc.","tracer13 etc.","tracer14 etc.","tracer15 etc.","tracer16 etc.","tracer17 etc.","tracer18 etc.","tracer19 etc.","tracer** etc.","tracer* etc.","tracer1 etc.","tracer2 etc.","tracer3 etc.","tracer4 etc.","tracer5 etc.","tracer6 etc.","tracer7 etc.","tracer8 etc.","tracer9 etc.","tracer10 etc.","tracer11 etc.","tracer12 etc.","tracer13 etc.","tracer14 etc.","tracer15 etc.","tracer16 etc.","tracer17 etc.","tracer18 etc.","tracer19 etc.","tracer** etc.","tracer* etc.","tracer1 etc.","tracer2 etc.","tracer3 etc.","tracer4 etc.","tracer5 etc.","tracer6 etc.","tracer7 etc.","tracer8 etc.","tracer9 etc.","tracer10 etc.","tracer11 etc.","tracer12 etc.","tracer13 etc.","tracer14 etc.","tracer15 etc.","tracer16 etc.","tracer17 etc.","tracer18 etc.","tracer19 etc.","tracer** etc.","All the tracers 1 to 9.","All the tracers 10 to 19.","turbulent kinetic energy in k-epsilon model (J/kg)","dissipation of turbulent energy (W/kg)","turbulent viscosity (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 (m)","time of maximum elevation (s)","maximum velocity (m/s)","time of maximum velocity (s)","friction velocity (m/s)","gradient 1, etc.","TAU_S","1/R (1/m)","OMEGA","distance to the closest wall (m)","reference level for Nestor (m)"], defaut = ["velocity along x axis (m/s)","velocity along y axis (m/s)","water depth (m)","bottom elevation (m)"], - fr = """ 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), - - Tn: traceur, avec n le numero du 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, - - Gn: gradient differencie, avec n le numero de reference du gradient. -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 + fr = """Noms des variables ecrites dans FICHIER DES RESULTATS. +Chaque variable est representee par une lettre (choix des +separateurs libre). Les possibilites sont : +\begin{itemize} +\item U : vitesse suivant $x$ (m/s) ; +\item V : vitesse suivant $y$ (m/s) ; +\item C : celerite des ondes (m/s) ; +\item H : hauteur d eau (m) ; +\item S : cote de surface libre (m) ; +\item B : cote du fond (m) ; +\item F : nombre de Froude ; +\item Q : debit scalaire du fluide (m$^2$/s) ; +\item Tn: traceur, avec n le numero du traceur ; +\item K : energie turbulente du modele $k-\epsilon$ (J/kg) ; +\item E : dissipation de l energie turbulente (W/kg) ; +\item D : viscosite turbulente (m$^2$/s) ; +\item I : debit suivant $x$ (m$^2$/s) ; +\item J : debit suivant $y$ (m$^2$/s) ; +\item M : vitesse scalaire (m/s) ; +\item X : vent suivant $x$ (m/s) ; +\item Y : vent suivant $y$ (m/s) ; +\item P : pression atmospherique (Pa) ; +\item W : coefficient de frottement sur le fond ; +\item A : derive en $x$ (m) ; +\item G : derive en $y$ (m) ; +\item L : nombre de Courant ; +\item MAXZ : cote maximum (m) ; +\item TMXZ : temps de la cote maximum (s) ; +\item MAXV : vitesse maximum (m/s) ; +\item TMXV : temps de la vitesse maximum (s) ; +\item US : vitesse de frottement (m/s) ; +\item Gn: gradient differencie, avec n le numero de reference du +gradient ; +\item TAU\_S : TAU\_S ; +\item 1/R : 1/R (1/m) ; +\item OMEGA : OMEGA ; +\item WDIST : distance au mur le plus proche (m) ; +\item ZRL : niveau de reference pour Nestor. +\end{itemize} +4 champs libres sont utilisables pour ecrire des variables creees +dans le fichier des resultats. +Ces variables doivent etre calculees dans le PRERES\_TELEMAC2D et leur +nom ecrit dans NOMVAR\_TELEMAC2D. +Ces 7 champs sont : +N, O, R, Z qui correspondent aux tableaux PRIVE(1,1) a PRIVE(1,4). +Contrairement aux 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).""", - ang = """ 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), - - Tn : tracer, with n the tracer number, - - 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, - - Gn : differentiated gradient, with n the gradient reference number. -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. +PRIVE. +Il est ainsi possible de limiter la taille des fichiers de resultats +pour de gros calculs. +Cependant, en cas de reprise de calcul, le code doit disposer dans le +fichier des resultats des informations necessaires a sa poursuite : +\begin{itemize} +\item vitesses U et V ; +\item hauteur d eau H ; +\item cote du fond B. +\end{itemize} +Toutefois, TELEMAC-2D peut recalculer certaines des variables a +partir d autres.""", + ang = """Names of variables which will be written in the results file. Each +variable is represented by a letter (free separators). +The possible choices are: +\begin{itemize} +\item U: velocity along $x$ axis (m/s), +\item V: velocity along $y$ axis (m/s), +\item C: wave celerity (m/s), +\item H: water depth (m), +\item S: free surface elevation (m), +\item B: bottom elevation (m), +\item F: Froude number, +\item Q: scalar flowrate of fluid (m$^2$/s), +\item Tn: tracer, with n the tracer number, +\item K: turbulent kinetic energy in $k-\epsilon$ model (J/kg), +\item E: dissipation of turbulent energy (W/kg), +\item D: turbulent viscosity (m$^2$/s), +\item I: flowrate along $x$ axis (m$^2$/s), +\item J: flowrate along $y$ axis (m$^2$/s), +\item M: scalar velocity (m/s), +\item X: wind along $x$ axis (m/s), +\item Y: wind along $y$ axis (m/s), +\item P: air pressure (Pa), +\item W: friction coefficient, +\item A: drift along $x$ (m), +\item G: drift along $y$ (m), +\item L: Courant number, +\item MAXZ : maximum elevation (m), +\item TMXZ : time of maximum elevation (s), +\item MAXV : maximum velocity (m/s), +\item TMXV : time of maximum velocity (s), +\item US : friction velocity (m/s), +\item Gn: differentiated gradient, with n the gradient reference number, +\item TAU\_S : TAU\_S, +\item 1/R : 1/R (1/m), +\item OMEGA : OMEGA, +\item WDIST : distance to the closest wall (m), +\item ZRL : reference level for Nestor (m). +\end{itemize} +4 other variables are also available to the user +to write created variables results. +These user variables should be computed in +\telfile{PRERES\_TELEMAC2D} subroutine and their name +should be written in \telfile{NOMVAR\_TELEMAC2D} subroutine. +These seven variables are as follows: +N, O, R, Z which correspond to arrays \telfile{PRIVE(1,1)} up to +\telfile{PRIVE(1,4)}. +Unlike the previous variables, they are kept 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.""", +array \telkey{PRIVE} with sufficiently large dimensions in +the FORTRAN FILE. +The size of the \telkey{RESULTS FILE} can be limited with this keyword. +However, if a computation must be continued, the +\telkey{RESULTS FILE} should contain the appropriate information +for running the code,i.e.: +\begin{itemize} +\item velocities $U$ and $V$, +\item water depth $H$, +\item bottom elevation $B$. +\end{itemize} +\telemac{2d} can compute some of these variables from others.""", ), # ----------------------------------- 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""", + fr = """Nombre de tableaux mis a disposition de l utilisateur.""", + ang = """Number of arrays for own user programming.""", ), # ----------------------------------- NAMES_OF_PRIVATE_VARIABLES = SIMP(statut ='f', # ----------------------------------- typ = 'TXM', min=0, max='**', fr = """Noms des variables privees en 32 caracteres, 16 pour le nom - 16 pour l''unite. Elles correspondent au bloc PRIVE - et peuvent etre lues dans le fichier de geometrie si elles - y sont presentes avec leur nom""", +16 pour l''unite. Elles correspondent au bloc \telfile{PRIVE} +et peuvent etre lues dans le \telkey{FICHIER DE GEOMETRIE} si elles +y sont presentes avec leur nom.""", ang = """Name of private variables in 32 characters, 16 for the name, - 16 for the unit. They are stored in the block PRIVE and - can be read in the geometry file if they are here with their - name""", +16 for the unit. +They are stored in the block \telfile{PRIVE} and can be read +in the \telkey{GEOMETRY FILE} if they are here with their name.""", ), # ----------------------------------- RESULTS_FILE_FORMAT = SIMP(statut ='o', # ----------------------------------- typ = 'TXM', - into = ['SERAFIN?','SERAFIND','MED'], - defaut = 'SERAFIN?', - fr = """Format du fichier de resultats. + into = ['SERAFIN','SERAFIND','MED'], + defaut = 'SERAFIN', + fr = """Format du \telkey{FICHIERS 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""", - ang = """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""", +\begin{itemize} +\item SERAFIN : format standard simple precision pour \tel ; +\item SERAFIND: format standard double precision pour \tel ; +\item MED : format MED double precision base sur HDF5. +\end{itemize}""", + ang = """Format of the \telkey{RESULTS FILE}. Possible choices are: +\begin{itemize} +\item SERAFIN : classical single precision format in \tel, +\item SERAFIND: classical double precision format in \tel, +\item MED : MED double precision format based on HDF5. +\end{itemize}""", ), # ----------------------------------- RESULTS_FILE = SIMP(statut ='o', @@ -667,22 +744,21 @@ Les valeurs possibles sont : typ = ('Fichier','All Files (*)','Sauvegarde'), defaut = '', fr = """Nom du fichier dans lequel seront ecrits les resultats du -calcul avec la periodicite donnee par le mot cle ''PERIODE POUR LES -SORTIES GRAPHIQUES''.""", - ang = """Name of the file into which the computation results shall be -written, -the periodicity being given by the key-word: -GRAPHIC PRINTOUT PERIOD.""", +calcul avec la periodicite donnee par le mot cle \telkey{PERIODE POUR +LES SORTIES GRAPHIQUES}.""", + ang = """Name of the file into which the computation results +are written with a periodicity given by the keyword +\telkey{GRAPHIC PRINTOUT PERIOD}.""", ), # ----------------------------------- RESULT_FILE_IN_LONGITUDE_LATITUDE = SIMP(statut ='f', # ----------------------------------- typ = bool, defaut = True, - fr = """donne les coordonnees dans le fichier resultats en longitude-latitude -si le fichier geo est aussi donnee en long lat""", - ang = """gives result file in longitude latitude if geo file is -also given in long lat""", + fr = """Donne les coordonnees dans le fichier resultats en longitude-latitude +si le fichier geo est aussi donnee en longitude-latitude.""", + ang = """Gives the coordinates of the result file in longitude-latitude +if the geometry file is also given in longitude-latitude.""", ), # ----------------------------------- BINARY_RESULTS_FILE_FORMAT = SIMP(statut ='f', @@ -690,16 +766,22 @@ also given in long lat""", typ = 'TXM', into = ['BIN','SERAFIN','SERAFIND','MED'], defaut = 'BIN', - fr = """Format du fichier de geometrie. + fr = """Format du \telkey{FICHIER DE RESULTATS BINAIRE}. Les valeurs possibles sont : -- SERAFIN : format standard simple precision pour Telemac; -- SERAFIND: format standard double precision pour Telemac; -- MED : format MED base sur HDF5""", - ang = """Geometry file format. +\begin{itemize} +\item BIN : format binaire standard ; +\item SERAFIN : format standard simple precision pour \tel ; +\item SERAFIND: format standard double precision pour \tel ; +\item MED : format MED double precision base sur HDF5. +\end{itemize}""", + ang = """Format of the \telkey{BINARY RESULTS FILE}. Possible values are: -- SERAFIN : classical single precision format in Telemac; -- SERAFIND: classical double precision format in Telemac; -- MED : MED format based on HDF5""", +\begin{itemize} +\item BIN : standard binary format, +\item SERAFIN : classical single precision format in \tel, +\item SERAFIND: classical double precision format in \tel, +\item MED : MED double precision format based on HDF5. +\end{itemize}""", ), # ----------------------------------- BINARY_RESULTS_FILE = SIMP(statut ='f', @@ -707,11 +789,8 @@ Possible values are: typ = ('Fichier','All Files (*)','Sauvegarde'), defaut = '', fr = """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.""", - ang = """Additional binary-coded result file made available -to the user. The results to be entered into this file shall be written -on channel 28.""", +de l''utilisateur.""", + ang = """Additional binary-coded result file available to the user.""", ), # ----------------------------------- FORMATTED_RESULTS_FILE = SIMP(statut ='f', @@ -719,12 +798,62 @@ on channel 28.""", typ = ('Fichier','All Files (*)','Sauvegarde'), defaut = '', 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.""", +l''utilisateur.""", + ang = """Formatted file of results available to the user.""", + ), +# ----------------------------------- + FORMATTED_RESULTS_FILE_1 = SIMP(statut ='f', +# ----------------------------------- + typ = ('Fichier','All Files (*)','Sauvegarde'), + defaut = '', + fr = """Fichier de resultats formate 1 mis a la disposition de +l''utilisateur.""", + ang = """Formatted file of results 1 available to the user.""", + ), +# ----------------------------------- + FORMATTED_RESULTS_FILE_2 = SIMP(statut ='f', +# ----------------------------------- + typ = ('Fichier','All Files (*)','Sauvegarde'), + defaut = '', + fr = """Fichier de resultats formate 2 mis a la disposition de +l''utilisateur.""", + ang = """Formatted file of results 2 available to the user.""", + ), +# ----------------------------------- + FORMATTED_RESULTS_FILE_3 = SIMP(statut ='f', +# ----------------------------------- + typ = ('Fichier','All Files (*)','Sauvegarde'), + defaut = '', + fr = """Fichier de resultats formate 3 mis a la disposition de +l''utilisateur.""", + ang = """Formatted file of results 3 available to the user.""", + ), +# ----------------------------------- + FORMATTED_RESULTS_FILE_4 = SIMP(statut ='f', +# ----------------------------------- + typ = ('Fichier','All Files (*)','Sauvegarde'), + defaut = '', + fr = """Fichier de resultats formate 4 mis a la disposition de +l''utilisateur.""", + ang = """Formatted file of results 4 available to the user.""", + ), +# ----------------------------------- + FORMATTED_RESULTS_FILE_5 = SIMP(statut ='f', +# ----------------------------------- + typ = ('Fichier','All Files (*)','Sauvegarde'), + defaut = '', + fr = """Fichier de resultats formate 5 mis a la disposition de +l''utilisateur.""", + ang = """Formatted file of results 5 available to the user.""", + ), +# ----------------------------------- + FORMATTED_RESULTS_FILE_6 = SIMP(statut ='f', +# ----------------------------------- + typ = ('Fichier','All Files (*)','Sauvegarde'), + defaut = '', + fr = """Fichier de resultats formate 6 mis a la disposition de +l''utilisateur.""", + ang = """Formatted file of results 6 available to the user.""", ), ), # ----------------------------------- @@ -738,57 +867,57 @@ on channel 29.""", 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""", +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""", + 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""", + 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 (*)'), defaut = '', - fr = """sections input file, partitioned""", - ang = """sections input file, partitioned""", + fr = """Fichier des sections de controle, partitione.""", + ang = """Sections input file, partitioned.""", ), # ----------------------------------- SECTIONS_OUTPUT_FILE = SIMP(statut ='f', # ----------------------------------- typ = ('Fichier','All Files (*)','Sauvegarde'), defaut = '', - fr = """sections output file, written by the master""", - ang = """sections output file, written by the master""", + fr = """Fichier de sortie des sections de controle, ecrit par le maitre.""", + ang = """Sections output file, written by the master.""", ), # ----------------------------------- FLUXLINE = SIMP(statut ='f', # ----------------------------------- typ = bool, defaut = False, - fr = """FLUXLINE""", - ang = """Use Fluxline to compute flux over lines""", + fr = """Utiliser fluxline pour le calcul des flux sur les lignes.""", + ang = """Use Fluxline to compute flux over lines.""", ), # ----------------------------------- FLUXLINE_INPUT_FILE = SIMP(statut ='f', # ----------------------------------- typ = ('Fichier','All Files (*)'), defaut = '', - fr = """Nom du fichier de fluxline, avec des donnees sur les sections""", - ang = """Name of the Fluxline file, with data on cross-sections""", + fr = """Nom du fichier de fluxline, avec des donnees sur les sections.""", + ang = """Name of the fluxline file, with data on cross-sections.""", ), ), # ----------------------------------- @@ -799,7 +928,7 @@ WITH THE WEAK FORMULATION OF NO-FLUX BOUNDARY CONDITION""", # ----------------------------------- typ = 'I', defaut = 0, - fr = """Determine le nombre de pas de temps a partir duquel debute + fr = """Determine le numero 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.""", @@ -809,14 +938,14 @@ are first written into the listing.""", # ----------------------------------- typ = 'I', defaut = 1, - fr = """ 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 + fr = """Determine la periode en nombre de pas de temps d''impression des +\telkey{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)""", - ang = """ Determines, in number of time steps, the printout period of the -VARIABLES TO BE PRINTED The results are systematically printed out on +listing (CAS.SORTIE sur station de travail).""", + ang = """Determines, in number of time steps, the printout period of the +\telkey{VARIABLES TO BE PRINTED}. +The results are systematically printed out on the listing file (file CAS.SORTIE at the workstation).""", ), # ----------------------------------- @@ -825,41 +954,43 @@ the listing file (file CAS.SORTIE at the workstation).""", typ = 'I', defaut = 1, fr = """Determine la periode en nombre de pas de temps d''impression -des VARIABLES A IMPRIMER (voir ce mot-cle) Pour la mise au point, +des \telkey{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)""", +systematiquement sur le listing +(CAS.SORTIE sur station de travail). +A la priorite sur \telkey{PERIODE DE SORTIE LISTING}.""", ang = """Determines, in number of time steps, the printout period of -the VARIABLES TO BE PRINTED +the \telkey{VARIABLES TO BE PRINTED}. The results are systematically printed out on the listing file -(file CAS.SORTIE at the workstation).""", +(file CAS.SORTIE at the workstation), +Has priority before \telkey{LISTING PRINTOUT PERIOD}.""", ), # ----------------------------------- LISTING_PRINTOUT = SIMP(statut ='o', # ----------------------------------- typ = bool, defaut = True, - fr = """Sortie des resultats sur support papier. + fr = """Sortie des resultats sur support papier ou a l ecran. Si l''on met NON le listing ne contient que l''entete et la mention -FIN NORMALE DU PROGRAMME -Commande a eviter""", +FIN NORMALE DU PROGRAMME. +Commande 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. -Not recommended for use.""", +phrase "NORMAL END OF PROGRAM". +In addition, the options \telkey{MASS-BALANCE} and +\telkey{VALIDATION} are inhibited. Not recommended for use.""", ), # ----------------------------------- VARIABLES_TO_BE_PRINTED = SIMP(statut ='f', # ----------------------------------- typ = 'TXM', min=0, max='**', - intoSug = ["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)","nombre de courants ","supplementary variable N","supplementary variable O","supplementary variable R","supplementary variable Z","gradient 1, etc."], + intoSug = ["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 (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 (m)","time of maximum elevation (s)","maximum velocity (m/s)","time of maximum velocity (s)","friction velocity (m/s)","gradient 1, etc.","TAU_S","1/R (1/m)","OMEGA","distance to the closest wall (m)","reference level for Nestor (m)"], defaut = '', - fr = """Nom des variables que l''utilisateur desire ecrire a l''ecran. Meme + fr = """Nom des variables que l''utilisateur desire ecrire a l''ecran. Memes possibilites que pour les sorties graphiques.""", ang = """Name of the variables that the user wants printed on screen. -Same values available as graphical outputs""", +Same values available as graphical outputs.""", ), # ----------------------------------- MASS_BALANCE = SIMP(statut ='o', @@ -869,10 +1000,12 @@ Same values available as graphical outputs""", fr = """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. +\begin{itemize} +\item les flux aux entrees et sorties du domaine ; +\item le flux global a travers l''ensemble des parois du domaine +(liquides ou solides) ; +\item l''erreur relative sur la masse pour ce pas de temps. +\end{itemize} 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 @@ -880,9 +1013,11 @@ d''expression compatible du debit en formulation c,u,v.""", ang = """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. +\begin{itemize} +\item the domain inflows and outflows, +\item the overall flow across all the boundaries, +\item the relative error in the mass for that time step. +\end{itemize} The relative error in the mass over the whole computation can be found at the end of the listing.""", ), @@ -893,23 +1028,23 @@ at the end of the listing.""", defaut = True, fr = """Donne a chaque pas de temps le nombre d''iterations necessaires a la convergence du solveur de l''etape de propagation.""", - ang = """if YES, prints the number of iterations -that have been necessar + ang = """If YES, prints the number of iterations +that have been necessary to get the solution of the linear system.""", ), # ----------------------------------- LIST_OF_POINTS = SIMP(statut ='f', # ----------------------------------- typ = 'I', min=0, max='**', - fr = """Liste de points remarquables pour les impressions""", - ang = """List of remarkable points for printouts""", + fr = """Liste de points remarquables pour les impressions.""", + ang = """List of remarkable points for printouts.""", ), # ----------------------------------- NAMES_OF_POINTS = SIMP(statut ='f', # ----------------------------------- typ = 'TXM', min=0, max='**', - fr = """Noms des points remarquables pour les impressions""", - ang = """Names of remarkable points for printouts""", + fr = """Noms des points remarquables pour les impressions.""", + ang = """Names of remarkable points for printouts.""", ), ), # ----------------------------------- @@ -919,16 +1054,16 @@ to get the solution of the linear system.""", FOURIER_ANALYSIS_PERIODS = SIMP(statut ='o', # ----------------------------------- typ = 'R', min=0, max='**', - fr = """Liste des periodes que l''on veut analyser""", - ang = """List of periods to be analysed""", + fr = """Liste des periodes que l''on veut analyser.""", + ang = """List of periods to be analysed.""", ), # ----------------------------------- TIME_RANGE_FOR_FOURIER_ANALYSIS = SIMP(statut ='o', # ----------------------------------- typ = 'R', min= 2, max= 2, defaut = [0.,0.], - fr = """Pour le calcul du marnage et de la phase de la maree""", - ang = """For computing tidal range and phase of tide""", + fr = """Pour le calcul du marnage et de la phase de la maree.""", + ang = """For computing tidal range and phase of tide.""", ), ), ), @@ -936,7 +1071,6 @@ to get the solution of the linear system.""", # ----------------------------------------------------------------------- HYDRO = PROC(nom= "HYDRO",op = None, # ----------------------------------------------------------------------- - UIinfo = {"groupes": ("CACHE")}, # ----------------------------------- BOUNDARY_CONDITIONS = FACT(statut='o', # ----------------------------------- @@ -944,28 +1078,28 @@ HYDRO = PROC(nom= "HYDRO",op = None, PRESCRIBED_ELEVATIONS = SIMP(statut ='f', # ----------------------------------- typ = 'R', max='**', - fr = """Valeurs des cotes imposees aux frontieres liquides entrantes. -Lire la partie du mode d''emploi consacree aux conditions aux limites""", - ang = """Values of prescribed elevations at the inflow boundaries. -The section about boundary conditions is to be read in the manual""", + fr = """Valeurs des cotes imposees aux frontieres liquides. +Lire la partie du mode d''emploi consacree aux conditions aux limites.""", + ang = """Values of the elevations prescribed at open boundaries. +The section about boundary conditions is to be read in the manual.""", ), # ----------------------------------- PRESCRIBED_FLOWRATES = SIMP(statut ='f', # ----------------------------------- typ = 'R', max='**', - fr = """Valeurs des debits imposes aux frontieres liquides entrantes. -Lire la partie du mode d''emploi consacree aux conditions aux limites""", - ang = """Values of prescribed flowrates at the inflow boundaries. -The section about boundary conditions is to be read in the manual""", + fr = """Valeurs des debits imposes aux frontieres liquides. +Lire la partie du mode d''emploi consacree aux conditions aux limites.""", + ang = """Values of the flowrates prescribed at open boundaries. +The section about boundary conditions is to be read in the manual.""", ), # ----------------------------------- PRESCRIBED_VELOCITIES = SIMP(statut ='f', # ----------------------------------- typ = 'R', max='**', - fr = """Valeurs des vitesses imposees aux frontieres liquides entrantes. - Lire la partie du mode d''emploi consacree aux conditions aux limites""", - ang = """Values of prescribed velocities at the liquid inflow boundaries. - Refer to the section dealing with the boundary conditions""", + fr = """Valeurs des vitesses imposees aux frontieres liquides. +Lire la partie du mode d''emploi consacree aux conditions aux limites.""", + ang = """Values of the magnitudes of velocity prescribed at open boundaries. +Refer to the section dealing with the boundary conditions.""", ), ), # ----------------------------------- @@ -977,9 +1111,19 @@ The section about boundary conditions is to be read in the manual""", typ = 'TXM', max='**', into = ["no","Z(Q)","Q(Z)"], fr = """Indique si une courbe de tarage doit etre utilisee pour une frontiere -0:non 1:Z(Q) 2: Q(Z)""", +(une valeur par frontiere liquide) : +\begin{itemize} +\item 0 : non ; +\item 1 : Z(Q) ; +\item 2 : Q(Z). +\end{itemize}""", ang = """Says if a discharge-elevation curve must be used for a given boundary -0:NO 1:Z(Q) 2: Q(Z)""", +(one value per open boundary): +\begin{itemize} +\item 0: no, +\item 1: Z(Q), +\item 2: Q(Z). +\end{itemize}""", ), # ----------------------------------- b_STAGE_DISCHARGE_CURVESG = BLOC(condition="STAGE_DISCHARGE_CURVES != 'no'", @@ -989,8 +1133,8 @@ The section about boundary conditions is to be read in the manual""", # ----------------------------------- typ = ('Fichier','All Files (*)'), defaut = '', - fr = """Nom du fichier contenant les courbes de tarage""", - ang = """Name of the file containing stage-discharge curves""", + fr = """Nom du fichier contenant les courbes de tarage.""", + ang = """Name of the file containing stage-discharge curves.""", ), ), # ----------------------------------- @@ -998,46 +1142,64 @@ The section about boundary conditions is to be read in the manual""", # ----------------------------------- typ = 'TXM', min=0, max='**', into = ["constant normal profile","u and v given in the conlim file","normal velocity given in ubor in the conlim file","velocity proportional to square root of depth","velocity proportional to square root of depth, variant"], - fr = """1:profil normal constant 2:u et v -donnes dans le fichier conlim - 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""", - ang = """1:constant normal profile 2:u and v given in the conlim file - 3:normal velocity given in ubor in the conlim file - 4:sqrt(depth) profile - 5:sqrt(depth) profile, variant""", + fr = """Permet de specifier le type de profil horizontal de vitesse. +Les choix possibles sont : +\begin{itemize} +\item 1 : profil normal constant ; +\item 2 : $u$ et $v$ donnes dans le +\telkey{FICHIER DES CONDITIONS AUX LIMITES} ; +\item 3 : vitesse normale donnee dans \telfile{UBOR} dans le +\telkey{FICHIER DES CONDITIONS AUX LIMITES} ; +\item 4 : profil en $\sqrt{h}$ ; +\item 5 : comme 4 mais hauteur virtuelle calculee avec +la surface libre la plus basse de la frontiere. +\end{itemize}""", + ang = """Specifies the type of horizontal profile of velocities. +Possible choices are: +\begin{itemize} +\item 1: constant normal profile, +\item 2: $u$ and $v$ given in the +\telkey{BOUNDARY CONDITION FILE}, +\item 3: normal velocity given in \telfile{UBOR} in the +\telkey{BOUNDARY CONDITION FILE}, +\item 4: $\sqrt{h}$ profile, +\item 5: like 4 but virtual depth based on +the lowest elevation of the boundary. +\end{itemize}""", ), # ----------------------------------- OPTION_FOR_LIQUID_BOUNDARIES = SIMP(statut ='f', # ----------------------------------- typ = 'TXM', max='**', into = ["classical","Thompson method based on characteristics"], - fr = """On donne 1 entier par frontiere liquide - 1 : conditions aux limites classiques - 2 : methode de Thompson avec calcul de caracteristiques""", - ang = """One integer per liquid boundary is given - 1 : classical boundary conditions - 2 : Thompson method based on characteristics""", + fr = """On donne un entier par frontiere liquide. +Les choix possibles sont : +\begin{itemize} +\item 1 : conditions aux limites classiques ; +\item 2 : methode de Thompson avec calcul de caracteristiques. +\end{itemize}""", + ang = """One integer per liquid boundary is given. +Possible choices are: +\begin{itemize} +\item 1: classical boundary conditions, +\item 2: Thompson method based on characteristics. +\end{itemize}""", ), # ----------------------------------- LIQUID_BOUNDARIES_FILE = SIMP(statut ='f', # ----------------------------------- typ = ('Fichier','All Files (*)'), defaut = '', - fr = """Fichier de variations en temps des conditions aux limites. -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.""", + fr = """Fichier de variations en temps des conditions aux limites.""", + ang = """File containing the variations in time of boundary conditions.""", ), # ----------------------------------- 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""", + fr = """Si OUI, remplir le sous-programme \telfile{USER\_MASKOB}.""", + ang = """If YES, fill in the subroutine \telfile{USER\_MASKOB}.""", ), # ----------------------------------- b_ELEMENTS_MASKED_BY_USERG = BLOC(condition="ELEMENTS_MASKED_BY_USER == True", @@ -1059,41 +1221,55 @@ on channel 12.""", # ----------------------------------- 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""", + 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.""", ), # ----------------------------------- FRICTION_DATA = SIMP(statut ='f', # ----------------------------------- typ = bool, defaut = False, - fr = """Lois de frottements definies par zone""", - ang = """Friction law defined by area""", + fr = """Logique qui dit si les lois de frottements sont definies par zone.""", + ang = """Logical to say if friction laws are defined by area.""", ), # ----------------------------------- FRICTION_DATA_FILE = SIMP(statut ='f', # ----------------------------------- typ = ('Fichier','All Files (*)'), defaut = '', - fr = """fichier de donnees pour le frottement""", - ang = """friction data file""", + fr = """Nom du fichier de donnees pour le frottement. +Voir le manuel utilisateur de \telemac{2d} pour la description.""", + ang = """Friction data file name. +See the \telemac{2d} user manual for its description.""", ), # ----------------------------------- LAW_OF_BOTTOM_FRICTION = SIMP(statut ='o', # ----------------------------------- typ = 'TXM', into = ["NO FRICTION","HAALAND","CHEZY","STRICKLER","MANNING","NIKURADSE"], - fr = """ 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""", - ang = """ 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""", + fr = """Selectionne le type de formulation utilisee pour le calcul +du frottement sur le fond. +Les lois possibles sont les suivantes (cf. Note de principe) : +\begin{itemize} +\item 0 : pas de frottement sur le fond ; +\item 1 : formule de Haaland ; +\item 2 : formule de Chezy ; +\item 3 : formule de Strickler ; +\item 4 : formule de Manning ; +\item 5 : formule de Nikuradse. +\end{itemize}""", + ang = """Selects the type of formulation used for the bottom friction. +The possible laws are as follows (refer to the Principle note): +\begin{itemize} +\item 0: no friction against bottom, +\item 1: Haaland''s formula, +\item 2: Chezy''s formula, +\item 3: Strickler''s formula, +\item 4: Manning''s formula, +\item 5: Nikuradse''s formula. +\end{itemize}""", ), # ----------------------------------- b_LAW_OF_BOTTOM_FRICTIONG = BLOC(condition="LAW_OF_BOTTOM_FRICTION != 'NO FRICTION'", @@ -1105,21 +1281,25 @@ STRICKLER''s formula 4: MANNING''s formula 5: NIKURADSE''s formula""", defaut = 50., fr = """Fixe la valeur du coefficient de frottement pour la formulation choisie. -Attention; la signification de ce chiffre varie suivant la formule +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""", +\begin{itemize} +\item 1 : coefficient lineaire ; +\item 2 : coefficient de Chezy ; +\item 3 : coefficient de Strickler ; +\item 4 : coefficient de Manning ; +\item 5 : hauteur de rugosite de Nikuradse. +\end{itemize}""", 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""", +according to the selected formula (Chezy, Strickler, etc.): +\begin{itemize} +\item 1: linear coefficient, +\item 2: Chezy coefficient, +\item 3: Strickler coefficient, +\item 4: Manning coefficient, +\item 5: Nikuradse grain size. +\end{itemize}""", ), ), # ----------------------------------- @@ -1127,10 +1307,10 @@ according to the selected formula (Chezy, Strickler, etc.) : # ----------------------------------- typ = 'R', defaut = 0.02, - fr = """valeur par defaut du manning pour la loi de frottement de -Colebrook-White (loi numero 7)""", + fr = """Valeur par defaut du coefficient de Manning pour la loi de frottement +de Colebrook-White (loi numero 7).""", ang = """Manning default value for the friction law of Colebrook-White -(law number 7)""", +(law number 7).""", ), # ----------------------------------- DEPTH_IN_FRICTION_TERMS = SIMP(statut ='o', @@ -1138,36 +1318,24 @@ Colebrook-White (loi numero 7)""", typ = 'TXM', into = ["nodal","average"], defaut = "nodal", - fr = """1 : nodale 2 : moyenne""", - ang = """1: nodal 2: average""", + fr = """Valeurs possibles : +\begin{itemize} +\item 1 : nodale ; +\item 2 : moyenne. +\end{itemize}""", + ang = """Possible choices: +\begin{itemize} +\item 1: nodal, +\item 2: average. +\end{itemize}""", ), # ----------------------------------- - NON_SUBMERGED_VEGETATION_FRICTION = SIMP(statut ='o', + 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_SUBMERGED_VEGETATION_FRICTIONG = 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""", - ), + fr = """Calcul du frottement du a la vegetation non submergee.""", + ang = """Friction calculation of the non-submerged vegetation.""", ), # ----------------------------------- LAW_OF_FRICTION_ON_LATERAL_BOUNDARIES = SIMP(statut ='o', @@ -1175,28 +1343,32 @@ Colebrook-White (loi numero 7)""", typ = 'TXM', into = ["NO FRICTION","HAALAND","CHEZY","STRICKLER","MANNING","NIKURADSE","LOG LAW","COLEBROOK-WHITE"], defaut = "NO FRICTION", - fr = """selectionne le type de formulation utilisee pour le calcul + fr = """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""", +\begin{itemize} +\item 0 : pas de frottement ; +\item 1 : lineaire ; +\item 2 : Chezy ; +\item 3 : Strickler ; +\item 4 : Manning ; +\item 5 : formule de Nikuradse ; +\item 6 : loi en log ; +\item 7 : Colebrook-White. +\end{itemize}""", ang = """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""", +\begin{itemize} +\item 0: no friction, +\item 1 : linear, +\item 2 : Chezy, +\item 3 : Strickler, +\item 4 : Manning, +\item 5: Nikuradse''s formula, +\item 6 : log law, +\item 7 : Colebrook-White. +\end{itemize}""", ), # ----------------------------------- b_LAW_OF_FRICTION_ON_LATERAL_BOUNDARIESG = BLOC(condition="LAW_OF_FRICTION_ON_LATERAL_BOUNDARIES != 'NO FRICTION'", @@ -1208,15 +1380,24 @@ The possible laws are as follows (refer to the Principle note): defaut = 100., fr = """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""", +Meme convention que pour le coefficient de frottement: +\begin{itemize} +\item 1 : non programme ; +\item 2 : coefficient de Chezy ; +\item 3 : coefficient de Strickler ; +\item 4 : coefficient de Manning ; +\item 5 : hauteur de rugosite de Nikuradse. +\end{itemize}""", ang = """Sets the value of the friction coefficient of the solid boundary with the bed roughness option. Same meaning than friction -coefficient""", +coefficient: +\begin{itemize} +\item 1: not implemented, +\item 2: Chezy coefficient, +\item 3: Strickler coefficient, +\item 4: Manning coefficient, +\item 5: Nikuradse grain size. +\end{itemize}""", ), ), # ----------------------------------- @@ -1224,9 +1405,10 @@ coefficient""", # ----------------------------------- typ = bool, 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""", + fr = """Declenche l''appel au sous-programme \telfile{USER\_DEF\_ZONES}, +pour donner un numero de zone a chaque point.""", + ang = """Triggers the call to \telfile{USER\_DEF\_ZONES} subroutine +to give a zone number to every point.""", ), # ----------------------------------- b_DEFINITION_OF_ZONESG = BLOC(condition="DEFINITION_OF_ZONES == True", @@ -1241,36 +1423,101 @@ coefficient""", # ----------------------------------- typ = ('Fichier','All Files (*)'), defaut = '', - 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""", + 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.""", ), ), # ----------------------------------- - ICE_PROCESSES = FACT(statut='o', + NON_NEWTONIAN = FACT(statut='o', # ----------------------------------- # ----------------------------------- - ICE_PROCESSES = SIMP(statut ='f', + NON_NEWTONIAN_MODEL = SIMP(statut ='o', +# ----------------------------------- + typ = 'I', + defaut = 0, + fr = """Choix du modele non-newtonien : +\begin{itemize} +\item 0 : Newtonien ; +\item 1 : Bingham ; +\item 2 : Herschel-Bulkley. +\end{itemize}""", + ang = """Choice of the non-newtonian model: +\begin{itemize} +\item 0: Newtonian, +\item 1: Bingham, +\item 2: Herschel-Bulkley. +\end{itemize}""", + ), +# ----------------------------------- + BINGHAM_OPTION = SIMP(statut ='o', # ----------------------------------- typ = 'I', defaut = 1, - fr = """Donne le numero du processus des glaces, avec le numero defini -sur la base multiplicative de nombres premiers (2, 3, 5, 7, 11, 13, -...). Par example, 14 (2x7) rend actif les processus 2 et 7. -Exception a la regle: -si l''entier est 1, il n''y a pas de couplage; -si l''entier est 0, tous les effets suivant sont inclus: - 2- BUDGET THERMIQUE, - 3-..""", - ang = """provides the ice process number with the number being defined -on the basis of a multiplication of primary numbers (2, 3, 5, -7, 11, 13, ...). For instance, 14 (2x7) activate processes 2 -and 7. Exception is made for: -if the number is 1, there will be no ice processes included; -if the number is 0, all processes are included, as follows: - 2- THERMIMAL BUDGET, - 3-..""", + fr = """Option pour le modele de Bingham : +\begin{itemize} +\item 1 : Papanastasiou (1987) exponential regularization ; +\item 2 : Effective viscosity with cross formulation (Shao \& Lo 2003) ; +\item 3 : Rickenmann (1990) Cubic equation. +\end{itemize}""", + ang = """Bingham model option: +\begin{itemize} +\item 1: Papanastasiou (1987) exponential regularization, +\item 2: Effective viscosity with cross formulation (Shao \& Lo 2003), +\item 3: Rickenmann (1990) Cubic equation. +\end{itemize}""", + ), +# ----------------------------------- + NON_NEWTONIAN_VISCOSITY = SIMP(statut ='o', +# ----------------------------------- + typ = 'R', + defaut = 0.32, + fr = """Coefficient caracterisant la viscosite du fluide non-newtonien [Pa.s].""", + ang = """Coefficient to compute the fluid viscosity [Pa.s].""", + ), +# ----------------------------------- + NON_NEWTONIAN_YIELD_STRESS = SIMP(statut ='o', +# ----------------------------------- + typ = 'R', + defaut = 18.6, + fr = """Coefficient caracterisant la contrainte d elasticite du fluide + non-newtonien [Pa].""", + ang = """Non-newtonian yield stress [Pa].""", + ), +# ----------------------------------- + NON_NEWTONIAN_LAMINAR_RESISTANCE_PARAMETER_K = SIMP(statut ='o', +# ----------------------------------- + typ = 'R', + defaut = 24., + fr = """Parametre $k$ de resistance laminaire du fluide non-newtonien.""", + ang = """Non-newtonian laminar resistance parameter $k$.""", + ), +# ----------------------------------- + NON_NEWTONIAN_FLUID_DENSITY = SIMP(statut ='o', +# ----------------------------------- + typ = 'R', + defaut = 1600., + fr = """Densite du fluide non-newtonien, correspond a la densite des +sediments si le modele pseudo biphasique est actif [kg/m$^3$].""", + ang = """Non-newtonian fluid density, correspond to the sediment density +if the pseudo-biphasic model is activated [kg/m$^3$].""", + ), +# ----------------------------------- + NON_NEWTONIAN_PSEUDO_BIPHASIC_MODEL = SIMP(statut ='o', +# ----------------------------------- + typ = bool, + defaut = False, + fr = """Modele pseudo-diphasique avec densite variable.""", + ang = """Non-newtonian pseudo biphasic model with variable density.""", + ), +# ----------------------------------- + HERSCHEL_BULKLEY_POWER_LAW_INDEX = SIMP(statut ='o', +# ----------------------------------- + typ = 'R', + defaut = 1., + fr = """Indice de la puissance $n$ dans le modele de Herschel-Bulkley.""", + ang = """Herschel-Bulkley power law index $n$.""", ), ), # ----------------------------------- @@ -1293,34 +1540,40 @@ account or not.""", # ----------------------------------- 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).""", + fr = """Composante de la vitesse du vent suivant +l''axe des $x$ (m/s), si constante.""", + ang = """Wind velocity, component along $x$ axis (m/s), if constant.""", ), # ----------------------------------- 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).""", + fr = """Composante de la vitesse du vent suivant +l''axe des $y$ (m/s), si constante.""", + ang = """Wind velocity, component along $y$ axis (m/s), if constant.""", ), # ----------------------------------- THRESHOLD_DEPTH_FOR_WIND = SIMP(statut ='o', # ----------------------------------- typ = 'R', defaut = 1., - fr = """Retire la force due au vent dans les petites profondeurs""", - ang = """Wind is not taken into account for small depths""", + fr = """Retire la force due au vent dans les petites profondeurs +plus petites que cette valeur.""", + ang = """Wind is not taken into account for depths smaller +than this value.""", ), # ----------------------------------- COEFFICIENT_OF_WIND_INFLUENCE = SIMP(statut ='o', # ----------------------------------- typ = 'R', - defaut = 0., - fr = """Fixe la valeur du coefficient d''entrainement du vent (cf. -Note de principe).""", + defaut = 1.55E-6, + fr = """Fixe la valeur du coefficient d''entrainement du vent. +Voir le manuel utilisateur ou la note de principe +pour la valeur a donner.""", ang = """Sets the value of the wind driving coefficient. -Refer to principle note.""", +See the User Manual or the principle note +for the value to give.""", ), # ----------------------------------- OPTION_FOR_WIND = SIMP(statut ='o', @@ -1328,44 +1581,52 @@ Refer to principle note.""", typ = 'TXM', into = ["constant in time and space","variable in time given by formated file","variable in time and space given by formated file"], defaut = "constant in time and space", - fr = """donne les options pour introduire le vent: - 1: constant en temps et en espace (donne par le mot cle - VITESSE ET DIRECTION DU VENT) - 2: variable en temps donne par fichier formate - 3: variable en temps et en espace donne par fichier formate - ou un fichier binaire serafin""", - ang = """gives option for managing the wind: - 1: constant in time and space, given by keyword SPEED AND - DIRECTION OF WIND - 2: variable in time and (constant in space), given by formated file - 3: variable in time and space , given by formated file or by - a binary serafin file""", - ), -# ----------------------------------- - b_OPTION_FOR_WINDG = BLOC(condition="OPTION_FOR_WIND == 'constant in time and space'", -# ----------------------------------- -# ----------------------------------- - SPEED_AND_DIRECTION_OF_WIND = SIMP(statut ='o', -# ----------------------------------- - typ = 'R', min= 2, max= 2, - defaut = [0.,0.], - fr = """Donne la vitesse et la direction (en degres de 0 a 360, -0 etant y=0 et x=+inf) du vent lorsqu ils sont consant en temps et -en espace (mot cle OPTION DU VENT = 1)""", - ang = """gives the speed and direction (degre (from 0 to 360), -0 given y=0 anx x=+infinity) when they are constant in time and space -(keyword OPTION FOR WIND = 1)""", - ), - ), -# ----------------------------------- - b_OPTION_FOR_WINDH = BLOC(condition="OPTION_FOR_WIND == 'variable in time given by formated file' or OPTION_FOR_WIND == 'variable in time and space given by formated file'", -# ----------------------------------- -# ----------------------------------- - Consigne = SIMP(statut ="o", homo="information", typ="TXM", -# ----------------------------------- - defaut = "Give the formatted file 3"), + fr = """Donne les options pour introduire le vent : +\begin{itemize} +\item 1 : constant en temps et en espace (donne par les mots cle +\telkey{VITESSE ET DIRECTION DU VENT} +) ; +\item 2 : variable en temps donne par fichier formate ; +\item 3 : variable en temps et en espace donne par fichier formate +ou un fichier binaire SERAFIN. +\end{itemize}""", + ang = """Gives the option for managing the wind: +\begin{itemize} +\item 1: constant in time and space, given by the keyword +\telkey{SPEED AND DIRECTION OF WIND}, +\item 2: variable in time and constant in space, given by +\telkey{ASCII ATMOSPHERIC DATA FILE}, +\item 3: variable in time and space, given by formatted file or by +a binary SERAFIN file. +\end{itemize}""", ), ), +# ----------------------------------- + COEFFICIENT_OF_WIND_INFLUENCE_VARYING_WITH_WIND_SPEED = SIMP(statut ='o', +# ----------------------------------- + typ = bool, + defaut = True, + fr = """Si OUI, la valeur du coefficient d''entrainement du vent est +calculee en fonction de la vitesse du vent. +La valeur de \telkey{COEFFICIENT D''INFLUENCE DU VENT} est ecrasee. +Ancienne valeur par defaut = NON jusqu a la version V8P1.""", + ang = """If YES, the value of the wind driving coefficient is computed +with respect to the wind velocity. +The value of \telkey{COEFFICIENT OF WIND INFLUENCE} is overwritten. +Old default value = NO until V8P1.""", + ), +# ----------------------------------- + SPEED_AND_DIRECTION_OF_WIND = SIMP(statut ='o', +# ----------------------------------- + typ = 'R', min= 2, max= 2, + defaut = [0.,0.], + fr = """Donne la vitesse et la direction (en degres de 0 a 360, +0 etant $y$ = 0 et $x$ = +inf) du vent lorsqu ils sont constants +en temps et en espace (mot cle \telkey{OPTION DU VENT} = 1).""", + ang = """Gives the speed and direction (in degrees (from 0 to 360), +0 given $y$ = 0 anx $x$ = +infinity) when they are constant +in time and space (keyword \telkey{OPTION FOR WIND} = 1).""", + ), # ----------------------------------- AIR_PRESSURE = SIMP(statut ='o', # ----------------------------------- @@ -1373,9 +1634,8 @@ en espace (mot cle OPTION DU VENT = 1)""", 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.""", + ang = """Provided to decide whether the influence of an atmosphere +pressure field is taken into account or not.""", ), # ----------------------------------- b_AIR_PRESSUREG = BLOC(condition="AIR_PRESSURE == True", @@ -1385,10 +1645,10 @@ is taken into account or not.""", # ----------------------------------- typ = 'R', defaut = 100000., - 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""", + fr = """Donne la valeur de la pression atmospherique lorsqu''elle est +constante en temps et en espace. En Pa.""", + ang = """Gives the value of atmospheric pressure when it is constant +in time and space. In Pa.""", ), ), # ----------------------------------- @@ -1397,21 +1657,17 @@ in time and space""", typ = bool, defaut = False, fr = """Pour ajouter un apport ou une perte d''eau 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""", +Voir le mot-cle \telkey{PLUIE OU EVAPORATION EN MM PAR JOUR}.""", + ang = """Enables to add or remove water at the free surface. +See the keyword \telkey{RAIN OR EVAPORATION IN MM PER DAY}.""", ), # ----------------------------------- - b_RAIN_OR_EVAPORATIONG = BLOC(condition="RAIN_OR_EVAPORATION == True", + RAIN_OR_EVAPORATION_IN_MM_PER_DAY = SIMP(statut ='o', # ----------------------------------- -# ----------------------------------- - RAIN_OR_EVAPORATION_IN_MM_PER_DAY = SIMP(statut ='o', -# ----------------------------------- - typ = 'R', - defaut = 0.0, - fr = """Pour ajouter un apport ou une perte d''eau en surface""", - ang = """to add or remove water at the free surface""", - ), + typ = 'R', + defaut = 0.0, + fr = """Pour ajouter un apport ou une perte d''eau en surface.""", + ang = """To add or remove water at the free surface.""", ), # ----------------------------------- RAINFALL_RUNOFF_MODEL = SIMP(statut ='f', @@ -1419,49 +1675,57 @@ RAIN OR EVAPORATION IN MM PER DAY""", typ = 'TXM', into = ["No infiltration","CN runoff model"], defaut = "No infiltration", - fr = """Option pour modele pluie-debit. Les options disponibles sont: - 0 : Pas d infiltration (fonction de base) - 1 : Modele CN (Curve Number du SCS)""", + fr = """Option pour le modele pluie-debit. Les options disponibles sont : +\begin{itemize} +\item 0 : Pas d infiltration (fonction de base) ; +\item 1 : Modele CN (Curve Number du SCS). +\end{itemize}""", ang = """Option for the rainfall-runoff model. Available options are: - 0 : No infiltration - 1 : CN runoff model (Curve Number method of the SCS)""", - ), +\begin{itemize} +\item 0: No infiltration (basic function), +\item 1: CN runoff model (Curve Number method of the SCS). +\end{itemize}""", + ), # ----------------------------------- ANTECEDENT_MOISTURE_CONDITIONS = SIMP(statut ='f', # ----------------------------------- typ = 'I', defaut = 2, fr = """Donne les conditions d humidite precedant un episode de pluie pour -le modele CN du SCS. Les options disponibles sont: - 1 : conditions precedentes seches - 2 : conditions precedentes normales - 3 : conditions prcedentes mouillees -ce mot cle est uniquement utile pour le modele pluie-debit 1 (CN)""", +le modele CN du SCS. Les options disponibles sont : +\begin{itemize} +\item 1 : conditions precedentes seches ; +\item 2 : conditions precedentes normales ; +\item 3 : conditions prcedentes mouillees. +\end{itemize} +Ce mot cle est uniquement utile pour le modele pluie-debit 1 (CN).""", ang = """Gives the antecedent moisture conditions before a rainfall event for the SCS CN runoff model. Available options are: - 1 : dry antecedent conditions - 2 : normal antecedent conditions - 3 : wet antecedent conditions -This keyword is only usefull for runoff model 1 (SCS CN model)""", +\begin{itemize} +\item 1: dry antecedent conditions, +\item 2: normal antecedent conditions, +\item 3: wet antecedent conditions. +\end{itemize} +This keyword is only usefull for runoff model 1 (SCS CN model).""", ), # ----------------------------------- DURATION_OF_RAIN_OR_EVAPORATION_IN_HOURS = SIMP(statut ='f', # ----------------------------------- typ = 'R', defaut = 1.E6, - fr = """Donne la duree de la pluie en heure, par defaut pluie infinie""", - ang = """Gives the duration of the rain in hour, -default value is infinite""", + fr = """Donne la duree de la pluie en heures, par defaut pluie infinie.""", + ang = """Gives the duration of the rain in hours, +default value is infinite.""", ), # ----------------------------------- ASCII_ATMOSPHERIC_DATA_FILE = SIMP(statut ='f', # ----------------------------------- typ = ('Fichier','All Files (*)'), defaut = '', - fr = """Fichier de donnees en ascii contenant les informations -atmospheriques variables en temps""", - ang = """Ascii data file containing the atmospheric data varying in -time""", + fr = """Fichier de donnees ASCII contenant les informations +atmospheriques variables en temps.""", + ang = """ASCII data file containing the atmospheric data varying in +time.""", ), # ----------------------------------- BINARY_ATMOSPHERIC_DATA_FILE = SIMP(statut ='f', @@ -1469,46 +1733,96 @@ time""", typ = ('Fichier','All Files (*)'), defaut = '', fr = """Fichier de donnees code en binaire contenant les informations -atmospheriques variables en temps et en espace sur le maillage""", +atmospheriques variables en temps et en espace sur le maillage.""", ang = """Binary-coded data file containing the atmospheric data varying in -time and space on the mesh""", +time and space on the mesh.""", ), # ----------------------------------- BINARY_ATMOSPHERIC_DATA_FILE_FORMAT = SIMP(statut ='f', # ----------------------------------- typ = 'TXM', - into = ['SERAFIN?','SERAFIND','MED'], - defaut = 'SERAFIN?', - fr = """Format du fichier binaire de donn\E9es atmospheriques. + into = ['SERAFIN','SERAFIND','MED'], + defaut = 'SERAFIN', + fr = """Format du \telkey{FICHIER BINAIRE DE DONNEES ATMOSPHERIQUES}. Les valeurs possibles sont : -- SERAFIN : format standard simple precision pour Telemac; -- SERAFIND: format standard double precision pour Telemac; -- MED : format MED base sur HDF5""", - ang = """Binary atmospheric file format. +\begin{itemize} +\item SERAFIN : format standard simple precision pour \tel ; +\item SERAFIND: format standard double precision pour \tel ; +\item MED : format MED double precision base sur HDF5. +\end{itemize}""", + ang = """Format of the \telkey{BINARY ATMOSPHERIC DATA FILE}. Possible values are: -- SERAFIN : classical single precision format in Telemac; -- SERAFIND: classical double precision format in Telemac; -- MED : MED format based on HDF5""", +\begin{itemize} +\item SERAFIN : classical single precision format in \tel, +\item SERAFIND: classical double precision format in \tel, +\item MED : MED double precision format based on HDF5. +\end{itemize}""", ), # ----------------------------------- OPTION_FOR_INITIAL_ABSTRACTION_RATIO = SIMP(statut ='f', # ----------------------------------- typ = 'I', defaut = 1, - fr = """Donne le ratio entre pertes initiales IA et la retention potenti -maximale S pour le modele pluie-debit SCS CN. Les options disponibles so - 1 : IA/S = 0.2 (methode standard) - 2 : IA/S = 0.05 (methode revisee, cf. Woodward, Hawkins et al. 2003. A - cette option les coefficients CN fournis en entree sont alors - automatiquement corriges, cf. manuel utilisateur). -Ce mot cle est uniquement utile pour le modele pluie-d�bit 1 (CN)""", + fr = """Donne le ratio entre pertes initiales IA et la retention potentielle +maximale S pour le modele pluie-debit SCS CN. +Les options disponibles sont : +\begin{itemize} +\item 1 : IA/S = 0.2 (methode standard) ; +\item 2 : IA/S = 0.05 (methode revisee, cf. Woodward, Hawkins et al. +2003. +\end{itemize} +Avec cette option les coefficients CN fournis en entree sont alors +automatiquement corriges, cf. manuel utilisateur). +Ce mot cle est uniquement utile pour le modele pluie-debit 1 (CN).""", ang = """Gives the ratio for Initial Abstraction to Maximal Potential Retention S for the SCS CN runoff model. Available options are: - 1 : IA/S = 0.2 (standard method) - 2 : IA/S = 0.05 (revised method, see Woodward, Hawkins et al. 2003. Wi - this option the CN values given in input are automatically convers - see user manual). -This keyword is only useful for runoff model 1 (SCS CN model)""", +\begin{itemize} +\item 1: IA/S = 0.2 (standard method), +\item 2: IA/S = 0.05 (revised method, see Woodward, Hawkins et al. 2003. +\end{itemize} +With this option the CN values given in input are automatically +converted see user manual). +This keyword is only useful for runoff model 1 (SCS CN model).""", + ), +# ----------------------------------- + AIR_TEMPERATURE = SIMP(statut ='o', +# ----------------------------------- + typ = 'R', + defaut = 20., + fr = """Donne la valeur de la temperature de l air lorsqu elle est +constante en temps et en espace. En $^{\circ}$C.""", + ang = """Gives the value of air temperature when it is constant +in time and space. In $^{\circ}$C.""", + ), +# ----------------------------------- + CLOUD_COVER = SIMP(statut ='o', +# ----------------------------------- + typ = 'R', + defaut = 5., + fr = """Donne la valeur de la nebulosite lorsqu elle est +constante en temps et en espace. En Octas ou dizieme.""", + ang = """Gives the value of cloud cover when it is constant +in time and space. In Octas or tenth.""", + ), +# ----------------------------------- + SOLAR_RADIATION = SIMP(statut ='o', +# ----------------------------------- + typ = 'R', + defaut = 160., + fr = """Donne la valeur du rayonnement solaire lorsqu il est +constant en temps et en espace. En W/m$^2$.""", + ang = """Gives the value of solar radiation when it is constant +in time and space. In W/m$^2$.""", + ), +# ----------------------------------- + VAPOROUS_PRESSURE = SIMP(statut ='o', +# ----------------------------------- + typ = 'R', + defaut = 1000., + fr = """Donne la valeur de la pression de vapeur saturante lorsqu elle est +constante en temps et en espace. En Pa.""", + ang = """Gives the value of vaporous pressure when it is constant +in time and space. In Pa.""", ), ), # ----------------------------------- @@ -1519,7 +1833,7 @@ This keyword is only useful for runoff model 1 (SCS CN model)""", # ----------------------------------- typ = bool, defaut = False, - fr = """Active la prise en compte des courants de houle""", + fr = """Active la prise en compte des courants de houle.""", ang = """Wave driven currents are taken into account.""", ), # ----------------------------------- @@ -1530,8 +1844,8 @@ This keyword is only useful for runoff model 1 (SCS CN model)""", # ----------------------------------- 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""", + fr = """Numero d enregistrement dans le fichier des courants de houle.""", + ang = """Record number to be read in the wave driven currents file.""", ), ), # ----------------------------------- @@ -1540,10 +1854,10 @@ This keyword is only useful for runoff model 1 (SCS CN model)""", typ = bool, defaut = False, fr = """Active la prise en compte des interactions non-lineaires entre la -houle et les courant pour le calcul du courant de houle (cf OConnor and -Yoo, 1988, Coast Eng.12.)""", +houle et les courants pour le calcul du courant de houle (cf OConnor and +Yoo, 1988, Coast Eng.12.).""", ang = """Wave friction enhancement for the calculation of the wave generated -longshore current (cf OConnor and Yoo, 1988, Coast Eng.12.)""", +longshore current (cf OConnor and Yoo, 1988, Coast Eng.12.).""", ), ), # ----------------------------------- @@ -1555,10 +1869,16 @@ longshore current (cf OConnor and Yoo, 1988, Coast Eng.12.)""", typ = 'TXM', into = ['','FRICTION','FRICTION, STEADY'], defaut = '', - fr = """Liste des parametres a estimer, choix : FROTTEMENT - ou FROTTEMENT, PERMANENT""", - ang = """List of parameter to be estimated, choice : FRICTION - or FRICTION, STEADY""", + fr = """Liste des parametres a estimer, choix : +\begin{itemize} +\item FROTTEMENT ; +\item FROTTEMENT, PERMANENT. +\end{itemize}""", + ang = """List of parameter to be estimated, choices: +\begin{itemize} +\item FRICTION, +\item FRICTION, STEADY. +\end{itemize}""", ), # ----------------------------------- COST_FUNCTION = SIMP(statut ='f', @@ -1566,43 +1886,57 @@ longshore current (cf OConnor and Yoo, 1988, Coast Eng.12.)""", typ = 'TXM', into = ["Computed with h,u,v","Computed with c,u,v"], defaut = "Computed with h,u,v", - fr = """1 : calculee sur h, u , v 2 : calculee avec c, u , v""", - ang = """1: computed with h, u , v 2: computed with c, u , v""", + fr = """Choix possibles : +\begin{itemize} +\item calculee sur $h$, $u$, $v$ ; +\item calculee avec $c$, $u$ , $v$. +\end{itemize}""", + ang = """Possible choices: +\begin{itemize} +\item computed with $h$, $u$, $v$, +\item computed with $c$, $u$, $v$. +\end{itemize}""", ), # ----------------------------------- IDENTIFICATION_METHOD = SIMP(statut ='o', # ----------------------------------- typ = 'TXM', - into = ["list of tests","gradient simple","conj gradient","Lagrange interp."], + into = ["list of tests","gradient simple","conjugate gradient","Lagrange interpolation"], defaut = "gradient simple", - fr = """0 : plan d''experience -1 : gradient simple -2 : gradient conj. -3 : interp. de Lagrange""", - ang = """0 : list of tests -1: gradient -2 : conj. gradient -3 : lagrange interp.""", + fr = """Choix possibles : +\begin{itemize} +\item 0 : plan d''experience ; +\item 1 : gradient simple ; +\item 2 : gradient conjugue ; +\item 3 : interpolation de Lagrange. +\end{itemize}""", + ang = """Possible choices: +\begin{itemize} +\item 0: list of tests, +\item 1: gradient, +\item 2: conjugate gradient, +\item 3: Lagrangian interpolation. +\end{itemize}""", ), # ----------------------------------- TOLERANCES_FOR_IDENTIFICATION = SIMP(statut ='o', # ----------------------------------- typ = 'R', min= 4, max= 4, defaut = [1.E-3,1.E-3,1.E-3,1.E-4], - fr = """4 nombres : precision absolue sur H, U, V, - et precision relative sur la fonction cout""", - ang = """4 numbers: absolute precision on H, U V, - and relative precision on the cost function""", + fr = """4 nombres : precision absolue sur $H$, $U$, $V$, +et precision relative sur la fonction cout.""", + ang = """4 numbers: absolute precision on $H$, $U$, $V$, +and relative precision on the cost function.""", ), # ----------------------------------- 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""", + 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.""", ), ), # ----------------------------------- @@ -1612,38 +1946,50 @@ longshore current (cf OConnor and Yoo, 1988, Coast Eng.12.)""", ABSCISSAE_OF_SOURCES = SIMP(statut ='f', # ----------------------------------- typ = 'R', min=0, max='**', - fr = """Valeurs des abscisses des sources de debit et de traceur.""", - ang = """abscissae of sources of flowrate and/or tracer""", + fr = """Valeurs des abscisses des sources de debit et de traceur. +La source sera placee au noeud du maillage le plus proche.""", + ang = """Abscissae of sources of flowrate and/or tracer. +The source will be located at the nearest node in the mesh.""", ), # ----------------------------------- ORDINATES_OF_SOURCES = SIMP(statut ='f', # ----------------------------------- typ = 'R', min=0, max='**', - fr = """Valeurs des ordonnees des sources de debit et de traceur.""", - ang = """ordinates of sources of flowrate and/or tracer""", + fr = """Valeurs des ordonnees des sources de debit et de traceur. +La source sera placee au noeud du maillage le plus proche.""", + ang = """Ordinates of sources of flowrate and/or tracer. +The source will be located at the nearest node in the mesh.""", ), # ----------------------------------- WATER_DISCHARGE_OF_SOURCES = SIMP(statut ='f', # ----------------------------------- typ = 'R', min=0, max='**', - fr = """Valeurs des debits des sources.""", - ang = """values of water discharge of sources""", + fr = """Specifie le debit de chaque source. +Un debit positif signifie qu''il s''agit d''un apport de fluide.""", + ang = """Specifies the discharge for every source. +A positive discharge means that fluid is added.""", ), # ----------------------------------- VELOCITIES_OF_THE_SOURCES_ALONG_X = SIMP(statut ='f', # ----------------------------------- typ = 'R', min=0, max='**', - 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""", + fr = """Vitesses du courant selon $x$ a chacune des sources. +Si elles ne sont pas donnees, on considere que la vitesse est +celle du courant.""", + ang = """Velocities along $x$ 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 = 'R', min=0, max='**', - fr = """Vitesses du courant a chacune des sources""", - ang = """Velocities at the sources""", + fr = """Vitesses du courant selon $y$ a chacune des sources. +Si elles ne sont pas donnees, on considere que la vitesse est +celle du courant.""", + ang = """Velocities along $y$ at the sources. +If they are not given, the velocity of the flow at this location +is taken.""", ), # ----------------------------------- TYPE_OF_SOURCES = SIMP(statut ='o', @@ -1651,10 +1997,18 @@ of the flow at this location is taken""", typ = 'TXM', into = ["Normal","Dirac"], defaut = "Normal", - fr = """1: Source portee par une base elements finis -2: Source portee par une fonction de Dirac""", - ang = """1: Source term multiplied by a finite element basis -2: Source term multiplied by a Dirac function""", + fr = """Definit comment les sources sont calculees : +\begin{itemize} +\item 1 : Source portee par une base elements finis ; +\item 2 : Source portee par une fonction de Dirac +(recommande quand il y a beaucoup de sources). +\end{itemize}""", + ang = """Defines how the sources are computed: +\begin{itemize} +\item 1: Source term multiplied by a finite element basis, +\item 2: Source term multiplied by a Dirac function +(recommended with high numbers of sources). +\end{itemize}""", ), # ----------------------------------- SOURCES_FILE = SIMP(statut ='f', @@ -1662,18 +2016,39 @@ of the flow at this location is taken""", typ = ('Fichier','All Files (*)'), defaut = '', fr = """Nom du fichier contenant les informations variables -en temps des sources""", +en temps des sources.""", ang = """Name of the file containing time-dependent -information on sources""", +information on sources.""", ), # ----------------------------------- GLOBAL_NUMBERS_OF_SOURCE_NODES = SIMP(statut ='f', # ----------------------------------- typ = 'I', min=0, max='**', - fr = """ Numeros globaux des noeuds du maillage sur lequels sont affectes des -points source""", - ang = """ Global numbers of nodes in the mesh that correspond to source point -locations""", + fr = """Numeros globaux des noeuds du maillage sur lequels sont affectes des +points source.""", + ang = """Global numbers of nodes in the mesh that correspond to source point +locations.""", + ), +# ----------------------------------- + SOURCE_REGIONS_DATA_FILE = SIMP(statut ='f', +# ----------------------------------- + typ = ('Fichier','All Files (*)'), + defaut = '', + fr = """Fichier de donnees en ASCII contenant les coordonnees des polygones +qui contiennent les sources.""", + ang = """ASCII data file containing sources informations: coordinates of the +polygons containing sources.""", + ), +# ----------------------------------- + MAXIMUM_NUMBER_OF_POINTS_FOR_SOURCES_REGIONS = SIMP(statut ='f', +# ----------------------------------- + typ = 'I', + defaut = 10, + fr = """Nombre maximal de points pour definir les regions contenant les +sources. +Sert au dimensionnement de la memoire, a augmenter si necessaire.""", + ang = """Maximal number of points to define regions containing sources. +Used for dimensioning arrays. It can be increased if needed.""", ), ), # ----------------------------------- @@ -1695,15 +2070,14 @@ comme une combinaison multiplicative de nombres premiers \item 5 : EUTRO ; \item 7 : MICROPOL ; \item 11 : THERMIC ; -\item 13 : AED2. -\item 17 : Loi de degradation -\item 19 : Court-cicuit temporaire pour les glaces +\item 17 : Loi de degradation ; +\item 19 : Court-cicuit temporaire pour les glaces. \end{itemize} -Example: 110 = 2x5x11 activera O2, EUTRO et THERMIC ensemble. -On notera que AED2, pour l instant, n est pas disponible en 2D""", +Exemple: 110 = 2x5x11 activera O2, EUTRO et THERMIC ensemble. +On notera que AED2, pour l instant, n est pas disponible en 2D.""", ang = """Gives the water quality process number, defined as -a multiplicative combination of prime numbers (2,3,5,7,11 - et 13) with 0 and 1 having a special role: +a multiplicative combination of prime numbers (2,3,5,7,11, 17 +and 19) with 0 and 1 having a special role: \begin{itemize} \item 0: all, \item 1: none, @@ -1712,9 +2086,8 @@ a multiplicative combination of prime numbers (2,3,5,7,11 \item 5: EUTRO, \item 7: MICROPOL, \item 11: THERMIC, -\item 13: AED2. -\item 17: Degradation law -\item 19: Ghost process for ice modelling +\item 17: Degradation law, +\item 19: Ghost process for ice modelling. \end{itemize} Example: 110 = 2x5x11 activate O2, EUTRO and THERMIC together. It is noted that AED2 is not available in 2D, for the time being.""", @@ -1729,15 +2102,15 @@ It is noted that AED2 is not available in 2D, for the time being.""", typ = 'R', defaut = 1000., fr = """Fixe la valeur de la masse volumique de l''eau.""", - ang = """set the value of water density""", + ang = """Sets 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.""", + fr = """Fixe la valeur de l''acceleration de la pesanteur en m/s$^2$.""", + ang = """Sets the value of the acceleration due to gravity in m/s$^2$.""", ), # ----------------------------------- VERTICAL_STRUCTURES = SIMP(statut ='o', @@ -1745,9 +2118,9 @@ It is noted that AED2 is not available in 2D, for the time being.""", typ = bool, defaut = False, fr = """Prise en compte de la force de trainee de structures verticales -(il faut alors remplir la subroutine DRAGFO)""", - ang = """drag forces from vertical structures are taken into account. -(subroutine DRAGFO must then be implemented)""", +(il faut alors remplir le sous-programme \telfile{DRAGFO}).""", + ang = """Drag forces from vertical structures are taken into account. +(subroutine \telfile{DRAGFO} must then be implemented).""", ), # ----------------------------------- b_VERTICAL_STRUCTURESG = BLOC(condition="VERTICAL_STRUCTURES == True", @@ -1768,10 +2141,18 @@ It is noted that AED2 is not available in 2D, for the time being.""", typ = 'TXM', into = ['SAINT-VENANT FE','SAINT-VENANT FV','BOUSSINESQ'], defaut = 'SAINT-VENANT FE', - fr = """CHOIX DES EQUATIONS A RESOUDRE : SAINT-VENANT ELEMENTS FINIS, -SAINT-VENANT VOLUMES FINIS OU BOUSSINESQ 20 CARACTERES""", - ang = """CHOICE OF EQUATIONS TO SOLVE : SAINT-VENANT FINITE ELEMENTS, -SAINT-VENANT FINITE VOLUMES OR BOUSSINESQ 20 CHARACTERS""", + fr = """Choix des equations a resoudre : +\begin{itemize} +\item Saint-Venant Elements Finis ; +\item Saint-Venant Volumes Finis ; +\item Boussinesq 20 caracteres. +\end{itemize}""", + ang = """Choice of equations to solve: +\begin{itemize} +\item Shallow Water Finite Elements, +\item Shallow Water Finite Volumes, +\item Boussinesq 20 Characters. +\end{itemize}""", ), # ----------------------------------- b_EQUATIONSG = BLOC(condition="EQUATIONS == 'SAINT-VENANT FV'", @@ -1780,24 +2161,47 @@ SAINT-VENANT FINITE VOLUMES OR BOUSSINESQ 20 CHARACTERS""", 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", - fr = """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""", - ang = """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""", + into = ["Roe scheme","kinetic","Zokagoa scheme","Tchamen scheme","HLLC scheme","WAF scheme"], + defaut = "kinetic", + fr = """Choix possibles : +\begin{itemize} +\item 0 : schema de Roe ; +\item 1 : cinetique ; +\item 3 : schema de Zokagoa ; +\item 4 : schema de Tchamen ; +\item 5 : HLLC ; +\item 6 : WAF. +\end{itemize}""", + ang = """Possible choices: +\begin{itemize} +\item 0: Roe scheme, +\item 1: kinetic, +\item 3: Zokagoa scheme, +\item 4: Tchamen scheme, +\item 5: HLLC, +\item 6: WAF. +\end{itemize}""", ), ), # ----------------------------------- TREATMENT_OF_THE_LINEAR_SYSTEM = SIMP(statut ='o', # ----------------------------------- typ = 'TXM', - into = ["coupled","Wave equation"], - defaut = "coupled", - fr = """1 : Traitement couple 2 : equation d onde""", - ang = """1 : Coupled 2 : wave equation""", + into = ["Coupled","Wave equation"], + defaut = "Wave equation", + fr = """Choix possibles : +\begin{itemize} +\item 1 : Traitement couple ; +\item 2 : Equation d onde. +\end{itemize} +Ancienne valeur par defaut = 1 (couple) jusqu a la version +V8P1.""", + ang = """Possible choices: +\begin{itemize} +\item 1: Coupled, +\item 2: Wave equation. +\end{itemize} +Old default value = 1 (coupled) until release V8P1.""", ), ), # ----------------------------------- @@ -1820,21 +2224,26 @@ SAINT-VENANT FINITE VOLUMES OR BOUSSINESQ 20 CHARACTERS""", typ = 'R', defaut = 0., fr = """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.2921 10-5 rad/s -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, 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""", +Celui-ci doit etre calcule en fonction de la latitude $l$ +par la formule +$FCOR = 2 \omega sin(l)$ , +$\omega$ etant la vitesse de rotation de la terre. +$\omega$ = 7.2921 10-5 rad/s.\\ +Les composantes de la force de Coriolis sont alors :\\ +$FU = FCOR \times V,$\\ +$FV = -FCOR \times U.$ +Lorsqu''on utilise les coordonnees spheriques, le coefficient de +Coriolis est calcule automatiquement.""", + ang = """Sets the value of the Coriolis force coefficient, +in cartesian coordinates. +This coefficient, denoted \telfile{FCOR} in the code, should be equal to +$2 \omega \sin(l)$ where $\omega$ denotes the earth angular speed of +rotation and $l$ the latitude. $\omega$ = 7.2921 10-5 rad/s.\\ +The Coriolis force components are then:\\ +$FU = FCOR \times V,$\\ +$FV = -FCOR \times U.$\\ +When using the spherical coordinates, the Coriolis coefficient is +automatically computed.""", ), ), # ----------------------------------- @@ -1846,16 +2255,50 @@ In spherical coordinates, the latitudes are known""", typ = 'TXM', into = ["No Tsunami","Tsunami generated on the basis of the Okada model 1992"], defaut = "No Tsunami", - fr = """""", - ang = """""", + fr = """Choix possibles : +\begin{itemize} +\item 0 : pas de tsunami ; +\item 1 : generation d un Tsunami sur la base du modele de Okada +(1992). +\end{itemize}""", + ang = """Possible choices: +\begin{itemize} +\item 0: no tsunami, +\item 1: tsunami generated on the basis of the Okada model (1992). +\end{itemize}""", ), # ----------------------------------- PHYSICAL_CHARACTERISTICS_OF_THE_TSUNAMI = SIMP(statut ='o', # ----------------------------------- typ = 'R', min=10, max=10, defaut = [100.,210000.,75000.,13.6,81.,41.,110.,0.,0.,3.], - fr = """""", - ang = """""", + fr = """Caracteristiques physiques du tsunami au nombre de 10, dans l ordre : +\begin{itemize} +\item $HH$ profondeur focale (en m) ; +\item $L$ longueur de fault (en m) ; +\item $W$ largeur de fault (en m) ; +\item $D$ dislocation (en m) ; +\item $TH$ direction de strike (en degres decimaux) ; +\item $DL$ angle d immersion (en degres decimaux) ; +\item $RD$ angle de glissement (en degres decimaux) ; +\item $Y0$ latitude de l epicentre (en degres decimaux) ; +\item $X0$ longitude de l epicentre (en degres decimaux) ; +\item $C0$ taille de l ellipse d influence ($L$ $\times$ $W$). +\end{itemize}""", + ang = """Physical characteristics of the tsunami. +There are 10 of them: +\begin{itemize} +\item $HH$ focal depth (in m), +\item $L$ fault length (in m), +\item $W$ fault width (in m), +\item $D$ dislocation (in m), +\item $TH$ strike direction (in decimal degrees), +\item $DL$ dip angle (in decimal degrees), +\item $RD$ slip angle (in decimal degrees), +\item $Y0$ epicentre latitude (in decimal degrees), +\item $X0$ epicentre longitude (in decimal degrees), +\item $C0$ size of the ellipse of influence ($L$ $\times$ $W$). +\end{itemize}""", ), ), # ----------------------------------- @@ -1866,8 +2309,8 @@ In spherical coordinates, the latitudes are known""", # ----------------------------------- typ = bool, defaut = False, - fr = """Pour prendre en compte les courants secondaires""", - ang = """Using the parametrisation for secondary currents""", + fr = """Pour prendre en compte les courants secondaires.""", + ang = """Using the parametrisation for secondary currents.""", ), # ----------------------------------- b_SECONDARY_CURRENTSG = BLOC(condition="SECONDARY_CURRENTS == True", @@ -1877,290 +2320,280 @@ In spherical coordinates, the latitudes are known""", # ----------------------------------- typ = 'R', defaut = 7.071, - fr = """Une constante dans les termes de creation de Omega""", - ang = """A constant in the production terms of Omega""", + 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 = 5.E-1, - fr = """Coefficient de dissipation de Omega""", - ang = """Coefficient of dissipation term of Omega""", + fr = """Coefficient de dissipation de $\Omega$.""", + ang = """Coefficient of dissipation term of $\Omega$.""", ), ), ), ), ) # ----------------------------------------------------------------------- -GENERAL_PARAMETERS = PROC(nom= "GENERAL_PARAMETERS",op = None, +NUMERICAL_PARAMETERS = PROC(nom= "NUMERICAL_PARAMETERS",op = None, # ----------------------------------------------------------------------- - UIinfo = {"groupes": ("CACHE")}, # ----------------------------------- - DEBUGGER = SIMP(statut ='o', -# ----------------------------------- - typ = 'I', - defaut = 0, - fr = """Pour imprimer la sequence des appels, mettre 1""", - ang = """If 1, calls of subroutines will be printed in the listing""", - ), -# ----------------------------------- - TIME = FACT(statut='o', + ADVANCED = FACT(statut='o', # ----------------------------------- # ----------------------------------- - TIME_STEP = SIMP(statut ='o', -# ----------------------------------- - typ = 'R', - defaut = 1., - fr = """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.""", - ang = """Specifies the time step in seconds.""", - ), -# ----------------------------------- - NUMBER_OF_TIME_STEPS = SIMP(statut ='f', + FINITE_VOLUME_SCHEME_SPACE_ORDER = SIMP(statut ='o', # ----------------------------------- typ = 'I', 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.""", + fr = """Choix possibles : +\begin{itemize} +\item 1 : ordre 1 en espace ; +\item 2 : ordre 2 en espace. +\end{itemize}""", + ang = """Possible choices: +\begin{itemize} +\item 1: first order in space, +\item 2: second order in space. +\end{itemize}""", ), # ----------------------------------- - DURATION = SIMP(statut ='f', + FINITE_VOLUME_SCHEME_TIME_ORDER = SIMP(statut ='o', # ----------------------------------- - typ = 'R', - defaut = 0., - fr = """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""", - ang = """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""", + typ = 'I', + defaut = 1, + fr = """Choix possibles : +\begin{itemize} +\item 1 : ordre 1 en temps ; +\item 2 : ordre 2 en temps. +\end{itemize}""", + ang = """Possible choices: +\begin{itemize} +\item 1: first order in time, +\item 2: second order in time. +\end{itemize}""", ), # ----------------------------------- - ORIGINAL_DATE_OF_TIME = SIMP(statut ='o', + FLUX_LIMITOR_FOR_H_PLUS_Z = SIMP(statut ='o', # ----------------------------------- - typ = 'I', min= 3, max= 3, - defaut = [1900,1,1], - 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.""", + typ = 'I', + defaut = 1, + fr = """Choix possibles : +\begin{itemize} +\item 1 : Minmod ; +\item 2 : Van Albada ; +\item 3 : MC (Monotonized Central-difference) ; +\item 4 : GenMinmod. +\end{itemize}""", + ang = """Possible choices: +\begin{itemize} +\item 1 : Minmod, +\item 2 : Van Albada, +\item 3 : MC (Monotonized Central-difference), +\item 4 : GenMinmod. +\end{itemize}""", ), # ----------------------------------- - ORIGINAL_HOUR_OF_TIME = SIMP(statut ='o', + FLUX_LIMITOR_FOR_U_AND_V = SIMP(statut ='o', # ----------------------------------- - typ = 'I', min= 3, max= 3, - defaut = [0,0,0], - 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 -of the tide generator force.""", + typ = 'I', + defaut = 2, + fr = """Choix possibles : +\begin{itemize} +\item 1 : Minmod ; +\item 2 : Van Albada ; +\item 3 : MC (Monotonized Central-difference) ; +\item 4 : GenMinmod. +\end{itemize}""", + ang = """Possible choices: +\begin{itemize} +\item 1 : Minmod, +\item 2 : Van Albada, +\item 3 : MC (Monotonized Central-difference), +\item 4 : GenMinmod. +\end{itemize}""", ), # ----------------------------------- - STOP_IF_A_STEADY_STATE_IS_REACHED = SIMP(statut ='o', + FLUX_LIMITOR_FOR_TRACERS = SIMP(statut ='o', # ----------------------------------- - typ = bool, - defaut = False, - fr = """A UTILISER AVEC LE MOT-CLE : CRITERES D''ARRET""", - ang = """TO BE USED WITH THE KEY-WORD: STOP CRITERIA""", + typ = 'I', + defaut = 2, + fr = """Choix possibles : +\begin{itemize} +\item 1 : Minmod ; +\item 2 : Van Albada ; +\item 3 : MC (Monotonized Central-difference) ; +\item 4 : GenMinmod. +\end{itemize}""", + ang = """Possible choices: +\begin{itemize} +\item 1 : Minmod, +\item 2 : Van Albada, +\item 3 : MC (Monotonized Central-difference), +\item 4 : GenMinmod. +\end{itemize}""", ), # ----------------------------------- - b_STOP_IF_A_STEADY_STATE_IS_REACHEDG = BLOC(condition="STOP_IF_A_STEADY_STATE_IS_REACHED == True", + TYPE_OF_BOUNDARY_CONDITION_FOR_KINETIC_SCHEME = SIMP(statut ='o', # ----------------------------------- -# ----------------------------------- - STOP_CRITERIA = SIMP(statut ='o', -# ----------------------------------- - typ = 'R', min= 3, max= 3, - defaut = [1.E-4,1.E-4,1.E-4], - fr = """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""", - ang = """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""", - ), + typ = 'I', + defaut = 1, + fr = """Choix possibles : +\begin{itemize} +\item 1 : Imposition faible ; +\item 2 : Imposition forte. +\end{itemize}""", + ang = """Possible choices: +\begin{itemize} +\item 1: Weak imposition, +\item 2: Strong imposition. +\end{itemize}""", ), # ----------------------------------- - CONTROL_OF_LIMITS = SIMP(statut ='o', + MATRIX_STORAGE = SIMP(statut ='o', # ----------------------------------- - typ = bool, - defaut = False, - fr = """Utiliser avec le mot-cle : valeurs limites, le programme -s''arrete 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""", + typ = 'TXM', + into = ["classical EBE","Edge-based storage"], + defaut = "Edge-based storage", + fr = """Permet de definir la methode de stockage des matrices. +Les choix possibles sont : +\begin{itemize} +\item 1 : EBE classique ; +\item 3 : stockage par segments. +\end{itemize} +L option 3 est obligatoire avec un schema distributif pour la convection +(= 3, 4, 5, 13, 14 ou 15).""", + ang = """Defines the method to store matrices. The possible choices are: +\begin{itemize} +\item 1: classical EBE, +\item 3: edge-based storage. +\end{itemize} +Option 3 is mandatory with a distributive scheme for advection +(= 3, 4, 5, 13, 14 or 15).""", ), # ----------------------------------- - b_CONTROL_OF_LIMITSG = BLOC(condition="CONTROL_OF_LIMITS == True", + MATRIX_VECTOR_PRODUCT = SIMP(statut ='o', # ----------------------------------- -# ----------------------------------- - LIMIT_VALUES = SIMP(statut ='o', -# ----------------------------------- - typ = 'R', min= 8, max= 8, - defaut = [-1000.,9000.,-1000.,1000.,-1000.,1000.,-1000.,1000.], - fr = """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)""", - 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)""", - ), + typ = 'I', + defaut = 1, + fr = """Choix possibles : +\begin{itemize} +\item 1 : classique ; +\item 2 : frontal. +Attention, avec 2, il faut une numerotation speciale des points. +\end{itemize}""", + ang = """Possible choices are: +\begin{itemize} +\item 1: classic, +\item 2: frontal. +Beware, with option 2, a special numbering of points is required. +\end{itemize}""", ), # ----------------------------------- - VARIABLE_TIME_STEP = SIMP(statut ='o', + NEWMARK_TIME_INTEGRATION_COEFFICIENT = 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""", + typ = 'R', + defaut = 0.5, + fr = """Choix possibles : +\begin{itemize} +\item 1. : Euler explicite ; +\item 0.5 : ordre 2 en temps. +\end{itemize} +Seulement pour Volumes Finis.""", + ang = """Possible choices are: +\begin{itemize} +\item 1.: Euler explicit, +\item 0.5: order 2 in time. +\end{itemize} +Only for Finite Volumes.""", ), # ----------------------------------- - b_VARIABLE_TIME_STEPG = BLOC(condition="VARIABLE_TIME_STEP == True", + ZERO = SIMP(statut ='f', # ----------------------------------- -# ----------------------------------- - DESIRED_COURANT_NUMBER = SIMP(statut ='o', -# ----------------------------------- - typ = 'R', - defaut = 1., - fr = """Nombre de Courant souhaite en cas de pas de temps variable""", - ang = """Desired Courant number when VARIABLE TIME-STEP is set to YES""", - ), + typ = 'R', + defaut = 1.E-10, + fr = """Non active pour l''instant.""", + ang = """Not yet implemented""", ), - ), -# ----------------------------------- - LOCATION = FACT(statut='o', -# ----------------------------------- # ----------------------------------- - ORIGIN_COORDINATES = SIMP(statut ='o', + OPTION_OF_THE_HYDROSTATIC_RECONSTRUCTION = SIMP(statut ='f', # ----------------------------------- - typ = 'I', min= 2, max= 2, - defaut = [0,0], - fr = """Valeur en metres, utilise -pour eviter les trops 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""", + typ = 'I', + defaut = 1, + fr = """Donne l option de la reconstruction hydrostatique +(option utile uniquement pour les Volumes Finis, +pour les schemas cinetique, HLLC et WAF) : +\begin{itemize} +\item 1 : option d Audusse et al. ; +\item 2 : option de Chen et Noelle. +\end{itemize}""", + ang = """Gives the option for hydrostatic reconstruction +(only used for Finite Volumes with kinetic, HLLC and WAF schemes): +\begin{itemize} +\item 1: Audusse et al. option ; +\item 2: Chen and Noelle option. +\end{itemize}""", ), # ----------------------------------- - SPHERICAL_COORDINATES = SIMP(statut ='o', + CONVERGENCE_STUDY = SIMP(statut ='f', # ----------------------------------- typ = bool, defaut = False, - fr = """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.""", - ang = """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.""", + fr = """Active une etude de convergence par rapport a une +solution analytique sur un maillage fin.""", + ang = """Activates a convergence study compared +to an analytical solution on a fine mesh.""", ), # ----------------------------------- - b_SPHERICAL_COORDINATESG = BLOC(condition="SPHERICAL_COORDINATES == True", + REFINEMENT_LEVELS = SIMP(statut ='f', # ----------------------------------- -# ----------------------------------- - LATITUDE_OF_ORIGIN_POINT = SIMP(statut ='o', -# ----------------------------------- - typ = 'R', - 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 is in particular used to compute the Coriolis force. -In cartesian coordinates, Coriolis coefficient is considered constant.""", - ), + typ = 'I', + defaut = 0, + fr = """Donne le nombre de raffinements que l''utilisateur +veut utiliser pour l''etude de convergence +(en activant \telkey{ETUDE DE CONVERGENCE} = OUI). +Chaque niveau multiplie par 4 le nombre d''elements.""", + ang = """Gives the number of refinement levels that the +user wants to use in the convergence study (when activating +\telkey{CONVERGENCE STUDY} = YES). +Each level multiplies the number of elements by 4.""", ), + ), +# ----------------------------------- + SOLVER_INFO = FACT(statut='o', +# ----------------------------------- # ----------------------------------- - LONGITUDE_OF_ORIGIN_POINT = SIMP(statut ='o', -# ----------------------------------- - typ = 'R', - defaut = 0., - 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.""", - ), -# ----------------------------------- - NORTH = SIMP(statut ='f', -# ----------------------------------- - typ = 'R', - defaut = 0., - fr = """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.""", - ang = """Angle of the North with the y axis, in degrees. 10.5 means -10 degrees and 30 minutes.""", - ), -# ----------------------------------- - SPATIAL_PROJECTION_TYPE = SIMP(statut ='o', + SOLVER = SIMP(statut ='o', # ----------------------------------- typ = 'TXM', - into = ["CARTESIAN, NOT GEOREFERENCED","MERCATOR","LATITUDE LONGITUDE"], - defaut = "CARTESIAN, NOT GEOREFERENCED", - 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!""", - ), - ), -) -# ----------------------------------------------------------------------- -NUMERICAL_PARAMETERS = PROC(nom= "NUMERICAL_PARAMETERS",op = None, -# ----------------------------------------------------------------------- - UIinfo = {"groupes": ("CACHE")}, -# ----------------------------------- - SOLVER_INFO = FACT(statut='o', -# ----------------------------------- -# ----------------------------------- - SOLVER = SIMP(statut ='o', -# ----------------------------------- - typ = 'TXM', - into = ["conjugate gradient on a normal equation","conjugate gradient","conjugate residual","minimum error","cgstab","gmres","direct"], + into = ["conjugate gradient","conjugate residual","conjugate gradient on a normal equation","minimum error","cgstab","gmres","direct"], defaut = "conjugate gradient on a normal equation", fr = """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""", +l''etape de propagation. +Les choix possibles sont : +\begin{itemize} +\item 1 : gradient conjugue, +\item 2 : residu conjugue, +\item 3 : gradient conjugue sur equation normale, +\item 4 : erreur minimale, +\item 5 : gradient conjugue carre (non programme), +\item 6 : gradient conjugue carre stabilise (cgstab), +\item 7 : GMRES (voir aussi \telkey{OPTION DU SOLVEUR}), +\item 8 : direct. +\end{itemize}""", ang = """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""", +propagation step. +Possible choices are: +\begin{itemize} +\item 1: conjugate gradient, +\item 2: conjugate residual, +\item 3: conjugate gradient on a normal equation, +\item 4: minimum error, +\item 5: squared conjugate gradient (not implemented), +\item 6: conjugate gradient squared stabilised (cgstab), +\item 7: GMRES (see \telkey{SOLVER OPTION}), +\item 8: direct. +\end{itemize}""", ), # ----------------------------------- b_SOLVERG = BLOC(condition="SOLVER == 'gmres'", @@ -2170,10 +2603,10 @@ of the Conjugate Gradient method. They are as follows: # ----------------------------------- typ = 'I', defaut = 2, - fr = """si le solveur est GMRES (7) le mot cle est la dimension de -l''espace de KRYLOV (valeurs conseillees entre 2 et 15)""", - ang = """WHEN GMRES (7) IS CHOSEN, DIMENSION OF THE KRYLOV SPACE -TRY VALUES BETWEEN 2 AND 15""", + fr = """Si le solveur est GMRES (7), le mot cle est la dimension de +l''espace de Krylov (valeurs conseillees entre 2 et 15).""", + ang = """When GMRES (7) is chosen for solver, dimension of the Krylov space. +Try values between 2 and 15.""", ), ), # ----------------------------------- @@ -2182,7 +2615,7 @@ TRY VALUES BETWEEN 2 AND 15""", typ = 'R', defaut = 1.E-4, fr = """Precision demandee pour la resolution de l''etape de propagation - (cf. Note de principe).""", +(cf. Note de principe).""", ang = """Required accuracy for solving the propagation step (refer to Principle note).""", ), @@ -2192,7 +2625,7 @@ TRY VALUES BETWEEN 2 AND 15""", typ = 'I', defaut = 100, fr = """Les algorithmes utilises pour la resolution de l''etape de -propagation etant iteratifs; il est necessaire de limiter le nombre +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.""", @@ -2207,23 +2640,32 @@ reasonable.""", typ = bool, defaut = False, fr = """Corrige les vitesses sur les points avec hauteur imposee ou -l''equation de continuite n''a pas ete resolue""", +l''equation de continuite n''a pas ete resolue. +Doit etre activee avec des bancs decouvrants et +\telkey{TRAITEMENT DES HAUTEURS NEGATIVES} = 2 ou 3.""", ang = """Correction of the velocities on points with a prescribed -elevation, where the continuity equation has not been solved""", +elevation, where the continuity equation has not been solved. +It has to be activated with tidal flats and +\telkey{TREATMENT OF NEGATIVE DEPTHS} = 2 or 3.""", ), # ----------------------------------- PRECONDITIONING = SIMP(statut ='o', # ----------------------------------- typ = 'TXM', - into = ["diagonal","no preconditioning","block-diagonal (4-9 matrices)","absolute value of diagonal","crout","gauss-seidel","diagonal and crout"], + into = ["diagonal","no preconditioning","block-diagonal (4-9 matrices)","absolute value of diagonal","Crout","Gauss-Seidel","Supplied by the user","diagonal and Crout"], defaut = "diagonal", fr = """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 +\begin{itemize} +\item 0 : pas de preconditionnement ; +\item 2 : preconditionnement diagonal ; +\item 3 : preconditionnement diagonal-bloc ; +\item 5 : preconditionnement valeur absolue diagonale ; +\item 7 : preconditionnement de Crout par element ou segment +(ne marche pas en parallele) ; +\item 11 : preconditionnement de Gauss-Seidel par element ou segment ; +\item 13 : preconditionnement fourni par l''utilisateur. +\end{itemize} Certains preconditionnements sont cumulables (les diagonaux 2 ou 3 avec les autres) Pour cette raison on ne retient que les nombres premiers pour @@ -2231,11 +2673,16 @@ designer les preconditionnements. Si l''on 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: block-diagonal preconditioning (systemes a 4 ou 9 matrices) - 7: Crout''s preconditioning per element or segment -11: Gauss-Seidel''s preconditioning per element or segment +\begin{itemize} +\item 0: no preconditioning, +\item 2: diagonal preconditioning, +\item 3: block-diagonal preconditioning (systemes a 4 ou 9 matrices), +\item 5: diagonal preconditioning with absolute value, +\item 7: Crout''s preconditioning per element or segment +(does not work in parallel), +\item 11: Gauss-Seidel''s preconditioning per element or segment, +\item 13: preconditioning supplied by the user. +\end{itemize} 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 @@ -2247,17 +2694,31 @@ the product of relevant options shall be made.""", # ----------------------------------- typ = bool, defaut = True, - 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""", + fr = """Changement de variable de $H$ en $C$ dans le systeme lineaire final. +Cette option est desactivee avec l equation d onde i.e. +\telkey{TRAITEMENT DU SYSTEME LINEAIRE} = 2.""", + ang = """Change of variable from $H$ to $C$ in the final linear system. +This option is deactivated with wave equation i.e. +\telkey{TREATMENT OF THE LINEAR SYSTEM} = 2.""", ), # ----------------------------------- FINITE_ELEMENT_ASSEMBLY = SIMP(statut ='f', # ----------------------------------- typ = 'TXM', - into = ["normal","Integer I8","Compensated"], - defaut = "normal", - fr = """1 : normal 2 : avec des entiers I8 3:compense""", - ang = """1: normal 2: with I8 integers 3:compensation""", + into = ["Normal","Integer I8","Compensated"], + defaut = "Normal", + fr = """Les choix possibles sont : +\begin{itemize} +\item 1 : normal ; +\item 2 : avec des entiers I8 ; +\item 3 : compense (pour reproductibilite). +\end{itemize}""", + ang = """Possible choices are: +\begin{itemize} +\item 1: normal, +\item 2: with I8 integers, +\item 3: compensation (for reproducibility). +\end{itemize}""", ), ), # ----------------------------------- @@ -2270,10 +2731,10 @@ the product of relevant options shall be made.""", defaut = 0.55, fr = """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.""", +donnent un schema instable (et sont donc interdites).""", ang = """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.""", +0.5 result in an unstable scheme (and are then forbidden).""", ), # ----------------------------------- IMPLICITATION_FOR_VELOCITY = SIMP(statut ='o', @@ -2282,23 +2743,51 @@ waves) in the propagation step (refer to principle note). Values below defaut = 0.55, fr = """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.""", +a 0.5 donnent un schema instable (et sont donc interdites).""", ang = """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.""", +an unstable condition (and are then forbidden).""", ), # ----------------------------------- DISCRETIZATIONS_IN_SPACE = SIMP(statut ='f', # ----------------------------------- typ = 'TXM', max='**', into = ["linear","quasi-bubble","quadratic"], - defaut = ["linear","linear","linear","linear"], - fr = """ 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""", - ang = """ 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""", + defaut = ["linear","linear","linear","linear","linear"], + fr = """Choix de la discretisation pour chaque variable. +Ces coefficients sont respectivement appliques a : +\begin{itemize} +\item 1) $U$ et $V$ ; +\item 2) $H$ ; +\item 3) $T$ ; +\item 4) $k$ et $\epsilon$ (modele $k-\epsilon$) ; +\item 5) $\tilde{\nu}$ (modele Spalart-Allmaras). +\end{itemize} +Les choix possibles sont : +\begin{itemize} +\item 11 : lineaire ; +\item 12 : quasi-bulle ; +\item 13 : quadratique. +\end{itemize} +Les elements quadratiques (13) ne sont pas implementes pour l equation +d onde (\telkey{TRAITEMENT DU SYSTEME LINEAIRE} = 2).""", + ang = """Choice of space discretisation for every variable. +These coefficients are respectively applied to: +\begin{itemize} +\item 1) $U$ and $V$, +\item 2) $H$, +\item 3) $T$, +\item 4) $k$ and $\epsilon$ ($k-\epsilon$ model), +\item 5) $\tilde{\nu}$ (Spalart-Allmaras model). +\end{itemize} +Possible choices are: +\begin{itemize} +\item 11: linear, +\item 12: quasi-bubble, +\item 13: quadratic. +\end{itemize} +Quadratic elements (13) have not been implemented for wave equation +(\telkey{TREATMENT OF THE LINEAR SYSTEM} = 2).""", ), # ----------------------------------- b_DISCRETIZATIONS_IN_SPACEG = BLOC(condition="DISCRETIZATIONS_IN_SPACE != None", @@ -2332,10 +2821,10 @@ The diffusion being included in that step will be deleted as well.""", # ----------------------------------- typ = 'R', defaut = 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.""", + fr = """Fixe la hauteur d''eau autour de laquelle s''effectue la linearisation +lorsque l''option \telkey{PROPAGATION LINEARISEE} est choisie.""", + ang = """Sets the water depth around which the linearization is done +when the \telkey{LINEARIZED PROPAGATION} option is selected.""", ), # ----------------------------------- INITIAL_GUESS_FOR_U = SIMP(statut ='o', @@ -2349,17 +2838,21 @@ 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)""", +\begin{itemize} +\item 0 : U = 0 ; +\item 1 : U = U(n) ; +\item 2 : U = 2 U(n)- U(n-1) (extrapolation). +\end{itemize}""", ang = """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)""", +\begin{itemize} +\item 0 : U = 0, +\item 1 : U = U(n), +\item 2 : U = 2 U(n)- U(n-1) (extrapolation). +\end{itemize}""", ), ), # ----------------------------------- @@ -2368,23 +2861,27 @@ speeded up when the system is being solved. 3 options are available: 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, 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 + fr = """Tir initial du solveur de l''etape de propagation. Offre la +possibilite de modifier la valeur initiale 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).""", +\begin{itemize} +\item 0 : DH = 0 ; +\item 1 : DH = DHn (valeur finale de DH au pas de temps precedent) ; +\item 2 : DH = 2.DHn - DHn-1 (extrapolation). +\end{itemize}""", ang = """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)""", +\begin{itemize} +\item 0: DH = 0, +\item 1: DH = DHn (ultimate DH value in the next previous time step), +\item 2: DH = 2.DHn - DHn-1 (extrapolation). +\end{itemize}""", ), # ----------------------------------- LINEARIZED_PROPAGATION = SIMP(statut ='o', @@ -2410,30 +2907,28 @@ case is available.""", typ = bool, defaut = True, fr = """Prise en compte ou non des termes de convection. -En cas de reponse positive; +En cas de reponse positive, on peut encore supprimer certains termes de convection avec -les mots-cles CONVECTION DE ...""", +les mots-cles \telkey{CONVECTION DE}...""", ang = """Are the advection terms taken into account or not? If YES, some advection terms can still be deleted using the keywords --ADVECTION OF ..-""", +\telkey{ADVECTION OF}...""", ), # ----------------------------------- ADVECTION_OF_H = SIMP(statut ='o', # ----------------------------------- typ = bool, defaut = True, - fr = """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""", - ang = """The advection of H is taken into account or ignored. -Actually, in version 2.0, the matter is about C advection.""", + fr = """Prise en compte ou non de la convection de $H$.""", + ang = """The advection of $H$ is taken into account or ignored.""", ), # ----------------------------------- 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.""", + 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_ADVECTION_OF_U_AND_VG = BLOC(condition="ADVECTION_OF_U_AND_V == True", @@ -2445,9 +2940,9 @@ Actually, in version 2.0, the matter is about C advection.""", into = ["NO ADVECTION","CHARACTERISTICS","EXPLICIT + SUPG","EXPLICIT LEO POSTMA","EXPLICIT + MURD SCHEME N","EXPLICIT + MURD SCHEME PSI","N-SCHEME FOR TIDAL FLATS","N-SCHEME FOR TIDAL FLATS","ERIA SCHEME"], defaut = "CHARACTERISTICS", fr = """Choix du schema de convection pour les vitesses, -remplace FORME DE LA CONVECTION""", +remplace \telkey{FORME DE LA CONVECTION}.""", ang = """Choice of the advection scheme for the velocities, -replaces TYPE OF ADVECTION""", +replaces \telkey{TYPE OF ADVECTION}.""", ), ), # ----------------------------------- @@ -2456,30 +2951,46 @@ replaces TYPE OF ADVECTION""", typ = 'TXM', max='**', into = ["CHARACTERISTICS","SUPG","CONSERVATIVE N-SCHEME LP","CONSERVATIVE N-SCHEME","CONSERVATIVE PSI-SCHEME","EDGE-BASED N-SCHEME LP","EDGE-BASED N-SCHEME","ERIA SCHEME"], defaut = ["CHARACTERISTICS","CONSERVATIVE PSI-SCHEME","CHARACTERISTICS","CHARACTERISTICS"], - 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 -13 : Schema N par segment -14 : Schema N par segment -15 : Schema ERIA -Second integer must be 5""", - ang = """Choice of advection schemes for every variable + fr = """Choix du schema de convection pour chaque variable. +Ces coefficients sont respectivement appliques a\\ +\begin{itemize} +\item 1) $U$ et $V$ ; +\item 2) $H$ ; +\item 3) $T$ ; +\item 4) $k$ et $\epsilon$. +\end{itemize} +Les choix possibles sont : +\begin{itemize} +\item 1 : caracteristiques sur $h$ ; +\item 2 : SUPG ; +\item 3 : Schema N conservatif ; +\item 4 : Schema N conservatif ; +\item 5 : Schema PSI conservatif ; +\item 13 : Schema N par segment ; +\item 14 : Schema N par segment ; +\item 15 : Schema ERIA. +\end{itemize} +Le 2e entier doit etre 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 -13 : Edge-based N-scheme -14 : Edge-based N-scheme -15 : ERIA scheme -Second integer must be 5""", +\begin{itemize} +\item 1) $U$ and $V$, +\item 2) $H$, +\item 3) $T$, +\item 4) $k$ and $\epsilon$. +\end{itemize} +Possible choices are: +\begin{itemize} +\item 1: characteristics, +\item 2: SUPG, +\item 3: Conservative N-scheme, +\item 4: Conservative N-scheme, +\item 5: Conservative PSI-scheme, +\item 13: Edge-based N-scheme, +\item 14: Edge-based N-scheme, +\item 15: ERIA scheme. +\end{itemize} +The second integer must be 5.""", ), # ----------------------------------- b_TYPE_OF_ADVECTIONG = BLOC(condition="TYPE_OF_ADVECTION != None", @@ -2495,36 +3006,113 @@ Second integer must be 5""", typ = 'TXM', into = ["strong","weak"], defaut = "strong", - fr = """1: forme forte 2: forme faible""", - ang = """1: strong form 2: weak form""", + fr = """Les choix possibles sont : +\begin{itemize} +\item 1 : forme forte ; +\item 2 : forme faible. +\end{itemize} +Si une des composantes du tableau \telkey{FORME DE LA CONVECTION} = 1 +ou \telkey{SCHEMA POUR LA CONVECTION...} = 1, +ainsi que le mot-cle correspondant +\telkey{OPTION DU SCHEMA POUR LA CONVECTION...} = 2, +\telkey{OPTION POUR LES CARACTERISTIQUES} est automatiquement mis a 2.""", + ang = """Possible choices are: +\begin{itemize} +\item 1: strong form, +\item 2: weak form. +\end{itemize} +If one component of array \telkey{TYPE OF ADVECTION} = 1 or +\telkey{SCHEME FOR ADVECTION OF...} = 1, +and also the corresponding keyword +\telkey{SCHEME OPTION FOR ADVECTION OF...} = 2, +\telkey{OPTION FOR CHARACTERISTICS} is automatically set to 2.""", ), # ----------------------------------- SUPG_OPTION = SIMP(statut ='o', # ----------------------------------- typ = 'I', min=0, max='**', defaut = [2,2,2,2], - fr = """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""", - ang = """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""", + fr = """Les choix possibles sont : +\begin{itemize} +\item 0:pas de decentrement SUPG ; +\item 1:SUPG classique ; +\item 2:SUPG modifiee. +\end{itemize} +Ces coefficients sont respectivement appliques a : +\begin{itemize} +\item 1) $U$ et $V$ ; +\item 2) $H$ ; +\item 3) $T$ ; +\item 4) $k$ et $\epsilon$. +\end{itemize} +En cas d utilisation d un schema distributif (3, 4, 5, 13, 14 ou 15), +le coefficient applique a $H$ est automatiquement mis a 0. +De plus, si \telkey{TRAITEMENT DES HAUTEURS NEGATIVES} = 2 ou 3 +avec \telkey{OPTION DE TRAITEMENT DES BANCS DECOUVRANTS} = 1, +il est obligatoire de choisir 0 pour la 2e composante du mot-cle +\telkey{OPTION DE SUPG} (hauteur d eau).""", + ang = """Possible choices are: +\begin{itemize} +\item 0: no upwinding, +\item 1: classical SUPG, +\item 2: modified SUPG. +\end{itemize} +These coefficients are applied respectively to: +\begin{itemize} +\item 1) $U$ and $V$, +\item 2) $H$, +\item 3) $T$, +\item 4) $k$ and $\epsilon$. +\end{itemize} +If using a distributive scheme (3, 4, 5, 13, 14, 15), +the coefficient applied to $H$ is automatically set to 0. +Moreover, if using \telkey{TREATMENT OF NEGATIVE DEPTHS} = 2 or 3 +with \telkey{OPTION FOR THE TREATMENT OF TIDAL FLATS} = 1, +it is mandatory to choose 0 for the 2nd component of +\telkey{SUPG OPTION} (water depth).""", ), # ----------------------------------- NUMBER_OF_GAUSS_POINTS_FOR_WEAK_CHARACTERISTICS = SIMP(statut ='f', # ----------------------------------- typ = 'I', defaut = 3, - fr = """Voir les release notes 6.3""", - ang = """See release notes 6.3""", + fr = """Voir les release notes 6.3. +Nombre de points de Gauss utilises pour le calcul des caracteristiques +faibles. +Les choix possibles sont : +\begin{itemize} +\item 1 point ; +\item 3 points ; +\item 4 points ; +\item 6 points ; +\item 7 points ; +\item 12 points. +\end{itemize} +Plus le nombre est grand, plus le schema sera conservatif, +mais plus les couts de calculs seront eleves.""", + ang = """See release notes 6.3. +Number of Gauss points used to compute the weak characteristics. +Possible choices are: +\begin{itemize} +\item 1 point, +\item 3 points, +\item 4 points, +\item 6 points, +\item 7 points, +\item 12 points. +\end{itemize} +The bigger the number is, the more conservative the scheme is, +but the higher the computational costs are.""", ), # ----------------------------------- 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""", + fr = """Fixe le taux de mass-lumping qui est applique a la matrice de +masse lors de l''utilisation des caracteristiques faibles.""", + ang = """Sets the amount of mass-lumping that is applied to the mass +matrix when using weak characteristics.""", ), # ----------------------------------- b_MAXIMUM_NUMBER_OF_ITERATIONS_FOR_ADVECTION_SCHEMESF = BLOC(condition="(ADVECTION_OF_TRACERS == True and SCHEME_FOR_ADVECTION_OF_TRACERS == 'EDGE-BASED N-SCHEME') or (ADVECTION_OF_K_AND_EPSILON == True and SCHEME_FOR_ADVECTION_OF_K_EPSILON == 'EDGE-BASED N-SCHEME') or (ADVECTION_OF_U_AND_V == True and SCHEME_FOR_ADVECTION_OF_VELOCITIES == 'EDGE-BASED N-SCHEME')", @@ -2534,58 +3122,49 @@ These coefficients are applied respectively to 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""", - ), -# ----------------------------------- - UPWIND_COEFFICIENTS = SIMP(statut ='o', -# ----------------------------------- - typ = 'R', min= 4, max= 4, - defaut = [1.,1.,1.,1], - 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""", + defaut = 50, + fr = """Limite le nombre d''iterations pour les schemas de convection, +seulement pour schemes 13, 14 et 15. +Ancienne valeur par defaut = 10 jusqu en version 8.1.""", + ang = """Limits the number of solver iterations for the advection +schemes, only for schemes 13, 14 and 15. +Old default value = 10 until release 8.1.""", ), # ----------------------------------- 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. + fr = """\telemac{2d} offre la possibilite d''effectuer du mass-lumping +sur $H$ ou sur la vitesse. 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.""", - ang = """TELEMAC provides an opportunity to carry out mass-lumping -either on C,H or on the velocity. +Ce parametre fixe le taux de mass-lumping effectue sur $H$.""", + ang = """\telemac{2d} provides an opportunity to carry out mass-lumping +either on $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.""", +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.""", + fr = """Fixe le taux de mass-lumping effectue sur la vitesse. +Le mot-cle \telkey{TRAITEMENT DU SYSTEME LINEAIRE} change la valeur +utilisee a 1.""", + ang = """Sets the amount of mass-lumping that is performed on the velocity. +The keyword \telkey{TREATMENT OF THE LINEAR SYSTEM} changes the +used value to 1.""", ), # ----------------------------------- SCHEME_OPTION_FOR_ADVECTION_OF_VELOCITIES = SIMP(statut ='f', @@ -2593,25 +3172,44 @@ This parameter sets the extent of mass-lumping that is performed on h.""", typ = 'I', defaut = 1, fr = """Si present remplace et a priorite sur : -OPTION POUR LES CARACTERISTIQUES -OPTION DE SUPG -Si schema PSI ou N : 1=explicite 2=predicteur-correcteur -3=predicteur-correcteur deuxieme ordre en temps -4=implicite""", +\telkey{OPTION POUR LES CARACTERISTIQUES} +\telkey{OPTION DE SUPG}. +Si caracteristiques : +\begin{itemize} +\item 1 = forme forte, +\item 2 = forme faible. +\end{itemize} +Si schema PSI ou N : +\begin{itemize} +\item 1 = explicite ; +\item 2 = predicteur-correcteur ; +\item 3 = predicteur-correcteur 2e ordre en temps ; +\item 4 = implicite. +\end{itemize}""", ang = """If present replaces and has priority over: -OPTION FOR CHARACTERISTICS -SUPG OPTION -if N or PSI SCHEME: 1=explicit 2=predictor-corrector -3= predictor-corrector second-order in time 4= implicit""", +\telkey{OPTION FOR CHARACTERISTICS} +\telkey{SUPG OPTION}. +If characteristics: +\begin{itemize} +\item 1 = strong form, +\item 2 = weak form. +\end{itemize} +If N or PSI scheme: +\begin{itemize} +\item 1 = explicit, +\item 2 = predictor-corrector, +\item 3 = predictor-corrector second-order in time, +\item 4 = implicit. +\end{itemize}""", ), # ----------------------------------- 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""", + fr = """Des valeurs comprises entre 0 et 1 peuvent supprimer les +oscillations parasites.""", + ang = """Values between 0 and 1 may suppress spurious oscillations.""", ), # ----------------------------------- NUMBER_OF_SUB_ITERATIONS_FOR_NON_LINEARITIES = SIMP(statut ='o', @@ -2642,38 +3240,61 @@ The non-linearities can be taken into account through this technique.""", # ----------------------------------- typ = 'TXM', min=0, max='**', into = ["Priority to prescribed values","Priority to fluxes"], - defaut = ["Priority to prescribed values","Priority to prescribed values"], + defaut = ["Priority to prescribed values"], fr = """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""", +correct. Une seule meme valeur pour toutes les frontieres liquides.""", ang = """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""", +Dirichlet prescribed values are not obeyed, but the fluxes are correct. +One single and same value for every liquid boundary.""", ), # ----------------------------------- NUMBER_OF_CORRECTIONS_OF_DISTRIBUTIVE_SCHEMES = SIMP(statut ='f', # ----------------------------------- typ = 'I', defaut = [1], - fr = """Pour les options avec predicteur-correcteur""", - ang = """For predictor-corrector options""", + fr = """Pour les options avec predicteur-correcteur et schema de convection +de type (3, 4, 5, LIPS ou pas et ERIA). +Nombre d iterations pour tous les pas de temps (ou sous pas) pour +converger vers la solution. +Il est utile pour les cas non stationnaires. +Pour les ecoulements quasi-stationnaires, ce mot-cle n a pas d impact +sur la solution, il peut donc etre fixe a 0. +D un autre cote, pour les ecoulements instationnaires, il est suggere +de fixer ce mot-cle a 2 (au moins), ce qui est un bon compromis +entre precision et temps CPU. +En effet, en augmentant le nombre de corrections, le schema est plus +precis mais le temps CPU augmente rapidement.""", + ang = """For predictor-corrector options with advection scheme of type +3, 4, 5, LIPS or not, and ERIA). +Number of iterations for every time step (or sub-time step) to converge +to the solution. +It is useful for unsteady cases. +For quasi-steady flows, this keyword does not have a large impact +on the solution, so it can be set to 0. +On the other hand, for unsteady flows, it is suggested to set this +keyword to 2 (at least), which is a good compromise between accuracy +and computational time. Indeed, increasing the number of corrections +the scheme is more accurate but the CPU time rapidly increases.""", ), # ----------------------------------- NUMBER_OF_SUB_STEPS_OF_DISTRIBUTIVE_SCHEMES = SIMP(statut ='f', # ----------------------------------- typ = 'I', defaut = 1, - fr = """ Pour les options predicteur-correcteur avec schema localement -implicite""", - ang = """ Only for implicit scheme with predictor-corrector""", - ), -# ----------------------------------- - PSI_SCHEME_OPTION = SIMP(statut ='f', -# ----------------------------------- - typ = 'TXM', - into = ["explicit","predictor-corrector"], - defaut = "explicit", - fr = """ 1: explicite 2: predicteur-correcteur""", - ang = """ 1: explicit 2: predictor-corrector""", + fr = """Pour les options predicteur-correcteur avec schema localement +implicite (3, 4 or 5). +Ce mot-cle permet de diviser le pas de temps donne par l utilisateur +dans le \telkey{FICHIER DES PARAMETRES} en plusieurs sous-pas. +A nouveau, il produit un effet sur la precision du schema et +il est pratique d ajuster ce mot-cle afin d avoir des nombres de +Courant pas trop grands (autour de 1).""", + ang = """Only for implicit scheme with predictor-corrector (3, 4 or 5). +This keyword allows to subdivide the time step given by the user in the +\telkey{STEERING FILE}, into several sub-steps. +Again, it produces an effect on the precision of the scheme and +it is convenient to set this keyword in order to have Courant numbers +not too large (around 1).""", ), ), # ----------------------------------- @@ -2698,9 +3319,9 @@ des vitesses.""", typ = 'R', defaut = 1., fr = """Fixe la valeur du coefficient d''implicitation sur les termes de -diffusion des vitesses""", +diffusion des vitesses.""", ang = """Sets the value of the implicitation coefficient for the diffusion of -velocity""", +velocity.""", ), # ----------------------------------- OPTION_FOR_THE_DIFFUSION_OF_VELOCITIES = SIMP(statut ='o', @@ -2708,10 +3329,16 @@ velocity""", typ = 'TXM', into = ["div( nu grad(U) )","1/h div ( h nu grad(U)"], defaut = "div( 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) )""", + fr = """Les choix possibles sont : +\begin{itemize} +\item 1: Diffusion de la forme div( $\nu$ grad($U$) ) ; +\item 2: Diffusion de la forme 1/$h$ div ( $h$ $\nu$ grad($U$) ). +\end{itemize}""", + ang = """Possible choices are: +\begin{itemize} +\item 1: Diffusion in the form div( $\nu$ grad($U$) ), +\item 2: Diffusion in the form 1/$h$ div ( $h$ $\nu$ grad($U$) ). +\end{itemize}""", ), ), ), @@ -2763,105 +3390,298 @@ pour l AD.""", ang = """Iterative linear solvers: derivative convergence test for AD.""", ), ), +) +# ----------------------------------------------------------------------- +GENERAL_PARAMETERS = PROC(nom= "GENERAL_PARAMETERS",op = None, +# ----------------------------------------------------------------------- # ----------------------------------- - ADVANCED = FACT(statut='o', + DEBUGGER = SIMP(statut ='o', +# ----------------------------------- + typ = 'I', + defaut = 0, + fr = """Pour imprimer la sequence des appels, mettre 1.""", + ang = """If 1, calls of subroutines will be printed in the listing.""", + ), +# ----------------------------------- + TIME = FACT(statut='o', # ----------------------------------- # ----------------------------------- - MATRIX_STORAGE = SIMP(statut ='o', + TIME_STEP = SIMP(statut ='o', # ----------------------------------- - typ = 'TXM', - into = ["classical EBE","Edge-based storage"], - defaut = "Edge-based storage", - fr = """1 : EBE classique 3 : Stockage par segments""", - ang = """1 : classical EBE 3 : Edge-based storage""", + typ = 'R', + defaut = 1., + fr = """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.""", + ang = """Specifies the time step in seconds.""", ), # ----------------------------------- - MATRIX_VECTOR_PRODUCT = SIMP(statut ='o', + NUMBER_OF_TIME_STEPS = SIMP(statut ='f', # ----------------------------------- typ = 'I', defaut = 1, - fr = """1 : classique 2 : frontal -attention, avec 2, il faut une numerotation speciale des points""", - ang = """1 : classic 2 : frontal -beware, with option 2, a special numbering of points is required""", + 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.""", ), # ----------------------------------- - NEWMARK_TIME_INTEGRATION_COEFFICIENT = SIMP(statut ='o', + DURATION = SIMP(statut ='f', # ----------------------------------- typ = 'R', - defaut = 1., - fr = """1. : Euler explicite 0.5 : ordre 2 en temps""", - ang = """1. : Euler explicit 0.5 : order 2 in time""", + defaut = 0., + fr = """Duree de la simulation. Alternative au parametre +\telkey{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 \telkey{NOMBRE DE PAS DE TEMPS} est aussi donne, +on prend la plus grande valeur.""", + ang = """Sets the duration of simulation in seconds. +May be used instead of the parameter \telkey{NUMBER OF TIME STEPS}. +The nearest integer to (duration/time step) is taken. +If \telkey{NUMBER OF TIME STEPS} is also given, +the greater value is taken.""", ), # ----------------------------------- - ZERO = SIMP(statut ='f', + ORIGINAL_DATE_OF_TIME = SIMP(statut ='o', # ----------------------------------- - typ = 'R', - defaut = 1.E-10, - fr = """Non active pour l''instant.""", - ang = """Not yet implemented""", + typ = 'I', min= 3, max= 3, + defaut = [1900,1,1], + fr = """Permet de fixer la date d''origine des temps du modele lorsque +la maree est prise en compte (force generatrice de la maree et/ou les +conditions aux limites de maritimes). +Egalement utilise pour les flotteurs, +les echanges thermiques avec l atmosphere, le frazil, +le chainage avec DELWAQ.""", + ang = """Enables to set the date of the time origin of the model when +taking into account of the tide (tide generator force and/or the tidal +boundary conditions). +Also used with drogues, heat exchange with atmosphere, frazil, +chaining with DELWAQ.""", ), # ----------------------------------- - PROPAGATION_OPTION = SIMP(statut ='f', + ORIGINAL_HOUR_OF_TIME = SIMP(statut ='o', # ----------------------------------- - typ = 'I', - defaut = 3, - fr = """Non active pour l''instant.""", - ang = """Not yet implemented.""", + typ = 'I', min= 3, max= 3, + defaut = [0,0,0], + fr = """Permet de fixer l''heure d''origine des temps du modele lorsque +la maree est prise en compte (force generatrice de la maree et/ou les +conditions aux limites de maritimes. +Egalement utilise pour les flotteurs, +les echanges thermiques avec l atmosphere, le frazil, +le chainage avec DELWAQ.""", + ang = """Enables to set the time of the time origin of the model when +taking into account of the tide (tide generator force and/or the tidal +boundary conditions). +Also used with drogues, heat exchange with atmosphere, frazil, +chaining with DELWAQ.""", ), # ----------------------------------- - OPTION_OF_THE_HYDROSTATIC_RECONSTRUCTION = SIMP(statut ='f', + STOP_IF_A_STEADY_STATE_IS_REACHED = SIMP(statut ='o', # ----------------------------------- - typ = 'I', - defaut = 1, - fr = """donne l option de la reconstruction hydrostatique -(option utile uniquement pour les volumes finis): -1: option d Audusse, 2: option de Noelle""", - ang = """gives the option for hydrostatic reconstruction -(used only for finite volumes): -1: option of Audusse, 2: option of Noelle""", + typ = bool, + defaut = False, + fr = """A utiliser avec le mot-cle : \telkey{CRITERES D''ARRET}.""", + ang = """To be used with the keyword: \telkey{STOP CRITERIA}.""", ), # ----------------------------------- - CONVERGENCE_STUDY = SIMP(statut ='f', + b_STOP_IF_A_STEADY_STATE_IS_REACHEDG = BLOC(condition="STOP_IF_A_STEADY_STATE_IS_REACHED == True", +# ----------------------------------- +# ----------------------------------- + STOP_CRITERIA = SIMP(statut ='o', +# ----------------------------------- + typ = 'R', min= 3, max= 3, + defaut = [1.E-4,1.E-4,1.E-4], + fr = """Criteres d''arret pour un ecoulement permanent. +Ces coefficients sont respectivement appliques a: +\begin{itemize} +\item $U$ et $V$ ; +\item $H$ ; +\item Tracers. +\end{itemize} +A utiliser avec le mot-cle +\telkey{ARRET SI UN ETAT PERMANENT EST ATTEINT}.""", + ang = """Stop criteria for a steady state. +These coefficients are applied respectively to: +\begin{itemize} +\item $U$ and $V$, +\item $H$, +\item Tracers. +\end{itemize} +To be used with the keyword +\telkey{STOP IF A STEADY STATE IS REACHED}.""", + ), + ), +# ----------------------------------- + CONTROL_OF_LIMITS = SIMP(statut ='o', # ----------------------------------- typ = bool, defaut = False, - fr = """Active une etude de convergence par rapport a une -solution analytique sur un maillage fin""", - ang = """Activates a convergence study compared -to an analytical solution on a fine mesh""", + fr = """Utiliser avec le mot-cle : \telkey{VALEURS LIMITES}. +Le programme s''arrete si les limites sur +$U$, $V$, $H$ ou traceurs sont depassees.""", + ang = """Use with the key-word: \telkey{LIMIT VALUES}. +The program is stopped if +the limits on $U$, $V$, $H$ or tracers are trepassed.""", ), # ----------------------------------- - REFINEMENT_LEVELS = SIMP(statut ='f', + b_CONTROL_OF_LIMITSG = BLOC(condition="CONTROL_OF_LIMITS == True", # ----------------------------------- - typ = 'I', - defaut = 0, - fr = """Donne le nombre de raffinements que l''utilisateur -veut utiliser pour l''etude de convergence -(en activant CONVERGENCE). Chaque niveau multiplie par 4 le -nombre d''elements.""", - ang = """Gives the number of refinement levels that the -user wants to use in the convergence study (when activating -CONVERGENCE). Each level multiplies the number of elements by -4""", +# ----------------------------------- + LIMIT_VALUES = SIMP(statut ='o', +# ----------------------------------- + typ = 'R', min= 8, max= 8, + defaut = [-1000.,9000.,-1000.,1000.,-1000.,1000.,-1000.,1000.], + fr = """Utilise avec le mot-cle \telkey{CONTROLE DES LIMITES}. +Valeurs minimales et maximales acceptables pour +$H$, $U$ ,$V$ et traceurs dans l''ordre 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 \telkey{CONTROL OF LIMITS}. +Min and max acceptable values for +$H$, $U$, $V$ and tracers in the following order: +min(H) max(H) min(U) max(U) min(V) max(V) min(T) max(T).""", + ), + ), +# ----------------------------------- + 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_VARIABLE_TIME_STEPG = BLOC(condition="VARIABLE_TIME_STEP == True", +# ----------------------------------- +# ----------------------------------- + DESIRED_COURANT_NUMBER = SIMP(statut ='o', +# ----------------------------------- + typ = 'R', + defaut = 1., + fr = """Nombre de Courant souhaite en cas de pas de temps variable.""", + ang = """Desired Courant number when \telkey{VARIABLE TIME-STEP} is set to YES.""", + ), + ), + ), +# ----------------------------------- + LOCATION = FACT(statut='o', +# ----------------------------------- +# ----------------------------------- + SPHERICAL_COORDINATES = SIMP(statut ='o', +# ----------------------------------- + typ = bool, + defaut = False, + fr = """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 +\telkey{LATITUDE DU POINT ORIGINE} +qui correspond dans le maillage a l''ordonnee $y$ = 0.""", + ang = """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 \telkey{LATITUDE OF ORIGIN POINT}, which corresponds to +ordinate $y$ = 0 in the mesh, must moreover be given.""", + ), +# ----------------------------------- + LATITUDE_OF_ORIGIN_POINT = SIMP(statut ='o', +# ----------------------------------- + typ = 'R', + defaut = 48., + fr = """Determine l''origine utilisee pour le calcul de latitudes +lorsque l''on effectue un calcul en coordonnees spheriques. +Egalement utilise pour les echanges thermiques avec l atmosphere, +le modele d Okada pour les tsunamis, le frazil.""", + ang = """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. +Also used for heat exchange with atmosphere, Okada model for tsunamis, +frazil.""", + ), +# ----------------------------------- + LONGITUDE_OF_ORIGIN_POINT = SIMP(statut ='o', +# ----------------------------------- + typ = 'R', + defaut = 0., + fr = """Fixe la valeur de la longitude du point origine du modele, +lors de l''utilisation de la force generatrice de la maree. +Pour la projection de Mercator, voir le mot cle +\telkey{SYSTEME GEOGRAPHIQUE}. +Egalement utilise pour la force generatrice de la maree, +les echanges thermiques avec l atmosphere, +le modele d Okada pour les tsunamis.""", + ang = """Give the value of the longitude of the origin point +of the model, when taking into account of the tide generator force. +For the Mercator projection, see the keyword +\telkey{GEOGRAPHIC SYSTEM}. +Also used for tide generating force, heat exchange with atmosphere, +Okada model for tsunamis.""", + ), +# ----------------------------------- + NORTH = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = 0., + fr = """Angle que fait le nord en degres, par rapport a l''axe des $y$ +dans le sens trigonometrique. Notation decimale 10.5 signifie 10 degres +et 30 minutes. +Lu mais non utilise.""", + ang = """Angle of the North with the $y$ axis, counted counter-clockwise, +in degrees. 10.5 means 10 degrees and 30 minutes. Read but not used.""", + ), +# ----------------------------------- + SPATIAL_PROJECTION_TYPE = SIMP(statut ='o', +# ----------------------------------- + typ = 'TXM', + into = ["CARTESIAN, NOT GEOREFERENCED","MERCATOR","LATITUDE LONGITUDE"], + defaut = "CARTESIAN, NOT GEOREFERENCED", + fr = """Permet de specifier le type de projection spatiale utilisee dans +le cas de l''utilisation des coordonnees spheriques par exemple. +Les choix possibles sont : +\begin{itemize} +\item 1 : Lambert Cartesien non georeference ; +\item 2 : Mercator ; +\item 3 : Latitude/longitude (exprimees en degres). +\end{itemize} +Option 2 ou 3 obligatoire pour les coordonnees spheriques. +Option 3 : latitude et longitude en degres ! +Dans le cas de l''option 3, \telemac{2d} convertit les informations +latitude/longitude a l''aide de la projection de Mercator.""", + ang = """Specifies the type of spatial projection used +(for example when using spherical coordinates). +Possible choices are: +\begin{itemize} +\item 1: Cartesian, not georeferenced, +\item 2: Mercator, +\item 3: latitude/longitude (in degrees). +\end{itemize} +Option 2 or 3 mandatory for spherical coordinates. Option 3: latitude +and longitude in degrees! When using option 3, the coordinates are +automatically +treated by \telemac{2d} using Mercator projection.""", ), ), ) # ----------------------------------------------------------------------- TURBULENCE = PROC(nom= "TURBULENCE",op = None, # ----------------------------------------------------------------------- - UIinfo = {"groupes": ("CACHE")}, # ----------------------------------- VELOCITY_DIFFUSIVITY = SIMP(statut ='o', # ----------------------------------- typ = 'R', defaut = 1.E-6, - fr = """Fixe de facon uniforme pour l''ensemble du domaine; + fr = """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.""", ang = """Sets, in an even way for the whole domain, the value of the -coefficient of global (dynamic+turbulent) viscosity. this value may +coefficient of global (dynamic+turbulent) viscosity. This value may have a significant effect both on the shapes and sizes of recirculation zones.""", ), @@ -2871,23 +3691,37 @@ recirculation zones.""", typ = 'TXM', into = ["CONSTANT VISCOSITY","ELDER","K-EPSILON MODEL","SMAGORINSKI","MIXING LENGTH","SPALART-ALLMARAS"], defaut = "CONSTANT VISCOSITY", - fr = """3 choix sont possibles actuellement : viscosite constante (1) -modele de Elder (2) ou modele k-epsilon (3). + fr = """6 choix sont possibles actuellement : +\begin{itemize} +\item 1 : viscosite constante ; +\item 2 : modele de Elder ; +\item 3 : modele $k$-$\epsilon$ ; +\item 4 : modele de Smagorinski ; +\item 5 : modele de longueur de melange ; +\item 6 : modele de Spalart-Allmaras. +\end{itemize} 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 la valeur du mot-cle +\telkey{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; +\telkey{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""", - ang = """The current alternatives are as follows: constant viscosity (1) -elder''s model (2) or k-epsilon model (3). +utilisee comme telle dans le modele de turbulence.""", + ang = """The current alternatives are as follows: +\begin{itemize} +\item 1: constant viscosity, +\item 2: elder''s model, +\item 3: $k$-$\epsilon$ model, +\item 4: Smagorinski model, +\item 5: mixing length model, +\item 6: Spalart-Allmaras model. +\end{itemize} 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 +value of the keyword \telkey{VELOCITY DIFFUSIVITY} has to be ajusted. +When option 2 is chosen, the two values of keyword +\telkey{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.""", ), @@ -2903,10 +3737,10 @@ physical value, since it is used as such in the turbulence model.""", # ----------------------------------- typ = 'R', min= 2, max= 2, defaut = [6.,0.6], - fr = """Coefficients longitudinal et transversal dans la formule de -Elder. Utilises uniquement avec le modele de turbulence 2""", - ang = """Longitudinal and transversal coefficients in elder s formula. - Used only with turbulence model number 2""", + fr = """Coefficients longitudinal et transversal dans la formule de Elder. +Utilises uniquement avec \telkey{MODELE DE TURBULENCE} = 2.""", + ang = """Longitudinal and transversal coefficients in Elder s formula. +Used only with \telkey{TURBULENCE MODEL} = 2.""", ), ), # ----------------------------------- @@ -2914,79 +3748,21 @@ Elder. Utilises uniquement avec le modele de turbulence 2""", # ----------------------------------- typ = 'R', defaut = 1.E-9, - fr = """Fixe la precision demandee sur le modele spalart-allmaras pour -le test d''arret dans l''etape de diffusion et termes sources de k et -epsilon.""", - ang = """Sets the required accuracy for the model spalart-allmaras in -the diffusion and source-terms step of the k-epsilon model.""", + fr = """Fixe la precision demandee sur le modele de Spalart-Allmaras pour +le test d''arret dans l''etape de diffusion et termes sources de +$\tilde{\nu}$.""", + ang = """Sets the required accuracy for the Spalart-Allmaras model in +the diffusion and source terms step of the $\tilde{\nu}$.""", ), # ----------------------------------- INFORMATION_ABOUT_SPALART_ALLMARAS_MODEL = SIMP(statut ='f', # ----------------------------------- typ = bool, defaut = True, - fr = """si oui les informations du solveur du modele spalart-allmaras -sont imprimees""", - ang = """if yes, informations about solver of spalart-allmaras model -are printed to the listing""", - ), -# ----------------------------------- - SOLVER_INFO = FACT(statut='o', -# ----------------------------------- -# ----------------------------------- - SOLVER_FOR_K_EPSILON_MODEL = SIMP(statut ='o', -# ----------------------------------- - typ = 'TXM', - into = ["conjugate gradient","conjugate residuals","conjugate gradient on normal equation","minimum error","conjugate gradient squared","conjugate gradient squared stabilised (cgstab)","gmres (see option for the solver for k-epsilon model)","direct"], - defaut = "conjugate gradient", - fr = """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""", - ang = """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""", - ), -# ----------------------------------- - OPTION_FOR_THE_SOLVER_FOR_K_EPSILON_MODEL = SIMP(statut ='o', -# ----------------------------------- - typ = 'I', - defaut = 2, - fr = """si le solveur est GMRES (7) le mot cle est la dimension de -l''espace 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_K_EPSILON_MODEL = SIMP(statut ='o', -# ----------------------------------- - typ = 'TXM', - into = ["diagonal","no preconditioning","crout","diagonal and crout"], - defaut = "diagonal", - fr = """Permet de preconditionner le systeme relatif au -modele k-epsilon -0 : pas de preconditionnement; -2 : preconditionnement diagonal. -7 : preconditionnement de Crout par element.""", - ang = """Preconditioning of the linear system in the diffusion step of -the k-epsilon model. -0: no preconditioning -2: diagonal preconditioning -7: Crout''s preconditioning per element""", - ), + fr = """Si oui, les informations du solveur du modele de Spalart-Allmaras +sont imprimees.""", + ang = """If yes, informations about solver of Spalart-Allmaras model +are printed to the listing.""", ), # ----------------------------------- ADVANCED = FACT(statut='o', @@ -2997,10 +3773,18 @@ the k-epsilon model. typ = 'TXM', into = ["smooth","rough"], defaut = "rough", - fr = """ Permet de choisir le regime de turbulence aux parois 1 : regime -turbulent lisse. 2 : regime turbulent rugueux.""", - ang = """ Provided for selecting the type of friction on the walls 1: smooth 2: -rough""", + fr = """ Permet de choisir le regime de turbulence aux parois. +Les choix possibles sont : +\begin{itemize} +\item 1 : regime turbulent lisse ; +\item 2 : regime turbulent rugueux. +\end{itemize}""", + ang = """ Provided for selecting the type of friction on the walls. +Possible choices are: +\begin{itemize} +\item 1: smooth, +\item 2: rough. +\end{itemize}""", ), # ----------------------------------- INFORMATION_ABOUT_K_EPSILON_MODEL = SIMP(statut ='o', @@ -3008,17 +3792,21 @@ rough""", typ = bool, defaut = True, fr = """Donne le nombre d''iterations du solveur de l''etape de -diffusion et termes sources du modele k-epsilon.""", +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.""", +and source terms step of the $k-\epsilon$ model.""", ), # ----------------------------------- ADVECTION_OF_K_AND_EPSILON = SIMP(statut ='o', # ----------------------------------- typ = bool, defaut = True, - fr = """Prise en compte ou non de la convection de k et epsilon.""", - ang = """The k and epsilon advection is taken into account or ignored.""", + fr = """Prise en compte ou non de la convection de $k$ et $\epsilon$ +(pour modele $k-\epsilon$) ou $\tilde{\nu}$ +(pour modele de Spalart-Allmaras).""", + ang = """The $k$ and $\epsilon$ advection is taken into account or ignored +(for $k-\epsilon$ model) or $\tilde{\nu}$ advection +(for Spalart-Allmaras model).""", ), # ----------------------------------- b_ADVECTION_OF_K_AND_EPSILONG = BLOC(condition="ADVECTION_OF_K_AND_EPSILON == True", @@ -3029,10 +3817,12 @@ and source terms step of the k-epsilon model.""", typ = 'TXM', 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","ERIA SCHEME FOR TIDAL FLATS"], defaut = "CHARACTERISTICS", - 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""", + fr = """Choix du schema de convection pour $k$ et $\epsilon$ (pour modele +$k-\epsilon$) ou $\tilde{\nu}$ (pour modele de Spalart-Allmaras), +remplace \telkey{FORME DE LA CONVECTION}.""", + ang = """Choice of the advection scheme for $k$ and $\epsilon$ (for +$k-\epsilon$ model) or $\tilde{\nu}$ (for Spalart-Allmaras model), +replaces \telkey{TYPE OF ADVECTION}.""", ), ), # ----------------------------------- @@ -3041,28 +3831,143 @@ replaces TYPE OF ADVECTION""", typ = 'I', defaut = 1, fr = """Si present remplace et a priorite sur : -OPTION POUR LES CARACTERISTIQUES -OPTION DE SUPG -Si schema PSI ou N : 1=explicite 2=predicteur-correcteur -3=predicteur-correcteur deuxieme ordre en temps -4=implicite""", +\telkey{OPTION POUR LES CARACTERISTIQUES} +\telkey{OPTION DE SUPG}. +Si caracteristiques : +\begin{itemize} +\item 1 = forme forte, +\item 2 = forme faible. +\end{itemize} +Si schema PSI ou N : +\begin{itemize} +\item 1 = explicite ; +\item 2 = predicteur-correcteur ; +\item 3 = predicteur-correcteur 2e ordre en temps ; +\item 4 = implicite. +\end{itemize} +Mot-cle commun pour les variables $k$, $\epsilon$ +(pour modele $k-\epsilon$) +et $\tilde{\nu}$ (pour modele de Spalart-Allmaras).""", ang = """If present replaces and has priority over: -OPTION FOR CHARACTERISTICS -SUPG OPTION -if N or PSI SCHEME: 1=explicit 2=predictor-corrector -3= predictor-corrector second-order in time 4= implicit""", +\telkey{OPTION FOR CHARACTERISTICS} +\telkey{SUPG OPTION}. +If characteristics: +\begin{itemize} +\item 1 = strong form, +\item 2 = weak form. +\end{itemize} +If N or PSI scheme: +\begin{itemize} +\item 1 = explicit, +\item 2 = predictor-corrector, +\item 3 = predictor-corrector second-order in time, +\item 4 = implicit. +\end{itemize} +Common keyword for variables $k$, $\epsilon$ (for $k-\epsilon$ model) +and $\tilde{\nu}$ (for Spalart-Allmaras model).""", ), # ----------------------------------- - TIME_STEP_REDUCTION_FOR_K_EPSILON_MODEL = SIMP(statut ='f', + MIXING_LENGTH_MODEL_COEFFICIENTS = SIMP(statut ='f', # ----------------------------------- - typ = 'R', - defaut = 1., - fr = """Coefficient reducteur du pas de temps pour le modele k-epsilon (qui -est normalement identique a celui du systeme hydrodynamique). -Utilisation deconseillee""", - ang = """Time step reduction coefficient for k-epsilon model (which is normally -same the same as that of the hydrodynamic system) Not recommended for -use.""", + typ = 'R', min= 2, max= 2, + defaut = [0.1066667,0.0666667], + fr = """Coefficients de calage $C_l$ et $\alpha_t$ dans la formule de longueur +de melange. +Utilises uniquement avec \telkey{MODELE DE TURBULENCE} = 5.""", + ang = """Calibration coefficients $C_l$ and $\alpha_t$ in mixing length formula. +Only used with \telkey{TURBULENCE MODEL} = 5.""", + ), + ), +# ----------------------------------- + SOLVER_INFO = FACT(statut='o', +# ----------------------------------- +# ----------------------------------- + SOLVER_FOR_K_EPSILON_MODEL = SIMP(statut ='o', +# ----------------------------------- + typ = 'TXM', + into = ["conjugate gradient","conjugate residual","conjugate gradient on normal equation","minimum error","squared conjugate gradient","conjugate gradient squared stabilised (cgstab)","gmres (see option for the solver for k-epsilon model)","direct"], + defaut = "conjugate gradient", + fr = """Permet de choisir le solveur utilise pour la resolution +du systeme de diffusion de $k$, $\epsilon$ (pour modele $k-\epsilon$) +ou $\tilde{\nu}$ (pour modele de Spalart-Allmaras). +Les choix possibles sont : +\begin{itemize} +\item 1 : gradient conjugue, +\item 2 : residu conjugue, +\item 3 : gradient conjugue sur equation normale, +\item 4 : erreur minimale, +\item 5 : gradient conjugue carre (non programme), +\item 6 : gradient conjugue carre stabilise (cgstab), +\item 7 : GMRES (voir aussi \telkey{OPTION DU SOLVEUR} +pour le modele $k$-$\epsilon$), +\item 8 : direct. +\end{itemize}""", + ang = """Makes it possible to select the solver used for solving +the system of the diffusion of $k$, $\epsilon$ (for $k-\epsilon$ model) +or $\tilde{\nu}$ (for Spalart-Allmaras model). +Possible choices are: +\begin{itemize} +\item 1: conjugate gradient, +\item 2: conjugate residual, +\item 3: conjugate gradient on a normal equation, +\item 4: minimum error, +\item 5: squared conjugate gradient (not implemented), +\item 6: conjugate gradient squared stabilised (cgstab), +\item 7: GMRES (see \telkey{OPTION FOR THE SOLVER FOR K-EPSILON MODEL}), +\item 8: direct. +\end{itemize}""", + ), +# ----------------------------------- + OPTION_FOR_THE_SOLVER_FOR_K_EPSILON_MODEL = SIMP(statut ='o', +# ----------------------------------- + typ = 'I', + defaut = 2, + fr = """Si le solveur est GMRES (7), le mot cle est la dimension de +l''espace de Krylov (valeurs conseillees entre 2 et 15). +Mot-cle commun pour les variables $k$, $\epsilon$ +(pour modele $k-\epsilon$) +et $\tilde{\nu}$ (pour modele de Spalart-Allmaras).""", + ang = """When GMRES (7) is chosen for solver, dimension of the Krylov space. +Try values between 2 and 15. +Common keyword for variables $k$, $\epsilon$ (for $k-\epsilon$ model) +and $\tilde{\nu}$ (for Spalart-Allmaras model).""", + ), +# ----------------------------------- + PRECONDITIONING_FOR_K_EPSILON_MODEL = SIMP(statut ='o', +# ----------------------------------- + typ = 'TXM', + into = ["diagonal","no preconditioning","Crout","diagonal and Crout"], + defaut = "diagonal", + fr = """Permet de preconditionner le systeme relatif a la diffusion de +$k$, $\epsilon$ (pour modele $k-\epsilon$) ou $\tilde{\nu}$ +(pour modele de Spalart-Allmaras) +afin d''accelerer la convergence lors de sa resolution. +\begin{itemize} +\item 0 : pas de preconditionnement ; +\item 2 : preconditionnement diagonal ; +\item 7 : preconditionnement de Crout par element ou segment +(ne marche pas en parallele). +\end{itemize} +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.""", + ang = """Choice of the preconditioning of the linear system in the diffusion +step of $k$, $\epsilon$ (for $k-\epsilon$ model) or $\tilde{\nu}$ +(for Spalart-Allmaras model) so that the convergence is speeded up +when it is being solved. +\begin{itemize} +\item 0: no preconditioning, +\item 2: diagonal preconditioning, +\item 7: Crout''s preconditioning per element or segment +(does not work in parallel). +\end{itemize} +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.""", ), ), # ----------------------------------- @@ -3073,30 +3978,32 @@ use.""", # ----------------------------------- typ = 'R', defaut = 1.E-9, - fr = """Fixe la precision demandee sur k pour le test d''arret dans -l''etape 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.""", + fr = """Fixe la precision demandee sur $k$ pour le test d''arret dans +l''etape de diffusion et termes sources de l equation sur $k$.""", + ang = """Sets the required accuracy for computing $k$ in the diffusion +and source terms step of the $k$ transport equation.""", ), # ----------------------------------- ACCURACY_OF_EPSILON = SIMP(statut ='o', # ----------------------------------- typ = 'R', defaut = 1.E-9, - fr = """Fixe la precision demandee sur epsilon pour le test d''arret -dans l''etape 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.""", + fr = """Fixe la precision demandee sur $\epsilon$ pour le test d''arret dans +l''etape de diffusion et termes sources de l equation sur $\epsilon$.""", + ang = """Sets the required accuracy for computing $\epsilon$ in the diffusion +and source terms step of the $\epsilon$ transport equation.""", ), # ----------------------------------- MAXIMUM_NUMBER_OF_ITERATIONS_FOR_K_AND_EPSILON = SIMP(statut ='o', # ----------------------------------- typ = 'I', defaut = 50, - fr = """Fixe le nombre maximum d''iterations accepte lors de la -resolution du systeme diffusion-termes sources du modele k-epsilon.""", + fr = """Fixe le nombre maximum d''iterations accepte lors de la resolution +du systeme diffusion-termes sources de $k$, $\epsilon$ (pour modele +$k-\epsilon$) ou $\tilde{\nu}$ (pour modele de Spalart-Allmaras).""", ang = """Sets the maximum number of iterations that are acceptable when -solving the diffusion source-terms step of the k-epsilon model.""", +solving the diffusion source-terms step of $k$, $\epsilon$ (for +$k-\epsilon$ model) or $\tilde{\nu}$ (for Spalart-Allmaras model).""", ), ), ) @@ -3108,13 +4015,12 @@ TIDAL_FLATS_INFO = PROC(nom= "TIDAL_FLATS_INFO",op = None, # ----------------------------------- typ = bool, defaut = True, - fr = """permet de supprimer les tests sur les bancs decouvrants, dans + fr = """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""", - ang = """When no, the specific -treatments for tidal flats are by-passed. +En cas de doute, utiliser 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""", +tidal flats.""", ), # ----------------------------------- b_TIDAL_FLATSG = BLOC(condition="TIDAL_FLATS == True", @@ -3125,15 +4031,25 @@ tidal flats""", typ = 'TXM', into = ["EQUATIONS SOLVED EVERYWHERE WITH CORRECTION ON TIDAL FLATS","DRY ELEMENTS FROZEN","LIKE 1 BUT WITH POROSITY (DEFINA METHOD)"], defaut = "EQUATIONS SOLVED EVERYWHERE WITH CORRECTION ON TIDAL FLATS", - fr = """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)""", - ang = """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)""", + fr = """Utilise si \telkey{BANCS DECOUVRANTS} est OUI. +Les choix possibles sont : +\begin{itemize} +\item 1 : equations resolues partout avec correction +sur les bancs decouvrants (correction du gradient de surface libre) ; +\item 2 : gel des elements decouvrants (zones de bancs decouvrants +sont masquees). +Attention : la conservation de la masse peut etre alteree ; +\item 3 : comme 1 mais avec porosite (methode defina). +\end{itemize}""", + ang = """Used if \telkey{TIDAL FLATS} is YES. +Possible choices are: +\begin{itemize} +\item 1: equations solved everywhere with correction on tidal flats +(corrected free surface gradient), +\item 2: dry elements are frozen (tidal flats area are masked). +Warning: mass-conservation may be altered, +\item 3: like 1 but with porosity (defina method). +\end{itemize}""", ), # ----------------------------------- b_OPTION_FOR_THE_TREATMENT_OF_TIDAL_FLATSG = BLOC(condition="OPTION_FOR_THE_TREATMENT_OF_TIDAL_FLATS == 'EQUATIONS SOLVED EVERYWHERE WITH CORRECTION ON TIDAL FLATS'", @@ -3142,18 +4058,34 @@ CORRECTION SUR LES BANCS DECOUVRANTS TREATMENT_OF_NEGATIVE_DEPTHS = SIMP(statut ='o', # ----------------------------------- typ = 'TXM', - into = ["SMOOTHING","FLUX CONTROL","FLUX CONTROL (ERIA)"], + into = ["NO TREATMENT","SMOOTHING","FLUX CONTROL","FLUX CONTROL (ERIA)"], defaut = "SMOOTHING", - fr = """Seulement avec OPTION DE TRAITEMENT DES BANCS DECOUVRANTS = 1 - 0 : pas de traitement - 1 : lissage - 2 : limitation des flux, approche par segment - 3 : limitation des flux, approche par triangle""", - ang = """Only with OPTION FOR THE TREATMENT OF TIDAL FLATS=1 - 0:no treatment - 1:smoothing - 2:flux control, by segment - 3:flux control, by element""", + fr = """Seulement avec +\telkey{OPTION DE TRAITEMENT DES BANCS DECOUVRANTS} = 1. +Les choix possibles sont : +\begin{itemize} +\item 0 : pas de traitement ; +\item 1 : lissage ; +\item 2 : limitation des flux, approche par segment ; +\item 3 : limitation des flux, approche par triangle. +\end{itemize} +Si les options 2 ou 3 avec bancs decouvrants sont utilisees, +il est obligatoire d avoir \telkey{MASS-LUMPING SUR H} = 1. ++ \telkey{CORRECTION DE CONTINUITE} = OUI ++ \telkey{OPTION DE SUPG} pour hauteur d eau = 0 +(pas de decentrement SUPG sur la hauteur d eau).""", + ang = """Only with +\telkey{OPTION FOR THE TREATMENT OF TIDAL FLATS} = 1. +Possible choices are: +\begin{itemize} +\item 0: no treatment, +\item 1: smoothing, +\item 2: flux control, by segment, +\item 3: flux control, by element. +\end{itemize} +If using options 2 or 3 with tidal flats, it is mandatory to set +\telkey{MASS-LUMPING ON H} = 1. + \telkey{CONTINUITY CORRECTION} = YES + +\telkey{SUPG OPTION} for water depth = 0 (no SUPG upwinding on depth).""", ), ), # ----------------------------------- @@ -3161,8 +4093,11 @@ CORRECTION SUR LES BANCS DECOUVRANTS # ----------------------------------- typ = 'R', defaut = 0., - fr = """En dessous du seuil, les hauteurs negatives sont lissees""", - ang = """Below the threshold the negative depths are smoothed""", + fr = """En dessous du seuil, les hauteurs negatives sont lissees. +Seulement utilise avec +\telkey{TRAITEMENT DES HAUTEURS NEGATIVES} = 1.""", + ang = """Below the threshold the negative depths are smoothed. +Only used with \telkey{TREATMENT OF NEGATIVE DEPTHS} = 1.""", ), # ----------------------------------- THRESHOLD_DEPTH_FOR_RECEDING_PROCEDURE = SIMP(statut ='o', @@ -3170,35 +4105,35 @@ CORRECTION SUR LES BANCS DECOUVRANTS 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""", +franchissement parasite des digues mal discretisees.""", + ang = """If > 0., will trigger the receeding procedure that avoids overwhelming +of dykes which are too loosely discretised.""", ), -# ----------------------------------- - H_CLIPPING = SIMP(statut ='o', -# ----------------------------------- - typ = bool, - defaut = False, - fr = """Determine si l''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) -This key-word may have an influence on mass conservation since + ), +# ----------------------------------- + H_CLIPPING = SIMP(statut ='o', +# ----------------------------------- + typ = bool, + defaut = False, + fr = """Determine si l''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). +This keyword may have an influence on mass conservation since the truncation of depth is equivalent to adding mass.""", - ), + ), +# ----------------------------------- + b_H_CLIPPINGG = BLOC(condition="H_CLIPPING == True", +# ----------------------------------- # ----------------------------------- - b_H_CLIPPINGG = BLOC(condition="H_CLIPPING == True", + MINIMUM_VALUE_OF_DEPTH = SIMP(statut ='o', # ----------------------------------- -# ----------------------------------- - MINIMUM_VALUE_OF_DEPTH = SIMP(statut ='o', -# ----------------------------------- - typ = 'R', - defaut = 0., - fr = """Fixe la valeur minimale de a lorsque l''option CLIPPING DE H est -activee.""", - ang = """Sets the minimum H value when option H CLIPPING is implemented. Not -fully implemented.""", - ), + typ = 'R', + defaut = 0., + fr = """Fixe la valeur minimale de $H$ lorsque l''option \telkey{CLIPPING DE H} +est activee.""", + ang = """Sets the minimum water depth $H$ value when option \telkey{H CLIPPING} +is implemented. Not fully implemented.""", ), ), ) @@ -3213,9 +4148,9 @@ TRACERS = PROC(nom= "TRACERS",op = None, # ----------------------------------- typ = 'R', max='**', fr = """Valeurs du traceur imposees aux frontieres liquides entrantes. -Lire la partie du mode d''emploi consacree aux conditions aux limites""", +Lire la partie du mode d''emploi consacree aux conditions aux limites.""", ang = """Tracer values prescribed at the inflow boundaries. -Read the usermanual section dealing with the boundary conditions""", +Read the user manual section dealing with the boundary conditions.""", ), ), # ----------------------------------- @@ -3230,29 +4165,37 @@ Read the usermanual section dealing with the boundary conditions""", ang = """Defines the number of tracers""", ), # ----------------------------------- - NAMES_OF_TRACERS = SIMP(statut ='o', + NAMES_OF_TRACERS = SIMP(statut ='f', # ----------------------------------- typ = 'TXM', min=0, max='**', - fr = """Noms des traceurs en 32 caracteres, 16 pour le nom 16 pour l''unite""", + fr = """Noms des traceurs en 32 caracteres, 16 pour le nom 16 pour l''unite.""", ang = """Name of tracers in 32 characters, 16 for the name, 16 for the unit.""", ), # ----------------------------------- - INITIAL_VALUES_OF_TRACERS = SIMP(statut ='o', + INITIAL_VALUES_OF_TRACERS = SIMP(statut ='f', # ----------------------------------- typ = 'R', min=0, max='**', defaut = [0.,0.], - fr = """Fixe la valeur initiale du traceur.""", - ang = """Sets the initial value of the tracer.""", + fr = """Fixe la valeur initiale du/des traceur(s). +Les valeurs requises sont separees par un point virgule ; si plus d une. +Le nombre de valeurs fournies doit etre egal au nombre de traceurs +declares.""", + ang = """Sets the initial value of the tracer(s). +Required value(s) separated with a semicolumn ; if more than one. +The number of supplied values must be equal to the number of declared +tracers.""", ), # ----------------------------------- 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""", + fr = """Prise en compte du gradient horizontal de densite. +Le premier traceur est alors la salinite. +$\rho_{\rm{eau}} = 999.972.(1-7.10^{-6}(T_{\rm{moy}}-4)^2)$.""", + ang = """The horizontal gradient of density is taken into account. +The 1st tracer is then the salinity. +$\rho_{\rm{water}} = 999.972.(1-7.10^{-6}(T_{\rm{mean}}-4)^2)$.""", ), # ----------------------------------- b_DENSITY_EFFECTSG = BLOC(condition="DENSITY_EFFECTS == True", @@ -3262,10 +4205,10 @@ Read the usermanual section dealing with the boundary conditions""", # ----------------------------------- typ = 'R', defaut = 20., - fr = """TEMPERATURE DE REFERENCE POUR LE CALCUL DES EFFETS DE DENSITE -A UTILISER AVEC LE MOT-CLE \telkey{EFFETS DE DENSITE}""", - ang = """REFERENCE TEMPERATURE FOR DENSITY EFFECTS -TO BE USED WITH THE KEY-WORD \telkey{DENSITY EFFECTS}""", + fr = """Temperature de reference pour le calcul des effets de densite. +A utiliser avec le mot-cle \telkey{EFFETS DE DENSITE}.""", + ang = """Reference temperature for density effects. +To be used with the keyword \telkey{DENSITY EFFECTS}.""", ), ), # ----------------------------------- @@ -3284,43 +4227,78 @@ TO BE USED WITH THE KEY-WORD \telkey{DENSITY EFFECTS}""", SOLVER_FOR_DIFFUSION_OF_TRACERS = SIMP(statut ='o', # ----------------------------------- typ = 'TXM', min=0, max='**', - into = ["conjugate gradient","conjugate residual","conjugate gradient on a normal equation","minimum error","squared conjugate gradient","cgstab","gmres (see option for the solver for tracer diffusion)","direct"], + into = ["conjugate gradient","conjugate residual","conjugate gradient on a normal equation","minimum error","squared conjugate gradient","cgstab","gmres (see solver option for tracers diffusion)","direct"], defaut = ["conjugate gradient","conjugate gradient"], - 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""", + fr = """Permet de choisir le solveur utilise pour la resolution +du systeme de diffusion de traceur(s) : +Les choix possibles sont : +\begin{itemize} +\item 1 : gradient conjugue, +\item 2 : residu conjugue, +\item 3 : gradient conjugue sur equation normale, +\item 4 : erreur minimale, +\item 5 : gradient conjugue carre (non programme), +\item 6 : gradient conjugue carre stabilise (cgstab), +\item 7 : GMRES (voir aussi +\telkey{OPTION DU SOLVEUR POUR LA DIFFUSION DES TRACEURS}), +\item 8 : direct. +\end{itemize}""", + ang = """Makes it possible to select the solver used for solving +the system of tracer(s) diffusion. +Possible choices are: +\begin{itemize} +\item 1: conjugate gradient, +\item 2: conjugate residual, +\item 3: conjugate gradient on a normal equation, +\item 4: minimum error, +\item 5: squared conjugate gradient (not implemented), +\item 6: cgstab, +\item 7: GMRES (see \telkey{SOLVER OPTION FOR TRACERS DIFFUSION}, +\item 8: direct. +\end{itemize}""", ), # ----------------------------------- SOLVER_OPTION_FOR_TRACERS_DIFFUSION = SIMP(statut ='o', # ----------------------------------- typ = 'I', min=0, max='**', defaut = [2], - fr = """si le solveur est GMRES (7) le mot cle est la dimension de -l''espace 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""", + fr = """Si le solveur est GMRES (7), le mot cle est la dimension de +l''espace de Krylov (valeurs conseillees entre 2 et 15).""", + ang = """When GMRES (7) is chosen for solver, dimension of the Krylov space. +Try values between 2 and 15.""", ), # ----------------------------------- PRECONDITIONING_FOR_DIFFUSION_OF_TRACERS = SIMP(statut ='o', # ----------------------------------- typ = 'TXM', min=0, max='**', - into = ["no preconditioning ","diagonal","crout","diagonal and crout"], + into = ["no preconditioning","diagonal","Crout","diagonal and Crout"], defaut = ["diagonal"], 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. - 7 : Crout par element""", - 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 - 7: Crout''s preconditioning per element.""", +afin d''accelerer la convergence lors de sa resolution. +\begin{itemize} +\item 0 : pas de preconditionnement ; +\item 2 : preconditionnement diagonal ; +\item 7 : preconditionnement de Crout par element ou segment +(ne marche pas en parallele). +\end{itemize} +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.""", + ang = """Choice of the preconditioning of the linear system of the tracer +diffusion so that the convergence is speeded up when it is being solved. +\begin{itemize} +\item 0: no preconditioning, +\item 2: diagonal preconditioning, +\item 7: Crout''s preconditioning per element or segment +(does not work in parallel). +\end{itemize} +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.""", ), ), # ----------------------------------- @@ -3341,10 +4319,10 @@ diffusion.""", # ----------------------------------- typ = 'I', defaut = 60, - fr = """ Limite le nombre d''iterations du solveur a chaque pas de temps pour -le calcul de la diffusion du traceur.""", + fr = """Limite le nombre d''iterations du solveur a chaque pas de temps pour +le calcul de la diffusion du ou des traceur(s).""", ang = """Limits the number of solver iterations at each time step for -the diffusion of tracer.""", +the diffusion of tracer(s).""", ), ), # ----------------------------------- @@ -3354,8 +4332,22 @@ the diffusion of tracer.""", VALUES_OF_THE_TRACERS_AT_THE_SOURCES = SIMP(statut ='o', # ----------------------------------- typ = 'R', min=0, max='**', - fr = """Valeurs des traceurs a chacune des sources""", - ang = """Values of the tracers at the sources""", + fr = """Valeurs des traceurs a chacune des sources. +toutes les sources pour le premier traceur +puis toutes les sources du deuxieme traceur, etc. +(cf. manuel utilisateur). +Par exemple, s''il y a 3 traceurs (T1, T2 et T3) et 2 sources +(S1 et S2), la syntaxe suivante est utilisee :\\ +S1\_T1;S1\_T2;S1\_T3;S2\_T1;S2\_T2;S2\_T3\\ +10.0; 10.0; 0.0; 0.0; 10.0; 10.0""", + ang = """Values of the tracers at the sources. +All sources for the first tracer, then +all sources for the second tracer, etc. +(see user manual). +For example, if there are 3 tracers (T1, T2 and T3) +and 2 sources (S1 and S2), the following syntax is used:\\ +S1\_T1;S1\_T2;S1\_T3;S2\_T1;S2\_T2;S2\_T3\\ +10.0; 10.0; 0.0; 0.0; 10.0; 10.0""", ), ), # ----------------------------------- @@ -3365,11 +4357,11 @@ the diffusion of tracer.""", VALUES_OF_TRACERS_IN_THE_RAIN = SIMP(statut ='o', # ----------------------------------- typ = 'R', min=0, max='**', - fr = """generalement ce traceur est la temperature, dans ce cas -cette valeur est a modifier, sinon la valeur 0 est raisonnable""", - ang = """most often, this tracer is temperature, in this case + fr = """Generalement, ce traceur est la temperature, dans ce cas +cette valeur est a modifier, sinon la valeur 0 est raisonnable.""", + ang = """Most often, this tracer is temperature, in this case this value should be modified, otherwise, default value of 0 seems -reasonable""", +reasonable.""", ), ), # ----------------------------------- @@ -3394,9 +4386,9 @@ or ignored.""", 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","ERIA SCHEME FOR TIDAL FLATS"], defaut = ["CHARACTERISTICS"], fr = """Choix du schema de convection pour les traceurs, -remplace FORME DE LA CONVECTION""", +remplace \telkey{FORME DE LA CONVECTION}.""", ang = """Choice of the advection scheme for the tracers, -replaces TYPE OF ADVECTION""", +replaces \telkey{TYPE OF ADVECTION}.""", ), ), # ----------------------------------- @@ -3404,9 +4396,17 @@ replaces TYPE OF ADVECTION""", # ----------------------------------- typ = 'R', defaut = 0.6, - fr = """Fixe la valeur du coefficient d''implicitation du traceur""", + fr = """Fixe la valeur du coefficient d''implicitation du traceur. +Si un schema de convection pour les traceurs est un schema distributif +(par ex : 3, 4, 5, 13, 14 ou 15), +\telkey{COEFFICIENT D''IMPLICITATION DES TRACEURS} est impose a 0. +(explicite).""", ang = """Sets the value of the implicitation coefficient -for the tracer""", +for the tracer. +If an advection scheme for tracers is a distributive scheme +(e.g.: 3, 4, 5, 13, 14 or 15), +\telkey{IMPLICITATION COEFFICIENT OF TRACERS} is prescribed at 0. +(explicit).""", ), # ----------------------------------- DIFFUSION_OF_TRACERS = SIMP(statut ='o', @@ -3418,18 +4418,20 @@ for the tracer""", or ignored.""", ), # ----------------------------------- - b_DIFFUSION_OF_TRACERSG = BLOC(condition="DIFFUSION_OF_TRACERS == True", + COEFFICIENT_FOR_DIFFUSION_OF_TRACERS = SIMP(statut ='o', # ----------------------------------- -# ----------------------------------- - COEFFICIENT_FOR_DIFFUSION_OF_TRACERS = SIMP(statut ='o', -# ----------------------------------- - typ = 'R', min=0, max='**', - defaut = [1.E-6], - fr = """Fixe la valeur du coefficient de diffusion du traceur. -L''influence de ce parametre sur l''evolution du traceur dans -le temps est importante.""", - ang = """Sets the value of the tracer diffusivity.""", - ), + typ = 'R', min=0, max='**', + defaut = [1.E-6], + fr = """Fixe la valeur du coefficient de diffusion du traceur. +L''influence de ce parametre sur l''evolution des traceurs dans +le temps est importante. +C est un tableau depuis la version 8.2, avec une valeur par traceur, +separation par un point virgule.""", + ang = """Sets the value of the tracer diffusivity. +These values may have a significant effect on the evolution of +tracers in time. +Since release 8.2, it has been an array, with one value per tracer, +separated by semicolons.""", ), # ----------------------------------- OPTION_FOR_THE_DIFFUSION_OF_TRACERS = SIMP(statut ='o', @@ -3437,10 +4439,16 @@ le temps est importante.""", typ = 'TXM', min=0, max='**', into = ["div( nu grad(T) )","1/h div ( h nu grad(T)"], defaut = ["div( nu grad(T) )"], - fr = """1: Diffusion de la forme div( nu grad(T) ) -2: Diffusion de la forme 1/h div ( h nu grad(T) )""", - ang = """1: Diffusion in the form div( nu grad(T) ) -2: Diffusion in the form 1/h div ( h nu grad(T) )""", + fr = """Choix possibles : +\begin{itemize} +\item 1: Diffusion de la forme div( nu grad(T) ), +\item 2: Diffusion de la forme 1/h div ( h nu grad(T) ). +\end{itemize}""", + ang = """Possible choices: +\begin{itemize} +\item 1: Diffusion in the form div( nu grad(T) ), +\item 2: Diffusion in the form 1/h div ( h nu grad(T) ). +\end{itemize}""", ), # ----------------------------------- SCHEME_OPTION_FOR_ADVECTION_OF_TRACERS = SIMP(statut ='o', @@ -3448,25 +4456,48 @@ le temps est importante.""", typ = 'I', min=0, max='**', defaut = [1], fr = """Si present remplace et a priorite sur : -OPTION POUR LES CARACTERISTIQUES -OPTION DE SUPG -Si schema PSI ou N : 1=explicite 2=predicteur-correcteur -3=predicteur-correcteur deuxieme ordre en temps -4=implicite""", +\telkey{OPTION POUR LES CARACTERISTIQUES} +\telkey{OPTION DE SUPG}. +Si caracteristiques : +\begin{itemize} +\item 1 = forme forte, +\item 2 = forme faible. +\end{itemize} +Si schema PSI ou N : +\begin{itemize} +\item 1 = explicite ; +\item 2 = predicteur-correcteur ; +\item 3 = predicteur-correcteur 2e ordre en temps ; +\item 4 = implicite. +\end{itemize}""", ang = """If present replaces and has priority over: -OPTION FOR CHARACTERISTICS -SUPG OPTION -if N or PSI SCHEME: 1=explicit 2=predictor-corrector -3= predictor-corrector second-order in time 4= implicit""", +\telkey{OPTION FOR CHARACTERISTICS} +\telkey{SUPG OPTION}. +If characteristics: +\begin{itemize} +\item 1 = strong form, +\item 2 = weak form. +\end{itemize} +If N or PSI scheme: +\begin{itemize} +\item 1 = explicit, +\item 2 = predictor-corrector, +\item 3 = predictor-corrector second-order in time, +\item 4 = implicit. +\end{itemize}""", ), # ----------------------------------- MASS_LUMPING_ON_TRACERS = SIMP(statut ='o', # ----------------------------------- typ = 'R', defaut = 0., - fr = """Fixe le taux de mass-lumping effectue sur le traceur.""", + fr = """Fixe le taux de mass-lumping effectue sur le traceur. +Lu mais remplace par la valeur de \telkey{MASS-LUMPING SUR H} +pour assurer la conservation de la masse de traceur.""", ang = """Sets the amount of mass-lumping that is performed on - the tracer.""", +the tracer. +Read but replaced by the value of \telkey{MASS-LUMPING ON H} +to ensure tracer mass conservation.""", ), ), ) @@ -3477,28 +4508,23 @@ PARTICLE_TRANSPORT = PROC(nom= "PARTICLE_TRANSPORT",op = None, DROGUES = FACT(statut='f', # ----------------------------------- # ----------------------------------- - NUMBER_OF_DROGUES = SIMP(statut ='o', + MAXIMUM_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. -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""", + fr = """Permet d''effectuer un suivi de flotteurs.""", + ang = """Maximum number of drogues in the computation.""", ), # ----------------------------------- - b_NUMBER_OF_DROGUESG = BLOC(condition="NUMBER_OF_DROGUES != 0", + b_MAXIMUM_NUMBER_OF_DROGUESG = BLOC(condition="MAXIMUM_NUMBER_OF_DROGUES != 0", # ----------------------------------- # ----------------------------------- - DROGUES_FILE = SIMP(statut ='o', + ASCII_DROGUES_FILE = SIMP(statut ='f', # ----------------------------------- typ = ('Fichier','All Files (*)','Sauvegarde'), defaut = '', - fr = """Fichier de resultat avec les positions des flotteurs""", - ang = """Results file with positions of drogues""", + fr = """Fichier de resultats ASCII avec les positions des flotteurs.""", + ang = """ASCII results file with positions of drogues.""", ), # ----------------------------------- PRINTOUT_PERIOD_FOR_DROGUES = SIMP(statut ='o', @@ -3506,23 +4532,119 @@ FILE that must be given in the steering file""", 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""", +flotteurs dans le fichier des resultats 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""", +positions in the output file.""", ), ), +# ----------------------------------- + INITIAL_DROGUES_SAMPLING_DENSITY = SIMP(statut ='o', +# ----------------------------------- + typ = 'R', min=0, max='**', + defaut = [1000,1000], + fr = """Densite initiale utilisee a la repartition des flotteurs +au debut (ou en cours) de la simulation.""", + ang = """Initial density of drogues, or number of drogues per m2, +used to spatially place the initial drogues in a simulation.""", + ), +# ----------------------------------- + BINARY_DROGUES_FILE = SIMP(statut ='f', +# ----------------------------------- + typ = ('Fichier','All Files (*)','Sauvegarde'), + defaut = '', + fr = """Fichier de resultats binaire avec les positions des flotteurs.""", + ang = """Binary results file with positions of drogues.""", + ), +# ----------------------------------- + DROGUES_FILE_FORMAT = SIMP(statut ='f', +# ----------------------------------- + typ = 'TXM', + into = ['BKBINPCL','TECPLOT'], + defaut = 'TECPLOT', + fr = """Format du \telkey{FICHIER BINAIRE DES FLOTTEURS}. +Les valeurs possibles sont : +\begin{itemize} +\item BKBINPCL: format PCL binaire natif de BlueKenue; +\item TECPLOT: format Tecplot original (ASCII). +\end{itemize}""", + ang = """Format of the \telkey{BINARY DROGUES FILE}. +Possible choices are: +\begin{itemize} +\item BKBINPCL: format binary PCL native to BlueKenue, +\item TECPLOT: format Tecplot original (ASCII). +\end{itemize}""", + ), +# ----------------------------------- + PREVIOUS_DROGUES_FILE = SIMP(statut ='f', +# ----------------------------------- + typ = ('Fichier','All Files (*)'), + defaut = '', + fr = """Nom d''un fichier contenant les resultats d''un calcul +precedent avec flotteurs.""", + ang = """Name of a file containing the results of an earlier +computation with drogues.""", + ), +# ----------------------------------- + PREVIOUS_DROGUES_FILE_FORMAT = SIMP(statut ='f', +# ----------------------------------- + typ = 'TXM', + into = ['BKBINPCL','BKASCPCL'], + defaut = 'BKBINPCL', + fr = """Format du \telkey{FICHIER DES FLOTTEURS PRECEDENT}. +Les valeurs possibles sont : +\begin{itemize} +\item BKBINPCL: format PCL binaire natif de BlueKenue; +\item BKASCPCL: format PCL ASCII natif de BlueKenue. +\end{itemize}""", + ang = """Format of the \telkey{PREVIOUS DROGUES FILE}. +Possible choices are: +\begin{itemize} +\item BKBINPCL: format binary PCL native of BlueKenue, +\item BKASCPCL: format SCII PCL native of BlueKenue. +\end{itemize}""", + ), +# ----------------------------------- + DROGUES_INITIAL_POSITIONING_DATA_FILE = SIMP(statut ='f', +# ----------------------------------- + typ = ('Fichier','All Files (*)'), + defaut = '', + fr = """Fichier de donnees en ASCII contenant les coordonnees des polygones +ou des points qui vont permettre un positionnement des particles +au depart de la simulation.""", + ang = """ASCII data file containing polygons or points defining the + initial positioning of drogues at the start of the simulation.""", + ), +# ----------------------------------- + FORMAT_OF_THE_DROGUES_POSITIONING_DATA_FILE = SIMP(statut ='f', +# ----------------------------------- + typ = 'TXM', + into = ['BKASCI2S'], + defaut = 'BKASCI2S', + fr = """Format du + \telkey{FICHIER POSITIONNANT LES DROGUES INITIALES}. +La seule valeur possible est : +\begin{itemize} +\item BKASCI2S: format I2S ASCII natif de BlueKenue. +\end{itemize}""", + ang = """Format of the + \telkey{DROGUES INITIAL POSITIONING DATA FILE}. +Single possible choice is: +\begin{itemize} +\item BKASCI2S: format AXCII I2S native of BlueKenue. +\end{itemize}""", + ), ), # ----------------------------------- - ALGAES = FACT(statut='f', + ALGAE = FACT(statut='f', # ----------------------------------- # ----------------------------------- 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""", + fr = """Si OUI, une partie ou tous les flotteurs seront des algues.""", + ang = """If YES, some or all the floats or particles will be algae.""", ), # ----------------------------------- b_ALGAE_TRANSPORT_MODELG = BLOC(condition="ALGAE_TRANSPORT_MODEL == True", @@ -3530,41 +4652,121 @@ positions in the binary file""", # ----------------------------------- ALGAE_TYPE = SIMP(statut ='o', # ----------------------------------- - typ = 'TXM', + typ = 'TXM', min=0, max='**', into = ["SPHERE","IRIDAEA FLACCIDA (CLOSE TO ULVA)","PELVETIOPSIS LIMITATA","GIGARTINA LEPTORHYNCHOS"], - defaut = "SPHERE", - fr = """Type des algues. Pour le choix 1 les algues seront + defaut = ["SPHERE","SPHERE"], + fr = """Type des algues. +Les choix possibles sont : +\begin{itemize} +\item 1 : Sphere ; +\item 2 : Iridaeca Flaccida ; +\item 3 : Pelvetiopsis Limitata ; +\item 4 : Gigartina Leptorhynchos. +\end{itemize} +Pour le choix 1 les algues seront modelisees comme des spheres, pour les autres choix voir Gaylord et al. (1994).""", - ang = """Algae type. For choice 1 the algae particles will be + ang = """Algae type. +Possible choices are: +\begin{itemize} +\item 1: Sphere, +\item 2: Iridaeca Flaccida, +\item 3: Pelvetiopsis Limitata, +\item 4: Gigartina Leptorhynchos. +\end{itemize} +For choice 1 the algae particles will be modeled as spheres, and for the other choices see Gaylord et -al. (1994)""", +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""", + typ = 'R', min=0, max='**', + defaut = [0.1,0.1], + fr = """Diametre des algues en m.""", + ang = """Diameter of algae in m.""", ), # ----------------------------------- DENSITY_OF_ALGAE = SIMP(statut ='o', # ----------------------------------- - typ = 'R', - defaut = 1050., - fr = """Masse volumique des algues en kg/m3""", - ang = """Density of algae in kg/m3""", + typ = 'R', min=0, max='**', + defaut = [1050.,1050.], + fr = """Masse volumique des algues en kg/m$^3$.""", + ang = """Density of algae in kg/m$^3$.""", ), # ----------------------------------- THICKNESS_OF_ALGAE = SIMP(statut ='o', # ----------------------------------- - typ = 'R', - defaut = 0.01, - fr = """Epaisseur des algues en m""", - ang = """Thickness of algae in m""", + typ = 'R', min=0, max='**', + defaut = [0.01,0.01], + fr = """Epaisseur des algues en m.""", + ang = """Thickness of algae in m.""", ), ), +# ----------------------------------- + NUMBER_OF_ALGAE_CLASSES = SIMP(statut ='o', +# ----------------------------------- + typ = 'I', + defaut = 0, + fr = """Nombre de classes d''algues. Chaque classe sera associee + a une propriete particuliere.""", + ang = """Number of algae classes. Each class will be associated + with a particular property.""", + ), +# ----------------------------------- + DURATION_BEFORE_ALGAE_RELEASE = SIMP(statut ='o', +# ----------------------------------- + typ = 'R', min=0, max='**', + defaut = [0.0,0.0], + fr = """Duree en secondes avant le relachemet des algues depuis le +depart de la simulation.""", + ang = """Duration in seconds before the release of the algae from +the start of the simulation.""", + ), +# ----------------------------------- + ALGAE_RELEASE_TYPE = SIMP(statut ='o', +# ----------------------------------- + typ = 'TXM', min=0, max='**', + into = ["TIMED","DISLODGEMENT"], + defaut = ["TIMED","TIMED"], + fr = """Les valeurs possibles sont: +\begin{itemize} +\item 1 : PERIODE : Les algues bougent apres une certaine periode de +temps, +\item 2 : DEPLACEMENT : Les algues bougent lorsque la vitesse orbitale +de vague critique depasse un certain seuil. +\end{itemize}""", + ang = """Possible values are: +\begin{itemize} +\item 1: TIMED : Algae move after a specified time has elapsed, +\item 2: DISLODGEMENT: Algae move after a critical wave orbital velocity +is exceeded. +\end{itemize}""", + ), +# ----------------------------------- + WAVE_ORBITAL_VELOCITY_THRESHOLD_FOR_ALGAE_1 = SIMP(statut ='o', +# ----------------------------------- + typ = 'R', min=0, max='**', + defaut = [2.,2.], + fr = """Vitesse orbitale de vague 1 pour le deplacement des algues en m/s.""", + ang = """Wave orbital velocity 1 for algae dislodgement in m/s.""", + ), +# ----------------------------------- + WAVE_ORBITAL_VELOCITY_THRESHOLD_FOR_ALGAE_2 = SIMP(statut ='o', +# ----------------------------------- + typ = 'R', min=0, max='**', + defaut = [0.,0.], + fr = """Vitesse orbitale de vague 2 pour le deplacement des algues en m/s.""", + ang = """Wave orbital velocity 2 for algae dislodgement in m/s.""", + ), +# ----------------------------------- + RATE_OF_DEGRADATION_FOR_ALGAE = SIMP(statut ='o', +# ----------------------------------- + typ = 'R', min=0, max='**', + defaut = [0.,0.], + fr = """Taux de degradation pour les algues.""", + ang = """Rate of degradation for algae.""", + ), ), # ----------------------------------- OIL_SPILL = FACT(statut='f', @@ -3574,10 +4776,10 @@ al. (1994)""", # ----------------------------------- 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""", + 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 +\telkey{OIL SPILL STEERING FILE} is needed.""", ), # ----------------------------------- b_OIL_SPILL_MODELG = BLOC(condition="OIL_SPILL_MODEL == True", @@ -3587,8 +4789,8 @@ THE MIGRHYCAR STEERING FILE IS NEEDED""", # ----------------------------------- typ = ('Fichier','All Files (*)'), defaut = '', - fr = """Contient les donnees pour le modele de derive de nappes""", - ang = """Contains data for the oil spill model""", + fr = """Contient les donnees pour le modele de derive de nappes.""", + ang = """Contains data for the \telkey{OIL SPILL MODEL}.""", ), ), ), @@ -3601,8 +4803,12 @@ THE MIGRHYCAR STEERING FILE IS NEEDED""", typ = 'TXM', into = ["No model","brownian movement"], defaut = "No model", - fr = """Pour les particules : flotteurs, hydrocarbures""", - ang = """Meant for particles: drogues, oil spills""", + fr = """Pour les particules : flotteurs, hydrocarbures. +Si aucune turbulence n est activee, la diffusion stochastique n est pas +prise en compte pendant le transport de particules.""", + ang = """Meant for particles: drogues, oil spills. +If no turbulence is activated, this stochastic diffusion is not +considered during the particle transport.""", ), ), # ----------------------------------- @@ -3614,10 +4820,12 @@ THE MIGRHYCAR STEERING FILE IS NEEDED""", typ = 'I', defaut = 0, fr = """Permet d''effectuer simultanement plusieurs calculs de derives -lagrangiennes initiees a des pas differents""", - ang = """Provided for performing several computations of lagrangian +lagrangiennes initiees a des pas differents. +Ajouter A et G au mot-cle +\telkey{VARIABLES POUR LES SORTIES GRAPHIQUES}.""", + 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""", +Add A and G in the \telkey{VARIABLES FOR GRAPHIC PRINTOUTS} keyword.""", ), # ----------------------------------- b_NUMBER_OF_LAGRANGIAN_DRIFTSG = BLOC(condition="NUMBER_OF_LAGRANGIAN_DRIFS != 0", @@ -3643,10 +4851,10 @@ HYDRAULIC_STRUCTURES = PROC(nom= "HYDRAULIC_STRUCTURES",op = None, fr = """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)""", +\telkey{FICHIER DE DONNEES DES SEUILS} (voir la documentation ecrite).""", ang = """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)""", +are given in the \telkey{WEIRS DATA FILE} (see written documentation)""", ), # ----------------------------------- b_NUMBER_OF_WEIRSG = BLOC(condition="NUMBER_OF_WEIRS != 0", @@ -3656,8 +4864,8 @@ are given in the weir data file (see written documentation)""", # ----------------------------------- typ = ('Fichier','All Files (*)'), defaut = '', - fr = """Fichier de description des seuils presents dans le modele""", - ang = """Description of weirs existing in the model""", + fr = """Fichier de description des seuils presents dans le modele.""", + ang = """Description of weirs existing in the model.""", ), # ----------------------------------- TYPE_OF_WEIRS = SIMP(statut ='o', @@ -3666,13 +4874,25 @@ are given in the weir data file (see written documentation)""", into = ["HORIZONTAL WITH SAME NUMBER OF NODES UPSTREAM/DOWNSTREAM","GENERAL"], defaut = "HORIZONTAL WITH SAME NUMBER OF NODES UPSTREAM/DOWNSTREAM", fr = """Methode de traitement des seuils. Deux Solutions: -- HORIZONTAL AVEC MEME NOMBRE DE NOEUDS AMONT/AVAL (Solution historique - avec bord) -- GENERALE (Nouvelle solution avec pts sources)""", +\begin{itemize} +\item horizontal avec meme nombre de noeuds amont/aval +(Solution historique avec le sous-programme \telfile{BORD}) ; +\item generale (nouvelle solution avec pts sources). +\end{itemize}""", ang = """Method for treatment of weirs. Two options: -- HORIZONTAL WITH SAME NUMBER OF NODES UPSTREAM/DOWNSTREAM (Historical - solution with bord) -- GENERAL (New solution with sources points""", +\begin{itemize} +\item horizontal with same number of nodes upstream/downstream +(Historical solution with the \telfile{BORD} subroutine), +\item general (new solution with sources points). +\end{itemize}""", + ), +# ----------------------------------- + WEIRS_DISCHARGE_OUTPUT_FILE = SIMP(statut ='f', +# ----------------------------------- + typ = ('Fichier','All Files (*)','Sauvegarde'), + defaut = '', + fr = """Fichier de sortie des debits sur les seuils presents dans le modele.""", + ang = """Output file of discharge of weirs existing in the model.""", ), ), ), @@ -3686,11 +4906,14 @@ are given in the weir data file (see written documentation)""", defaut = 0, fr = """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)""", +fichier des parametres . +Leurs caracteristiques sont donnees dans le +\telkey{FICHIER DE DONNEES DES BUSES} +(voir la documentation ecrite).""", ang = """Number of culverts, tubes or bridges treated as source terms. They must be described as sources in the domain and their features -are given in the culverts data file (see written documentation)""", +are given in the \telfile{CULVERTS DATA FILE} +(see written documentation).""", ), # ----------------------------------- b_NUMBER_OF_CULVERTSG = BLOC(condition="NUMBER_OF_CULVERTS != 0", @@ -3700,8 +4923,8 @@ are given in the culverts data file (see written documentation)""", # ----------------------------------- typ = ('Fichier','All Files (*)'), defaut = '', - fr = """Fichier de description des buses/ponts presents dans le modele""", - ang = """Description of culverts/tubes/bridges existing in the model""", + fr = """Fichier de description des buses/ponts presents dans le modele.""", + ang = """Description of culverts/tubes/bridges existing in the model.""", ), ), # ----------------------------------- @@ -3710,9 +4933,12 @@ are given in the culverts data file (see written documentation)""", typ = 'I', defaut = 1, fr = """Option pour le traitement des buses. Il existe deux formulations -dans Telemac""", +dans \telemac{2d}, basees sur les formules de Bodhaine (1968) +et Carlier (1976). +Lire le \telemac{3d} theory guide plus plus d informations.""", ang = """Option for the treatment of culverts. There are two options in -Telemac""", +\telemac{2d} based on Bodhaine (1968) and Carlier (1976) formulae. +Read the \telemac{3d} theory guide for more informations.""", ), ), # ----------------------------------- @@ -3725,10 +4951,10 @@ Telemac""", defaut = False, fr = """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.""", +des breches se fait avec le \telkey{FICHIER DE DONNEES DES BRECHES}.""", ang = """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.""", +by modifying the bottom level of the mesh. Breach description +is done with the \telkey{BREACHES DATA FILE}.""", ), # ----------------------------------- b_BREACHG = BLOC(condition="BREACH == True", @@ -3738,8 +4964,8 @@ is done with the breaches data file.""", # ----------------------------------- typ = ('Fichier','All Files (*)'), defaut = '', - fr = """Fichier de description des breches""", - ang = """Description of breaches""", + fr = """Fichier de description des breches.""", + ang = """Description of breaches.""", ), ), ), @@ -3752,10 +4978,10 @@ TIDES = PROC(nom= "TIDES",op = None, # ----------------------------------- typ = ('Fichier','All Files (*)'), defaut = '', - fr = """Base de donnees binaire 1 tiree du fichier du modele de maree. + fr = """Base de donnees binaire 1 de constantes harmoniques. 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. + ang = """Binary database 1 of harmonic constants. In the case of the TPXO satellite altimetry model, this file should be for free surface level, for instance h\_tpxo7.2""", ), @@ -3764,10 +4990,10 @@ TIDES = PROC(nom= "TIDES",op = None, # ----------------------------------- typ = ('Fichier','All Files (*)'), defaut = '', - fr = """Base de donnees binaire 2 tiree du fichier du modele de maree. + fr = """Base de donnees binaire 2 de constantes harmoniques. 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. + ang = """Binary database 2 of harmonic constants. In the case of the TPXO satellite altimetry model, this file should be for tidal velocities, for instance u\_tpxo7.2""", ), @@ -3808,9 +5034,8 @@ The possible choices are: # ----------------------------------- ZONE_NUMBER_IN_GEOGRAPHIC_SYSTEM = SIMP(statut ='f', # ----------------------------------- - typ = 'TXM', - into = ["NO DEFAULT VALUE","LAMBERT 1 NORTH","LAMBERT 2 CENTER","LAMBERT 3 SOUTH","LAMBERT 4 CORSICA","LAMBERT 2 EXTENDED","LAMBERT 93","UTM ZONE, E.G."], - defaut = "NO DEFAULT VALUE", + typ = 'I', + defaut = -1, fr = """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 @@ -3835,7 +5060,7 @@ Possible choices are: \item 3: Lambert 3 south, \item 4: Lambert 4 Corsica, \item 22: Lambert 22 extended, -\item 93: Lambert 93 extended, +\item 93: Lambert 93, \item X: UTM zone with WGS84 (X is the number of the zone). \end{itemize}""", ), @@ -3845,30 +5070,40 @@ Possible choices are: # ----------------------------------- typ = ('Fichier','All Files (*)'), defaut = '', - fr = """Nom du fichier GR3DF97A, grille de conversion pour Lambert 93.""", - ang = """Name of file GR3DF97A, conversion grid for Lambert 93.""", + fr = """Nom du fichier gr3df97a.txt, grille de conversion pour Lambert 93.""", + ang = """Name of file gr3df97a.txt, conversion grid for Lambert 93.""", ), # ----------------------------------- 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""", + fr = """Coefficient pour ajuster le niveau de mer. +Il peut dependre de la reference altimetrique utilisee dans le modele, +par exemple Cartes Marines, Niveau Moyen de la Mer, NGF...""", + ang = """Coefficient to calibrate the sea level. +It may depend on the altimetric reference used in the model, +for example Chart Datum, Mean Sea Level...""", ), # ----------------------------------- GLOBAL_NUMBER_OF_THE_POINT_TO_CALIBRATE_HIGH_WATER = SIMP(statut ='f', # ----------------------------------- typ = 'I', defaut = 0, - fr = """Numero global du point par rapport auquel les ondes de maree sont -dephasees pour debuter le calcul par une pleine mer (en marees -schematiques seulement). Ne concerne que les bases de constantes -harmoniques de type TPXO.""", - ang = """Global number of the point with respect to which the tidal -constituents have their phase shifted to start the calculation with a -high water (for schematic tides only). Only harmonic constants databases -like TPXO are concerned.""", + fr = """Numero global du point +(entre 1 et le nombre de points frontieres du maillage 2D) +par rapport auquel les ondes de maree sont dephasees +pour debuter le calcul par une pleine mer +(en marees schematiques seulement). +Ce point doit etre un point de frontiere maritime. +Ne concerne que les bases de constantes harmoniques de type TPXO.""", + ang = """Global number of the point +(between 1 and the number of boundary nodes in the 2D mesh) +with respect to which the tidal constituents have their phase shifted +to start the calculation with a high water +(for schematic tides only). +This point has to be a maritime boundary node. +Only harmonic constants databases like TPXO are concerned.""", ), # ----------------------------------- MINOR_CONSTITUENTS_INFERENCE = SIMP(statut ='f', @@ -3878,12 +5113,53 @@ like TPXO are concerned.""", fr = """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""", +lies aux mots-cles \telkey{BASE BINAIRE 1 DE DONNEES DE MAREE} +et \telkey{BASE BINAIRE 2 DE DONNEES DE MAREE}.""", ang = """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""", +linked to keywords \telkey{BINARY DATABASE 1 FOR TIDE} +and \telkey{BINARY DATABASE 2 FOR TIDE}.""", + ), +# ----------------------------------- + INITIAL_VELOCITIES_COMPUTED_BY_TPXO = SIMP(statut ='f', +# ----------------------------------- + typ = bool, + defaut = True, + fr = """Composantes de vitesses initiales calculees a partir des +solutions de maree de l OSU (ex TPXO). +Prendre NON pour eviter une initialisation avec des vitesses de maree +trop grandes. +Pour les solutions de marees provenant de l OSU uniquement (ex TPXO).""", + ang = """Initial velocity components computed from a tidal solution from +OSU (e.g. TPXO). +NO to prevent from an initialisation with too big tidal velocities. +For tidal solutions coming from OSU only (e.g. TPXO).""", + ), +# ----------------------------------- + MINIMUM_DEPTH_TO_COMPUTE_TIDAL_VELOCITIES_INITIAL_CONDITIONS = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = 0.1, + fr = """Valeur minimale de hauteur d eau au dessus de laquelle les conditions +initiales de courants de maree sont calculees. +Autrement, les vitesses sont annulees. +Pour les solutions de maree provenant de l OSU uniquement (ex TPXO).""", + ang = """Minimum value of water depth above which initial conditions for tidal +velocities are computed. +Otherwise, the velocity components are equal to 0. +For tidal solutions coming from OSU only (e.g. TPXO).""", + ), +# ----------------------------------- + MINIMUM_DEPTH_TO_COMPUTE_TIDAL_VELOCITIES_BOUNDARY_CONDITIONS = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = 0.1, + fr = """Valeur minimale de hauteur d eau utilisee pour le calcul des conditions +aux limites de courants de maree si les profondeurs sont trop petites. +Pour les solutions de marees provenant de l OSU uniquement (ex TPXO).""", + ang = """Minimum value of water depth used to compute tidal boundary conditions +for velocities if the water depths are too small. +For tidal solutions coming from OSU only (e.g. TPXO).""", ), # ----------------------------------- BOUNDARY_CONDITIONS = FACT(statut='o', @@ -3903,19 +5179,22 @@ domaine. 0 est le code pour des conditions autres que des conditions de maree. ATTENTION depuis la version 7.1 ! Les anciens modeles doivent etre changes si la frontiere de maree n a pas le numero 1. Dans ce cas, le mot-cle doit etre change et plus de valeurs doivent etre donnees. -Calage possible par les mots-cles COEFFICIENT POUR CALAGE EN MARNAGE et -COEFFICIENT POUR CALAGE EN NIVEAU.""", +Calage possible par les mots-cles +\telkey{COEFFICIENT DE CALAGE DU MARNAGE}, +\telkey{COEFFICIENT DE CALAGE DES VITESSES DE COURANT} et +\telkey{COEFFICIENT DE CALAGE DU NIVEAU DE MER}.""", ang = """Option for tidal boundary conditions. For real tides, option 1 is recommended. This keyword has been an array with a value given per -liquid boundary, separated by semicolons, since version 7.1. This +liquid boundary, separated by semicolons, since release 7.1. This enables to have tidal conditions (or not) computed on liquid boundaries with prescribed velocities or depths, avoiding a clash when using weirs in the domain. 0 codes for conditions other than tidal. BEWARE since -version 7.1! Old models must be changed if their tidal boundary is not +release 7.1! Old models must be changed if their tidal boundary is not number 1. In that case this keyword must be changed and more values -given. Possible calibration with the keywords COEFFICIENT TO ADJUST -TIDAL RANGE, COEFFICENT TO CALIBRATE TIDAL VELOCITIES, and COEFFICIENT -TO ADJUST SEA LEVEL.""", +given. Possible calibration with the keywords +\telkey{COEFFICIENT TO CALIBRATE TIDAL RANGE}, +\telkey{COEFFICIENT TO CALIBRATE TIDAL VELOCITIES} and +\telkey{COEFFICIENT TO CALIBRATE SEA LEVEL}.""", ), # ----------------------------------- TIDAL_DATA_BASE = SIMP(statut ='o', @@ -3924,13 +5203,15 @@ TO ADJUST SEA LEVEL.""", into = ["NO DEFAULT VALUE","JMJ","TPXO","MISCELLANEOUS (LEGOS-NEA, FES20XX, PREVIMER...)"], defaut = "NO DEFAULT VALUE", fr = """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, LEGOS-NEA, FES20XX et PREVIMER, l''utilisateur doit -telecharger les fichiers de constantes harmoniques sur internet""", +dans les mots-cles \telkey{BASE ASCII DE DONNEES DE MAREE} et +\telkey{FICHIER DU MODELE DE MAREE}. +Pour TPXO, LEGOS-NEA, FES20XX et PREVIMER, l''utilisateur doit +telecharger les fichiers 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. For TPXO, LEGOS-NEA, +keywords \telkey{ASCII DATABASE FOR TIDE} and \telkey{TIDAL MODEL FILE}. +For TPXO, LEGOS-NEA, FES20XX and PREVIMER, the user has to download files of harmonic -constituents on the internet""", +constituents on the internet.""", ), # ----------------------------------- b_TIDAL_DATA_BASEG = BLOC(condition="TIDAL_DATA_BASE == 'TPXO'", @@ -3941,8 +5222,10 @@ constituents on the internet""", # ----------------------------------- typ = ('Fichier','All Files (*)'), defaut = '', - fr = """Constantes harmoniques extraites du fichier du modele de maree""", - ang = """Harmonic constants extracted from the tidalmodel file""", + fr = """Fichier contenant les constantes harmoniques pour le calcul des +conditions aux limites de maree.""", + ang = """File containing the harmonic constants to compute the +tidal boundary conditions.""", ), # ----------------------------------- TIDAL_MODEL_FILE = SIMP(statut ='f', @@ -3950,16 +5233,16 @@ constituents on the internet""", typ = ('Fichier','All Files (*)'), defaut = '', fr = """Fichier de geometrie du modele dont sont extraites -les constantes harmoniques""", +les constantes harmoniques.""", ang = """Geometry file of the model from which harmonic constituents -are extracted""", +are extracted.""", ), # ----------------------------------- TIDAL_MODEL_FILE_FORMAT = SIMP(statut ='f', # ----------------------------------- typ = 'TXM', - into = ['SERAFIN?','SERAFIND','MED'], - defaut = 'SERAFIN?', + into = ['SERAFIN','SERAFIND','MED'], + defaut = 'SERAFIN', fr = """Format du \telkey{FICHIER DU MODELE DE MAREE}. Les valeurs possibles sont : \begin{itemize} @@ -3981,11 +5264,11 @@ Possible choices are: typ = ('Fichier','All Files (*)'), defaut = '', fr = """Base de donnees de constantes harmoniques -tirees du fichier du modele de maree. -Ancien nom en version 6.1 : BASE DE DONNEES DE MAREE""", +tirees du \telkey{FICHIER DU MODELE DE MAREE}. +Ancien nom en version 6.1 : \telkey{BASE DE DONNEES DE MAREE}.""", ang = """Tide data base of harmonic constituents -extracted from the tidal model file. -Old name in 6.1 version: TIDE DATA BASE""", +extracted from the \telkey{TIDAL MODEL FILE}. +Old name in release 6.1: \telkey{TIDE DATA BASE}.""", ), # ----------------------------------- COEFFICIENT_TO_CALIBRATE_TIDAL_RANGE = SIMP(statut ='o', @@ -3993,9 +5276,9 @@ Old name in 6.1 version: TIDE DATA BASE""", typ = 'R', defaut = 1., fr = """Coefficient pour ajuster le marnage de l''onde de maree -aux frontieres maritimes""", +aux frontieres maritimes.""", ang = """Coefficient to calibrate the tidal range of tidal wave -at tidal open boundary conditions""", +at tidal open boundary conditions.""", ), # ----------------------------------- COEFFICIENT_TO_CALIBRATE_TIDAL_VELOCITIES = SIMP(statut ='o', @@ -4004,12 +5287,12 @@ at tidal open boundary conditions""", defaut = 999999., fr = """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""", +La valeur par defaut 999~999. signifie que c''est la racine carree +du \telkey{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""", +Default value 999,999. means that the square root of +\telkey{COEFFICIENT TO CALIBRATE TIDAL RANGE} is taken.""", ), # ----------------------------------- LOCAL_NUMBER_OF_THE_POINT_TO_CALIBRATE_HIGH_WATER = SIMP(statut ='f', @@ -4017,14 +5300,15 @@ COEFFICIENT TO CALIBRATE TIDAL RANGE is taken""", typ = 'I', defaut = 0, fr = """Numero local du point entre 1 et le nombre de points de frontiere -maritime (du FICHIER DES CONSTANTES HARMONIQUES) ou les conditions aux -limites de maree sont calculees avec les bases de donnees JMJ, NEA, FES, -PREVIMER (sauf les bases de type TPXO). Les ondes de maree sont +maritime (du \telkey{FICHIER DES CONSTANTES HARMONIQUES}) ou les +conditions aux limites de maree sont calculees avec les bases de donnees +JMJ, NEA, FES, PREVIMER (sauf les bases de type TPXO). +Les ondes de maree sont dephasees par rapport a ce point pour debuter le calcul par une pleine mer (en marees schematiques seulement).""", ang = """Local number between 1 and the number of tidal boundary points (of the -HARMONIC CONSTANTS FILE) where the tidal boundary conditions are -computed with JMJ, NEA, FES, PREVIMER databases (except TPXO-type +\telkey{HARMONIC CONSTANTS FILE}) where the tidal boundary conditions +are computed with JMJ, NEA, FES, PREVIMER databases (except TPXO-type databases). The tidal constituents have their phase shifted with respect to this point to start the simulation with a high water (for schematic tides only).""", @@ -4038,8 +5322,14 @@ tides only).""", # ----------------------------------- typ = bool, defaut = False, - fr = """Active la prise en compte de la force generatrice de la maree""", - ang = """The tide generating force is taken into account.""", + fr = """Active la prise en compte de la force generatrice de la maree. +Il faut utiliser \telkey{COORDONNEES SPHERIQUES} = OUI, +il est impossible de prendre en compte la force generatrice de la maree +en coordonnees cartesiennes.""", + ang = """The tide generating force is taken into account. +The keyword \telkey{SPHERICAL COORDINATES} has to be activated, +it is impossible to account tide generating force in cartesian +coordinates.""", ), # ----------------------------------- b_TIDE_GENERATING_FORCEG = BLOC(condition="TIDE_GENERATING_FORCE == True", @@ -4051,46 +5341,46 @@ tides only).""", COUPLING = PROC(nom= "COUPLING",op = None, # ----------------------------------------------------------------------- # ----------------------------------- - COUPLING_WITH = SIMP(statut ='o', + COUPLING_WITH = SIMP(statut ='f', # ----------------------------------- - typ = 'TXM', - into = ['SISYPHE','TOMAWAC','DELWAQ'], + typ = 'TXM', min=0, max='**', + into = ['SISYPHE','TOMAWAC','TOMAWAC2','WAQTEL','KHIONE','GAIA','DELWAQ',''], defaut = '', - fr = """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""", - ang = """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""", + fr = """Liste des codes avec lesquels on couple \telemac{2d} : +\begin{itemize} +\item \sisyphe : couplage interne avec \sisyphe ; +\item \tomawac : couplage interne avec \tomawac ; +\item \waqtel : couplage interne avec \waqtel ; +\item \khione : couplage interne avec \khione ; +\item DELWAQ : sortie de fichiers de resultats pour Delwaq ; +\item \gaia : couplage interne avec \gaia. +\end{itemize}""", + ang = """List of codes to be coupled with \telemac{2d}: +\begin{itemize} +\item \sisyphe: internal coupling with \sisyphe, +\item \tomawac: internal coupling with \tomawac, +\item \waqtel: internal coupling with \waqtel, +\item \khione: internal coupling with \khione, +\item DELWAQ: will yield results file for DELWAQ, +\item \gaia: internal coupling with \gaia. +\end{itemize}""", ), # ----------------------------------- NAMES_OF_CLANDESTINE_VARIABLES = SIMP(statut ='f', # ----------------------------------- typ = 'TXM', min= 2, max= 2, - fr = """Noms de variables qui ne sont pas utilisees par TELEMAC; + fr = """Noms de variables qui ne sont pas utilisees par \telemac{2d}, mais qui doivent etre conservees lors de son execution. -Ceci peut etre utilise entre autres lors du couplage de TELEMAC +Ceci peut etre utilise entre autres lors du couplage de \telemac{2d} avec un autre code. Les variables clandestines sont alors des variables propres a l''autre code et sont rendues dans le fichier de resultats.""", - ang = """Names of variables that are not used by TELEMAC, but should be + ang = """Names of variables that are not used by \telemac{2d}, 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 +when \telemac{2d} is coupled with another code. Thus, the clandestine variables belong to the other code and are given back in the results file.""", ), -# ----------------------------------- - COUPLING_DIRECTORY = SIMP(statut ='f', -# ----------------------------------- - typ = 'TXM', - defaut = '', - fr = """Nom complet du dossier d echange des fichiers - pour couplage de codes""", - ang = """Name with full path of the directory where the files will - be exchanged for coupling""", - ), # ----------------------------------- DELWAQ = FACT(statut='o', # ----------------------------------- @@ -4099,128 +5389,128 @@ file.""", # ----------------------------------- typ = ('Fichier','All Files (*)','Sauvegarde'), defaut = '', - fr = """Fichier de resultats pour le couplage avec Delwaq""", - ang = """Results file for coupling with Delwaq""", + fr = """Fichier de commande pour le chainage avec DELWAQ.""", + ang = """Steering file for chaining with DELWAQ.""", ), # ----------------------------------- DELWAQ_PRINTOUT_PERIOD = SIMP(statut ='f', # ----------------------------------- typ = 'I', defaut = 1, - fr = """Periode de sortie des resultats pour Delwaq""", - ang = """Printout period for Delwaq file""", + fr = """Periode de sortie des resultats pour DELWAQ.""", + ang = """Printout period for DELWAQ files.""", ), # ----------------------------------- EXCHANGES_BETWEEN_NODES_DELWAQ_FILE = SIMP(statut ='f', # ----------------------------------- typ = ('Fichier','All Files (*)','Sauvegarde'), defaut = '', - fr = """Fichier de resultats pour le couplage avec Delwaq""", - ang = """Results file for coupling with Delwaq""", + fr = """Fichier de resultats pour le chainage avec DELWAQ.""", + ang = """Results file for chaining with DELWAQ.""", ), # ----------------------------------- NODES_DISTANCES_DELWAQ_FILE = SIMP(statut ='f', # ----------------------------------- typ = ('Fichier','All Files (*)','Sauvegarde'), defaut = '', - fr = """Fichier de resultats pour le couplage avec Delwaq""", - ang = """Results file for coupling with Delwaq""", + fr = """Fichier de resultats pour le chainage avec DELWAQ.""", + ang = """Results file for chaining with DELWAQ.""", ), # ----------------------------------- BOTTOM_SURFACES_DELWAQ_FILE = SIMP(statut ='f', # ----------------------------------- typ = ('Fichier','All Files (*)','Sauvegarde'), defaut = '', - fr = """Fichier de resultats pour le couplage avec Delwaq""", - ang = """Results file for coupling with Delwaq""", + fr = """Fichier de resultats pour le chainage avec DELWAQ.""", + ang = """Results file for chaining with DELWAQ.""", ), # ----------------------------------- VOLUMES_DELWAQ_FILE = SIMP(statut ='f', # ----------------------------------- typ = ('Fichier','All Files (*)','Sauvegarde'), defaut = '', - fr = """Fichier de resultats pour le couplage avec Delwaq""", - ang = """Results file for coupling with Delwaq""", + fr = """Fichier de resultats pour le chainage avec DELWAQ.""", + ang = """Results file for chaining with DELWAQ.""", ), # ----------------------------------- EXCHANGE_AREAS_DELWAQ_FILE = SIMP(statut ='f', # ----------------------------------- typ = ('Fichier','All Files (*)','Sauvegarde'), defaut = '', - fr = """Fichier de resultats pour le couplage avec Delwaq""", - ang = """Results file for coupling with Delwaq""", + fr = """Fichier de resultats pour le chainage avec DELWAQ.""", + ang = """Results file for chaining with DELWAQ.""", ), # ----------------------------------- VERTICAL_FLUXES_DELWAQ_FILE = SIMP(statut ='f', # ----------------------------------- typ = ('Fichier','All Files (*)','Sauvegarde'), defaut = '', - fr = """Fichier de resultats pour le couplage avec Delwaq""", - ang = """Results file for coupling with Delwaq""", + fr = """Fichier de resultats pour le chainage avec DELWAQ.""", + ang = """Results file for chaining with DELWAQ.""", ), # ----------------------------------- VELOCITY_DELWAQ_FILE = SIMP(statut ='f', # ----------------------------------- typ = ('Fichier','All Files (*)','Sauvegarde'), defaut = '', - fr = """Fichier de resultats pour le couplage avec Delwaq""", - ang = """Results file for coupling with Delwaq""", + fr = """Fichier de resultats pour le chainage avec DELWAQ.""", + ang = """Results file for chaining with DELWAQ.""", ), # ----------------------------------- DIFFUSIVITY_DELWAQ_FILE = SIMP(statut ='f', # ----------------------------------- typ = ('Fichier','All Files (*)','Sauvegarde'), defaut = '', - fr = """Fichier de resultats pour le couplage avec Delwaq""", - ang = """Results file for coupling with Delwaq""", + fr = """Fichier de resultats pour le chainage avec DELWAQ.""", + ang = """Results file for chaining with DELWAQ.""", ), # ----------------------------------- TEMPERATURE_DELWAQ_FILE = SIMP(statut ='f', # ----------------------------------- typ = ('Fichier','All Files (*)','Sauvegarde'), defaut = '', - fr = """Fichier de resultats pour le couplage avec Delwaq""", - ang = """Results file for coupling with Delwaq""", + fr = """Fichier de resultats pour le chainage avec DELWAQ.""", + ang = """Results file for chaining with DELWAQ.""", ), # ----------------------------------- SALINITY_DELWAQ_FILE = SIMP(statut ='f', # ----------------------------------- typ = ('Fichier','All Files (*)','Sauvegarde'), defaut = '', - fr = """Fichier de resultats pour le couplage avec Delwaq""", - ang = """Results file for coupling with Delwaq""", + fr = """Fichier de resultats pour le chainage avec DELWAQ.""", + ang = """Results file for chaining with DELWAQ.""", ), # ----------------------------------- VELOCITY_FOR_DELWAQ = SIMP(statut ='f', # ----------------------------------- typ = bool, defaut = False, - fr = """Decide de la sortie de la vitesse pour Delwaq""", - ang = """Triggers output of velocity for Delwaq""", + fr = """Decide de la sortie de la vitesse pour DELWAQ.""", + ang = """Triggers the output of velocity for DELWAQ.""", ), # ----------------------------------- DIFFUSIVITY_FOR_DELWAQ = SIMP(statut ='f', # ----------------------------------- typ = bool, defaut = False, - fr = """Decide de la sortie du coefficient de diffusion pour Delwaq""", - ang = """Triggers output of diffusion for Delwaq""", + fr = """Decide de la sortie du coefficient de diffusion pour DELWAQ.""", + ang = """Triggers the output of diffusion for DELWAQ.""", ), # ----------------------------------- TEMPERATURE_FOR_DELWAQ = SIMP(statut ='f', # ----------------------------------- typ = bool, defaut = False, - fr = """Decide de la sortie de la temperature pour Delwaq""", - ang = """Triggers output of temperature for Delwaq""", + fr = """Decide de la sortie de la temperature pour DELWAQ.""", + ang = """Triggers the output of temperature for DELWAQ.""", ), # ----------------------------------- SALINITY_FOR_DELWAQ = SIMP(statut ='f', # ----------------------------------- typ = bool, defaut = False, - fr = """Decide de la sortie de la salinite pour Delwaq""", - ang = """Triggers output of salinity for Delwaq""", + fr = """Decide de la sortie de la salinite pour DELWAQ.""", + ang = """Triggers the output of salinity for DELWAQ.""", ), ), # ----------------------------------- @@ -4231,16 +5521,33 @@ file.""", # ----------------------------------- typ = 'TXM', defaut = '', - fr = """Fichier des parametres de Sisyphe en cas de couplage interne""", - ang = """Sisyphe parameter file in case of internal coupling""", + fr = """Fichier des parametres de \sisyphe en cas de couplage +interne.""", + ang = """\sisyphe parameter file in case of internal coupling.""", ), # ----------------------------------- COUPLING_PERIOD_FOR_SISYPHE = SIMP(statut ='f', # ----------------------------------- typ = 'I', defaut = 1, - fr = """pour eviter de faire le couplage a chaque pas de temps""", - ang = """to avoid coupling at every time-step""", + fr = """Fixe la periode de couplage avec le module \sisyphe, +en nombre de pas de temps. +Par defaut, il est couple a chaque pas de temps.""", + ang = """Sets the coupling period with the \sisyphe module, in number +of time steps. By default, it is coupled at every time step.""", + ), + ), +# ----------------------------------- + GAIA = FACT(statut='o', +# ----------------------------------- +# ----------------------------------- + GAIA_STEERING_FILE = SIMP(statut ='f', +# ----------------------------------- + typ = 'TXM', + defaut = '', + fr = """Fichier des parametres de \gaia en cas de couplage +interne.""", + ang = """\gaia parameter file in case of internal coupling.""", ), ), # ----------------------------------- @@ -4251,16 +5558,20 @@ file.""", # ----------------------------------- typ = 'TXM', defaut = '', - fr = """Fichier des parametres de Tomawac en cas de couplage interne""", - ang = """Tomawac parameter file in case of internal coupling""", + 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 ='f', # ----------------------------------- typ = 'I', defaut = 1, - fr = """pour eviter de faire le couplage a chaque pas de temps""", - ang = """to avoid coupling at every time-step""", + fr = """Fixe la periode de couplage avec le module \tomawac, +en nombre de pas de temps. +Par defaut, il est couple a chaque pas de temps.""", + ang = """Sets the coupling period with the \tomawac module, in number +of time steps. By default, it is coupled at every time step.""", ), ), # ----------------------------------- @@ -4271,10 +5582,10 @@ file.""", # ----------------------------------- typ = 'TXM', defaut = '', - fr = """fichier des parametres physiques pour les processus de qualite d eau -(internes non ceux de DELWAQ)""", - ang = """file for physical parameters of waq processes (local ones of -Telemac-tracer not those of DELWAQ)""", + fr = """Fichier des parametres physiques pour les processus de qualite d eau +(internes pas ceux de DELWAQ).""", + ang = """File for physical parameters of water quality processes +(local ones of \telemac{2d}-\waqtel not those of DELWAQ).""", ), ), # ----------------------------------- @@ -4285,14 +5596,89 @@ Telemac-tracer not those of DELWAQ)""", # ----------------------------------- typ = 'TXM', defaut = '', - fr = """Fichier des parametres physiques pour les processus liees aux glaces""", - ang = """Steering file for physical parameters of ice processes""", + fr = """Fichier des parametres physiques pour les processus lies aux glaces.""", + ang = """Steering file for physical parameters of ice processes.""", + ), +# ----------------------------------- + ICE_PROCESSES = SIMP(statut ='f', +# ----------------------------------- + typ = 'I', + defaut = 1, + fr = """Donne le numero du processus des glaces, avec le numero defini sur la +base multiplicative de nombres premiers (2, 3, 5, 7, 11, 13\ldots). +Par exemple, 14 (= 2 $\times$ 7) rend actif les processus 2 et 7. +Exception a la regle : +\begin{itemize} +\item si l entier est 1, il n y a pas de couplage ; +\item si l entier est 0, tous les effets suivants sont inclus : +\begin{itemize} +\item 2 : bilan thermique ; +\item 3 : \ldots +\end{itemize} +\end{itemize}""", + ang = """Provides the ice process number with the number being defined on the +basis of a multiplication of primary numbers (2, 3, 5, 7, 11, 13\ldots). +For instance, 14 (= 2 $\times$ 7) activates processes 2 and 7. +Exception is for: +\begin{itemize} +\item if the number is 1, there will be no ice processes included, +\item if the number is 0, all processes are included, as follows: +\begin{itemize} +\item 2: thermical budget, +\item 3: \ldots +\end{itemize} +\end{itemize}""", + ), + ), +# ----------------------------------- + NESTOR_INFO = FACT(statut='f', +# ----------------------------------- +# ----------------------------------- + NESTOR = SIMP(statut ='o', +# ----------------------------------- + typ = bool, + defaut = False, + fr = """Active l utilisation du module \nestor pour changer les fonds.""", + ang = """Activates the use of the \nestor module to change the bottom.""", + ), +# ----------------------------------- + NESTOR_ACTION_FILE = SIMP(statut ='o', +# ----------------------------------- + typ = ('Fichier','All Files (*)'), + defaut = '', + fr = """Nom du fichier des parametres de \nestor.""", + ang = """Name of the \nestor steering file.""", + ), +# ----------------------------------- + NESTOR_POLYGON_FILE = SIMP(statut ='o', +# ----------------------------------- + typ = ('Fichier','All Files (*)'), + defaut = '', + fr = """Nom du fichier de polygones de \nestor indiquant la localisation.""", + ang = """Name of the \nestor polygon file which indicates the location.""", + ), +# ----------------------------------- + NESTOR_SURFACE_REFERENCE_FILE = SIMP(statut ='o', +# ----------------------------------- + typ = ('Fichier','All Files (*)'), max='**', + defaut = '', + fr = """Nom du fichier de \nestor qui contient la surface de reference.""", + ang = """Name of the \nestor file which contains the reference water surface.""", + ), +# ----------------------------------- + NESTOR_RESTART_FILE = SIMP(statut ='f', +# ----------------------------------- + typ = ('Fichier','All Files (*)'), + defaut = '', + fr = """Nom du fichier de reprise de \nestor.""", + ang = """Name of the \nestor restart file.""", ), ), ) # ----------------------------------------------------------------------- INTERNAL = PROC(nom= "INTERNAL",op = None, # ----------------------------------------------------------------------- + UIinfo = {"groupes": ("CACHE")}, # ----------------------------------- LANGUAGE = SIMP(statut ='f', # ----------------------------------- @@ -4325,117 +5711,48 @@ Written by the user.""", typ = 'TXM', into = ['METIS','SCOTCH','PARMETIS','PTSCOTCH'], defaut = 'METIS', - fr = """CHOIX DU PARTITIONNEUR -1 : METIS -2 : SCOTCH -3 : PARMETIS -4 : PTSCOTCH -etc...""", - ang = """PARTITIONING TOOL SELECTION -1 : METIS -2 : SCOTCH -3 : PARMETIS -4 : PTSCOTCH -etc...""", - ), -# ----------------------------------- - RELEASE = SIMP(statut ='f', -# ----------------------------------- - typ = 'TXM', - defaut = 'TRUNK', - 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""", - ), -# ----------------------------------- - LIST_OF_FILES = SIMP(statut ='f', -# ----------------------------------- - typ = 'TXM', min=46, max=46, - defaut = '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;OIL SPILL 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;CULVERTS DATA FILE;BREACHES DATA FILE;DROGUES FILE;ZONES FILE;FLUXLINE INPUT FILE;ASCII ATMOSPHERIC DATA FILE;BINARY ATMOSPHERIC DATA FILE', - fr = """Noms des fichiers exploites par le code""", - ang = """File names of the used files""", - ), -# ----------------------------------- - DESCRIPTION_OF_LIBRARIES = SIMP(statut ='f', -# ----------------------------------- - typ = 'TXM', min=11, max=11, - defaut = 'builds|PPP|lib|telemac2dMMMVVV.LLL;builds|PPP|lib|sisypheMMMVVV.LLL;builds|PPP|lib|tomawacMMMVVV.LLL;builds|PPP|lib|nestorMMMVVV.LLL;builds|PPP|lib|waqtelMMMVVV.LLL;builds|PPP|lib|stbtelMMMVVV.LLL;builds|PPP|lib|biefMMMVVV.LLL;builds|PPP|lib|hermesMMMVVV.LLL;builds|PPP|lib|damoMMMVVV.LLL;builds|PPP|lib|parallelMMMVVV.LLL;builds|PPP|lib|specialMMMVVV.LLL', - fr = """Description des librairies de T2D""", - ang = """LIBRARIES description""", - ), -# ----------------------------------- - DEFAULT_EXECUTABLE = SIMP(statut ='f', -# ----------------------------------- - typ = 'TXM', - defaut = 'builds|PPP|bin|telemac2dMMMVVV.exe', - fr = """Executable par defaut de T2D""", - ang = """Default executable for T2D""", - ), -# ----------------------------------- - DEFAULT_PARALLEL_EXECUTABLE = SIMP(statut ='f', -# ----------------------------------- - typ = 'TXM', - defaut = 'builds|PPP|bin|telemac2dMMMVVV.exe', - fr = """Executable parallele par defaut de T2D""", - ang = """Default parallel executable for T2D""", - ), -) -# ----------------------------------------------------------------------- -MISCELLANEOUS = PROC(nom= "MISCELLANEOUS",op = None, -# ----------------------------------------------------------------------- - UIinfo = {"groupes": ("CACHE")}, -# ----------------------------------- - NESTOR_ACTION_FILE = SIMP(statut ='f', -# ----------------------------------- - typ = ('Fichier','All Files (*)'), max='**', - defaut = '', - fr = """Nom du fichier de commandes de nestor""", - ang = """Name of the Nestor steering file""", - ), -# ----------------------------------- - NESTOR_POLYGON_FILE = SIMP(statut ='f', -# ----------------------------------- - typ = ('Fichier','All Files (*)'), max='**', - defaut = '', - fr = """Nom du fichier de polygons de Nestor""", - ang = """Name of the Nestor polygon file""", - ), -# ----------------------------------- - NESTOR_SURFACE_REFERENCE_FILE = SIMP(statut ='f', -# ----------------------------------- - typ = ('Fichier','All Files (*)'), max='**', - defaut = '', - fr = """Nom du fichier de reference surface de Nestor""", - ang = """Name of the Nestor file which contains the reference - water surface""", + fr = """Choix du partitionneur : +\begin{itemize} +\item 1 : METIS ; +\item 2 : SCOTCH ; +\item 3 : PARMETIS ; +\item 4 : PTSCOTCH. +\end{itemize}""", + ang = """Partitioning tool selection: +\begin{itemize} +\item 1: METIS, +\item 2: SCOTCH, +\item 3: PARMETIS, +\item 4: PTSCOTCH. +\end{itemize}""", ), # ----------------------------------- - NESTOR_RESTART_FILE = SIMP(statut ='f', + CONCATENATE_PARTEL_OUTPUT = SIMP(statut ='o', # ----------------------------------- - typ = ('Fichier','All Files (*)'), max='**', - defaut = '', - fr = """Nom du fichier de Nestor restart""", - ang = """Name of the Nestor restart file""", + typ = bool, + defaut = False, + fr = """Avec cette option partel ne generera non plus un fichier (GEO/CLI/PAR) +par processeur mais une concatenation de ceux-ci, ainsi qu''un fichier +d''index associe. Ainsi plutot que d''avoir 3P fichiers, il n''y en a +plus que 6.""", + ang = """With this option partel no more generates a file (GEO/CLI/PAR) per +process but a single concatenate file of them, associated to an index +file. Then instead of having partel generating 3P files, it only +generates 6 files.""", ), ) TEXTE_NEW_JDC = "\ COMPUTATION_ENVIRONMENT();\ HYDRO();\ -GENERAL_PARAMETERS();\ NUMERICAL_PARAMETERS();\ +GENERAL_PARAMETERS();\ TURBULENCE();\ -MISCELLANEOUS();\ " Ordre_Des_Commandes = ( 'COMPUTATION_ENVIRONMENT', 'HYDRO', -'GENERAL_PARAMETERS', 'NUMERICAL_PARAMETERS', +'GENERAL_PARAMETERS', 'TURBULENCE', 'TIDAL_FLATS_INFO', 'TRACERS', @@ -4443,8 +5760,7 @@ Ordre_Des_Commandes = ( 'HYDRAULIC_STRUCTURES', 'TIDES', 'COUPLING', -'INTERNAL', -'MISCELLANEOUS') +'INTERNAL') try: import TelApy source = "eficas" diff --git a/Telemac/telemac2d_dicoCasEnToCata.py b/Telemac/telemac2d_dicoCasEnToCata.py index 88eb63c3..6f84266f 100644 --- a/Telemac/telemac2d_dicoCasEnToCata.py +++ b/Telemac/telemac2d_dicoCasEnToCata.py @@ -14,6 +14,7 @@ dicoCataToEngTelemac = { "FORTRAN_FILE" : "FORTRAN FILE", "BOTTOM_TOPOGRAPHY_FILE" : "BOTTOM TOPOGRAPHY FILE", "BOTTOM_SMOOTHINGS" : "BOTTOM SMOOTHINGS", + "BOTTOM_SMOOTHINGS_AFTER_USER_MODIFICATIONS" : "BOTTOM SMOOTHINGS AFTER USER MODIFICATIONS", "BOUNDARY_CONDITIONS_FILE" : "BOUNDARY CONDITIONS FILE", "VALIDATION" : "VALIDATION", "REFERENCE_FILE_FORMAT" : "REFERENCE FILE FORMAT", @@ -24,6 +25,7 @@ dicoCataToEngTelemac = { "MAXIMUM_NUMBER_OF_SOURCES" : "MAXIMUM NUMBER OF SOURCES", "MAXIMUM_NUMBER_OF_TRACERS" : "MAXIMUM NUMBER OF TRACERS", "VECTOR_LENGTH" : "VECTOR LENGTH", + "SECURITY_COEFFICIENT_FOR_SCARACT" : "SECURITY COEFFICIENT FOR SCARACT", "COMPUTATION_CONTINUED" : "COMPUTATION CONTINUED", "PREVIOUS_COMPUTATION_FILE_FORMAT" : "PREVIOUS COMPUTATION FILE FORMAT", "PREVIOUS_COMPUTATION_FILE" : "PREVIOUS COMPUTATION FILE", @@ -40,6 +42,12 @@ dicoCataToEngTelemac = { "BINARY_RESULTS_FILE_FORMAT" : "BINARY RESULTS FILE FORMAT", "BINARY_RESULTS_FILE" : "BINARY RESULTS FILE", "FORMATTED_RESULTS_FILE" : "FORMATTED RESULTS FILE", + "FORMATTED_RESULTS_FILE_1" : "FORMATTED RESULTS FILE 1", + "FORMATTED_RESULTS_FILE_2" : "FORMATTED RESULTS FILE 2", + "FORMATTED_RESULTS_FILE_3" : "FORMATTED RESULTS FILE 3", + "FORMATTED_RESULTS_FILE_4" : "FORMATTED RESULTS FILE 4", + "FORMATTED_RESULTS_FILE_5" : "FORMATTED RESULTS FILE 5", + "FORMATTED_RESULTS_FILE_6" : "FORMATTED RESULTS FILE 6", "CONTROL_SECTIONS" : "CONTROL SECTIONS", "PRINTING_CUMULATED_FLOWRATES" : "PRINTING CUMULATED FLOWRATES", "COMPATIBLE_COMPUTATION_OF_FLUXES" : "COMPATIBLE COMPUTATION OF FLUXES", @@ -74,17 +82,23 @@ dicoCataToEngTelemac = { "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", + "VEGETATION_FRICTION" : "VEGETATION FRICTION", "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", - "ICE_PROCESSES" : "ICE PROCESSES", + "NON_NEWTONIAN_MODEL" : "NON-NEWTONIAN MODEL", + "BINGHAM_OPTION" : "BINGHAM OPTION", + "NON_NEWTONIAN_VISCOSITY" : "NON-NEWTONIAN VISCOSITY", + "NON_NEWTONIAN_YIELD_STRESS" : "NON-NEWTONIAN YIELD STRESS", + "NON_NEWTONIAN_LAMINAR_RESISTANCE_PARAMETER_K" : "NON-NEWTONIAN LAMINAR RESISTANCE PARAMETER K", + "NON_NEWTONIAN_FLUID_DENSITY" : "NON-NEWTONIAN FLUID DENSITY", + "NON_NEWTONIAN_PSEUDO_BIPHASIC_MODEL" : "NON-NEWTONIAN PSEUDO-BIPHASIC MODEL", + "HERSCHEL_BULKLEY_POWER_LAW_INDEX" : "HERSCHEL-BULKLEY POWER-LAW INDEX", "WIND" : "WIND", "OPTION_FOR_WIND" : "OPTION FOR WIND", "COEFFICIENT_OF_WIND_INFLUENCE" : "COEFFICIENT OF WIND INFLUENCE", + "COEFFICIENT_OF_WIND_INFLUENCE_VARYING_WITH_WIND_SPEED" : "COEFFICIENT OF WIND INFLUENCE VARYING WITH WIND SPEED", "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", @@ -100,6 +114,10 @@ dicoCataToEngTelemac = { "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", + "AIR_TEMPERATURE" : "AIR TEMPERATURE", + "CLOUD_COVER" : "CLOUD COVER", + "SOLAR_RADIATION" : "SOLAR RADIATION", + "VAPOROUS_PRESSURE" : "VAPOROUS PRESSURE", "WAVE_DRIVEN_CURRENTS" : "WAVE DRIVEN CURRENTS", "RECORD_NUMBER_IN_WAVE_FILE" : "RECORD NUMBER IN WAVE FILE", "WAVE_ENHANCED_FRICTION_FACTOR" : "WAVE ENHANCED FRICTION FACTOR", @@ -116,6 +134,8 @@ dicoCataToEngTelemac = { "TYPE_OF_SOURCES" : "TYPE OF SOURCES", "SOURCES_FILE" : "SOURCES FILE", "GLOBAL_NUMBERS_OF_SOURCE_NODES" : "GLOBAL NUMBERS OF SOURCE NODES", + "SOURCE_REGIONS_DATA_FILE" : "SOURCE REGIONS DATA FILE", + "MAXIMUM_NUMBER_OF_POINTS_FOR_SOURCES_REGIONS" : "MAXIMUM NUMBER OF POINTS FOR SOURCES REGIONS", "WATER_QUALITY_PROCESS" : "WATER QUALITY PROCESS", "WATER_DENSITY" : "WATER DENSITY", "GRAVITY_ACCELERATION" : "GRAVITY ACCELERATION", @@ -123,6 +143,12 @@ dicoCataToEngTelemac = { "EQUATIONS" : "EQUATIONS", "TREATMENT_OF_THE_LINEAR_SYSTEM" : "TREATMENT OF THE LINEAR SYSTEM", "FINITE_VOLUME_SCHEME" : "FINITE VOLUME SCHEME", + "FINITE_VOLUME_SCHEME_SPACE_ORDER" : "FINITE VOLUME SCHEME SPACE ORDER", + "FINITE_VOLUME_SCHEME_TIME_ORDER" : "FINITE VOLUME SCHEME TIME ORDER", + "FLUX_LIMITOR_FOR_H_PLUS_Z" : "FLUX LIMITOR FOR H PLUS Z", + "FLUX_LIMITOR_FOR_U_AND_V" : "FLUX LIMITOR FOR U AND V", + "FLUX_LIMITOR_FOR_TRACERS" : "FLUX LIMITOR FOR TRACERS", + "TYPE_OF_BOUNDARY_CONDITION_FOR_KINETIC_SCHEME" : "TYPE OF BOUNDARY CONDITION FOR KINETIC SCHEME", "CORIOLIS" : "CORIOLIS", "CORIOLIS_COEFFICIENT" : "CORIOLIS COEFFICIENT", "OPTION_FOR_TSUNAMI_GENERATION" : "OPTION FOR TSUNAMI GENERATION", @@ -142,7 +168,6 @@ dicoCataToEngTelemac = { "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", @@ -173,7 +198,6 @@ dicoCataToEngTelemac = { "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", @@ -183,7 +207,6 @@ dicoCataToEngTelemac = { "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", @@ -196,7 +219,6 @@ dicoCataToEngTelemac = { "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", @@ -213,7 +235,7 @@ dicoCataToEngTelemac = { "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", + "MIXING_LENGTH_MODEL_COEFFICIENTS" : "MIXING LENGTH MODEL COEFFICIENTS", "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", @@ -245,14 +267,27 @@ dicoCataToEngTelemac = { "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", - "NUMBER_OF_DROGUES" : "NUMBER OF DROGUES", + "MAXIMUM_NUMBER_OF_DROGUES" : "MAXIMUM NUMBER OF DROGUES", + "INITIAL_DROGUES_SAMPLING_DENSITY" : "INITIAL DROGUES SAMPLING DENSITY", "PRINTOUT_PERIOD_FOR_DROGUES" : "PRINTOUT PERIOD FOR DROGUES", - "DROGUES_FILE" : "DROGUES FILE", + "ASCII_DROGUES_FILE" : "ASCII DROGUES FILE", + "BINARY_DROGUES_FILE" : "BINARY DROGUES FILE", + "DROGUES_FILE_FORMAT" : "DROGUES FILE FORMAT", + "PREVIOUS_DROGUES_FILE" : "PREVIOUS DROGUES FILE", + "PREVIOUS_DROGUES_FILE_FORMAT" : "PREVIOUS DROGUES FILE FORMAT", + "DROGUES_INITIAL_POSITIONING_DATA_FILE" : "DROGUES INITIAL POSITIONING DATA FILE", + "FORMAT_OF_THE_DROGUES_POSITIONING_DATA_FILE" : "FORMAT OF THE DROGUES POSITIONING DATA FILE", "ALGAE_TRANSPORT_MODEL" : "ALGAE TRANSPORT MODEL", + "NUMBER_OF_ALGAE_CLASSES" : "NUMBER OF ALGAE CLASSES", "ALGAE_TYPE" : "ALGAE TYPE", "DIAMETER_OF_ALGAE" : "DIAMETER OF ALGAE", + "DURATION_BEFORE_ALGAE_RELEASE" : "DURATION BEFORE ALGAE RELEASE", "DENSITY_OF_ALGAE" : "DENSITY OF ALGAE", "THICKNESS_OF_ALGAE" : "THICKNESS OF ALGAE", + "ALGAE_RELEASE_TYPE" : "ALGAE RELEASE TYPE", + "WAVE_ORBITAL_VELOCITY_THRESHOLD_FOR_ALGAE_1" : "WAVE ORBITAL VELOCITY THRESHOLD FOR ALGAE 1", + "WAVE_ORBITAL_VELOCITY_THRESHOLD_FOR_ALGAE_2" : "WAVE ORBITAL VELOCITY THRESHOLD FOR ALGAE 2", + "RATE_OF_DEGRADATION_FOR_ALGAE" : "RATE OF DEGRADATION FOR ALGAE", "OIL_SPILL_MODEL" : "OIL SPILL MODEL", "OIL_SPILL_STEERING_FILE" : "OIL SPILL STEERING FILE", "STOCHASTIC_DIFFUSION_MODEL" : "STOCHASTIC DIFFUSION MODEL", @@ -260,6 +295,7 @@ dicoCataToEngTelemac = { "NUMBER_OF_WEIRS" : "NUMBER OF WEIRS", "WEIRS_DATA_FILE" : "WEIRS DATA FILE", "TYPE_OF_WEIRS" : "TYPE OF WEIRS", + "WEIRS_DISCHARGE_OUTPUT_FILE" : "WEIRS DISCHARGE OUTPUT FILE", "NUMBER_OF_CULVERTS" : "NUMBER OF CULVERTS", "CULVERTS_DATA_FILE" : "CULVERTS DATA FILE", "OPTION_FOR_CULVERTS" : "OPTION FOR CULVERTS", @@ -273,6 +309,8 @@ dicoCataToEngTelemac = { "COEFFICIENT_TO_CALIBRATE_SEA_LEVEL" : "COEFFICIENT TO CALIBRATE SEA LEVEL", "GLOBAL_NUMBER_OF_THE_POINT_TO_CALIBRATE_HIGH_WATER" : "GLOBAL NUMBER OF THE POINT TO CALIBRATE HIGH WATER", "MINOR_CONSTITUENTS_INFERENCE" : "MINOR CONSTITUENTS INFERENCE", + "INITIAL_VELOCITIES_COMPUTED_BY_TPXO" : "INITIAL VELOCITIES COMPUTED BY TPXO", + "MINIMUM_DEPTH_TO_COMPUTE_TIDAL_VELOCITIES_INITIAL_CONDITIONS" : "MINIMUM DEPTH TO COMPUTE TIDAL VELOCITIES INITIAL CONDITIONS", "OPTION_FOR_TIDAL_BOUNDARY_CONDITIONS" : "OPTION FOR TIDAL BOUNDARY CONDITIONS", "TIDAL_DATA_BASE" : "TIDAL DATA BASE", "HARMONIC_CONSTANTS_FILE" : "HARMONIC CONSTANTS FILE", @@ -282,10 +320,10 @@ dicoCataToEngTelemac = { "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", + "MINIMUM_DEPTH_TO_COMPUTE_TIDAL_VELOCITIES_BOUNDARY_CONDITIONS" : "MINIMUM DEPTH TO COMPUTE TIDAL VELOCITIES BOUNDARY CONDITIONS", "TIDE_GENERATING_FORCE" : "TIDE GENERATING FORCE", "COUPLING_WITH" : "COUPLING WITH", "NAMES_OF_CLANDESTINE_VARIABLES" : "NAMES OF CLANDESTINE VARIABLES", - "COUPLING_DIRECTORY" : "COUPLING DIRECTORY", "DELWAQ_STEERING_FILE" : "DELWAQ STEERING FILE", "DELWAQ_PRINTOUT_PERIOD" : "DELWAQ PRINTOUT PERIOD", "EXCHANGES_BETWEEN_NODES_DELWAQ_FILE" : "EXCHANGES BETWEEN NODES DELWAQ FILE", @@ -304,24 +342,22 @@ dicoCataToEngTelemac = { "SALINITY_FOR_DELWAQ" : "SALINITY FOR DELWAQ", "SISYPHE_STEERING_FILE" : "SISYPHE STEERING FILE", "COUPLING_PERIOD_FOR_SISYPHE" : "COUPLING PERIOD FOR SISYPHE", + "GAIA_STEERING_FILE" : "GAIA STEERING FILE", "TOMAWAC_STEERING_FILE" : "TOMAWAC STEERING FILE", "COUPLING_PERIOD_FOR_TOMAWAC" : "COUPLING PERIOD FOR TOMAWAC", "WAQTEL_STEERING_FILE" : "WAQTEL STEERING FILE", "KHIONE_STEERING_FILE" : "KHIONE 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", + "ICE_PROCESSES" : "ICE PROCESSES", "NESTOR" : "NESTOR", "NESTOR_ACTION_FILE" : "NESTOR ACTION FILE", "NESTOR_POLYGON_FILE" : "NESTOR POLYGON FILE", "NESTOR_SURFACE_REFERENCE_FILE" : "NESTOR SURFACE REFERENCE FILE", "NESTOR_RESTART_FILE" : "NESTOR RESTART FILE", + "LANGUAGE" : "LANGUAGE", + "STEERING_FILE" : "STEERING FILE", + "DICTIONARY" : "DICTIONARY", + "PARTITIONING_TOOL" : "PARTITIONING TOOL", + "CONCATENATE_PARTEL_OUTPUT" : "CONCATENATE PARTEL OUTPUT", } dicoCasEnToCata = { "TITLE" : "TITLE", @@ -339,6 +375,7 @@ dicoCasEnToCata = { "FORTRAN FILE" : "FORTRAN_FILE", "BOTTOM TOPOGRAPHY FILE" : "BOTTOM_TOPOGRAPHY_FILE", "BOTTOM SMOOTHINGS" : "BOTTOM_SMOOTHINGS", + "BOTTOM SMOOTHINGS AFTER USER MODIFICATIONS" : "BOTTOM_SMOOTHINGS_AFTER_USER_MODIFICATIONS", "BOUNDARY CONDITIONS FILE" : "BOUNDARY_CONDITIONS_FILE", "VALIDATION" : "VALIDATION", "REFERENCE FILE FORMAT" : "REFERENCE_FILE_FORMAT", @@ -349,6 +386,7 @@ dicoCasEnToCata = { "MAXIMUM NUMBER OF SOURCES" : "MAXIMUM_NUMBER_OF_SOURCES", "MAXIMUM NUMBER OF TRACERS" : "MAXIMUM_NUMBER_OF_TRACERS", "VECTOR LENGTH" : "VECTOR_LENGTH", + "SECURITY COEFFICIENT FOR SCARACT" : "SECURITY_COEFFICIENT_FOR_SCARACT", "COMPUTATION CONTINUED" : "COMPUTATION_CONTINUED", "PREVIOUS COMPUTATION FILE FORMAT" : "PREVIOUS_COMPUTATION_FILE_FORMAT", "PREVIOUS COMPUTATION FILE" : "PREVIOUS_COMPUTATION_FILE", @@ -365,6 +403,12 @@ dicoCasEnToCata = { "BINARY RESULTS FILE FORMAT" : "BINARY_RESULTS_FILE_FORMAT", "BINARY RESULTS FILE" : "BINARY_RESULTS_FILE", "FORMATTED RESULTS FILE" : "FORMATTED_RESULTS_FILE", + "FORMATTED RESULTS FILE 1" : "FORMATTED_RESULTS_FILE_1", + "FORMATTED RESULTS FILE 2" : "FORMATTED_RESULTS_FILE_2", + "FORMATTED RESULTS FILE 3" : "FORMATTED_RESULTS_FILE_3", + "FORMATTED RESULTS FILE 4" : "FORMATTED_RESULTS_FILE_4", + "FORMATTED RESULTS FILE 5" : "FORMATTED_RESULTS_FILE_5", + "FORMATTED RESULTS FILE 6" : "FORMATTED_RESULTS_FILE_6", "CONTROL SECTIONS" : "CONTROL_SECTIONS", "PRINTING CUMULATED FLOWRATES" : "PRINTING_CUMULATED_FLOWRATES", "COMPATIBLE COMPUTATION OF FLUXES" : "COMPATIBLE_COMPUTATION_OF_FLUXES", @@ -399,17 +443,23 @@ dicoCasEnToCata = { "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", + "VEGETATION FRICTION" : "VEGETATION_FRICTION", "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", - "ICE PROCESSES" : "ICE_PROCESSES", + "NON-NEWTONIAN MODEL" : "NON_NEWTONIAN_MODEL", + "BINGHAM OPTION" : "BINGHAM_OPTION", + "NON-NEWTONIAN VISCOSITY" : "NON_NEWTONIAN_VISCOSITY", + "NON-NEWTONIAN YIELD STRESS" : "NON_NEWTONIAN_YIELD_STRESS", + "NON-NEWTONIAN LAMINAR RESISTANCE PARAMETER K" : "NON_NEWTONIAN_LAMINAR_RESISTANCE_PARAMETER_K", + "NON-NEWTONIAN FLUID DENSITY" : "NON_NEWTONIAN_FLUID_DENSITY", + "NON-NEWTONIAN PSEUDO-BIPHASIC MODEL" : "NON_NEWTONIAN_PSEUDO_BIPHASIC_MODEL", + "HERSCHEL-BULKLEY POWER-LAW INDEX" : "HERSCHEL_BULKLEY_POWER_LAW_INDEX", "WIND" : "WIND", "OPTION FOR WIND" : "OPTION_FOR_WIND", "COEFFICIENT OF WIND INFLUENCE" : "COEFFICIENT_OF_WIND_INFLUENCE", + "COEFFICIENT OF WIND INFLUENCE VARYING WITH WIND SPEED" : "COEFFICIENT_OF_WIND_INFLUENCE_VARYING_WITH_WIND_SPEED", "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", @@ -425,6 +475,10 @@ dicoCasEnToCata = { "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", + "AIR TEMPERATURE" : "AIR_TEMPERATURE", + "CLOUD COVER" : "CLOUD_COVER", + "SOLAR RADIATION" : "SOLAR_RADIATION", + "VAPOROUS PRESSURE" : "VAPOROUS_PRESSURE", "WAVE DRIVEN CURRENTS" : "WAVE_DRIVEN_CURRENTS", "RECORD NUMBER IN WAVE FILE" : "RECORD_NUMBER_IN_WAVE_FILE", "WAVE ENHANCED FRICTION FACTOR" : "WAVE_ENHANCED_FRICTION_FACTOR", @@ -441,6 +495,8 @@ dicoCasEnToCata = { "TYPE OF SOURCES" : "TYPE_OF_SOURCES", "SOURCES FILE" : "SOURCES_FILE", "GLOBAL NUMBERS OF SOURCE NODES" : "GLOBAL_NUMBERS_OF_SOURCE_NODES", + "SOURCE REGIONS DATA FILE" : "SOURCE_REGIONS_DATA_FILE", + "MAXIMUM NUMBER OF POINTS FOR SOURCES REGIONS" : "MAXIMUM_NUMBER_OF_POINTS_FOR_SOURCES_REGIONS", "WATER QUALITY PROCESS" : "WATER_QUALITY_PROCESS", "WATER DENSITY" : "WATER_DENSITY", "GRAVITY ACCELERATION" : "GRAVITY_ACCELERATION", @@ -448,6 +504,12 @@ dicoCasEnToCata = { "EQUATIONS" : "EQUATIONS", "TREATMENT OF THE LINEAR SYSTEM" : "TREATMENT_OF_THE_LINEAR_SYSTEM", "FINITE VOLUME SCHEME" : "FINITE_VOLUME_SCHEME", + "FINITE VOLUME SCHEME SPACE ORDER" : "FINITE_VOLUME_SCHEME_SPACE_ORDER", + "FINITE VOLUME SCHEME TIME ORDER" : "FINITE_VOLUME_SCHEME_TIME_ORDER", + "FLUX LIMITOR FOR H PLUS Z" : "FLUX_LIMITOR_FOR_H_PLUS_Z", + "FLUX LIMITOR FOR U AND V" : "FLUX_LIMITOR_FOR_U_AND_V", + "FLUX LIMITOR FOR TRACERS" : "FLUX_LIMITOR_FOR_TRACERS", + "TYPE OF BOUNDARY CONDITION FOR KINETIC SCHEME" : "TYPE_OF_BOUNDARY_CONDITION_FOR_KINETIC_SCHEME", "CORIOLIS" : "CORIOLIS", "CORIOLIS COEFFICIENT" : "CORIOLIS_COEFFICIENT", "OPTION FOR TSUNAMI GENERATION" : "OPTION_FOR_TSUNAMI_GENERATION", @@ -467,7 +529,6 @@ dicoCasEnToCata = { "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", @@ -498,7 +559,6 @@ dicoCasEnToCata = { "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", @@ -508,7 +568,6 @@ dicoCasEnToCata = { "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", @@ -521,7 +580,6 @@ dicoCasEnToCata = { "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", @@ -538,7 +596,7 @@ dicoCasEnToCata = { "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", + "MIXING LENGTH MODEL COEFFICIENTS" : "MIXING_LENGTH_MODEL_COEFFICIENTS", "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", @@ -570,14 +628,27 @@ dicoCasEnToCata = { "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", - "NUMBER OF DROGUES" : "NUMBER_OF_DROGUES", + "MAXIMUM NUMBER OF DROGUES" : "MAXIMUM_NUMBER_OF_DROGUES", + "INITIAL DROGUES SAMPLING DENSITY" : "INITIAL_DROGUES_SAMPLING_DENSITY", "PRINTOUT PERIOD FOR DROGUES" : "PRINTOUT_PERIOD_FOR_DROGUES", - "DROGUES FILE" : "DROGUES_FILE", + "ASCII DROGUES FILE" : "ASCII_DROGUES_FILE", + "BINARY DROGUES FILE" : "BINARY_DROGUES_FILE", + "DROGUES FILE FORMAT" : "DROGUES_FILE_FORMAT", + "PREVIOUS DROGUES FILE" : "PREVIOUS_DROGUES_FILE", + "PREVIOUS DROGUES FILE FORMAT" : "PREVIOUS_DROGUES_FILE_FORMAT", + "DROGUES INITIAL POSITIONING DATA FILE" : "DROGUES_INITIAL_POSITIONING_DATA_FILE", + "FORMAT OF THE DROGUES POSITIONING DATA FILE" : "FORMAT_OF_THE_DROGUES_POSITIONING_DATA_FILE", "ALGAE TRANSPORT MODEL" : "ALGAE_TRANSPORT_MODEL", + "NUMBER OF ALGAE CLASSES" : "NUMBER_OF_ALGAE_CLASSES", "ALGAE TYPE" : "ALGAE_TYPE", "DIAMETER OF ALGAE" : "DIAMETER_OF_ALGAE", + "DURATION BEFORE ALGAE RELEASE" : "DURATION_BEFORE_ALGAE_RELEASE", "DENSITY OF ALGAE" : "DENSITY_OF_ALGAE", "THICKNESS OF ALGAE" : "THICKNESS_OF_ALGAE", + "ALGAE RELEASE TYPE" : "ALGAE_RELEASE_TYPE", + "WAVE ORBITAL VELOCITY THRESHOLD FOR ALGAE 1" : "WAVE_ORBITAL_VELOCITY_THRESHOLD_FOR_ALGAE_1", + "WAVE ORBITAL VELOCITY THRESHOLD FOR ALGAE 2" : "WAVE_ORBITAL_VELOCITY_THRESHOLD_FOR_ALGAE_2", + "RATE OF DEGRADATION FOR ALGAE" : "RATE_OF_DEGRADATION_FOR_ALGAE", "OIL SPILL MODEL" : "OIL_SPILL_MODEL", "OIL SPILL STEERING FILE" : "OIL_SPILL_STEERING_FILE", "STOCHASTIC DIFFUSION MODEL" : "STOCHASTIC_DIFFUSION_MODEL", @@ -585,6 +656,7 @@ dicoCasEnToCata = { "NUMBER OF WEIRS" : "NUMBER_OF_WEIRS", "WEIRS DATA FILE" : "WEIRS_DATA_FILE", "TYPE OF WEIRS" : "TYPE_OF_WEIRS", + "WEIRS DISCHARGE OUTPUT FILE" : "WEIRS_DISCHARGE_OUTPUT_FILE", "NUMBER OF CULVERTS" : "NUMBER_OF_CULVERTS", "CULVERTS DATA FILE" : "CULVERTS_DATA_FILE", "OPTION FOR CULVERTS" : "OPTION_FOR_CULVERTS", @@ -598,6 +670,8 @@ dicoCasEnToCata = { "COEFFICIENT TO CALIBRATE SEA LEVEL" : "COEFFICIENT_TO_CALIBRATE_SEA_LEVEL", "GLOBAL NUMBER OF THE POINT TO CALIBRATE HIGH WATER" : "GLOBAL_NUMBER_OF_THE_POINT_TO_CALIBRATE_HIGH_WATER", "MINOR CONSTITUENTS INFERENCE" : "MINOR_CONSTITUENTS_INFERENCE", + "INITIAL VELOCITIES COMPUTED BY TPXO" : "INITIAL_VELOCITIES_COMPUTED_BY_TPXO", + "MINIMUM DEPTH TO COMPUTE TIDAL VELOCITIES INITIAL CONDITIONS" : "MINIMUM_DEPTH_TO_COMPUTE_TIDAL_VELOCITIES_INITIAL_CONDITIONS", "OPTION FOR TIDAL BOUNDARY CONDITIONS" : "OPTION_FOR_TIDAL_BOUNDARY_CONDITIONS", "TIDAL DATA BASE" : "TIDAL_DATA_BASE", "HARMONIC CONSTANTS FILE" : "HARMONIC_CONSTANTS_FILE", @@ -607,10 +681,10 @@ dicoCasEnToCata = { "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", + "MINIMUM DEPTH TO COMPUTE TIDAL VELOCITIES BOUNDARY CONDITIONS" : "MINIMUM_DEPTH_TO_COMPUTE_TIDAL_VELOCITIES_BOUNDARY_CONDITIONS", "TIDE GENERATING FORCE" : "TIDE_GENERATING_FORCE", "COUPLING WITH" : "COUPLING_WITH", "NAMES OF CLANDESTINE VARIABLES" : "NAMES_OF_CLANDESTINE_VARIABLES", - "COUPLING DIRECTORY" : "COUPLING_DIRECTORY", "DELWAQ STEERING FILE" : "DELWAQ_STEERING_FILE", "DELWAQ PRINTOUT PERIOD" : "DELWAQ_PRINTOUT_PERIOD", "EXCHANGES BETWEEN NODES DELWAQ FILE" : "EXCHANGES_BETWEEN_NODES_DELWAQ_FILE", @@ -629,22 +703,20 @@ dicoCasEnToCata = { "SALINITY FOR DELWAQ" : "SALINITY_FOR_DELWAQ", "SISYPHE STEERING FILE" : "SISYPHE_STEERING_FILE", "COUPLING PERIOD FOR SISYPHE" : "COUPLING_PERIOD_FOR_SISYPHE", + "GAIA STEERING FILE" : "GAIA_STEERING_FILE", "TOMAWAC STEERING FILE" : "TOMAWAC_STEERING_FILE", "COUPLING PERIOD FOR TOMAWAC" : "COUPLING_PERIOD_FOR_TOMAWAC", "WAQTEL STEERING FILE" : "WAQTEL_STEERING_FILE", "KHIONE STEERING FILE" : "KHIONE_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", + "ICE PROCESSES" : "ICE_PROCESSES", "NESTOR" : "NESTOR", "NESTOR ACTION FILE" : "NESTOR_ACTION_FILE", "NESTOR POLYGON FILE" : "NESTOR_POLYGON_FILE", "NESTOR SURFACE REFERENCE FILE" : "NESTOR_SURFACE_REFERENCE_FILE", "NESTOR RESTART FILE" : "NESTOR_RESTART_FILE", + "LANGUAGE" : "LANGUAGE", + "STEERING FILE" : "STEERING_FILE", + "DICTIONARY" : "DICTIONARY", + "PARTITIONING TOOL" : "PARTITIONING_TOOL", + "CONCATENATE PARTEL OUTPUT" : "CONCATENATE_PARTEL_OUTPUT", } diff --git a/Telemac/telemac2d_dicoCasFrToCata.py b/Telemac/telemac2d_dicoCasFrToCata.py index 59f59785..4ba36934 100644 --- a/Telemac/telemac2d_dicoCasFrToCata.py +++ b/Telemac/telemac2d_dicoCasFrToCata.py @@ -14,6 +14,7 @@ dicoCataToFrTelemac = { "FORTRAN_FILE" : "FICHIER FORTRAN", "BOTTOM_TOPOGRAPHY_FILE" : "FICHIER DES FONDS", "BOTTOM_SMOOTHINGS" : "LISSAGES DU FOND", + "BOTTOM_SMOOTHINGS_AFTER_USER_MODIFICATIONS" : "LISSAGES DU FOND APRES MODIFICATIONS UTILISATEUR", "BOUNDARY_CONDITIONS_FILE" : "FICHIER DES CONDITIONS AUX LIMITES", "VALIDATION" : "VALIDATION", "REFERENCE_FILE_FORMAT" : "FORMAT DU FICHIER DE REFERENCE", @@ -24,6 +25,7 @@ dicoCataToFrTelemac = { "MAXIMUM_NUMBER_OF_SOURCES" : "NOMBRE MAXIMUM DE SOURCES", "MAXIMUM_NUMBER_OF_TRACERS" : "NOMBRE MAXIMUM DE TRACEURS", "VECTOR_LENGTH" : "LONGUEUR DU VECTEUR", + "SECURITY_COEFFICIENT_FOR_SCARACT" : "COEFFICIENT DE SECURITE POUR SCARACT", "COMPUTATION_CONTINUED" : "SUITE DE CALCUL", "PREVIOUS_COMPUTATION_FILE_FORMAT" : "FORMAT DU FICHIER DU CALCUL PRECEDENT", "PREVIOUS_COMPUTATION_FILE" : "FICHIER DU CALCUL PRECEDENT", @@ -40,6 +42,12 @@ dicoCataToFrTelemac = { "BINARY_RESULTS_FILE_FORMAT" : "FORMAT DU FICHIER DE RESULTATS BINAIRE", "BINARY_RESULTS_FILE" : "FICHIER DE RESULTATS BINAIRE", "FORMATTED_RESULTS_FILE" : "FICHIER DE RESULTATS FORMATE", + "FORMATTED_RESULTS_FILE_1" : "FICHIER DE RESULTATS FORMATE 1", + "FORMATTED_RESULTS_FILE_2" : "FICHIER DE RESULTATS FORMATE 2", + "FORMATTED_RESULTS_FILE_3" : "FICHIER DE RESULTATS FORMATE 3", + "FORMATTED_RESULTS_FILE_4" : "FICHIER DE RESULTATS FORMATE 4", + "FORMATTED_RESULTS_FILE_5" : "FICHIER DE RESULTATS FORMATE 5", + "FORMATTED_RESULTS_FILE_6" : "FICHIER DE RESULTATS FORMATE 6", "CONTROL_SECTIONS" : "SECTIONS DE CONTROLE", "PRINTING_CUMULATED_FLOWRATES" : "IMPRESSION DU CUMUL DES FLUX", "COMPATIBLE_COMPUTATION_OF_FLUXES" : "CALCUL COMPATIBLE DES FLUX", @@ -74,17 +82,23 @@ dicoCataToFrTelemac = { "FRICTION_COEFFICIENT" : "COEFFICIENT DE FROTTEMENT", "MANNING_DEFAULT_VALUE_FOR_COLEBROOK_WHITE_LAW" : "VALEUR PAR DEFAUT DU MANNING POUR LA LOI DE COLEBROOK-WHITE", "DEPTH_IN_FRICTION_TERMS" : "HAUTEUR DANS LES TERMES DE FROTTEMENT", - "NON_SUBMERGED_VEGETATION_FRICTION" : "FROTTEMENT POUR LA VEGETATION NON SUBMERGEE", - "DIAMETER_OF_ROUGHNESS_ELEMENTS" : "DIAMETRE DES ELEMENTS DE FROTTEMENT", - "SPACING_OF_ROUGHNESS_ELEMENTS" : "ESPACEMENT DES ELEMENTS DE FROTTEMENT", + "VEGETATION_FRICTION" : "FROTTEMENT POUR LA VEGETATION", "LAW_OF_FRICTION_ON_LATERAL_BOUNDARIES" : "LOI DE FROTTEMENT SUR LES PAROIS LATERALES", "ROUGHNESS_COEFFICIENT_OF_BOUNDARIES" : "COEFFICIENT DE RUGOSITE DES BORDS", "DEFINITION_OF_ZONES" : "DEFINITION DE ZONES", "ZONES_FILE" : "FICHIER DES ZONES", - "ICE_PROCESSES" : "PROCESSUS LIES AUX GLACES", + "NON_NEWTONIAN_MODEL" : "MODELE NON-NEWTONIEN", + "BINGHAM_OPTION" : "OPTION DU MODELE DE BINGHAM", + "NON_NEWTONIAN_VISCOSITY" : "VISCOSITE DU FLUIDE NON-NEWTONIEN", + "NON_NEWTONIAN_YIELD_STRESS" : "CONTRAINTE D'ELASTICITE DU FLUIDE NON-NEWTONIEN", + "NON_NEWTONIAN_LAMINAR_RESISTANCE_PARAMETER_K" : "RESISTANCE LAMINAIRE DU FLUIDE NON-NEWTONIEN", + "NON_NEWTONIAN_FLUID_DENSITY" : "DENSITE DU FLUIDE NON-NEWTONIEN", + "NON_NEWTONIAN_PSEUDO_BIPHASIC_MODEL" : "MODELE NON-NEWTONIEN PSEUDO DIPHASIQUE", + "HERSCHEL_BULKLEY_POWER_LAW_INDEX" : "INDICE POUR LE MODELE DE HERSCHEL-BULKLEY", "WIND" : "VENT", "OPTION_FOR_WIND" : "OPTION DU VENT", "COEFFICIENT_OF_WIND_INFLUENCE" : "COEFFICIENT D'INFLUENCE DU VENT", + "COEFFICIENT_OF_WIND_INFLUENCE_VARYING_WITH_WIND_SPEED" : "COEFFICIENT D'INFLUENCE DU VENT DEPENDANT DE LA VITESSE DU VENT", "WIND_VELOCITY_ALONG_X" : "VITESSE DU VENT SUIVANT X", "WIND_VELOCITY_ALONG_Y" : "VITESSE DU VENT SUIVANT Y", "SPEED_AND_DIRECTION_OF_WIND" : "VITESSE ET DIRECTION DU VENT", @@ -100,6 +114,10 @@ dicoCataToFrTelemac = { "BINARY_ATMOSPHERIC_DATA_FILE" : "FICHIER BINAIRE DE DONNEES ATMOSPHERIQUES", "BINARY_ATMOSPHERIC_DATA_FILE_FORMAT" : "FORMAT DU FICHIER BINAIRE DE DONNEES ATMOSPHERIQUES", "OPTION_FOR_INITIAL_ABSTRACTION_RATIO" : "OPTION POUR RATIO DES PERTES INITIALES", + "AIR_TEMPERATURE" : "TEMPERATURE DE L'AIR", + "CLOUD_COVER" : "NEBULOSITE", + "SOLAR_RADIATION" : "RAYONNEMENT SOLAIRE", + "VAPOROUS_PRESSURE" : "PRESSION DE VAPEUR SATURANTE", "WAVE_DRIVEN_CURRENTS" : "COURANTS DE HOULE", "RECORD_NUMBER_IN_WAVE_FILE" : "NUMERO DE L'ENREGISTREMENT DANS LE FICHIER DE HOULE", "WAVE_ENHANCED_FRICTION_FACTOR" : "AUGMENTATION DU FROTTEMENT PAR LA HOULE", @@ -116,6 +134,8 @@ dicoCataToFrTelemac = { "TYPE_OF_SOURCES" : "TYPE DES SOURCES", "SOURCES_FILE" : "FICHIER DES SOURCES", "GLOBAL_NUMBERS_OF_SOURCE_NODES" : "NUMEROS GLOBAUX DES NOEUDS DES SOURCES", + "SOURCE_REGIONS_DATA_FILE" : "FICHIER DES REGIONS DES SOURCES", + "MAXIMUM_NUMBER_OF_POINTS_FOR_SOURCES_REGIONS" : "NOMBRE MAXIMUM DE POINTS POUR DEFINIR DES SOURCES", "WATER_QUALITY_PROCESS" : "PROCESSUS QUALITE D'EAU", "WATER_DENSITY" : "MASSE VOLUMIQUE DE L'EAU", "GRAVITY_ACCELERATION" : "ACCELERATION DE LA PESANTEUR", @@ -123,6 +143,12 @@ dicoCataToFrTelemac = { "EQUATIONS" : "EQUATIONS", "TREATMENT_OF_THE_LINEAR_SYSTEM" : "TRAITEMENT DU SYSTEME LINEAIRE", "FINITE_VOLUME_SCHEME" : "SCHEMA EN VOLUMES FINIS", + "FINITE_VOLUME_SCHEME_SPACE_ORDER" : "ORDRE EN ESPACE DU SCHEMA VOLUME FINIS", + "FINITE_VOLUME_SCHEME_TIME_ORDER" : "ORDRE EN TEMPS DU SCHEMA VOLUME FINIS", + "FLUX_LIMITOR_FOR_H_PLUS_Z" : "LIMITEUR DE FLUX POUR H PLUS Z", + "FLUX_LIMITOR_FOR_U_AND_V" : "LIMITEUR DE FLUX POUR U ET V", + "FLUX_LIMITOR_FOR_TRACERS" : "LIMITEUR DE FLUX POUR LES TRACEURS", + "TYPE_OF_BOUNDARY_CONDITION_FOR_KINETIC_SCHEME" : "TYPE DE CONDITION A LA LIMITE POUR LE SCHEMA CINETIQUE", "CORIOLIS" : "CORIOLIS", "CORIOLIS_COEFFICIENT" : "COEFFICIENT DE CORIOLIS", "OPTION_FOR_TSUNAMI_GENERATION" : "OPTION POUR LA GENERATION DE TSUNAMI", @@ -142,7 +168,6 @@ dicoCataToFrTelemac = { "LIMIT_VALUES" : "VALEURS LIMITES", "VARIABLE_TIME_STEP" : "PAS DE TEMPS VARIABLE", "DESIRED_COURANT_NUMBER" : "NOMBRE DE COURANT SOUHAITE", - "ORIGIN_COORDINATES" : "COORDONNEES DE L'ORIGINE", "SPHERICAL_COORDINATES" : "COORDONNEES SPHERIQUES", "LATITUDE_OF_ORIGIN_POINT" : "LATITUDE DU POINT ORIGINE", "LONGITUDE_OF_ORIGIN_POINT" : "LONGITUDE DU POINT ORIGINE", @@ -173,7 +198,6 @@ dicoCataToFrTelemac = { "NUMBER_OF_GAUSS_POINTS_FOR_WEAK_CHARACTERISTICS" : "NOMBRE DE POINTS DE GAUSS POUR LES CARACTERISTIQUES FAIBLES", "MASS_LUMPING_FOR_WEAK_CHARACTERISTICS" : "MASS-LUMPING POUR LES CARACTERISTIQUES FAIBLES", "MAXIMUM_NUMBER_OF_ITERATIONS_FOR_ADVECTION_SCHEMES" : "MAXIMUM D'ITERATIONS POUR LES SCHEMAS DE CONVECTION", - "UPWIND_COEFFICIENTS" : "COEFFICIENTS DE DECENTREMENT", "MASS_LUMPING_ON_H" : "MASS-LUMPING SUR H", "MASS_LUMPING_ON_VELOCITY" : "MASS-LUMPING SUR LA VITESSE", "SCHEME_FOR_ADVECTION_OF_VELOCITIES" : "SCHEMA POUR LA CONVECTION DES VITESSES", @@ -183,7 +207,6 @@ dicoCataToFrTelemac = { "TREATMENT_OF_FLUXES_AT_THE_BOUNDARIES" : "TRAITEMENT DES FLUX AUX FRONTIERES", "NUMBER_OF_CORRECTIONS_OF_DISTRIBUTIVE_SCHEMES" : "NOMBRE DE CORRECTIONS DES SCHEMAS DISTRIBUTIFS", "NUMBER_OF_SUB_STEPS_OF_DISTRIBUTIVE_SCHEMES" : "NOMBRE DE SOUS-PAS DES SCHEMAS DISTRIBUTIFS", - "PSI_SCHEME_OPTION" : "OPTION DU SCHEMA PSI", "DIFFUSION_OF_VELOCITY" : "DIFFUSION DES VITESSES", "OPTION_FOR_THE_DIFFUSION_OF_VELOCITIES" : "OPTION POUR LA DIFFUSION DES VITESSES", "IMPLICITATION_FOR_DIFFUSION_OF_VELOCITY" : "IMPLICITATION POUR LA DIFFUSION DES VITESSES", @@ -196,8 +219,7 @@ dicoCataToFrTelemac = { "MATRIX_VECTOR_PRODUCT" : "PRODUIT MATRICE-VECTEUR", "NEWMARK_TIME_INTEGRATION_COEFFICIENT" : "COEFFICIENT D'INTEGRATION EN TEMPS DE NEWMARK", "ZERO" : "ZERO", - "PROPAGATION_OPTION" : "OPTION DE PROPAGATION", - "OPTION_OF_THE_HYDROSTATIC_RECONSTRUCTION" : "OPTION DE LA RECONSTRUCION HYDROSTATIQUE", + "OPTION_OF_THE_HYDROSTATIC_RECONSTRUCTION" : "OPTION DE LA RECONSTRUCTION HYDROSTATIQUE", "CONVERGENCE_STUDY" : "ETUDE DE CONVERGENCE", "REFINEMENT_LEVELS" : "NIVEAUX DE RAFFINEMENT", "VELOCITY_DIFFUSIVITY" : "COEFFICIENT DE DIFFUSION DES VITESSES", @@ -213,7 +235,7 @@ dicoCataToFrTelemac = { "ADVECTION_OF_K_AND_EPSILON" : "CONVECTION DE K ET EPSILON", "SCHEME_FOR_ADVECTION_OF_K_EPSILON" : "SCHEMA POUR LA CONVECTION DU K-EPSILON", "SCHEME_OPTION_FOR_ADVECTION_OF_K_EPSILON" : "OPTION DU SCHEMA POUR LA CONVECTION DU K-EPSILON", - "TIME_STEP_REDUCTION_FOR_K_EPSILON_MODEL" : "REDUCTION DU PAS DE TEMPS POUR LE MODELE K-EPSILON", + "MIXING_LENGTH_MODEL_COEFFICIENTS" : "COEFFICIENTS DU MODELE DE LONGUEUR DE MELANGE", "ACCURACY_OF_K" : "PRECISION SUR K", "ACCURACY_OF_EPSILON" : "PRECISION SUR EPSILON", "MAXIMUM_NUMBER_OF_ITERATIONS_FOR_K_AND_EPSILON" : "MAXIMUM D'ITERATIONS POUR K ET EPSILON", @@ -245,14 +267,27 @@ dicoCataToFrTelemac = { "SCHEME_FOR_ADVECTION_OF_TRACERS" : "SCHEMA POUR LA CONVECTION DES TRACEURS", "SCHEME_OPTION_FOR_ADVECTION_OF_TRACERS" : "OPTION DU SCHEMA POUR LA CONVECTION DES TRACEURS", "MASS_LUMPING_ON_TRACERS" : "MASS-LUMPING SUR LES TRACEURS", - "NUMBER_OF_DROGUES" : "NOMBRE DE FLOTTEURS", + "MAXIMUM_NUMBER_OF_DROGUES" : "NOMBRE MAXIMAL DE FLOTTEURS", + "INITIAL_DROGUES_SAMPLING_DENSITY" : "DENSITE INITIALE DE REPARTITION DES FLOTTEURS", "PRINTOUT_PERIOD_FOR_DROGUES" : "PERIODE POUR LES SORTIES DE FLOTTEURS", - "DROGUES_FILE" : "FICHIER DES FLOTTEURS", + "ASCII_DROGUES_FILE" : "FICHIER ASCII DES FLOTTEURS", + "BINARY_DROGUES_FILE" : "FICHIER BINAIRE DES FLOTTEURS", + "DROGUES_FILE_FORMAT" : "FORMAT DU FICHIER DES FLOTTEURS", + "PREVIOUS_DROGUES_FILE" : "FICHIER DES FLOTTEURS PRECEDENT", + "PREVIOUS_DROGUES_FILE_FORMAT" : "FORMAT DU FICHIER DES FLOTTEURS PRECEDENT", + "DROGUES_INITIAL_POSITIONING_DATA_FILE" : "FICHIER POSITIONNANT LES DROGUES INITIALES", + "FORMAT_OF_THE_DROGUES_POSITIONING_DATA_FILE" : "FORMAT DU FICHIER POSITIONNANT LES DROGUES", "ALGAE_TRANSPORT_MODEL" : "MODELE DE TRANSPORT DES ALGUES", + "NUMBER_OF_ALGAE_CLASSES" : "NOMBRE DE CLASSES D'ALGUES", "ALGAE_TYPE" : "TYPE DES ALGUES", "DIAMETER_OF_ALGAE" : "DIAMETRE DES ALGUES", + "DURATION_BEFORE_ALGAE_RELEASE" : "DUREE AVANT RELACHE DES ALGUES", "DENSITY_OF_ALGAE" : "MASSE VOLUMIQUE DES ALGUES", "THICKNESS_OF_ALGAE" : "EPAISSEUR DES ALGUES", + "ALGAE_RELEASE_TYPE" : "TYPE DE RELACHE DES ALGUES", + "WAVE_ORBITAL_VELOCITY_THRESHOLD_FOR_ALGAE_1" : "SEUIL DE LA VITESSE ORBITALE DE VAGUE POUR LES ALGUES 1", + "WAVE_ORBITAL_VELOCITY_THRESHOLD_FOR_ALGAE_2" : "SEUIL DE LA VITESSE ORBITALE DE VAGUE POUR LES ALGUES 2", + "RATE_OF_DEGRADATION_FOR_ALGAE" : "TAUX DE DEGRADATION POUR LES ALGUES", "OIL_SPILL_MODEL" : "MODELE DE NAPPES D'HYDROCARBURES", "OIL_SPILL_STEERING_FILE" : "FICHIER DE COMMANDES HYDROCARBURES", "STOCHASTIC_DIFFUSION_MODEL" : "MODELE DE DIFFUSION STOCHASTIQUE", @@ -260,6 +295,7 @@ dicoCataToFrTelemac = { "NUMBER_OF_WEIRS" : "NOMBRE DE SEUILS", "WEIRS_DATA_FILE" : "FICHIER DE DONNEES DES SEUILS", "TYPE_OF_WEIRS" : "TYPE DES SEUILS", + "WEIRS_DISCHARGE_OUTPUT_FILE" : "FICHIER DE SORTIE DES DEBITS DES SEUILS", "NUMBER_OF_CULVERTS" : "NOMBRE DE BUSES", "CULVERTS_DATA_FILE" : "FICHIER DE DONNEES DES BUSES", "OPTION_FOR_CULVERTS" : "OPTION POUR LES BUSES", @@ -273,6 +309,8 @@ dicoCataToFrTelemac = { "COEFFICIENT_TO_CALIBRATE_SEA_LEVEL" : "COEFFICIENT DE CALAGE DU NIVEAU DE MER", "GLOBAL_NUMBER_OF_THE_POINT_TO_CALIBRATE_HIGH_WATER" : "NUMERO GLOBAL DU POINT POUR CALER LA PLEINE MER", "MINOR_CONSTITUENTS_INFERENCE" : "INTERPOLATION DE COMPOSANTES MINEURES", + "INITIAL_VELOCITIES_COMPUTED_BY_TPXO" : "VITESSES INITIALES CALCULEES PAR TPXO", + "MINIMUM_DEPTH_TO_COMPUTE_TIDAL_VELOCITIES_INITIAL_CONDITIONS" : "HAUTEUR MINIMALE POUR LES CONDITIONS INITIALES DE COURANTS", "OPTION_FOR_TIDAL_BOUNDARY_CONDITIONS" : "OPTION POUR LES CONDITIONS AUX LIMITES DE MAREE", "TIDAL_DATA_BASE" : "BASE DE DONNEES DE MAREE", "HARMONIC_CONSTANTS_FILE" : "FICHIER DES CONSTANTES HARMONIQUES", @@ -282,10 +320,10 @@ dicoCataToFrTelemac = { "COEFFICIENT_TO_CALIBRATE_TIDAL_RANGE" : "COEFFICIENT DE CALAGE DU MARNAGE", "COEFFICIENT_TO_CALIBRATE_TIDAL_VELOCITIES" : "COEFFICIENT DE CALAGE DES VITESSES DE COURANT", "LOCAL_NUMBER_OF_THE_POINT_TO_CALIBRATE_HIGH_WATER" : "NUMERO LOCAL DU POINT POUR CALER LA PLEINE MER", + "MINIMUM_DEPTH_TO_COMPUTE_TIDAL_VELOCITIES_BOUNDARY_CONDITIONS" : "HAUTEUR MINIMALE POUR LES CONDITIONS AUX LIMITES DE COURANTS", "TIDE_GENERATING_FORCE" : "FORCE GENERATRICE DE LA MAREE", "COUPLING_WITH" : "COUPLAGE AVEC", "NAMES_OF_CLANDESTINE_VARIABLES" : "NOMS DES VARIABLES CLANDESTINES", - "COUPLING_DIRECTORY" : "DOSSIER DE COUPLAGE", "DELWAQ_STEERING_FILE" : "FICHIER DE COMMANDE DELWAQ", "DELWAQ_PRINTOUT_PERIOD" : "PERIODE DE SORTIE POUR DELWAQ", "EXCHANGES_BETWEEN_NODES_DELWAQ_FILE" : "FICHIER DELWAQ DES ECHANGES ENTRE NOEUDS", @@ -304,24 +342,22 @@ dicoCataToFrTelemac = { "SALINITY_FOR_DELWAQ" : "SALINITE POUR DELWAQ", "SISYPHE_STEERING_FILE" : "FICHIER DES PARAMETRES DE SISYPHE", "COUPLING_PERIOD_FOR_SISYPHE" : "PERIODE DE COUPLAGE POUR SISYPHE", + "GAIA_STEERING_FILE" : "FICHIER DES PARAMETRES DE GAIA", "TOMAWAC_STEERING_FILE" : "FICHIER DES PARAMETRES DE TOMAWAC", "COUPLING_PERIOD_FOR_TOMAWAC" : "PERIODE DE COUPLAGE POUR TOMAWAC", "WAQTEL_STEERING_FILE" : "FICHIER DES PARAMETRES DE WAQTEL", "KHIONE_STEERING_FILE" : "FICHIER DES PARAMETRES DE KHIONE", + "ICE_PROCESSES" : "PROCESSUS LIES AUX GLACES", + "NESTOR" : "NESTOR", + "NESTOR_ACTION_FILE" : "FICHIER DES PARAMETRES DE NESTOR", + "NESTOR_POLYGON_FILE" : "FICHIER DE POLYGONES DE NESTOR", + "NESTOR_SURFACE_REFERENCE_FILE" : "FICHIER DE SURFACE REFERENCE DE NESTOR", + "NESTOR_RESTART_FILE" : "FICHIER DE REPRISE DE NESTOR", "LANGUAGE" : "LANGUE", "STEERING_FILE" : "FICHIER DES PARAMETRES", "DICTIONARY" : "DICTIONNAIRE", "PARTITIONING_TOOL" : "PARTITIONNEUR", - "RELEASE" : "NUMERO DE VERSION", - "LIST_OF_FILES" : "LISTE DES FICHIERS", - "DESCRIPTION_OF_LIBRARIES" : "DESCRIPTION DES LIBRAIRIES", - "DEFAULT_EXECUTABLE" : "EXECUTABLE PAR DEFAUT", - "DEFAULT_PARALLEL_EXECUTABLE" : "EXECUTABLE PARALLELE PAR DEFAUT", - "NESTOR" : "NESTOR", - "NESTOR_ACTION_FILE" : "FICHIER DE NESTOR ACTION", - "NESTOR_POLYGON_FILE" : "FICHIER DE NESTOR POLYGON", - "NESTOR_SURFACE_REFERENCE_FILE" : "FICHIER DE NESTOR DE SURFACE REFERENCE", - "NESTOR_RESTART_FILE" : "FICHIER DE NESTOR RESTART", + "CONCATENATE_PARTEL_OUTPUT" : "CONCATENATION SORTIE PARTEL", } dicoCasFrToCata = { "TITRE" : "TITLE", @@ -339,6 +375,7 @@ dicoCasFrToCata = { "FICHIER FORTRAN" : "FORTRAN_FILE", "FICHIER DES FONDS" : "BOTTOM_TOPOGRAPHY_FILE", "LISSAGES DU FOND" : "BOTTOM_SMOOTHINGS", + "LISSAGES DU FOND APRES MODIFICATIONS UTILISATEUR" : "BOTTOM_SMOOTHINGS_AFTER_USER_MODIFICATIONS", "FICHIER DES CONDITIONS AUX LIMITES" : "BOUNDARY_CONDITIONS_FILE", "VALIDATION" : "VALIDATION", "FORMAT DU FICHIER DE REFERENCE" : "REFERENCE_FILE_FORMAT", @@ -349,6 +386,7 @@ dicoCasFrToCata = { "NOMBRE MAXIMUM DE SOURCES" : "MAXIMUM_NUMBER_OF_SOURCES", "NOMBRE MAXIMUM DE TRACEURS" : "MAXIMUM_NUMBER_OF_TRACERS", "LONGUEUR DU VECTEUR" : "VECTOR_LENGTH", + "COEFFICIENT DE SECURITE POUR SCARACT" : "SECURITY_COEFFICIENT_FOR_SCARACT", "SUITE DE CALCUL" : "COMPUTATION_CONTINUED", "FORMAT DU FICHIER DU CALCUL PRECEDENT" : "PREVIOUS_COMPUTATION_FILE_FORMAT", "FICHIER DU CALCUL PRECEDENT" : "PREVIOUS_COMPUTATION_FILE", @@ -365,6 +403,12 @@ dicoCasFrToCata = { "FORMAT DU FICHIER DE RESULTATS BINAIRE" : "BINARY_RESULTS_FILE_FORMAT", "FICHIER DE RESULTATS BINAIRE" : "BINARY_RESULTS_FILE", "FICHIER DE RESULTATS FORMATE" : "FORMATTED_RESULTS_FILE", + "FICHIER DE RESULTATS FORMATE 1" : "FORMATTED_RESULTS_FILE_1", + "FICHIER DE RESULTATS FORMATE 2" : "FORMATTED_RESULTS_FILE_2", + "FICHIER DE RESULTATS FORMATE 3" : "FORMATTED_RESULTS_FILE_3", + "FICHIER DE RESULTATS FORMATE 4" : "FORMATTED_RESULTS_FILE_4", + "FICHIER DE RESULTATS FORMATE 5" : "FORMATTED_RESULTS_FILE_5", + "FICHIER DE RESULTATS FORMATE 6" : "FORMATTED_RESULTS_FILE_6", "SECTIONS DE CONTROLE" : "CONTROL_SECTIONS", "IMPRESSION DU CUMUL DES FLUX" : "PRINTING_CUMULATED_FLOWRATES", "CALCUL COMPATIBLE DES FLUX" : "COMPATIBLE_COMPUTATION_OF_FLUXES", @@ -399,17 +443,23 @@ dicoCasFrToCata = { "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", + "FROTTEMENT POUR LA VEGETATION" : "VEGETATION_FRICTION", "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", - "PROCESSUS LIES AUX GLACES" : "ICE_PROCESSES", + "MODELE NON-NEWTONIEN" : "NON_NEWTONIAN_MODEL", + "OPTION DU MODELE DE BINGHAM" : "BINGHAM_OPTION", + "VISCOSITE DU FLUIDE NON-NEWTONIEN" : "NON_NEWTONIAN_VISCOSITY", + "CONTRAINTE D'ELASTICITE DU FLUIDE NON-NEWTONIEN" : "NON_NEWTONIAN_YIELD_STRESS", + "RESISTANCE LAMINAIRE DU FLUIDE NON-NEWTONIEN" : "NON_NEWTONIAN_LAMINAR_RESISTANCE_PARAMETER_K", + "DENSITE DU FLUIDE NON-NEWTONIEN" : "NON_NEWTONIAN_FLUID_DENSITY", + "MODELE NON-NEWTONIEN PSEUDO DIPHASIQUE" : "NON_NEWTONIAN_PSEUDO_BIPHASIC_MODEL", + "INDICE POUR LE MODELE DE HERSCHEL-BULKLEY" : "HERSCHEL_BULKLEY_POWER_LAW_INDEX", "VENT" : "WIND", "OPTION DU VENT" : "OPTION_FOR_WIND", "COEFFICIENT D'INFLUENCE DU VENT" : "COEFFICIENT_OF_WIND_INFLUENCE", + "COEFFICIENT D'INFLUENCE DU VENT DEPENDANT DE LA VITESSE DU VENT" : "COEFFICIENT_OF_WIND_INFLUENCE_VARYING_WITH_WIND_SPEED", "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", @@ -425,6 +475,10 @@ dicoCasFrToCata = { "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", + "TEMPERATURE DE L'AIR" : "AIR_TEMPERATURE", + "NEBULOSITE" : "CLOUD_COVER", + "RAYONNEMENT SOLAIRE" : "SOLAR_RADIATION", + "PRESSION DE VAPEUR SATURANTE" : "VAPOROUS_PRESSURE", "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", @@ -441,6 +495,8 @@ dicoCasFrToCata = { "TYPE DES SOURCES" : "TYPE_OF_SOURCES", "FICHIER DES SOURCES" : "SOURCES_FILE", "NUMEROS GLOBAUX DES NOEUDS DES SOURCES" : "GLOBAL_NUMBERS_OF_SOURCE_NODES", + "FICHIER DES REGIONS DES SOURCES" : "SOURCE_REGIONS_DATA_FILE", + "NOMBRE MAXIMUM DE POINTS POUR DEFINIR DES SOURCES" : "MAXIMUM_NUMBER_OF_POINTS_FOR_SOURCES_REGIONS", "PROCESSUS QUALITE D'EAU" : "WATER_QUALITY_PROCESS", "MASSE VOLUMIQUE DE L'EAU" : "WATER_DENSITY", "ACCELERATION DE LA PESANTEUR" : "GRAVITY_ACCELERATION", @@ -448,6 +504,12 @@ dicoCasFrToCata = { "EQUATIONS" : "EQUATIONS", "TRAITEMENT DU SYSTEME LINEAIRE" : "TREATMENT_OF_THE_LINEAR_SYSTEM", "SCHEMA EN VOLUMES FINIS" : "FINITE_VOLUME_SCHEME", + "ORDRE EN ESPACE DU SCHEMA VOLUME FINIS" : "FINITE_VOLUME_SCHEME_SPACE_ORDER", + "ORDRE EN TEMPS DU SCHEMA VOLUME FINIS" : "FINITE_VOLUME_SCHEME_TIME_ORDER", + "LIMITEUR DE FLUX POUR H PLUS Z" : "FLUX_LIMITOR_FOR_H_PLUS_Z", + "LIMITEUR DE FLUX POUR U ET V" : "FLUX_LIMITOR_FOR_U_AND_V", + "LIMITEUR DE FLUX POUR LES TRACEURS" : "FLUX_LIMITOR_FOR_TRACERS", + "TYPE DE CONDITION A LA LIMITE POUR LE SCHEMA CINETIQUE" : "TYPE_OF_BOUNDARY_CONDITION_FOR_KINETIC_SCHEME", "CORIOLIS" : "CORIOLIS", "COEFFICIENT DE CORIOLIS" : "CORIOLIS_COEFFICIENT", "OPTION POUR LA GENERATION DE TSUNAMI" : "OPTION_FOR_TSUNAMI_GENERATION", @@ -467,7 +529,6 @@ dicoCasFrToCata = { "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", @@ -498,7 +559,6 @@ dicoCasFrToCata = { "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", @@ -508,7 +568,6 @@ dicoCasFrToCata = { "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", @@ -521,8 +580,7 @@ dicoCasFrToCata = { "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", + "OPTION DE LA RECONSTRUCTION HYDROSTATIQUE" : "OPTION_OF_THE_HYDROSTATIC_RECONSTRUCTION", "ETUDE DE CONVERGENCE" : "CONVERGENCE_STUDY", "NIVEAUX DE RAFFINEMENT" : "REFINEMENT_LEVELS", "COEFFICIENT DE DIFFUSION DES VITESSES" : "VELOCITY_DIFFUSIVITY", @@ -538,7 +596,7 @@ dicoCasFrToCata = { "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", + "COEFFICIENTS DU MODELE DE LONGUEUR DE MELANGE" : "MIXING_LENGTH_MODEL_COEFFICIENTS", "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", @@ -570,14 +628,27 @@ dicoCasFrToCata = { "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", - "NOMBRE DE FLOTTEURS" : "NUMBER_OF_DROGUES", + "NOMBRE MAXIMAL DE FLOTTEURS" : "MAXIMUM_NUMBER_OF_DROGUES", + "DENSITE INITIALE DE REPARTITION DES FLOTTEURS" : "INITIAL_DROGUES_SAMPLING_DENSITY", "PERIODE POUR LES SORTIES DE FLOTTEURS" : "PRINTOUT_PERIOD_FOR_DROGUES", - "FICHIER DES FLOTTEURS" : "DROGUES_FILE", + "FICHIER ASCII DES FLOTTEURS" : "ASCII_DROGUES_FILE", + "FICHIER BINAIRE DES FLOTTEURS" : "BINARY_DROGUES_FILE", + "FORMAT DU FICHIER DES FLOTTEURS" : "DROGUES_FILE_FORMAT", + "FICHIER DES FLOTTEURS PRECEDENT" : "PREVIOUS_DROGUES_FILE", + "FORMAT DU FICHIER DES FLOTTEURS PRECEDENT" : "PREVIOUS_DROGUES_FILE_FORMAT", + "FICHIER POSITIONNANT LES DROGUES INITIALES" : "DROGUES_INITIAL_POSITIONING_DATA_FILE", + "FORMAT DU FICHIER POSITIONNANT LES DROGUES" : "FORMAT_OF_THE_DROGUES_POSITIONING_DATA_FILE", "MODELE DE TRANSPORT DES ALGUES" : "ALGAE_TRANSPORT_MODEL", + "NOMBRE DE CLASSES D'ALGUES" : "NUMBER_OF_ALGAE_CLASSES", "TYPE DES ALGUES" : "ALGAE_TYPE", "DIAMETRE DES ALGUES" : "DIAMETER_OF_ALGAE", + "DUREE AVANT RELACHE DES ALGUES" : "DURATION_BEFORE_ALGAE_RELEASE", "MASSE VOLUMIQUE DES ALGUES" : "DENSITY_OF_ALGAE", "EPAISSEUR DES ALGUES" : "THICKNESS_OF_ALGAE", + "TYPE DE RELACHE DES ALGUES" : "ALGAE_RELEASE_TYPE", + "SEUIL DE LA VITESSE ORBITALE DE VAGUE POUR LES ALGUES 1" : "WAVE_ORBITAL_VELOCITY_THRESHOLD_FOR_ALGAE_1", + "SEUIL DE LA VITESSE ORBITALE DE VAGUE POUR LES ALGUES 2" : "WAVE_ORBITAL_VELOCITY_THRESHOLD_FOR_ALGAE_2", + "TAUX DE DEGRADATION POUR LES ALGUES" : "RATE_OF_DEGRADATION_FOR_ALGAE", "MODELE DE NAPPES D'HYDROCARBURES" : "OIL_SPILL_MODEL", "FICHIER DE COMMANDES HYDROCARBURES" : "OIL_SPILL_STEERING_FILE", "MODELE DE DIFFUSION STOCHASTIQUE" : "STOCHASTIC_DIFFUSION_MODEL", @@ -585,6 +656,7 @@ dicoCasFrToCata = { "NOMBRE DE SEUILS" : "NUMBER_OF_WEIRS", "FICHIER DE DONNEES DES SEUILS" : "WEIRS_DATA_FILE", "TYPE DES SEUILS" : "TYPE_OF_WEIRS", + "FICHIER DE SORTIE DES DEBITS DES SEUILS" : "WEIRS_DISCHARGE_OUTPUT_FILE", "NOMBRE DE BUSES" : "NUMBER_OF_CULVERTS", "FICHIER DE DONNEES DES BUSES" : "CULVERTS_DATA_FILE", "OPTION POUR LES BUSES" : "OPTION_FOR_CULVERTS", @@ -598,6 +670,8 @@ dicoCasFrToCata = { "COEFFICIENT DE CALAGE DU NIVEAU DE MER" : "COEFFICIENT_TO_CALIBRATE_SEA_LEVEL", "NUMERO GLOBAL DU POINT POUR CALER LA PLEINE MER" : "GLOBAL_NUMBER_OF_THE_POINT_TO_CALIBRATE_HIGH_WATER", "INTERPOLATION DE COMPOSANTES MINEURES" : "MINOR_CONSTITUENTS_INFERENCE", + "VITESSES INITIALES CALCULEES PAR TPXO" : "INITIAL_VELOCITIES_COMPUTED_BY_TPXO", + "HAUTEUR MINIMALE POUR LES CONDITIONS INITIALES DE COURANTS" : "MINIMUM_DEPTH_TO_COMPUTE_TIDAL_VELOCITIES_INITIAL_CONDITIONS", "OPTION POUR LES CONDITIONS AUX LIMITES DE MAREE" : "OPTION_FOR_TIDAL_BOUNDARY_CONDITIONS", "BASE DE DONNEES DE MAREE" : "TIDAL_DATA_BASE", "FICHIER DES CONSTANTES HARMONIQUES" : "HARMONIC_CONSTANTS_FILE", @@ -607,10 +681,10 @@ dicoCasFrToCata = { "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", + "HAUTEUR MINIMALE POUR LES CONDITIONS AUX LIMITES DE COURANTS" : "MINIMUM_DEPTH_TO_COMPUTE_TIDAL_VELOCITIES_BOUNDARY_CONDITIONS", "FORCE GENERATRICE DE LA MAREE" : "TIDE_GENERATING_FORCE", "COUPLAGE AVEC" : "COUPLING_WITH", "NOMS DES VARIABLES CLANDESTINES" : "NAMES_OF_CLANDESTINE_VARIABLES", - "DOSSIER DE COUPLAGE" : "COUPLING_DIRECTORY", "FICHIER DE COMMANDE DELWAQ" : "DELWAQ_STEERING_FILE", "PERIODE DE SORTIE POUR DELWAQ" : "DELWAQ_PRINTOUT_PERIOD", "FICHIER DELWAQ DES ECHANGES ENTRE NOEUDS" : "EXCHANGES_BETWEEN_NODES_DELWAQ_FILE", @@ -629,22 +703,20 @@ dicoCasFrToCata = { "SALINITE POUR DELWAQ" : "SALINITY_FOR_DELWAQ", "FICHIER DES PARAMETRES DE SISYPHE" : "SISYPHE_STEERING_FILE", "PERIODE DE COUPLAGE POUR SISYPHE" : "COUPLING_PERIOD_FOR_SISYPHE", + "FICHIER DES PARAMETRES DE GAIA" : "GAIA_STEERING_FILE", "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", "FICHIER DES PARAMETRES DE KHIONE" : "KHIONE_STEERING_FILE", + "PROCESSUS LIES AUX GLACES" : "ICE_PROCESSES", + "NESTOR" : "NESTOR", + "FICHIER DES PARAMETRES DE NESTOR" : "NESTOR_ACTION_FILE", + "FICHIER DE POLYGONES DE NESTOR" : "NESTOR_POLYGON_FILE", + "FICHIER DE SURFACE REFERENCE DE NESTOR" : "NESTOR_SURFACE_REFERENCE_FILE", + "FICHIER DE REPRISE DE NESTOR" : "NESTOR_RESTART_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", - "NESTOR" : "NESTOR", - "FICHIER DE NESTOR ACTION" : "NESTOR_ACTION_FILE", - "FICHIER DE NESTOR POLYGON" : "NESTOR_POLYGON_FILE", - "FICHIER DE NESTOR DE SURFACE REFERENCE" : "NESTOR_SURFACE_REFERENCE_FILE", - "FICHIER DE NESTOR RESTART" : "NESTOR_RESTART_FILE", + "CONCATENATION SORTIE PARTEL" : "CONCATENATE_PARTEL_OUTPUT", } diff --git a/Telemac/telemac2d_enum_auto.py b/Telemac/telemac2d_enum_auto.py index 489fe61a..4fc0a11a 100644 --- a/Telemac/telemac2d_enum_auto.py +++ b/Telemac/telemac2d_enum_auto.py @@ -10,7 +10,447 @@ TelemacdicoEn = { 'B':"bottom elevation (m)", 'F':"Froude number", 'Q':"scalar flowrate of fluid (m2/s)", - 'T1':"tracer 1 etc.", + 'T*':"tracer* etc.", + 'T1':"tracer1 etc.", + 'T2':"tracer2 etc.", + 'T3':"tracer3 etc.", + 'T4':"tracer4 etc.", + 'T5':"tracer5 etc.", + 'T6':"tracer6 etc.", + 'T7':"tracer7 etc.", + 'T8':"tracer8 etc.", + 'T9':"tracer9 etc.", + 'T10':"tracer10 etc.", + 'T11':"tracer11 etc.", + 'T12':"tracer12 etc.", + 'T13':"tracer13 etc.", + 'T14':"tracer14 etc.", + 'T15':"tracer15 etc.", + 'T16':"tracer16 etc.", + 'T17':"tracer17 etc.", + 'T18':"tracer18 etc.", + 'T19':"tracer19 etc.", + 'T**':"tracer** etc.", + 'T*':"tracer* etc.", + 'T1':"tracer1 etc.", + 'T2':"tracer2 etc.", + 'T3':"tracer3 etc.", + 'T4':"tracer4 etc.", + 'T5':"tracer5 etc.", + 'T6':"tracer6 etc.", + 'T7':"tracer7 etc.", + 'T8':"tracer8 etc.", + 'T9':"tracer9 etc.", + 'T10':"tracer10 etc.", + 'T11':"tracer11 etc.", + 'T12':"tracer12 etc.", + 'T13':"tracer13 etc.", + 'T14':"tracer14 etc.", + 'T15':"tracer15 etc.", + 'T16':"tracer16 etc.", + 'T17':"tracer17 etc.", + 'T18':"tracer18 etc.", + 'T19':"tracer19 etc.", + 'T**':"tracer** etc.", + 'T*':"tracer* etc.", + 'T1':"tracer1 etc.", + 'T2':"tracer2 etc.", + 'T3':"tracer3 etc.", + 'T4':"tracer4 etc.", + 'T5':"tracer5 etc.", + 'T6':"tracer6 etc.", + 'T7':"tracer7 etc.", + 'T8':"tracer8 etc.", + 'T9':"tracer9 etc.", + 'T10':"tracer10 etc.", + 'T11':"tracer11 etc.", + 'T12':"tracer12 etc.", + 'T13':"tracer13 etc.", + 'T14':"tracer14 etc.", + 'T15':"tracer15 etc.", + 'T16':"tracer16 etc.", + 'T17':"tracer17 etc.", + 'T18':"tracer18 etc.", + 'T19':"tracer19 etc.", + 'T**':"tracer** etc.", + 'T*':"tracer* etc.", + 'T1':"tracer1 etc.", + 'T2':"tracer2 etc.", + 'T3':"tracer3 etc.", + 'T4':"tracer4 etc.", + 'T5':"tracer5 etc.", + 'T6':"tracer6 etc.", + 'T7':"tracer7 etc.", + 'T8':"tracer8 etc.", + 'T9':"tracer9 etc.", + 'T10':"tracer10 etc.", + 'T11':"tracer11 etc.", + 'T12':"tracer12 etc.", + 'T13':"tracer13 etc.", + 'T14':"tracer14 etc.", + 'T15':"tracer15 etc.", + 'T16':"tracer16 etc.", + 'T17':"tracer17 etc.", + 'T18':"tracer18 etc.", + 'T19':"tracer19 etc.", + 'T**':"tracer** etc.", + 'T*':"tracer* etc.", + 'T1':"tracer1 etc.", + 'T2':"tracer2 etc.", + 'T3':"tracer3 etc.", + 'T4':"tracer4 etc.", + 'T5':"tracer5 etc.", + 'T6':"tracer6 etc.", + 'T7':"tracer7 etc.", + 'T8':"tracer8 etc.", + 'T9':"tracer9 etc.", + 'T10':"tracer10 etc.", + 'T11':"tracer11 etc.", + 'T12':"tracer12 etc.", + 'T13':"tracer13 etc.", + 'T14':"tracer14 etc.", + 'T15':"tracer15 etc.", + 'T16':"tracer16 etc.", + 'T17':"tracer17 etc.", + 'T18':"tracer18 etc.", + 'T19':"tracer19 etc.", + 'T**':"tracer** etc.", + 'T*':"tracer* etc.", + 'T1':"tracer1 etc.", + 'T2':"tracer2 etc.", + 'T3':"tracer3 etc.", + 'T4':"tracer4 etc.", + 'T5':"tracer5 etc.", + 'T6':"tracer6 etc.", + 'T7':"tracer7 etc.", + 'T8':"tracer8 etc.", + 'T9':"tracer9 etc.", + 'T10':"tracer10 etc.", + 'T11':"tracer11 etc.", + 'T12':"tracer12 etc.", + 'T13':"tracer13 etc.", + 'T14':"tracer14 etc.", + 'T15':"tracer15 etc.", + 'T16':"tracer16 etc.", + 'T17':"tracer17 etc.", + 'T18':"tracer18 etc.", + 'T19':"tracer19 etc.", + 'T**':"tracer** etc.", + 'T*':"tracer* etc.", + 'T1':"tracer1 etc.", + 'T2':"tracer2 etc.", + 'T3':"tracer3 etc.", + 'T4':"tracer4 etc.", + 'T5':"tracer5 etc.", + 'T6':"tracer6 etc.", + 'T7':"tracer7 etc.", + 'T8':"tracer8 etc.", + 'T9':"tracer9 etc.", + 'T10':"tracer10 etc.", + 'T11':"tracer11 etc.", + 'T12':"tracer12 etc.", + 'T13':"tracer13 etc.", + 'T14':"tracer14 etc.", + 'T15':"tracer15 etc.", + 'T16':"tracer16 etc.", + 'T17':"tracer17 etc.", + 'T18':"tracer18 etc.", + 'T19':"tracer19 etc.", + 'T**':"tracer** etc.", + 'T*':"tracer* etc.", + 'T1':"tracer1 etc.", + 'T2':"tracer2 etc.", + 'T3':"tracer3 etc.", + 'T4':"tracer4 etc.", + 'T5':"tracer5 etc.", + 'T6':"tracer6 etc.", + 'T7':"tracer7 etc.", + 'T8':"tracer8 etc.", + 'T9':"tracer9 etc.", + 'T10':"tracer10 etc.", + 'T11':"tracer11 etc.", + 'T12':"tracer12 etc.", + 'T13':"tracer13 etc.", + 'T14':"tracer14 etc.", + 'T15':"tracer15 etc.", + 'T16':"tracer16 etc.", + 'T17':"tracer17 etc.", + 'T18':"tracer18 etc.", + 'T19':"tracer19 etc.", + 'T**':"tracer** etc.", + 'T*':"tracer* etc.", + 'T1':"tracer1 etc.", + 'T2':"tracer2 etc.", + 'T3':"tracer3 etc.", + 'T4':"tracer4 etc.", + 'T5':"tracer5 etc.", + 'T6':"tracer6 etc.", + 'T7':"tracer7 etc.", + 'T8':"tracer8 etc.", + 'T9':"tracer9 etc.", + 'T10':"tracer10 etc.", + 'T11':"tracer11 etc.", + 'T12':"tracer12 etc.", + 'T13':"tracer13 etc.", + 'T14':"tracer14 etc.", + 'T15':"tracer15 etc.", + 'T16':"tracer16 etc.", + 'T17':"tracer17 etc.", + 'T18':"tracer18 etc.", + 'T19':"tracer19 etc.", + 'T**':"tracer** etc.", + 'T*':"tracer* etc.", + 'T1':"tracer1 etc.", + 'T2':"tracer2 etc.", + 'T3':"tracer3 etc.", + 'T4':"tracer4 etc.", + 'T5':"tracer5 etc.", + 'T6':"tracer6 etc.", + 'T7':"tracer7 etc.", + 'T8':"tracer8 etc.", + 'T9':"tracer9 etc.", + 'T10':"tracer10 etc.", + 'T11':"tracer11 etc.", + 'T12':"tracer12 etc.", + 'T13':"tracer13 etc.", + 'T14':"tracer14 etc.", + 'T15':"tracer15 etc.", + 'T16':"tracer16 etc.", + 'T17':"tracer17 etc.", + 'T18':"tracer18 etc.", + 'T19':"tracer19 etc.", + 'T**':"tracer** etc.", + 'T*':"tracer* etc.", + 'T1':"tracer1 etc.", + 'T2':"tracer2 etc.", + 'T3':"tracer3 etc.", + 'T4':"tracer4 etc.", + 'T5':"tracer5 etc.", + 'T6':"tracer6 etc.", + 'T7':"tracer7 etc.", + 'T8':"tracer8 etc.", + 'T9':"tracer9 etc.", + 'T10':"tracer10 etc.", + 'T11':"tracer11 etc.", + 'T12':"tracer12 etc.", + 'T13':"tracer13 etc.", + 'T14':"tracer14 etc.", + 'T15':"tracer15 etc.", + 'T16':"tracer16 etc.", + 'T17':"tracer17 etc.", + 'T18':"tracer18 etc.", + 'T19':"tracer19 etc.", + 'T**':"tracer** etc.", + 'T*':"tracer* etc.", + 'T1':"tracer1 etc.", + 'T2':"tracer2 etc.", + 'T3':"tracer3 etc.", + 'T4':"tracer4 etc.", + 'T5':"tracer5 etc.", + 'T6':"tracer6 etc.", + 'T7':"tracer7 etc.", + 'T8':"tracer8 etc.", + 'T9':"tracer9 etc.", + 'T10':"tracer10 etc.", + 'T11':"tracer11 etc.", + 'T12':"tracer12 etc.", + 'T13':"tracer13 etc.", + 'T14':"tracer14 etc.", + 'T15':"tracer15 etc.", + 'T16':"tracer16 etc.", + 'T17':"tracer17 etc.", + 'T18':"tracer18 etc.", + 'T19':"tracer19 etc.", + 'T**':"tracer** etc.", + 'T*':"tracer* etc.", + 'T1':"tracer1 etc.", + 'T2':"tracer2 etc.", + 'T3':"tracer3 etc.", + 'T4':"tracer4 etc.", + 'T5':"tracer5 etc.", + 'T6':"tracer6 etc.", + 'T7':"tracer7 etc.", + 'T8':"tracer8 etc.", + 'T9':"tracer9 etc.", + 'T10':"tracer10 etc.", + 'T11':"tracer11 etc.", + 'T12':"tracer12 etc.", + 'T13':"tracer13 etc.", + 'T14':"tracer14 etc.", + 'T15':"tracer15 etc.", + 'T16':"tracer16 etc.", + 'T17':"tracer17 etc.", + 'T18':"tracer18 etc.", + 'T19':"tracer19 etc.", + 'T**':"tracer** etc.", + 'T*':"tracer* etc.", + 'T1':"tracer1 etc.", + 'T2':"tracer2 etc.", + 'T3':"tracer3 etc.", + 'T4':"tracer4 etc.", + 'T5':"tracer5 etc.", + 'T6':"tracer6 etc.", + 'T7':"tracer7 etc.", + 'T8':"tracer8 etc.", + 'T9':"tracer9 etc.", + 'T10':"tracer10 etc.", + 'T11':"tracer11 etc.", + 'T12':"tracer12 etc.", + 'T13':"tracer13 etc.", + 'T14':"tracer14 etc.", + 'T15':"tracer15 etc.", + 'T16':"tracer16 etc.", + 'T17':"tracer17 etc.", + 'T18':"tracer18 etc.", + 'T19':"tracer19 etc.", + 'T**':"tracer** etc.", + 'T*':"tracer* etc.", + 'T1':"tracer1 etc.", + 'T2':"tracer2 etc.", + 'T3':"tracer3 etc.", + 'T4':"tracer4 etc.", + 'T5':"tracer5 etc.", + 'T6':"tracer6 etc.", + 'T7':"tracer7 etc.", + 'T8':"tracer8 etc.", + 'T9':"tracer9 etc.", + 'T10':"tracer10 etc.", + 'T11':"tracer11 etc.", + 'T12':"tracer12 etc.", + 'T13':"tracer13 etc.", + 'T14':"tracer14 etc.", + 'T15':"tracer15 etc.", + 'T16':"tracer16 etc.", + 'T17':"tracer17 etc.", + 'T18':"tracer18 etc.", + 'T19':"tracer19 etc.", + 'T**':"tracer** etc.", + 'T*':"tracer* etc.", + 'T1':"tracer1 etc.", + 'T2':"tracer2 etc.", + 'T3':"tracer3 etc.", + 'T4':"tracer4 etc.", + 'T5':"tracer5 etc.", + 'T6':"tracer6 etc.", + 'T7':"tracer7 etc.", + 'T8':"tracer8 etc.", + 'T9':"tracer9 etc.", + 'T10':"tracer10 etc.", + 'T11':"tracer11 etc.", + 'T12':"tracer12 etc.", + 'T13':"tracer13 etc.", + 'T14':"tracer14 etc.", + 'T15':"tracer15 etc.", + 'T16':"tracer16 etc.", + 'T17':"tracer17 etc.", + 'T18':"tracer18 etc.", + 'T19':"tracer19 etc.", + 'T**':"tracer** etc.", + 'T*':"tracer* etc.", + 'T1':"tracer1 etc.", + 'T2':"tracer2 etc.", + 'T3':"tracer3 etc.", + 'T4':"tracer4 etc.", + 'T5':"tracer5 etc.", + 'T6':"tracer6 etc.", + 'T7':"tracer7 etc.", + 'T8':"tracer8 etc.", + 'T9':"tracer9 etc.", + 'T10':"tracer10 etc.", + 'T11':"tracer11 etc.", + 'T12':"tracer12 etc.", + 'T13':"tracer13 etc.", + 'T14':"tracer14 etc.", + 'T15':"tracer15 etc.", + 'T16':"tracer16 etc.", + 'T17':"tracer17 etc.", + 'T18':"tracer18 etc.", + 'T19':"tracer19 etc.", + 'T**':"tracer** etc.", + 'T*':"tracer* etc.", + 'T1':"tracer1 etc.", + 'T2':"tracer2 etc.", + 'T3':"tracer3 etc.", + 'T4':"tracer4 etc.", + 'T5':"tracer5 etc.", + 'T6':"tracer6 etc.", + 'T7':"tracer7 etc.", + 'T8':"tracer8 etc.", + 'T9':"tracer9 etc.", + 'T10':"tracer10 etc.", + 'T11':"tracer11 etc.", + 'T12':"tracer12 etc.", + 'T13':"tracer13 etc.", + 'T14':"tracer14 etc.", + 'T15':"tracer15 etc.", + 'T16':"tracer16 etc.", + 'T17':"tracer17 etc.", + 'T18':"tracer18 etc.", + 'T19':"tracer19 etc.", + 'T**':"tracer** etc.", + 'T*':"tracer* etc.", + 'T1':"tracer1 etc.", + 'T2':"tracer2 etc.", + 'T3':"tracer3 etc.", + 'T4':"tracer4 etc.", + 'T5':"tracer5 etc.", + 'T6':"tracer6 etc.", + 'T7':"tracer7 etc.", + 'T8':"tracer8 etc.", + 'T9':"tracer9 etc.", + 'T10':"tracer10 etc.", + 'T11':"tracer11 etc.", + 'T12':"tracer12 etc.", + 'T13':"tracer13 etc.", + 'T14':"tracer14 etc.", + 'T15':"tracer15 etc.", + 'T16':"tracer16 etc.", + 'T17':"tracer17 etc.", + 'T18':"tracer18 etc.", + 'T19':"tracer19 etc.", + 'T**':"tracer** etc.", + 'T*':"tracer* etc.", + 'T1':"tracer1 etc.", + 'T2':"tracer2 etc.", + 'T3':"tracer3 etc.", + 'T4':"tracer4 etc.", + 'T5':"tracer5 etc.", + 'T6':"tracer6 etc.", + 'T7':"tracer7 etc.", + 'T8':"tracer8 etc.", + 'T9':"tracer9 etc.", + 'T10':"tracer10 etc.", + 'T11':"tracer11 etc.", + 'T12':"tracer12 etc.", + 'T13':"tracer13 etc.", + 'T14':"tracer14 etc.", + 'T15':"tracer15 etc.", + 'T16':"tracer16 etc.", + 'T17':"tracer17 etc.", + 'T18':"tracer18 etc.", + 'T19':"tracer19 etc.", + 'T**':"tracer** etc.", + 'T*':"tracer* etc.", + 'T1':"tracer1 etc.", + 'T2':"tracer2 etc.", + 'T3':"tracer3 etc.", + 'T4':"tracer4 etc.", + 'T5':"tracer5 etc.", + 'T6':"tracer6 etc.", + 'T7':"tracer7 etc.", + 'T8':"tracer8 etc.", + 'T9':"tracer9 etc.", + 'T10':"tracer10 etc.", + 'T11':"tracer11 etc.", + 'T12':"tracer12 etc.", + 'T13':"tracer13 etc.", + 'T14':"tracer14 etc.", + 'T15':"tracer15 etc.", + 'T16':"tracer16 etc.", + 'T17':"tracer17 etc.", + 'T18':"tracer18 etc.", + 'T19':"tracer19 etc.", + 'T**':"tracer** etc.", 'T*':"All the tracers 1 to 9.", 'T1*':"All the tracers 10 to 19.", 'K':"turbulent kinetic energy in k-epsilon model (J/kg)", @@ -25,18 +465,22 @@ TelemacdicoEn = { 'W':"friction coefficient", 'A':"drift along x (m)", 'G':"drift along y (m)", - 'L':"Courant number ", + '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. ", - 'ZRL':"reference level for Nestor ", + 'MAXZ':"maximum elevation (m)", + 'TMXZ':"time of maximum elevation (s)", + 'MAXV':"maximum velocity (m/s)", + 'TMXV':"time of maximum velocity (s)", + 'US':"friction velocity (m/s)", + 'G1':"gradient 1, etc.", + 'TAU_S':"TAU_S", + '1/R':"1/R (1/m)", + 'OMEGA':"OMEGA", + 'WDIST':"distance to the closest wall (m)", + 'ZRL':"reference level for Nestor (m)", }, 'VARIABLES_TO_BE_PRINTED' : { 'U':"velocity along x axis (m/s)", @@ -50,7 +494,7 @@ TelemacdicoEn = { '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)", + 'D':"turbulent viscosity (m2/s)", 'I':"flowrate along x axis (m2/s)", 'J':"flowrate along y axis (m2/s)", 'M':"scalar velocity (m/s)", @@ -60,12 +504,22 @@ TelemacdicoEn = { 'W':"friction coefficient", 'A':"drift along x (m)", 'G':"drift along y (m)", - 'L':"nombre de courants ", + 'L':"Courant number", 'N':"supplementary variable N", 'O':"supplementary variable O", 'R':"supplementary variable R", 'Z':"supplementary variable Z", - 'Gn':"gradient 1, etc.", + 'MAXZ':"maximum elevation (m)", + 'TMXZ':"time of maximum elevation (s)", + 'MAXV':"maximum velocity (m/s)", + 'TMXV':"time of maximum velocity (s)", + 'US':"friction velocity (m/s)", + 'G1':"gradient 1, etc.", + 'TAU_S':"TAU_S", + '1/R':"1/R (1/m)", + 'OMEGA':"OMEGA", + 'WDIST':"distance to the closest wall (m)", + 'ZRL':"reference level for Nestor (m)", }, 'STAGE_DISCHARGE_CURVES' : { 0:"no", @@ -121,25 +575,24 @@ TelemacdicoEn = { 'IDENTIFICATION_METHOD' : { 0:"list of tests", 1:"gradient simple", - 2:"conj gradient", - 3:"Lagrange interp.", + 2:"conjugate gradient", + 3:"Lagrange interpolation", }, 'TYPE_OF_SOURCES' : { 1:"Normal", 2:"Dirac", }, 'TREATMENT_OF_THE_LINEAR_SYSTEM' : { - 1:"coupled", + 1:"Coupled", 2:"Wave equation", }, '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", + 1:"kinetic", + 3:"Zokagoa scheme", + 4:"Tchamen scheme", + 5:"HLLC scheme", + 6:"WAF scheme", }, 'OPTION_FOR_TSUNAMI_GENERATION' : { 0:"No Tsunami", @@ -151,9 +604,9 @@ TelemacdicoEn = { 3:"LATITUDE LONGITUDE", }, 'SOLVER' : { - 3:"conjugate gradient on a normal equation", 1:"conjugate gradient", 2:"conjugate residual", + 3:"conjugate gradient on a normal equation", 4:"minimum error", 6:"cgstab", 7:"gmres", @@ -164,12 +617,13 @@ TelemacdicoEn = { 0:"no preconditioning", 3:"block-diagonal (4-9 matrices)", 5:"absolute value of diagonal", - 7:"crout", - 11:"gauss-seidel", - 14:"diagonal and crout", + 7:"Crout", + 11:"Gauss-Seidel", + 13:"Supplied by the user", + 14:"diagonal and Crout", }, 'FINITE_ELEMENT_ASSEMBLY' : { - 1:"normal", + 1:"Normal", 2:"Integer I8", 3:"Compensated", }, @@ -217,10 +671,6 @@ TelemacdicoEn = { 1:"Priority to prescribed values", 2:"Priority to fluxes", }, -'PSI_SCHEME_OPTION' : { - 1:"explicit", - 2:"predictor-corrector", - }, 'OPTION_FOR_THE_DIFFUSION_OF_VELOCITIES' : { 1:"div( nu grad(U) )", 2:"1/h div ( h nu grad(U)", @@ -239,10 +689,10 @@ TelemacdicoEn = { }, 'SOLVER_FOR_K_EPSILON_MODEL' : { 1:"conjugate gradient", - 2:"conjugate residuals", + 2:"conjugate residual", 3:"conjugate gradient on normal equation", 4:"minimum error", - 5:"conjugate gradient squared", + 5:"squared conjugate gradient", 6:"conjugate gradient squared stabilised (cgstab)", 7:"gmres (see option for the solver for k-epsilon model)", 8:"direct", @@ -250,8 +700,8 @@ TelemacdicoEn = { 'PRECONDITIONING_FOR_K_EPSILON_MODEL' : { 2:"diagonal", 0:"no preconditioning", - 7:"crout", - 14:"diagonal and crout", + 7:"Crout", + 14:"diagonal and Crout", }, 'TURBULENCE_REGIME_FOR_SOLID_BOUNDARIES' : { 1:"smooth", @@ -274,6 +724,7 @@ TelemacdicoEn = { 3:"LIKE 1 BUT WITH POROSITY (DEFINA METHOD)", }, 'TREATMENT_OF_NEGATIVE_DEPTHS' : { + 0:"NO TREATMENT", 1:"SMOOTHING", 2:"FLUX CONTROL", 3:"FLUX CONTROL (ERIA)", @@ -285,14 +736,14 @@ TelemacdicoEn = { 4:"minimum error", 5:"squared conjugate gradient", 6:"cgstab", - 7:"gmres (see option for the solver for tracer diffusion)", + 7:"gmres (see solver option for tracers diffusion)", 8:"direct", }, 'PRECONDITIONING_FOR_DIFFUSION_OF_TRACERS' : { - 0:"no preconditioning ", + 0:"no preconditioning", 2:"diagonal", - 7:"crout", - 14:"diagonal and crout", + 7:"Crout", + 14:"diagonal and Crout", }, 'OPTION_FOR_THE_DIFFUSION_OF_TRACERS' : { 1:"div( nu grad(T) )", @@ -315,6 +766,10 @@ TelemacdicoEn = { 3:"PELVETIOPSIS LIMITATA", 4:"GIGARTINA LEPTORHYNCHOS", }, +'ALGAE_RELEASE_TYPE' : { + 1:"TIMED", + 2:"DISLODGEMENT", + }, 'STOCHASTIC_DIFFUSION_MODEL' : { 0:"No model", 1:"brownian movement", @@ -332,16 +787,6 @@ TelemacdicoEn = { 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", - 93:"LAMBERT 93", - 30:"UTM ZONE, E.G.", - }, 'OPTION_FOR_TIDAL_BOUNDARY_CONDITIONS' : { 0:"No tide", 1:"Real tide (recommended methodology)", @@ -367,14 +812,14 @@ 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)", + '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)", - 'T1':"traceur 1, etc.", - 'T*':"Tous les traceurs de 1a 9.", + 'Ti':"traceur i etc.", + 'T*':"Tous les traceurs de 1 a 9.", 'T1*':"Tous les traceurs 10 a 19.", 'K':"energie turbulente du modele k-epsilon (J/kg)", 'E':"dissipation de l energie turbulente (W/kg)", @@ -385,21 +830,25 @@ TelemacdicoFr = { '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 ", + 'W':"coefficient de frottement sur le fond", 'A':"derive en x (m)", 'G':"derive en y (m)", - 'L':"nombre de Courant ", + '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. ", - 'ZRL':"reference level for Nestor ", + 'MAXZ':"cote maximum (m)", + 'TMXZ':"temps de la cote maximum (s)", + 'MAXV':"vitesse maximum (m/s)", + 'TMXV':"temps de la vitesse maximum (s)", + 'US':"vitesse de frottement (m/s)", + 'G1':"gradient 1, etc.", + 'TAU_S':"TAU_S", + '1/R':"1/R (1/m)", + 'OMEGA':"OMEGA", + 'WDIST':"distance au mur le plus proche (m)", + 'ZRL':"niveau de reference pour Nestor (m)", }, 'VARIABLES_TO_BE_PRINTED' : { 'U':"vitesse suivant l axe des x (m/s)", @@ -413,7 +862,7 @@ TelemacdicoFr = { '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)", + '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)", @@ -423,12 +872,22 @@ TelemacdicoFr = { 'W':"coefficient de frottement sur le fond", 'A':"derive en x (m)", 'G':"derive en y (m)", - 'L':"nombre de courants ", + 'L':"nombre de Courant", 'N':"variable supplementaire N", 'O':"variable supplementaire O", 'R':"variable supplementaire R", 'Z':"variable supplementaire Z", - 'Gn':"gradient 1, etc.", + 'MAXZ':"cote maximum (m)", + 'TMXZ':"temps de la cote maximum (s)", + 'MAXV':"vitesse maximum (m/s)", + 'TMXV':"temps de la vitesse maximum (s)", + 'US':"vitesse de frottement (m/s)", + 'G1':"gradient 1, etc.", + 'TAU_S':"TAU_S", + '1/R':"1/R (1/m)", + 'OMEGA':"OMEGA", + 'WDIST':"distance au mur le plus proche (m)", + 'ZRL':"niveau de reference pour Nestor (m)", }, 'STAGE_DISCHARGE_CURVES' : { 0:"non", @@ -484,25 +943,24 @@ TelemacdicoFr = { 'IDENTIFICATION_METHOD' : { 0:"plan d experience", 1:"gradient simple", - 2:"gradient conj", - 3:"interp. de Lagrange", + 2:"gradient conjugue", + 3:"interpolation de Lagrange", }, 'TYPE_OF_SOURCES' : { 1:"Normal", 2:"Dirac", }, 'TREATMENT_OF_THE_LINEAR_SYSTEM' : { - 1:"traitement couple", + 1:"Traitement couple", 2:"Equation d onde", }, 'FINITE_VOLUME_SCHEME' : { 0:"schema de Roe", - 1:"schema cinetique ordre 1", - 2:"schema cinetique ordre 2", - 3:"schema Zokagoa ordre 1", - 4:"schema Tchamen ordre 1", - 5:"schema HLLC ordre 1", - 6:"schema WAF ordre 2", + 1:"schema cinetique", + 3:"schema Zokagoa", + 4:"schema Tchamen", + 5:"schema HLLC", + 6:"schema WAF", }, 'OPTION_FOR_TSUNAMI_GENERATION' : { 0:"Pas de Tsunami", @@ -514,9 +972,9 @@ TelemacdicoFr = { 3:"LATITUDE LONGITUDE", }, 'SOLVER' : { + 1:"gradient conjugue", + 2:"residu conjugue", 3:"equation normale", - 1:"gradient conjuge", - 2:"residu conjuge", 4:"erreur minimale", 6:"cgstab", 7:"gmres", @@ -527,12 +985,13 @@ TelemacdicoFr = { 0:"aucun", 3:"bloc-diagonal (4 ou 9 matrices)", 5:"valeur absolue diagonale", - 7:"crout", - 11:"gauss-seidel", - 14:"diagonal et crout", + 7:"Crout", + 11:"Gauss-Seidel", + 13:"Fourni par l utilisateur", + 14:"diagonal et Crout", }, 'FINITE_ELEMENT_ASSEMBLY' : { - 1:"normal", + 1:"Normal", 2:"Entier I8", 3:"Compense", }, @@ -580,10 +1039,6 @@ TelemacdicoFr = { 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)", @@ -597,13 +1052,13 @@ TelemacdicoFr = { 2:"ELDER", 3:"MODELE K-EPSILON", 4:"SMAGORINSKI", - 5:"MIXING LENGTH", + 5:"LONGUEUR DE MELANGE", 6:"SPALART-ALLMARAS", }, 'SOLVER_FOR_K_EPSILON_MODEL' : { 1:"gradient conjugue", - 2:"residu conjuge", - 3:"gradient conjugue sur equation normal", + 2:"residu conjugue", + 3:"gradient conjugue sur equation normale", 4:"erreur minimale", 5:"gradient conjugue carre", 6:"gradient conjugue carre stabilise (cgstab)", @@ -613,8 +1068,8 @@ TelemacdicoFr = { 'PRECONDITIONING_FOR_K_EPSILON_MODEL' : { 2:"diagonal", 0:"aucun", - 7:"crout", - 14:"diagonal et crout", + 7:"Crout", + 14:"diagonal et Crout", }, 'TURBULENCE_REGIME_FOR_SOLID_BOUNDARIES' : { 1:"lisse", @@ -637,25 +1092,26 @@ TelemacdicoFr = { 3:"COMME 1 MAIS AVEC POROSITE (METHODE DEFINA)", }, 'TREATMENT_OF_NEGATIVE_DEPTHS' : { + 0:"PAS DE TRAITEMENT", 1:"LISSAGE", 2:"LIMITATION DES FLUX", 3:"LIMITATION DES FLUX (ERIA)", }, 'SOLVER_FOR_DIFFUSION_OF_TRACERS' : { - 1:"gradient conjuge", - 2:"residu conjuge", - 3:"gradient conjuge sur equation normale", + 1:"gradient conjugue", + 2:"residu conjugue", + 3:"gradient conjugue sur equation normale", 4:"erreur minimale", - 5:"gradient conjuge carre", + 5:"gradient conjugue carre", 6:"cgstab", - 7:"gmres (voir ausi option du solveur)", + 7:"gmres (cf aussi option du solveur pour la diffusion des traceurs)", 8:"direct", }, 'PRECONDITIONING_FOR_DIFFUSION_OF_TRACERS' : { 0:"aucun", 2:"diagonal", - 7:"crout", - 14:"diagonal et crout", + 7:"Crout", + 14:"diagonal et Crout", }, 'OPTION_FOR_THE_DIFFUSION_OF_TRACERS' : { 1:"div( nu grad(T) )", @@ -678,6 +1134,10 @@ TelemacdicoFr = { 3:"PELVETIOPSIS LIMITATA", 4:"GIGARTINA LEPTORHYNCHOS", }, +'ALGAE_RELEASE_TYPE' : { + 1:"PERIODE", + 2:"DEPLACEMENT", + }, 'STOCHASTIC_DIFFUSION_MODEL' : { 0:"Pas de modele", 1:"mouvement brownien", @@ -695,16 +1155,6 @@ TelemacdicoFr = { 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", - 93:"LAMBERT 93", - 30:"ZONE UTM, PAR EXEMPLE", - }, 'OPTION_FOR_TIDAL_BOUNDARY_CONDITIONS' : { 0:"Pas de maree", 1:"Maree reelle (methodologie recommandee)", @@ -743,6 +1193,7 @@ DicoCasFrToCata = { "FICHIER FORTRAN":"FORTRAN_FILE", "FICHIER DES FONDS":"BOTTOM_TOPOGRAPHY_FILE", "LISSAGES DU FOND":"BOTTOM_SMOOTHINGS", + "LISSAGES DU FOND APRES MODIFICATIONS UTILISATEUR":"BOTTOM_SMOOTHINGS_AFTER_USER_MODIFICATIONS", "FICHIER DES CONDITIONS AUX LIMITES":"BOUNDARY_CONDITIONS_FILE", "VALIDATION":"VALIDATION", "FORMAT DU FICHIER DE REFERENCE":"REFERENCE_FILE_FORMAT", @@ -753,6 +1204,7 @@ DicoCasFrToCata = { "NOMBRE MAXIMUM DE SOURCES":"MAXIMUM_NUMBER_OF_SOURCES", "NOMBRE MAXIMUM DE TRACEURS":"MAXIMUM_NUMBER_OF_TRACERS", "LONGUEUR DU VECTEUR":"VECTOR_LENGTH", + "COEFFICIENT DE SECURITE POUR SCARACT":"SECURITY_COEFFICIENT_FOR_SCARACT", "SUITE DE CALCUL":"COMPUTATION_CONTINUED", "FORMAT DU FICHIER DU CALCUL PRECEDENT":"PREVIOUS_COMPUTATION_FILE_FORMAT", "FICHIER DU CALCUL PRECEDENT":"PREVIOUS_COMPUTATION_FILE", @@ -769,6 +1221,12 @@ DicoCasFrToCata = { "FORMAT DU FICHIER DE RESULTATS BINAIRE":"BINARY_RESULTS_FILE_FORMAT", "FICHIER DE RESULTATS BINAIRE":"BINARY_RESULTS_FILE", "FICHIER DE RESULTATS FORMATE":"FORMATTED_RESULTS_FILE", + "FICHIER DE RESULTATS FORMATE 1":"FORMATTED_RESULTS_FILE_1", + "FICHIER DE RESULTATS FORMATE 2":"FORMATTED_RESULTS_FILE_2", + "FICHIER DE RESULTATS FORMATE 3":"FORMATTED_RESULTS_FILE_3", + "FICHIER DE RESULTATS FORMATE 4":"FORMATTED_RESULTS_FILE_4", + "FICHIER DE RESULTATS FORMATE 5":"FORMATTED_RESULTS_FILE_5", + "FICHIER DE RESULTATS FORMATE 6":"FORMATTED_RESULTS_FILE_6", "SECTIONS DE CONTROLE":"CONTROL_SECTIONS", "IMPRESSION DU CUMUL DES FLUX":"PRINTING_CUMULATED_FLOWRATES", "CALCUL COMPATIBLE DES FLUX":"COMPATIBLE_COMPUTATION_OF_FLUXES", @@ -803,17 +1261,23 @@ DicoCasFrToCata = { "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", + "FROTTEMENT POUR LA VEGETATION":"VEGETATION_FRICTION", "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", - "PROCESSUS LIES AUX GLACES":"ICE_PROCESSES", + "MODELE NON-NEWTONIEN":"NON_NEWTONIAN_MODEL", + "OPTION DU MODELE DE BINGHAM":"BINGHAM_OPTION", + "VISCOSITE DU FLUIDE NON-NEWTONIEN":"NON_NEWTONIAN_VISCOSITY", + "CONTRAINTE D'ELASTICITE DU FLUIDE NON-NEWTONIEN":"NON_NEWTONIAN_YIELD_STRESS", + "RESISTANCE LAMINAIRE DU FLUIDE NON-NEWTONIEN":"NON_NEWTONIAN_LAMINAR_RESISTANCE_PARAMETER_K", + "DENSITE DU FLUIDE NON-NEWTONIEN":"NON_NEWTONIAN_FLUID_DENSITY", + "MODELE NON-NEWTONIEN PSEUDO DIPHASIQUE":"NON_NEWTONIAN_PSEUDO_BIPHASIC_MODEL", + "INDICE POUR LE MODELE DE HERSCHEL-BULKLEY":"HERSCHEL_BULKLEY_POWER_LAW_INDEX", "VENT":"WIND", "OPTION DU VENT":"OPTION_FOR_WIND", "COEFFICIENT D'INFLUENCE DU VENT":"COEFFICIENT_OF_WIND_INFLUENCE", + "COEFFICIENT D'INFLUENCE DU VENT DEPENDANT DE LA VITESSE DU VENT":"COEFFICIENT_OF_WIND_INFLUENCE_VARYING_WITH_WIND_SPEED", "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", @@ -829,6 +1293,10 @@ DicoCasFrToCata = { "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", + "TEMPERATURE DE L'AIR":"AIR_TEMPERATURE", + "NEBULOSITE":"CLOUD_COVER", + "RAYONNEMENT SOLAIRE":"SOLAR_RADIATION", + "PRESSION DE VAPEUR SATURANTE":"VAPOROUS_PRESSURE", "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", @@ -845,6 +1313,8 @@ DicoCasFrToCata = { "TYPE DES SOURCES":"TYPE_OF_SOURCES", "FICHIER DES SOURCES":"SOURCES_FILE", "NUMEROS GLOBAUX DES NOEUDS DES SOURCES":"GLOBAL_NUMBERS_OF_SOURCE_NODES", + "FICHIER DES REGIONS DES SOURCES":"SOURCE_REGIONS_DATA_FILE", + "NOMBRE MAXIMUM DE POINTS POUR DEFINIR DES SOURCES":"MAXIMUM_NUMBER_OF_POINTS_FOR_SOURCES_REGIONS", "PROCESSUS QUALITE D'EAU":"WATER_QUALITY_PROCESS", "MASSE VOLUMIQUE DE L'EAU":"WATER_DENSITY", "ACCELERATION DE LA PESANTEUR":"GRAVITY_ACCELERATION", @@ -852,6 +1322,12 @@ DicoCasFrToCata = { "EQUATIONS":"EQUATIONS", "TRAITEMENT DU SYSTEME LINEAIRE":"TREATMENT_OF_THE_LINEAR_SYSTEM", "SCHEMA EN VOLUMES FINIS":"FINITE_VOLUME_SCHEME", + "ORDRE EN ESPACE DU SCHEMA VOLUME FINIS":"FINITE_VOLUME_SCHEME_SPACE_ORDER", + "ORDRE EN TEMPS DU SCHEMA VOLUME FINIS":"FINITE_VOLUME_SCHEME_TIME_ORDER", + "LIMITEUR DE FLUX POUR H PLUS Z":"FLUX_LIMITOR_FOR_H_PLUS_Z", + "LIMITEUR DE FLUX POUR U ET V":"FLUX_LIMITOR_FOR_U_AND_V", + "LIMITEUR DE FLUX POUR LES TRACEURS":"FLUX_LIMITOR_FOR_TRACERS", + "TYPE DE CONDITION A LA LIMITE POUR LE SCHEMA CINETIQUE":"TYPE_OF_BOUNDARY_CONDITION_FOR_KINETIC_SCHEME", "CORIOLIS":"CORIOLIS", "COEFFICIENT DE CORIOLIS":"CORIOLIS_COEFFICIENT", "OPTION POUR LA GENERATION DE TSUNAMI":"OPTION_FOR_TSUNAMI_GENERATION", @@ -871,7 +1347,6 @@ DicoCasFrToCata = { "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", @@ -902,7 +1377,6 @@ DicoCasFrToCata = { "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", @@ -912,7 +1386,6 @@ DicoCasFrToCata = { "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", @@ -925,8 +1398,7 @@ DicoCasFrToCata = { "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", + "OPTION DE LA RECONSTRUCTION HYDROSTATIQUE":"OPTION_OF_THE_HYDROSTATIC_RECONSTRUCTION", "ETUDE DE CONVERGENCE":"CONVERGENCE_STUDY", "NIVEAUX DE RAFFINEMENT":"REFINEMENT_LEVELS", "COEFFICIENT DE DIFFUSION DES VITESSES":"VELOCITY_DIFFUSIVITY", @@ -942,7 +1414,7 @@ DicoCasFrToCata = { "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", + "COEFFICIENTS DU MODELE DE LONGUEUR DE MELANGE":"MIXING_LENGTH_MODEL_COEFFICIENTS", "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", @@ -974,14 +1446,27 @@ DicoCasFrToCata = { "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", - "NOMBRE DE FLOTTEURS":"NUMBER_OF_DROGUES", + "NOMBRE MAXIMAL DE FLOTTEURS":"MAXIMUM_NUMBER_OF_DROGUES", + "DENSITE INITIALE DE REPARTITION DES FLOTTEURS":"INITIAL_DROGUES_SAMPLING_DENSITY", "PERIODE POUR LES SORTIES DE FLOTTEURS":"PRINTOUT_PERIOD_FOR_DROGUES", - "FICHIER DES FLOTTEURS":"DROGUES_FILE", + "FICHIER ASCII DES FLOTTEURS":"ASCII_DROGUES_FILE", + "FICHIER BINAIRE DES FLOTTEURS":"BINARY_DROGUES_FILE", + "FORMAT DU FICHIER DES FLOTTEURS":"DROGUES_FILE_FORMAT", + "FICHIER DES FLOTTEURS PRECEDENT":"PREVIOUS_DROGUES_FILE", + "FORMAT DU FICHIER DES FLOTTEURS PRECEDENT":"PREVIOUS_DROGUES_FILE_FORMAT", + "FICHIER POSITIONNANT LES DROGUES INITIALES":"DROGUES_INITIAL_POSITIONING_DATA_FILE", + "FORMAT DU FICHIER POSITIONNANT LES DROGUES":"FORMAT_OF_THE_DROGUES_POSITIONING_DATA_FILE", "MODELE DE TRANSPORT DES ALGUES":"ALGAE_TRANSPORT_MODEL", + "NOMBRE DE CLASSES D'ALGUES":"NUMBER_OF_ALGAE_CLASSES", "TYPE DES ALGUES":"ALGAE_TYPE", "DIAMETRE DES ALGUES":"DIAMETER_OF_ALGAE", + "DUREE AVANT RELACHE DES ALGUES":"DURATION_BEFORE_ALGAE_RELEASE", "MASSE VOLUMIQUE DES ALGUES":"DENSITY_OF_ALGAE", "EPAISSEUR DES ALGUES":"THICKNESS_OF_ALGAE", + "TYPE DE RELACHE DES ALGUES":"ALGAE_RELEASE_TYPE", + "SEUIL DE LA VITESSE ORBITALE DE VAGUE POUR LES ALGUES 1":"WAVE_ORBITAL_VELOCITY_THRESHOLD_FOR_ALGAE_1", + "SEUIL DE LA VITESSE ORBITALE DE VAGUE POUR LES ALGUES 2":"WAVE_ORBITAL_VELOCITY_THRESHOLD_FOR_ALGAE_2", + "TAUX DE DEGRADATION POUR LES ALGUES":"RATE_OF_DEGRADATION_FOR_ALGAE", "MODELE DE NAPPES D'HYDROCARBURES":"OIL_SPILL_MODEL", "FICHIER DE COMMANDES HYDROCARBURES":"OIL_SPILL_STEERING_FILE", "MODELE DE DIFFUSION STOCHASTIQUE":"STOCHASTIC_DIFFUSION_MODEL", @@ -989,6 +1474,7 @@ DicoCasFrToCata = { "NOMBRE DE SEUILS":"NUMBER_OF_WEIRS", "FICHIER DE DONNEES DES SEUILS":"WEIRS_DATA_FILE", "TYPE DES SEUILS":"TYPE_OF_WEIRS", + "FICHIER DE SORTIE DES DEBITS DES SEUILS":"WEIRS_DISCHARGE_OUTPUT_FILE", "NOMBRE DE BUSES":"NUMBER_OF_CULVERTS", "FICHIER DE DONNEES DES BUSES":"CULVERTS_DATA_FILE", "OPTION POUR LES BUSES":"OPTION_FOR_CULVERTS", @@ -1002,6 +1488,8 @@ DicoCasFrToCata = { "COEFFICIENT DE CALAGE DU NIVEAU DE MER":"COEFFICIENT_TO_CALIBRATE_SEA_LEVEL", "NUMERO GLOBAL DU POINT POUR CALER LA PLEINE MER":"GLOBAL_NUMBER_OF_THE_POINT_TO_CALIBRATE_HIGH_WATER", "INTERPOLATION DE COMPOSANTES MINEURES":"MINOR_CONSTITUENTS_INFERENCE", + "VITESSES INITIALES CALCULEES PAR TPXO":"INITIAL_VELOCITIES_COMPUTED_BY_TPXO", + "HAUTEUR MINIMALE POUR LES CONDITIONS INITIALES DE COURANTS":"MINIMUM_DEPTH_TO_COMPUTE_TIDAL_VELOCITIES_INITIAL_CONDITIONS", "OPTION POUR LES CONDITIONS AUX LIMITES DE MAREE":"OPTION_FOR_TIDAL_BOUNDARY_CONDITIONS", "BASE DE DONNEES DE MAREE":"TIDAL_DATA_BASE", "FICHIER DES CONSTANTES HARMONIQUES":"HARMONIC_CONSTANTS_FILE", @@ -1011,10 +1499,10 @@ DicoCasFrToCata = { "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", + "HAUTEUR MINIMALE POUR LES CONDITIONS AUX LIMITES DE COURANTS":"MINIMUM_DEPTH_TO_COMPUTE_TIDAL_VELOCITIES_BOUNDARY_CONDITIONS", "FORCE GENERATRICE DE LA MAREE":"TIDE_GENERATING_FORCE", "COUPLAGE AVEC":"COUPLING_WITH", "NOMS DES VARIABLES CLANDESTINES":"NAMES_OF_CLANDESTINE_VARIABLES", - "DOSSIER DE COUPLAGE":"COUPLING_DIRECTORY", "FICHIER DE COMMANDE DELWAQ":"DELWAQ_STEERING_FILE", "PERIODE DE SORTIE POUR DELWAQ":"DELWAQ_PRINTOUT_PERIOD", "FICHIER DELWAQ DES ECHANGES ENTRE NOEUDS":"EXCHANGES_BETWEEN_NODES_DELWAQ_FILE", @@ -1033,24 +1521,22 @@ DicoCasFrToCata = { "SALINITE POUR DELWAQ":"SALINITY_FOR_DELWAQ", "FICHIER DES PARAMETRES DE SISYPHE":"SISYPHE_STEERING_FILE", "PERIODE DE COUPLAGE POUR SISYPHE":"COUPLING_PERIOD_FOR_SISYPHE", + "FICHIER DES PARAMETRES DE GAIA":"GAIA_STEERING_FILE", "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", "FICHIER DES PARAMETRES DE KHIONE":"KHIONE_STEERING_FILE", + "PROCESSUS LIES AUX GLACES":"ICE_PROCESSES", + "NESTOR":"NESTOR", + "FICHIER DES PARAMETRES DE NESTOR":"NESTOR_ACTION_FILE", + "FICHIER DE POLYGONES DE NESTOR":"NESTOR_POLYGON_FILE", + "FICHIER DE SURFACE REFERENCE DE NESTOR":"NESTOR_SURFACE_REFERENCE_FILE", + "FICHIER DE REPRISE DE NESTOR":"NESTOR_RESTART_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", - "NESTOR":"NESTOR", - "FICHIER DE NESTOR ACTION":"NESTOR_ACTION_FILE", - "FICHIER DE NESTOR POLYGON":"NESTOR_POLYGON_FILE", - "FICHIER DE NESTOR DE SURFACE REFERENCE":"NESTOR_SURFACE_REFERENCE_FILE", - "FICHIER DE NESTOR RESTART":"NESTOR_RESTART_FILE", + "CONCATENATION SORTIE PARTEL":"CONCATENATE_PARTEL_OUTPUT", } DicoCasEnToCata = { @@ -1069,6 +1555,7 @@ DicoCasEnToCata = { 'FORTRAN FILE':'FORTRAN_FILE', 'BOTTOM TOPOGRAPHY FILE':'BOTTOM_TOPOGRAPHY_FILE', 'BOTTOM SMOOTHINGS':'BOTTOM_SMOOTHINGS', + 'BOTTOM SMOOTHINGS AFTER USER MODIFICATIONS':'BOTTOM_SMOOTHINGS_AFTER_USER_MODIFICATIONS', 'BOUNDARY CONDITIONS FILE':'BOUNDARY_CONDITIONS_FILE', 'VALIDATION':'VALIDATION', 'REFERENCE FILE FORMAT':'REFERENCE_FILE_FORMAT', @@ -1079,6 +1566,7 @@ DicoCasEnToCata = { 'MAXIMUM NUMBER OF SOURCES':'MAXIMUM_NUMBER_OF_SOURCES', 'MAXIMUM NUMBER OF TRACERS':'MAXIMUM_NUMBER_OF_TRACERS', 'VECTOR LENGTH':'VECTOR_LENGTH', + 'SECURITY COEFFICIENT FOR SCARACT':'SECURITY_COEFFICIENT_FOR_SCARACT', 'COMPUTATION CONTINUED':'COMPUTATION_CONTINUED', 'PREVIOUS COMPUTATION FILE FORMAT':'PREVIOUS_COMPUTATION_FILE_FORMAT', 'PREVIOUS COMPUTATION FILE':'PREVIOUS_COMPUTATION_FILE', @@ -1095,6 +1583,12 @@ DicoCasEnToCata = { 'BINARY RESULTS FILE FORMAT':'BINARY_RESULTS_FILE_FORMAT', 'BINARY RESULTS FILE':'BINARY_RESULTS_FILE', 'FORMATTED RESULTS FILE':'FORMATTED_RESULTS_FILE', + 'FORMATTED RESULTS FILE 1':'FORMATTED_RESULTS_FILE_1', + 'FORMATTED RESULTS FILE 2':'FORMATTED_RESULTS_FILE_2', + 'FORMATTED RESULTS FILE 3':'FORMATTED_RESULTS_FILE_3', + 'FORMATTED RESULTS FILE 4':'FORMATTED_RESULTS_FILE_4', + 'FORMATTED RESULTS FILE 5':'FORMATTED_RESULTS_FILE_5', + 'FORMATTED RESULTS FILE 6':'FORMATTED_RESULTS_FILE_6', 'CONTROL SECTIONS':'CONTROL_SECTIONS', 'PRINTING CUMULATED FLOWRATES':'PRINTING_CUMULATED_FLOWRATES', 'COMPATIBLE COMPUTATION OF FLUXES':'COMPATIBLE_COMPUTATION_OF_FLUXES', @@ -1129,17 +1623,23 @@ DicoCasEnToCata = { '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', + 'VEGETATION FRICTION':'VEGETATION_FRICTION', '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', - 'ICE PROCESSES':'ICE_PROCESSES', + 'NON-NEWTONIAN MODEL':'NON_NEWTONIAN_MODEL', + 'BINGHAM OPTION':'BINGHAM_OPTION', + 'NON-NEWTONIAN VISCOSITY':'NON_NEWTONIAN_VISCOSITY', + 'NON-NEWTONIAN YIELD STRESS':'NON_NEWTONIAN_YIELD_STRESS', + 'NON-NEWTONIAN LAMINAR RESISTANCE PARAMETER K':'NON_NEWTONIAN_LAMINAR_RESISTANCE_PARAMETER_K', + 'NON-NEWTONIAN FLUID DENSITY':'NON_NEWTONIAN_FLUID_DENSITY', + 'NON-NEWTONIAN PSEUDO-BIPHASIC MODEL':'NON_NEWTONIAN_PSEUDO_BIPHASIC_MODEL', + 'HERSCHEL-BULKLEY POWER-LAW INDEX':'HERSCHEL_BULKLEY_POWER_LAW_INDEX', 'WIND':'WIND', 'OPTION FOR WIND':'OPTION_FOR_WIND', 'COEFFICIENT OF WIND INFLUENCE':'COEFFICIENT_OF_WIND_INFLUENCE', + 'COEFFICIENT OF WIND INFLUENCE VARYING WITH WIND SPEED':'COEFFICIENT_OF_WIND_INFLUENCE_VARYING_WITH_WIND_SPEED', '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', @@ -1155,6 +1655,10 @@ DicoCasEnToCata = { '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', + 'AIR TEMPERATURE':'AIR_TEMPERATURE', + 'CLOUD COVER':'CLOUD_COVER', + 'SOLAR RADIATION':'SOLAR_RADIATION', + 'VAPOROUS PRESSURE':'VAPOROUS_PRESSURE', 'WAVE DRIVEN CURRENTS':'WAVE_DRIVEN_CURRENTS', 'RECORD NUMBER IN WAVE FILE':'RECORD_NUMBER_IN_WAVE_FILE', 'WAVE ENHANCED FRICTION FACTOR':'WAVE_ENHANCED_FRICTION_FACTOR', @@ -1171,6 +1675,8 @@ DicoCasEnToCata = { 'TYPE OF SOURCES':'TYPE_OF_SOURCES', 'SOURCES FILE':'SOURCES_FILE', 'GLOBAL NUMBERS OF SOURCE NODES':'GLOBAL_NUMBERS_OF_SOURCE_NODES', + 'SOURCE REGIONS DATA FILE':'SOURCE_REGIONS_DATA_FILE', + 'MAXIMUM NUMBER OF POINTS FOR SOURCES REGIONS':'MAXIMUM_NUMBER_OF_POINTS_FOR_SOURCES_REGIONS', 'WATER QUALITY PROCESS':'WATER_QUALITY_PROCESS', 'WATER DENSITY':'WATER_DENSITY', 'GRAVITY ACCELERATION':'GRAVITY_ACCELERATION', @@ -1178,6 +1684,12 @@ DicoCasEnToCata = { 'EQUATIONS':'EQUATIONS', 'TREATMENT OF THE LINEAR SYSTEM':'TREATMENT_OF_THE_LINEAR_SYSTEM', 'FINITE VOLUME SCHEME':'FINITE_VOLUME_SCHEME', + 'FINITE VOLUME SCHEME SPACE ORDER':'FINITE_VOLUME_SCHEME_SPACE_ORDER', + 'FINITE VOLUME SCHEME TIME ORDER':'FINITE_VOLUME_SCHEME_TIME_ORDER', + 'FLUX LIMITOR FOR H PLUS Z':'FLUX_LIMITOR_FOR_H_PLUS_Z', + 'FLUX LIMITOR FOR U AND V':'FLUX_LIMITOR_FOR_U_AND_V', + 'FLUX LIMITOR FOR TRACERS':'FLUX_LIMITOR_FOR_TRACERS', + 'TYPE OF BOUNDARY CONDITION FOR KINETIC SCHEME':'TYPE_OF_BOUNDARY_CONDITION_FOR_KINETIC_SCHEME', 'CORIOLIS':'CORIOLIS', 'CORIOLIS COEFFICIENT':'CORIOLIS_COEFFICIENT', 'OPTION FOR TSUNAMI GENERATION':'OPTION_FOR_TSUNAMI_GENERATION', @@ -1197,7 +1709,6 @@ DicoCasEnToCata = { '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', @@ -1228,7 +1739,6 @@ DicoCasEnToCata = { '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', @@ -1238,7 +1748,6 @@ DicoCasEnToCata = { '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', @@ -1251,7 +1760,6 @@ DicoCasEnToCata = { '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', @@ -1268,7 +1776,7 @@ DicoCasEnToCata = { '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', + 'MIXING LENGTH MODEL COEFFICIENTS':'MIXING_LENGTH_MODEL_COEFFICIENTS', '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', @@ -1300,14 +1808,27 @@ DicoCasEnToCata = { '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', - 'NUMBER OF DROGUES':'NUMBER_OF_DROGUES', + 'MAXIMUM NUMBER OF DROGUES':'MAXIMUM_NUMBER_OF_DROGUES', + 'INITIAL DROGUES SAMPLING DENSITY':'INITIAL_DROGUES_SAMPLING_DENSITY', 'PRINTOUT PERIOD FOR DROGUES':'PRINTOUT_PERIOD_FOR_DROGUES', - 'DROGUES FILE':'DROGUES_FILE', + 'ASCII DROGUES FILE':'ASCII_DROGUES_FILE', + 'BINARY DROGUES FILE':'BINARY_DROGUES_FILE', + 'DROGUES FILE FORMAT':'DROGUES_FILE_FORMAT', + 'PREVIOUS DROGUES FILE':'PREVIOUS_DROGUES_FILE', + 'PREVIOUS DROGUES FILE FORMAT':'PREVIOUS_DROGUES_FILE_FORMAT', + 'DROGUES INITIAL POSITIONING DATA FILE':'DROGUES_INITIAL_POSITIONING_DATA_FILE', + 'FORMAT OF THE DROGUES POSITIONING DATA FILE':'FORMAT_OF_THE_DROGUES_POSITIONING_DATA_FILE', 'ALGAE TRANSPORT MODEL':'ALGAE_TRANSPORT_MODEL', + 'NUMBER OF ALGAE CLASSES':'NUMBER_OF_ALGAE_CLASSES', 'ALGAE TYPE':'ALGAE_TYPE', 'DIAMETER OF ALGAE':'DIAMETER_OF_ALGAE', + 'DURATION BEFORE ALGAE RELEASE':'DURATION_BEFORE_ALGAE_RELEASE', 'DENSITY OF ALGAE':'DENSITY_OF_ALGAE', 'THICKNESS OF ALGAE':'THICKNESS_OF_ALGAE', + 'ALGAE RELEASE TYPE':'ALGAE_RELEASE_TYPE', + 'WAVE ORBITAL VELOCITY THRESHOLD FOR ALGAE 1':'WAVE_ORBITAL_VELOCITY_THRESHOLD_FOR_ALGAE_1', + 'WAVE ORBITAL VELOCITY THRESHOLD FOR ALGAE 2':'WAVE_ORBITAL_VELOCITY_THRESHOLD_FOR_ALGAE_2', + 'RATE OF DEGRADATION FOR ALGAE':'RATE_OF_DEGRADATION_FOR_ALGAE', 'OIL SPILL MODEL':'OIL_SPILL_MODEL', 'OIL SPILL STEERING FILE':'OIL_SPILL_STEERING_FILE', 'STOCHASTIC DIFFUSION MODEL':'STOCHASTIC_DIFFUSION_MODEL', @@ -1315,6 +1836,7 @@ DicoCasEnToCata = { 'NUMBER OF WEIRS':'NUMBER_OF_WEIRS', 'WEIRS DATA FILE':'WEIRS_DATA_FILE', 'TYPE OF WEIRS':'TYPE_OF_WEIRS', + 'WEIRS DISCHARGE OUTPUT FILE':'WEIRS_DISCHARGE_OUTPUT_FILE', 'NUMBER OF CULVERTS':'NUMBER_OF_CULVERTS', 'CULVERTS DATA FILE':'CULVERTS_DATA_FILE', 'OPTION FOR CULVERTS':'OPTION_FOR_CULVERTS', @@ -1328,6 +1850,8 @@ DicoCasEnToCata = { 'COEFFICIENT TO CALIBRATE SEA LEVEL':'COEFFICIENT_TO_CALIBRATE_SEA_LEVEL', 'GLOBAL NUMBER OF THE POINT TO CALIBRATE HIGH WATER':'GLOBAL_NUMBER_OF_THE_POINT_TO_CALIBRATE_HIGH_WATER', 'MINOR CONSTITUENTS INFERENCE':'MINOR_CONSTITUENTS_INFERENCE', + 'INITIAL VELOCITIES COMPUTED BY TPXO':'INITIAL_VELOCITIES_COMPUTED_BY_TPXO', + 'MINIMUM DEPTH TO COMPUTE TIDAL VELOCITIES INITIAL CONDITIONS':'MINIMUM_DEPTH_TO_COMPUTE_TIDAL_VELOCITIES_INITIAL_CONDITIONS', 'OPTION FOR TIDAL BOUNDARY CONDITIONS':'OPTION_FOR_TIDAL_BOUNDARY_CONDITIONS', 'TIDAL DATA BASE':'TIDAL_DATA_BASE', 'HARMONIC CONSTANTS FILE':'HARMONIC_CONSTANTS_FILE', @@ -1337,10 +1861,10 @@ DicoCasEnToCata = { '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', + 'MINIMUM DEPTH TO COMPUTE TIDAL VELOCITIES BOUNDARY CONDITIONS':'MINIMUM_DEPTH_TO_COMPUTE_TIDAL_VELOCITIES_BOUNDARY_CONDITIONS', 'TIDE GENERATING FORCE':'TIDE_GENERATING_FORCE', 'COUPLING WITH':'COUPLING_WITH', 'NAMES OF CLANDESTINE VARIABLES':'NAMES_OF_CLANDESTINE_VARIABLES', - 'COUPLING DIRECTORY':'COUPLING_DIRECTORY', 'DELWAQ STEERING FILE':'DELWAQ_STEERING_FILE', 'DELWAQ PRINTOUT PERIOD':'DELWAQ_PRINTOUT_PERIOD', 'EXCHANGES BETWEEN NODES DELWAQ FILE':'EXCHANGES_BETWEEN_NODES_DELWAQ_FILE', @@ -1359,24 +1883,22 @@ DicoCasEnToCata = { 'SALINITY FOR DELWAQ':'SALINITY_FOR_DELWAQ', 'SISYPHE STEERING FILE':'SISYPHE_STEERING_FILE', 'COUPLING PERIOD FOR SISYPHE':'COUPLING_PERIOD_FOR_SISYPHE', + 'GAIA STEERING FILE':'GAIA_STEERING_FILE', 'TOMAWAC STEERING FILE':'TOMAWAC_STEERING_FILE', 'COUPLING PERIOD FOR TOMAWAC':'COUPLING_PERIOD_FOR_TOMAWAC', 'WAQTEL STEERING FILE':'WAQTEL_STEERING_FILE', 'KHIONE STEERING FILE':'KHIONE_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', + 'ICE PROCESSES':'ICE_PROCESSES', 'NESTOR':'NESTOR', 'NESTOR ACTION FILE':'NESTOR_ACTION_FILE', 'NESTOR POLYGON FILE':'NESTOR_POLYGON_FILE', 'NESTOR SURFACE REFERENCE FILE':'NESTOR_SURFACE_REFERENCE_FILE', 'NESTOR RESTART FILE':'NESTOR_RESTART_FILE', + 'LANGUAGE':'LANGUAGE', + 'STEERING FILE':'STEERING_FILE', + 'DICTIONARY':'DICTIONARY', + 'PARTITIONING TOOL':'PARTITIONING_TOOL', + 'CONCATENATE PARTEL OUTPUT':'CONCATENATE_PARTEL_OUTPUT', } DicoEnumCasFrToEnumCasEn = { 'INITIAL_CONDITIONS':{ @@ -1405,25 +1927,25 @@ DicoEnumCasFrToEnumCasEn = { }, 'GEOMETRY_FILE_FORMAT':{ - "SERAFIN?":"SERAFIN?", + "SERAFIN":"SERAFIN", "SERAFIND":"SERAFIND", "MED":"MED", }, 'REFERENCE_FILE_FORMAT':{ - "SERAFIN?":"SERAFIN?", + "SERAFIN":"SERAFIN", "SERAFIND":"SERAFIND", "MED":"MED", }, 'PREVIOUS_COMPUTATION_FILE_FORMAT':{ - "SERAFIN?":"SERAFIN?", + "SERAFIN":"SERAFIN", "SERAFIND":"SERAFIND", "MED":"MED", }, 'RESULTS_FILE_FORMAT':{ - "SERAFIN?":"SERAFIN?", + "SERAFIN":"SERAFIN", "SERAFIND":"SERAFIND", "MED":"MED", }, @@ -1436,7 +1958,7 @@ DicoEnumCasFrToEnumCasEn = { }, 'BINARY_ATMOSPHERIC_DATA_FILE_FORMAT':{ - "SERAFIN?":"SERAFIN?", + "SERAFIN":"SERAFIN", "SERAFIND":"SERAFIND", "MED":"MED", }, @@ -1453,8 +1975,22 @@ DicoEnumCasFrToEnumCasEn = { "BOUSSINESQ":"BOUSSINESQ", }, +'DROGUES_FILE_FORMAT':{ + "BKBINPCL":"BKBINPCL", + "TECPLOT":"TECPLOT", +}, + +'PREVIOUS_DROGUES_FILE_FORMAT':{ + "BKBINPCL":"BKBINPCL", + "BKASCPCL":"BKASCPCL", +}, + +'FORMAT_OF_THE_DROGUES_POSITIONING_DATA_FILE':{ + "BKASCI2S":"BKASCI2S", +}, + 'TIDAL_MODEL_FILE_FORMAT':{ - "SERAFIN?":"SERAFIN?", + "SERAFIN":"SERAFIN", "SERAFIND":"SERAFIND", "MED":"MED", }, @@ -1462,7 +1998,12 @@ DicoEnumCasFrToEnumCasEn = { 'COUPLING_WITH':{ "SISYPHE":"SISYPHE", "TOMAWAC":"TOMAWAC", + "TOMAWAC2":"TOMAWAC2", + "WAQTEL":"WAQTEL", + "KHIONE":"KHIONE", + "GAIA":"GAIA", "DELWAQ":"DELWAQ", + "":"", }, 'PARTITIONING_TOOL':{ diff --git a/Telemac/telemac2d_labelCataToIhm_en.qm b/Telemac/telemac2d_labelCataToIhm_en.qm index c2ccbf0c601e3b767a0f07223d6f18565c45eda6..c688c78294bd2456f23c65cc1f1ca58d06356379 100644 GIT binary patch delta 7530 zcmbVP30#!rx_`de_Yv7aU_e1cTmZM+Vwf3VbQYKeLCld@#8_Nl%nipqMN{;1*IZIN zmb;^6S(=&WWWVZI9@{iCw@fQNY1bCD`+o;T?4Ii0tH0s>miK+0|Fiv{=X?Hu;M!S% zum6FvhoDh-0q2UUyy44J|a_F3X&Wnnm>|4S8XC%_6>z4A0X;~nxckIC0aO% zI%eJ@TDph2`!+zK%}z!U6fEdZ*-AH&bOz;kONq)((BQ~_5vAml^)o2y{V6$f<`NC7 zq{2@jc)>L){6-9cHY%ESiKyEyDqdGdw7x%;j7lVmiy`06{X|1X(~LMj(b#shwjWm8 zSF~04J<-gk$hYsjiRkHUdVBvWqO?SMj{}glx9PnpMxyKubmqVwqE%(|)vmu0^%2pP zg-;V16Y0h*D2j@p-?m}Z_T#wMuM%~ZaiTsy6D6tqLD#d;T7oZ#QC_Ay|8#lBv+Xa1+}ZWstINYF6YLsI}cYL!%vB=`9{@k9w*xvS^g zM7=g}-<1W!17C7?3wscCc$K?b=>gz$K^T=1mG=|qs^BrrJVEqWkn%k&T>XKd zYr`>ww2vU8A7Wo^6XeEyOH}%;Aa^$8_@4erFrwQBMA6R*O3&Uz((Dmb&?UsaR^VNG z6v>t$7(b<&$lFKIaCtw`_@@N(mf`uT*97wmGKd-`2v(dbC+cn$tY5MmmJStcy!<{< z#(Ke_<+F*VT@)Nnh6nrQ2tIgg6W()zFZS?66I_D-()1)BQdjWP8*qv41EJUk#pw;g z(7xA+2Cfu_?GY0NnT28ByiF8)NEj|f@&zvy_8mU25U@d0mlHRlFJQi^_?{Jt6!+*c*Uk!qe3=iNd}X{!rGQ$o;bL_LiGOg`W$5I$A~)en%v(@xjum zKZqoPTSTF8BIU;ryk@&db>$FIoY>QaW?IMc& z8r9JyA1kuG%gb2(L|vn??!!6_>wc`4u)d7)93+ZKLD|jSAxdj}9Mv#el;&FpLF3Pg z1}b1#kAot^!BIr{ZA8_3`V$q0ifWCesD}Nb@yjNlEP2u79S|_(f@pe209-Ll)EJE_ zh+QOV?1&sG>mX{1LM|CbikecF66rq{Ek9I`x<4n{qCj;;e<*tC+v7y>S4F!A2w{*( z_j7_IOJAQ!G@?kdY{E%|>MhBdrb?pRiIVj*yhMuClC5(( zpzJnFb{#%S_$N7(i08h{XC?1A5li86$$J-^h|OZjr;Q6i#oHubCN6_Zk4i3zZ-D_X zNiKKVL^S!b;b2{gw6Wwf7*HgAb_;+-U6n3h4g&_Pm2Qa$C0gu~zQ}sSv}w{q z2{WL-dG&1>lAqZ!uOj+5J zsQqM_%F_qQG(gthbQ4`~scg_ltg|}HEV=(AT3am3KLNmPZpucSEhp-@Q#Se{0Qg># zHQd!AC$7mBI!@x;f5|pqt^*@lWZU##6UFS59he|S4@i_9Qu~5|_>An((yoYortHl< z5Lk0Y_Sv_QD8Dtb%W<_}yg{-n+rSI)v9dcRAXkmVDnP$akc;9Gs>v1d*k5lF4a$&r z%106o_!jGrAg(NV$}q^U`bn;@f?*54mm6M0XyjV?pyw~3H%yS*eOI8^a!+19sXdy; z6nW)KPFT`UUaLX#NqbV7qajCFy>;y&q zk5KsdHN~{y>G0G=#q1635xR4VB?mC^tcXzX2Oy8zs#rP>xiWi`V);-2+L)qPc^vWu zCwz)^-zQ^0IIr0B{#Z;THx&CvokC2L6tDIA9xg9Z{L2mnapM)AF(NY6E53eh9TZ3v zKV!aG{q%& zTBjUTa~@sOw@^9kHnOwtKa^Dp%zXJarFRVkjB+ZyjGC91Dxcm1K&utXNsOYiRx779 z9fK>2mD8i@F}Pe%&e(bfA(*I~a}yph{9U=qW`N)~l`qwTJasPv$+~u@@|&ik7!Kzue~dosp^ypRXQ?TZ*RCTO^;Iwn9uD4O=)xW6Hcl88QI#s=s;K9Kv zRrZY#t0lAE!yvL<-F9R-+VysIv~>^ae{vgj*U320d5rq8qc~8vMr|7gmsb_5 z3pU}ocD{OyTZsEt)D8OmD4z!P^zR@*{-t_m>OeH3@6@v`G9=qxta1z>>FTCWf!^i9)~)L8>wKM&on`8Sot;FJ($pUXokZQ=Rev_t zjih^1efrjBaD1Wqmm#S{Ll0}Xw|LBek86Y%>d;gMYuY9qLb=vyB9E9bMeorhEVzUw z)}-mo;Xd!E##oCSF&@)6!e`?9VXek7`vT^NzM8Ub^C2%*Q{$WaDmeRHO>JH+vh|i` z$}tekGv8=<_b3q2AkF$%SemHSY|(+D7cbJhb0iT-P0!}HRlD((46*aetjYq zoL{B6%O;$9xmM!F8t&6-zt{pE`B@vT!v0xLXromI)W1;M?r(2nQhHVE)4g#PE(+2< z)_|r`I$b;Hb0aLAsda0?fUA_+;z%T6uN-Z8B|I|e6>Y_H!5F_2w7yOfgzS`d_GyH$ ze6edg+1%Vf@MjyaBN6s)j~W83a|}S4t(kJ~}utCClz|*{vR@)oyp?LZs89&vuy{9=8*J ztahV0+ic)>*F^Y-L>&@#3WEjJ5aWd)9fXXg@k~vN*OUf}-EH(3?0i~&C?6VomwSp| zAKSMEo5usyI5@1?5FI^@t9lsJd{r9|SjXIn|79%#dm8MfY(OxZY%Y&I+cU&$GkVOn zY>V4uGnhOD@Do7eu`9RvoioqGf2axZw~hN!;7$kJ(Qq8B4fvz>{;Go>hKBj58VHy{ z^>~KAEt(?@cAG)(GTHF+$jpLkiY(P7VVo1FZau-M*%9^C-t%puGbqX3D48H3|>_n$EE z0f+J3BSLs?y%}zE|U=q>`ecYot|v7#pFq6 zR`T8+o!Rz`zucbDdV7z*+}@-0_MU&az2}4NK7i@eh?33cqr&XEV;H1G~E5SqXTwnL=3AO=!`k%QZPzsaZT(Zp&bcsR%qV1dMLc4*_!+ zO@(~-5g~qczjflYOmw728R++}se_uDK*2O~(Yh6pk-7)`^S}*Gy*1CmNa&3fQT}b2 z$2o2Gqk{RSiD5Q?WnF_wW0VW3$CD=mhPfz@3d!DLLi-0A3QQKe0UT#?qOn->+$_Vh ziaf5oLO#AU*k7MDPwdy{b{F$I^ON}ZhlcT2^Mm=OF_HeU)>A^Rkmsz4o zkO%7Ul<_3vF7});;YjRbv|HB#B-N@fG+W(PkIik(f)5e@JiFQEat0W}X?HsefaWme z@cEfx41~Wr{|47(5?KQ(8KZgeV<}e-yPKOHqoh{8;0NoHM0oHd-w@q_?@}QTA7F+3 zOsmn9hvw$8Hyh6{)&=u96-iwt{C~uc;=?mLhxh+u(Xt19h0m*q;fFa-bj%FsnGi5# zBoMMZWTQy48O<{VGL=tjY9FGrnhRMwwwP==z>M+1WZ{dO;{0P=zjEp@vIYDcU}Ju) zHdv~(nVeu+{>a#He^tSYg0v`XVb1S@UpZ2nZDqL$ZfpsM+J>HFGYxT}=jnMaGq_`~ zKRyM(6@cu8j4~d18xr06w9Ny?HXB*W>I?r=2&=T3fDhQ*(3~l(N!I})BW`36zq=~* zF&$O408M>Vl|>J?>m7`o%}$q|jV~B0^i~raw+8dO3c|wwz;r&pBvcdph%}xHiRhR8 zr;x`0TsbT+gAW;vj6&|Q`H{gc<>PC@Vjhv`$#a_AM!P4=oR_P2V(5bgOV>ZuFh1Y_ zR?p4z%ET7a!ygr0V0L08JhCF9;19zKpB6zJ<2*(Q%&)8(>sr-e)T2U+%qEM`<8;BF ze15-BetA&}*Ofm~6xyfta8nu}Nr+*>TH$Lc<>s-*V9`6B{D*Br_&1Ag^Tor${4vG* z)cy{mUXbwBH8M3bm2m}QiNKVu2+ebt3e0v42W)VmU}VEMlnv6zap;ZB z^BdY0-+fMme@ESWoPV3QNE(!hPmyxuEaN^l9Zf{_M)Lpcs_MZeWu~yS)g-KQnhb7- z*;NDvdN_=;>Bwn70vp&s%!?Y{%!q~9(E)!qmk7hnYWMyS+JaK+v|Csq=#6GxpBCQ@i$Ia%l)0^*NEgp$<_Qt#>ZI0`Nrt5 zp%1CP3P>2IFf65k1Z!@wm^NE*b-@=~zG#YOVL-{P=&+o6etFH8-voOe}|4Y_ef(kntvS pKg+d|V9wX4#D_!=F_|4sj}cUnt9RtUF1L%{m=WcFV)ZfZzX3Bb!?*wd delta 4450 zcmb7G2~<>9wmomEc@UXF1Y{6#h>AEyr7TJ;WU`7fI6?_1C;|e7L(mc&qDTOJVl)mh zA_?t`C25ieah zsa72z8fG9D$uXk$CzAVyTB2oV$Rn(YXn+g(Ok6~?=nZv`YA0HHhx%>>ZuC@&=7C%C z4#n8gi7abrtlj%OQRp6uzXafSG-QrhK@>lNQvMFWk~T{DSpd*EnzW^m=)=`y%?=^z zvV-h<8i`_$P?^7jXj%k)aMwWOn?m&g_lXJ<=)iS6&uF1<8aEL2NT!nv9CtcPCrhG< zhI`W0rUs%FPs#q{-p}E9DBY=?OEffv9xjC=kJa>MC#<@G;Rin_3VF;(uIwk0R51ZB z;m|vZd3Sdmk?|-Kdsa{M-UTM*4jhJB80&ruh|OZM#sN3AftfYW2)s6C&X(&$@AhYk zHxv-{y2UJcbdE^3#m-b+u@QA1!+fl_63vfdK3n>V$b5j=CFO{QOkj2^Y5;thamcWa zcQ6OeL?I(`=BpYrQSN@GMLD0S-x}svdn-}Qcg(l;2}C2eF_&8zBG#L^d_0gS(1p2s z4aEAGnSW%s67_XwUT39(pxwxNP&#Vyh7Fj7)Tl?ZK@0G_ID!qokBG`s*@$7N<&;cz zjQ>5N&TNZ2HZIb!En!Gi|Ap-7 zqqT^fVZUz>;rJB$Uz$ji;u-tfA!MZMVNOVZfaz27yQ$%z6C$4YV?r z^OQnUE_vJl0+A6JT=I`*WY~ur|BHd_G$M#gNrB@PdTyEtktA5TnJrI=x@)=Itv86I z?OgH7KB(PwZsCL)qJX_zdGSG_fs?saRjx#)Ag)3UBE>D-=4~Jt`2|=14C^#`+}?1! zUsBE;xeg7nRot%Yz>8oh`&ytE_2C8zncMlh2O=5wRdi9Gx8#WnNL zF1h^sy8$q}k}vm#IJ#qvAu zoj|6{{J!BFh#B}J11H1rNd8d@h%6}OpBw^#=@az`+$`w{@L4fYhgzD{^iK^m+wXr-=RDxh%e+~{6+lBQvV3k^7o4t@| ze4DVZ9S)?e!WUVa&;^ac51SsNU0w<|UZ5K?o(XsL5LIPg*p;vq!av60{UC4Q#eVD` zvs%LDPep{K5`McLV!J2NB&8$r+Y+w{5ttW=l7OijKy0&J639nlz^ssj{|yd5JS6E= z-3Xxb68#T1kb0#gsTQ`Fm#jUwglL?fq-NeZlxDMJV|5nP{7~{qnT<%kTe5W>0?780 z)GrT)O_c0yX(jxVG>72*z{8T`W@v_6Cpme;OyvJU^7ryeOh)@<$qyklm{{(To5B;K z-s>f|d(;x;td`uprze_FDS7b94efbb+H2$(42~_*F|8nCNRb*3p{4~^spUjE2yxQ% z^a^BbhBWI5BFu}G7KkEI(0ZxO9r*Lwq_$<>V2(6PZ9A|&y+~Say@dX!3DOVi;Mg-= zx^5j94zNh;yxgJUOVU3%M{@oi>9wIHXqyb_otps4zb5^a!(=NelRoKt9%n>}^kr&S zB1R*VU+2*GD`m>8NKCw&GF9qeXhb3li$}yohh?!d9>Z#7abx}lE!~riI}-u_n$xnh zwoH_OmF3-p<9v&3;cG2K6e+7Tox@=?Q?~tfAqLDF*-qV0L_P~-P4fhtc9UhzYFDB% ztL$(?1ku#TvfKW-7&IZWJ3G;){vXI*89-FI0G7q68Y$-kk@6fDdDoYZA-)~*9^+P^ z{|D6J%Tw5w^6<$3oT8QMW+4)Lp;~CK{3624{DvRn9*j&IsZ_RGyVX&s;eUB`WlGZPf^ed0Zyw@6g`E%fn62F zJwVjIlVX{DYY-S46>FMsaajIFAvOV!saLEmfF^9~6ze8}P?d{f{Ruc=&nULs4+F71 zirQ0iaL%7s)P2y7N!hGu%)Wq;%P77Ycptz=73UM-$d6N8a?X`uzbJnCY6~=xuXr>{ zL=uF_Xuhgv;U2JQtz^Gszw#VwSgP8mD)a z%E`|l#(uArvlRb{5qeN*+lYM=J(V`+h+Q75oZA2*D>o_^I7jW^Q_98F$54vy%2J;q zqOp<6viesoOQ0~YbiT;!+cQ)0-CMplOJ;v23RrzHAkBdpU z@+9emyXNyzF*W|GkkA*G<)+P^3)fs~Y{#4H}TBk{1OLO`55C zuL%+L+@{Kp%0OmTsPc7dq3TnrrTc%xDVYh2%yd7ZTI-EWh54zr{v{Y0S*1F=6hw!8 zuDUo)4+48tw>F?O?i*FNSAm${$ExSvwa9GZB-QgUcTB8OwPfi@ocGt&oo8g?c>F}| z8;?8MtgqEWTCp(wmO5cFh)niZ=UX_~)9Qt~Ms&vwb=j0iL@KD4^csPT1*@0E$%sDC z!^&Y>)fK&*JoFv|Mh=X@7mH6qRUW!-P4T7uc|N2v0y{I z`pT2-U_3;_92Id#v}w2-h3Jwin$DrkNc~?m-bW0$kc4ZxRUq;xsU~<$4Z5J4rYD2n zNB7f2=c49Af76&em*6&Cr7OcN@B4fac|tuK4|-=C$*FkYUzJEU<2AT2B?;7wNRVDm@OB zpR@so+E9WE+93Z!Xfw0yh;-I8?exvAm|QK| zWmiCGyhXcQcMNK6)~+c{M`?~~>l@;5Nj<3D_fZg1|Gu{IO(O1m*R>~#K+x-~_Tj)f zM5xfd@QlD=m8NZ94@;HW_Pf|WG73>uo#60G80lyl72?L3jlYFtb$q1mF7;L6=Ny_r zR?4J86c5Li^P`K4(TQ{Bc{oVGa6$ zb<~I6WTS#fPkCgce86Q>E+7La1K$b&oK8h}S3vXsaL`$wXi17QCd8yh8%+j%a-vCO zG_H<{9ue%wV2Z|`>7Zl-RuOPAXNQ6 zS~s{kw)fe{FLrya5T)SP^*I}v7@FlKrmO_AqKj1PBa-~j0vgw z#6(lHF+rEy5!vwhpGh417Hiny!IXp@c~F71qnZ9)3x6o%t!9%xw9NX3Q- zZ%6p@RH-PbJnZOHW#ZC?lDUJKv-f}R%-S)X5be|$1`zH(1}&wI`tpMGET?qacb z;E|$;m%rIq_i94h=5bq&ewaq2>qkTa{_rpTBO>({qLH;kqf{hmdY!2MK9ZJ-h6LP#!=p%cGlfWhoHWZ06J@TUAlWIRjh)D_VH;7y z01ESVIznV_q^MDk6K#5tIu8AnXy@D1b2ALdO(L@d3ZCgm>1sETBASL(7ZR24p%Ia9 z!hkm^^BfcnanQ(yi!ks7at>QeH2x6fy$c2P63V+Qh1@#IpZgh6%F8smzLMyWoeD~l zh!QuF*ZXV}Q9(y~BF;xNryp&67;A1LHN<~S#0+%!f`w>-noc%tAnKb%uLv+G%uKJ$ zHWS%9(K|09LWfV%2S*x-_Wnkn9M}be9;ZtyrxV#W(YFhrFxE=H?Zp~w5QG=55cOOk zNc#Oq^w3XULH7P3A~^~1x1l)xpTfZXJBU0xh2d|Qh^7V!nf6;yFki^K1Vg%y7YYs` z662bMi6fzC=4N41jTH*&g(>wHh_Z~rv<*{<296WvUpq_WnkTG!znUnbz3`N&fM~;c zVf#NK5%Jr?&ILacP4?Cb`{ZJx5sQWWsybLE5_}45klYdupBakK%6T`@pl^k*ib9Bn&JljeOD5{P zPxxh`2L`8#!l;m_B0&^C2@&+RStClEi5puQMP0szhx=!Vy3aXFg~yvjTRwl4Xh5Cl*xH3e ztA~i1J0X-Nz38>SZ^QGUq7NGx(ZUkZ54sc>I8}7(C?bDRM3Zidmuq3j+Kb}a z7%1*?UHr^e7&=TYZn%l}Ll%nm(C}Osu5o+N(2}?iEr+>PW0#-;#((*h@zKBq?6(4iscfS=mx;G zQKEhuf}izDG?$JM<#(6p6@!UlZc6l3P9m8_5_DoR(bhwfu!Gl#HcysB1|#?DOC^!s zFHkmp+Djt8IE1whtB)vIhV?Mk=~$bvUc&lU)Nj5drVGk){ST5}ONXEe43b{;5Hx?4 zWUvYzK73AM`dbNjpr@p?aUfA~w4}^ji0Zf@nO0XrWVj%iwIBPJMM&m#grU1nNxVy= zQ5K0LS=td`Df@?Hbrirg;$M>0-D-)3$4b^7s{$|FlI&2S+~T7od%iqP)ZwV);2<%P zbi3qljr{@MFv*LlV_?7@$+bKf^mK~k#!(pZ#4^c`Z}cIWJxlV_4n(4KgXHH=laRW( zl3yj*zhjYC8o9qGENLrEiiYRUo|AT20_O8fm-fy7o@mT@X-+1vVVx!&r#*{MZjshx zz>^g+>EqwHPz8&n3!=6X{Y5HWT)zz=-y&VT{TZSro3wVggvik(U4Iq|HMgYeFJjeJ zO1F9|iKZx|2Y-cpr8i3Y*NGcZb{|VW-gq7L`K|QgPbj;2G14n0pw_nr>k_O#NWU71 z=hk@XPlq62Y^6+8F%};7kx90jKqRloblHXQe5WiTzYi2VDT^Pw0fwc@5+o^Lx;e5= z<1Z48eqPq)Ur>B#j;!12Ce*+6E1BtIJXpFyW<3v!+deGI-iGV7J!Mn&ZzHOa%4%Pj zPxRPjSzXOplu?lE>D3cKJSnnGPgJ8h{ZrPks6EQ^gzP}`33RL&*|8+t&p04^$%!0` z-;%v@(TS9elfAoiB`ExY?Bk?5V8rv!>O|aa3x)2~sm5;4R zByuj27Zxr@)7mGWcmokxks_bU7*W>}d9?usY$%miFFc9*uNfe(-h++anewFt=iot& ze8r9%$Zco&+O_b&vPQlm!a%fbw0!3%c(AHezMD6fRcGbL+Ch-QDnCD9HhM+9{L-hm zUaggXCk7?gR?2Vmd=uSsvHZ3t79D+%LU}<9VmhQyPfQ`|G)AHEctM$Co>UkJirU^# z476NF`}{y*oueVDTd5d60oUxB!j|zb^!H@N$TRRH6o##QR55cb zxZki#G3OUOurpe*(s7n(f?2VCBqF$BfMWaSm0;GPioM1!h}uOej?_reQ(TH;UTp|G zyQ(-=+Z~qs6vrE(V8%y^b6-ZHes?K8{5%)|sZ)F&SBBglP+Z#kBPjQ>;%5sy)P9Xs zgn{K9r6d87Su#r*d;2;iad8o3>80eWkTxpzy2yA{>Y1)lcD&JFj zhi|RRxWP_f2`Z9WV0FS{UPPf#FL=fb;`X)C>(rK`O*t#LFGRw-@cke^kjr8 zY8wnnnD13RybU2+vqa@M+e8$3Q1@CIgI*ts7fyYlm|zvrgnqJbC#>BzK7xrv1;zv-bCS#s1|NcM9xpB z)*LwkzNuERBakb2KUURFy@6aGSFIfd%bLWh^{1ggtW?#14Nnt>sJ6X21sG^jHI=-D z+^ba2r+$rc>ZE$p4h8K6)j7^=nYUD5JYSFIbV+qBjUfUrsjhE?;-v0saj*|qxS}>3 z1PF&OR7ab35Vh%|PB?H8pr4$fZnqmAto%aVOZ6FYvsFEO@&%&Q{pv9{f$Fp+>PadL zouew$)lWk}Rk^yFbAH2d_4Gy-i*FHe|9QEbZ zCon3FQhy(f92f3W-`a){cN1wOopeaqX^n2&M|d8h(LM7kh$uy4IFEhp_GltULtaUv zCb0|FQI|9wCqZt%shaLL!4oq=HN6j{fa-Ocz8%D+0 zBH8;n&E|i!N5sCMDzJFFD!0^FWrue4J0X~4 zvb7tlxuCAvoiA+xnlEDAO4PVP+fcHSC}*X1Uwv1gcAfTbU7aYSt=cz&&VsOFwCAR{ z;fP)P{*CPzP|j(8%I!u}bV4Wmonahr)`>4xqG=t~1$Q`x6duw=zG%TL*`V{bTmBi^ z8mU1u?zy+=^pC}K{aP|lNUdSo-kWi zmR&{^WYEn%1wvZiPRHCO$nhB6rdW8~B}%s=emVGIt?s24lh6aM>E1C^quSc*E{N*T z1uuGaw;zc`Q<tn}CSpM$1V)=@wFJu}AbXuVqx=G?nLKROa19rUEWcp@UR_=tY|Ga=xC4f+W+ zSc9hNC(Lb&)w@?;){}oZulIJA0Yo+Wh3^BD6|?kLr$#Eq~Jr^2Dz~lxu}>XQw2V!QUO&_HP&K^ry~DnDRso%5}Mk&TW_>F zJT6OSw#8v|xgBgvWC&{r4UdndGmh-qiEVc}tIm^L|99&B`)tX2=}mK^K59kxuuHtq>#o5Dl+Lq$lM zHOuJ8_djLNL`AUr=(9p9dvUUXU0D~J@F*-UqX{$-Iw!YUuEVBb8OBVHJ)0RjMZ~Ak z2r`nBOk}0r z8k^EKYs5IR!MsZRR{#@>vGOog<8wTf!|Wn_D?s>o(D<{-xLbrBaCV6m&cy&$+c#gJ=Uyro7<9QvUqZkLl}(P zu8hDlXST&+W>a!Qec|n173HNO;@sDO-^KWL*Z+7JUydm8cyPd0;2FOH)LPw%G}*IE zMwcZEf1Yfk!)38~>~2>!`%6}+@6+}TVwT@I*=Ok7QRGv1TO?v_@^wtnW3Ml{=Ls>} zHm^GiN{&*5m>u?EZi|y`j)-NWmjpjl(HgiwCb(4r|4Z-WtO%BrBfHg9%r>RRwN1Js z0=`>aR-?_6ZFk~}JqzBm^02mSc(N&JAerw}A9tsKrnQQFpnhUv%x)APwtLbn>2`<3 zb8kKI8uYD59wUykksWq$Tev_TJ^oqgk5nNni(M2xWE$)&h1$vfcR0q%@K@Oy!T5A; zGE!x?xic*urzyk2muw@_XLp#{`5~b(!+%E)&jY8GO0H$_A8CpET`evvRNYa+F86)T zJJ4S`lLMIb$Et;4#`~S9@x!3}&XWxP6?cx8(acttA_2cVkIkBCb=e&r#LtuA$+o$j zo>6j?wqj^e@%V!3(kelWEAzb?Lw`>t3vw8k;>ieY#JytKtFf`pe)n$vy}kFD>&8{F zzlx@{ntGp1ZYpaIiUQ$v^1a+ITwp)OMX;6q6WBZbw2={bnrU>oEN1Yk(`|D(J?U1P z#nX$e&Io0<-(gCy4awgVW`#;DrmJ! zf^K+xO(>!n#t!U?H%xfodGIi!)yOtI9q;QnsFOtPKY3S&;= z$W))O3-Ok) z#)ToAF=OLfXs#t@PGe@ajWfO3lI3J0dl`HW4f{e6hO=JVL)hVrQ2d5b0Cx(Zm^&3P zBOo^((?mAqk-gQ?#1`o}7MtA!8nrmlurjmV9Q$ec9#?jroz2@F%7(<~SbOULz0Mz7 z&PY??MzOElx>4%Ox3839WYFhFilLfqo|(vO`5|m*VWjU1SF>1n6pxbF1y^sj zWTS<;>@9)txU6QhnY$5Ulgc~9RsAWIVaP~?B_7!b`2C>Lfqz=5hc&0SXT3*%z&3ay zgi7|wx|k7s>fo~(TH`%YkpLxta zfn8l3#XhjMWv9ogS;E-v9mD)XP9LP(uuaf1BWcMaj3?t*xVOEI)g z@EZsCvEySy*%M=X@ZnOJ%9`gI{IWkCJB&#mZo}-JApVALoactnD+^GwK4KB4}+I6 z)51s65iDVN=%7qE#ognj{%2eaxmN`9%l;aO8FOxge=$HTBBr*Jc%{f-5 z$?oS#@7OyNa20UOQ^n^@91bg?<3>-VvZ`ZVe~!Kw01Ar|`S97#LAaHlx$Y8aIWq;770f@(V>;!NEMt zz*Y~HvFR0|LX~f61rvO;r#>NP#>}>QP8U^vpE*ZXvhFitREBJaCC6&V#KupD5b#ZO zXB-O+{9#br)`xeRkMH~po5=V6>=Gf`1tSBkE#L}VQpOO4s!-RSRxJy6y=?KWP8Ml-XAM?j9mH*Oh@JI2f?HSgII@IGWQVM?MtBG9IIm%@?4$%aWJdt73F)4{UT+RPrci&4K~?Po<_>W zpXr`)Q-M>eF&CbF7Zu_g@ihK-Rq6e|6tJLjgOZ!;fD4Cy_v3<|p;Q4`ZSy;_sgHP@KKPfcl7*WCdCLs14QIm3>kZox5*2LFEE`Tv+?yx*j| z=ZrsX5-aF$U}bx1nKUez9UmxT4c&A>-1We3B>ZO!1cf#4NeGS3wOAcaj~PsvVRQ_G Q$8HxhE{XDq_HGdUFS2{kGXMYp delta 4790 zcmai12~?A3*1q48FMERQi?S3^L@FxowQ39jVj*AxxPSuUf{N@QqL{kiiio`6F4`h3 zt#!djhgubtI-@gonc78bwN+Yc)mH1$TDQ&<+j0J$Gynf{4%~dnn|q(<-sj%;a(0EV zD#BzaP}KJ>!+b7e*6lz9x#kNTixcG`5Z?K80k}9z?4@BiY+cL|bQ( z>_~T_29adf@?h_gX7vFg!|T*VIzhBDgFH4h64m!3&(Joaq2H44#Dzp_UZI|&o)FbV zQr{hj^HNuevWsxMDxG3VvWO;qKri`xLKJqL;?KeHfVXIDb0?8SLAIC`L`m0Z{8>0& zJ)FjWFN4DpN^K}2+Llk5Ged|1ek1#yRwAnhEe>!H&3=cLUo#Q;Z=mMDABkShr307o zTyT`$Yu!Zj{6ENkngamWhje;D6p?W?eSQqgx2MyWZ7oC_tLW0+*8$`#U9Fx=H0l7| zT8e-^E9kdfu=*lS9P%pw2XfN+{X|kH7x)l?yQXr(cQ+9w-sZ-9Y$VDU$i*kzhhKkg z{8a!5tKu^ECnLKKJC{8c0cHkqv&+nIe1R)yxJ)#9Cs(?ukf^_zTXOphQEVBv_IwGE z`*v=#F_UPyH}~4oM?|S@+*@*iXyi6-x2m3~w-4t~;GB4#JMhscqN=sr!Fn4}c`Dbg zo<}q|jyv(BgDAm;`@4Mt%4{FcebK=Y@q@W9P6iQmKg(VF8ptBgaX(CTBO2JkJNWJ-674=%^^+B81wM=;u~;3Ho^ji>kIV*_pwrM2;~l>>+h_wgAK z9}xL@@L3n{KpThn>GUm1oxeCdK5qI_3=Wj&rZUglS)L=w$w z<2QUdjVQd6-(I^O%og*nTzQ|U??V2_`bwgTYka#0zE|}=-yVvL4KeZ`9B;(AVE#f2 zBP#Oef7T5ok|*=`4T$F1G~F@85%nY6UMj#OC(4 zFn|Cg>Vc4S$%a(>3Mto3cy1NOk4NAQ&B7Eb7^TRCS?%|bdW(>|qmxKcC6uo011(vE ziV5||XtuDb^bpbT3}N+JH=>CFLX{Rkmc|R)US)Qo7j_EGzu=(DNMUan4%GflICdGL z;&%%tz66uZG~v{7e7^i6;R9hX9N!bp=PV)e3>I!r4Ti{ygtz6VgxicNYoeGAl6W^ONV_9QOzXL#}zfL{7mc?hBjH2 zA@*y)b3v3iLIptmj*G^3F$>}sh^B{N$n;`HD}c%06mz4phJZhU{9 zo4CpkA`QqASM@|`(yoa$zRNS+=49jJ>~>)$H7cKK@QtH%26i@s@2ogTU&e zvW=avnipiR+KY(N!)5!PAdn(P_ICDGbVrWttF3p?<^{6O2k4UAM%gtZG}iFE9WPem z#X8v!V{zccfwBkt;UJ-1;`1kiX|^QpG(vp0Bwb<_GH_Ayo)C!uyQIL$n*eOB6eJEL z>eVQPeTabD8l>==R-~Ahj9+yUm93Bx8)27hmI`(^qCJ;Mb%&M^P0&j9WoJ+_`$=g_ zO*WBfqqKc-3145ru!3dfePhi0f1&I)Y$`xLf%kl(lN0t0~8*F z0N#;`(0F8Eu}WdC(7@hTjG1ubxJzDwMb%?ISP37ANK;67lFEr|*iOVYMnN}i?S5+xe z5r90eny9JA=xkSIZpgyuO;t^MBMCJ%!(v~ka92%VwFg>>Q_Z+&!-CPQ%1JqZ_ViWd zT&~3(b5&Is4(2&pRq;Il81AXEm-YgK=UP>jJA%Q)MOE9@hQX1eVr>Y(9aq&ALR3q_ zRO=@K;PwX9##0Eu-%vID2*zE{s2bldK+SckrsYqtproi;XMT#k;F#**pdV3^64fUO z2oyL~bDP~iQ?5`=3K_+5~fc31u7nVSUp?yPmJb6>XI$^-V~-TagOf#zo_T7 z0LZ2R>T>4@A1PPATyp}MjaD!6EyjklMZLKB5lUkBRxi7Ql#DW}H(88uoTh#=cO?3| zhk93AGi;vvfcqWH{Qc^80!5s=qW<(rBvPqTe_zvq-L6`FzY(bo4b_ODI;>dFX>=JE z@qUa(x9thE^jPEZHO>cUH9o2EGwxGO&)M+P=ccC5FV41~QLpLO3zN*RTGM~;K#a;Q zn!!DgvY78R(YM@*ikmb^3xkQWZfnN1fl=R2H2I^ZA~TXE-%tmYcheO6OeZRx30ndi zpjo>A60YN&u*g)nPE+TD%!QX}cKo$F{CH?SUJBr&wVKbT7}5XZH)y`ygj#to)LdB& zq(N?)Uws;Z)KBwks0RRuT3&bqh&O7brKhoA?9sZ;n1<_kp4KlOJK|h_?a&UKpHrZ< zqyga6R&9Q=fUa7otuVAA18cO4Ck;ebjL3dsxuleRK;>V8B#X=~yzZ;TacnO@SEI z>kPV+$3ifwf6#sIQG!WWt$R4hAJ=e@?y++*nR7=kCBu4l=)E-fd{KqoPh-U8)u|7( zAHIm1Owtdnh`^%ol77q=QDBmwPuBZj2kfFx^?|4&^YzoR!MN0+pT5lvTd=#n@;ov( zdAoj@;RH6HLHgQ7St!*weRE43=7pDj--ck6AVA;xTLMP9q(4;*fPS6&TZ5YL|HCZ( z1FuN5^?kkjlZ|*mwfZO5;J|bZw03NEAe-p886t3w<2^s*9goABh1!0iERTw)h^?z|V?!gjn3Q0h!1lfF&H^I(JI?j#$(zE+gxhi&mh2KLrc9bbId}>r{BJ{ruv76g z9k21}f1E~{q7BJ$N$IBXCS!7vVKn=xyZe+8|EH%+_;q^z|GoSD+k2wHYKV(7#r-MF z{(j4NTNE4>0dgVD1khsq&7<5uz!t&g;GHS>G!xc&2B)8a_l`2zj8=1Ek~zVWo)DcL zXC7@eSk2CCGv665EU{E#`$|OC5cvuh&2B{c>3;`32VQa!tB8FS9n#G|%4~=?C7G;F z7uJO2m{^O+W=l84nc__rwywXsW8{Difu+~^vc5xnISrfRXu+{QHdJKs@h5A?NDhO=Mdr9_`;KE5gIw6mlwn<5$ov$; zG_cAAyBx>`KU0@^Uxv(3VD#z*Rg*>}3>&svbMdACU@c1VW@n)OR6c=Z(m=coNrEoV#V$NF} z*Ox8w_wvbo8on46amptX5dNqSdoi~U*WY=@@6TuQaW;qM(F|u5*_GUg|9YzM55G=X z7Bfp;jPjWmwkj{2RWqgIOx|^lOJQBxh7CaM+&@%N1o2M6#^xk31AnJI(?XC18n7jg zjyG9jOi}49qb-CfO2XLYk~>@vW+?SwMQggSuLdhw`Fu5tnBwDDQ_5?(L{_sT!f|X# zEvM{DMnnNu*3#XBty}8m`^>p(g4G;jwxk;q60A{Xiy`T0vTc=%<&KZm^x@gug)VIS z5{VsN>#uiBv?e4PVhq2FGLc>C?ahK-@nj!t)^trI8=0SZ?UHCSr`wFN&{=u{4*GaH zo~)h8IlfyrfcLO~>F+%A{t!YSm9o4754qe5X&P*-UspGWPhEEePI=csvmHOC&d4RIW9TOhHfqjiq%YOFy`^hWf?6!m=v4Y|4ZzMK2jdW*&EQ~rPNZ}0u>??0^{ z3E#aStoL*k6FaYlD5#Ry<}*YCw~}bF7tx|GNwlwtXzgYa9StQ~w~<7*i-^|GCGii@ zL~13;LnDdOsz|wDFHvkZsjrVB3XP`D;uAy*{+qfyK1$Rxl)S?a5Dgzky+%JFTJ|9g z8U=rJne;5;xE8LX`0^~G^d_=IZz39XjFRGCCmKJFQqDI5h=o#aiHH_AQAS=EQE)D0 z9^6m#`uj9vnvO^uPF1#QqM;sC%>qco5UTbG0f1;aHELD0_#81TLzxOgE^?@B?hbq|SzFA2t7%p>xT5KP;T zgdA$Y%WJQqVjl=98cJM5gXDr)C$ovNUlr6WJdaY{5X`-QmMEc6u;fBHk=Jg)ijU!_ z*dTaQmx0VP1a2vwvnIjb)1y(Lr-J6KYf;iv!Mn?oh^oF4ykAj(R`w8_Vo~a8?+R{z z?I4OiC3u`N2rb$vcwC5egSQL4$(2Qv(McFm30pr>*gG!`hz|%O?iz^J2!#Eskf9_> zm=O3ak#o2(p%xCxKNH&4V*Q)N!U^YvaP(K<xYqP0s^~A=aPwoL$mznPD{6^q0)?mj-9+;~ z7hY$9^p%6c)_PS&buJ|pW12h%l-d>aBy-^_RoyGJy#kn!FvBI@)F<9+Km zxFTVEB;Zn)K*r~e7XU701`&W57BX=@ct1UnagCEpiS%~Heg%Qj`Z113Kd{o5Nxoyi za}OpZr54DEshHm%T&Q5GQkN5joMq}N4uh=UF$

5KWF@7OKhtIG0(okpqyk%$A;L z<;(knApDUvyHv5_dVhB>ERM%3d4=0g5lBHuYK=6-evNHK?b)RIl)H;okw9}szm zvC3Ak)DpmI$^cB1!TNmz^7ZqD1=;#l!Mb6u!tN#N9}n9MyB&5PO52(B*MVEEwQNAd zU82|Ku>rC0Gj|6YP>Kqu53s?js)^>fBG?G)Mk4zfcHmk)QQ0VVSPObQBAy*3_aKVm zSluD8*P6n{SK@s|HJd!ijxlRv3p$&LI-A%+eHKwS16wHt2YM`JU)h0xv-Yud{vd16 zdA6=sKDbcI)_45`Q`3vB@4JlX#dGY6qh$bC^dY-?9ZE4Pifxi_!T1EQn;#+b*N(Hh zMlxXeCHAQIHKMU;?6H_h0F=$%Gpr%vK49;s0MPtw_Q4SVeEBN-<7ZJs1t-~`nvm(_ z&)Fv|_Ak?k!gwyNxh(20_e9_xqQR*TiISFxhW4{y{`GFrnB|*5uJNK|GkX1Ez9?OF z7A0>HRo_FV-Oh^YHzDBq?V?p@!-$mOqE**;%ZWC+N-;gTqJ2|WBfxmk2{}sIwO(}U zArv*HN_4t=C{dhKba{0f(MxHfYd_)r%NEgX9Z0$E6zqKTXnilSus97b7K+(TI*{HGg;R3~zUcXP2cV1jQF^g!TMOxLGL%Qxb8-h;&ep08U>G+?Coy66FfrIYw(??wO_ zA-)y(0;XcP`1ZFtqAU;byO4ZzYccVAq99MUmZ5na`zTrl1n9ekmPy8v8mem8M_H!I>~$>YBrk zgBL5UeflF2vHH&tl=q~YZk9r*LZxqS2C$k} zq>6c@1N21IB{FUnhp8x#H3qLG3L7fhrp5lj zNwRG_O(3c3hHPh;5v7;P{&XUZXz4K7mv_MK8Gf=h{}zmizg*t6jHp*f%9g&yxeTefqU0zmQjot|46;V+Tn3M7upZ!Ag)*Sh) zPRQ^Ln|yX!BsBem{EY+nuvj@lzUm|#GXe6ocf*Og_m^*G-iG6=^5(oRh&0FL@5bCk z3u5JmzCt3#Yw}A+bU2Q8$?wN{icSYiq{vg$Kg}r72PQ}iO>AMl|t^JBhUO7jd9qa%ook+2hsUIC4SS+^)c6Kkqf@fCP=TzQN_9H+4co6&uX#cw zU9a?;*hVyAlQQUpo5(X=*+Z#CB`TF65qNHWqzo%_9R;Fp%7{2*0QR4%SnsYK_m;hXP{%KNSd zq_R!rZ^mgir}4I(HxYlM74$gf|DY0N|2dhoDcmTm_TP+fCW0|eqe+Ymg_Nb2?;!vR~bxSy&=k!s3@@MossGs_rS2;A_s6N-| z1A+Qp{iL-9rA^T=O98NYi$;-;fJ19En!mvBz%!aI9`I)sYJ8OZK9^MEe*W{1YhDJGLGW-<*QxN6CZysggJ`Ya{+ar|&DUZ4czte%Z z0{5jIc)P_~?RKl#8D}%<>_)4_sdpHhcB^x|mb=o~i?LHIw`o#PI`(G3JD)pWgK{c; zepLX!*@%|g9+$7jv&g?ihBWN%%2a^~N}(jteODbx-Ij zU?RLxqwMhtUd!+dza9SkbXJQ_Yd2W%?@ZL%>;{vQvlRHcXNM+;-ShjrAan=x-y+cT zB>k^V;|s{G8y+n6Xm6PziA#*^?iLL=BjC0V_vCI5?8K$c^mP|TO2piNXqL+y+=c5q z#E0|oQ+4r;v)asByWOC7+6+k!lRb&sFxcT?iIyHWo;betf^lY7a(OTQWa*FY@d=Wzpdefo^}kE1!c$-2;Sx&Ik&y73b%Z zpUF)8mO+Yg@W)G3G3K3ri>bn0R{Qkx^3q-dPSq{2cT@)oW0GBK(HWev2K#t}!QxCb zX)SyoOx7e`wz#@s0j`q&Zw&27rnV#E1(wGh1gyO9=K?vh>LAHbvoYp*d;S2b)1F{} z>KY8rB!?|dtK(0K^kM%5y#nmaZ>I+zveh!E^p3;)_`JcZweHYq658CWqPJ zw8lB3^iG4xU^ZB|D{pza2c{eoao?tma?eh?$8tN?Ps%O+-6RlF%MRRQmx5w^tC=?IC%~QKHG;lKxr* zQQ%1GFLn}b=q8t++lhiz3cLSKbo zcq9_Cic0*QL`!V6>9z$0{7lMjH=-dq)KIJ^de%XQ?jW(WujptO)|baoOV?GR*br(j zzd#iFJe_Q*BL|JBrH>2EM9;6K%gvoc^Ul%b*26?qtEjtT6)Jv-5icDfQZdY+pAgWe ziV4UrCmMQ;8M6C65xb0;bvcvB>k+f`9TYONig~HNizuRoSy`7uG-d@;cxoY0N)J<9 zeh~;gVAkI|M`Zd7v-MIw@OS;1srdwsG8Ja0X#pyBW1Q-I^reG2dUgsB@nu@}*8|FA z=6H2H(W*tv2PdvmY7 zp&+5_+`ebfyPVIs{SUBT|0dUYxq)cTx7-E&cA`Ol;4WpYC-QigySFfqC`RNSb}S_F zY~)3@m&h%Zm%Bm6>En4r9ugET@;)ZCe$6lk?>p=cQSk)ccPbVN@A3h)MMP_}_+hbc zfJ_1W*m^V3i{1Rh4zy}~G9Mu!!O;(SQyWM(BbT36fc0#NPfW2B4GZO8>^~F8o#dCB z(}@On@&#(NG9ZXw`!?dNoXT(Z0muB8@tcQa0VzipUpe3m(Ih8dIRcgZCY`To&jT4f z_+7hEQU3eSA<<=H`1@IPM4T`G!>3_Hi#_=tn^3SLaXBLdg` zNvJ&+OeC{H?bSZ}qVR?z7t?TF`2CVy@SiVqN3Hc8W!F(~0bZ#i9Zv zGW~$KEg%i!6Cx^IC(*l9ar?XLv0f?eE&(Z}XT;ZQP}z!$;{J`;pPec0-_wEV$rXS1 zJ}fY~xVeI8q@Q?A=!Gr}7H@&`v?e+&Q^_h-Vud)?@(Ee0Yd8r zRaD1%qUf`#)VeSt%??$*JJ?=)MD=PD91XClYHHB?=k}?ZyxdU%tGco&kZ7wN7W=ne zP<3C!{(?2C+m{wX;moSuF`q%&CDlV;*xE?75IPXh?^RD<3+Y=BPh748Lh+b$2uT1UykcvM}JnMOX-&PEkJ|Iss#PLgU~A099_3 zM)to7wiar93l0*cj@S78)B{eO(+o>-1?i$R!!sg?%w-zmG7ge_S7SQR2?cvolTiQ! zUOA!3J%#gud73rv55{Gbuc`1gL#iKZltKm5)23+%s3!^lvaQGh-mxkQei(-wk2DtYQ_CtIY+8J1&7>r zss7GTqJbps<)9C1mP;*}=b?;~q~qi6Kv5@3ZC{`O%M9ttdnO|966xMl1#^E}%egoq z!NpqlLw=Zw-+ZL?D(l5Uw${hggx=iHhI~?ivFX%~m9C?b0IjvP0rP)H8@G5A(Yj+= zd+{FJ=WW_mhY@i5d2K+KR?c4kq%s*eKJ;;?3P1~Y9n05=S^wPG3UBN~-?fJ)Hxb2o`ue0v>!kMML z&I?3YcI~ao4opEm?ZbvDw5UYpZvl~%1X({H=f<6q^{+ifOABQ0xjjVjtK~tRP9m3` z@?hBrWOC%-ymlmdM;;d0fcfu#Qy%pI(z&2l4*gv?6sl1+3vd*)NwyaSf{ZQl?AG&` z*Aa5IaXSziF0b=K0&Cjk4M)Br8a@TK3wD>hIT`Co6>>#s3tD(n-tG+qhd-2G{}8=T z(aN80z_|#U+= zRztMS4_1P$*Oh;VH~~9#m5vMek&vm|mEY%3uiG20K)K>|`}#hS#y`-teF3QEMCvZ} zHbOW^ce4&37>ci+AB!o-dZ6dyV1s-0-X|W)(82*?}qXEpsH%Hf3JSb zk!!e)?RxX_JaC~wAN^JbbmENOF+C>+^PHf!-ogRDCJp zuG2Tn?|~vl=-+8WLLuMjPqZmOjL~-t#rqd_>d$-*4){LNUvSR{haTxKG$AjgogBmpf7HZ0v51`bU&6euaM~>r$$F;CbS|-uX zY0k}Z0LM&HzSH?AM+01x(FY95lOY;EKcmT%U^AMMQzK(-sfiYwJ=$cn;)gZX6m3`f zr?@(s4IaFrbvx@EB~di}l~`|9rs1xn$%>cF35gF>;Yt4rNj{a?7L@v>cvSAp1dxk%?S$lv(>+ z-Mq|}c#|zU&K?~blNuYDYK@+1Q>MJ;>8u{Tk72x&$z#2$+%=4>^mF%fR*n5LqjYU? zQ&xrbQ{2kEoTjjJQJL}_?^I73#X65f)UnQb<8X~Lc80)@89-J9%6$sdKLanq|Gpw~ z{{@oH8Xa%%iyIkjRrbtubJ}C42+l|LFL~vW-TdnwDoYav_xrD%yOi9_I(_G#5R|s1 z9?EgM2h(5q+#cw>k}*?~es4bcC>py1#*o5d6xV~*|vDmrG`|0GhwPiycUw8f2cx0w}H zd9d@6<15x*PqwGc%|N4be?=0N&0@6};}vGRt5aT|rggSfyu~u(mG>(>e_i~*f$_0c T6#qY?Iu~wB6`e`7Y3~03g27rv diff --git a/Telemac/telemac3d_labelCataToIhm_fr.qm b/Telemac/telemac3d_labelCataToIhm_fr.qm index d5d0baf93f7dde3555b0788849e7221d8d00c14c..6e5fe931b828c75c292d73d8411a8bb91ca82faa 100644 GIT binary patch delta 5761 zcmbtW2~<<(w%*A(nNB7oj3NRe4%CqdRqGUzKw=XDAs{Lm5fEunk*Sm_ah~gRaKKsP zSm#DsdmUPzrBChC+S_Zj)mrORhgR=(s(O{)?|`L!?Om^Tt+!Z*eRBT)-@~`Rz4!n9 zkK#+u#hyO<^FmJCUA5$7RI3k1tUvTkB9YpU$W~6&uZqY%267!yS`AUg&qP_%h-!Kh zJ7Y3Y+s?$+eNL3{1xe-y60JN%lJ_gF#$WKFD+c=_8 z6G%08ACXm08qd{!L>*dD3u!%3Z5H`IKTH&Brl1b{i3}&G{eT9djU4sp2ZeN-Oe_qo z7(~hCxkRHMP)htpBD0Iqwq7C1JWlD!vxwaA^PCqB^`NYq5~5YRDW@=oD5f)w{NR0} zrG2RKH6xL919>JotBLwoQZ);Yx_GHNIGSkrr!*zPM^rhL__YB9}06_LcRJU~vpdKpv%aU}W+5JQx zRe%Et$)Zo$wnSxNqFa|T5a|Tb^Q<07U9IT(SnTV&MI1!AM1`-5qpKj-28uft4u|76 z#IbjP)Q+{{E)x-`>{GEN;s>IF0bq&p-VBb_mccQ}H8%8n57^lKE4+YwaRVWJ zkOv_55$QWY)$KF97c#jQFgrbFdHoO!FvX?7~hpL`l``(!*t7 zw~<}77D&t-!*1fX5JkSjZhnl&Yo4-u`Z9>z#2(n&i)i&z)^j-M3X!vrJ(7@3)bn%p zu6Z?)mu2r|!Lg-3un!Kw)3@GZpZrx%^hPH8bQ2=ZKgl+*P~@E|i4jP((<|x11t4{G zl9vZRBpPyA(yMa{IIvYRaLGoZ@o|z&J93^RlZ;S*fyQHyR9Y%gT~|Gl>brx=w2R7Qd(eO=`Wwf=qX%sb2hEyi%Gu7?F%Ek`CGo zMH_}mvuE8yXN-}K-|0ofhosd*bBS`}rPWn%FoTyaiW*5Y?<*;P`D3KiE3G*=74@I% zm9CvqPNXc8Zk>URlReU{>yM(0-k0wF5E5YR(d8jmYU#N-^NHezNUusB5cRH=Uhn9I zV>ao{h_0xP6Vh8h7>Qn=FTMK=spy#}>(t+Z*3QYy9{}N@`7+DVsYI@Ivf;(i=!g+A zcdZ`v&wVZ{4_ty)SRi|Q6BI{0mn~fivLpt`HiZNtvNp2KLtuFB`?8BOad6WtNIlW! zVA+kUIQMo}*{$<%FlDanLASqQIPI4`4u{-zSuTldg;ed72NLwP&XZdws({=u`M?4o zwx~p&c3O{e()r0pT+GLixgeh+lu__*`ShQk5HXA7^PPZrgjBw)9-VBkRKDEePc)&o ze0f>`9FCWJtG~ijTP)vry%e3UK)!7=4846uzApg{DD$Cwf29P|bC&#YO&64^phDM^*z*zSR$c3;b%nMEMmVMw%K?G|}M2b9OKOA0m$kx%@lt+2qSOHj!|M#j?RkZ9TRo9HLXlqu#Ma~}N{{1w zhg?Oay#q+tQSs)7ZBWM9ius;!6I!EA!B5~(UUG#uY7J4xfr{-0DC%odY~N)A%fD3Y zim?(Yt}Fh#emK#(AjOxrQ5{o$RNN0cigGLBxRzx^FFCoEUN{upn@hNrj(zoWEsN;xeVBxXkS3hNzIbnh~5QClnjkEa7sNdr}a($BG zwk28+$rW70K37k!D03gk`ZHJ3=^^e1XSuTKYNRfetI+E)6SBF=zdj?{&T?&2XMNEyxDOXOitr)2znaCC<oE3L~2P^)-K8*Qf*T1WV_+MkgVLrOeacjtE|&sgj}mU)1XI#YEWJi z2jU7hS$U0>fUG|#Z!SEFt6Zt_v3D_2G)=|c1Oi3nD$NL-^B6j*G^-ns+bUJ)(ECIq zOI4BeK2(81)kb9i5^1XFSbQH;po%Fw3Vv`V2&=6IZpU|>PrmNz1$HQ=($|Qlp zj&&+mbu>}2L^Wvt8T0{vRk5K4q>fQd41pu_id56y{f?;H3dqZ-|L&}6&R}d9U7?yk zy$-o*r>Y4Bblu0Q)_sE97j;(M_#grYY^o=rFr4#&T5|3RE}1LTL3eaSf;!a&|M^{R3~;RyBScpe>)S8oySbjAwxfvnA2_*i^{a3!2a)X55Hmnl|$gn7y;6Z8-EUS8KYx>$!>x!(EMO zY#DNVOJm(}6dg{k8Ca5nI(}JWyD2!pX`Is$@!FM|+?@wOnmWyjfCnJgLCu=lO=!hE zG~N;SiMTAy`v>4q*Ko~|13VCl)g0}B?_)mEocanmk3OwA8(0n!-q)P<2BUF(tZDGv zn2ZCrwag-TILD$@7QtZuJ6i2GP@M2g>#u{t%ouI3N;tSt8ysRJdS|9KOa-}MyS7g) z9PMJ#nwOlyHGGA3Xs8C4Q=NAB^@q5a9M~~2!f%k%p z&$Ol)hI(|mOzqaaXf!R2+Pa?|xO6sXkC(+@EPt!L@dyzQ-J$(^0vuX7Qu{O*iWWc7 zHY|q}RTdKM-R*lvHI(tq@GE1P4&>q&tqh2zNXnyp{4b*RltYD7f(&Dp;n5nbPPfZ! zPc=IYt_&w16{h3ELj8GF;B|g%wI8G(e@EY1=5I(hTCHwg-J`Yd?}0T^eqyaZ-#Iiu zSd{A$ttkfQ;Ko(HxN``?Kt|ACOeHVY#^7rnPK?5niG)@Nn5;=wqk-RJ4fg%eDxPT{fcW!i zB)l$yo>FKlqx@#?l}4K*!{jzP_=N$1{K-fse@Ar)6kJ zlEY~?xLjtF+i6bEu({IRNmiTL-JOpL2;hH=^ZR9YCjsUX8q?^#;A>p7hkw+;|D#Xn zZ%yfce^~#29By(z|9c1iprgm1>ge&OI^zFSNBp1a5bi}y74b(Pnqo=t<@OyV4w6$c z&?}^z<^yc9!ODwf=o+zFu%T^W!S6QsV}pVJd_$z~c>j}PzNk8YUzZ@|x2@2HAO!_T zNg0i4R_CAWaM>GoFHP*uc?MEu6HURg(ide>2>uDwg%==lQyB@&ECN3TYUjWB*2Kg} za-rz6$kA*f+L~f@Sq(OKrrG8&;?izR_uw z62A9nKYmX($G{ffby75cF`pYh2ARz%?o^v0MS$4mNEg~6f2VbLTG9X4=8GKvGE8##hkavu z_4-eJaJwvKv}v>1ou1)LG8lznGolZ;HV%=MBkDh5&;+*-F*+L_VUK`_@I_B~&Fl*Q z#fMCXEyHehJCfXbliO@F+j-HxAYXyo!urnVekSrY#|uzlf4oe#~;cL)(eP& zEkIfr24j9RAVX3z?1^aX(CBg+jCe!ia~teV-?-P^oUe1mmlEIV3H_yfWkMn!Ikgp^ z>{b&$-Y?J>Hghc( zp`mm#lamaTB+Sv~aAg=Zh9oP$zP-+OchOMsEA6l;hu%aCWAXPZPEB({u!*7n8;ja> zht1%0I}Ii)|6T83-o2zJKWuz!-@2L^V&D2@M;VxQ!L$)oY$FG`el_hf8&ho#e$hG| zUuE~_*Y0fTTez|(?H+aQ9jqli+I;KMaJa>>Cpbf%f#4kOW cnw4_6D;NeDj4nOjVzG`d-sA6EupukpU(*{bD*ylh delta 4215 zcmai02~-qkw!U3ey;WCtBl{u>0-{727eI`NHchh_1Z);jQCU?K6##*QR8~@34{ZBK*1awiw+dJG?ggn7Df7QCz|L$Q+D4b zGCEOA=o+HMHi#YAtPrD6_% zhOeiU1IQ+HT={{#a_ig@fbW=y>H- zqA_|p)80TdQbV5<1``=t=<2B(M0b6NW8$RVPZFzTsV1_p{Gvg;oJNSVat zUpRQcL5XWtCDE{}CW+^kXGF{<$>gXPaKK8Ye3e1eUm=Ex=K<~c@50%laxNWOf+efr20BiX6r1ey8wULha{Wz$zZ@sVpib2)Irkr z*+itOQ_{Y>84S;m9IcHZT4@p`C-acwQPq<39H`HnC+Ynrj>zx4jV-gb7Ph6CSr88=6RCi>B2= z_2b!!ypJH>P`X`5&QvR&-1!N_G%HM{#KY_RxxUv#ArIWnA#d5WCZazYQp8lA{#a{*8`hjY@y@2Y=r z&R!3Rs>X26L3qD*EazHZOtiX@^NQL=6!QZ&ve^_&wCou7b{BFN=*b20Ku6$i*kd5_wPJ7WSJA3h!}?f>Vi{UAY1Ua_hdCTfQF$mAu1MI6-uSI=BkY zOyqb4SL1k*C}=-dGYo;~^jzKXT!_<)Yuti>R-EQqOjUb`7RPZr_+2OqmfQIPkyI_` z4vuG`+HS7%&{(3n67IO|Z8Reb?v!650G4r&3{6CTTgN>~0Kl4Y+|y$KoZG}b%S2hS zQ@NLyMiXU?=U(kV_$V!y}Q)PU)oD z?L-+SY5Zj5bmAw{B=u!bdRm$vmQPeVR$BZBOgOhoYqkTxo>FQ3We*~CjkNwYtVSi> zX39aen5Bp3HKIByq}@CycWjfMe};}Zrd9gc0C%FWTItQkKB9$|Ch6^0Sdeo`+N(!L z+ieNE7B)}DWX(cE1{t?qj|eWytbW9X?eEE4IbSr6>9RpD(5jd9myK8nitW;6`kP?L zG*lMd3R~G<7C#NZ=S-JP-HCmh@5mC@JV8UtmMz)eifZ9y#WPaT227Q*;sPLwzAIbr znu78gDHCsN-dN<`Wck_*vp4a2t$XRCO33|NmERKJglpf zDC&uPcEe~QzCpg!231gXSpMz~IC74c*VRE2<5T53>}?Rq9{G*cZbZ#mSgdbumiOGj z`tsHC-s@>Z;mz`=BmRjyp+Nq^8Fp8OLOQBHk&{eeL-6BtOc7or5UsnRm^8N!^RPF&53?j%>Z)ih{sNcGQN{Lq zIcQ8yiak5wc=d2an;-gwF;sCRUrN-ZRh&EozY81{U*E&N`Av$Reemb8K=HFd0yD?JcB z|2w5_0gGF&NvYq{O{9oWrWb&jx*lcDIqV<&RGB|{2sC7&{OgH9xUSokRnEZ>@jRti zD5B~fDO+7l%|xCjmHTvXB*Be9B5W!Dg1;@gVyzz27k-f;r%W^P7B=FM(q~_gk`D6#I+ti;=-jqr- zEt*f?6H8R4{G19z>RH6keFx%NGnk)y0~?|$_{{h=i0>?)J?t6o>*IWG zaWPU9$mfk7O=LNf&%g9DQR_Os&;k)RyyQ0=IYP8$IA4Db{@81L^FuH&a0tJXMV~3l zLY2M3^Y?N!;Y zeTw%LDkuF8r0jFm&>S$gBqn-an!B&c7s#dfykFtwRWw!qJeogxF#?h_p|bdgKbK;qOA0ZX?wFgHU7- z0A*){RUdpy^p`cTw_u+L71QuNDNU#YA&tiPzPQOW!z*RPXc^(dn+McfA?C0=w0nUxKNWQR?eYx1-k^)!#K>U}<@* z;YOk=@^)&tXxO12YaC7)Fd@y+45~!HVG}j(&Q_@Z^@$qy4Yg3emuAEVcW}?QX@VE! zLJRL}!r$vcBdOL*%8tbB_EHmZ{|%62jj;?&)DP06?*9mPLV#wo^;6WnUelV?hYsqZ z`LGj!yj7Z0od7y@xTb3e-lw-|E`9+GxDM4^wONV|n5((kYO+Ho`(E?9rvw|m(6Z}+ zu(V05%EUqA#%nFD;AqM+t)1{@gNN46UJo^Ev`zx-nnT)v1^^pAN^7XSi0OEVc7}rn zvtx>O*1cyKIL>I(=f$CKe4?FSJ(|cWM_VYiLX5rIa$PqX-f-=1{UJ0QdxiGkCO338 z7j65mQ5X_WYR~0*U>@+-_B=;~F{RqaemlT`yY`hG990%*U)RG*@-v9``kB4dGgwK8 zSfTb%=TQdbQaa_}FI{}K&)If>POpzM>h#lQheR1?#~X~X;d)(!XligWms#X;;$)i_ z=DoHXWa7kXPTU$eM7-o2U|ulLmlc1tbN|52S#DnII-|J6!^W)eIUy0V$61Oa{1sw`t)oN`D{Kdtef_RT!2Rn@dhzQq zf|%fMA+D{rH}n3#$jtk7v5dJk_yS`-8#94htaV6m{?L*)H~L_C|jDty_Ik&xFyBrF>z|A#ym z%KPm(2h=U5MgJ3%(GX$K#fabPtjr-*TX@l~!NO|7@1GSh2BR({JaU4VJjT}S)G(D1 zAFt=cuN!^DlQRdH9UIFTHi%-xL(2#L8NGG?n5YP_`{#n%+T6v8Nk=Wkn;n+oYafOA W)HZ+CT)wlN6{|PCP7@^9hkfw;*oe@#wjREZU8xPFeh~bx?6~$#Q$Kd*$Sj> z#n?N&fGHP|`LrF7o8cN>2c#Z{`x6f^>KU?jZ3Tv3N7j{Q;MEA^eGCU5N&|4aAMkyWE(F&h@`zp#FIDkO@NHz)$u!S=e^` zyt@<-ZGtB4N1$(rko+$V_e~R=S!}@6OIY%L84z+pSa$p?z?mlOZ%YR}BZP*FY`~Hx z9DCLbKSt~mS}ZQ0*PFu0&QF1%jl`?ORN+*54lv@OaC$*K4=xni)N|OGAe^&RFkp+& z?mq^o9td59{7yWjlJ0ad@nKcyUN0N@QZ-@qFu%Y_ z{6K7kYE%1MpkJ42>rM?I6sdM}bpSIzQhi+YB@h>`YD)W>9iCU6>&t>(saI=?V*zaf zF^;%d-F?(;U`VUF$6gVTE~$IUYgtIK`lVSnfr*NG=tmy{nhR>nXR#MfT2TuW}^xibVhykgL^=( zRb#k7>Zg9MG4AB|m<5_1*86~CfTnyZ_c>N+R?ci|tf^x`ZK7u(*HxoLZyCKcZjD&}IT@a86>A?IrD?~A z{tuKpKunXkEt3^bNE2@e4E%Du_`Q`B`tB0nWg#x{_JJlKYMG>|qj^SqB||Nx7}rAz z$zM+iFG%rK)!ZK^^^IK(OsbZWo8O`&zmd|C!|D2BDPtoU9Q=diyv_p5?UH8)rEy&G zOH($G`p^)mtaL9o)=SGn7E*$HQuU!#G}~sW=5ZdNbV|FnHPcKprCUeOar_2Kx1TU@ zVvO|oZAxWNkX7jkfa{nXpDJ>FshoJ_dE8_2u;*qiI4CdvsSKDd%WIBOk_cJezCXaR z^ske5N3k-^Yx17An0Ueg`FPDRKz&fY+;c3DA1z;7(+9}gBHz)=08VP=s@42qw&G(uD`vk=vykP!L9K zf7T6NPwg{i=|<0E1BPX~aiJZ+?1ef@;vAlbuK05%$gS1=zA=u4?$Fh4=me5tb$d4O zV(Oo!Yj|ZFGLe$Vm+e5xdfkJ6xAMSsz2@yYy1KW1nz4p+zEVG1Sk8m5=}VGm#&KQx zl?|lur7!fW5~zKChkj#2194lxF2?v5=v#(RfP|&`lb7bQ?>v2bYCP}L`-Y^p;S?y( zFn*#5$Sfj86Q3ByyT@`!PaBp_*KszChBc?#f%vP2%Dc?oFV;}?L;=P-42Mtcr?bu& z&aNIx0b2|=SCMyLrJ=LmyKFzg@LeSh;!nD7c-qMF1}7Lpp3qS`g}9GcZcOPa0LJDT z$DgDy@ym^Q4NTPk8{=Y2HE*4>#_~e)mG;P3S(C!{Ovc^+aL_r5@n%GT=jx5Oat@NF zdx~gcgO>Lc&{3m!YZl1F89t(<5DXWs$ zY2GYl=Zqqt&nTr~V=jmBlyWG*-*s1&CjA~-yi#fHr{*8P`^q=>>o_Z=%C&HI=nYeT zEIz=(hnYgUg>pt)O_5D@GV_ILP#l>F8Dp}v+IgR<=bKz1mw8~f>Gk)RXlk{o{Dl+eEUE4 z#$vveyjXh!y|E~;!WI@8X?44-7O&mK$LFzRd+n2a?p&`YHxO$K3#Rsb7^#~G2Ll$N zFc8x#D&QNU4crld=eaPo5g2!+cPqpR;S(N^<}uTeHND^ zcakOBm*cTpY=OUy?jB4WvPB=%zM8Cm*$5Bgm+&b^=`V34k2~9)8`wJ}EG6RC8(4WU z6F*N|_{(PFi_JN{$#$DF@Za8H!QmOj>fm{2mMGW)ecdAiCua7H%<-~4r_15{L}W8AEFw=qWS2!zBnr`148vj@)A|x{Njj;B zPjJ*mqk>|v84VK9qG)gnGL(X7Tqi_uFm0m~gBat|<3Ii5y)*ZI_x_f1&hMVPDqQRl zwmI9PAZ`8#aNG-d>u4aM8S)t)Am@9i>-vGza9I3D0nRswj=<>6h_J)};SUk<$OBmP zA1rv$2WZ=o7+MQVyNaYQl7ShCNU7fkgib}u?RH@1Dr7y7fs_nvv}6In{b)LL2C#+g zLVFw&PcA^Ga1e+MLho%)z@Z)eLqGFiD2BHF0SF1f(;<+z`xD+;E_7K+nt(0-{g!Pxt1M?ROC%U76qy<9Dbv6*?DqMKk4jaNW z!o}!Bz{5%C82UR9bcJ|_7%5zdN&~{ILg(-6c(Fq07FPgorwF}sH!|QYq0e>!&1D_qy3nL6pCY)-vi>j#c7}K1*B_Y^ui_}@v@kgF`LpY7yq)()=G*Y z{?)AxNG=uYN2*Eb4)NPzR_vcfWX1mH#g32W0>(k{pW8LSlw0DR&mIHmS(5P@sn2>P znGSP3>mQO!%rAg-mQ4~FK%^6A)87b|u)r6AT zpQPq2ZUkdT444#Ie9JjH8bS0Q)DzDORjl(mL{Dof2KYH-prQwFJOW5;$>UEz<}TrZOV?;3YzMHQvECw zP=}PyYbF45B9!|5?ZhHw;A}6)?E~fEa|WK+tUUXW(##FlYNB{<;Z3biuuStgXeZrf z0>`D=kk{s1(xol>trS@NhIY$YN-$=h_P_}{$MCkc!JUOktF)J^LjcisQhQ@e1dti5 zy}M;Rka0}=$e;z#q0_okGhc&FeR-IHFX=qKGLeZFx^VR>;POBhUU!}ttc$ui0A%md z#Z;vNhBn;-doT;SqD$!}D&@M``z0)VobJMVFDcP~b%Upi>A81x_iK)D{_&}9sDUQ( z3f4P^F=6sGy>lZwNnD|yoa00-lk`)!QtQ}aefW=iso5p{%y-#=alJm$agd&<&__>N z!GfVLJjF!m4f^-nylJ|b`kKli;H?1tmz8{o{JQlmZ|?^JLWu{6yY<8W?!ru@4;!Qp zYw6-p!(vl4=X$5%9bp46mKuuvX~Kx>hVm9tI5y2tF@f4=J~M1@X(4`XUnIY26Ac%G zD8K{_5}c7wp46^+x~hPztohI49l=#J^AUq*F#2=OjgNDEp0nT%zYJm6jTT>KyjMZ~m(>}E{61m(uEq!3Xb_t} zj4#?)USN>P;W@3PSBYN{%S=;7a>!quX-)?P@^LX`wlLAe5>rw14!$xyrm{TpHGRHm zTlEyc?U1SA(mXoH+tjm>fkO&R_gw9~KWrLEJ4wD?sj``kMy*#(pKhcBn^pJ90qU2t zSPgu_fa43*V%IXh4(n9gx4h`}N-clP!aR4Y75?lvqf9-#bS2>3qqb~c#G(9NZME~e z{*HRi@FlH&K<)AqIU^zJtzT*ZONn~dnVqIhRDUgOV*F0C!zf4KjRLdVxmYr^#~kQ= zg72rL&m7&w4RN(O(cuO!oHhS$Hxp$YF@Icnmou=-{Ol+Lhuyb`^L+R!Y_MprGf;Mn z#j%Z&2}Vo8vo6krr=@6+3`MqD_JbCm+-5npb3C85RhG`{TzfCG^c|#>OA1!gc7u$F zcr+Gido7I(W1hG*229&y2pWq7tVRh+F%Ivcfd2(tuR%UabgxaS@TVrkrKRU4S#zy% z39)vs$xe-zX9XA<^XC9NVV)}++jxp7vjH8ncMK5C^)tB8mSf}jE1K#fU|rU7Y?9R#;&7Kt$~jPFh8y&dH$I zfJsKj7%*ZOQG<@exIkQ@gyTjSjWL|4XfQLQCQ)&T&Ronn{-|^7RlWL_d++z^=v85D zkFeguu?9%11}2q5{qAzW(;rf$Cy?O*>2Lrr_YjowE5M9!m_u9vuLz_?TiDqQS=mH@Jcpq}&)2!arLRn2|31X~&#F`p62HDD>rV{lW_>`A#3;vP$K)CzFk|sNz?J15<-l+0A)C{5@j61F*fNn%!`M zi8iWAo!x+6t7>CcAu!TawPm{+5Gqx5eb<4)7S)cbF9HA0RBe;avBQh1&Jir=<*!6_ zksqM*BKi|Q5IrZ~X2Ao*0ed7s(;#|jD6>nDI4JiT3!Nd3`{?h0v|h9%Irafr8Die_ zSAf}D#J`juB*p3CU%j^h*;cWkuZEQ7i>L0f;?cv2`NU0P`|=n-nI)dtpaRDJSNwkS zufVK4wc%f+K6jbgxSi{$GwK1>yTG(4b=eH=o3=x}qR>W<-BQ2%XG$F0q^@#|en3j& z)U}7HP0V2R2elETcAI*C4%g$F)aUvxkjh=^^Q8_M!@LCD+KJgBb-_I|S%=I+q zfNhe`5PE3nNNG%U6)@<$6de{o<`SfYntH$zDWxvtb5*sJSy~5JBPB=K0aBd)H)%=y z5^7?XY9F-H#eULe4t2k-r<ucHJWvi!zQR%$sVmzM0|2VcnVxGbb3`{n9`6*S)|x#m$e-CZp= zY&}YI)yh4sog7Pd`Sx#2Fe*!aw2ac(o@i82fk0-GCSbh8=U-|@Uha?Y_)Zhv@7{vd zn#GSxfxLa1)veUXd!y##y-v>QWz8ou*-3n*rqPFmN+wOyQWlWZr#V>@4ybLKZ@nUc zKdjVruO7~G;GX7=UIXB=R^vmBgBEC&r`xG{n%4I-BN_TpJ5l)t82C^-aoaJ@|G-(= zs7pOeJVI-&N(YRt+C=Ag&i@Q;+F7C|Q(J$dgwxQZJ-+BEwY;yreyErx{X%=Ab_Wwx zYkM1MI{yfr#{?$KKBV(#W@njKb)#mxler?@m`ZvgF;n-_JT_pws+;0=ou2tgXBk<* z`RBkC9bkf4-MS@7!8Bo=?yV#KtoU!33;ruEl8kB6fRzZzkZ8!7=ttD0EhMVhYs;~~jlOwEroXr_3dpVvOquVK1 zV1hBbg<(gD#>JLu4waj+ERQ_CtTwK%2?Kocjg4PT1@bQ#uMKo^CgO}e8K0B4$BJZP zJF!iQ@x7Hm!g9rD9plX%s*JwRH~|$(@xU^kDsL-}Q~YkYSy}Nbvk$$YRD`fC$D9Mo z_BnI;;)c?)A&dP_Q4Tt}!C+R}^i7*1y5t~v@=;5{FBJ-7Ko%`Vp&6JW(6EJOkFP>Mp{_2c|!&xWCdSo~~V zh+$aFcm1nEEYQ-&ka>AqQ*lSmh;M3_hy^-``*H9&U1_W zycS_DKkpB+2xSa23=4QS-+3l{Ovv+Sfm2grEOu*3Y+RhpYKu+Iw8y2S+bzjcv!+?n z?HQ@DmKbMVq-XP$aW#hKW09$b!A7J$tFb?5$@4gJYD#)ama{G1Gc1YCEZ|kh4ZmkE zes;g)`DWv@%^CKj*ch90xxc$J(Z!=VIN`k59F;s-Xx^1lBnkdb-z*< delta 2139 zcmX|CX;c(v7QNNgRn=Q{1GXZf1`tFet|;QhzSy!ugQz43g3)AL0?0Vdj4imuoPRjd-vV<^`=gt z?Uqnsb*uqWs)5M|pxsacSigi+)*ndCfOO0kSkMQx_$H893`>A3FyJiF4RFswh$Rx3 zdK)1Rh5%WGi0f?!bo-GwsScQAM$)Irz>GymY517@SBSTPV1~Qi283)y=3NPJ%-)7| zmP{aM8k%<>1EwrSn~e#K>cn}W7MPWc%h!hjZaZDZ({X`)8-z}v3b(w+~DsMmbFM+*pLn%bT&An%!GZ{=-r7v#BE~#srQ*M!~usSKxq)&m3Nqkzc^_AZ6^AGIN_5WfK(xdCpek`yHm`` zm;ubYDZX2Lgc45|-}k5oGS-U?Jx)rRE1rGCjK`?NT;c}tTuBt5&J(}gtO3Sd6>og> zBQUpCYy2yv&pxR&?cq91(GH0G35YAvu9(B`;_hin^KC%?QtgI6vc)4Jw3UvrPbm3n zZOt+ECgPTMTg@a&`w#6`nOu+Gs=ZW1f;WPRkBH60$H1ZqMDAO3P_op$H02b@b11zt z^r$qhx)K<)P>LAiOU2%kW;yGaNU@Z>l+QKQ(u%`WH06f0a^^}P_ASX#^W+3w>n(kx zJ^;MNOFQG3Y5YOyraO1E%1aTD>1bicWk&l6>B9X&JSlx(bF3&MM4m&`J@ zMko7LRs;F(%EP_aGmupt-S!7yLa7`)+6v4*Eyrx8auW=4axGgCpW=`+$|-ff?eg3E zYe^)?MTLj>VXwT}WhtfqO0GV#mVpG>`D`{_TrGc6;|IiK$qhT(h`Z#@6PG!Laq|7= z3^4Mp{A>+dWeZU>Vf-$wT=5N*XvPd>kAHG;8izW%z9T9w^%SxM}6WuGTAmCVZ5&WV85rhM-n0=#xc>DV}oI9YjMPyk%lDW2@5KXmGg zJq*yL8}fyT^Zkl$vU&v=_`Ys({VARo_jO@^>tw)1y2#2@z~rins|w`&kBZc#T;z>n z*VWxAWCanr)5~5^!eCw3(E^&WUU#QvF9TKUy7$ps-e>jJAO_6n(_0%^k=&2TAN}(JHx?VTYwCd4?-}NroE#^O zAy-%pjP^3*@3nKB1>!O)c-~MDK+{GP8%kTKu;&)TT0biL`a#3ymKI{R;X}XTs!C~) z!>iSBW<0y(_tE98?fQysZ#s0>KS!N*V32`Wpyulce6vFkJ#+CE* zoSy*W#`EpmpKh#p$dvs5Y^;2)@~H7M9{r|?HcU5OT0enJzGb|YZVp<+v&4F?= zt;nI6)25p$oMSk6k4^jj5=(n|m@ciOJ%g^9ZV#;D{?(?=v_Db9E>$wK(5NES^xit! z^rY%p-pMm?L5@21F$sO$)q;U5c%&K#$i!Y*rLGNN#aYkQJ+I{f!&a#+ zo74F>RiYlL;(Mb-Z8aR=JX}*R_=}vU!Rp_CssmhYYKN7T&dFAvE@>uzsoBNV4H&Z2 z?9m!cg+4Hk^>I)l*L~*j3w$8nH7B}!&$CQ0zqy@(vh&REly?9*>&(wSBk`0bix}(6 z%73sZS4lMAWN|yrmI;2A_-7Y5C#NjSyQom)4$Dqlp_>vcpKlq)xoWVSzsmJ6ou$2& zt<0Ubn4a84Mx-|GQ9gBTJnFI4qp>g0X`Jedcq~RCijWU4DYo}Cnv9b=2H%9&|xtPV{!HfF@#5d(dYh!t4!%Z6qDr}9Ga{|HF53`>8d zQBtGhqr=mxy!HJWrzcGn`i1`bN|zR$8XjXy3~jV0mrI_*((K`>c3Wa>w%wKxot 1.15~j$^{-1}$. +Variable $k_2$ dans la documentation. Pour EUTRO+O2.""", + ang = """In d$^{-1}$. Value between 0.1 and > 1.15~d$^{-1}$. +Variable $k_2$ in the documentation. For EUTRO+O2.""", + ), +# ----------------------------------- + FORMULA_FOR_COMPUTING_CS = SIMP(statut ='f', +# ----------------------------------- + typ = 'I', + defaut = [0], + fr = """En j$^{-1}$, les options sont les suivantes : +\begin{itemize} +\item 0 : constante ; +\item 1 : formule de Elmore \& Hayes ; +\item 2 : formule de Montgomery. +\end{itemize} +Pour EUTRO+O2.""", + ang = """In d$^{-1}$, here are the available options: +\begin{itemize} +\item 0: constant, +\item 1: Elmore \& Hayes formula, +\item 2: Montgomery formula. +\end{itemize} +For EUTRO+O2.""", + ), ), # ----------------------------------- - PHOTOSYNTHESIS_P = SIMP(statut ='f', + EUTRO_AND_BIOMASS = FACT(statut='o', # ----------------------------------- - typ = 'R', - defaut = [1.], - fr = """en mgO2/J/l""", - ang = """in mgO2/J:l""", +# ----------------------------------- + MAXIMUM_ALGAL_GROWTH_RATE_AT_20C = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = 2., + fr = """Taux de croissance algale maximale a 20$^{\circ}$C. +Pour EUTRO+BIOMASS.""", + ang = """Maximum algal growth rate at 20$^{\circ}$C. +For EUTRO+BIOMASS.""", + ), +# ----------------------------------- + ALGAL_TOXICITY_COEFFICIENTS = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', min= 2, max= 2, + defaut = [1.,0.], + fr = """$\alpha_1$ et $\alpha_2$ dans la documentation. +$\alpha_i = 1$ signifie absence de toxicite. Pour EUTRO+BIOMASS.""", + ang = """$\alpha_1$ and $\alpha_2$ in the documentation. +$\alpha_i = 1$ means no toxicity. For EUTRO+BIOMASS.""", + ), +# ----------------------------------- + VEGETAL_TURBIDITY_COEFFICIENT_WITHOUT_PHYTO = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = [0.], + fr = """En m$^{-1}$. Pour EUTRO+BIOMASS.""", + ang = """In m$^{-1}$. For EUTRO+BIOMASS.""", + ), +# ----------------------------------- + PARAMETER_OF_CALIBRATION_OF_SMITH_FORMULA = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = [120.], + fr = """En W/m$^2$. Ordre de grandeur = 100~W/m$^2$. +Pour EUTRO+BIOMASS.""", + ang = """In W/m$^2$. Around 100~W/m$^2$. For EUTRO+BIOMASS.""", + ), +# ----------------------------------- + SUNSHINE_FLUX_DENSITY_ON_WATER_SURFACE = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = 0., + fr = """Densite de flux du rayonnement solaire a la surface de l eau +en W/m$^2$. Pour EUTRO+BIOMASS.""", + ang = """Density of sunshine flux on the water surface +in W/m$^2$. For EUTRO+BIOMASS.""", + ), +# ----------------------------------- + CONSTANT_OF_HALF_SATURATION_WITH_PHOSPHATE = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = [0.005], + fr = """En mgP/l. Environ 0.005~mgP/l. Pour EUTRO+BIOMASS.""", + ang = """In mgP/l. Around 0.005~mgP/l. For EUTRO+BIOMASS.""", + ), +# ----------------------------------- + CONSTANT_OF_HALF_SATURATION_WITH_NITROGEN = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = [0.03], + fr = """En mgN/l. Environ 0.03~mgN/l. Pour EUTRO+BIOMASS.""", + ang = """In mgN/l. Around 0.03~mgN/l. For EUTRO+BIOMASS.""", + ), +# ----------------------------------- + RESPIRATION_RATE_OF_ALGAL_BIOMASS = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = [0.05], + fr = """En j$^{-1}$, a 20$^{\circ}$C. Variable $RP$ dans la +documentation. Pour EUTRO+BIOMASS.""", + ang = """In d$^{-1}$, at 20$^{\circ}$C. Variable $RP$ in +the documentation. For EUTRO+BIOMASS.""", + ), +# ----------------------------------- + COEFFICIENTS_OF_ALGAL_MORTALITY_AT_20C = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', min= 2, max= 2, + defaut = [0.1,0.003], + fr = """Variables $M_1$ et $M_2$ dans la documentation. +Pour EUTRO+BIOMASS.""", + ang = """Variables $M_1$ and $M_2$ in the documentation. +For EUTRO+BIOMASS.""", + ), +# ----------------------------------- + PROPORTION_OF_PHOSPHORUS_WITHIN_PHYTO_CELLS = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = [0.0025], + fr = """En mgP/$\mu$gChlA. Variable $fp$ dans la documentation. +Pour EUTRO+BIOMASS.""", + ang = """In mgP/$\mu$gChlA. Variable $fp$ in the documentation. +For EUTRO+BIOMASS.""", + ), +# ----------------------------------- + PERCENTAGE_OF_PHOSPHORUS_ASSIMILABLE_IN_DEAD_PHYTO = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = [0.5], + fr = """En $\%$. Pour EUTRO+BIOMASS.""", + ang = """In $\%$. For EUTRO+BIOMASS.""", + ), +# ----------------------------------- + RATE_OF_TRANSFORMATION_OF_POR_TO_PO4 = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = [0.03], + fr = """Taux de transformation du phosphore degradable non assimilable +par le phytoplancton (POR) en phosphore mineral dissous assimilable par +le phyto (PO4) par le biais de la mineralisation bacterienne +en j$^{-1}$. +Variables $k_1$ pour BIOMAS et $k_{320}$ pour EUTRO (a 20$^{\circ}$C) +dans la documentation. Pour EUTRO+BIOMASS.""", + ang = """Rate of transformation of degradable and non assimilable +phosphorus (POR) to mineral dissolved assimilable phosphorus (PO4) +by means of bacteria mineralization in d$^{-1}$. +Variables $k_1$ for BIOMAS and $k_{320}$ for EUTRO (at 20$^{\circ}$C) +in the documentation. For EUTRO+BIOMASS.""", + ), +# ----------------------------------- + RATE_OF_TRANSFORMATION_OF_NOR_TO_NO3 = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = [0.], + fr = """Taux de transformation de l azote degradable +non assimilable par le phytoplancton (NOR) en azote mineral dissous +assimilable par le phytoplancton NO3 par le biais de la +mineralisation bacterienne en j$^{-1}$. +Variables $k_2$ pour BIOMAS et $k_{620}$ pour EUTRO (a 20$^{\circ}$C) +dans la documentation. Pour EUTRO+BIOMASS.""", + ang = """Rate of transformation of degradable and non assimilable +nitrogen (NOR) to mineral dissolved assimilable nitrogen (NO3) +by bacteria mineralization in d$^{-1}$. +Variables $k_2$ for BIOMAS and $k_{620}$ for EUTRO (at 20$^{\circ}$C) +in the documentation. For EUTRO+BIOMASS.""", + ), +# ----------------------------------- + PROPORTION_OF_NITROGEN_WITHIN_PHYTO_CELLS = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = [0.0035], + fr = """En mgN/$\mu$gChlA. Variable $fn$ dans la documentation. +Pour EUTRO+BIOMASS.""", + ang = """In mgN/$\mu$gChlA. Variable $fn$ in the documentation. +For EUTRO+BIOMASS.""", + ), +# ----------------------------------- + PERCENTAGE_OF_NITROGEN_ASSIMILABLE_IN_DEAD_PHYTO = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = [0.5], + fr = """En $\%$. Variable $dtn$ dans la documentation. +Pour EUTRO+BIOMASS.""", + ang = """In $\%$. Variable $dtn$ in the documentation. +For EUTRO+BIOMASS.""", + ), +# ----------------------------------- + SEDIMENTATION_VELOCITY_OF_ORGANIC_PHOSPHORUS = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = [0.], + fr = """Vitesse de sedimentation du phosphore organique non algal +en m/s. Pour EUTRO+BIOMASS.""", + ang = """Sedimentation velocity of non algal organic phosphorus +in m/s. For EUTRO+BIOMASS.""", + ), +# ----------------------------------- + SEDIMENTATION_VELOCITY_OF_NON_ALGAL_NITROGEN = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = [0.], + fr = """Vitesse de sedimentation de l azote organique non algal +en m/s. Pour EUTRO+BIOMASS.""", + ang = """Sedimentation velocity of non algal organic nitrogen +in m/s. For EUTRO+BIOMASS.""", + ), ), # ----------------------------------- - VEGERAL_RESPIRATION_R = SIMP(statut ='f', + EUTRO = FACT(statut='o', # ----------------------------------- - typ = 'R', - defaut = [0.06], - fr = """en mgO2/J/l""", - ang = """in mgO2/J/l""", +# ----------------------------------- + CONSUMED_OXYGEN_BY_NITRIFICATION = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = [5.2], + fr = """En mgO$_2$/mgNH$_4$. Variable $n$ in the documentation. +Pour EUTRO seulement.""", + ang = """In mgO$_2$/mgNH$_4$. Variable $n$ in the documentation. +For EUTRO only.""", + ), +# ----------------------------------- + CONSTANT_FOR_THE_NITRIFICATION_KINETIC_K520 = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = [0.35], + fr = """Constante de la cinetique de nitrification a 20$^{\circ}$C. +En j$^{-1}$. Pour EUTRO seulement.""", + ang = """Constant for the nitrification kinetic at 20$^{\circ}$C. +In d$^{-1}$. For EUTRO only.""", + ), +# ----------------------------------- + CONSTANT_OF_DEGRADATION_OF_ORGANIC_LOAD_K120 = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = [0.35], + fr = """Constante de cinetique de degradation de la charge organique +a 20$^{\circ}$C. En j$^{-1}$. Pour EUTRO seulement.""", + ang = """Constant of degradation kinetic of organic load +at 20$^{\circ}$C. In d$^{-1}$. For EUTRO only.""", + ), +# ----------------------------------- + SEDIMENTATION_VELOCITY_OF_ORGANIC_LOAD = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = [0.], + fr = """En m/s. Pour EUTRO seulement.""", + ang = """In m/s. For EUTRO only.""", + ), +# ----------------------------------- + OXYGEN_PRODUCED_BY_PHOTOSYNTHESIS = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = [0.15], + fr = """En mgO$_2$/$\mu$gChlA. Variable $f$ dans la documentation. +Pour EUTRO seulement.""", + ang = """In mgO$_2$/$\mu$gChlA. Variable $f$ in the documentation. +For EUTRO only.""", + ), ), # ----------------------------------- - WATER_TEMPERATURE = SIMP(statut ='f', + SOURCES = FACT(statut='o', # ----------------------------------- - typ = 'R', - defaut = [7.], - fr = """en $^{circ}$C, TEMPERATURE MOYENNE DE L EAU - NECESSAIRE POUR CALCULER LES VALEURS DE CS""", - ang = """in $^{circ}$C, MEAN TEMPERATURE NECESARY FOR - COMPUTING DIFFERENT VALUES OF CS""", +# ----------------------------------- + FORMULA_FOR_COMPUTING_RS = SIMP(statut ='f', +# ----------------------------------- + typ = 'I', + defaut = [0], + fr = """Donne le choix de calcul de la formule de RS de la +reaeration naturelle au niveau des seuils, +les options sont les suivantes : +\begin{itemize} +\item 0 : RS constant, valeur de RS = 1.0 ; +\item 1 : formule de Gameson 1 ; +\item 2 : formule de Gameson 2 ; +\item 3 : formule de WRL1 ; +\item 4 : formule de WRL2. +\end{itemize} +Lu mais pas utilise pour le moment.""", + ang = """Gives how to cumpute the weir reaeration coefficient RS +options are: +\begin{itemize} +\item 0: RS constant, in this case RS = 1.0, +\item 1: formula of Gameson 1, +\item 2: formula of Gameson 2, +\item 3: formula of WRL1, +\item 4: formula of WRL2. +\end{itemize} +Read but not used at the moment.""", + ), +# ----------------------------------- + WEIR_REAERATION_COEFFICIENT_RS = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', + defaut = [1.0], + fr = """En j$^{-1}$. Lu mais pas utilise pour le moment.""", + ang = """In d$^{-1}$. Read but not used at the moment.""", + ), +# ----------------------------------- + COEFFICIENTS_A_AND_B_FOR_RS_FORMULA = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', min= 2, max= 2, + defaut = [1.2,0.7], + fr = """Coefficients intervenant dans le calcul de RS : +$a$ est entre 0.65 (eau tres polluee) et 1.8 (eau tres claire) +et $b$ varie beaucoup (voir tableau dans la documentation). +Lu mais pas utilise pour le moment.""", + ang = """Coefficients needed for the calculation of RS: +$a$ is between 0.65 (very polluted water and 1.8 (very clear water) +and $b$ varies a lot (see array in the documentation). +Read but not used at the moment.""", + ), ), + ), +# ----------------------------------- + MICROPOL = FACT(statut='o', +# ----------------------------------- # ----------------------------------- - EROSION_RATE = SIMP(statut ='f', + SEDIMENTATION_CRITICAL_STRESS = SIMP(statut ='f', # ----------------------------------- typ = 'R', - defaut = [0.], - fr = """""", - ang = """""", + defaut = [5.], + fr = """Tension de cisaillement critique de sedimentation +en Pa. Pour MICROPOL seulement.""", + ang = """Sedimentation critical shear stress +in Pa. For MICROPOL only.""", ), # ----------------------------------- - SEDIMENTATION_CRITICAL_STRESS = SIMP(statut ='f', + SEDIMENT_SETTLING_VELOCITY = SIMP(statut ='f', # ----------------------------------- typ = 'R', - defaut = [5.], - fr = """en PA""", - ang = """in PA""", + defaut = [6.E-6], + fr = """Vitesse de sedimentation en m/s. Variable $w$ dans la +documentation. Pour MICROPOL seulement.""", + ang = """Sediment velocity in m/s. Variable $w$ in the documentation. +For MICROPOL only.""", ), # ----------------------------------- CRITICAL_STRESS_OF_RESUSPENSION = SIMP(statut ='f', # ----------------------------------- typ = 'R', defaut = [1000.], - fr = """en PA""", - ang = """in PA""", + fr = """Tension de cisaillement critique de remise en +suspension en Pa. Variable $\tau_r$ dans la documentation. +Pour MICROPOL seulement.""", + ang = """Sedimentation critical shear stress +in Pa. Variable $\tau_r$ in the documentation. For MICROPOL only.""", ), # ----------------------------------- - SEDIMENT_SETTLING_VELOCITY = SIMP(statut ='f', + EROSION_RATE = SIMP(statut ='f', # ----------------------------------- typ = 'R', - defaut = [6.E-6], - fr = """en M/S""", - ang = """in M/S""", + defaut = [0.], + fr = """Taux d erosion caracteristique des MES deposees +ou encore appele constante de Partheniades. +Variable $e$ dans la documentation. +Pour MICROPOL seulement.""", + ang = """ Characteristic erosion rate of deposited SPM +or also called Partheniades s constant. +Variable $e$ in the documentation. +For MICROPOL only.""", ), # ----------------------------------- - EXPONENETIAL_DESINTEGRATION_CONSTANT = SIMP(statut ='f', + CONSTANT_OF_DESORPTION_KINETIC = SIMP(statut ='f', # ----------------------------------- typ = 'R', - defaut = [1.13E-7], - fr = """en S-1, loi de decroissance exponentielle comme celle de la - radioactivite""", - ang = """in S-1, exponential decrease law like the one of radioactivity""", + defaut = [2.5E-7], + fr = """En s$^{-1}$. Variable $k_{-1}$ dans la documentation. +Pour MICROPOL seulement.""", + ang = """In s$^{-1}$. Variable $k_{-1}$ in the documentation. +For MICROPOL only.""", ), # ----------------------------------- COEFFICIENT_OF_DISTRIBUTION = SIMP(statut ='f', # ----------------------------------- typ = 'R', defaut = [1775.], - fr = """en M3/KG ou l/g""", - ang = """in M3/KG or l/g""", + fr = """En m$^3$/kg ou l/g. Variable $K_d$ dans la documentation. +Pour MICROPOL seulement.""", + ang = """In m$^3$/kg or l/g. Variable $K_d$ in the documentation. +For MICROPOL only.""", ), # ----------------------------------- - CONSTANT_OF_DESORPTION_KINETIC = SIMP(statut ='f', + EXPONENTIAL_DESINTEGRATION_CONSTANT = SIMP(statut ='f', # ----------------------------------- typ = 'R', - defaut = [2.5E-7], - fr = """en S-1""", - ang = """in S-1""", + defaut = [1.13E-7], + fr = """En s$^{-1}$, loi de decroissance exponentielle comme celle de +la radioactivite. Variable $L$ dans la documentation. +Pour MICROPOL seulement.""", + ang = """In s$^{-1}$, exponential decrease law like the one of +radioactivity. Variable $L$ in the documentation. For MICROPOL only.""", ), + ), +# ----------------------------------- + THERMIC = FACT(statut='o', +# ----------------------------------- # ----------------------------------- WATER_SPECIFIC_HEAT = SIMP(statut ='f', # ----------------------------------- typ = 'R', defaut = [4180.], - fr = """en J/KG$^{circ}$C""", - ang = """in J/KG$^{circ}$C""", + fr = """En J/kg/$^{\circ}$C. Pour THERMIC seulement.""", + ang = """In J/kg/$^{\circ}$C. For THERMIC only.""", ), # ----------------------------------- - AIR_SPECIFIC_HEAT = SIMP(statut ='f', + COEFFICIENTS_FOR_CALIBRATING_ATMOSPHERIC_RADIATION = SIMP(statut ='f', # ----------------------------------- typ = 'R', - defaut = [1005.], - fr = """en J/KG$^{circ}$C""", - ang = """in J/KG$^{circ}$C""", - ), -# ----------------------------------- - COEFFICIENTS_OF_AERATION_FORMULA = SIMP(statut ='f', -# ----------------------------------- - typ = 'R', min= 2, max= 2, - defaut = [0.002,0.0012], - fr = """""", - ang = """""", + defaut = 0.97, + fr = """Variable $e_{\rm{air}}$ dans la documentation. +Pour THERMIC seulement.""", + ang = """Variable $e_{\rm{air}}$ in the documentation. +For THERMIC only.""", ), # ----------------------------------- COEFFICIENT_OF_CLOUDING_RATE = SIMP(statut ='f', # ----------------------------------- typ = 'R', - defaut = 0.2, - fr = """""", - ang = """""", - ), -# ----------------------------------- - COEFFICIENTS_FOR_CALIBRATING_ATMOSPHERIC_RADIATION = SIMP(statut ='f', -# ----------------------------------- - typ = 'R', - defaut = 0.97, - fr = """""", - ang = """""", + defaut = 0.17, + fr = """Coefficient qui depend du type de nuages : +\begin{itemize} +\item Cirrus = 0.04 ; +\item Cirro stratus = 0.08 ; +\item Alto cumulus = 0.17 ; +\item Alto stratus = 0.2 ; +\item Stratus = 0.24 +\end{itemize} +Alto Cumulus (valeur moyenne) est utilise habituellement +(T.V.A. 1972), valeur par defaut en 3D. +En 3D, uniquement utilise avec la formule de Swinbank (1963) +pour le calcul du rayonnement atmospherique. +Variable $k$ dans la documentation. Pour THERMIC seulement. +Ancienne valeur par defaut = 0.2 jusqu a la version V8P1.""", + ang = """Coefficient depending on the type of clouds: +\begin{itemize} +\item Cirrus = 0.04, +\item Cirro stratus = 0.08, +\item Alto cumulus = 0.17, +\item Alto stratus = 0.2, +\item Stratus = 0.24. +\end{itemize} +Alto Cumulus (mean value) is usually used (T.V.A. 1972), +default value in 3D. +In 3D, only used with Swinbank formula (1963) +for the computation of the atmospheric radiation. +Variable $k$ in the documentation. +For THERMIC only. +Old default value = 0.2 until release V8P1.""", ), # ----------------------------------- COEFFICIENTS_FOR_CALIBRATING_SURFACE_WATER_RADIATION = SIMP(statut ='f', # ----------------------------------- typ = 'R', defaut = 0.97, - fr = """""", - ang = """""", + fr = """Il depend du site et des obstacles entourant le plan d eau. +Pour une riviere etroite bordee d arbres, ca serait voisin de 0.97 +et pour un terrain largement decouvert, ca serait voisin de 0.92. +Variable $e_{\rm{eau}}$ dans la documentation. +Pour THERMIC seulement.""", + ang = """It depends on the location and the obstacles around the +water. For a narrow river bordered with trees, it would be around +0.97 and for a widely oopen field, it would be around 0.92. +Variable $e_{\rm{eau}}$ in the documentation. +For THERMIC only.""", ), - ), -# ----------------------------------- - BIOMASS = FACT(statut='f', -# ----------------------------------- # ----------------------------------- - RATE_OF_TRANSFORMATION_OF_NOR_TO_NO3 = SIMP(statut ='f', + AIR_SPECIFIC_HEAT = SIMP(statut ='f', # ----------------------------------- typ = 'R', - defaut = [0.], - fr = """TAUX DE TRANSFORMATION DU NOR EN NO3 PAR LE BIAIS DE LA - MINERALISATION BACTERIENNE EN J-1""", - ang = """RATE OF TRANSFOMATION OF NOR TO NO3 BY BACTERIA MINERALIZATION - IN J-1""", + defaut = [1005.], + fr = """En J/kg/$^{\circ}$C. Pour THERMIC seulement.""", + ang = """In J/kg/$^{\circ}$C. For THERMIC only.""", ), # ----------------------------------- - SUNSHINE_FLUX_DENSITY_ON_WATER_SURFACE = SIMP(statut ='f', + COEFFICIENTS_OF_AERATION_FORMULA = SIMP(statut ='f', # ----------------------------------- - typ = 'R', - defaut = 0., - fr = """DENSITE DE FLUX DU RAYONNEMENT SOLAIRE A LA SURFACE DE L EAU - EN W/m2""", - ang = """DENSITY OF SUNSHINE FLUX ON THE WATER SURFACE - IN W/m2""", + typ = 'R', min= 2, max= 2, + defaut = [0.002,0.0012], + fr = """Couple de coefficients de calage pour la fonction de vent +dans les modeles d echanges eau-atmosphere. +Leurs valeurs tres proches valent environ 0.0025.""", + ang = """Couple of calibration coefficients for the wind function +of the atmosphere-water exchange models. +Their close values are around 0.0025.""", ), - ), -# ----------------------------------- - SOURCES = FACT(statut='f', -# ----------------------------------- # ----------------------------------- - WEIR_REAERATION_COEFFICIENT_RS = SIMP(statut ='f', + ATMOSPHERE_WATER_EXCHANGE_MODEL = SIMP(statut ='f', +# ----------------------------------- + typ = 'TXM', + into = ["NO MODEL","LINEARISED FORMULA AT THE FREE SURFACE","MODEL WITH COMPLETE BALANCE"], + defaut = ["NO MODEL"], + fr = """Choix du modele d echanges entre l eau et l atmosphere. +\begin{itemize} +\item 0 : pas de mode d echanges eau-atmosphere (defaut) ; +\item formule linearisee a la surface (3D seulement) ; +\item modele a bilan complet. +\end{itemize} +En 2D, si autre processus que THERMIC, laisser obligatoirement +a 0.""", + ang = """Choice of the atmosphere-water exchange model. +\begin{itemize} +\item 0: no model (default), +\item 1: linearised formula at the free surface, +\item 2: model with complete balance. +\end{itemize} +In 2D, if another processus than THERMIC, mandatory to let to 0.""", + ), +# ----------------------------------- + COEFFICIENT_TO_CALIBRATE_THE_ATMOSPHERE_WATER_EXCHANGE_MODEL = SIMP(statut ='f', # ----------------------------------- typ = 'R', - defaut = [1.0], - fr = """EN J-1""", - ang = """IN J-1""", + defaut = [0.0025], + fr = """Valeur du coefficient de calage pour la fonction de vent +dans les modeles d echanges eau-atmosphere +(formule linearisee a la surface ou bilan complet). +Une valeur comprise entre 0.0017 et 0.0035 est conseillee. +Seulement pour le THERMIC 3D.""", + ang = """Value of the calibration coefficient for the wind function +of the atmosphere-water exchange models +(linearised formula at the free surface or complete balance). +A value between 0.0017 and 0.0035 is advised. +Only for THERMIC 3D.""", ), # ----------------------------------- - FORMULA_FOR_COMPUTING_RS = SIMP(statut ='f', -# ----------------------------------- - typ = 'I', - defaut = [0], - fr = """DONNE LE CHOIX DE CALCUL DE LA FORMULE DE RS DE LA -REAERATION NATURELLE AU NIVEAU DES SEUILS, -LES OPTIONS SONT LES SUIVANTS: - 0- RS CONSTANT, VALEUR DE RS=1.0 - 1- FORMULE DE GAMESON 1 - 2- FORMULE DE GAMESON 2 - 3- FORMULE DE WRL1 - 4- FORMULE DE WRL2""", - ang = """GIVES HOW TO CUMPUTE THE WEIR REAERATION COEFFICIENT RS -OPTIONS ARE: - 0- RS CONSTANT, IN THIS CASE RS=1.0 - 1- FORMULA OF GAMESON 1 - 2- FORMULA OF GAMESON 2 - 3- FORMULA OF WRL 1 - 4- FORMULA OF WRL2""", - ), + FORMULA_OF_ATMOSPHERIC_RADIATION = SIMP(statut ='f', # ----------------------------------- - COEFFICIENTS_A_AND_B_FOR_RS_FORMULA = SIMP(statut ='f', + typ = 'TXM', + into = ["IDSO AND JACKSON (1969)","SWINBANK (1963)","BRUTSAERT (1975)","YAJIMA TONO DAM (2014)"], + defaut = "SWINBANK (1963)", + fr = """Formule au choix pour le calcul du rayonnement atmospherique. +Voir GLM. +\begin{itemize} +\item 1 : Idso et Jackson (1969) ; +\item 2 : Swibank (1963), defaut ; +\item 3 : Brutsaert (1975) ; +\item 4 : Yajima Tono Dam (2014). +\end{itemize} +Seulement pour le THERMIC 3D.""", + ang = """Formula to be chosen to compute the atmospheric radiation. +See GLM. +\begin{itemize} +\item 1: Idso and Jackson (1969), +\item 2: Swibank (1963), default, +\item 3: Brutsaert (1975), +\item 4: Yajima Tono Dam (2014). +\end{itemize} +Only for THERMIC 3D.""", + ), +# ----------------------------------- + LIGHTNESS_OF_THE_SKY = SIMP(statut ='f', # ----------------------------------- - typ = 'R', min= 2, max= 2, - defaut = [1.2,0.7], - fr = """COEFFICIIENTS INTERVENANT DANS LE CALCUL DE RS -A EST ENTRE 0.65 (EAU TR�S POLLUEE) ET 1.8 (EAU TR�S CLAIRE) -B VARIE BEAUCOUP (VOIR TABLEAU DANS LA DOC)""", - ang = """COEFFICIENTS NEEDED FOR THE CALUCLATION OF RS -A IS BETWEEN 0.65(VERY POLLUTED WATER AND 1.8 (VERY CLEAR WATER))""", + typ = 'TXM', + into = ["VERY BRIGHT, PURE SKY","MODERATELY BRIGHT SKY","FOGGY LIKE THE SKY OF INDUSTRIAL AREA "], + defaut = "MODERATELY BRIGHT SKY", + fr = """Degre de clarte (purete) du ciel. +Les choix possibles sont : +\begin{itemize} +\item ciel tres clair, tres pur ; +\item ciel moyennement clair ; +\item ciel d une zone industrielle, opaque. +\end{itemize} +Pour THERMIC en 3D seulement.""", + ang = """How the sky is bright (pure). +Possible choices are: +\begin{itemize} +\item very bright, pure sky, +\item moderately bright sky, +\item foggy like the sky of industrial area. +\end{itemize} +For THERMIC in 3D only.""", + ), +# ----------------------------------- + SOLAR_RADIATION_READ_IN_METEO_FILE = SIMP(statut ='f', +# ----------------------------------- + typ = bool, + defaut = False, + fr = """Si la donnee meteo de rayonnement solaire est disponible, +elle peut etre lue dans le +\telkey{FICHIER ASCII DE DONNEES ATMOSPHERIQUES} de \telemac{2d} ou +\telemac{3d} au lieu d etre calculee par le module d echanges +eau-atmosphere en activant ce mot cle a OUI. +Pour THERMIC en 3D seulement. This is mandatory in 2D.""", + ang = """If solar radiation data is available, it can be read in the +\telkey{ASCII ATMOSPHERIC DATA FILE} of \telemac{2d} or \telemac{3d} +instead of been computed by the heat exchange with atmosphere module +by activating this keyword to YES. +For THERMIC in 3D only. This is mandatory in 2D.""", ), ), -) -# ----------------------------------------------------------------------- -PHYSICAL_PARAMETERS = PROC(nom= "PHYSICAL_PARAMETERS",op = None, -# ----------------------------------------------------------------------- -# ----------------------------------- - ATMOSPHERE_WATER_EXCHANGE_MODEL = SIMP(statut ='f', -# ----------------------------------- - typ = 'TXM', - into = ["NO MODEL","LINEARISED FORMULA AT THE FREE SURFACE","MODEL WITH COMPLETE BALANCE","LINEARISED FORMULA WITHOUT ICE","LINEARISED FORMULA WITH ICE","MODEL WITH COMPLETE BALANCE WITH ICE"], - defaut = ["NO MODEL"], - fr = """Choix du modele d echanges entre l eau et l atmosphere""", - ang = """Choice of the atmosphere-water exchange model.""", - ), -# ----------------------------------- - LIGHTNESS_OF_THE_SKY = SIMP(statut ='f', -# ----------------------------------- - typ = 'TXM', - into = ["VERY BRIGHT, PURE SKY","MODERATELY BRIGHT SKY","FOGGY LIKE THE SKY OF INDUSTRIAL AREA "], - defaut = "MODERATELY BRIGHT SKY", - fr = """degre de clarte (purete) du ciel""", - ang = """how the sky is bright (pure).""", - ), -# ----------------------------------- - COEFFICIENT_TO_CALIBRATE_THE_ATMOSPHERE_WATER_EXCHANGE_MODEL = SIMP(statut ='f', -# ----------------------------------- - typ = 'R', - defaut = [0.0025], - fr = """Valeur du coefficient de calage pour la fonction de vent -dans les modeles d echanges eau-atmosphere -(formule linearisee a la surface ou bilan complet). -Une valeur comprise entre 0.0017 et 0.0035 est conseillee""", - ang = """Value of the calibration coefficient for the wind function -of the atmosphere-water exchange models -(linearised formula at the free surface or complete balance). -A value between 0.0017 and 0.0035 is advised""", - ), -# ----------------------------------- - EVAPORATION_RATE = SIMP(statut ='f', -# ----------------------------------- - typ = 'R', - defaut = [0.], - fr = """taux d evaporation- meme unite que la pluie en m3/s/m2""", - ang = """rate of evaporation - same unit as rainfall in m3/s/m2""", - ), -# ----------------------------------- - FORMULA_OF_ATMOSPHERIC_RADIATION = SIMP(statut ='f', -# ----------------------------------- - typ = 'TXM', - into = ["IDSO AND JACKSON (1969)","SWINBANK (1963)","BRUTSAERT (1975)","YAJIMA TONO DAM (2014)"], - defaut = "SWINBANK (1963)", - fr = """Formule au choix pour le calcul du rayonnement atmospherique. -Voir GLM.""", - ang = """Formula to be chosen to compute the atmospheric radiation. -See GLM.""", - ), -) -# ----------------------------------------------------------------------- -BIOMASS_WQ = PROC(nom= "BIOMASS_WQ",op = None, -# ----------------------------------------------------------------------- -# ----------------------------------- - METHOD_OF_COMPUTATION_OF_RAY_EXCTINCTION_COEFFICIENT = SIMP(statut ='o', -# ----------------------------------- - typ = 'I', - defaut = 1, - fr = """Choix de la methode de calcul du coefficient d extinction - du rayonnement solaire- les choix sont: - 1 - formule d Atkins (1.7/secchi) - 2 - formule de Moss""", - ang = """choice of the method of calculation of the extinction of - sun ray - the choices are : - 1- Atkins formula - 2- Moss formula""", - ), -) -# ----------------------------------------------------------------------- -COUPLING = PROC(nom= "COUPLING",op = None, -# ----------------------------------------------------------------------- # ----------------------------------- - WAQTEL = FACT(statut='f', + DEGRADATION = FACT(statut='o', # ----------------------------------- # ----------------------------------- - DEGRADATION = FACT(statut='f', + LAW_OF_TRACERS_DEGRADATION = SIMP(statut ='o', # ----------------------------------- -# ----------------------------------- - LAW_OF_TRACERS_DEGRADATION = SIMP(statut ='o', -# ----------------------------------- - typ = 'TXM', min=0, max='**', - into = ["NO DEGRADATION","F(T90) LAW"], - defaut = ["NO DEGRADATION","NO DEGRADATION"], - fr = """Prise en compte d''une loi de decroissance des traceurs. Valeur 0 si -pas de prise en compte, 1 si loi 1, ... Pour chaque valeur entree, un + typ = 'TXM', min=0, max='**', + into = ["NO DEGRADATION","F(T90) LAW","FIRST ORDER KINETIC LAW, CONSTANT OF DEGRADATION IN HOURS","FIRST ORDER KINETIC LAW, CONSTANT OF DEGRADATION IN DAYS","LAW IMPLEMENTED BY USER"], + defaut = ["NO DEGRADATION","NO DEGRADATION"], + fr = """Prise en compte d''une loi de decroissance des traceurs. Valeur 0 si +pas de prise en compte, 1 si loi 1... Pour chaque valeur entree, un nom de traceur correspondant doit etre present dans -\telkey{NOMS DES TRACEURS}, auquel sera appliquee la loi.""", - ang = """Take in account a law for tracers decrease. Value 0 if not taken into -account, 1 if law 1, ... For each value entered, a corresponding name +\telkey{NOMS DES TRACEURS}, auquel sera appliquee la loi. +Les choix possibles sont : +\begin{itemize} +\item 0 : pas de degradation ; +\item 1 : loi de degradation bacteriologique avec coefficient $T_{90}$ ; +\item 2 : loi de degradation d ordre 1, constante de degradation +en h$^{-1}$ ; +\item 3 : loi de degradation d ordre 1, constante de degradation +en jours$^{-1}$ ; +\item 4 : loi programmee par l utilisateur. +\end{itemize}""", + ang = """Take in account a law for tracers decrease. Value 0 if not taken into +account, 1 if law 1... For each value entered, a corresponding name should be present in the keyword \telkey{NAMES OF TRACERS}, so that the -decrease law is applied to the correct tracer(s).""", - ), -# ----------------------------------- - COEFFICIENT_1_FOR_LAW_OF_TRACERS_DEGRADATION = SIMP(statut ='o', -# ----------------------------------- - typ = 'R', min=0, max='**', - fr = """Coefficient 1 de la loi de decroissance des traceurs. Voir aussi la -correspondance avec \telkey{NOMS DES TRACEURS} and l''aide du mot cle +decrease law is applied to the correct tracer(s). +Possible choices are: +\begin{itemize} +\item 0: no degradation, +\item 1: law for bacterial degradation with $T_{90}$ coefficient, +\item 2: degradation law of first order, constant of tracer kinetic +degradation in h$^{-1}$, +\item 3: degradation law of first order, constant of tracer kinetic +degradation in d$^{-1}$, +\item 4: law implemented by user. +\end{itemize}""", + ), +# ----------------------------------- + COEFFICIENT_1_FOR_LAW_OF_TRACERS_DEGRADATION = SIMP(statut ='f', +# ----------------------------------- + typ = 'R', min=0, max='**', + fr = """Coefficient 1 de la loi de decroissance des traceurs. Voir aussi la +correspondance avec \telkey{NOMS DES TRACEURS} et l''aide du mot cle \telkey{LOI DE DEGRADATION DES TRACEURS}.""", - ang = """Coefficient 1 of law for tracers decrease. Check also the relation + ang = """Coefficient 1 of law for tracers decrease. Check also the relation between the keywords \telkey{NAMES OF TRACERS} and \telkey{LAW OF TRACERS DEGRADATION}.""", - ), ), ), ) # ----------------------------------------------------------------------- -FILES = PROC(nom= "FILES",op = None, +INTERNAL = PROC(nom= "INTERNAL",op = None, # ----------------------------------------------------------------------- + UIinfo = {"groupes": ("CACHE")}, # ----------------------------------- - LIST_OF_FILES = SIMP(statut ='f', + STEERING_FILE = SIMP(statut ='f', # ----------------------------------- - typ = 'TXM', min=12, max=12, - defaut = 'STEERING FILE;RESULTS FILE;GEOMETRY FILE;BOUNDARY CONDITIONS FILE;FICHIER HYDRODYNAMIQUE;REFERENCE FILE;DICTIONARY;AED2 STEERING FILE;AED2 PHYTOPLANKTON STEERING FILE;AED2 ZOOPLANKTON STEERING FILE;AED2 PATHOGEN STEERING FILE;AED2 BIVALVE STEERING FILE', - fr = """Noms des fichiers exploites par le code""", - ang = """File names of the used files""", + typ = ('Fichier','All Files (*)'), + defaut = '', + fr = """Nom du fichier contenant les parametres du calcul +QE a realiser.""", + ang = """Name of the file containing parameters of the WAQ +computation Written by the user.""", + ), +# ----------------------------------- + DICTIONARY = SIMP(statut ='f', +# ----------------------------------- + typ = ('Fichier','All Files (*)'), + defaut = 'waqtel.dico', + fr = """Dictionnaire des mots cles.""", + ang = """Key word dictionary.""", ), ) TEXTE_NEW_JDC = "\ +COMPUTATION_ENVIRONMENT();\ +GENERAL_PARAMETERS();\ +HYDRODYNAMICS();\ +PHYSICAL_PARAMETERS();\ +WAQ_PARAMETERS();\ " Ordre_Des_Commandes = ( -'INPUT_OUTPUT__FILES', -'INPUT_OUTPUT__INFORMATION', -'IN_OUT_WQ', -'INPUT_OUTPUT__GRAPHICS_AND_LISTING', -'RESULTS', -'DATA_FILES', -'MISCELLANEOUS', -'PHYSICS', -'SUSPENSION', -'WAQ_PARAMETERS', +'COMPUTATION_ENVIRONMENT', +'GENERAL_PARAMETERS', +'HYDRODYNAMICS', 'PHYSICAL_PARAMETERS', -'BIOMASS_WQ', -'COUPLING', -'FILES') +'WAQ_PARAMETERS', +'INTERNAL') try: import TelApy source = "eficas" diff --git a/Telemac/waqtel_dicoCasEnToCata.py b/Telemac/waqtel_dicoCasEnToCata.py index a98d632d..0fe6e1ea 100644 --- a/Telemac/waqtel_dicoCasEnToCata.py +++ b/Telemac/waqtel_dicoCasEnToCata.py @@ -1,184 +1,180 @@ dicoCataToEngTelemac = { - "STEERING_FILE" : "STEERING FILE", - "FORTRAN_FILE" : "FORTRAN FILE", "WAQ_CASE_TITLE" : "WAQ CASE TITLE", - "WATER_QUALITY_PRINTOUT_PERIOD" : "WATER QUALITY PRINTOUT PERIOD", - "VARIABLES_FOR_WAQ_PRINTOUTS" : "VARIABLES FOR WAQ PRINTOUTS", - "WAQ_VARIABLES_TO_BE_PRINTED" : "WAQ VARIABLES TO BE PRINTED", - "RESULTS_FILE" : "RESULTS FILE", - "RESULTS_FILE_FORMAT" : "RESULTS FILE FORMAT", - "RELEASE" : "RELEASE", + "PARALLEL_PROCESSORS" : "PARALLEL PROCESSORS", "GEOMETRY_FILE" : "GEOMETRY FILE", "GEOMETRY_FILE_FORMAT" : "GEOMETRY FILE FORMAT", "BOUNDARY_CONDITIONS_FILE" : "BOUNDARY CONDITIONS FILE", + "FORTRAN_FILE" : "FORTRAN FILE", "HYDRODYNAMIC_FILE" : "HYDRODYNAMIC FILE", "HYDRODYNAMIC_FILE_FORMAT" : "HYDRODYNAMIC FILE FORMAT", + "VALIDATION" : "VALIDATION", "REFERENCE_FILE" : "REFERENCE FILE", "REFERENCE_FILE_FORMAT" : "REFERENCE FILE FORMAT", + "AED2_STEERING_FILE" : "AED2 STEERING FILE", + "AED2_PHYTOPLANKTON_STEERING_FILE" : "AED2 PHYTOPLANKTON STEERING FILE", + "AED2_ZOOPLANKTON_STEERING_FILE" : "AED2 ZOOPLANKTON STEERING FILE", + "AED2_PATHOGEN_STEERING_FILE" : "AED2 PATHOGEN STEERING FILE", + "AED2_BIVALVE_STEERING_FILE" : "AED2 BIVALVE STEERING FILE", + "RESULTS_FILE" : "RESULTS FILE", + "RESULTS_FILE_FORMAT" : "RESULTS FILE FORMAT", + "WATER_QUALITY_PRINTOUT_PERIOD" : "WATER QUALITY PRINTOUT PERIOD", + "VARIABLES_FOR_WAQ_PRINTOUTS" : "VARIABLES FOR WAQ PRINTOUTS", "MASS_BALANCE" : "MASS-BALANCE", - "VALIDATION" : "VALIDATION", + "WAQ_VARIABLES_TO_BE_PRINTED" : "WAQ VARIABLES TO BE PRINTED", + "DEBUGGER" : "DEBUGGER", "WATER_DENSITY" : "WATER DENSITY", "KINEMATIC_WATER_VISCOSITY" : "KINEMATIC WATER VISCOSITY", "DISPERSION_ALONG_THE_FLOW" : "DISPERSION ALONG THE FLOW", "DISPERSION_ACROSS_THE_FLOW" : "DISPERSION ACROSS THE FLOW", - "DICTIONARY" : "DICTIONARY", - "DEBUGGER" : "DEBUGGER", - "CONSTANT_OF_DEGRADATION_OF_ORGANIC_LOAD_K120" : "CONSTANT OF DEGRADATION OF ORGANIC LOAD K120", - "CONSTANT_FOR_THE_NITRIFICATION_KINETIC_K520" : "CONSTANT FOR THE NITRIFICATION KINETIC K520", - "OXYGENE_PRODUCED_BY_PHOTOSYNTHESIS" : "OXYGENE PRODUCED BY PHOTOSYNTHESIS", - "CONSUMED_OXYGEN_BY_NITRIFICATION" : "CONSUMED OXYGEN BY NITRIFICATION", + "EVAPORATION_RATE" : "EVAPORATION RATE", + "METHOD_OF_COMPUTATION_OF_RAY_EXTINCTION_COEFFICIENT" : "METHOD OF COMPUTATION OF RAY EXTINCTION COEFFICIENT", + "SECCHI_DEPTH" : "SECCHI DEPTH", + "LIGHT_EXTINCTION_COEFFICIENT" : "LIGHT EXTINCTION COEFFICIENT", + "WATER_TEMPERATURE" : "WATER TEMPERATURE", + "VEGETAL_RESPIRATION_R" : "VEGETAL RESPIRATION R", + "CONSTANT_OF_DEGRADATION_OF_ORGANIC_LOAD_K1" : "CONSTANT OF DEGRADATION OF ORGANIC LOAD K1", + "CONSTANT_OF_NITRIFICATION_KINETIC_K4" : "CONSTANT OF NITRIFICATION KINETIC K4", "BENTHIC_DEMAND" : "BENTHIC DEMAND", - "K2_REAERATION_COEFFICIENT" : "K2 REAERATION COEFFICIENT", - "FORMULA_FOR_COMPUTING_K2" : "FORMULA FOR COMPUTING K2", + "PHOTOSYNTHESIS_P" : "PHOTOSYNTHESIS P", "O2_SATURATION_DENSITY_OF_WATER__CS_" : "O2 SATURATION DENSITY OF WATER (CS)", + "FORMULA_FOR_COMPUTING_K2" : "FORMULA FOR COMPUTING K2", + "K2_REAERATION_COEFFICIENT" : "K2 REAERATION COEFFICIENT", "FORMULA_FOR_COMPUTING_CS" : "FORMULA FOR COMPUTING CS", - "SEDIMENTATION_VELOCITY_OF_ORGANIC_PHOSPHORUS" : "SEDIMENTATION VELOCITY OF ORGANIC PHOSPHORUS", - "SEDIMENTATION_VELOCITY_OF_NON_ALGAL_NITROGEN" : "SEDIMENTATION VELOCITY OF NON ALGAL NITROGEN", "MAXIMUM_ALGAL_GROWTH_RATE_AT_20C" : "MAXIMUM ALGAL GROWTH RATE AT 20C", - "SECCHI_DEPTH" : "SECCHI DEPTH", + "ALGAL_TOXICITY_COEFFICIENTS" : "ALGAL TOXICITY COEFFICIENTS", "VEGETAL_TURBIDITY_COEFFICIENT_WITHOUT_PHYTO" : "VEGETAL TURBIDITY COEFFICIENT WITHOUT PHYTO", "PARAMETER_OF_CALIBRATION_OF_SMITH_FORMULA" : "PARAMETER OF CALIBRATION OF SMITH FORMULA", + "SUNSHINE_FLUX_DENSITY_ON_WATER_SURFACE" : "SUNSHINE FLUX DENSITY ON WATER SURFACE", "CONSTANT_OF_HALF_SATURATION_WITH_PHOSPHATE" : "CONSTANT OF HALF-SATURATION WITH PHOSPHATE", "CONSTANT_OF_HALF_SATURATION_WITH_NITROGEN" : "CONSTANT OF HALF-SATURATION WITH NITROGEN", - "ALGAL_TOXICITY_COEFFICIENTS" : "ALGAL TOXICITY COEFFICIENTS", "RESPIRATION_RATE_OF_ALGAL_BIOMASS" : "RESPIRATION RATE OF ALGAL BIOMASS", + "COEFFICIENTS_OF_ALGAL_MORTALITY_AT_20C" : "COEFFICIENTS OF ALGAL MORTALITY AT 20C", "PROPORTION_OF_PHOSPHORUS_WITHIN_PHYTO_CELLS" : "PROPORTION OF PHOSPHORUS WITHIN PHYTO CELLS", - "PERCENTAGE_OF_PHYSPHORUS_ASSIMILABLE_IN_DEAD_PHYTO" : "PERCENTAGE OF PHYSPHORUS ASSIMILABLE IN DEAD PHYTO", + "PERCENTAGE_OF_PHOSPHORUS_ASSIMILABLE_IN_DEAD_PHYTO" : "PERCENTAGE OF PHOSPHORUS ASSIMILABLE IN DEAD PHYTO", "RATE_OF_TRANSFORMATION_OF_POR_TO_PO4" : "RATE OF TRANSFORMATION OF POR TO PO4", + "RATE_OF_TRANSFORMATION_OF_NOR_TO_NO3" : "RATE OF TRANSFORMATION OF NOR TO NO3", "PROPORTION_OF_NITROGEN_WITHIN_PHYTO_CELLS" : "PROPORTION OF NITROGEN WITHIN PHYTO CELLS", "PERCENTAGE_OF_NITROGEN_ASSIMILABLE_IN_DEAD_PHYTO" : "PERCENTAGE OF NITROGEN ASSIMILABLE IN DEAD PHYTO", - "RATE_OF_TRANSFORMATION_OF_NOR_TO_NO3" : "RATE OF TRANSFORMATION OF NOR TO NO3", - "COEFFICIENTS_OF_ALGAL_MORTALITY_AT_20C" : "COEFFICIENTS OF ALGAL MORTALITY AT 20C", + "SEDIMENTATION_VELOCITY_OF_ORGANIC_PHOSPHORUS" : "SEDIMENTATION VELOCITY OF ORGANIC PHOSPHORUS", + "SEDIMENTATION_VELOCITY_OF_NON_ALGAL_NITROGEN" : "SEDIMENTATION VELOCITY OF NON ALGAL NITROGEN", + "CONSUMED_OXYGEN_BY_NITRIFICATION" : "CONSUMED OXYGEN BY NITRIFICATION", + "CONSTANT_FOR_THE_NITRIFICATION_KINETIC_K520" : "CONSTANT FOR THE NITRIFICATION KINETIC K520", + "CONSTANT_OF_DEGRADATION_OF_ORGANIC_LOAD_K120" : "CONSTANT OF DEGRADATION OF ORGANIC LOAD K120", "SEDIMENTATION_VELOCITY_OF_ORGANIC_LOAD" : "SEDIMENTATION VELOCITY OF ORGANIC LOAD", - "CONSTANT_OF_DEGRADATION_OF_ORGANIC_LOAD_K1" : "CONSTANT OF DEGRADATION OF ORGANIC LOAD K1", - "CONSTANT_OF_NITRIFICATION_KINETIC_K4" : "CONSTANT OF NITRIFICATION KINETIC K4", - "PHOTOSYNTHESIS_P" : "PHOTOSYNTHESIS P", - "VEGERAL_RESPIRATION_R" : "VEGERAL RESPIRATION R", - "WATER_TEMPERATURE" : "WATER TEMPERATURE", - "WEIR_REAERATION_COEFFICIENT_RS" : "WEIR REAERATION COEFFICIENT RS", + "OXYGEN_PRODUCED_BY_PHOTOSYNTHESIS" : "OXYGEN PRODUCED BY PHOTOSYNTHESIS", "FORMULA_FOR_COMPUTING_RS" : "FORMULA FOR COMPUTING RS", + "WEIR_REAERATION_COEFFICIENT_RS" : "WEIR REAERATION COEFFICIENT RS", "COEFFICIENTS_A_AND_B_FOR_RS_FORMULA" : "COEFFICIENTS A AND B FOR RS FORMULA", - "EROSION_RATE" : "EROSION RATE", "SEDIMENTATION_CRITICAL_STRESS" : "SEDIMENTATION CRITICAL STRESS", - "CRITICAL_STRESS_OF_RESUSPENSION" : "CRITICAL STRESS OF RESUSPENSION", "SEDIMENT_SETTLING_VELOCITY" : "SEDIMENT SETTLING VELOCITY", - "EXPONENETIAL_DESINTEGRATION_CONSTANT" : "EXPONENETIAL DESINTEGRATION CONSTANT", - "COEFFICIENT_OF_DISTRIBUTION" : "COEFFICIENT OF DISTRIBUTION", + "CRITICAL_STRESS_OF_RESUSPENSION" : "CRITICAL STRESS OF RESUSPENSION", + "EROSION_RATE" : "EROSION RATE", "CONSTANT_OF_DESORPTION_KINETIC" : "CONSTANT OF DESORPTION KINETIC", + "COEFFICIENT_OF_DISTRIBUTION" : "COEFFICIENT OF DISTRIBUTION", + "EXPONENTIAL_DESINTEGRATION_CONSTANT" : "EXPONENTIAL DESINTEGRATION CONSTANT", "WATER_SPECIFIC_HEAT" : "WATER SPECIFIC HEAT", - "AIR_SPECIFIC_HEAT" : "AIR SPECIFIC HEAT", - "COEFFICIENTS_OF_AERATION_FORMULA" : "COEFFICIENTS OF AERATION FORMULA", - "COEFFICIENT_OF_CLOUDING_RATE" : "COEFFICIENT OF CLOUDING RATE", "COEFFICIENTS_FOR_CALIBRATING_ATMOSPHERIC_RADIATION" : "COEFFICIENTS FOR CALIBRATING ATMOSPHERIC RADIATION", + "COEFFICIENT_OF_CLOUDING_RATE" : "COEFFICIENT OF CLOUDING RATE", "COEFFICIENTS_FOR_CALIBRATING_SURFACE_WATER_RADIATION" : "COEFFICIENTS FOR CALIBRATING SURFACE WATER RADIATION", - "SUNSHINE_FLUX_DENSITY_ON_WATER_SURFACE" : "SUNSHINE FLUX DENSITY ON WATER SURFACE", + "AIR_SPECIFIC_HEAT" : "AIR SPECIFIC HEAT", + "COEFFICIENTS_OF_AERATION_FORMULA" : "COEFFICIENTS OF AERATION FORMULA", "ATMOSPHERE_WATER_EXCHANGE_MODEL" : "ATMOSPHERE-WATER EXCHANGE MODEL", - "LIGHTNESS_OF_THE_SKY" : "LIGHTNESS OF THE SKY", "COEFFICIENT_TO_CALIBRATE_THE_ATMOSPHERE_WATER_EXCHANGE_MODEL" : "COEFFICIENT TO CALIBRATE THE ATMOSPHERE-WATER EXCHANGE MODEL", - "EVAPORATION_RATE" : "EVAPORATION RATE", - "METHOD_OF_COMPUTATION_OF_RAY_EXCTINCTION_COEFFICIENT" : "METHOD OF COMPUTATION OF RAY EXCTINCTION COEFFICIENT", "FORMULA_OF_ATMOSPHERIC_RADIATION" : "FORMULA OF ATMOSPHERIC RADIATION", + "LIGHTNESS_OF_THE_SKY" : "LIGHTNESS OF THE SKY", + "SOLAR_RADIATION_READ_IN_METEO_FILE" : "SOLAR RADIATION READ IN METEO FILE", "LAW_OF_TRACERS_DEGRADATION" : "LAW OF TRACERS DEGRADATION", "COEFFICIENT_1_FOR_LAW_OF_TRACERS_DEGRADATION" : "COEFFICIENT 1 FOR LAW OF TRACERS DEGRADATION", - "AED2_STEERING_FILE" : "AED2 STEERING FILE", - "AED2_PHYTOPLANKTON_STEERING_FILE" : "AED2 PHYTOPLANKTON STEERING FILE", - "AED2_ZOOPLANKTON_STEERING_FILE" : "AED2 ZOOPLANKTON STEERING FILE", - "AED2_PATHOGEN_STEERING_FILE" : "AED2 PATHOGEN STEERING FILE", - "AED2_BIVALVE_STEERING_FILE" : "AED2 BIVALVE STEERING FILE", - "LIST_OF_FILES" : "LIST OF FILES", - "DESCRIPTION_OF_LIBRARIES" : "DESCRIPTION OF LIBRARIES", - "DEFAULT_EXECUTABLE" : "DEFAULT EXECUTABLE", - "DEFAULT_PARALLEL_EXECUTABLE" : "DEFAULT PARALLEL EXECUTABLE", + "STEERING_FILE" : "STEERING FILE", + "DICTIONARY" : "DICTIONARY", } dicoCasEnToCata = { - "STEERING FILE" : "STEERING_FILE", - "FORTRAN FILE" : "FORTRAN_FILE", "WAQ CASE TITLE" : "WAQ_CASE_TITLE", - "WATER QUALITY PRINTOUT PERIOD" : "WATER_QUALITY_PRINTOUT_PERIOD", - "VARIABLES FOR WAQ PRINTOUTS" : "VARIABLES_FOR_WAQ_PRINTOUTS", - "WAQ VARIABLES TO BE PRINTED" : "WAQ_VARIABLES_TO_BE_PRINTED", - "RESULTS FILE" : "RESULTS_FILE", - "RESULTS FILE FORMAT" : "RESULTS_FILE_FORMAT", - "RELEASE" : "RELEASE", + "PARALLEL PROCESSORS" : "PARALLEL_PROCESSORS", "GEOMETRY FILE" : "GEOMETRY_FILE", "GEOMETRY FILE FORMAT" : "GEOMETRY_FILE_FORMAT", "BOUNDARY CONDITIONS FILE" : "BOUNDARY_CONDITIONS_FILE", + "FORTRAN FILE" : "FORTRAN_FILE", "HYDRODYNAMIC FILE" : "HYDRODYNAMIC_FILE", "HYDRODYNAMIC FILE FORMAT" : "HYDRODYNAMIC_FILE_FORMAT", + "VALIDATION" : "VALIDATION", "REFERENCE FILE" : "REFERENCE_FILE", "REFERENCE FILE FORMAT" : "REFERENCE_FILE_FORMAT", + "AED2 STEERING FILE" : "AED2_STEERING_FILE", + "AED2 PHYTOPLANKTON STEERING FILE" : "AED2_PHYTOPLANKTON_STEERING_FILE", + "AED2 ZOOPLANKTON STEERING FILE" : "AED2_ZOOPLANKTON_STEERING_FILE", + "AED2 PATHOGEN STEERING FILE" : "AED2_PATHOGEN_STEERING_FILE", + "AED2 BIVALVE STEERING FILE" : "AED2_BIVALVE_STEERING_FILE", + "RESULTS FILE" : "RESULTS_FILE", + "RESULTS FILE FORMAT" : "RESULTS_FILE_FORMAT", + "WATER QUALITY PRINTOUT PERIOD" : "WATER_QUALITY_PRINTOUT_PERIOD", + "VARIABLES FOR WAQ PRINTOUTS" : "VARIABLES_FOR_WAQ_PRINTOUTS", "MASS-BALANCE" : "MASS_BALANCE", - "VALIDATION" : "VALIDATION", + "WAQ VARIABLES TO BE PRINTED" : "WAQ_VARIABLES_TO_BE_PRINTED", + "DEBUGGER" : "DEBUGGER", "WATER DENSITY" : "WATER_DENSITY", "KINEMATIC WATER VISCOSITY" : "KINEMATIC_WATER_VISCOSITY", "DISPERSION ALONG THE FLOW" : "DISPERSION_ALONG_THE_FLOW", "DISPERSION ACROSS THE FLOW" : "DISPERSION_ACROSS_THE_FLOW", - "DICTIONARY" : "DICTIONARY", - "DEBUGGER" : "DEBUGGER", - "CONSTANT OF DEGRADATION OF ORGANIC LOAD K120" : "CONSTANT_OF_DEGRADATION_OF_ORGANIC_LOAD_K120", - "CONSTANT FOR THE NITRIFICATION KINETIC K520" : "CONSTANT_FOR_THE_NITRIFICATION_KINETIC_K520", - "OXYGENE PRODUCED BY PHOTOSYNTHESIS" : "OXYGENE_PRODUCED_BY_PHOTOSYNTHESIS", - "CONSUMED OXYGEN BY NITRIFICATION" : "CONSUMED_OXYGEN_BY_NITRIFICATION", + "EVAPORATION RATE" : "EVAPORATION_RATE", + "METHOD OF COMPUTATION OF RAY EXTINCTION COEFFICIENT" : "METHOD_OF_COMPUTATION_OF_RAY_EXTINCTION_COEFFICIENT", + "SECCHI DEPTH" : "SECCHI_DEPTH", + "LIGHT EXTINCTION COEFFICIENT" : "LIGHT_EXTINCTION_COEFFICIENT", + "WATER TEMPERATURE" : "WATER_TEMPERATURE", + "VEGETAL RESPIRATION R" : "VEGETAL_RESPIRATION_R", + "CONSTANT OF DEGRADATION OF ORGANIC LOAD K1" : "CONSTANT_OF_DEGRADATION_OF_ORGANIC_LOAD_K1", + "CONSTANT OF NITRIFICATION KINETIC K4" : "CONSTANT_OF_NITRIFICATION_KINETIC_K4", "BENTHIC DEMAND" : "BENTHIC_DEMAND", - "K2 REAERATION COEFFICIENT" : "K2_REAERATION_COEFFICIENT", - "FORMULA FOR COMPUTING K2" : "FORMULA_FOR_COMPUTING_K2", + "PHOTOSYNTHESIS P" : "PHOTOSYNTHESIS_P", "O2 SATURATION DENSITY OF WATER (CS)" : "O2_SATURATION_DENSITY_OF_WATER__CS_", + "FORMULA FOR COMPUTING K2" : "FORMULA_FOR_COMPUTING_K2", + "K2 REAERATION COEFFICIENT" : "K2_REAERATION_COEFFICIENT", "FORMULA FOR COMPUTING CS" : "FORMULA_FOR_COMPUTING_CS", - "SEDIMENTATION VELOCITY OF ORGANIC PHOSPHORUS" : "SEDIMENTATION_VELOCITY_OF_ORGANIC_PHOSPHORUS", - "SEDIMENTATION VELOCITY OF NON ALGAL NITROGEN" : "SEDIMENTATION_VELOCITY_OF_NON_ALGAL_NITROGEN", "MAXIMUM ALGAL GROWTH RATE AT 20C" : "MAXIMUM_ALGAL_GROWTH_RATE_AT_20C", - "SECCHI DEPTH" : "SECCHI_DEPTH", + "ALGAL TOXICITY COEFFICIENTS" : "ALGAL_TOXICITY_COEFFICIENTS", "VEGETAL TURBIDITY COEFFICIENT WITHOUT PHYTO" : "VEGETAL_TURBIDITY_COEFFICIENT_WITHOUT_PHYTO", "PARAMETER OF CALIBRATION OF SMITH FORMULA" : "PARAMETER_OF_CALIBRATION_OF_SMITH_FORMULA", + "SUNSHINE FLUX DENSITY ON WATER SURFACE" : "SUNSHINE_FLUX_DENSITY_ON_WATER_SURFACE", "CONSTANT OF HALF-SATURATION WITH PHOSPHATE" : "CONSTANT_OF_HALF_SATURATION_WITH_PHOSPHATE", "CONSTANT OF HALF-SATURATION WITH NITROGEN" : "CONSTANT_OF_HALF_SATURATION_WITH_NITROGEN", - "ALGAL TOXICITY COEFFICIENTS" : "ALGAL_TOXICITY_COEFFICIENTS", "RESPIRATION RATE OF ALGAL BIOMASS" : "RESPIRATION_RATE_OF_ALGAL_BIOMASS", + "COEFFICIENTS OF ALGAL MORTALITY AT 20C" : "COEFFICIENTS_OF_ALGAL_MORTALITY_AT_20C", "PROPORTION OF PHOSPHORUS WITHIN PHYTO CELLS" : "PROPORTION_OF_PHOSPHORUS_WITHIN_PHYTO_CELLS", - "PERCENTAGE OF PHYSPHORUS ASSIMILABLE IN DEAD PHYTO" : "PERCENTAGE_OF_PHYSPHORUS_ASSIMILABLE_IN_DEAD_PHYTO", + "PERCENTAGE OF PHOSPHORUS ASSIMILABLE IN DEAD PHYTO" : "PERCENTAGE_OF_PHOSPHORUS_ASSIMILABLE_IN_DEAD_PHYTO", "RATE OF TRANSFORMATION OF POR TO PO4" : "RATE_OF_TRANSFORMATION_OF_POR_TO_PO4", + "RATE OF TRANSFORMATION OF NOR TO NO3" : "RATE_OF_TRANSFORMATION_OF_NOR_TO_NO3", "PROPORTION OF NITROGEN WITHIN PHYTO CELLS" : "PROPORTION_OF_NITROGEN_WITHIN_PHYTO_CELLS", "PERCENTAGE OF NITROGEN ASSIMILABLE IN DEAD PHYTO" : "PERCENTAGE_OF_NITROGEN_ASSIMILABLE_IN_DEAD_PHYTO", - "RATE OF TRANSFORMATION OF NOR TO NO3" : "RATE_OF_TRANSFORMATION_OF_NOR_TO_NO3", - "COEFFICIENTS OF ALGAL MORTALITY AT 20C" : "COEFFICIENTS_OF_ALGAL_MORTALITY_AT_20C", + "SEDIMENTATION VELOCITY OF ORGANIC PHOSPHORUS" : "SEDIMENTATION_VELOCITY_OF_ORGANIC_PHOSPHORUS", + "SEDIMENTATION VELOCITY OF NON ALGAL NITROGEN" : "SEDIMENTATION_VELOCITY_OF_NON_ALGAL_NITROGEN", + "CONSUMED OXYGEN BY NITRIFICATION" : "CONSUMED_OXYGEN_BY_NITRIFICATION", + "CONSTANT FOR THE NITRIFICATION KINETIC K520" : "CONSTANT_FOR_THE_NITRIFICATION_KINETIC_K520", + "CONSTANT OF DEGRADATION OF ORGANIC LOAD K120" : "CONSTANT_OF_DEGRADATION_OF_ORGANIC_LOAD_K120", "SEDIMENTATION VELOCITY OF ORGANIC LOAD" : "SEDIMENTATION_VELOCITY_OF_ORGANIC_LOAD", - "CONSTANT OF DEGRADATION OF ORGANIC LOAD K1" : "CONSTANT_OF_DEGRADATION_OF_ORGANIC_LOAD_K1", - "CONSTANT OF NITRIFICATION KINETIC K4" : "CONSTANT_OF_NITRIFICATION_KINETIC_K4", - "PHOTOSYNTHESIS P" : "PHOTOSYNTHESIS_P", - "VEGERAL RESPIRATION R" : "VEGERAL_RESPIRATION_R", - "WATER TEMPERATURE" : "WATER_TEMPERATURE", - "WEIR REAERATION COEFFICIENT RS" : "WEIR_REAERATION_COEFFICIENT_RS", + "OXYGEN PRODUCED BY PHOTOSYNTHESIS" : "OXYGEN_PRODUCED_BY_PHOTOSYNTHESIS", "FORMULA FOR COMPUTING RS" : "FORMULA_FOR_COMPUTING_RS", + "WEIR REAERATION COEFFICIENT RS" : "WEIR_REAERATION_COEFFICIENT_RS", "COEFFICIENTS A AND B FOR RS FORMULA" : "COEFFICIENTS_A_AND_B_FOR_RS_FORMULA", - "EROSION RATE" : "EROSION_RATE", "SEDIMENTATION CRITICAL STRESS" : "SEDIMENTATION_CRITICAL_STRESS", - "CRITICAL STRESS OF RESUSPENSION" : "CRITICAL_STRESS_OF_RESUSPENSION", "SEDIMENT SETTLING VELOCITY" : "SEDIMENT_SETTLING_VELOCITY", - "EXPONENETIAL DESINTEGRATION CONSTANT" : "EXPONENETIAL_DESINTEGRATION_CONSTANT", - "COEFFICIENT OF DISTRIBUTION" : "COEFFICIENT_OF_DISTRIBUTION", + "CRITICAL STRESS OF RESUSPENSION" : "CRITICAL_STRESS_OF_RESUSPENSION", + "EROSION RATE" : "EROSION_RATE", "CONSTANT OF DESORPTION KINETIC" : "CONSTANT_OF_DESORPTION_KINETIC", + "COEFFICIENT OF DISTRIBUTION" : "COEFFICIENT_OF_DISTRIBUTION", + "EXPONENTIAL DESINTEGRATION CONSTANT" : "EXPONENTIAL_DESINTEGRATION_CONSTANT", "WATER SPECIFIC HEAT" : "WATER_SPECIFIC_HEAT", - "AIR SPECIFIC HEAT" : "AIR_SPECIFIC_HEAT", - "COEFFICIENTS OF AERATION FORMULA" : "COEFFICIENTS_OF_AERATION_FORMULA", - "COEFFICIENT OF CLOUDING RATE" : "COEFFICIENT_OF_CLOUDING_RATE", "COEFFICIENTS FOR CALIBRATING ATMOSPHERIC RADIATION" : "COEFFICIENTS_FOR_CALIBRATING_ATMOSPHERIC_RADIATION", + "COEFFICIENT OF CLOUDING RATE" : "COEFFICIENT_OF_CLOUDING_RATE", "COEFFICIENTS FOR CALIBRATING SURFACE WATER RADIATION" : "COEFFICIENTS_FOR_CALIBRATING_SURFACE_WATER_RADIATION", - "SUNSHINE FLUX DENSITY ON WATER SURFACE" : "SUNSHINE_FLUX_DENSITY_ON_WATER_SURFACE", + "AIR SPECIFIC HEAT" : "AIR_SPECIFIC_HEAT", + "COEFFICIENTS OF AERATION FORMULA" : "COEFFICIENTS_OF_AERATION_FORMULA", "ATMOSPHERE-WATER EXCHANGE MODEL" : "ATMOSPHERE_WATER_EXCHANGE_MODEL", - "LIGHTNESS OF THE SKY" : "LIGHTNESS_OF_THE_SKY", "COEFFICIENT TO CALIBRATE THE ATMOSPHERE-WATER EXCHANGE MODEL" : "COEFFICIENT_TO_CALIBRATE_THE_ATMOSPHERE_WATER_EXCHANGE_MODEL", - "EVAPORATION RATE" : "EVAPORATION_RATE", - "METHOD OF COMPUTATION OF RAY EXCTINCTION COEFFICIENT" : "METHOD_OF_COMPUTATION_OF_RAY_EXCTINCTION_COEFFICIENT", "FORMULA OF ATMOSPHERIC RADIATION" : "FORMULA_OF_ATMOSPHERIC_RADIATION", + "LIGHTNESS OF THE SKY" : "LIGHTNESS_OF_THE_SKY", + "SOLAR RADIATION READ IN METEO FILE" : "SOLAR_RADIATION_READ_IN_METEO_FILE", "LAW OF TRACERS DEGRADATION" : "LAW_OF_TRACERS_DEGRADATION", "COEFFICIENT 1 FOR LAW OF TRACERS DEGRADATION" : "COEFFICIENT_1_FOR_LAW_OF_TRACERS_DEGRADATION", - "AED2 STEERING FILE" : "AED2_STEERING_FILE", - "AED2 PHYTOPLANKTON STEERING FILE" : "AED2_PHYTOPLANKTON_STEERING_FILE", - "AED2 ZOOPLANKTON STEERING FILE" : "AED2_ZOOPLANKTON_STEERING_FILE", - "AED2 PATHOGEN STEERING FILE" : "AED2_PATHOGEN_STEERING_FILE", - "AED2 BIVALVE STEERING FILE" : "AED2_BIVALVE_STEERING_FILE", - "LIST OF FILES" : "LIST_OF_FILES", - "DESCRIPTION OF LIBRARIES" : "DESCRIPTION_OF_LIBRARIES", - "DEFAULT EXECUTABLE" : "DEFAULT_EXECUTABLE", - "DEFAULT PARALLEL EXECUTABLE" : "DEFAULT_PARALLEL_EXECUTABLE", + "STEERING FILE" : "STEERING_FILE", + "DICTIONARY" : "DICTIONARY", } diff --git a/Telemac/waqtel_dicoCasFrToCata.py b/Telemac/waqtel_dicoCasFrToCata.py index 54a6b0e3..f625dcfd 100644 --- a/Telemac/waqtel_dicoCasFrToCata.py +++ b/Telemac/waqtel_dicoCasFrToCata.py @@ -1,184 +1,180 @@ dicoCataToFrTelemac = { - "STEERING_FILE" : "FICHIER DES PARAMETRES", - "FORTRAN_FILE" : "FICHIER FORTRAN", "WAQ_CASE_TITLE" : "TITRE DU CAS QE", - "WATER_QUALITY_PRINTOUT_PERIOD" : "PERIODE POUR LES SORTIES QUALITE D'EAU", - "VARIABLES_FOR_WAQ_PRINTOUTS" : "VARIABLES POUR LES SORTIES QE", - "WAQ_VARIABLES_TO_BE_PRINTED" : "VARIABLES QE A IMPRIMER", - "RESULTS_FILE" : "FICHIER DES RESULTATS", - "RESULTS_FILE_FORMAT" : "FORMAT DU FICHIER DES RESULTATS", - "RELEASE" : "NUMERO DE VERSION", + "PARALLEL_PROCESSORS" : "PROCESSEURS PARALLELES", "GEOMETRY_FILE" : "FICHIER DE GEOMETRIE", "GEOMETRY_FILE_FORMAT" : "FORMAT DU FICHIER DE GEOMETRIE", "BOUNDARY_CONDITIONS_FILE" : "FICHIER DES CONDITIONS AUX LIMITES", + "FORTRAN_FILE" : "FICHIER FORTRAN", "HYDRODYNAMIC_FILE" : "FICHIER HYDRODYNAMIQUE", "HYDRODYNAMIC_FILE_FORMAT" : "FORMAT DU FICHIER HYDRODYNAMIQUE", + "VALIDATION" : "VALIDATION", "REFERENCE_FILE" : "FICHIER DE REFERENCE", "REFERENCE_FILE_FORMAT" : "FORMAT DU FICHIER DE REFERENCE", + "AED2_STEERING_FILE" : "FICHIER DES PARAMETRES AED2", + "AED2_PHYTOPLANKTON_STEERING_FILE" : "FICHIER DES PARAMETRES PHYTOPLANCTON AED2", + "AED2_ZOOPLANKTON_STEERING_FILE" : "FICHIER DES PARAMETRES ZOOPLANCTON AED2", + "AED2_PATHOGEN_STEERING_FILE" : "FICHIER DES PARAMETRES PATHOGENES AED2", + "AED2_BIVALVE_STEERING_FILE" : "FICHIER DES PARAMETRES BIVALVES AED2", + "RESULTS_FILE" : "FICHIER DES RESULTATS", + "RESULTS_FILE_FORMAT" : "FORMAT DU FICHIER DES RESULTATS", + "WATER_QUALITY_PRINTOUT_PERIOD" : "PERIODE POUR LES SORTIES QUALITE D'EAU", + "VARIABLES_FOR_WAQ_PRINTOUTS" : "VARIABLES POUR LES SORTIES QE", "MASS_BALANCE" : "BILAN DE MASSE", - "VALIDATION" : "VALIDATION", + "WAQ_VARIABLES_TO_BE_PRINTED" : "VARIABLES QE A IMPRIMER", + "DEBUGGER" : "DEBUGGER", "WATER_DENSITY" : "MASSE VOLUMIQUE DE L'EAU", "KINEMATIC_WATER_VISCOSITY" : "VISCOSITE CINEMATIQUE EAU", "DISPERSION_ALONG_THE_FLOW" : "DISPERSION LONGITUDINALE", "DISPERSION_ACROSS_THE_FLOW" : "DISPERSION TRANSVERSALE", - "DICTIONARY" : "DICTIONNAIRE", - "DEBUGGER" : "DEBUGGER", - "CONSTANT_OF_DEGRADATION_OF_ORGANIC_LOAD_K120" : "CONSTANTE DE DEGRADATION DE LA CHARGE ORGANIQUE K120", - "CONSTANT_FOR_THE_NITRIFICATION_KINETIC_K520" : "CONSTANTE DE LA CINETIQUE DE NITRIFICATION K520", - "OXYGENE_PRODUCED_BY_PHOTOSYNTHESIS" : "OXYGENE PRODUIT PAR PHOTOSYNTHESE", - "CONSUMED_OXYGEN_BY_NITRIFICATION" : "OXYGENE CONSOMME PAR NITRIFICATION", + "EVAPORATION_RATE" : "TAUX D'EVAPORATION", + "METHOD_OF_COMPUTATION_OF_RAY_EXTINCTION_COEFFICIENT" : "METHODE DE CALCUL DU COEFFICIENT D'EXTINCTION DU RAY", + "SECCHI_DEPTH" : "PROFONDEUR DE SECCHI", + "LIGHT_EXTINCTION_COEFFICIENT" : "COEFFICIENT D EXTINCTION DE LA LUMIERE", + "WATER_TEMPERATURE" : "TEMPERATURE DE L'EAU", + "VEGETAL_RESPIRATION_R" : "RESPIRATION VEGETALE R", + "CONSTANT_OF_DEGRADATION_OF_ORGANIC_LOAD_K1" : "CONSTANTE DE DEGRADATION DE LA CHARGE ORGANIQUE K1", + "CONSTANT_OF_NITRIFICATION_KINETIC_K4" : "CONSTANTE DE CINETIQUE DE NITRIFICATION K4", "BENTHIC_DEMAND" : "DEMANDE BENTHIQUE", - "K2_REAERATION_COEFFICIENT" : "COEFFICIENT DE REAERATION K2", - "FORMULA_FOR_COMPUTING_K2" : "FORMULE DE CALCUL DE K2", + "PHOTOSYNTHESIS_P" : "PHOTOSYNTHESE P", "O2_SATURATION_DENSITY_OF_WATER__CS_" : "CONCENTRATION DE SATURATION EN O2 DE L'EAU (CS)", + "FORMULA_FOR_COMPUTING_K2" : "FORMULE DE CALCUL DE K2", + "K2_REAERATION_COEFFICIENT" : "COEFFICIENT DE REAERATION K2", "FORMULA_FOR_COMPUTING_CS" : "FORMULE DE CALCUL DE CS", - "SEDIMENTATION_VELOCITY_OF_ORGANIC_PHOSPHORUS" : "VITESSE DE SEDIMENTATION DU PHOSPHORE ORGANIQUE", - "SEDIMENTATION_VELOCITY_OF_NON_ALGAL_NITROGEN" : "VITESSE DE SEDIMENTATION DE L'AZOTE NON ALGALE", "MAXIMUM_ALGAL_GROWTH_RATE_AT_20C" : "TAUX DE CROISSANCE ALGALE MAXIMUM A 20C", - "SECCHI_DEPTH" : "PROFONDEUR DE SECCHI", + "ALGAL_TOXICITY_COEFFICIENTS" : "COEFFICIENTS DE TOXICITE POUR LES ALGUES", "VEGETAL_TURBIDITY_COEFFICIENT_WITHOUT_PHYTO" : "COEFFICIENT DE TURBIDITE VEGETALE SANS PHYTO", "PARAMETER_OF_CALIBRATION_OF_SMITH_FORMULA" : "PARAMETRE DE CALAGE DE LA FORMULE DE SMITH", + "SUNSHINE_FLUX_DENSITY_ON_WATER_SURFACE" : "DENSITE DE FLUX DU RAYONNEMENT SOLAIRE A LA SURFACE", "CONSTANT_OF_HALF_SATURATION_WITH_PHOSPHATE" : "CONSTANTE DE DEMI-SATURATION EN PHOSPHATE", "CONSTANT_OF_HALF_SATURATION_WITH_NITROGEN" : "CONSTANTE DE DEMI-SATURATION EN AZOTE", - "ALGAL_TOXICITY_COEFFICIENTS" : "COEFFICIENTS DE TOXICITE POUR LES ALGUES", "RESPIRATION_RATE_OF_ALGAL_BIOMASS" : "TAUX DE RESPIRATION DE LA BIOMASSE ALGALE", + "COEFFICIENTS_OF_ALGAL_MORTALITY_AT_20C" : "COEFFICIENTS DE MORTALITE ALGALE A 20C", "PROPORTION_OF_PHOSPHORUS_WITHIN_PHYTO_CELLS" : "PROPORTION DE PHOSPHORE DANS LES CELLULES DU PHYTO", - "PERCENTAGE_OF_PHYSPHORUS_ASSIMILABLE_IN_DEAD_PHYTO" : "POURCENTAGE DE PHOSPHORE ASSIMILABLE DANS LE PHYTO MORT", + "PERCENTAGE_OF_PHOSPHORUS_ASSIMILABLE_IN_DEAD_PHYTO" : "POURCENTAGE DE PHOSPHORE ASSIMILABLE DANS LE PHYTO MORT", "RATE_OF_TRANSFORMATION_OF_POR_TO_PO4" : "TAUX DE TRANSFORMATION DU POR EN PO4", - "PROPORTION_OF_NITROGEN_WITHIN_PHYTO_CELLS" : "PROPORTION D'AZOTE DANS LES CELLULES DU PHYTO", - "PERCENTAGE_OF_NITROGEN_ASSIMILABLE_IN_DEAD_PHYTO" : "PERCENTAGE D'AZOTE ASSIMILABLE DANS LE PHYTO MORT", "RATE_OF_TRANSFORMATION_OF_NOR_TO_NO3" : "TAUX DE TRANSFORMATION DU NOR EN NO3", - "COEFFICIENTS_OF_ALGAL_MORTALITY_AT_20C" : "COEFFICIENTS DE MORTALITE ALGALE A 20C", + "PROPORTION_OF_NITROGEN_WITHIN_PHYTO_CELLS" : "PROPORTION D'AZOTE DANS LES CELLULES DU PHYTO", + "PERCENTAGE_OF_NITROGEN_ASSIMILABLE_IN_DEAD_PHYTO" : "POURCENTAGE D'AZOTE ASSIMILABLE DANS LE PHYTO MORT", + "SEDIMENTATION_VELOCITY_OF_ORGANIC_PHOSPHORUS" : "VITESSE DE SEDIMENTATION DU PHOSPHORE ORGANIQUE", + "SEDIMENTATION_VELOCITY_OF_NON_ALGAL_NITROGEN" : "VITESSE DE SEDIMENTATION DE L'AZOTE NON ALGAL", + "CONSUMED_OXYGEN_BY_NITRIFICATION" : "OXYGENE CONSOMME PAR NITRIFICATION", + "CONSTANT_FOR_THE_NITRIFICATION_KINETIC_K520" : "CONSTANTE DE LA CINETIQUE DE NITRIFICATION K520", + "CONSTANT_OF_DEGRADATION_OF_ORGANIC_LOAD_K120" : "CONSTANTE DE DEGRADATION DE LA CHARGE ORGANIQUE K120", "SEDIMENTATION_VELOCITY_OF_ORGANIC_LOAD" : "VITESSE DE SEDIMENTATION DE LA CHARGE ORGANIQUE", - "CONSTANT_OF_DEGRADATION_OF_ORGANIC_LOAD_K1" : "CONSTANTE DE DEGRADATION DE LA CHARGE ORGANIQUE K1", - "CONSTANT_OF_NITRIFICATION_KINETIC_K4" : "CONSTANTE DE CINETIQUE DE NITRIFICATION K4", - "PHOTOSYNTHESIS_P" : "PHOTOSYNTHESE P", - "VEGERAL_RESPIRATION_R" : "RESPIRATION VEGETALE R", - "WATER_TEMPERATURE" : "TEMPERATURE DE L'EAU", - "WEIR_REAERATION_COEFFICIENT_RS" : "COEFFICIENT DE REAERATION DU SEUIL RS", + "OXYGEN_PRODUCED_BY_PHOTOSYNTHESIS" : "OXYGENE PRODUIT PAR PHOTOSYNTHESE", "FORMULA_FOR_COMPUTING_RS" : "FORMULE DE CALCUL DE RS", + "WEIR_REAERATION_COEFFICIENT_RS" : "COEFFICIENT DE REAERATION DU SEUIL RS", "COEFFICIENTS_A_AND_B_FOR_RS_FORMULA" : "COEFFICIENTS A ET B POUR LA FORMULE DE RS", - "EROSION_RATE" : "TAUX D'EROSION", "SEDIMENTATION_CRITICAL_STRESS" : "CONTRAINTE CRITIQUE DE SEDIMENTATION", - "CRITICAL_STRESS_OF_RESUSPENSION" : "CONTRAINTE CRITIQUE DE REMISE EN SUSPENSION", "SEDIMENT_SETTLING_VELOCITY" : "VITESSE DE CHUTE DES MES", - "EXPONENETIAL_DESINTEGRATION_CONSTANT" : "CONSTANTE DE DESINTEGRATION EXPONENETIELLE", - "COEFFICIENT_OF_DISTRIBUTION" : "COEFFICIENT DE DISTRIBUTION", + "CRITICAL_STRESS_OF_RESUSPENSION" : "CONTRAINTE CRITIQUE DE REMISE EN SUSPENSION", + "EROSION_RATE" : "TAUX D'EROSION", "CONSTANT_OF_DESORPTION_KINETIC" : "CONSTANTE CINETIQUE DE DESORPTION", + "COEFFICIENT_OF_DISTRIBUTION" : "COEFFICIENT DE DISTRIBUTION", + "EXPONENTIAL_DESINTEGRATION_CONSTANT" : "CONSTANTE DE DESINTEGRATION EXPONENTIELLE", "WATER_SPECIFIC_HEAT" : "CHALEUR SPECIFIQUE DE L'EAU", - "AIR_SPECIFIC_HEAT" : "CHALEUR SPECIFIQUE DE L'AIR", - "COEFFICIENTS_OF_AERATION_FORMULA" : "COEFFICIENTS DE LA FORMULE D'AERATION", - "COEFFICIENT_OF_CLOUDING_RATE" : "COEFFICIENT REPRESENTATIF DE LA COUVERTURE NUAGEUSE", "COEFFICIENTS_FOR_CALIBRATING_ATMOSPHERIC_RADIATION" : "COEFFICIENTS DE CALAGE DU RAYONNEMENT ATMOSPHERIQUE", + "COEFFICIENT_OF_CLOUDING_RATE" : "COEFFICIENT REPRESENTATIF DE LA COUVERTURE NUAGEUSE", "COEFFICIENTS_FOR_CALIBRATING_SURFACE_WATER_RADIATION" : "COEFFICIENTS DE CALAGE DU RAYONNEMENT DU PLAN D'EAU", - "SUNSHINE_FLUX_DENSITY_ON_WATER_SURFACE" : "DENSITE DE FLUX DU RAYONNEMENT SOLAIRE A LA SURFACE", + "AIR_SPECIFIC_HEAT" : "CHALEUR SPECIFIQUE DE L'AIR", + "COEFFICIENTS_OF_AERATION_FORMULA" : "COEFFICIENTS DE LA FORMULE D'AERATION", "ATMOSPHERE_WATER_EXCHANGE_MODEL" : "MODELE D'ECHANGES EAU-ATMOSPHERE", - "LIGHTNESS_OF_THE_SKY" : "CLARTE DU CIEL", "COEFFICIENT_TO_CALIBRATE_THE_ATMOSPHERE_WATER_EXCHANGE_MODEL" : "COEFFICIENT DE CALAGE DU MODELE D'ECHANGES EAU-ATMOSPHERE", - "EVAPORATION_RATE" : "TAUX D'EVAPORATION", - "METHOD_OF_COMPUTATION_OF_RAY_EXCTINCTION_COEFFICIENT" : "METHODE DE CALCUL DU COEFFICIENT D'EXTINCTION DU RAY", "FORMULA_OF_ATMOSPHERIC_RADIATION" : "FORMULE DU RAYONNEMENT ATMOSPHERIQUE", + "LIGHTNESS_OF_THE_SKY" : "CLARTE DU CIEL", + "SOLAR_RADIATION_READ_IN_METEO_FILE" : "RAYONNEMENT SOLAIRE LU DANS LE FICHIER METEO", "LAW_OF_TRACERS_DEGRADATION" : "LOI DE DEGRADATION DES TRACEURS", "COEFFICIENT_1_FOR_LAW_OF_TRACERS_DEGRADATION" : "COEFFICIENT 1 DE LA LOI DE DEGRADATION DES TRACEURS", - "AED2_STEERING_FILE" : "FICHIER DES PARAMETRES AED2", - "AED2_PHYTOPLANKTON_STEERING_FILE" : "FICHIER DES PARAMETRES PHYTOPLANCTON AED2", - "AED2_ZOOPLANKTON_STEERING_FILE" : "FICHIER DES PARAMETRES ZOOPLANCTON AED2", - "AED2_PATHOGEN_STEERING_FILE" : "FICHIER DES PARAMETRES PATHOGENES AED2", - "AED2_BIVALVE_STEERING_FILE" : "FICHIER DES PARAMETRES BIVALVES AED2", - "LIST_OF_FILES" : "LISTE DES FICHIERS", - "DESCRIPTION_OF_LIBRARIES" : "DESCRIPTION DES LIBRAIRIES", - "DEFAULT_EXECUTABLE" : "EXECUTABLE PAR DEFAUT", - "DEFAULT_PARALLEL_EXECUTABLE" : "EXECUTABLE PARALLELE PAR DEFAUT", + "STEERING_FILE" : "FICHIER DES PARAMETRES", + "DICTIONARY" : "DICTIONNAIRE", } dicoCasFrToCata = { - "FICHIER DES PARAMETRES" : "STEERING_FILE", - "FICHIER FORTRAN" : "FORTRAN_FILE", "TITRE DU CAS QE" : "WAQ_CASE_TITLE", - "PERIODE POUR LES SORTIES QUALITE D'EAU" : "WATER_QUALITY_PRINTOUT_PERIOD", - "VARIABLES POUR LES SORTIES QE" : "VARIABLES_FOR_WAQ_PRINTOUTS", - "VARIABLES QE A IMPRIMER" : "WAQ_VARIABLES_TO_BE_PRINTED", - "FICHIER DES RESULTATS" : "RESULTS_FILE", - "FORMAT DU FICHIER DES RESULTATS" : "RESULTS_FILE_FORMAT", - "NUMERO DE VERSION" : "RELEASE", + "PROCESSEURS PARALLELES" : "PARALLEL_PROCESSORS", "FICHIER DE GEOMETRIE" : "GEOMETRY_FILE", "FORMAT DU FICHIER DE GEOMETRIE" : "GEOMETRY_FILE_FORMAT", "FICHIER DES CONDITIONS AUX LIMITES" : "BOUNDARY_CONDITIONS_FILE", + "FICHIER FORTRAN" : "FORTRAN_FILE", "FICHIER HYDRODYNAMIQUE" : "HYDRODYNAMIC_FILE", "FORMAT DU FICHIER HYDRODYNAMIQUE" : "HYDRODYNAMIC_FILE_FORMAT", + "VALIDATION" : "VALIDATION", "FICHIER DE REFERENCE" : "REFERENCE_FILE", "FORMAT DU FICHIER DE REFERENCE" : "REFERENCE_FILE_FORMAT", + "FICHIER DES PARAMETRES AED2" : "AED2_STEERING_FILE", + "FICHIER DES PARAMETRES PHYTOPLANCTON AED2" : "AED2_PHYTOPLANKTON_STEERING_FILE", + "FICHIER DES PARAMETRES ZOOPLANCTON AED2" : "AED2_ZOOPLANKTON_STEERING_FILE", + "FICHIER DES PARAMETRES PATHOGENES AED2" : "AED2_PATHOGEN_STEERING_FILE", + "FICHIER DES PARAMETRES BIVALVES AED2" : "AED2_BIVALVE_STEERING_FILE", + "FICHIER DES RESULTATS" : "RESULTS_FILE", + "FORMAT DU FICHIER DES RESULTATS" : "RESULTS_FILE_FORMAT", + "PERIODE POUR LES SORTIES QUALITE D'EAU" : "WATER_QUALITY_PRINTOUT_PERIOD", + "VARIABLES POUR LES SORTIES QE" : "VARIABLES_FOR_WAQ_PRINTOUTS", "BILAN DE MASSE" : "MASS_BALANCE", - "VALIDATION" : "VALIDATION", + "VARIABLES QE A IMPRIMER" : "WAQ_VARIABLES_TO_BE_PRINTED", + "DEBUGGER" : "DEBUGGER", "MASSE VOLUMIQUE DE L'EAU" : "WATER_DENSITY", "VISCOSITE CINEMATIQUE EAU" : "KINEMATIC_WATER_VISCOSITY", "DISPERSION LONGITUDINALE" : "DISPERSION_ALONG_THE_FLOW", "DISPERSION TRANSVERSALE" : "DISPERSION_ACROSS_THE_FLOW", - "DICTIONNAIRE" : "DICTIONARY", - "DEBUGGER" : "DEBUGGER", - "CONSTANTE DE DEGRADATION DE LA CHARGE ORGANIQUE K120" : "CONSTANT_OF_DEGRADATION_OF_ORGANIC_LOAD_K120", - "CONSTANTE DE LA CINETIQUE DE NITRIFICATION K520" : "CONSTANT_FOR_THE_NITRIFICATION_KINETIC_K520", - "OXYGENE PRODUIT PAR PHOTOSYNTHESE" : "OXYGENE_PRODUCED_BY_PHOTOSYNTHESIS", - "OXYGENE CONSOMME PAR NITRIFICATION" : "CONSUMED_OXYGEN_BY_NITRIFICATION", + "TAUX D'EVAPORATION" : "EVAPORATION_RATE", + "METHODE DE CALCUL DU COEFFICIENT D'EXTINCTION DU RAY" : "METHOD_OF_COMPUTATION_OF_RAY_EXTINCTION_COEFFICIENT", + "PROFONDEUR DE SECCHI" : "SECCHI_DEPTH", + "COEFFICIENT D EXTINCTION DE LA LUMIERE" : "LIGHT_EXTINCTION_COEFFICIENT", + "TEMPERATURE DE L'EAU" : "WATER_TEMPERATURE", + "RESPIRATION VEGETALE R" : "VEGETAL_RESPIRATION_R", + "CONSTANTE DE DEGRADATION DE LA CHARGE ORGANIQUE K1" : "CONSTANT_OF_DEGRADATION_OF_ORGANIC_LOAD_K1", + "CONSTANTE DE CINETIQUE DE NITRIFICATION K4" : "CONSTANT_OF_NITRIFICATION_KINETIC_K4", "DEMANDE BENTHIQUE" : "BENTHIC_DEMAND", - "COEFFICIENT DE REAERATION K2" : "K2_REAERATION_COEFFICIENT", - "FORMULE DE CALCUL DE K2" : "FORMULA_FOR_COMPUTING_K2", + "PHOTOSYNTHESE P" : "PHOTOSYNTHESIS_P", "CONCENTRATION DE SATURATION EN O2 DE L'EAU (CS)" : "O2_SATURATION_DENSITY_OF_WATER__CS_", + "FORMULE DE CALCUL DE K2" : "FORMULA_FOR_COMPUTING_K2", + "COEFFICIENT DE REAERATION K2" : "K2_REAERATION_COEFFICIENT", "FORMULE DE CALCUL DE CS" : "FORMULA_FOR_COMPUTING_CS", - "VITESSE DE SEDIMENTATION DU PHOSPHORE ORGANIQUE" : "SEDIMENTATION_VELOCITY_OF_ORGANIC_PHOSPHORUS", - "VITESSE DE SEDIMENTATION DE L'AZOTE NON ALGALE" : "SEDIMENTATION_VELOCITY_OF_NON_ALGAL_NITROGEN", "TAUX DE CROISSANCE ALGALE MAXIMUM A 20C" : "MAXIMUM_ALGAL_GROWTH_RATE_AT_20C", - "PROFONDEUR DE SECCHI" : "SECCHI_DEPTH", + "COEFFICIENTS DE TOXICITE POUR LES ALGUES" : "ALGAL_TOXICITY_COEFFICIENTS", "COEFFICIENT DE TURBIDITE VEGETALE SANS PHYTO" : "VEGETAL_TURBIDITY_COEFFICIENT_WITHOUT_PHYTO", "PARAMETRE DE CALAGE DE LA FORMULE DE SMITH" : "PARAMETER_OF_CALIBRATION_OF_SMITH_FORMULA", + "DENSITE DE FLUX DU RAYONNEMENT SOLAIRE A LA SURFACE" : "SUNSHINE_FLUX_DENSITY_ON_WATER_SURFACE", "CONSTANTE DE DEMI-SATURATION EN PHOSPHATE" : "CONSTANT_OF_HALF_SATURATION_WITH_PHOSPHATE", "CONSTANTE DE DEMI-SATURATION EN AZOTE" : "CONSTANT_OF_HALF_SATURATION_WITH_NITROGEN", - "COEFFICIENTS DE TOXICITE POUR LES ALGUES" : "ALGAL_TOXICITY_COEFFICIENTS", "TAUX DE RESPIRATION DE LA BIOMASSE ALGALE" : "RESPIRATION_RATE_OF_ALGAL_BIOMASS", + "COEFFICIENTS DE MORTALITE ALGALE A 20C" : "COEFFICIENTS_OF_ALGAL_MORTALITY_AT_20C", "PROPORTION DE PHOSPHORE DANS LES CELLULES DU PHYTO" : "PROPORTION_OF_PHOSPHORUS_WITHIN_PHYTO_CELLS", - "POURCENTAGE DE PHOSPHORE ASSIMILABLE DANS LE PHYTO MORT" : "PERCENTAGE_OF_PHYSPHORUS_ASSIMILABLE_IN_DEAD_PHYTO", + "POURCENTAGE DE PHOSPHORE ASSIMILABLE DANS LE PHYTO MORT" : "PERCENTAGE_OF_PHOSPHORUS_ASSIMILABLE_IN_DEAD_PHYTO", "TAUX DE TRANSFORMATION DU POR EN PO4" : "RATE_OF_TRANSFORMATION_OF_POR_TO_PO4", - "PROPORTION D'AZOTE DANS LES CELLULES DU PHYTO" : "PROPORTION_OF_NITROGEN_WITHIN_PHYTO_CELLS", - "PERCENTAGE D'AZOTE ASSIMILABLE DANS LE PHYTO MORT" : "PERCENTAGE_OF_NITROGEN_ASSIMILABLE_IN_DEAD_PHYTO", "TAUX DE TRANSFORMATION DU NOR EN NO3" : "RATE_OF_TRANSFORMATION_OF_NOR_TO_NO3", - "COEFFICIENTS DE MORTALITE ALGALE A 20C" : "COEFFICIENTS_OF_ALGAL_MORTALITY_AT_20C", + "PROPORTION D'AZOTE DANS LES CELLULES DU PHYTO" : "PROPORTION_OF_NITROGEN_WITHIN_PHYTO_CELLS", + "POURCENTAGE D'AZOTE ASSIMILABLE DANS LE PHYTO MORT" : "PERCENTAGE_OF_NITROGEN_ASSIMILABLE_IN_DEAD_PHYTO", + "VITESSE DE SEDIMENTATION DU PHOSPHORE ORGANIQUE" : "SEDIMENTATION_VELOCITY_OF_ORGANIC_PHOSPHORUS", + "VITESSE DE SEDIMENTATION DE L'AZOTE NON ALGAL" : "SEDIMENTATION_VELOCITY_OF_NON_ALGAL_NITROGEN", + "OXYGENE CONSOMME PAR NITRIFICATION" : "CONSUMED_OXYGEN_BY_NITRIFICATION", + "CONSTANTE DE LA CINETIQUE DE NITRIFICATION K520" : "CONSTANT_FOR_THE_NITRIFICATION_KINETIC_K520", + "CONSTANTE DE DEGRADATION DE LA CHARGE ORGANIQUE K120" : "CONSTANT_OF_DEGRADATION_OF_ORGANIC_LOAD_K120", "VITESSE DE SEDIMENTATION DE LA CHARGE ORGANIQUE" : "SEDIMENTATION_VELOCITY_OF_ORGANIC_LOAD", - "CONSTANTE DE DEGRADATION DE LA CHARGE ORGANIQUE K1" : "CONSTANT_OF_DEGRADATION_OF_ORGANIC_LOAD_K1", - "CONSTANTE DE CINETIQUE DE NITRIFICATION K4" : "CONSTANT_OF_NITRIFICATION_KINETIC_K4", - "PHOTOSYNTHESE P" : "PHOTOSYNTHESIS_P", - "RESPIRATION VEGETALE R" : "VEGERAL_RESPIRATION_R", - "TEMPERATURE DE L'EAU" : "WATER_TEMPERATURE", - "COEFFICIENT DE REAERATION DU SEUIL RS" : "WEIR_REAERATION_COEFFICIENT_RS", + "OXYGENE PRODUIT PAR PHOTOSYNTHESE" : "OXYGEN_PRODUCED_BY_PHOTOSYNTHESIS", "FORMULE DE CALCUL DE RS" : "FORMULA_FOR_COMPUTING_RS", + "COEFFICIENT DE REAERATION DU SEUIL RS" : "WEIR_REAERATION_COEFFICIENT_RS", "COEFFICIENTS A ET B POUR LA FORMULE DE RS" : "COEFFICIENTS_A_AND_B_FOR_RS_FORMULA", - "TAUX D'EROSION" : "EROSION_RATE", "CONTRAINTE CRITIQUE DE SEDIMENTATION" : "SEDIMENTATION_CRITICAL_STRESS", - "CONTRAINTE CRITIQUE DE REMISE EN SUSPENSION" : "CRITICAL_STRESS_OF_RESUSPENSION", "VITESSE DE CHUTE DES MES" : "SEDIMENT_SETTLING_VELOCITY", - "CONSTANTE DE DESINTEGRATION EXPONENETIELLE" : "EXPONENETIAL_DESINTEGRATION_CONSTANT", - "COEFFICIENT DE DISTRIBUTION" : "COEFFICIENT_OF_DISTRIBUTION", + "CONTRAINTE CRITIQUE DE REMISE EN SUSPENSION" : "CRITICAL_STRESS_OF_RESUSPENSION", + "TAUX D'EROSION" : "EROSION_RATE", "CONSTANTE CINETIQUE DE DESORPTION" : "CONSTANT_OF_DESORPTION_KINETIC", + "COEFFICIENT DE DISTRIBUTION" : "COEFFICIENT_OF_DISTRIBUTION", + "CONSTANTE DE DESINTEGRATION EXPONENTIELLE" : "EXPONENTIAL_DESINTEGRATION_CONSTANT", "CHALEUR SPECIFIQUE DE L'EAU" : "WATER_SPECIFIC_HEAT", - "CHALEUR SPECIFIQUE DE L'AIR" : "AIR_SPECIFIC_HEAT", - "COEFFICIENTS DE LA FORMULE D'AERATION" : "COEFFICIENTS_OF_AERATION_FORMULA", - "COEFFICIENT REPRESENTATIF DE LA COUVERTURE NUAGEUSE" : "COEFFICIENT_OF_CLOUDING_RATE", "COEFFICIENTS DE CALAGE DU RAYONNEMENT ATMOSPHERIQUE" : "COEFFICIENTS_FOR_CALIBRATING_ATMOSPHERIC_RADIATION", + "COEFFICIENT REPRESENTATIF DE LA COUVERTURE NUAGEUSE" : "COEFFICIENT_OF_CLOUDING_RATE", "COEFFICIENTS DE CALAGE DU RAYONNEMENT DU PLAN D'EAU" : "COEFFICIENTS_FOR_CALIBRATING_SURFACE_WATER_RADIATION", - "DENSITE DE FLUX DU RAYONNEMENT SOLAIRE A LA SURFACE" : "SUNSHINE_FLUX_DENSITY_ON_WATER_SURFACE", + "CHALEUR SPECIFIQUE DE L'AIR" : "AIR_SPECIFIC_HEAT", + "COEFFICIENTS DE LA FORMULE D'AERATION" : "COEFFICIENTS_OF_AERATION_FORMULA", "MODELE D'ECHANGES EAU-ATMOSPHERE" : "ATMOSPHERE_WATER_EXCHANGE_MODEL", - "CLARTE DU CIEL" : "LIGHTNESS_OF_THE_SKY", "COEFFICIENT DE CALAGE DU MODELE D'ECHANGES EAU-ATMOSPHERE" : "COEFFICIENT_TO_CALIBRATE_THE_ATMOSPHERE_WATER_EXCHANGE_MODEL", - "TAUX D'EVAPORATION" : "EVAPORATION_RATE", - "METHODE DE CALCUL DU COEFFICIENT D'EXTINCTION DU RAY" : "METHOD_OF_COMPUTATION_OF_RAY_EXCTINCTION_COEFFICIENT", "FORMULE DU RAYONNEMENT ATMOSPHERIQUE" : "FORMULA_OF_ATMOSPHERIC_RADIATION", + "CLARTE DU CIEL" : "LIGHTNESS_OF_THE_SKY", + "RAYONNEMENT SOLAIRE LU DANS LE FICHIER METEO" : "SOLAR_RADIATION_READ_IN_METEO_FILE", "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", - "FICHIER DES PARAMETRES AED2" : "AED2_STEERING_FILE", - "FICHIER DES PARAMETRES PHYTOPLANCTON AED2" : "AED2_PHYTOPLANKTON_STEERING_FILE", - "FICHIER DES PARAMETRES ZOOPLANCTON AED2" : "AED2_ZOOPLANKTON_STEERING_FILE", - "FICHIER DES PARAMETRES PATHOGENES AED2" : "AED2_PATHOGEN_STEERING_FILE", - "FICHIER DES PARAMETRES BIVALVES AED2" : "AED2_BIVALVE_STEERING_FILE", - "LISTE DES FICHIERS" : "LIST_OF_FILES", - "DESCRIPTION DES LIBRAIRIES" : "DESCRIPTION_OF_LIBRARIES", - "EXECUTABLE PAR DEFAUT" : "DEFAULT_EXECUTABLE", - "EXECUTABLE PARALLELE PAR DEFAUT" : "DEFAULT_PARALLEL_EXECUTABLE", + "FICHIER DES PARAMETRES" : "STEERING_FILE", + "DICTIONNAIRE" : "DICTIONARY", } diff --git a/Telemac/waqtel_enum_auto.py b/Telemac/waqtel_enum_auto.py index ca53148c..a26245f6 100644 --- a/Telemac/waqtel_enum_auto.py +++ b/Telemac/waqtel_enum_auto.py @@ -1,18 +1,15 @@ #/usr/bin/env python # -*- coding: latin-1 -*- TelemacdicoEn = { +'METHOD_OF_COMPUTATION_OF_RAY_EXTINCTION_COEFFICIENT' : { + 1:"ATKINS FORMULA", + 2:"MOSS FORMULA", + 3:"GIVEN CONSTANT", + }, 'ATMOSPHERE_WATER_EXCHANGE_MODEL' : { 0:"NO MODEL", 1:"LINEARISED FORMULA AT THE FREE SURFACE", 2:"MODEL WITH COMPLETE BALANCE", - 3:"LINEARISED FORMULA WITHOUT ICE", - 4:"LINEARISED FORMULA WITH ICE", - 5:"MODEL WITH COMPLETE BALANCE WITH ICE", - }, -'LIGHTNESS_OF_THE_SKY' : { - 1:"VERY BRIGHT, PURE SKY", - 2:"MODERATELY BRIGHT SKY", - 3:"FOGGY LIKE THE SKY OF INDUSTRIAL AREA ", }, 'FORMULA_OF_ATMOSPHERIC_RADIATION' : { 1:"IDSO AND JACKSON (1969)", @@ -20,249 +17,259 @@ TelemacdicoEn = { 3:"BRUTSAERT (1975)", 4:"YAJIMA TONO DAM (2014)", }, +'LIGHTNESS_OF_THE_SKY' : { + 1:"VERY BRIGHT, PURE SKY", + 2:"MODERATELY BRIGHT SKY", + 3:"FOGGY LIKE THE SKY OF INDUSTRIAL AREA ", + }, 'LAW_OF_TRACERS_DEGRADATION' : { 0:"NO DEGRADATION", 1:"F(T90) LAW", + 2:"FIRST ORDER KINETIC LAW, CONSTANT OF DEGRADATION IN HOURS", + 3:"FIRST ORDER KINETIC LAW, CONSTANT OF DEGRADATION IN DAYS", + 4:"LAW IMPLEMENTED BY USER", }, } TelemacdicoFr = { +'METHOD_OF_COMPUTATION_OF_RAY_EXTINCTION_COEFFICIENT' : { + 1:"FORMULE D ATKINS (1.7/SECCHI)", + 2:"PAS DE MODELE D ECHANGES EAU-ATMOSPHERE", + 3:"CONSTANTE DONNEE", + }, 'ATMOSPHERE_WATER_EXCHANGE_MODEL' : { 0:"PAS DE MODELE D ECHANGES EAU-ATMOSPHERE", 1:"FORMULE LINEARISEE A LA SURFACE", 2:"MODELE A BILAN COMPLET", - 3:"FORMULE LINEARISEE SANS LES GLACES", - 4:"FORMULE LINEARISEE AVEC LES GLACES", - 5:"MODELE A BILAN COMPLET AVEC LES GLACES", - }, -'LIGHTNESS_OF_THE_SKY' : { - 1:"CIEL TRES CLAIRE, TRES PURE", - 2:"CIEL MOYENNEMENT CLAIRE", - 3:"CIEL D UNE ZONE INDUSRTIELLE, OPAQUE", }, 'FORMULA_OF_ATMOSPHERIC_RADIATION' : { - 1:"IDSO AND JACKSON (1969)", + 1:"IDSO ET JACKSON (1969)", 2:"SWINBANK (1963)", 3:"BRUTSAERT (1975)", 4:"YAJIMA TONO DAM (2014)", }, +'LIGHTNESS_OF_THE_SKY' : { + 1:"CIEL TRES CLAIR, TRES PUR", + 2:"CIEL MOYENNEMENT CLAIR", + 3:"CIEL D UNE ZONE INDUSTRIELLE, OPAQUE", + }, 'LAW_OF_TRACERS_DEGRADATION' : { 0:"PAS DE DEGRADATION", 1:"LOI EN F(T90)", + 2:"CINETIQUE D ORDRE 1, CONSTANTE DE DEGRADATION EN HEURES", + 3:"CINETIQUE D ORDRE 1, CONSTANTE DE DEGRADATION EN JOURS", + 4:"LOI PROGRAMMEE PAR L UTILISATEUR", }, } DicoCasFrToCata = { - "FICHIER DES PARAMETRES":"STEERING_FILE", - "FICHIER FORTRAN":"FORTRAN_FILE", "TITRE DU CAS QE":"WAQ_CASE_TITLE", - "PERIODE POUR LES SORTIES QUALITE D'EAU":"WATER_QUALITY_PRINTOUT_PERIOD", - "VARIABLES POUR LES SORTIES QE":"VARIABLES_FOR_WAQ_PRINTOUTS", - "VARIABLES QE A IMPRIMER":"WAQ_VARIABLES_TO_BE_PRINTED", - "FICHIER DES RESULTATS":"RESULTS_FILE", - "FORMAT DU FICHIER DES RESULTATS":"RESULTS_FILE_FORMAT", - "NUMERO DE VERSION":"RELEASE", + "PROCESSEURS PARALLELES":"PARALLEL_PROCESSORS", "FICHIER DE GEOMETRIE":"GEOMETRY_FILE", "FORMAT DU FICHIER DE GEOMETRIE":"GEOMETRY_FILE_FORMAT", "FICHIER DES CONDITIONS AUX LIMITES":"BOUNDARY_CONDITIONS_FILE", + "FICHIER FORTRAN":"FORTRAN_FILE", "FICHIER HYDRODYNAMIQUE":"HYDRODYNAMIC_FILE", "FORMAT DU FICHIER HYDRODYNAMIQUE":"HYDRODYNAMIC_FILE_FORMAT", + "VALIDATION":"VALIDATION", "FICHIER DE REFERENCE":"REFERENCE_FILE", "FORMAT DU FICHIER DE REFERENCE":"REFERENCE_FILE_FORMAT", + "FICHIER DES PARAMETRES AED2":"AED2_STEERING_FILE", + "FICHIER DES PARAMETRES PHYTOPLANCTON AED2":"AED2_PHYTOPLANKTON_STEERING_FILE", + "FICHIER DES PARAMETRES ZOOPLANCTON AED2":"AED2_ZOOPLANKTON_STEERING_FILE", + "FICHIER DES PARAMETRES PATHOGENES AED2":"AED2_PATHOGEN_STEERING_FILE", + "FICHIER DES PARAMETRES BIVALVES AED2":"AED2_BIVALVE_STEERING_FILE", + "FICHIER DES RESULTATS":"RESULTS_FILE", + "FORMAT DU FICHIER DES RESULTATS":"RESULTS_FILE_FORMAT", + "PERIODE POUR LES SORTIES QUALITE D'EAU":"WATER_QUALITY_PRINTOUT_PERIOD", + "VARIABLES POUR LES SORTIES QE":"VARIABLES_FOR_WAQ_PRINTOUTS", "BILAN DE MASSE":"MASS_BALANCE", - "VALIDATION":"VALIDATION", + "VARIABLES QE A IMPRIMER":"WAQ_VARIABLES_TO_BE_PRINTED", + "DEBUGGER":"DEBUGGER", "MASSE VOLUMIQUE DE L'EAU":"WATER_DENSITY", "VISCOSITE CINEMATIQUE EAU":"KINEMATIC_WATER_VISCOSITY", "DISPERSION LONGITUDINALE":"DISPERSION_ALONG_THE_FLOW", "DISPERSION TRANSVERSALE":"DISPERSION_ACROSS_THE_FLOW", - "DICTIONNAIRE":"DICTIONARY", - "DEBUGGER":"DEBUGGER", - "CONSTANTE DE DEGRADATION DE LA CHARGE ORGANIQUE K120":"CONSTANT_OF_DEGRADATION_OF_ORGANIC_LOAD_K120", - "CONSTANTE DE LA CINETIQUE DE NITRIFICATION K520":"CONSTANT_FOR_THE_NITRIFICATION_KINETIC_K520", - "OXYGENE PRODUIT PAR PHOTOSYNTHESE":"OXYGENE_PRODUCED_BY_PHOTOSYNTHESIS", - "OXYGENE CONSOMME PAR NITRIFICATION":"CONSUMED_OXYGEN_BY_NITRIFICATION", + "TAUX D'EVAPORATION":"EVAPORATION_RATE", + "METHODE DE CALCUL DU COEFFICIENT D'EXTINCTION DU RAY":"METHOD_OF_COMPUTATION_OF_RAY_EXTINCTION_COEFFICIENT", + "PROFONDEUR DE SECCHI":"SECCHI_DEPTH", + "COEFFICIENT D EXTINCTION DE LA LUMIERE":"LIGHT_EXTINCTION_COEFFICIENT", + "TEMPERATURE DE L'EAU":"WATER_TEMPERATURE", + "RESPIRATION VEGETALE R":"VEGETAL_RESPIRATION_R", + "CONSTANTE DE DEGRADATION DE LA CHARGE ORGANIQUE K1":"CONSTANT_OF_DEGRADATION_OF_ORGANIC_LOAD_K1", + "CONSTANTE DE CINETIQUE DE NITRIFICATION K4":"CONSTANT_OF_NITRIFICATION_KINETIC_K4", "DEMANDE BENTHIQUE":"BENTHIC_DEMAND", - "COEFFICIENT DE REAERATION K2":"K2_REAERATION_COEFFICIENT", - "FORMULE DE CALCUL DE K2":"FORMULA_FOR_COMPUTING_K2", + "PHOTOSYNTHESE P":"PHOTOSYNTHESIS_P", "CONCENTRATION DE SATURATION EN O2 DE L'EAU (CS)":"O2_SATURATION_DENSITY_OF_WATER__CS_", + "FORMULE DE CALCUL DE K2":"FORMULA_FOR_COMPUTING_K2", + "COEFFICIENT DE REAERATION K2":"K2_REAERATION_COEFFICIENT", "FORMULE DE CALCUL DE CS":"FORMULA_FOR_COMPUTING_CS", - "VITESSE DE SEDIMENTATION DU PHOSPHORE ORGANIQUE":"SEDIMENTATION_VELOCITY_OF_ORGANIC_PHOSPHORUS", - "VITESSE DE SEDIMENTATION DE L'AZOTE NON ALGALE":"SEDIMENTATION_VELOCITY_OF_NON_ALGAL_NITROGEN", "TAUX DE CROISSANCE ALGALE MAXIMUM A 20C":"MAXIMUM_ALGAL_GROWTH_RATE_AT_20C", - "PROFONDEUR DE SECCHI":"SECCHI_DEPTH", + "COEFFICIENTS DE TOXICITE POUR LES ALGUES":"ALGAL_TOXICITY_COEFFICIENTS", "COEFFICIENT DE TURBIDITE VEGETALE SANS PHYTO":"VEGETAL_TURBIDITY_COEFFICIENT_WITHOUT_PHYTO", "PARAMETRE DE CALAGE DE LA FORMULE DE SMITH":"PARAMETER_OF_CALIBRATION_OF_SMITH_FORMULA", + "DENSITE DE FLUX DU RAYONNEMENT SOLAIRE A LA SURFACE":"SUNSHINE_FLUX_DENSITY_ON_WATER_SURFACE", "CONSTANTE DE DEMI-SATURATION EN PHOSPHATE":"CONSTANT_OF_HALF_SATURATION_WITH_PHOSPHATE", "CONSTANTE DE DEMI-SATURATION EN AZOTE":"CONSTANT_OF_HALF_SATURATION_WITH_NITROGEN", - "COEFFICIENTS DE TOXICITE POUR LES ALGUES":"ALGAL_TOXICITY_COEFFICIENTS", "TAUX DE RESPIRATION DE LA BIOMASSE ALGALE":"RESPIRATION_RATE_OF_ALGAL_BIOMASS", + "COEFFICIENTS DE MORTALITE ALGALE A 20C":"COEFFICIENTS_OF_ALGAL_MORTALITY_AT_20C", "PROPORTION DE PHOSPHORE DANS LES CELLULES DU PHYTO":"PROPORTION_OF_PHOSPHORUS_WITHIN_PHYTO_CELLS", - "POURCENTAGE DE PHOSPHORE ASSIMILABLE DANS LE PHYTO MORT":"PERCENTAGE_OF_PHYSPHORUS_ASSIMILABLE_IN_DEAD_PHYTO", + "POURCENTAGE DE PHOSPHORE ASSIMILABLE DANS LE PHYTO MORT":"PERCENTAGE_OF_PHOSPHORUS_ASSIMILABLE_IN_DEAD_PHYTO", "TAUX DE TRANSFORMATION DU POR EN PO4":"RATE_OF_TRANSFORMATION_OF_POR_TO_PO4", - "PROPORTION D'AZOTE DANS LES CELLULES DU PHYTO":"PROPORTION_OF_NITROGEN_WITHIN_PHYTO_CELLS", - "PERCENTAGE D'AZOTE ASSIMILABLE DANS LE PHYTO MORT":"PERCENTAGE_OF_NITROGEN_ASSIMILABLE_IN_DEAD_PHYTO", "TAUX DE TRANSFORMATION DU NOR EN NO3":"RATE_OF_TRANSFORMATION_OF_NOR_TO_NO3", - "COEFFICIENTS DE MORTALITE ALGALE A 20C":"COEFFICIENTS_OF_ALGAL_MORTALITY_AT_20C", + "PROPORTION D'AZOTE DANS LES CELLULES DU PHYTO":"PROPORTION_OF_NITROGEN_WITHIN_PHYTO_CELLS", + "POURCENTAGE D'AZOTE ASSIMILABLE DANS LE PHYTO MORT":"PERCENTAGE_OF_NITROGEN_ASSIMILABLE_IN_DEAD_PHYTO", + "VITESSE DE SEDIMENTATION DU PHOSPHORE ORGANIQUE":"SEDIMENTATION_VELOCITY_OF_ORGANIC_PHOSPHORUS", + "VITESSE DE SEDIMENTATION DE L'AZOTE NON ALGAL":"SEDIMENTATION_VELOCITY_OF_NON_ALGAL_NITROGEN", + "OXYGENE CONSOMME PAR NITRIFICATION":"CONSUMED_OXYGEN_BY_NITRIFICATION", + "CONSTANTE DE LA CINETIQUE DE NITRIFICATION K520":"CONSTANT_FOR_THE_NITRIFICATION_KINETIC_K520", + "CONSTANTE DE DEGRADATION DE LA CHARGE ORGANIQUE K120":"CONSTANT_OF_DEGRADATION_OF_ORGANIC_LOAD_K120", "VITESSE DE SEDIMENTATION DE LA CHARGE ORGANIQUE":"SEDIMENTATION_VELOCITY_OF_ORGANIC_LOAD", - "CONSTANTE DE DEGRADATION DE LA CHARGE ORGANIQUE K1":"CONSTANT_OF_DEGRADATION_OF_ORGANIC_LOAD_K1", - "CONSTANTE DE CINETIQUE DE NITRIFICATION K4":"CONSTANT_OF_NITRIFICATION_KINETIC_K4", - "PHOTOSYNTHESE P":"PHOTOSYNTHESIS_P", - "RESPIRATION VEGETALE R":"VEGERAL_RESPIRATION_R", - "TEMPERATURE DE L'EAU":"WATER_TEMPERATURE", - "COEFFICIENT DE REAERATION DU SEUIL RS":"WEIR_REAERATION_COEFFICIENT_RS", + "OXYGENE PRODUIT PAR PHOTOSYNTHESE":"OXYGEN_PRODUCED_BY_PHOTOSYNTHESIS", "FORMULE DE CALCUL DE RS":"FORMULA_FOR_COMPUTING_RS", + "COEFFICIENT DE REAERATION DU SEUIL RS":"WEIR_REAERATION_COEFFICIENT_RS", "COEFFICIENTS A ET B POUR LA FORMULE DE RS":"COEFFICIENTS_A_AND_B_FOR_RS_FORMULA", - "TAUX D'EROSION":"EROSION_RATE", "CONTRAINTE CRITIQUE DE SEDIMENTATION":"SEDIMENTATION_CRITICAL_STRESS", - "CONTRAINTE CRITIQUE DE REMISE EN SUSPENSION":"CRITICAL_STRESS_OF_RESUSPENSION", "VITESSE DE CHUTE DES MES":"SEDIMENT_SETTLING_VELOCITY", - "CONSTANTE DE DESINTEGRATION EXPONENETIELLE":"EXPONENETIAL_DESINTEGRATION_CONSTANT", - "COEFFICIENT DE DISTRIBUTION":"COEFFICIENT_OF_DISTRIBUTION", + "CONTRAINTE CRITIQUE DE REMISE EN SUSPENSION":"CRITICAL_STRESS_OF_RESUSPENSION", + "TAUX D'EROSION":"EROSION_RATE", "CONSTANTE CINETIQUE DE DESORPTION":"CONSTANT_OF_DESORPTION_KINETIC", + "COEFFICIENT DE DISTRIBUTION":"COEFFICIENT_OF_DISTRIBUTION", + "CONSTANTE DE DESINTEGRATION EXPONENTIELLE":"EXPONENTIAL_DESINTEGRATION_CONSTANT", "CHALEUR SPECIFIQUE DE L'EAU":"WATER_SPECIFIC_HEAT", - "CHALEUR SPECIFIQUE DE L'AIR":"AIR_SPECIFIC_HEAT", - "COEFFICIENTS DE LA FORMULE D'AERATION":"COEFFICIENTS_OF_AERATION_FORMULA", - "COEFFICIENT REPRESENTATIF DE LA COUVERTURE NUAGEUSE":"COEFFICIENT_OF_CLOUDING_RATE", "COEFFICIENTS DE CALAGE DU RAYONNEMENT ATMOSPHERIQUE":"COEFFICIENTS_FOR_CALIBRATING_ATMOSPHERIC_RADIATION", + "COEFFICIENT REPRESENTATIF DE LA COUVERTURE NUAGEUSE":"COEFFICIENT_OF_CLOUDING_RATE", "COEFFICIENTS DE CALAGE DU RAYONNEMENT DU PLAN D'EAU":"COEFFICIENTS_FOR_CALIBRATING_SURFACE_WATER_RADIATION", - "DENSITE DE FLUX DU RAYONNEMENT SOLAIRE A LA SURFACE":"SUNSHINE_FLUX_DENSITY_ON_WATER_SURFACE", + "CHALEUR SPECIFIQUE DE L'AIR":"AIR_SPECIFIC_HEAT", + "COEFFICIENTS DE LA FORMULE D'AERATION":"COEFFICIENTS_OF_AERATION_FORMULA", "MODELE D'ECHANGES EAU-ATMOSPHERE":"ATMOSPHERE_WATER_EXCHANGE_MODEL", - "CLARTE DU CIEL":"LIGHTNESS_OF_THE_SKY", "COEFFICIENT DE CALAGE DU MODELE D'ECHANGES EAU-ATMOSPHERE":"COEFFICIENT_TO_CALIBRATE_THE_ATMOSPHERE_WATER_EXCHANGE_MODEL", - "TAUX D'EVAPORATION":"EVAPORATION_RATE", - "METHODE DE CALCUL DU COEFFICIENT D'EXTINCTION DU RAY":"METHOD_OF_COMPUTATION_OF_RAY_EXCTINCTION_COEFFICIENT", "FORMULE DU RAYONNEMENT ATMOSPHERIQUE":"FORMULA_OF_ATMOSPHERIC_RADIATION", + "CLARTE DU CIEL":"LIGHTNESS_OF_THE_SKY", + "RAYONNEMENT SOLAIRE LU DANS LE FICHIER METEO":"SOLAR_RADIATION_READ_IN_METEO_FILE", "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", - "FICHIER DES PARAMETRES AED2":"AED2_STEERING_FILE", - "FICHIER DES PARAMETRES PHYTOPLANCTON AED2":"AED2_PHYTOPLANKTON_STEERING_FILE", - "FICHIER DES PARAMETRES ZOOPLANCTON AED2":"AED2_ZOOPLANKTON_STEERING_FILE", - "FICHIER DES PARAMETRES PATHOGENES AED2":"AED2_PATHOGEN_STEERING_FILE", - "FICHIER DES PARAMETRES BIVALVES AED2":"AED2_BIVALVE_STEERING_FILE", - "LISTE DES FICHIERS":"LIST_OF_FILES", - "DESCRIPTION DES LIBRAIRIES":"DESCRIPTION_OF_LIBRARIES", - "EXECUTABLE PAR DEFAUT":"DEFAULT_EXECUTABLE", - "EXECUTABLE PARALLELE PAR DEFAUT":"DEFAULT_PARALLEL_EXECUTABLE", + "FICHIER DES PARAMETRES":"STEERING_FILE", + "DICTIONNAIRE":"DICTIONARY", } DicoCasEnToCata = { - 'STEERING FILE':'STEERING_FILE', - 'FORTRAN FILE':'FORTRAN_FILE', 'WAQ CASE TITLE':'WAQ_CASE_TITLE', - 'WATER QUALITY PRINTOUT PERIOD':'WATER_QUALITY_PRINTOUT_PERIOD', - 'VARIABLES FOR WAQ PRINTOUTS':'VARIABLES_FOR_WAQ_PRINTOUTS', - 'WAQ VARIABLES TO BE PRINTED':'WAQ_VARIABLES_TO_BE_PRINTED', - 'RESULTS FILE':'RESULTS_FILE', - 'RESULTS FILE FORMAT':'RESULTS_FILE_FORMAT', - 'RELEASE':'RELEASE', + 'PARALLEL PROCESSORS':'PARALLEL_PROCESSORS', 'GEOMETRY FILE':'GEOMETRY_FILE', 'GEOMETRY FILE FORMAT':'GEOMETRY_FILE_FORMAT', 'BOUNDARY CONDITIONS FILE':'BOUNDARY_CONDITIONS_FILE', + 'FORTRAN FILE':'FORTRAN_FILE', 'HYDRODYNAMIC FILE':'HYDRODYNAMIC_FILE', 'HYDRODYNAMIC FILE FORMAT':'HYDRODYNAMIC_FILE_FORMAT', + 'VALIDATION':'VALIDATION', 'REFERENCE FILE':'REFERENCE_FILE', 'REFERENCE FILE FORMAT':'REFERENCE_FILE_FORMAT', + 'AED2 STEERING FILE':'AED2_STEERING_FILE', + 'AED2 PHYTOPLANKTON STEERING FILE':'AED2_PHYTOPLANKTON_STEERING_FILE', + 'AED2 ZOOPLANKTON STEERING FILE':'AED2_ZOOPLANKTON_STEERING_FILE', + 'AED2 PATHOGEN STEERING FILE':'AED2_PATHOGEN_STEERING_FILE', + 'AED2 BIVALVE STEERING FILE':'AED2_BIVALVE_STEERING_FILE', + 'RESULTS FILE':'RESULTS_FILE', + 'RESULTS FILE FORMAT':'RESULTS_FILE_FORMAT', + 'WATER QUALITY PRINTOUT PERIOD':'WATER_QUALITY_PRINTOUT_PERIOD', + 'VARIABLES FOR WAQ PRINTOUTS':'VARIABLES_FOR_WAQ_PRINTOUTS', 'MASS-BALANCE':'MASS_BALANCE', - 'VALIDATION':'VALIDATION', + 'WAQ VARIABLES TO BE PRINTED':'WAQ_VARIABLES_TO_BE_PRINTED', + 'DEBUGGER':'DEBUGGER', 'WATER DENSITY':'WATER_DENSITY', 'KINEMATIC WATER VISCOSITY':'KINEMATIC_WATER_VISCOSITY', 'DISPERSION ALONG THE FLOW':'DISPERSION_ALONG_THE_FLOW', 'DISPERSION ACROSS THE FLOW':'DISPERSION_ACROSS_THE_FLOW', - 'DICTIONARY':'DICTIONARY', - 'DEBUGGER':'DEBUGGER', - 'CONSTANT OF DEGRADATION OF ORGANIC LOAD K120':'CONSTANT_OF_DEGRADATION_OF_ORGANIC_LOAD_K120', - 'CONSTANT FOR THE NITRIFICATION KINETIC K520':'CONSTANT_FOR_THE_NITRIFICATION_KINETIC_K520', - 'OXYGENE PRODUCED BY PHOTOSYNTHESIS':'OXYGENE_PRODUCED_BY_PHOTOSYNTHESIS', - 'CONSUMED OXYGEN BY NITRIFICATION':'CONSUMED_OXYGEN_BY_NITRIFICATION', + 'EVAPORATION RATE':'EVAPORATION_RATE', + 'METHOD OF COMPUTATION OF RAY EXTINCTION COEFFICIENT':'METHOD_OF_COMPUTATION_OF_RAY_EXTINCTION_COEFFICIENT', + 'SECCHI DEPTH':'SECCHI_DEPTH', + 'LIGHT EXTINCTION COEFFICIENT':'LIGHT_EXTINCTION_COEFFICIENT', + 'WATER TEMPERATURE':'WATER_TEMPERATURE', + 'VEGETAL RESPIRATION R':'VEGETAL_RESPIRATION_R', + 'CONSTANT OF DEGRADATION OF ORGANIC LOAD K1':'CONSTANT_OF_DEGRADATION_OF_ORGANIC_LOAD_K1', + 'CONSTANT OF NITRIFICATION KINETIC K4':'CONSTANT_OF_NITRIFICATION_KINETIC_K4', 'BENTHIC DEMAND':'BENTHIC_DEMAND', - 'K2 REAERATION COEFFICIENT':'K2_REAERATION_COEFFICIENT', - 'FORMULA FOR COMPUTING K2':'FORMULA_FOR_COMPUTING_K2', + 'PHOTOSYNTHESIS P':'PHOTOSYNTHESIS_P', 'O2 SATURATION DENSITY OF WATER (CS)':'O2_SATURATION_DENSITY_OF_WATER__CS_', + 'FORMULA FOR COMPUTING K2':'FORMULA_FOR_COMPUTING_K2', + 'K2 REAERATION COEFFICIENT':'K2_REAERATION_COEFFICIENT', 'FORMULA FOR COMPUTING CS':'FORMULA_FOR_COMPUTING_CS', - 'SEDIMENTATION VELOCITY OF ORGANIC PHOSPHORUS':'SEDIMENTATION_VELOCITY_OF_ORGANIC_PHOSPHORUS', - 'SEDIMENTATION VELOCITY OF NON ALGAL NITROGEN':'SEDIMENTATION_VELOCITY_OF_NON_ALGAL_NITROGEN', 'MAXIMUM ALGAL GROWTH RATE AT 20C':'MAXIMUM_ALGAL_GROWTH_RATE_AT_20C', - 'SECCHI DEPTH':'SECCHI_DEPTH', + 'ALGAL TOXICITY COEFFICIENTS':'ALGAL_TOXICITY_COEFFICIENTS', 'VEGETAL TURBIDITY COEFFICIENT WITHOUT PHYTO':'VEGETAL_TURBIDITY_COEFFICIENT_WITHOUT_PHYTO', 'PARAMETER OF CALIBRATION OF SMITH FORMULA':'PARAMETER_OF_CALIBRATION_OF_SMITH_FORMULA', + 'SUNSHINE FLUX DENSITY ON WATER SURFACE':'SUNSHINE_FLUX_DENSITY_ON_WATER_SURFACE', 'CONSTANT OF HALF-SATURATION WITH PHOSPHATE':'CONSTANT_OF_HALF_SATURATION_WITH_PHOSPHATE', 'CONSTANT OF HALF-SATURATION WITH NITROGEN':'CONSTANT_OF_HALF_SATURATION_WITH_NITROGEN', - 'ALGAL TOXICITY COEFFICIENTS':'ALGAL_TOXICITY_COEFFICIENTS', 'RESPIRATION RATE OF ALGAL BIOMASS':'RESPIRATION_RATE_OF_ALGAL_BIOMASS', + 'COEFFICIENTS OF ALGAL MORTALITY AT 20C':'COEFFICIENTS_OF_ALGAL_MORTALITY_AT_20C', 'PROPORTION OF PHOSPHORUS WITHIN PHYTO CELLS':'PROPORTION_OF_PHOSPHORUS_WITHIN_PHYTO_CELLS', - 'PERCENTAGE OF PHYSPHORUS ASSIMILABLE IN DEAD PHYTO':'PERCENTAGE_OF_PHYSPHORUS_ASSIMILABLE_IN_DEAD_PHYTO', + 'PERCENTAGE OF PHOSPHORUS ASSIMILABLE IN DEAD PHYTO':'PERCENTAGE_OF_PHOSPHORUS_ASSIMILABLE_IN_DEAD_PHYTO', 'RATE OF TRANSFORMATION OF POR TO PO4':'RATE_OF_TRANSFORMATION_OF_POR_TO_PO4', + 'RATE OF TRANSFORMATION OF NOR TO NO3':'RATE_OF_TRANSFORMATION_OF_NOR_TO_NO3', 'PROPORTION OF NITROGEN WITHIN PHYTO CELLS':'PROPORTION_OF_NITROGEN_WITHIN_PHYTO_CELLS', 'PERCENTAGE OF NITROGEN ASSIMILABLE IN DEAD PHYTO':'PERCENTAGE_OF_NITROGEN_ASSIMILABLE_IN_DEAD_PHYTO', - 'RATE OF TRANSFORMATION OF NOR TO NO3':'RATE_OF_TRANSFORMATION_OF_NOR_TO_NO3', - 'COEFFICIENTS OF ALGAL MORTALITY AT 20C':'COEFFICIENTS_OF_ALGAL_MORTALITY_AT_20C', + 'SEDIMENTATION VELOCITY OF ORGANIC PHOSPHORUS':'SEDIMENTATION_VELOCITY_OF_ORGANIC_PHOSPHORUS', + 'SEDIMENTATION VELOCITY OF NON ALGAL NITROGEN':'SEDIMENTATION_VELOCITY_OF_NON_ALGAL_NITROGEN', + 'CONSUMED OXYGEN BY NITRIFICATION':'CONSUMED_OXYGEN_BY_NITRIFICATION', + 'CONSTANT FOR THE NITRIFICATION KINETIC K520':'CONSTANT_FOR_THE_NITRIFICATION_KINETIC_K520', + 'CONSTANT OF DEGRADATION OF ORGANIC LOAD K120':'CONSTANT_OF_DEGRADATION_OF_ORGANIC_LOAD_K120', 'SEDIMENTATION VELOCITY OF ORGANIC LOAD':'SEDIMENTATION_VELOCITY_OF_ORGANIC_LOAD', - 'CONSTANT OF DEGRADATION OF ORGANIC LOAD K1':'CONSTANT_OF_DEGRADATION_OF_ORGANIC_LOAD_K1', - 'CONSTANT OF NITRIFICATION KINETIC K4':'CONSTANT_OF_NITRIFICATION_KINETIC_K4', - 'PHOTOSYNTHESIS P':'PHOTOSYNTHESIS_P', - 'VEGERAL RESPIRATION R':'VEGERAL_RESPIRATION_R', - 'WATER TEMPERATURE':'WATER_TEMPERATURE', - 'WEIR REAERATION COEFFICIENT RS':'WEIR_REAERATION_COEFFICIENT_RS', + 'OXYGEN PRODUCED BY PHOTOSYNTHESIS':'OXYGEN_PRODUCED_BY_PHOTOSYNTHESIS', 'FORMULA FOR COMPUTING RS':'FORMULA_FOR_COMPUTING_RS', + 'WEIR REAERATION COEFFICIENT RS':'WEIR_REAERATION_COEFFICIENT_RS', 'COEFFICIENTS A AND B FOR RS FORMULA':'COEFFICIENTS_A_AND_B_FOR_RS_FORMULA', - 'EROSION RATE':'EROSION_RATE', 'SEDIMENTATION CRITICAL STRESS':'SEDIMENTATION_CRITICAL_STRESS', - 'CRITICAL STRESS OF RESUSPENSION':'CRITICAL_STRESS_OF_RESUSPENSION', 'SEDIMENT SETTLING VELOCITY':'SEDIMENT_SETTLING_VELOCITY', - 'EXPONENETIAL DESINTEGRATION CONSTANT':'EXPONENETIAL_DESINTEGRATION_CONSTANT', - 'COEFFICIENT OF DISTRIBUTION':'COEFFICIENT_OF_DISTRIBUTION', + 'CRITICAL STRESS OF RESUSPENSION':'CRITICAL_STRESS_OF_RESUSPENSION', + 'EROSION RATE':'EROSION_RATE', 'CONSTANT OF DESORPTION KINETIC':'CONSTANT_OF_DESORPTION_KINETIC', + 'COEFFICIENT OF DISTRIBUTION':'COEFFICIENT_OF_DISTRIBUTION', + 'EXPONENTIAL DESINTEGRATION CONSTANT':'EXPONENTIAL_DESINTEGRATION_CONSTANT', 'WATER SPECIFIC HEAT':'WATER_SPECIFIC_HEAT', - 'AIR SPECIFIC HEAT':'AIR_SPECIFIC_HEAT', - 'COEFFICIENTS OF AERATION FORMULA':'COEFFICIENTS_OF_AERATION_FORMULA', - 'COEFFICIENT OF CLOUDING RATE':'COEFFICIENT_OF_CLOUDING_RATE', 'COEFFICIENTS FOR CALIBRATING ATMOSPHERIC RADIATION':'COEFFICIENTS_FOR_CALIBRATING_ATMOSPHERIC_RADIATION', + 'COEFFICIENT OF CLOUDING RATE':'COEFFICIENT_OF_CLOUDING_RATE', 'COEFFICIENTS FOR CALIBRATING SURFACE WATER RADIATION':'COEFFICIENTS_FOR_CALIBRATING_SURFACE_WATER_RADIATION', - 'SUNSHINE FLUX DENSITY ON WATER SURFACE':'SUNSHINE_FLUX_DENSITY_ON_WATER_SURFACE', + 'AIR SPECIFIC HEAT':'AIR_SPECIFIC_HEAT', + 'COEFFICIENTS OF AERATION FORMULA':'COEFFICIENTS_OF_AERATION_FORMULA', 'ATMOSPHERE-WATER EXCHANGE MODEL':'ATMOSPHERE_WATER_EXCHANGE_MODEL', - 'LIGHTNESS OF THE SKY':'LIGHTNESS_OF_THE_SKY', 'COEFFICIENT TO CALIBRATE THE ATMOSPHERE-WATER EXCHANGE MODEL':'COEFFICIENT_TO_CALIBRATE_THE_ATMOSPHERE_WATER_EXCHANGE_MODEL', - 'EVAPORATION RATE':'EVAPORATION_RATE', - 'METHOD OF COMPUTATION OF RAY EXCTINCTION COEFFICIENT':'METHOD_OF_COMPUTATION_OF_RAY_EXCTINCTION_COEFFICIENT', 'FORMULA OF ATMOSPHERIC RADIATION':'FORMULA_OF_ATMOSPHERIC_RADIATION', + 'LIGHTNESS OF THE SKY':'LIGHTNESS_OF_THE_SKY', + 'SOLAR RADIATION READ IN METEO FILE':'SOLAR_RADIATION_READ_IN_METEO_FILE', 'LAW OF TRACERS DEGRADATION':'LAW_OF_TRACERS_DEGRADATION', 'COEFFICIENT 1 FOR LAW OF TRACERS DEGRADATION':'COEFFICIENT_1_FOR_LAW_OF_TRACERS_DEGRADATION', - 'AED2 STEERING FILE':'AED2_STEERING_FILE', - 'AED2 PHYTOPLANKTON STEERING FILE':'AED2_PHYTOPLANKTON_STEERING_FILE', - 'AED2 ZOOPLANKTON STEERING FILE':'AED2_ZOOPLANKTON_STEERING_FILE', - 'AED2 PATHOGEN STEERING FILE':'AED2_PATHOGEN_STEERING_FILE', - 'AED2 BIVALVE STEERING FILE':'AED2_BIVALVE_STEERING_FILE', - 'LIST OF FILES':'LIST_OF_FILES', - 'DESCRIPTION OF LIBRARIES':'DESCRIPTION_OF_LIBRARIES', - 'DEFAULT EXECUTABLE':'DEFAULT_EXECUTABLE', - 'DEFAULT PARALLEL EXECUTABLE':'DEFAULT_PARALLEL_EXECUTABLE', + 'STEERING FILE':'STEERING_FILE', + 'DICTIONARY':'DICTIONARY', } DicoEnumCasFrToEnumCasEn = { -'VARIABLES_FOR_WAQ_PRINTOUTS':{ - "editer !!!":"to edit !!!", -}, - -'RESULTS_FILE_FORMAT':{ +'GEOMETRY_FILE_FORMAT':{ "SERAFIN":"SERAFIN", "SERAFIND":"SERAFIND", "MED":"MED", }, -'GEOMETRY_FILE_FORMAT':{ +'HYDRODYNAMIC_FILE_FORMAT':{ "SERAFIN":"SERAFIN", "SERAFIND":"SERAFIND", "MED":"MED", }, -'HYDRODYNAMIC_FILE_FORMAT':{ +'REFERENCE_FILE_FORMAT':{ "SERAFIN":"SERAFIN", "SERAFIND":"SERAFIND", "MED":"MED", }, -'REFERENCE_FILE_FORMAT':{ +'RESULTS_FILE_FORMAT':{ "SERAFIN":"SERAFIN", "SERAFIND":"SERAFIND", "MED":"MED", }, +'VARIABLES_FOR_WAQ_PRINTOUTS':{ + "":"", + "editer !!!":"to edit !!!", +}, + } diff --git a/Telemac/waqtel_labelCataToIhm_en.qm b/Telemac/waqtel_labelCataToIhm_en.qm index 9c15cb95f5a2b51c57bf8682193398105a331cda..3b187fc6a3851f682e0f46fa0bba41beed38fbc0 100644 GIT binary patch delta 1859 zcmZuw3rrJt82_%lw%5`JrG;8RT4={ZUJ7&S+>nDFP*!?a$^?TeAO%SjwBUxDv116B zWh1aZ2DkW{qEX3=*qQ0FIdS6VbMv`PgSusIPBb%4rz~#nyDkAu*30$szyI(5eZR+d z-&J3#?AH5R03>k$kvD-Z_kr-EJ6ZwMKY=+^jeE6FxU&%;^b|PO3fCB24K`sp6qtq7g4^>9stEk>hFdUfbcycN{V=cLX>o5AwWu@sG$8>fY`$# zUpM0Y$$yEO9fJVT>qP!MY%Dd2+B@0+OeaL0Ys~;522pQ&F1}wc>bu|t&=-rf^2Y#4 zE^)-51VH??_~lU!39#atzApi^+2Xff{R|0S5cj^>1)xk9e_wkGfEl1eE{*|AxkalY z4g%=T(NT-6;0NpHw5<=Bn(OJj9ydPk()NcsB#=or9NUTqX3*Oo;(>%~^w4t^sHl~` zs@;Z#zmg~ho#@meN#R;l7)2yKov19rCfQW68bD;1oDO>hK$9)Gng1q0Ot)0Ns~133 zE#2`U5{=s^{r!>Nj|CHDl7Y2oe6OsdAC+j&$Tr`|Lg1(@aKeLyRkD%f-2m2T*|l@4 z(DH!n$J1CibWHXr3kh0wFibc`r|o76>;3?UzsxLq)P&~_Gh1W5hDYMLwlMhY{t- zXa4gWz%#eyOTIyclQzm%e1Ws036Zyv=_nvcKJXapiQbp*9XXHDv?|j3<^W8ds+g}t zfe9+b9tw#hu2DRQ7aWKQY4P7bhZ*k=>GIvhjXy*BK3a|n%9Ql=7qEa#nWfH01y&_{ zwg8pZDf8~=@u^k1JOqh2l=JpqKxIEG=SMf=3_MnjC5B_+Z&jMo1{82fHGBOq^17pH zOF>5yi&Pz>C}0w&>dZ;Oq2H(SZ)wGXVKJ(KS?vI_ld8-2FiZJLH8pk>nUAQALl{Zy z8){4QHk@w1x_Yh`BfF>G8;uH+`_)H`r}12}`ueaHXJwTplYD}X9MI&iL&uD7X(|t3 zW9CIoXXq9jIypX3d04-u(~yblhO~P8CWgdl9s?|Rp$0M-T!0jBn&oU6GGQyb##>vp zd~q`s_&~f>9M~oMSQ0p@xH(`N;yhx3$C z0URtxpbr|yp%Sjt?ILWNj;xNzH^faKz>Gy3kdGOvNwzFpp%sw4hjrS>hJ?uUN&gFN ze1g7m{D6ngAO|8mnmjzy0!yJ03wxn~BpF!7!j%>CPR>c13~7N=hTBw#74n5$ynSSo z#Uc&M=bW629J83nr^XGFmAJhaOH?Dj#p61p`3^pZb&#H9eR=_`K;Ebl|5sq4Dp&&b zun?NY(W-)Sn~S%VJJ}+8E}3T5k$I8(&>uUZmkJ(@BPDicaVZ%x=`5ka-DZJSu;xT> z#_n`;E+^{TZJI+Cn5I&hq|0OyPUVF{QBa5=O>prE3aG=y7xRv%$3>Vc8u%wd z5n&V==5^6Zd@Ibt(`u!Bsrx^99b-1R*q2+b8KpEJQSm?J|P0U zym*_jl)!5tuA1;_#MOl1x?#lQ7H0 zK%{k46qu3lJU!b6C4$IcBXh7>4ayfry&m5;U`ro1s|wDjV51px_TsJ=8p#=%E+(#o zcd#yxi?!KVx1D!-TpVlj*qxpt&du?pk~RdEC1+D+HMlV>A=luXOoZVs;9SChY)ToX Xnu#|xjdGLT)I;QWnj-LS+HujpqprSC delta 2203 zcmah|drVVz6h61_mOg-%M**cg2U75X8l4+>X>ZGAm$tMZXq@F?0XM8bF%vge9RiCn zPIFOaqEUz7CdnMs>5N7+fQwr~GMSIf_}b=lYT`CA%3^S*SF8{h_s7k>H^1}y&i8%i zJ3p6REZ?f}t_NMP5MQ{e<12xw*dsD5QAg=SU;CXi1q_S-r}VWQ~;!B^KzSK10)3T>bK%O{e4~o z(*rQ&5YKDE`(9B6ueqfOAWp+;-L6BReqLL%0YG$}*M8mw5O$e&g1rS0F~ARzJ_VQ- z$q(-lA`v-%(On84s*m5cehYy7GXGNLJpjplLC}R!fV3L|Mfgd)zf2Haod}RTPhf0! zV4q%rXP`O^TcSjOBQYHF)U%wY1Q7if_ydSOHBf9@Y0}x&+7Itq(i{BMzRVHAgesRlw zRH{xF@4cOcK<#4R_fE9BOME5mOMs+y@%7;k(UC{u8$;MQ^mp;&YeN9iQ{pFCC@3jG zl2`Qr;I&~%N1O}KJ0-mj!%!G4Io0FMM1~`h+udkcNW0|GZnQ?9BpJOrA3$rB@+GAJ zvQ5%?V}Bq(wY0G>9tn*}o7g!>5TxBtn^1YJwD-!7D4;|-6uTUWu9Z!1&jy%kmMxK^ zkQAZpD*~0LT4aZdkzk}*_9z(zC+rMb<9#@cvs)gtvHou?I3X9@d;46e6134UjQEVOU=|oSs9IPJ4G7r4 zLA&v*26XuChDtoI=bDY51;DfhYrd_hkSwIF7Lsw&7L(PU&-Q5|e4&baf`niWdNtG{ zlpm-na8Y8g7TFluVrK7!Y);XDk!xIr4J)y-23!+V$&6$n=`_&{#l|J8*?pmNvJ>%w z3row8a}6@q;olm3D#kUG`ym3&LXDJ(EMf|sR0(B3wmB>z)GV3%5=JfJ)pNT21pMk> zg&O@F)kfM$hM|~A@a%=qEc*lyfcp=MyzY8YzdtPTTy( zI;|!rL+98@JIy)Z)2OWk`-#TPR)yt<7u5VWc#XDzRBDl!apD;Tc*P zm|k*K7%+5Cc!sY!ypLelM($=eX}>lk1C2n>@{o?e{#-o!)Bopy)U*Xd;ItMM`d@)b zy<>bOP8BD-7OIh21;$v1&bwjxxGf&etcj6{pWMZ4CvCa3!Qmt=MkjkRMvFmy7482C z@?`KAK~4_kP@mf{d6%R#4hJRUDs74CB4$PbgJS&DpHKMZG%Fa|fnJ#cHnA6DP7>AZ zjw#th1xv-uBxbXssj-BC^~NM4Vm^mh!3DC0v&hAbGVi?jwS&RHDg7dau z<;qEk5?aXoXA9IZwMAtFE2gFqs>UJw)QB)pm=d6g|DuR9pb?F-Ni_ZtgF&ZGg#{24->YO>qIbFP^5x#|d7q#6 zzFafjyv-8Y1!yvWv~$2c{Xpt4__`pJi|^eC#MohrF$3C}s5;mV#986qG7P9}@RSS! zNfNdWo}l6{aB=IyK*~wZzo-Y`99*z(I}o*=`>U-MNSveMv`YN}RnGejK;eX{vS%I; zvO^WzMh6O?Q+2tI0y76yp>k@h9Z~i4ZUWNBRed{cfH6ze-%|$Yma7Iv0)X{^I#z!Z za15&xj%tX&3iZ-4i3m)n8wXAj(JksH*1kmzJJtPT|1q2J|oRQKQ#@f;!%m za2z36)A`h9J8;_rymNqo{Oaf9IHD}PYQBUbm5Qu6xDUz z*LjD5>{Gh$K7WkjYtfxQLk;3Y-HlQrnq4jkR*EogRH$mY1mq?O9XC3O*ePLOdH{(1 zR2ck$_SRp7V-q1O73>k-Jz7l6t_UA?Y$Ao5g^NREQOpOzm1oI`g0OJyn*~6!MXwg_ z2MlNRxy$1zs!IL*zkdW~hxHGBLP}Fg^^d$mvlLUS-^5BtNREE!CgG_~`eR?8rHEn; zg#&j1vq}y1MiQD^We9{0QiB|~;Rr{J@+J&dvQLsDZBgqcKBvq_qaH1xS(vjvYHRQh z%DO3P;N@Ye~)zt(&#?JN!T0`vRH zXJ}~0%om33)aO!kF?*E=YoaT5k%OssEQ-GWb!x0%5ZxEE7qHw%Z*n01YII*>G3}4H zko;HFWTpTS0W_jWpbfP2@S@}_VjX!F=G7F0e^qPvaHC++as}*7a|&xWXqc299Ud|N z&a>SL_6B(4$$2>1>+QbB0I0Muu)4fJ7+BohZ1Bi#Q+K2=t2y@woGd*zB|qVR4z^EIWt=Sc%SB9`)W8zs zY^*nFHan7J5i+G^HL^$Yu#b}p*tTRxxGwoL$7QpcqQu-LqM?Wj5`k{4n`9kVA$cUP z==Rr$Ua?y8NnUos63+%_C$T-LDa@DpWRVdSXeI8e=xFQYL2ZRwUM#wGiu;Qi1FKhd zw{~$#7HOztms2yNOqF#`uk5Vzh}CRvww3)+5XUa1zAYO`V_U>KvU(CujjsGxOzl)xNPPjj;)GHy4ywrpt!w`z+0%eA@WvIRlWphZ6yWD+D$pM zM9i21Omn*`Dt&%wna|}ZW6#gbu$kees?J+zO_Qy4ZdWZ8RfKbF>p6QdnN}$~{c^d# zOs*ykqR%CJl&x2+n+8`NgKC0nP-X@X(KBVGQ0*%7$~E%;n8`z)7Qc!@pPzALh7q*{ z5R5RJQlOQW_^3Y{%~+vJmzUL1vTR{yzRQ7{NYe&VOtVL8H|;ygiHFD!WguGV4n&@* z$&XhC!tIu5GQ4t`R9h?mI~gsRyLF9(*pBY7U@zu4nJvs34VP!nQiq3f>Q!7lbLW?^ z?;KhtI%cs$`Sx(H;|`U28N95c@V2Fj`$`@wDHnx<(%FX95o?-nrDCIel)ol0?f1&4 zmEEG3Om({cb=WJ3PQT0JSB6$*a|;v0?-sOj_Bi;^Oecepj60~?ltVgSrQ{{ES<0M0 PIUlpmeJ`vn@~Qs;@M+`W delta 2382 zcma)6du$VR9RFT>ZLeM1jje2yZSK|0v2`!D84#Qt-EHf|r2r zbP8j}C;^U_;sa$Mx`a4t@DUY3_XisUj9vWz`>hH_JxnxnyJFUd%Zc(oS5yoZ5v9*n zbZ^9a`Hv}j#ZjU_(ug8Z1^`W>VsQOhqO?rK(AH!k{Z7S}K^vYAE4F{;CyGl{yd(WU zWcDhjX|ECGtX9U3szAI~x#%Z>D4}1uWncr5;i&TS=AVhQ=h=vpmx=P`vxeCBh+=oJ z@vRo3%%9oP?H=%)V9PdnDL|H`tbH}>V+lih!g{=gRRfveY0vj`az=TnW}T; z14JpKYVE5?+IT_T(bq$il%?LaEj@rpURLjW@dKiae)YGpIJ3p-^H)r8d{Cnr*-FSr zQ_`FUqK`G}hvC#ztJ!t7geY=Iv$r0Ovvz8N$9#zVNzGT;`{A%$bNcuilxS4*%{T;@ zqBN7I#)))qYp#^+Cc1l!t8Dq5C|kkpP6_ylVvcbKE>6dTC%E@V3!(H1cXkBPMIYua zJ?BM)+qlbL&n1diX_eeE)VNYR=jx9jF4C?(l!~5+)vlF_A(XTu*VZC|Z?y-$Izgm7 zs~t~jf`EOxyzTcBB@4QGJq%?R>HMz%H|rzaYXJsPSYOe-UJIq>Q@TqTNFe=}h*cMl zqn2Vse=$l@ury*__XX5EUeA6vAHePU5@R`p`}O=p1swJ2%YH>-cdPYopF}k4DShpm zpCQ2}{lq%pCFJQZXTo4c&=6VE0V696^PU|;i7E_%$Cg6*vE^jcL7mFb$iHjn#hi zLYnbF0`}!67(X;4dals;-58oL_he+D^ag}eWcd!@Cmfj_x$G?vYafjqih2oSH-R%0 zPw$KziYr9d7Dw*QN2D_@v>}G4mB_e4VsfoPJX_-Uk_ znda=+|F4skR!-TaTWEJy@g9$_wmPWbGSu06vH_}{mQx?Khr!G?XO*kQ%X{rk2QT{U zjxwjaN-Btni=RmXb~cB;hae5a`?JDHGp?u9HjEl$ zcc8C)&Kj?L3KumX-T`JyD4DKM$E-wYWv*oW_x_h$Pe?%rwS?JHZ)PiZ^R5cJ&Ew-8 zrO40YMK5YFI^2TgP5$PFzV=>59=ADnq(yFdxo_nbX#?}rTA6R=y)iy>EVsp;I;~ne zN{yT_td$9`GV?4Xf=l)(H+z%Jd5f$KvPHR7!j&AktCdMFsuH{v&Qf_{%9P8uZoUp( zYeOtHXIS(SsY`gdAKlb@H? zq=;Oqb8%g{+;yL(f2>qKx@^ztj9aDAVWw#&-yho}ohzVLU>lMrrDUek!C0R3q ze`npRkUp`p!HJw!M(WBt%ebYw{3D5aszq5>hGM?)O;p$N)m}lATozL>vB0hT2W$&3 AlmGw# -- 2.39.2