X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=doc%2Ffiles%2Ftutorial_4.py;h=4e23bcae2d1aefc73a114092d8e7f912c17625c4;hb=901dc2b7e146a3be930b3abfcd998cd8c49bb314;hp=f45af8bce5ac065af4369ba1ea63170279a74709;hpb=e96e0ccb386a6348ee7bc31fedbeafdd117d1117;p=modules%2Fhomard.git diff --git a/doc/files/tutorial_4.py b/doc/files/tutorial_4.py index f45af8bc..4e23bcae 100755 --- a/doc/files/tutorial_4.py +++ b/doc/files/tutorial_4.py @@ -1,7 +1,7 @@ -#!/usr/bin/env python +#!/usr/bin/env python3 # -*- coding: utf-8 -*- -# Copyright (C) 2011-2015 CEA/DEN, EDF R&D +# Copyright (C) 2011-2019 CEA/DEN, EDF R&D # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public @@ -22,15 +22,15 @@ """ Exemple de couplage HOMARD-Salome -Copyright EDF-R&D 1996, 2011, 2014 +Copyright EDF 1996, 2011, 2018 """ -__revision__ = "V3.1" +__revision__ = "V4.3" # import os import sys # # ================================== -PATH_HOMARD = os.getenv('HOMARD_ROOT_DIR') +PATH_HOMARD = os.getenv("HOMARD_ROOT_DIR") # Repertoire des donnees du tutorial DATA_TUTORIAL = os.path.join(PATH_HOMARD, "share", "doc", "salome", "gui", "HOMARD", "fr", "_downloads") DATA_TUTORIAL = os.path.normpath(DATA_TUTORIAL) @@ -47,72 +47,61 @@ salome.salome_init() import HOMARD # homard = salome.lcc.FindOrLoadComponent("FactoryServer", "HOMARD") -study_main = salome.myStudyManager.NewStudy("HOMARD") -homard.SetCurrentStudy(salome.myStudy) +homard.UpdateStudy() # -# Frontieres -# ========== -boun_4_1 = homard.CreateBoundaryDi('intersection', 'PIQUAGE', DATA_TUTORIAL+'/tutorial_4.fr.med') -# -boun_4_2 = homard.CreateBoundaryCylinder('cyl_1_ext', 0.0, 25., -25., 25., 50., 75., 100.) -# -boun_4_3 = homard.CreateBoundaryCylinder('cyl_2_ext', 17.5, -2.5, -12.5, -100., -75., -25., 50.) +#============================= Début des commandes ============================= # -boun_4_4 = homard.CreateBoundaryCylinder('cyl_1_int', 0.0, 25., -25., 25., 50., 75., 75.) +# Frontières +# ========== +boun_4 = homard.CreateBoundaryCAO("PIQUAGE", os.path.join(DATA_TUTORIAL, "tutorial_4.xao")) # -boun_4_5 = homard.CreateBoundaryCylinder('cyl_2_int', 17.5, -2.5, -12.5, -100., -75., -25., 25.) +# Cas +# === +le_cas = homard.CreateCase('Case_4', "PIQUAGE", os.path.join(DATA_TUTORIAL, "tutorial_4.00.med")) +le_cas.SetDirName(DIRCASE) +le_cas.AddBoundary( "PIQUAGE" ) # # Hypotheses # ========== # Creation of the hypothesis hypo_4 -hypo_4 = homard.CreateHypothesis('hypo_4') -hypo_4.SetUnifRefinUnRef(1) -hypo_4.AddGroup('T1_INT_I') -hypo_4.AddGroup('T1_INT_O') -hypo_4.AddGroup('T2_INT') +l_hypothese = homard.CreateHypothesis('hypo_4') +l_hypothese.SetUnifRefinUnRef(1) +l_hypothese.AddGroup('T1_INT_I') +l_hypothese.AddGroup('T1_INT_O') +l_hypothese.AddGroup('T2_INT') # Creation of the hypothesis hypo_4_bis -hypo_4_bis = homard.CreateHypothesis('hypo_4_bis') -hypo_4_bis.SetUnifRefinUnRef(1) -hypo_4_bis.AddGroup('T1_EXT_I') -hypo_4_bis.AddGroup('T1_EXT_O') -hypo_4_bis.AddGroup('T2_EXT') -# -# Cas -# === -case_4 = homard.CreateCase('Case_4', 'PIQUAGE', DATA_TUTORIAL+'/tutorial_4.00.med') -case_4.SetDirName(DIRCASE) -case_4.AddBoundaryGroup( 'intersection', '' ) -case_4.AddBoundaryGroup( 'cyl_1_int', 'T1_INT_I' ) -case_4.AddBoundaryGroup( 'cyl_1_ext', 'T1_EXT_I' ) -case_4.AddBoundaryGroup( 'cyl_1_int', 'T1_INT_O' ) -case_4.AddBoundaryGroup( 'cyl_1_ext', 'T1_EXT_O' ) -case_4.AddBoundaryGroup( 'cyl_2_int', 'T2_INT' ) -case_4.AddBoundaryGroup( 'cyl_2_ext', 'T2_EXT' ) +l_hypothese_bis = homard.CreateHypothesis('hypo_4_bis') +l_hypothese_bis.SetUnifRefinUnRef(1) +l_hypothese_bis.AddGroup('T1_EXT_I') +l_hypothese_bis.AddGroup('T1_EXT_O') +l_hypothese_bis.AddGroup('T2_EXT') # # Iterations # ========== # Iteration iter_4_1 : raffinement selon les faces internes -iter_4_1 = case_4.NextIteration('iter_4_1') +iter_4_1 = le_cas.NextIteration('iter_4_1') iter_4_1.SetMeshName('PIQUAGE_1') -iter_4_1.SetMeshFile(DIRCASE+'/maill.01.med') +iter_4_1.SetMeshFile(os.path.join(DIRCASE, "maill.01.med")) iter_4_1.AssociateHypo('hypo_4') -error = iter_4_1.Compute(1, 2) +erreur = iter_4_1.Compute(1, 2) # Iteration iter_4_2 : raffinement selon les faces externes iter_4_2 = iter_4_1.NextIteration('iter_4_2') iter_4_2.SetMeshName('PIQUAGE_2') -iter_4_2.SetMeshFile(DIRCASE+'/maill.02.med') +iter_4_2.SetMeshFile(os.path.join(DIRCASE, "maill.02.med")) iter_4_2.AssociateHypo('hypo_4_bis') -error = iter_4_2.Compute(1, 2) +erreur = iter_4_2.Compute(1, 2) # Iteration iter_4_3 : second raffinement selon les faces externes iter_4_3 = iter_4_2.NextIteration('iter_4_3') iter_4_3.SetMeshName('PIQUAGE_3') -iter_4_3.SetMeshFile(DIRCASE+'/maill.03.med') +iter_4_3.SetMeshFile(os.path.join(DIRCASE, "maill.03.med")) iter_4_3.AssociateHypo('hypo_4_bis') -error = iter_4_3.Compute(1, 2) - +erreur = iter_4_3.Compute(1, 2) +# +#============================== Fin des commandes ============================== +# # ================================== gzip_gunzip(DATA_TUTORIAL, 4, 1) # ================================== if salome.sg.hasDesktop(): - salome.sg.updateObjBrowser(1) + salome.sg.updateObjBrowser()