-
Notifications
You must be signed in to change notification settings - Fork 919
Description
Describe the bug
A clear and concise description of what the bug is and what you expect the behavior to be instead. If applicable, add screenshots to help explain your problem.
It was brought to our attention that what we currently define as the "Standard" SA model is not using the ft2 term in the source implementation:
| // Production = cb1*(1.0-ft2)*Shat*TurbVar_i[0]*Volume; |
which means it is actually the SA-noft2 variant:
https://turbmodels.larc.nasa.gov/spalart.html#sanoft2
In practice, this should make little difference for most problems, but it can be important for DES/DDES (where the ft2 term is typically avoided). However, it is also important that we be clear about the different variants of the turbulence models to users, since having confidence in the models for V&V, reproducibility, etc., is so critical.
I would vote that we reinstate the "standard" model and make a new SA variant for SA-noft2 as a separate option (without duplicating a ton of code, if possible). Anyone else feel strongly about this topic?