Skip to content

Commit 8dc0d08

Browse files
committed
add nemo ss inlet doc
Signed-off-by: jtneedels <[email protected]>
1 parent 7f270e1 commit 8dc0d08

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

_docs_v7/Markers-and-BC.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ The term *Marker* refers to a named entity in your mesh file. Boundary condition
2020
- [Mass Flow Inlet](#mass-flow-inlet)
2121
- [Velocity Inlet](#velocity-inlet)
2222
- [Pressure Inlet](#pressure-inlet)
23+
- [Supersonic Inlet Boundary Condition](#supersonic-inlet-boundary-condition)
24+
- [Thermochemical Nonequilibrium Supersonic Inlet](#thermochemical-nonequilibrium-supersonic-inlet)
2325
- [Outlet Boundary Condition](#outlet-boundary-condition)
2426
- [Pressure Outlet (Compressible)](#pressure-outlet-compressible)
2527
- [Pressure Outlet (Incompressible)](#pressure-outlet-incompressible)
@@ -215,6 +217,28 @@ MARKER_INLET = (inlet1, 300 , 1e6, 1.0, 0.0, 0.0, inlet2, 200, 1e6, 0.0, 1.0, 0.
215217

216218
**Note 2**: Updates to the velocity based on the prescribed pressure are damped in order to help with stability/convergence. The damping coefficient can be changed using the `INC_INLET_DAMPING` option (default is `0.1`).
217219

220+
## Supersonic Inlet Boundary Condition ##
221+
Supersonic inlet boundary conditions are set using the option `MARKER_SUPERSONIC_INLET`.
222+
223+
### Thermochemical Nonequilibrium Supersonic Inlet
224+
225+
| Solver | Version |
226+
| --- | --- |
227+
| `NEMO_EULER`, `NEMO_NAVIER_STOKES` | 7.0.0 |
228+
229+
The format for `MARKER_SUPERSONIC_INLET` for the NEMO solvers is the marker name, followed by the static translational-rotational Temperature (in Kelvin `[K]`), the static Pressure (in Pascal `[Pa]`) and the flow velocity vector (in meter per second `[m/s]`). For example:
230+
231+
```
232+
MARKER_SUPERSONIC_INLET = (inlet1, 300, 1e6, 1000.0, 0.0, 0.0, inlet2, 400, 1e6, 0.0, 1000.0, 0.0)
233+
```
234+
235+
For the NEMO solvers, a gas composition at the inlet must also be specified using the `INLET_GAS_COMPOSITION` option, as well as the vibrational-electronic Temperature at the inlet, using the `INLET_TEMPERATURE_VE` option. If no vibrational-electronic Temperature is specified, the given translational-rotational Temperature set for the inlet is used by default. For example:
236+
237+
```
238+
INLET_GAS_COMPOSITION = (0.77, 0.23, 0.0, 0.0, 0.0)
239+
INLET_TEMPERATURE_VE = 288.15
240+
```
241+
218242
## Outlet Boundary Condition ##
219243

220244
Outlet boundary conditions are set using the `MARKER_OUTLET` option.

0 commit comments

Comments
 (0)