Merge branch 'master' of /home/noisy3/OpenFOAM/OpenFOAM-dev

This commit is contained in:
mattijs
2010-08-19 05:21:40 +01:00
2 changed files with 8 additions and 0 deletions

View File

@ -75,6 +75,12 @@ tmp<volScalarField> SpalartAllmarasDDES::fd(const volScalarField& S) const
}
tmp<volScalarField> SpalartAllmarasDDES::S(const volTensorField& gradU) const
{
return sqrt(2.0)*mag(symm(gradU));
}
tmp<volScalarField> SpalartAllmarasDDES::dTilda(const volScalarField& S) const
{
return max

View File

@ -81,6 +81,8 @@ protected:
//- Length scale
virtual tmp<volScalarField> dTilda(const volScalarField& S) const;
virtual tmp<volScalarField> S(const volTensorField& gradU) const;
public: