Skip to content

Commit ae10945

Browse files
authored
Merge pull request #121 from su2code/develop
Update master
2 parents 60a4e98 + f7b4e08 commit ae10945

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)
@@ -220,6 +222,28 @@ MARKER_INLET = (inlet1, 300 , 1e6, 1.0, 0.0, 0.0, inlet2, 200, 1e6, 0.0, 1.0, 0.
220222

221223
**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`).
222224

225+
## Supersonic Inlet Boundary Condition ##
226+
Supersonic inlet boundary conditions are set using the option `MARKER_SUPERSONIC_INLET`.
227+
228+
### Thermochemical Nonequilibrium Supersonic Inlet
229+
230+
| Solver | Version |
231+
| --- | --- |
232+
| `NEMO_EULER`, `NEMO_NAVIER_STOKES` | 7.0.0 |
233+
234+
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:
235+
236+
```
237+
MARKER_SUPERSONIC_INLET = (inlet1, 300, 1e6, 1000.0, 0.0, 0.0, inlet2, 400, 1e6, 0.0, 1000.0, 0.0)
238+
```
239+
240+
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:
241+
242+
```
243+
INLET_GAS_COMPOSITION = (0.77, 0.23, 0.0, 0.0, 0.0)
244+
INLET_TEMPERATURE_VE = 288.15
245+
```
246+
223247
## Outlet Boundary Condition ##
224248

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

0 commit comments

Comments
 (0)