On trouvera ici les instructions python pour quelques configurations caractéristiques. Les fichiers de données associés sont téléchargeables. Il faut penser à adapter la valeur de la variable data_dir : c’est le répertoire dans lequel les fichiers med auront été enregistrés. C’est dans le répertoire dircase que seront écrits les fichiers résultant des adaptations successives. Ce répertoire est créé par défaut dans /tmp.
Le chargement du module HOMARD se fait de manière analogue aux autres modules.
import HOMARD homard = salome.lcc.FindOrLoadComponent('FactoryServer','HOMARD') homard.SetCurrentStudy(salome.myStudy)
Pour utiliser le module HOMARD au sein d’un schéma YACS distribué, le chargement se fait ainsi :
import HOMARD my_container.load_component_Library('HOMARD') homard = my_container.create_component_instance('HOMARD',0) homard.SetCurrentStudy(salome.myStudy)
#
# Hypotheses
# ==========
hypo_1 = homard.CreateHypothesis('hypo_1')
hypo_1.SetUnifRefinUnRef(1)
#
# Cas
# ===
case_1 = homard.CreateCase('Case_1', 'MAILL', DATA_TUTORIAL+'/tutorial_1.00.med')
case_1.SetDirName(DIRCASE)
case_1.SetConfType(1)
#
# Iterations
# ==========
# Iteration "iter_1_1"
iter_1_1 = case_1.NextIteration('iter_1_1')
iter_1_1.SetMeshName('MESH')
iter_1_1.SetMeshFile(DIRCASE+'/maill.01.med')
iter_1_1.AssociateHypo('hypo_1')
error = iter_1_1.Compute(1, 2)
# Iteration "iter_1_2"
iter_1_2 = iter_1_1.NextIteration('iter_1_2')
iter_1_2.SetMeshName('MESH')
iter_1_2.SetMeshFile(DIRCASE+'/maill.02.med')
iter_1_2.AssociateHypo('hypo_1')
error = iter_1_2.Compute(1, 2)
# Iteration "iter_1_3"
iter_1_3 = iter_1_2.NextIteration('iter_1_3')
iter_1_3.SetMeshName('MESH')
iter_1_3.SetMeshFile(DIRCASE+'/maill.03.med')
iter_1_3.AssociateHypo('hypo_1')
error = iter_1_3.Compute(1, 2)
Note
Téléchargement des fichiers
On procède ici au raffinement selon des zones. Pour passer du maillage initial au maillage ‘M_1’, on utilise une boîte encadrant le plan z=1 et une sphère centrée sur l’origine de rayon 1.05. Puis pour passer du maillage ‘M_1’ au maillage ‘M_2’, on remplace la sphère par une boîte encadrant le cube de côté 0.5, pointant sur l’origine et on déraffine les mailles contenues dans la toute première zone.
#
# Creation des zones
# ==================
# Box "Zone_0"
Zone_0 = homard.CreateZoneBox ('Zone_0', -0.1, 1.1, -0.1, 1.1, 0.9, 1.1)
#
# Sphere "Zone_1"
Zone_1 = homard.CreateZoneSphere ('Zone_1', 0., 0., 0., 1.05)
#
# Box "Zone_2"
Zone_2 = homard.CreateZoneBox ('Zone_2', -0.1, 0.51, -0.1, 0.51, -0.1, 0.51)
#
# Hypothese "hypo_2"
# ==================
hypo_2 = homard.CreateHypothesis('hypo_2')
hypo_2.AddZone('Zone_1', 1)
hypo_2.AddZone('Zone_0', 1)
#
# Hypothese "hypo_2_bis"
# ======================
hypo_2_bis = homard.CreateHypothesis('hypo_2_bis')
hypo_2_bis.AddZone('Zone_0', -1)
hypo_2_bis.AddZone('Zone_2', 1)
#
# Cas
# ===
case_2 = homard.CreateCase('Case_2', 'MZERO', DATA_TUTORIAL+'/tutorial_2.00.med')
case_2.SetDirName(DIRCASE)
#
# Iteration "iter_2_1"
# ====================
iter_2_1 = case_2.NextIteration('iter_2_1')
iter_2_1.SetMeshName('M_1')
iter_2_1.SetMeshFile(DIRCASE+'/maill.01.med')
iter_2_1.AssociateHypo('hypo_2')
error = iter_2_1.Compute(1, 2)
#
# Iteration "iter_2_2"
# ====================
iter_2_2 = iter_2_1.NextIteration('iter_2_2')
iter_2_2.SetMeshName('M_2')
iter_2_2.SetMeshFile(DIRCASE+'/maill.02.med')
iter_2_2.AssociateHypo('hypo_2_bis')
error = iter_2_2.Compute(1, 2)
Note
Téléchargement des fichiers
On procède ici au raffinement selon un champ. Les hypothèses servent à définir le nom du champ et les seuils de raffinement/déraffinement. La donnée du fichier et des instants est faite dans l’itération. Des champs sur les noeuds ou sur les mailles sont interpolés. Pour adapter le maillage H_1 issu de l’itération Iter_1, deux variantes sont appliquées. Dans la première, Iter_2, le champ est un champ scalaire d’indicateurs d’erreur et on découpe les 1.5% de mailles où l’erreur est la plus grande. Dans la seconde variante, Iter_2_bis, on se base sur un champ vectoriel et on examine le saut de ce vecteur entre une maille et ses voisines : on découpera là où la norme infinie de ce saut est supérieure au seuil absolu de 0.0001.
#
# Hypothese "hypo_0vers1"
# =======================
hypo_0vers1 = homard.CreateHypothesis('hypo_0vers1')
# Characterization of the field
hypo_0vers1.SetField('SOLU_0__QIRE_ELEM_SIGM__________')
hypo_0vers1.SetUseComp(0)
hypo_0vers1.AddComp('ERREST ')
hypo_0vers1.SetRefinThr(3, 1.0)
hypo_0vers1.SetTypeFieldInterp(2)
hypo_0vers1.AddFieldInterp('SOLU_0__DEPL____________________')
hypo_0vers1.AddFieldInterp('SOLU_0__ERRE_ELEM_SIGM__________')
#
# Hypothese "hypo_1vers2"
# =======================
hypo_1vers2 = homard.CreateHypothesis('hypo_1vers2')
# Characterization of the field
hypo_1vers2.SetField('SOLU_1__QIRE_ELEM_SIGM__________')
hypo_1vers2.SetUseComp(0)
hypo_1vers2.AddComp('ERREST ')
hypo_1vers2.SetRefinThr(3, 1.5)
hypo_1vers2.SetUnRefThr(3, 6.)
hypo_1vers2.SetTypeFieldInterp(2)
hypo_1vers2.AddFieldInterp('SOLU_1__DEPL____________________')
hypo_1vers2.AddFieldInterp('SOLU_1__QIRE_ELEM_SIGM__________')
#
# Hypothese "hypo_1vers2_bis"
# ===========================
hypo_1vers2_bis = homard.CreateHypothesis('hypo_1vers2_bis')
# Characterization of the field
hypo_1vers2_bis.SetField('SOLU_1__DEPL____________________')
hypo_1vers2_bis.SetUseComp(1)
hypo_1vers2_bis.AddComp('DX')
hypo_1vers2_bis.AddComp('DY')
hypo_1vers2_bis.AddComp('DZ')
hypo_1vers2_bis.SetRefinThr(1, 0.0001)
hypo_1vers2_bis.SetUnRefThr(1, 0.000001)
hypo_1vers2_bis.SetTypeFieldInterp(0)
#
# Cas
# ===
case_3 = homard.CreateCase('Case_3', 'G_0', DATA_TUTORIAL+'/tutorial_3.00.med')
case_3.SetDirName(DIRCASE)
#
# Iteration "iter_3_1"
# ====================
iter_3_1 = case_3.NextIteration('iter_3_1')
iter_3_1.SetMeshName('H_1')
iter_3_1.SetMeshFile(DIRCASE+'/maill.01.med')
iter_3_1.SetFieldFile(DATA_TUTORIAL+'/tutorial_3.00.med')
iter_3_1.SetTimeStepRank( 1, 1)
iter_3_1.AssociateHypo('hypo_0vers1')
error = iter_3_1.Compute(1, 2)
#
# Iteration "iter_3_2"
# ====================
iter_3_2 = iter_3_1.NextIteration('iter_3_2')
iter_3_2.SetMeshName('H_2')
iter_3_2.SetMeshFile(DIRCASE+'/maill.02.med')
iter_3_2.SetFieldFile(DATA_TUTORIAL+'/tutorial_3.01.med')
iter_3_2.SetTimeStepRank(1, 1)
iter_3_2.AssociateHypo('hypo_1vers2')
error = iter_3_2.Compute(1, 2)
#
# Iteration "iter_3_2_bis"
# ========================
iter_3_2_bis = iter_3_1.NextIteration('iter_3_2_bis')
iter_3_2_bis.SetMeshName('H_2_bis')
iter_3_2_bis.SetMeshFile(DIRCASE+'/maill.02.bis.med')
iter_3_2_bis.SetFieldFile(DATA_TUTORIAL+'/tutorial_3.01.med')
iter_3_2_bis.SetTimeStepRank(1, 1)
iter_3_2_bis.AssociateHypo('hypo_1vers2_bis')
error = iter_3_2_bis.Compute(1, 2)
Note
Téléchargement des fichiers
On teste ici le suivi des frontières courbes : des frontières analytiques pour décrire les différentes surfaces des tuyaux et une frontière discrète pour décrire les lignes d’intersection des deux tuyaux. Le pilotage du raffinement est le suivant : raffinement uniforme de toutes les mailles contenues dans des groupes désignés. On commence par raffiner les faces internes aux tuyaux ; ensuite, on raffine deux fois de suite les faces externes aux tuyaux. Le schéma YACS réalisant cette adaptation est téléchargeable.
#
# 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.)
#
boun_4_4 = homard.CreateBoundaryCylinder('cyl_1_int', 0.0, 25., -25., 25., 50., 75., 75.)
#
boun_4_5 = homard.CreateBoundaryCylinder('cyl_2_int', 17.5, -2.5, -12.5, -100., -75., -25., 25.)
#
# 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')
# 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' )
#
# 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)
Note
Téléchargement des fichiers
Les instructions pour adapter un maillage 2D sont exactement identiques à celles nécessaires à l’adaptation d’un maillage 3D. La seule exception concerne le raffinement selon des zones géométriques : des fonctions différentes sont utilisées pour pouvoir définir des zones 2D. On donne alors les coordonnées 2D des zones, en précisant l’orientation du plan du maillage. Dans le cas présenté ici, on raffine une première fois toutes les mailles contenues dans un disque percé, puis dans une seconde itération, toutes les mailles contenues dans un rectangle. On notera l’utilisation du suivi des frontières circulaires du domaine.
#
# Frontiere
# =========
# Creation of the discrete boundary boun_5_1
boun_5_1 = homard.CreateBoundaryDi('boun_5_1', 'MAIL_EXT', DATA_TUTORIAL+'/tutorial_5.fr.med')
#
# Creation des zones
# ==================
# Creation of the disk with hole enveloppe
enveloppe = homard.CreateZoneDiskWithHole( 'enveloppe', 0., 0., 250., 193., 1 )
# Creation of the rectangle quart_sup
quart_sup = homard.CreateZoneBox2D( 'quart_sup', 0., 250., 0., 250., 1 )
#
# Hypotheses
# ==========
# Creation of the hypothesis hypo_5
hypo_5 = homard.CreateHypothesis('hypo_5')
hypo_5.AddZone('enveloppe', 1)
# Creation of the hypothesis hypo_5_bis
hypo_5_bis = homard.CreateHypothesis('hypo_5_bis')
hypo_5_bis.AddZone('quart_sup', 1)
#
# Cas
# ===
case_5 = homard.CreateCase('Case_5', 'COEUR_2D', DATA_TUTORIAL+'/tutorial_5.00.med')
case_5.SetDirName(DIRCASE)
case_5.SetConfType(3)
case_5.AddBoundaryGroup('boun_5_1', '')
#
# Iteration "iter_5_1"
# ====================
iter_5_1 = case_5.NextIteration('iter_5_1')
iter_5_1.SetMeshName('COEUR_2D_01')
iter_5_1.SetMeshFile(DIRCASE+'/maill.01.med')
iter_5_1.AssociateHypo('hypo_5')
error = iter_5_1.Compute(1, 2)
#
# Iteration "iter_5_2"
# ====================
iter_5_2 = iter_5_1.NextIteration('iter_5_2')
iter_5_2.SetMeshName('COEUR_2D_02')
iter_5_2.SetMeshFile(DIRCASE+'/maill.02.med')
iter_5_2.AssociateHypo('hypo_5_bis')
error = iter_5_2.Compute(1, 2)
Note
Téléchargement des fichiers