]> SALOME platform Git repositories - modules/homard.git/blob - doc/files/tutorial_3.py
Salome HOME
Suppression de la fonction SetAdapRefinUnRef et création de la fonction SetUnifRefinU...
[modules/homard.git] / doc / files / tutorial_3.py
1 #!/usr/bin/env python
2 # -*- coding: iso-8859-1 -*-
3
4 # Copyright (C) 2011-2014  CEA/DEN, EDF R&D
5 #
6 # This library is free software; you can redistribute it and/or
7 # modify it under the terms of the GNU Lesser General Public
8 # License as published by the Free Software Foundation; either
9 # version 2.1 of the License, or (at your option) any later version.
10 #
11 # This library is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 # Lesser General Public License for more details.
15 #
16 # You should have received a copy of the GNU Lesser General Public
17 # License along with this library; if not, write to the Free Software
18 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 #
20 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 #
22
23 """
24 Exemple de couplage HOMARD-Salome
25 Copyright EDF-R&D 1996, 2010, 2013
26 """
27 __revision__ = "V1.7"
28 #
29 import os
30 #
31 # ==================================
32 # Repertoire a personnaliser
33 # Ce repertoire contiendra les fichiers de resultats : maill.01.med, maill.02.med
34 if os.environ.has_key("LOGNAME") :
35   user = os.environ ["LOGNAME"]
36 else :
37   user = "anonymous"
38 dircase = os.path.join( os.sep, "tmp", "HOMARD_"+user)
39 if not os.path.isdir(dircase) :
40   os.mkdir (dircase)
41 dircase = os.path.join( dircase, "tutorial_3" )
42 if not os.path.isdir(dircase) :
43   os.mkdir (dircase)
44 # ==================================
45 # Ce repertoire contient les fichiers de donnees : tutorial_3.00.med, tutorial_3.01.med
46 pathHomard = os.getenv('HOMARD_ROOT_DIR')
47 data_dir = os.path.join(pathHomard, "share/doc/salome/gui/HOMARD/fr/_downloads")
48 #
49 import salome
50 salome.salome_init()
51 import HOMARD
52 #
53 homard = salome.lcc.FindOrLoadComponent("FactoryServer", "HOMARD")
54 study_main = salome.myStudyManager.NewStudy("HOMARD")
55 homard.SetCurrentStudy(salome.myStudy)
56 #
57 # Hypothese "Hypo_0vers1"
58 # =======================
59 Hypo_0vers1 = homard.CreateHypothesis('Hypo_0vers1')
60 # Characterization of the field
61 Hypo_0vers1.SetField('SOLU_0__QIRE_ELEM_SIGM__________')
62 Hypo_0vers1.SetUseComp(0)
63 Hypo_0vers1.AddComp('ERREST          ')
64 Hypo_0vers1.SetRefinThr(3, 1.0)
65 Hypo_0vers1.SetTypeFieldInterp(2)
66 Hypo_0vers1.AddFieldInterp('SOLU_0__DEPL____________________')
67 Hypo_0vers1.AddFieldInterp('SOLU_0__ERRE_ELEM_SIGM__________')
68 #
69 # Hypothese "Hypo_1vers2"
70 # =======================
71 Hypo_1vers2 = homard.CreateHypothesis('Hypo_1vers2')
72 # Characterization of the field
73 Hypo_1vers2.SetField('SOLU_1__QIRE_ELEM_SIGM__________')
74 Hypo_1vers2.SetUseComp(0)
75 Hypo_1vers2.AddComp('ERREST          ')
76 Hypo_1vers2.SetRefinThr(3, 1.5)
77 Hypo_1vers2.SetUnRefThr(3, 6.)
78 Hypo_1vers2.SetTypeFieldInterp(2)
79 Hypo_1vers2.AddFieldInterp('SOLU_1__DEPL____________________')
80 Hypo_1vers2.AddFieldInterp('SOLU_1__QIRE_ELEM_SIGM__________')
81 #
82 # Hypothese "Hypo_1vers2_bis"
83 # ===========================
84 Hypo_1vers2_bis = homard.CreateHypothesis('Hypo_1vers2_bis')
85 # Characterization of the field
86 Hypo_1vers2_bis.SetField('SOLU_1__DEPL____________________')
87 Hypo_1vers2_bis.SetUseComp(1)
88 Hypo_1vers2_bis.AddComp('DX')
89 Hypo_1vers2_bis.AddComp('DY')
90 Hypo_1vers2_bis.AddComp('DZ')
91 Hypo_1vers2_bis.SetRefinThr(1, 0.0001)
92 Hypo_1vers2_bis.SetUnRefThr(1, 0.000001)
93 Hypo_1vers2_bis.SetTypeFieldInterp(0)
94 #
95 # Cas
96 # ===
97 Case_3 = homard.CreateCase('Case_3', 'G_0', data_dir+'/tutorial_3.00.med')
98 Case_3.SetDirName(dircase)
99 #
100 # Iteration "Iter_3_1"
101 # ====================
102 Iter_3_1 = Case_3.NextIteration('Iter_3_1')
103 Iter_3_1.SetMeshName('H_1')
104 Iter_3_1.SetMeshFile(dircase+'/maill.01.med')
105 Iter_3_1.SetFieldFile(data_dir+'/tutorial_3.00.med')
106 Iter_3_1.SetTimeStepRank( 1, 1)
107 Iter_3_1.AssociateHypo('Hypo_0vers1')
108 codret = Iter_3_1.Compute(1, 2)
109 #
110 # Iteration "Iter_3_2"
111 # ====================
112 Iter_3_2 = Iter_3_1.NextIteration('Iter_3_2')
113 Iter_3_2.SetMeshName('H_2')
114 Iter_3_2.SetMeshFile(dircase+'/maill.02.med')
115 Iter_3_2.SetFieldFile(data_dir+'/tutorial_3.01.med')
116 Iter_3_2.SetTimeStepRank(1, 1)
117 Iter_3_2.AssociateHypo('Hypo_1vers2')
118 codret = Iter_3_2.Compute(1, 2)
119 #
120 # Iteration "Iter_3_2_bis"
121 # ========================
122 Iter_3_2_bis = Iter_3_1.NextIteration('Iter_3_2_bis')
123 Iter_3_2_bis.SetMeshName('H_2_bis')
124 Iter_3_2_bis.SetMeshFile(dircase+'/maill.02.bis.med')
125 Iter_3_2_bis.SetFieldFile(data_dir+'/tutorial_3.01.med')
126 Iter_3_2_bis.SetTimeStepRank(1, 1)
127 Iter_3_2_bis.AssociateHypo('Hypo_1vers2_bis')
128 codret = Iter_3_2_bis.Compute(1, 2)
129 #
130 if salome.sg.hasDesktop():
131   salome.sg.updateObjBrowser(1)