Hotfix: Turbulence generation fix in k-omega-SST. Thijs Gillebaart

This commit is contained in:
Hrvoje Jasak 2015-09-15 15:33:00 +01:00
parent b7a18ac1df
commit 094e842fc0

View file

@ -400,7 +400,7 @@ void kOmegaSST::correct()
}
const volScalarField S2(2*magSqr(symm(fvc::grad(U_))));
volScalarField G("RASModel::G", nut_*2*S2);
volScalarField G("RASModel::G", nut_*S2);
// Update omega and G at the wall
omega_.boundaryField().updateCoeffs();