1 Description
This code implements Menter SST Two-Equation Model with Vorticity Source Term (SST-V).
Reference: https://turbmodels.larc.nasa.gov/sst.html
2 Installation
- Download from https://github.com/HobbyFoamer/kOmegaSST-V
- Move files by
mkdir $FOAM_SRC/turbulenceModels/incompressible/RAS/kOmegaSSTV mv kOmegaSSTV.H kOmegaSSTV.C $FOAM_SRC/turbulenceModels/incompressible/RAS/kOmegaSSTV
- Modify $FOAM_SRC/turbulenceModels/incompressible/RAS/Make/files by adding a line for the model like following
kOmegaSST/kOmegaSST.C kOmegaSSTV/kOmegaSSTV.C <- new line
- Compile
cd $FOAM_SRC/.. ./Allwmake.firstInstall
3 Usage examples
To use this code, insert into RASProperties:
RASModel kOmegaSSTV; kOmegaSSTVCoeffs { vorticitySource true; }
4 Documentation
This implementation is based on publication by NASA's "Menter Shear Stress Transport Model" page.
5 History
31 Jan 2019: First upload