You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/documentation/case.md
+19-7
Original file line number
Diff line number
Diff line change
@@ -166,12 +166,12 @@ MPI topology is automatically optimized to maximize the parallel efficiency for
166
166
|`vel(i)` * | Real | Supported | Velocity in direction $i$. |
167
167
|`hcid` * | Integer | N/A | Hard coded patch id |
168
168
|`cf_val` * | Real | Supported | Surface tension color function value |
169
-
|`model%%filepath`| String | Not Supported | Path to an STL or OBJ file (not all OBJs are supported). |
170
-
|`model%%scale(i)`| Real | Not Supported | Model's (applied) scaling factor for component $i$. |
171
-
|`model%%rotate(i)`| Real | Not Supported | Model's (applied) angle of rotation about axis $i$. |
172
-
|`model%%translate(i)`| Real | Not Supported | Model's $i$-th component of (applied) translation. |
173
-
|`model%%spc`| Integer | Not Supported | Number of samples per cell when discretizing the model into the grid. |
174
-
|`model%%threshold`| Real | Not Supported | Ray fraction inside the model patch above which the fraction is set to one.|
169
+
|`model_filepath`| String | Not Supported | Path to an STL or OBJ file (not all OBJs are supported). |
170
+
|`model_scale(i)`| Real | Not Supported | Model's (applied) scaling factor for component $i$. |
171
+
|`model_rotate(i)`| Real | Not Supported | Model's (applied) angle of rotation about axis $i$. |
172
+
|`model_translate(i)`| Real | Not Supported | Model's $i$-th component of (applied) translation. |
173
+
|`model_spc`| Integer | Not Supported | Number of samples per cell when discretizing the model into the grid. |
174
+
|`model_threshold`| Real | Not Supported | Ray fraction inside the model patch above which the fraction is set to one.|
175
175
176
176
*: These parameters should be prepended with `patch_icpp(j)%` where $j$ is the patch index.
177
177
@@ -263,7 +263,11 @@ Optimal choice of the value of `smooth_coeff` is case-dependent and left to the
263
263
-`patch_icpp(j)alpha(i)`, `patch_icpp(j)alpha_rho(i)`, `patch_icpp(j)pres`, and `patch_icpp(j)vel(i)` define for $j$-th patch the void fraction of `fluid(i)`, partial density of `fluid(i)`, the pressure, and the velocity in the $i$-th coordinate direction.
264
264
These physical parameters must be consistent with fluid material's parameters defined in the next subsection.
265
265
266
-
-`model%%scale`, `model%%rotate` and `model%%translate` define how the model should be transformed to domain-space by first scaling by `model%%scale`, then rotating about the Z, X, and Y axes (using `model%%rotate`), and finally translating by `model%%translate`.
266
+
-`model_filepath` defines the root directory of the STL or OBJ model file.
267
+
268
+
-`model_scale`, `model_rotate` and `model_translate` define how the model should be transformed to domain-space by first scaling by `model_scale`, then rotating about the Z, X, and Y axes (using `model_rotate`), and finally translating by `model_translate`.
269
+
270
+
-`model_spc` and `model_threshold` are ray-tracing parameters. `model_spc` defines the number of rays per cell to render the model. `model_threshold` defines the ray-tracing threshold at which the cell is marked as the model.
267
271
268
272
### 4. Immersed Boundary Patches
269
273
@@ -279,6 +283,12 @@ These physical parameters must be consistent with fluid material's parameters de
279
283
|`m`| Real | NACA airfoil parameters (see below) |
280
284
|`p`| Real | NACA airfoil parameters (see below) |
281
285
|`slip`| Logical | Apply a slip boundary |
286
+
|`model_filepath`| String | Path to an STL or OBJ file (not all OBJs are supported). |
287
+
|`model_scale(i)`| Real | Model's (applied) scaling factor for component $i$. |
288
+
|`model_rotate(i)`| Real | Model's (applied) angle of rotation about axis $i$. |
289
+
|`model_translate(i)`| Real | Model's $i$-th component of (applied) translation. |
290
+
|`model_spc`| Integer | Number of samples per cell when discretizing the model into the grid. |
291
+
|`model_threshold`| Real | Ray fraction inside the model patch above which the fraction is set to one.|
282
292
283
293
These parameters should be prepended with `patch_ib(j)%` where $j$ is the patch index.
284
294
@@ -301,6 +311,8 @@ Additional details on this specification can be found in [The Naca Airfoil Serie
301
311
302
312
-`slip` applies a slip boundary to the surface of the patch if true and a no-slip boundary condition to the surface if false.
303
313
314
+
- Please see [Patch Parameters](#3-patches) for the descriptions of `model_filepath`, `model_scale`, `model_rotate`, `model_translate`, `model_spc`, and `model_threshold`.
0 commit comments