functionObjects: Upgrade to use new turbulence modeling library

This commit is contained in:
Henry
2015-05-17 14:56:40 +01:00
parent 48a2213965
commit 262ad3f005
25 changed files with 276 additions and 1410 deletions

View File

@ -52,7 +52,6 @@ void calcYPlus
(
const TurbulenceModel& turbulenceModel,
const fvMesh& mesh,
const Time& runTime,
const volVectorField& U,
volScalarField& yPlus
)
@ -128,7 +127,7 @@ void calcIncompressibleYPlus
incompressible::turbulenceModel::New(U, phi, laminarTransport)
);
calcYPlus(turbulenceModel, mesh, runTime, U, yPlus);
calcYPlus(turbulenceModel, mesh, U, yPlus);
}
@ -174,7 +173,7 @@ void calcCompressibleYPlus
)
);
calcYPlus(turbulenceModel, mesh, runTime, U, yPlus);
calcYPlus(turbulenceModel, mesh, U, yPlus);
}