Corrected rho used for yPlus
This commit is contained in:
parent
840078c02e
commit
4384179034
1 changed files with 2 additions and 1 deletions
|
|
@ -13,6 +13,7 @@
|
|||
{
|
||||
scalarField& mutw = mut.boundaryField()[patchi];
|
||||
const scalarField& mulw = mul.boundaryField()[patchi];
|
||||
const scalarField& rhow = rho.boundaryField()[patchi];
|
||||
|
||||
forAll(curPatch, facei)
|
||||
{
|
||||
|
|
@ -20,7 +21,7 @@
|
|||
|
||||
scalar yPlus =
|
||||
Cmu25*y[patchi][facei]*::sqrt(k[faceCelli])
|
||||
/(mulw[facei]/rho[facei]);
|
||||
/(mulw[facei]/rhow[facei]);
|
||||
|
||||
if (yPlus > 11.6)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue