2 scalar Cmu25 = ::pow(Cmu, 0.25);
4 const fvPatchList& patches = mesh.boundary();
6 forAll(patches, patchi)
8 const fvPatch& curPatch = patches[patchi];
10 if (isType<wallFvPatch>(curPatch))
12 const scalarField& rhow = rho.boundaryField()[patchi];
14 const scalarField muw = mul.boundaryField()[patchi];
15 scalarField& mutw = mut.boundaryField()[patchi];
17 forAll(curPatch, facei)
19 label faceCelli = curPatch.faceCells()[facei];
22 Cmu25*y[patchi][facei]*::sqrt(k[faceCelli])
23 /(muw[facei]/rhow[facei]);
29 *(yPlus*kappa/::log(E*yPlus) - 1);