Salome HOME
Updated copyright comment
[modules/homard.git] / doc / files / tutorial_6.py
index cc12c54899d9dcff7862eb845da8847681454f18..8c988106dad580936137fa1eabe95855b9f46b14 100755 (executable)
@@ -1,7 +1,7 @@
-#!/usr/bin/env python
+#!/usr/bin/env python3
 # -*- coding: utf-8 -*-
 
-# Copyright (C) 2011-2016  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,9 +22,9 @@
 
 """
 Exemple de couplage HOMARD-Salome
-Copyright EDF 1996, 2011, 2018
+Copyright EDF 1996, 2011, 2019
 """
-__revision__ = "V4.3"
+__revision__ = "V4.06"
 #
 import os
 import sys
@@ -35,12 +35,9 @@ PATH_HOMARD = os.getenv("HOMARD_ROOT_DIR")
 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 gzip_gunzip
 from tutorial_util import creation_dircase
 # ==================================
 DIRCASE = creation_dircase(6)
-gzip_gunzip(DATA_TUTORIAL, 4, -1)
-gzip_gunzip(DATA_TUTORIAL, 6, -1)
 # ==================================
 #
 import salome
@@ -48,13 +45,13 @@ salome.salome_init()
 import HOMARD
 #
 homard = salome.lcc.FindOrLoadComponent("FactoryServer", "HOMARD")
-homard.SetCurrentStudy(salome.myStudy)
+homard.UpdateStudy()
 #
 #============================= Début des commandes =============================
 #
 # Frontières
 # ==========
-boun_6_1 = homard.CreateBoundaryDi('intersection', 'PIQUAGE', os.path.join(DATA_TUTORIAL, "tutorial_6.fr.med"))
+boun_6_1 = homard.CreateBoundaryDi('intersection', 'COURBES', os.path.join(DATA_TUTORIAL, "tutorial_6.fr.med"))
 #
 boun_6_2 = homard.CreateBoundaryCylinder('cyl_1_ext', 0.0, 25., -25., 25., 50., 75., 100.)
 #
@@ -83,6 +80,8 @@ le_cas.AddBoundaryGroup( 'cyl_2_ext', 'T2_EXT' )
 # Creation of the hypothesis hypo_6
 l_hypothese = homard.CreateHypothesis('hypo_6')
 l_hypothese.SetUnifRefinUnRef(1)
+l_hypothese.AddGroup('IN1')
+l_hypothese.AddGroup('IN2')
 l_hypothese.AddGroup('T1_INT_I')
 l_hypothese.AddGroup('T1_INT_O')
 l_hypothese.AddGroup('T2_INT')
@@ -114,10 +113,5 @@ iter_6_3.SetMeshFile(os.path.join(DIRCASE, "maill.03.med"))
 iter_6_3.AssociateHypo('hypo_6_bis')
 erreur = iter_6_3.Compute(1, 2)
 #
-# ==================================
-gzip_gunzip(DATA_TUTORIAL, 4, 1)
-gzip_gunzip(DATA_TUTORIAL, 6, 1)
-# ==================================
-
 if salome.sg.hasDesktop():
-  salome.sg.updateObjBrowser(True)
+  salome.sg.updateObjBrowser()