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
+10Lines changed: 10 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -164,6 +164,7 @@ MPI topology is automatically optimized to maximize the parallel efficiency for
164
164
|`alpha_rho(i)` * | Real | Supported | Partial density of fluid $i$. |
165
165
|`pres` * | Real | Supported | Pressure. |
166
166
|`vel(i)` * | Real | Supported | Velocity in direction $i$. |
167
+
|`tau_e(i)` * | Real | Supported | Elastic stresses. |
167
168
|`hcid` * | Integer | N/A | Hard coded patch id |
168
169
|`cf_val` * | Real | Supported | Surface tension color function value |
169
170
|`model_filepath`| String | Not Supported | Path to an STL or OBJ file (not all OBJs are supported). |
@@ -180,6 +181,8 @@ The parameters define the geometries and physical parameters of fluid components
180
181
Note that the domain must be fully filled with patche(s).
181
182
The code outputs error messages when an empty region is left in the domain.
182
183
184
+
-`tau_e(i)` is the `i`-th component of the elastic stress tensor, ordered as `tau_xx`, `tau_xy`, `tau_yy`, `tau_xz`, `tau_yz`, and `tau_zz`. 1D simulation requires `tau(1)`, 2D `tau(1:3)`, and 3D `tau(1:6)`.
185
+
183
186
#### Analytical Definition of Primitive Variables
184
187
185
188
Some parameters, as described above, can be defined by analytical functions in the input file. For example, one can define the following patch:
@@ -330,6 +333,7 @@ Additional details on this specification can be found in [The Naca Airfoil Serie
330
333
|`qv`**| Real | Stiffened-gas parameter $q$ of fluid. |
331
334
|`qvp`**| Real | Stiffened-gas parameter $q'$ of fluid. |
332
335
|`sigma`| Real | Surface tension coefficient |
336
+
|`G`| Real | Shear modulus of solid. |
333
337
334
338
Fluid material's parameters. All parameters except for sigma should be prepended with `fluid_pp(i)` where $i$ is the fluid index.
335
339
@@ -349,6 +353,8 @@ Details of implementation of viscosity in MFC can be found in [Coralic (2015)](r
349
353
350
354
-`fluid_pp(i)%%cv`, `fluid_pp(i)%%qv`, and `fluid_pp(i)%%qvp` define $c_v$, $q$, and $q'$ as parameters of $i$-th fluid that are used in stiffened gas equation of state.
351
355
356
+
-`fluid_pp(i)%%G` is required for `hypoelasticity`.
357
+
352
358
### 6. Simulation Algorithm
353
359
354
360
| Parameter | Type | Description |
@@ -391,6 +397,7 @@ Details of implementation of viscosity in MFC can be found in [Coralic (2015)](r
0 commit comments