Extend-bazaar/Toolkits/kOmegaSST-V

From OpenFOAMWiki
< Extend-bazaar‎ | Toolkits
Revision as of 11:10, 31 January 2019 by HFujio (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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

Valid versions: OF Version 32ext.png

  • 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