From f05fa6c6dfb78d56738c8d4b1c608cc6c63eee93 Mon Sep 17 00:00:00 2001 From: Gerald NICOLAS Date: Wed, 21 Dec 2016 09:03:03 +0100 Subject: [PATCH] Option de production des voisinages en non-conforme --- doc/en/tui_create_hypothese.rst | 4 +++- doc/fr/tui_create_hypothese.rst | 3 ++- src/HOMARD/HomardDriver.cxx | 5 +++++ 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/doc/en/tui_create_hypothese.rst b/doc/en/tui_create_hypothese.rst index 2d90df06..58edf273 100644 --- a/doc/en/tui_create_hypothese.rst +++ b/doc/en/tui_create_hypothese.rst @@ -414,7 +414,8 @@ Advanced options | | | **SetExtraOutput(option)** | | Acts if some extra information are required into the | -| output MED file. The option is a product of 2, 3, 5, 7. | +| output MED file. The option is a product of | +| 2, 3, 5, 7, 11. | | | | - ``option``: integer as follows: | | | @@ -423,6 +424,7 @@ Advanced options | * 3x : the quality of every mesh | | * 5x : the diameter of every mesh | | * 7x : common parent of every mesh | +| * 11x : neighbours of glued cells | +---------------------------------------------------------------+ | .. module:: GetExtraOutput | | | diff --git a/doc/fr/tui_create_hypothese.rst b/doc/fr/tui_create_hypothese.rst index d8be91de..d048cbba 100644 --- a/doc/fr/tui_create_hypothese.rst +++ b/doc/fr/tui_create_hypothese.rst @@ -418,7 +418,7 @@ Les options avancées | **SetExtraOutput(option)** | | Précise quelles sorties supplémentaires sur les mailles on| | veut récupérer dans le fichier MED de sortie. C'est un | -| entier multiple ou non de 2, 3, 5, 7. | +| entier multiple ou non de 2, 3, 5, 7, 11. | | | | - ``option`` : entier précisant le choix retenu | | | @@ -427,6 +427,7 @@ Les options avancées | * 3x : la qualité de chaque maille | | * 5x : le diamètre de chaque maille | | * 7x : les fratries des mailles | +| * 11x : les voisins des mailles recollées | +---------------------------------------------------------------+ | .. module:: GetExtraOutput | | | diff --git a/src/HOMARD/HomardDriver.cxx b/src/HOMARD/HomardDriver.cxx index 6867372c..cb000bb8 100644 --- a/src/HOMARD/HomardDriver.cxx +++ b/src/HOMARD/HomardDriver.cxx @@ -1004,6 +1004,11 @@ void HomardDriver::TexteAdvanced( int Pyram, int NivMax, double DiamMin, int Ada _Texte += "# Sortie des parents des mailles\n" ; _Texte += "NCParent PARENT\n" ; } + if ( ExtraOutput % 11 == 0 ) + { + _Texte += "# Volumes voisins par recollement\n" ; + _Texte += "NCVoisRc Voisin-Recollement\n" ; + } } //=============================================================================== // G. Les messages -- 2.39.2