Salome HOME
'/usr/bin/env python' -> '/usr/bin/env python3'
[modules/homard.git] / doc / en / tutorials.rst
1 Examples
2 ########
3 .. index:: single: example
4 .. index:: single: python
5
6 One will find here the instructions python for some characteristic configurations. The associated data files are downloadable. It is necessary to think of adapting the value of the variable ``data_dir``: it is the directory in which the files med will have been recorded.
7 It is in the directory ``dircase`` that the files will be written resulting from the successive adaptations. This directory is created by default in ``/tmp``.
8
9 Loading of the module HOMARD
10 ****************************
11 .. index:: single: YACS
12
13 The loading of the module HOMARD is done in a way similar to the other modules.
14
15  ::
16
17   import HOMARD
18   homard = salome.lcc.FindOrLoadComponent('FactoryServer','HOMARD')
19   homard.UpdateStudy()
20
21 To use the module HOMARD within a distributed scheme YACS, the loading is made as follows:
22
23  ::
24
25   import HOMARD
26   my_container.load_component_Library('HOMARD')
27   homard = my_container.create_component_instance('HOMARD',0)
28   homard.UpdateStudy()
29
30 Uniform refinement
31 ******************
32 .. index:: single: refinement;uniform
33
34 One will make here three successive uniform refinements of the mesh contained in the file ``tutorial_1.00.med``. Some notes:
35   * the same hypothesis is used with each iteration
36   * the produced mesh always bears the same name. That does not pose a problem because it is stored in different files.
37
38
39 .. literalinclude:: ../files/tutorial_1.py
40    :start-after: Début des commandes
41    :end-before: Fin des commandes
42
43 .. note::
44   Download the files
45
46   * :download:`initial mesh<../files/tutorial_1.00.med.gz>`
47   * :download:`python script<../files/tutorial_1.py>`
48   * :download:`python script for the compression<../files/tutorial_util.py>`
49
50
51
52 Refinement by zones
53 *******************
54 .. index:: single: zone
55
56 One proceeds here to refinement according to zones. To pass from the initial mesh to the mesh 'M_1', one uses a box framing the z=1 plane and a sphere centered on the origin with radius 1.05. Then to pass from the mesh 'M_1' to the mesh 'M_2', one replaces the sphere by a box framing the cube on side 0.5, pointing on the origin and the meshes in the very first zone are unrefined.
57
58 .. literalinclude:: ../files/tutorial_2.py
59    :start-after: Début des commandes
60    :end-before: Fin des commandes
61
62 .. note::
63   Download the files
64
65   * :download:`initial mesh<../files/tutorial_2.00.med.gz>`
66   * :download:`python script<../files/tutorial_2.py>`
67   * :download:`python script for the compression<../files/tutorial_util.py>`
68
69
70 Refinement driven by a field
71 ****************************
72 .. index:: single: field
73
74 One proceeds here to refinement according to a field. The hypotheses are used to define the name of the field and the thresholds of refinement/unrefinement. The input of the file and the instants is made in the iteration. Fields on the nodes or the elements are interpolated.
75 To adapt the H_1 mesh resulting from the Iter_1 iteration, two alternatives are applied. In the first, Iter_2, the field is a scalar field of indicators of error and one cuts out the 1.5% of elements where the error is largest. In the second alternative, Iter_2_bis, one is based on a vector field and one examines the jump of this vector between an element and its neighbors: one will cut out where the infinite standard of this jump is higher than the absolute threshold of 0.0001.
76
77 .. literalinclude:: ../files/tutorial_3.py
78    :start-after: Début des commandes
79    :end-before: Fin des commandes
80
81 .. note::
82   Download the files
83
84   * :download:`mesh and field stage 0<../files/tutorial_3.00.med.gz>`
85   * :download:`mesh and field stage 1<../files/tutorial_3.01.med.gz>`
86   * :download:`python script<../files/tutorial_3.py>`
87   * :download:`python script for the compression<../files/tutorial_util.py>`
88
89
90 Non plane boundaries
91 ********************
92 .. index:: single: boundary
93 .. index:: single: CAO
94 .. index:: single: YACS
95
96 One tests the follow-up of the curved borders here, giving the representation of the domain by its CAO. That CAO is given in a XAO format file.
97 The driving of refinement is the following: uniform refinement of all the elements contained in indicated groups. One starts by refining the inner faces with the pipes; then, one refines continuation twice the external faces with the pipes.
98 Scheme YACS carrying out this adaptation is downloadable.
99
100 .. literalinclude:: ../files/tutorial_4.py
101    :start-after: Début des commandes
102    :end-before: Fin des commandes
103
104 .. note::
105   Téléchargement des fichiers
106
107   * :download:`initial mesh<../files/tutorial_4.00.med.gz>`
108   * :download:`CAO<../files/tutorial_4.xao.gz>`
109   * :download:`python scrip<../files/tutorial_4.py>`
110   * :download:`python script for the compression<../files/tutorial_util.py>`
111   * :download:`YACS scheme<../files/tutorial_4.xml>`
112
113 If the CAO is not available, the boundaries can be approximated: analytical borders to describe various surfaces of the pipes and a discrete border to describe the intersecting lines of the two pipes. Only the definition of the boundaries has to be modified.
114
115 .. literalinclude:: ../files/tutorial_6.py
116    :start-after: Début des commandes
117    :end-before: Fin des commandes
118
119 .. note::
120   Download the files
121
122   * :download:`initial mesh<../files/tutorial_4.00.med.gz>`
123   * :download:`mesh of the discrete boundary<../files/tutorial_6.fr.med.gz>`
124   * :download:`python script<../files/tutorial_6.py>`
125   * :download:`python script for the compression<../files/tutorial_util.py>`
126   * :download:`YACS scheme<../files/tutorial_6.xml>`
127
128
129 Specific instructions for a 2D mesh
130 ***********************************
131 .. index:: single: 2D
132
133 The instructions to adapt a 2D mesh are exactly identical to those necessary to the adaptation of a 3D mesh. The only exception relates to refinement according to geometrical zones: different functions are used to be able to define 2D zones. One gives the 2D coordinates zones, by specifying the orientation of the plane of the mesh.
134 In the case presented here, one for the first time refines all the elements contained in a bored disk, then in one second iteration, all the elements contained in a rectangle. One will note the use of the follow-up of the circular borders of the field.
135
136 .. literalinclude:: ../files/tutorial_5.py
137    :start-after: Début des commandes
138    :end-before: Fin des commandes
139
140 .. note::
141   Download the files
142
143   * :download:`initial mesh<../files/tutorial_5.00.med.gz>`
144   * :download:`mesh of the discrete boundary<../files/tutorial_5.fr.med.gz>`
145   * :download:`python script<../files/tutorial_5.py>`
146   * :download:`python script for the compression<../files/tutorial_util.py>`
147
148
149 .. toctree::
150    :maxdepth: 2
151