Skip to content

Commit 5a2108e

Browse files
committed
sa options
1 parent fc55ee6 commit 5a2108e

File tree

1 file changed

+24
-9
lines changed

1 file changed

+24
-9
lines changed

_docs_v7/Physical-Definition.md

Lines changed: 24 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -111,30 +111,45 @@ The turbulent Pradtl number can be modified with option `PRANDTL_TURB` (the defa
111111

112112
### Spalart-Allmaras (SA) ###
113113

114-
SU2 implements the following SA versions:
115-
**WIP**
114+
SU2 implements several versions and corrections of the SA model.
115+
The model is selected using `KIND_TURB_MODEL= SA` and the modifications via the `SA_OPTIONS` list, if this list is empty SU2 defaults to `SA-noft2`.
116+
The freestream and inlet conditions are specified via the option `FREESTREAM_NU_FACTOR= 3` (ratio of SA variable to freestream kinematic viscosity).
117+
118+
The following modifications are allowed (refer to [NASA's TMR](https://turbmodels.larc.nasa.gov/spalart.html) for further info):
119+
- Versions:
120+
- `NEGATIVE` - Negative SA model.
121+
- `EDWARDS` - Edwards modification.
122+
- `BCM` - BCM transitional model.
123+
- `FT2` - SA model **with** ft2 term, note that by default we omit this term.
124+
- Corrections:
125+
- `QCR2000` - Quadratic contitutive relation used in the stress tensor.
126+
- `COMPRESSIBILITY` - Mixing layer compressibility correction.
127+
- `ROTATION` - Dacles-Mariani et al. rotation correction.
128+
129+
All the modifications can be combined with each other expect `NEGATIVE`, `EDWARDS`, and `BCM`. However some combinations are not considered standard, e.g. `SA-neg-noft2`, see TMR for details.
130+
For example, to specify `SA-neg-R-comp-QCR2000` use `SA_OPTIONS= NEGATIVE, FT2, ROTATION, COMPRESSIBILITY, QCR2000`.
131+
132+
The rough wall correction is implicitly turned on by specifying roughness values for wall markers via the `WALL_ROUGHNESS` option.
116133

117134
### Shear Stress Transport (SST) ###
118135

119136
SU2 implements the "Standard" (1994) and 2003 versions of the SST model along with several modifications.
120137

121-
**Note:** Currently all versions are "modified" i.e. the turbulence kinetic energy (tke) is not included in the viscous stress tensor.
138+
**Note:** Currently all versions are "modified" i.e. the turbulence kinetic energy (TKE) is not included in the viscous stress tensor.
122139

123-
The model is selected using `KIND_TURB_MODEL= SST` and the modifications via the `SST_OPTIONS` list.
124-
The freestream and inlet conditions are specified via the options
125-
`FREESTREAM_TURBULENCEINTENSITY= 0.05` (5%)
126-
`FREESTREAM_TURB2LAMVISCRATIO= 10` (ratio of turbulent to laminar viscosity)
140+
The model is selected using `KIND_TURB_MODEL= SST` and the modifications via the `SST_OPTIONS` list, if this list is empty SU2 defaults to `SSTm` (see warning below).
141+
The freestream and inlet conditions are specified via the options `FREESTREAM_TURBULENCEINTENSITY= 0.05` (5%) and `FREESTREAM_TURB2LAMVISCRATIO= 10` (ratio of turbulent to laminar viscosity).
127142

128143
**Note:** The default values for these options are suitable for internal flows but may be too high for external aerodynamics problems.
129144

130145
The following modifications are allowed:
131146
- Versions:
132147
- `V1994m` - SSTm **WARNING:** Our implementation has a small [inconsistency with the literature](https://github.com/su2code/SU2/issues/1551), which will be resolved in the next major SU2 update (i.e. version 8).
133-
- `V2003m` - SST-2003m, no known inconsistencies.
148+
- `V2003m` - SST-2003m (no known inconsistencies).
134149
- Production modifications:
135150
- `VORTICITY` - Uses vorticity to compute the source term instead of strain-rate magnitude.
136151
- `KATO_LAUNDER` - Uses the Kato-Launder modification (vorticity times strain-rate).
137-
- `UQ` - Production is computed using a modified stress tensor for [uncertainty quantification](https://su2code.github.io/tutorials/UQ_NACA0012/). **Note** with this modification tke is always included in the stress tensor.
152+
- `UQ` - Production is computed using a modified stress tensor for [uncertainty quantification](https://su2code.github.io/tutorials/UQ_NACA0012/). **Note** with this modification TKE is always included in the stress tensor.
138153
- Corrections:
139154
- `SUSTAINING` - SST with controlled decay.
140155
- Curvature corrections are currently not implemented.

0 commit comments

Comments
 (0)