From f6f5fc5a139003866577563125e8acbc6ec3f42c Mon Sep 17 00:00:00 2001 From: nicolas Date: Wed, 25 Sep 2013 08:43:44 +0000 Subject: [PATCH] =?utf8?q?Suppression=20de=20composantes=20dans=20les=20hy?= =?utf8?q?poth=C3=83=C2=A8ses.=20Informations=20sur=20les=20hypoth=C3=83?= =?utf8?q?=C2=A8ses.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- doc/en/tui_create_hypothese.rst | 37 ++++++++++++++++++++++-- doc/files/yacs_script.py | 23 +++++++++------ doc/fr/tui_create_hypothese.rst | 37 ++++++++++++++++++++++-- idl/HOMARD_Hypothesis.idl | 10 ++++--- src/HOMARD/HOMARD_DriverTools.cxx | 2 +- src/HOMARD/HOMARD_Hypothesis.cxx | 29 +++++++++++++------ src/HOMARD/HOMARD_Hypothesis.hxx | 9 +++--- src/HOMARDGUI/MonEditHypothesis.cxx | 2 +- src/HOMARD_I/HOMARD_Gen_i.cxx | 4 +-- src/HOMARD_I/HOMARD_Hypothesis_i.cxx | 24 ++++++++++++---- src/HOMARD_I/HOMARD_Hypothesis_i.hxx | 8 ++++-- tests/test_1.py | 42 ++++++++++++++++++---------- tests/test_2.py | 26 +++++++++++++---- tests/test_3.py | 5 +++- 14 files changed, 195 insertions(+), 63 deletions(-) diff --git a/doc/en/tui_create_hypothese.rst b/doc/en/tui_create_hypothese.rst index eb67f2f2..2683b6f6 100644 --- a/doc/en/tui_create_hypothese.rst +++ b/doc/en/tui_create_hypothese.rst @@ -195,11 +195,23 @@ The components of the field | * 1: infinite norm | | * 2: relative value, if only one component | +---------------------------------------------------------------+ -| .. module:: GetListComp | +| .. module:: GetComps | | | -| **GetListComp()** | +| **GetComps()** | | Returns the list of the used components | +---------------------------------------------------------------+ +| .. module:: SupprComp | +| | +| **SupprComp(comp_name)** | +| Eliminates a component of the field | +| | +| - ``comp_name``: name of a component to eliminate | ++---------------------------------------------------------------+ +| .. module:: SupprComps | +| | +| **SupprComps()** | +| Eliminates all the components of the field | ++---------------------------------------------------------------+ The zones @@ -217,6 +229,27 @@ The zones | * 1: refinement | | * -1: unrefinement | +---------------------------------------------------------------+ +| .. module:: GetZones | +| | +| **GetZones()** | +| Returns the list of the used zones with their uses | +| Warning: the use is stored as a string in the list and | +| not as an integer. | +| | +| Example: ['Zone_A', '1', 'Zone_B', '1', 'Zone_C', '1'] | ++---------------------------------------------------------------+ +| .. module:: SupprZone | +| | +| **SupprZone(zone_name)** | +| Eliminates a zone from the hypothesis | +| | +| - ``zone_name``: name of a zone to eliminate | ++---------------------------------------------------------------+ +| .. module:: SupprZones | +| | +| **SupprZones()** | +| Eliminates all the zones from the hypothesis | ++---------------------------------------------------------------+ The filtering by the groups diff --git a/doc/files/yacs_script.py b/doc/files/yacs_script.py index fc742e32..7a869d16 100755 --- a/doc/files/yacs_script.py +++ b/doc/files/yacs_script.py @@ -3,7 +3,7 @@ """ Lancement d'un calcul ASTER """ -__revision__ = "V5.4" +__revision__ = "V5.5" # import sys import os @@ -1177,11 +1177,11 @@ Affichage de resultats selon les cas erreur, message_erreur, info = self.post_aster_1 ( nomfic, chaine, nuocc ) if ( erreur > 0 ) : break - self.message_info += info[:-1] # # 1.2. Details # if ( erreur == 0 ) : + self.message_info += info[:-1] info = info.replace(chaine, " ") laux = info[:-1].split() aux = laux[0] @@ -1190,6 +1190,7 @@ Affichage de resultats selon les cas dico_resu[chaine] = float(aux) else : erreur = 0 + message_erreur = " " # # 2. Exploration du fichier mess # 2.1. Que chercher ? @@ -1206,11 +1207,11 @@ Affichage de resultats selon les cas erreur, message_erreur, info = self.post_aster_1 ( nomfic, chaine, nuocc ) if ( erreur > 0 ) : break - self.message_info += info[:-1] # # 2.3. Details # if ( erreur == 0 ) : + self.message_info += info[:-1] if chaine == "INSTANT" : l_aux = info[:-1].split() lg_aux = len(l_aux) @@ -1228,6 +1229,7 @@ Affichage de resultats selon les cas dico_resu[chaine] = int(l_aux[1]) else : erreur = 0 + message_erreur = " " # if erreur : break @@ -1275,9 +1277,10 @@ info = la ou les lignes recherchees nom_fonction = __name__ + "/post_aster_1" blabla = "\nDans " + nom_fonction + " :" if self.verbose_max : - print blabla, "chaine =", chaine, ", nuocc =", nuocc + print blabla, "nomfic =", nomfic, "chaine =", chaine, ", nuocc =", nuocc # - erreur = -1 + trouve = False + erreur = 0 message_erreur = " " info = "" # @@ -1305,19 +1308,23 @@ info = la ou les lignes recherchees # else : # - self.message_info += "\n" iaux = 0 for ligne in les_lignes : if chaine in ligne : iaux += 1 if ( ( nuocc == 0 ) or ( iaux == nuocc ) ) : info += ligne - erreur = 0 + if ( not trouve ) : + self.message_info += "\n" + trouve = True # break +# + if ( not trouve ) : + erreur = -1 # if ( self.verbose_max or ( erreur>0 ) ) : - print blabla, "chaine =", chaine, ", nuocc =", nuocc + print blabla, "nomfic =", nomfic, "chaine =", chaine, ", nuocc =", nuocc print ". erreur =", erreur # if erreur : diff --git a/doc/fr/tui_create_hypothese.rst b/doc/fr/tui_create_hypothese.rst index 2960ee2b..2778d342 100644 --- a/doc/fr/tui_create_hypothese.rst +++ b/doc/fr/tui_create_hypothese.rst @@ -190,11 +190,23 @@ Les composantes du champ | * 1 : norme infinie | | * 2 : valeur relative, si une seule composante | +---------------------------------------------------------------+ -| .. module:: GetListComp | +| .. module:: GetComps | | | -| **GetListComp()** | +| **GetComps()** | | Retourne la liste des composantes utilisées | +---------------------------------------------------------------+ +| .. module:: SupprComp | +| | +| **SupprComp(comp_name)** | +| Supprime une composante du champ à considérer | +| | +| - ``comp_name`` : nom de la composante à supprimer | ++---------------------------------------------------------------+ +| .. module:: SupprComps | +| | +| **SupprComps()** | +| Supprime toutes les composantes du champ à considérer | ++---------------------------------------------------------------+ Les zones @@ -212,6 +224,27 @@ Les zones | * 1 : raffinement | | * -1 : déraffinement | +---------------------------------------------------------------+ +| .. module:: GetZones | +| | +| **GetZones()** | +| Retourne la liste des zones utilisées avec leur usage. | +| Attention, l'usage est stocké sous forme de chaîne de | +| caractères et non pas d'entier dans la liste. | +| | +| Exemple : ['Zone_A', '1', 'Zone_B', '1', 'Zone_C', '1'] | ++---------------------------------------------------------------+ +| .. module:: SupprZone | +| | +| **SupprZone(zone_name)** | +| Supprime une zone de l'hypothèse | +| | +| - ``zone_name`` : nom de la zone à supprimer | ++---------------------------------------------------------------+ +| .. module:: SupprZones | +| | +| **SupprZones()** | +| Supprime toutes les zones de l'hypothèse | ++---------------------------------------------------------------+ Le filtrage par les groupes diff --git a/idl/HOMARD_Hypothesis.idl b/idl/HOMARD_Hypothesis.idl index 8c42085c..2137fd80 100644 --- a/idl/HOMARD_Hypothesis.idl +++ b/idl/HOMARD_Hypothesis.idl @@ -75,12 +75,13 @@ module HOMARD void SetField(in string FieldName) raises (SALOME::SALOME_Exception); string GetFieldName() raises (SALOME::SALOME_Exception); void SetUseField(in long UsField) raises (SALOME::SALOME_Exception); - InfosHypo GetField() raises (SALOME::SALOME_Exception); + InfosHypo GetField() raises (SALOME::SALOME_Exception); void SetUseComp(in long UsCmpI) raises (SALOME::SALOME_Exception); - void AddComp(in string NomComposant) raises (SALOME::SALOME_Exception); - void SupprComp() raises (SALOME::SALOME_Exception); - listeComposantsHypo GetListComp() raises (SALOME::SALOME_Exception); + void AddComp(in string NomComp) raises (SALOME::SALOME_Exception); + void SupprComp(in string NomComp) raises (SALOME::SALOME_Exception); + void SupprComps() raises (SALOME::SALOME_Exception); + listeComposantsHypo GetComps() raises (SALOME::SALOME_Exception); void SetRefinThr(in long TypeThR, in double ThreshR) raises (SALOME::SALOME_Exception); @@ -122,6 +123,7 @@ module HOMARD void AddZone(in string NomZone, in long TypeUse) raises (SALOME::SALOME_Exception); void AddZone0(in string NomZone, in long TypeUse) raises (SALOME::SALOME_Exception); void SupprZone(in string NomZone) raises (SALOME::SALOME_Exception); + void SupprZones() raises (SALOME::SALOME_Exception); listeZonesHypo GetZones() raises (SALOME::SALOME_Exception); }; diff --git a/src/HOMARD/HOMARD_DriverTools.cxx b/src/HOMARD/HOMARD_DriverTools.cxx index 187970ae..6f1c9a3b 100644 --- a/src/HOMARD/HOMARD_DriverTools.cxx +++ b/src/HOMARD/HOMARD_DriverTools.cxx @@ -220,7 +220,7 @@ namespace HOMARD for ( it = ListString.begin(); it != ListString.end(); ++it ) os << separator() << *it; - ListString = hypothesis.GetListComp(); + ListString = hypothesis.GetComps(); os << separator() << ListString.size(); for ( it = ListString.begin(); it != ListString.end(); ++it ) os << separator() << *it; diff --git a/src/HOMARD/HOMARD_Hypothesis.cxx b/src/HOMARD/HOMARD_Hypothesis.cxx index a3ca10fe..e5640d6f 100644 --- a/src/HOMARD/HOMARD_Hypothesis.cxx +++ b/src/HOMARD/HOMARD_Hypothesis.cxx @@ -99,8 +99,8 @@ std::string HOMARD_Hypothesis::GetDumpPython() const aScript << "\t" << _Name << ".SetField(\"" << _Field << "\")\n"; aScript << "\t" << _Name << ".SetUseField(" << _UsField << ")\n"; aScript << "\t" << _Name << ".SetUseComp(" << _UsCmpI << ")\n"; - std::list::const_iterator it_comp = _ListComposant.begin(); - while(it_comp != _ListComposant.end()) + std::list::const_iterator it_comp = _ListComp.begin(); + while(it_comp != _ListComp.end()) { aScript << "\t" << _Name << ".AddComp(\"" << *it_comp << "\")\n"; it_comp++; @@ -216,20 +216,31 @@ int HOMARD_Hypothesis::GetUseComp() const return _UsCmpI; } //============================================================================= -void HOMARD_Hypothesis::AddComp( const char* NomComposant ) +void HOMARD_Hypothesis::AddComp( const char* NomComp ) { - _ListComposant.push_back( std::string( NomComposant ) ); +// On commence par la supprimer au cas ou elle aurait deja ete inseree +// Cela peut se produire dans un schema YACS quand on repasse plusieurs fois par la +// definition de l'hypothese + SupprComp( NomComp ) ; +// Insertion veritable + _ListComp.push_back( std::string( NomComp ) ); +} +//============================================================================= +void HOMARD_Hypothesis::SupprComp( const char* NomComp ) +{ + MESSAGE ("SupprComp pour "<::iterator it = find( _ListComp.begin(), _ListComp.end(), NomComp ); + if ( it != _ListComp.end() ) { it = _ListComp.erase( it ); } } //============================================================================= -void HOMARD_Hypothesis::SupprComp() +void HOMARD_Hypothesis::SupprComps() { - MESSAGE ("SupprComp") ; - _ListComposant.clear(); + _ListComp.clear(); } //============================================================================= -const std::list& HOMARD_Hypothesis::GetListComp() const +const std::list& HOMARD_Hypothesis::GetComps() const { - return _ListComposant; + return _ListComp; } //============================================================================= void HOMARD_Hypothesis::SetRefinThr( int TypeThR, double ThreshR ) diff --git a/src/HOMARD/HOMARD_Hypothesis.hxx b/src/HOMARD/HOMARD_Hypothesis.hxx index 995ac770..439d43e9 100644 --- a/src/HOMARD/HOMARD_Hypothesis.hxx +++ b/src/HOMARD/HOMARD_Hypothesis.hxx @@ -63,9 +63,10 @@ public: void SetUseComp( int UsCmpI ); int GetUseComp() const; - void AddComp( const char* NomComposant ); - void SupprComp(); - const std::list& GetListComp() const; + void AddComp( const char* NomComp ); + void SupprComp( const char* NomComp ); + void SupprComps(); + const std::list& GetComps() const; void SetRefinThr( int TypeThR, double ThreshR ); int GetRefinThrType() const; @@ -138,7 +139,7 @@ private: std::list _ListIter; std::list _ListZone; - std::list _ListComposant; + std::list _ListComp; std::list _ListGroupSelected; std::list _ListFieldInterp; }; diff --git a/src/HOMARDGUI/MonEditHypothesis.cxx b/src/HOMARDGUI/MonEditHypothesis.cxx index c3a27b7d..c1452e51 100644 --- a/src/HOMARDGUI/MonEditHypothesis.cxx +++ b/src/HOMARDGUI/MonEditHypothesis.cxx @@ -260,7 +260,7 @@ void MonEditHypothesis::InitAdaptChamps() CBFieldName->setEnabled(false); //SetFieldName(Qt::Unchecked); - HOMARD::listeComposantsHypo_var mesComposantsAvant = aHypothesis->GetListComp(); + HOMARD::listeComposantsHypo_var mesComposantsAvant = aHypothesis->GetComps(); TWCMP->clear(); TWCMP->setRowCount(0); TWCMP->resizeRowsToContents(); diff --git a/src/HOMARD_I/HOMARD_Gen_i.cxx b/src/HOMARD_I/HOMARD_Gen_i.cxx index f075f85b..21aeee18 100755 --- a/src/HOMARD_I/HOMARD_Gen_i.cxx +++ b/src/HOMARD_I/HOMARD_Gen_i.cxx @@ -2839,7 +2839,7 @@ void HOMARD_Gen_i::DriverTexteField(HOMARD::HOMARD_Iteration_var myIteration, HO myDriver->TexteField(FieldName, FieldFile, TimeStep, Rank, TypeThR, ThreshR, TypeThC, ThreshC, UsField, UsCmpI); // // Les composantes - HOMARD::listeComposantsHypo* mescompo = myHypo->GetListComp(); + HOMARD::listeComposantsHypo* mescompo = myHypo->GetComps(); int numberOfCompos = mescompo->length(); MESSAGE( ". numberOfCompos = " << numberOfCompos ); for (int NumeComp = 0; NumeComp< numberOfCompos; NumeComp++) @@ -4620,7 +4620,7 @@ std::string HOMARD_Gen_i::GetStringInTexte( const std::string ligne, const std:: // //=============================================================================== void HOMARD_Gen_i::SetLanguageShort(const char* LanguageShort) { - MESSAGE ("SetLanguageShort pour LanguageShort = " << LanguageShort ); +// MESSAGE ("SetLanguageShort pour LanguageShort = " << LanguageShort ); _LangueShort = LanguageShort ; if ( _LangueShort == "fr" ) { _Langue = "Francais" ; } else { _Langue = "English" ; } diff --git a/src/HOMARD_I/HOMARD_Hypothesis_i.cxx b/src/HOMARD_I/HOMARD_Hypothesis_i.cxx index d90d4215..b22af469 100644 --- a/src/HOMARD_I/HOMARD_Hypothesis_i.cxx +++ b/src/HOMARD_I/HOMARD_Hypothesis_i.cxx @@ -183,22 +183,28 @@ void HOMARD_Hypothesis_i::SetUseComp( CORBA::Long UsCmpI ) myHomardHypothesis->SetUseComp( UsCmpI ); } //============================================================================= -void HOMARD_Hypothesis_i::AddComp( const char* NomComposant ) +void HOMARD_Hypothesis_i::AddComp( const char* NomComp ) { ASSERT( myHomardHypothesis ); - myHomardHypothesis->AddComp( NomComposant ); + myHomardHypothesis->AddComp( NomComp ); } //============================================================================= -void HOMARD_Hypothesis_i::SupprComp() +void HOMARD_Hypothesis_i::SupprComp( const char* NomComp ) { ASSERT( myHomardHypothesis ); - myHomardHypothesis->SupprComp(); + myHomardHypothesis->SupprComp(NomComp); } //============================================================================= -HOMARD::listeComposantsHypo* HOMARD_Hypothesis_i::GetListComp() +void HOMARD_Hypothesis_i::SupprComps() { ASSERT( myHomardHypothesis ); - const std::list& ListString = myHomardHypothesis->GetListComp(); + myHomardHypothesis->SupprComps(); +} +//============================================================================= +HOMARD::listeComposantsHypo* HOMARD_Hypothesis_i::GetComps() +{ + ASSERT( myHomardHypothesis ); + const std::list& ListString = myHomardHypothesis->GetComps(); HOMARD::listeComposantsHypo_var aResult = new HOMARD::listeComposantsHypo; aResult->length( ListString.size() ); std::list::const_iterator it; @@ -415,6 +421,12 @@ void HOMARD_Hypothesis_i::SupprZone(const char * NomZone) myHomardHypothesis->SupprZone( NomZone); } //============================================================================= +void HOMARD_Hypothesis_i::SupprZones() +{ + ASSERT(myHomardHypothesis); + myHomardHypothesis->SupprZones(); +} +//============================================================================= HOMARD::listeZonesHypo* HOMARD_Hypothesis_i::GetZones() { ASSERT(myHomardHypothesis); diff --git a/src/HOMARD_I/HOMARD_Hypothesis_i.hxx b/src/HOMARD_I/HOMARD_Hypothesis_i.hxx index 6a55310e..5bc2fad3 100644 --- a/src/HOMARD_I/HOMARD_Hypothesis_i.hxx +++ b/src/HOMARD_I/HOMARD_Hypothesis_i.hxx @@ -76,9 +76,10 @@ public: HOMARD::InfosHypo* GetField(); void SetUseComp(CORBA::Long UsCmpI); - void AddComp( const char* NomComposant ); - void SupprComp(); - HOMARD::listeComposantsHypo* GetListComp(); + void AddComp( const char* NomComp ); + void SupprComp( const char* NomComp ); + void SupprComps(); + HOMARD::listeComposantsHypo* GetComps(); void SetRefinThr(CORBA::Long TypeThR, CORBA::Double ThreshR); CORBA::Long GetRefinThrType(); @@ -118,6 +119,7 @@ public: void AddZone( const char* NomZone, CORBA::Long TypeUse ); void AddZone0( const char* NomZone, CORBA::Long TypeUse ); void SupprZone( const char* NomZone ); + void SupprZones(); HOMARD::listeZonesHypo* GetZones(); private: diff --git a/tests/test_1.py b/tests/test_1.py index c48aeb70..2cbc34de 100644 --- a/tests/test_1.py +++ b/tests/test_1.py @@ -22,7 +22,7 @@ Python script for HOMARD Copyright EDF-R&D 2010, 2013 Test test_1 """ -__revision__ = "V1.11" +__revision__ = "V1.12" #======================================================================== Test_Name = "test_1" @@ -86,20 +86,34 @@ Copyright EDF-R&D 2010, 2013 # Creation of the hypotheses # ========================== # Creation of the hypothesis a10_1pc_de_mailles_a_raffiner_sur_ERRE_ELEM_SIGM - a10_1pc_de_mailles_a_raffiner_sur_ERRE_ELEM_SIGM = homard.CreateHypothesis('a10_1pc_de_mailles_a_raffiner_sur_ERRE_ELEM_SIGM') - a10_1pc_de_mailles_a_raffiner_sur_ERRE_ELEM_SIGM.SetAdapRefinUnRef(1, 1, 0) - a10_1pc_de_mailles_a_raffiner_sur_ERRE_ELEM_SIGM.SetField('RESU____ERRE_ELEM_SIGM__________') - a10_1pc_de_mailles_a_raffiner_sur_ERRE_ELEM_SIGM.SetUseComp(0) - a10_1pc_de_mailles_a_raffiner_sur_ERRE_ELEM_SIGM.AddComp('ERREST') - a10_1pc_de_mailles_a_raffiner_sur_ERRE_ELEM_SIGM.SetRefinThr(3, 10.1) - a10_1pc_de_mailles_a_raffiner_sur_ERRE_ELEM_SIGM.SetTypeFieldInterp(2) - a10_1pc_de_mailles_a_raffiner_sur_ERRE_ELEM_SIGM.AddFieldInterp('RESU____DEPL____________________') - a10_1pc_de_mailles_a_raffiner_sur_ERRE_ELEM_SIGM.AddFieldInterp('RESU____ERRE_ELEM_SIGM__________') + HypoName_1 = "a10_1pc_de_mailles_a_raffiner_sur_ERRE_ELEM_SIGM" + print "-------- Creation of the hypothesis", HypoName_1 + Hypo_1_1 = homard.CreateHypothesis(HypoName_1) + Hypo_1_1.SetAdapRefinUnRef(1, 1, 0) + Hypo_1_1.SetField('RESU____ERRE_ELEM_SIGM__________') + Hypo_1_1.SetUseComp(0) + Hypo_1_1.AddComp('ERREST') + Hypo_1_1.SetRefinThr(3, 10.1) + Hypo_1_1.SetTypeFieldInterp(2) + Hypo_1_1.AddFieldInterp('RESU____DEPL____________________') + Hypo_1_1.AddFieldInterp('RESU____ERRE_ELEM_SIGM__________') + print HypoName_1, " : zones utilisées :", Hypo_1_1.GetZones() + print HypoName_1, " : champ utilisé :", Hypo_1_1.GetFieldName() + print HypoName_1, " : composantes utilisées :", Hypo_1_1.GetComps() + if ( len (Hypo_1_1.GetFieldName()) > 0 ) : + print ".. caractéristiques de l'adaptation :", Hypo_1_1.GetField() # Creation of the hypothesis Zones_1_et_2 - Zones_1_et_2 = homard.CreateHypothesis('Zones_1_et_2') + HypoName_2 = "Zones_1_et_2" + print "-------- Creation of the hypothesis", HypoName_2 + Zones_1_et_2 = homard.CreateHypothesis(HypoName_2) Zones_1_et_2.SetAdapRefinUnRef(0, 1, 0) Zones_1_et_2.AddZone('Zone_1_1', 1) Zones_1_et_2.AddZone('Zone_1_2', 1) + print HypoName_2, " : zones utilisées :", Zones_1_et_2.GetZones() + print HypoName_2, " : champ utilisé :", Zones_1_et_2.GetFieldName() + print HypoName_2, " : composantes utilisées :", Zones_1_et_2.GetComps() + if ( len (Zones_1_et_2.GetFieldName()) > 0 ) : + print ".. caractéristiques de l'adaptation :", Zones_1_et_2.GetField() # # Creation of the cases # ===================== @@ -117,7 +131,7 @@ Copyright EDF-R&D 2010, 2013 I1_1.SetMeshFile(os.path.join(Rep_Test_Resu, 'maill.01.med')) I1_1.SetFieldFile(os.path.join(Rep_Test, Test_Name + '.00.med')) I1_1.SetTimeStepRank(1, 1) - I1_1.AssociateHypo('a10_1pc_de_mailles_a_raffiner_sur_ERRE_ELEM_SIGM') + I1_1.AssociateHypo(HypoName_1) error = I1_1.Compute(1, 1) if error : error = 1 @@ -129,7 +143,7 @@ Copyright EDF-R&D 2010, 2013 I1_2.SetMeshFile(os.path.join(Rep_Test_Resu, 'maill.02.med')) I1_2.SetFieldFile(os.path.join(Rep_Test, Test_Name + '.01.med')) I1_2.SetTimeStepRank(1, 1) - I1_2.AssociateHypo('a10_1pc_de_mailles_a_raffiner_sur_ERRE_ELEM_SIGM') + I1_2.AssociateHypo(HypoName_1) error = I1_2.Compute(1, 1) if error : error = 2 @@ -139,7 +153,7 @@ Copyright EDF-R&D 2010, 2013 I1_3 = I1_2.NextIteration('I1_3') I1_3.SetMeshName('M3') I1_3.SetMeshFile(os.path.join(Rep_Test_Resu, 'maill.03.med')) - I1_3.AssociateHypo('Zones_1_et_2') + I1_3.AssociateHypo(HypoName_2) error = I1_3.Compute(1, 1) if error : error = 3 diff --git a/tests/test_2.py b/tests/test_2.py index 1f6dae83..e8371e46 100644 --- a/tests/test_2.py +++ b/tests/test_2.py @@ -22,7 +22,7 @@ Python script for HOMARD Copyright EDF-R&D 2010, 2013 Test test_2 """ -__revision__ = "V1.10" +__revision__ = "V1.11" #======================================================================== Test_Name = "test_2" @@ -83,15 +83,29 @@ Copyright EDF-R&D 2010, 2013 # Creation of the hypotheses # ========================== # Creation of the hypothesis Hypo_2_1 - Hypo_2_1 = homard.CreateHypothesis('Hypo_2_1') + HypoName_1 = "Hypo_2_1" + print "-------- Creation of the hypothesis", HypoName_1 + Hypo_2_1 = homard.CreateHypothesis(HypoName_1) Hypo_2_1.SetAdapRefinUnRef(-1, 1, 0) Hypo_2_1.AddGroup('EG') Hypo_2_1.AddGroup('BANDE') + print HypoName_1, " : zones utilisées :", Hypo_2_1.GetZones() + print HypoName_1, " : champ utilisé :", Hypo_2_1.GetFieldName() + print HypoName_1, " : composantes utilisées :", Hypo_2_1.GetComps() + if ( len (Hypo_2_1.GetFieldName()) > 0 ) : + print ".. caractéristiques de l'adaptation :", Hypo_2_1.GetField() # Creation of the hypothesis Hypo_2_2 - Hypo_2_2 = homard.CreateHypothesis('Hypo_2_2') + HypoName_2 = "Hypo_2_2" + print "-------- Creation of the hypothesis", HypoName_2 + Hypo_2_2 = homard.CreateHypothesis(HypoName_2) Hypo_2_2.SetAdapRefinUnRef(-1, 1, 0) Hypo_2_2.AddGroup('M_D') + print HypoName_2, " : zones utilisées :", Hypo_2_2.GetZones() + print HypoName_2, " : champ utilisé :", Hypo_2_2.GetFieldName() + print HypoName_2, " : composantes utilisées :", Hypo_2_2.GetComps() + if ( len (Hypo_2_2.GetFieldName()) > 0 ) : + print ".. caractéristiques de l'adaptation :", Hypo_2_2.GetField() # # Creation of the cases # ===================== @@ -108,7 +122,7 @@ Copyright EDF-R&D 2010, 2013 Iter_2_1 = Case_2.NextIteration('Iter_2_1') Iter_2_1.SetMeshName('PLAQUE_1') Iter_2_1.SetMeshFile(os.path.join(Rep_Test_Resu, 'maill.01.med')) - Iter_2_1.AssociateHypo('Hypo_2_1') + Iter_2_1.AssociateHypo(HypoName_1) error = Iter_2_1.Compute(1, 1) if error : error = 1 @@ -118,7 +132,7 @@ Copyright EDF-R&D 2010, 2013 Iter_2_2 = Iter_2_1.NextIteration('Iter_2_2') Iter_2_2.SetMeshName('PLAQUE_2') Iter_2_2.SetMeshFile(os.path.join(Rep_Test_Resu, 'maill.02.med')) - Iter_2_2.AssociateHypo('Hypo_2_1') + Iter_2_2.AssociateHypo(HypoName_1) error = Iter_2_2.Compute(1, 1) if error : error = 2 @@ -128,7 +142,7 @@ Copyright EDF-R&D 2010, 2013 Iter_2_3 = Iter_2_2.NextIteration('Iter_2_3') Iter_2_3.SetMeshName('PLAQUE_3') Iter_2_3.SetMeshFile(os.path.join(Rep_Test_Resu, 'maill.03.med')) - Iter_2_3.AssociateHypo('Hypo_2_2') + Iter_2_3.AssociateHypo(HypoName_2) error = Iter_2_3.Compute(1, 1) if error : error = 3 diff --git a/tests/test_3.py b/tests/test_3.py index cb73983c..b8583acd 100644 --- a/tests/test_3.py +++ b/tests/test_3.py @@ -22,7 +22,7 @@ Python script for HOMARD Copyright EDF-R&D 2011, 2013 Test test_3 """ -__revision__ = "V1.10" +__revision__ = "V1.11" #======================================================================== Test_Name = "test_3" @@ -100,6 +100,9 @@ Copyright EDF-R&D 2010, 2013 print "-------- Creation of the hypothesis", HypoName Hypo_3 = homard.CreateHypothesis(HypoName) Hypo_3.SetAdapRefinUnRef(-1, 1, 0) + print HypoName, " : zones utilisées :", Hypo_3.GetZones() + print HypoName, " : champ utilisé :", Hypo_3.GetFieldName() + print HypoName, " : composantes utilisées :", Hypo_3.GetComps() # for num in range (n_boucle+1) : # -- 2.39.2