diff --git a/applications/utilities/postProcessing/wall/wallShearStress/wallShearStress.C b/applications/utilities/postProcessing/wall/wallShearStress/wallShearStress.C index 6f6609c2fd..b834cd1871 100644 --- a/applications/utilities/postProcessing/wall/wallShearStress/wallShearStress.C +++ b/applications/utilities/postProcessing/wall/wallShearStress/wallShearStress.C @@ -25,8 +25,8 @@ Application wallShearStress Description - Calculates and reports wall shear stress for all patches, for the - specified times when using RAS turbulence models. + Calculates and reports the turbulent wall shear stress for all patches, + for the specified times. Compressible modes is automatically selected based on the existence of the "thermophysicalProperties" dictionary required to construct the @@ -53,9 +53,9 @@ void calcIncompressible singlePhaseTransportModel laminarTransport(U, phi); - autoPtr model + autoPtr model ( - incompressible::New(U, phi, laminarTransport) + incompressible::turbulenceModel::New(U, phi, laminarTransport) ); const volSymmTensorField Reff(model->devReff()); @@ -102,15 +102,9 @@ void calcCompressible autoPtr pThermo(fluidThermo::New(mesh)); fluidThermo& thermo = pThermo(); - autoPtr model + autoPtr model ( - compressible::New - ( - rho, - U, - phi, - thermo - ) + compressible::turbulenceModel::New(rho, U, phi, thermo) ); const volSymmTensorField Reff(model->devRhoReff());