Salome HOME
Fonction d'affectation d'un type externe au maillage
[modules/homard.git] / doc / en / tui_create_case.rst
1 .. _tui_create_case:
2
3 The case
4 ########
5 .. index:: single: cas
6 .. index:: single: type of conformity
7 .. index:: single: mesh;initial
8
9 The variables are described in :doc:`gui_create_case`.
10
11 Methods of the class homard
12 ***************************
13
14 Creation of a case
15 ==================
16
17 +---------------------------------------------------------------+
18 +---------------------------------------------------------------+
19 | .. module:: CreateCase                                        |
20 |                                                               |
21 | **CreateCase(case_name, mesh_name, mesh_file)**               |
22 |     Returns an instance of the class ``cas`` after its        |
23 |     creation                                                  |
24 |                                                               |
25 |     - ``case_name``: the name of the case                     |
26 |     - ``mesh_name``: the name of the initial mesh             |
27 |     - ``mesh_file``: the name of the MED file of this mesh    |
28 |                                                               |
29 | Default:                                                      |
30 |                                                               |
31 |  * the directory for the results is ``/tmp``                  |
32 |  * the adaptation is conformal                                |
33 +---------------------------------------------------------------+
34 | .. module:: GetCase                                           |
35 |                                                               |
36 | **GetCase(case_name)**                                        |
37 |     Returns an instance of the class ``cas`` known by its name|
38 |                                                               |
39 |     - ``case_name``: the name of the case                     |
40 +---------------------------------------------------------------+
41 | .. module:: GetAllCasesName                                   |
42 |                                                               |
43 | **GetAllCasesName()**                                         |
44 |     Returns the liste of the name of all the existing cases   |
45 |                                                               |
46 +---------------------------------------------------------------+
47
48 Creation of a case by pursuit of a computed iteration
49 =====================================================
50
51 +---------------------------------------------------------------+
52 +---------------------------------------------------------------+
53 | .. module:: CreateCaseFromIteration                           |
54 |                                                               |
55 | **CreateCaseFromIteration(case_name, dir_name)**              |
56 |     Returns an instance of the class ``cas`` after its        |
57 |     creation                                                  |
58 |                                                               |
59 |     - ``case_name``: the name of the case                     |
60 |     - ``dir_name``: the name of the directory that contains   |
61 |       the iteration                                           |
62 |                                                               |
63 +---------------------------------------------------------------+
64 | .. module:: CreateCaseFromCaseLastIteration                   |
65 |                                                               |
66 | **CreateCaseFromCaseLastIteration(case_name, dir_name)**      |
67 |     Returns an instance of the class ``cas`` after its        |
68 |     creation                                                  |
69 |                                                               |
70 |     - ``case_name``: the name of the case                     |
71 |     - ``dir_name``: the name of the directory that contains   |
72 |       the case                                                |
73 |                                                               |
74 +---------------------------------------------------------------+
75 | .. module:: CreateCaseFromCaseIteration                       |
76 |                                                               |
77 | **CreateCaseFromCaseIteration(case_name, dir_name, number)**  |
78 |     Returns an instance of the class ``cas`` after its        |
79 |     creation                                                  |
80 |                                                               |
81 |     - ``case_name``: the name of the case                     |
82 |     - ``dir_name``: the name of the directory that contains   |
83 |       the case                                                |
84 |     - ``number``: the number of the iteration of the case     |
85 |                                                               |
86 +---------------------------------------------------------------+
87
88
89
90 Methods of the class cas
91 ************************
92 .. index:: single: YACS
93
94 +---------------------------------------------------------------+
95 +---------------------------------------------------------------+
96 | .. module:: GetName                                           |
97 |                                                               |
98 | **GetName()**                                                 |
99 |     Returns the name of the case                              |
100 +---------------------------------------------------------------+
101 | .. module:: SetDirName                                        |
102 |                                                               |
103 | **SetDirName(dirname)**                                       |
104 |     Gives a directory for the results of the case. It can be  |
105 |     done only after the creation of the case and before the   |
106 |     first computation.                                        |
107 |                                                               |
108 |     - ``dirname``: the name of the directory of the results   |
109 +---------------------------------------------------------------+
110 | .. module:: GetDirName                                        |
111 |                                                               |
112 | **GetDirName()**                                              |
113 |     Returns the name of the directory of the results of the   |
114 |     case                                                      |
115 +---------------------------------------------------------------+
116 | .. module:: SetConfType                                       |
117 |                                                               |
118 | **SetConfType(conf_type)**                                    |
119 |     Defines the type of conformity for the case               |
120 |                                                               |
121 |     - ``conf_type``: integer as follows:                      |
122 |                                                               |
123 |         * 0: conformal (default)                              |
124 |         * 1: non conformal with at max 2 cut edges per element|
125 |         * 2: non conformal with one hanging node per edge of  |
126 |           element                                             |
127 |         * 3: non conformal without any constraint             |
128 |         * -1: conformal with boxes (no staircases)            |
129 |         * -2: non-conformal with boxes (no staircases)        |
130 +---------------------------------------------------------------+
131 | .. module:: GetConfType                                       |
132 |                                                               |
133 | **GetConfType()**                                             |
134 |     Returns the type of conformity                            |
135 +---------------------------------------------------------------+
136 | .. module:: SetExtType                                        |
137 |                                                               |
138 | **SetExtType(ext_type)**                                      |
139 |     Defines the external type for the case                    |
140 |                                                               |
141 |     - ``ext_type`` : integer as follows:                      |
142 |                                                               |
143 |         * 0 : Standard MED (default)                          |
144 |         * 1 : Saturne 2D                                      |
145 +---------------------------------------------------------------+
146 | .. module:: GetExtType                                        |
147 |                                                               |
148 | **GetExtType()**                                              |
149 |     Returns the external type for the case                    |
150 +---------------------------------------------------------------+
151 | .. module:: GetIter0                                          |
152 |                                                               |
153 | **GetIter0()**                                                |
154 |     Returns the iteration linked to the initial mesh.         |
155 |     This iteration is automatically created by the module     |
156 |     HOMARD. It is used to connect the iterations. It is       |
157 |     connected to an initial mesh or to the iteration of a     |
158 |     previous case.                                            |
159 +---------------------------------------------------------------+
160 | .. module:: AddBoundaryGroup                                  |
161 |                                                               |
162 | **AddBoundaryGroup(boundary, group)**                         |
163 |     Add a boundary to the definition of a case                |
164 |                                                               |
165 |     - ``boundary``: name of the curved boundary               |
166 |                                                               |
167 |     Discrete boundary:                                        |
168 |                                                               |
169 |     . if all the curved lines are involved, the second        |
170 |     argument is an empty string.                              |
171 |     . if only some curved lines are involved, ``group`` is    |
172 |     the name of the group of segments                         |
173 |                                                               |
174 |     Analytical boundary:                                      |
175 |                                                               |
176 |     - ``group``: name of the group of faces located on the    |
177 |       boundary                                                |
178 +---------------------------------------------------------------+
179 | .. module:: Delete                                            |
180 |                                                               |
181 | **Delete(option)**                                            |
182 |     Deletes the case and all the connected iterations. The MED|
183 |     file of the first mesh is kept.                           |
184 |                                                               |
185 |     - ``option``: an integer to define what to do with the    |
186 |       MED file of the associated meshes                       |
187 |                                                               |
188 |         * 0: the files are kept                               |
189 |         * 1: the files are removed                            |
190 |                                                               |
191 |     Returns an integer:                                       |
192 |         * 0: the destruction is done                          |
193 |         * other value: problem                                |
194 +---------------------------------------------------------------+
195 | .. module:: GetState                                          |
196 |                                                               |
197 | **GetState()**                                                |
198 |     Returns the state of the case:                            |
199 |         * 0: corresponds to an initial mesh                   |
200 |         * other value: pursuit of an iteration with number n  |
201 +---------------------------------------------------------------+
202 | .. module:: WriteYACSSchema                                   |
203 |                                                               |
204 | **WriteYACSSchema(ScriptFile, DirName, MeshFile)**            |
205 |     Writes a schema YACS relative to the case.                |
206 |                                                               |
207 |     - ``ScriptFile`` : name of the file that contains the     |
208 |       script to launch the computation                        |
209 |     - ``DirName`` : the directory for the computation         |
210 |     - ``MeshFile`` : name of the file that contains the mesh  |
211 |       for the very first computation                          |
212 +---------------------------------------------------------------+
213
214 Advanced options
215 ****************
216
217 +---------------------------------------------------------------+
218 +---------------------------------------------------------------+
219 | .. module:: SetPyram                                          |
220 |                                                               |
221 | **SetPyram(option)**                                          |
222 |     Defines the status of the pyramids in this case           |
223 |                                                               |
224 |     - ``option``: integer that defines the status of the      |
225 |       pyramids that could belongs to the initial mesh         |
226 |                                                               |
227 |         * 0: rejected pyramids (default)                      |
228 |         * 1: authorized pyramids                              |
229 +---------------------------------------------------------------+
230 | .. module:: GetPyram                                          |
231 |                                                               |
232 | **GetPyram()**                                                |
233 |     Returns the status of the pyramids in this case           |
234 +---------------------------------------------------------------+
235
236 Informations for the initial mesh
237 *********************************
238
239 +---------------------------------------------------------------+
240 +---------------------------------------------------------------+
241 | .. module:: MeshInfo                                          |
242 |                                                               |
243 | **MeshInfo(Qual, Diam, Conn, Tail, Inte)**                    |
244 |     Gives information about the current mesh. For every       |
245 |     option, the choice #0 corresponds to 'no action', while   |
246 |     the choice #1 launches the option.                        |
247 |                                                               |
248 |     - ``Qual``: quality of the elements                       |
249 |     - ``Diam``: diametre of the elements                      |
250 |     - ``Conn``: connexity of the domain; a single block, how  |
251 |       many holes, etc.                                        |
252 |     - ``Tail``: size of the parts of the domain, group by     |
253 |       group                                                   |
254 |     - ``Inte``: staggered elements, by dimension              |
255 +---------------------------------------------------------------+
256
257
258 Example
259 *******
260 The creation of the object case_1 is done as follows:
261
262 ::
263
264     case_name = "CAS_1"
265     mesh_name = "MAILL"
266     mesh_file = "/scratch/Salome/Adapt/m0.med"
267     case_1 = homard.CreateCase(case_name, mesh_name, mesh_file)
268     dirname = "/scratch/Salome/Adapt/resu"
269     case_1.SetDirName(dirname)
270     case_1.SetConfType(1)
271     case_1.AddBoundaryGroup( 'intersection', '' )
272     case_1.AddBoundaryGroup( 'cyl_1', 'T1_EXT' )
273     case_1.AddBoundaryGroup( 'cyl_1', 'T2_EXT' )
274     case_1.AddBoundaryGroup( 'cyl_2', 'T_INT' )
275
276
277
278 Similar graphical input
279 ***********************
280 Look at :doc:`gui_create_case`
281
282