Revert error in selection of laminar

This commit is contained in:
Hrvoje Jasak 2012-11-30 14:13:56 +00:00
parent 4feb140631
commit 4c00b8b949
2 changed files with 29 additions and 5 deletions

View file

@ -58,6 +58,19 @@ laminar::laminar
{}
// * * * * * * * * * * * * * * * * * Selectors * * * * * * * * * * * * * * * //
autoPtr<laminar> laminar::New
(
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& lamTransportModel
)
{
return autoPtr<laminar>(new laminar(U, phi, lamTransportModel));
}
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
tmp<volScalarField> laminar::nut() const
@ -70,7 +83,7 @@ tmp<volScalarField> laminar::nut() const
(
"nut",
runTime_.timeName(),
U_.db(),
mesh_,
IOobject::NO_READ,
IOobject::NO_WRITE
),
@ -97,7 +110,7 @@ tmp<volScalarField> laminar::k() const
(
"k",
runTime_.timeName(),
U_.db(),
mesh_,
IOobject::NO_READ,
IOobject::NO_WRITE
),
@ -118,7 +131,7 @@ tmp<volScalarField> laminar::epsilon() const
(
"epsilon",
runTime_.timeName(),
U_.db(),
mesh_,
IOobject::NO_READ,
IOobject::NO_WRITE
),
@ -142,7 +155,7 @@ tmp<volSymmTensorField> laminar::R() const
(
"R",
runTime_.timeName(),
U_.db(),
mesh_,
IOobject::NO_READ,
IOobject::NO_WRITE
),
@ -166,7 +179,7 @@ tmp<volSymmTensorField> laminar::devReff() const
(
"devRhoReff",
runTime_.timeName(),
U_.db(),
mesh_,
IOobject::NO_READ,
IOobject::NO_WRITE
),

View file

@ -70,6 +70,17 @@ public:
);
// Selectors
//- Return a reference to the selected turbulence model
static autoPtr<laminar> New
(
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& lamTransportModel
);
//- Destructor
virtual ~laminar()
{}