X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=doc%2Ffiles%2Ftutorial_4.py;h=6adecb70de09a650fc2759feaaa33189c2ed45e4;hb=refs%2Ftags%2FV9_13_0b1;hp=2111fe0360f36cd87b9b21b3d913ab24a2a4d65a;hpb=4dae4da41c183422d74c109fa4a829d25016f22c;p=modules%2Fhomard.git diff --git a/doc/files/tutorial_4.py b/doc/files/tutorial_4.py index 2111fe03..6adecb70 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-2024 CEA, EDF # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public @@ -22,24 +22,22 @@ """ Exemple de couplage HOMARD-Salome -Copyright EDF-R&D 1996, 2011, 2014 +Copyright EDF 1996, 2011, 2019 """ -__revision__ = "V2.5" +__revision__ = "V4.04" # import os import sys # # ================================== -pathHomard = os.getenv('HOMARD_ROOT_DIR') +PATH_HOMARD = os.getenv("HOMARD_ROOT_DIR") # Repertoire des donnees du tutorial -data_dir = os.path.join(pathHomard, "share", "doc", "salome", "gui", "HOMARD", "fr", "_downloads") -data_dir = os.path.normpath(data_dir) -sys.path.append(data_dir) -from tutorial_util import gzip_gunzip +DATA_TUTORIAL = os.path.join(PATH_HOMARD, "share", "doc", "salome", "gui", "HOMARD", "fr", "_downloads") +DATA_TUTORIAL = os.path.normpath(DATA_TUTORIAL) +sys.path.append(DATA_TUTORIAL) from tutorial_util import creation_dircase # ================================== -dircase = creation_dircase(4) -gzip_gunzip(data_dir, 4, -1) +DIRCASE = creation_dircase(4) # ================================== # import salome @@ -47,72 +45,57 @@ 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_dir+'/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.) -# -Boun_4_4 = homard.CreateBoundaryCylinder('cyl_1_int', 0.0, 25., -25., 25., 50., 75., 75.) +#============================= Début des commandes ============================= # -Boun_4_5 = homard.CreateBoundaryCylinder('cyl_2_int', 17.5, -2.5, -12.5, -100., -75., -25., 25.) -# -# Hypotheses +# Frontières # ========== -# 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') -# 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') +boun_4 = homard.CreateBoundaryCAO("PIQUAGE", os.path.join(DATA_TUTORIAL, "tutorial_4.xao")) # # Cas # === -Case_4 = homard.CreateCase('Case_4', 'PIQUAGE', data_dir+'/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' ) +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 +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 +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.SetMeshName('PIQUAGE_1') -Iter_4_1.SetMeshFile(dircase+'/maill.01.med') -Iter_4_1.AssociateHypo('Hypo_4') -error = 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.AssociateHypo('Hypo_4_bis') -error = 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.AssociateHypo('Hypo_4_bis') -error = Iter_4_3.Compute(1, 2) - -# ================================== -gzip_gunzip(data_dir, 4, 1) -# ================================== - +# Iteration iter_4_1 : raffinement selon les faces internes +iter_4_1 = le_cas.NextIteration('iter_4_1') +iter_4_1.SetMeshName('PIQUAGE_1') +iter_4_1.SetMeshFile(os.path.join(DIRCASE, "maill.01.med")) +iter_4_1.AssociateHypo('hypo_4') +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(os.path.join(DIRCASE, "maill.02.med")) +iter_4_2.AssociateHypo('hypo_4_bis') +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(os.path.join(DIRCASE, "maill.03.med")) +iter_4_3.AssociateHypo('hypo_4_bis') +erreur = iter_4_3.Compute(1, 2) +# +#============================== Fin des commandes ============================== +# if salome.sg.hasDesktop(): - salome.sg.updateObjBrowser(1) + salome.sg.updateObjBrowser()