Skip to content

Commit efc99c8

Browse files
authored
Merge branch 'master' into prcode
2 parents 1f079a1 + a3d39df commit efc99c8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

74 files changed

+48209
-307
lines changed

README.md

+8-2
Original file line numberDiff line numberDiff line change
@@ -37,19 +37,25 @@ MFC has high-level documentation, visualizations, and more on [its website](http
3737
## An example
3838

3939
We keep many examples.
40-
Here's one!
40+
Here are some of them!
4141
MFC can execute high-fidelity simulations of shock-droplet interaction (see `examples/3d_shockdroplet`)
4242

4343
<p align="center">
4444
<img src="docs/res/shockdrop.png" alt="Shock Droplet Example" width="700"/>
4545
</p>
4646

47-
Another example is the high-Mach flow over an airfoil, shown below.
47+
This one simulates high-Mach flow over an airfoil, shown below.
4848

4949
<p align="center">
5050
<img src="docs/res/airfoil.png" alt="Airfoil Example" width="700"/><br/>
5151
</p>
5252

53+
This one simulates high amplitude acoustic wave through a circular orifice opening, shown below.
54+
55+
<p align="center">
56+
<img src="docs/res/orifice.png" alt="Orifice Example" width="700"/><br/>
57+
</p>
58+
5359

5460
## Getting started
5561

docs/documentation/case.md

+19-7
Original file line numberDiff line numberDiff line change
@@ -166,12 +166,12 @@ MPI topology is automatically optimized to maximize the parallel efficiency for
166166
| `vel(i)` * | Real | Supported | Velocity in direction $i$. |
167167
| `hcid` * | Integer | N/A | Hard coded patch id |
168168
| `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.|
175175

176176
*: These parameters should be prepended with `patch_icpp(j)%` where $j$ is the patch index.
177177

@@ -263,7 +263,11 @@ Optimal choice of the value of `smooth_coeff` is case-dependent and left to the
263263
- `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.
264264
These physical parameters must be consistent with fluid material's parameters defined in the next subsection.
265265

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.
267271

268272
### 4. Immersed Boundary Patches
269273

@@ -279,6 +283,12 @@ These physical parameters must be consistent with fluid material's parameters de
279283
| `m` | Real | NACA airfoil parameters (see below) |
280284
| `p` | Real | NACA airfoil parameters (see below) |
281285
| `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.|
282292

283293
These parameters should be prepended with `patch_ib(j)%` where $j$ is the patch index.
284294

@@ -301,6 +311,8 @@ Additional details on this specification can be found in [The Naca Airfoil Serie
301311

302312
- `slip` applies a slip boundary to the surface of the patch if true and a no-slip boundary condition to the surface if false.
303313

314+
- Please see [Patch Parameters](#3-patches) for the descriptions of `model_filepath`, `model_scale`, `model_rotate`, `model_translate`, `model_spc`, and `model_threshold`.
315+
304316
### 5. Fluid Material’s
305317

306318
| Parameter | Type | Description |

docs/res/orifice.png

210 KB
Loading

0 commit comments

Comments
 (0)