Incompressible turbulence models: Remove the correction of the laminar transport model

Explicitly correct laminar transport at the application level as is done in the multiphase solvers
This commit is contained in:
Henry
2015-01-12 12:32:38 +00:00
parent 5a4a4e5e4a
commit b5277967c0
108 changed files with 133 additions and 359 deletions

View File

@ -97,6 +97,7 @@ int main(int argc, char *argv[])
if (pimple.turbCorr())
{
laminarTransport.correct();
turbulence->correct();
}
}

View File

@ -81,6 +81,7 @@ int main(int argc, char *argv[])
#include "pEqn.H"
}
laminarTransport.correct();
turbulence->correct();
runTime.write();

View File

@ -216,6 +216,7 @@ int main(int argc, char *argv[])
Ua.correctBoundaryConditions();
}
laminarTransport.correct();
turbulence->correct();
runTime.write();

View File

@ -79,7 +79,7 @@ int main(int argc, char *argv[])
U += (Ubar - UbarStar);
gradP += (Ubar - UbarStar)/(1.0/UEqn.A())().weightedAverage(mesh.V());
laminarTransport.correct();
turbulence->correct();
Info<< "Uncorrected Ubar = " << (flowDirection & UbarStar.value())

View File

@ -82,6 +82,7 @@ int main(int argc, char *argv[])
if (pimple.turbCorr())
{
laminarTransport.correct();
turbulence->correct();
}
}

View File

@ -104,6 +104,7 @@ int main(int argc, char *argv[])
if (pimple.turbCorr())
{
laminarTransport.correct();
turbulence->correct();
}
}

View File

@ -83,6 +83,7 @@ int main(int argc, char *argv[])
if (pimple.turbCorr())
{
laminarTransport.correct();
turbulence->correct();
}
}

View File

@ -26,7 +26,7 @@
mesh
);
# include "createPhi.H"
#include "createPhi.H"
label pRefCell = 0;

View File

@ -130,6 +130,7 @@ int main(int argc, char *argv[])
}
}
laminarTransport.correct();
turbulence->correct();
runTime.write();

View File

@ -64,6 +64,7 @@ int main(int argc, char *argv[])
#include "pEqn.H"
}
laminarTransport.correct();
turbulence->correct();
if (runTime.outputTime())

View File

@ -68,6 +68,7 @@ int main(int argc, char *argv[])
#include "pEqn.H"
}
laminarTransport.correct();
turbulence->correct();
runTime.write();

View File

@ -62,6 +62,7 @@ int main(int argc, char *argv[])
#include "pEqn.H"
}
laminarTransport.correct();
turbulence->correct();
runTime.write();

View File

@ -134,6 +134,7 @@ int main(int argc, char *argv[])
if (pimple.turbCorr())
{
laminarTransport.correct();
turbulence->correct();
}
}

View File

@ -83,6 +83,7 @@ int main(int argc, char *argv[])
if (pimple.turbCorr())
{
laminarTransport.correct();
turbulence->correct();
}
}

View File

@ -1,4 +1,5 @@
EXE_INC = \
-I$(FOAM_SOLVERS)/incompressible/pisoFoam \
-I$(LIB_SRC)/TurbulenceModels/turbulenceModels/lnInclude \
-I$(LIB_SRC)/TurbulenceModels/incompressible/lnInclude \
-I$(LIB_SRC)/transportModels \

View File

@ -33,7 +33,7 @@ Description
#include "fvCFD.H"
#include "singlePhaseTransportModel.H"
#include "IncompressibleTurbulenceModel.H"
#include "turbulenceModel.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

View File

@ -1,48 +0,0 @@
Info<< "Reading field p\n" << endl;
volScalarField p
(
IOobject
(
"p",
runTime.timeName(),
mesh,
IOobject::MUST_READ,
IOobject::AUTO_WRITE
),
mesh
);
Info<< "Reading field U\n" << endl;
volVectorField U
(
IOobject
(
"U",
runTime.timeName(),
mesh,
IOobject::MUST_READ,
IOobject::AUTO_WRITE
),
mesh
);
#include "createPhi.H"
label pRefCell = 0;
scalar pRefValue = 0.0;
setRefCell(p, mesh.solutionDict().subDict("PISO"), pRefCell, pRefValue);
singlePhaseTransportModel laminarTransport(U, phi);
autoPtr<IncompressibleTurbulenceModel<transportModel> >
turbulence
(
IncompressibleTurbulenceModel<transportModel>::New
(
U,
phi,
laminarTransport
)
);

View File

@ -0,0 +1,9 @@
#include "IncompressibleTurbulenceModel.H"
namespace Foam
{
namespace incompressible
{
typedef IncompressibleTurbulenceModel<transportModel> turbulenceModel;
}
}

View File

@ -1,4 +1,5 @@
EXE_INC = \
-I$(FOAM_SOLVERS)/compressible/rhoPimpleFoam \
-I$(LIB_SRC)/TurbulenceModels/turbulenceModels/lnInclude \
-I$(LIB_SRC)/TurbulenceModels/compressible/lnInclude \
-I$(LIB_SRC)/thermophysicalModels/basic/lnInclude \

View File

@ -1,22 +0,0 @@
// Solve the Momentum equation
tmp<fvVectorMatrix> UEqn
(
fvm::ddt(rho, U)
+ fvm::div(phi, U)
+ turbulence->divDevRhoReff(U)
==
fvOptions(rho, U)
);
UEqn().relax();
fvOptions.constrain(UEqn());
if (pimple.momentumPredictor())
{
solve(UEqn() == -fvc::grad(p));
fvOptions.correct(U);
K = 0.5*magSqr(U);
}

View File

@ -1,73 +0,0 @@
Info<< "Reading thermophysical properties\n" << endl;
autoPtr<psiThermo> pThermo
(
psiThermo::New(mesh)
);
psiThermo& thermo = pThermo();
thermo.validate(args.executable(), "h", "e");
volScalarField& p = thermo.p();
const volScalarField& psi = thermo.psi();
volScalarField rho
(
IOobject
(
"rho",
runTime.timeName(),
mesh,
IOobject::READ_IF_PRESENT,
IOobject::AUTO_WRITE
),
thermo.rho()
);
Info<< "Reading field U\n" << endl;
volVectorField U
(
IOobject
(
"U",
runTime.timeName(),
mesh,
IOobject::MUST_READ,
IOobject::AUTO_WRITE
),
mesh
);
#include "compressibleCreatePhi.H"
dimensionedScalar rhoMax(pimple.dict().lookup("rhoMax"));
dimensionedScalar rhoMin(pimple.dict().lookup("rhoMin"));
Info<< "Creating turbulence model\n" << endl;
autoPtr<CompressibleTurbulenceModel<fluidThermo> >
turbulence
(
CompressibleTurbulenceModel<fluidThermo>::New
(
rho,
U,
phi,
thermo
)
);
Info<< "Creating field dpdt\n" << endl;
volScalarField dpdt
(
IOobject
(
"dpdt",
runTime.timeName(),
mesh
),
mesh,
dimensionedScalar("dpdt", p.dimensions()/dimTime, 0)
);
Info<< "Creating field kinetic energy K\n" << endl;
volScalarField K("K", 0.5*magSqr(U));

View File

@ -1,113 +0,0 @@
rho = thermo.rho();
rho = max(rho, rhoMin);
rho = min(rho, rhoMax);
rho.relax();
volScalarField rAU(1.0/UEqn().A());
volVectorField HbyA("HbyA", U);
HbyA = rAU*UEqn().H();
if (pimple.nCorrPISO() <= 1)
{
UEqn.clear();
}
if (pimple.transonic())
{
surfaceScalarField phid
(
"phid",
fvc::interpolate(psi)
*(
(fvc::interpolate(HbyA) & mesh.Sf())
+ fvc::ddtCorr(rAU, rho, U, phi)
)
);
fvOptions.makeRelative(fvc::interpolate(psi), phid);
volScalarField Dp("Dp", rho*rAU);
while (pimple.correctNonOrthogonal())
{
fvScalarMatrix pEqn
(
fvm::ddt(psi, p)
+ fvm::div(phid, p)
- fvm::laplacian(Dp, p)
==
fvOptions(psi, p, rho.name())
);
fvOptions.constrain(pEqn);
pEqn.solve(mesh.solver(p.select(pimple.finalInnerIter())));
if (pimple.finalNonOrthogonalIter())
{
phi == pEqn.flux();
}
}
}
else
{
surfaceScalarField phiHbyA
(
"phiHbyA",
fvc::interpolate(rho)
*(
(fvc::interpolate(HbyA) & mesh.Sf())
+ fvc::ddtCorr(rAU, rho, U, phi)
)
);
fvOptions.makeRelative(fvc::interpolate(rho), phiHbyA);
volScalarField Dp("Dp", rho*rAU);
while (pimple.correctNonOrthogonal())
{
// Pressure corrector
fvScalarMatrix pEqn
(
fvm::ddt(psi, p)
+ fvc::div(phiHbyA)
- fvm::laplacian(Dp, p)
==
fvOptions(psi, p, rho.name())
);
fvOptions.constrain(pEqn);
pEqn.solve(mesh.solver(p.select(pimple.finalInnerIter())));
if (pimple.finalNonOrthogonalIter())
{
phi = phiHbyA + pEqn.flux();
}
}
}
#include "rhoEqn.H"
#include "compressibleContinuityErrs.H"
// Explicitly relax pressure for momentum corrector
p.relax();
// Recalculate density from the relaxed pressure
rho = thermo.rho();
rho = max(rho, rhoMin);
rho = min(rho, rhoMax);
rho.relax();
Info<< "rho max/min : " << max(rho).value()
<< " " << min(rho).value() << endl;
U = HbyA - rAU*fvc::grad(p);
U.correctBoundaryConditions();
fvOptions.correct(U);
K = 0.5*magSqr(U);
if (thermo.dpdt())
{
dpdt = fvc::ddt(p);
}

View File

@ -35,7 +35,7 @@ Description
#include "fvCFD.H"
#include "psiThermo.H"
#include "CompressibleTurbulenceModel.H"
#include "turbulenceModel.H"
#include "bound.H"
#include "pimpleControl.H"
#include "fvIOoptionList.H"

View File

@ -0,0 +1,9 @@
#include "CompressibleTurbulenceModel.H"
namespace Foam
{
namespace compressible
{
typedef CompressibleTurbulenceModel<fluidThermo> turbulenceModel;
}
}

View File

@ -39,7 +39,7 @@ DESModel::DESModel
const word& type,
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName
)
:

View File

@ -84,7 +84,7 @@ public:
const word& type,
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName
);

View File

@ -55,7 +55,7 @@ DeardorffDiffStress::DeardorffDiffStress
(
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName,
const word& modelName
)

View File

@ -105,7 +105,7 @@ public:
(
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName = turbulenceModel::typeName,
const word& modelName = typeName
);

View File

@ -45,7 +45,7 @@ GenEddyVisc::GenEddyVisc
(
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName,
const word& modelName
)

View File

@ -91,7 +91,7 @@ public:
(
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName = turbulenceModel::typeName,
const word& modelName = typeName
);

View File

@ -45,7 +45,7 @@ GenSGSStress::GenSGSStress
(
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName,
const word& modelName
)

View File

@ -91,7 +91,7 @@ public:
(
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName = turbulenceModel::typeName,
const word& modelName = typeName
);

View File

@ -57,7 +57,7 @@ LESModel::LESModel
const word& type,
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName
)
:
@ -95,7 +95,7 @@ autoPtr<LESModel> LESModel::New
(
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName
)
{

View File

@ -122,7 +122,7 @@ public:
(
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName
),
(U, phi, transport, turbulenceModelName)
@ -137,7 +137,7 @@ public:
const word& type,
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName = turbulenceModel::typeName
);
@ -149,7 +149,7 @@ public:
(
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName = turbulenceModel::typeName
);

View File

@ -55,7 +55,7 @@ LRRDiffStress::LRRDiffStress
(
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName,
const word& modelName
)

View File

@ -102,7 +102,7 @@ public:
(
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName = turbulenceModel::typeName,
const word& modelName = typeName
);

View File

@ -55,7 +55,7 @@ Smagorinsky::Smagorinsky
(
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName,
const word& modelName
)

View File

@ -99,7 +99,7 @@ public:
(
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName = turbulenceModel::typeName,
const word& modelName = typeName
);

View File

@ -46,7 +46,7 @@ Smagorinsky2::Smagorinsky2
(
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName,
const word& modelName
)

View File

@ -96,7 +96,7 @@ public:
(
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName = turbulenceModel::typeName,
const word& modelName = typeName
);

View File

@ -180,7 +180,7 @@ SpalartAllmaras::SpalartAllmaras
(
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName,
const word& modelName
)

View File

@ -157,7 +157,7 @@ public:
(
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName = turbulenceModel::typeName,
const word& modelName = typeName
);

View File

@ -99,7 +99,7 @@ SpalartAllmarasDDES::SpalartAllmarasDDES
(
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName,
const word& modelName
)

View File

@ -100,7 +100,7 @@ public:
(
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName = turbulenceModel::typeName,
const word& modelName = typeName
);

View File

@ -146,7 +146,7 @@ SpalartAllmarasIDDES::SpalartAllmarasIDDES
(
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName,
const word& modelName
)

View File

@ -109,7 +109,7 @@ public:
(
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName = turbulenceModel::typeName,
const word& modelName = typeName
);

View File

@ -58,7 +58,7 @@ dynLagrangian::dynLagrangian
(
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName,
const word& modelName
)

View File

@ -137,7 +137,7 @@ public:
(
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName = turbulenceModel::typeName,
const word& modelName = typeName
);

View File

@ -106,7 +106,7 @@ dynOneEqEddy::dynOneEqEddy
(
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName,
const word& modelName
)

View File

@ -135,7 +135,7 @@ public:
(
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName = turbulenceModel::typeName,
const word& modelName = typeName
);

View File

@ -122,7 +122,7 @@ homogeneousDynOneEqEddy::homogeneousDynOneEqEddy
(
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName,
const word& modelName
)

View File

@ -113,7 +113,7 @@ public:
(
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName = turbulenceModel::typeName,
const word& modelName = typeName
);

View File

@ -110,7 +110,7 @@ homogeneousDynSmagorinsky::homogeneousDynSmagorinsky
(
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName,
const word& modelName
)

View File

@ -126,7 +126,7 @@ public:
(
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName = turbulenceModel::typeName,
const word& modelName = typeName
);

View File

@ -120,7 +120,7 @@ kOmegaSSTSAS::kOmegaSSTSAS
(
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName,
const word& modelName
)

View File

@ -199,7 +199,7 @@ public:
(
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName = turbulenceModel::typeName,
const word& modelName = typeName
);

View File

@ -47,7 +47,7 @@ laminar::laminar
(
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName,
const word& modelName
)

View File

@ -76,7 +76,7 @@ public:
(
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName = turbulenceModel::typeName,
const word& modelName = typeName
);

View File

@ -46,7 +46,7 @@ mixedSmagorinsky::mixedSmagorinsky
(
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName,
const word& modelName
)

View File

@ -102,7 +102,7 @@ public:
(
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName = turbulenceModel::typeName,
const word& modelName = typeName
);

View File

@ -56,7 +56,7 @@ oneEqEddy::oneEqEddy
(
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName,
const word& modelName
)

View File

@ -105,7 +105,7 @@ public:
(
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName = turbulenceModel::typeName,
const word& modelName = typeName
);

View File

@ -44,7 +44,7 @@ scaleSimilarity::scaleSimilarity
(
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName,
const word& modelName
)

View File

@ -87,7 +87,7 @@ public:
(
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName = turbulenceModel::typeName,
const word& modelName = typeName
);

View File

@ -65,7 +65,7 @@ spectEddyVisc::spectEddyVisc
(
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName,
const word& modelName
)

View File

@ -107,7 +107,7 @@ public:
(
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName = turbulenceModel::typeName,
const word& modelName = typeName
);

View File

@ -49,7 +49,7 @@ LRR::LRR
(
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName,
const word& modelName
)

View File

@ -115,7 +115,7 @@ public:
(
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName = turbulenceModel::typeName,
const word& modelName = typeName
);

View File

@ -48,7 +48,7 @@ LamBremhorstKE::LamBremhorstKE
(
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName,
const word& modelName
)

View File

@ -96,7 +96,7 @@ public:
(
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName = turbulenceModel::typeName,
const word& modelName = typeName
);

View File

@ -49,7 +49,7 @@ LaunderGibsonRSTM::LaunderGibsonRSTM
(
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName,
const word& modelName
)

View File

@ -127,7 +127,7 @@ public:
(
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName = turbulenceModel::typeName,
const word& modelName = typeName
);

View File

@ -64,7 +64,7 @@ LaunderSharmaKE::LaunderSharmaKE
(
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName,
const word& modelName
)

View File

@ -108,7 +108,7 @@ public:
(
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName = turbulenceModel::typeName,
const word& modelName = typeName
);

View File

@ -48,7 +48,7 @@ LienCubicKE::LienCubicKE
(
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName,
const word& modelName
)

View File

@ -104,7 +104,7 @@ public:
(
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName = turbulenceModel::typeName,
const word& modelName = typeName
);

View File

@ -49,7 +49,7 @@ LienCubicKELowRe::LienCubicKELowRe
(
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName,
const word& modelName
)

View File

@ -134,7 +134,7 @@ public:
(
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName = turbulenceModel::typeName,
const word& modelName = typeName
);

View File

@ -49,7 +49,7 @@ LienLeschzinerLowRe::LienLeschzinerLowRe
(
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName,
const word& modelName
)

View File

@ -104,7 +104,7 @@ public:
(
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName = turbulenceModel::typeName,
const word& modelName = typeName
);

View File

@ -48,7 +48,7 @@ NonlinearKEShih::NonlinearKEShih
(
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName,
const word& modelName
)

View File

@ -107,7 +107,7 @@ public:
(
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName = turbulenceModel::typeName,
const word& modelName = typeName
);

View File

@ -57,7 +57,7 @@ RASModel::RASModel
const word& type,
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName
)
:
@ -99,7 +99,7 @@ autoPtr<RASModel> RASModel::New
(
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName
)
{

View File

@ -130,7 +130,7 @@ public:
(
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName
),
(U, phi, transport, turbulenceModelName)
@ -145,7 +145,7 @@ public:
const word& type,
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName = turbulenceModel::typeName
);
@ -157,7 +157,7 @@ public:
(
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName = turbulenceModel::typeName
);

View File

@ -48,7 +48,7 @@ RNGkEpsilon::RNGkEpsilon
(
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName,
const word& modelName
)

View File

@ -114,7 +114,7 @@ public:
(
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName = turbulenceModel::typeName,
const word& modelName = typeName
);

View File

@ -143,7 +143,7 @@ SpalartAllmaras::SpalartAllmaras
(
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName,
const word& modelName
)

View File

@ -159,7 +159,7 @@ public:
(
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName = turbulenceModel::typeName,
const word& modelName = typeName
);

View File

@ -48,7 +48,7 @@ kEpsilon::kEpsilon
(
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName,
const word& modelName
)

View File

@ -111,7 +111,7 @@ public:
(
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName = turbulenceModel::typeName,
const word& modelName = typeName
);

View File

@ -48,7 +48,7 @@ kOmega::kOmega
(
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName,
const word& modelName
)

View File

@ -114,7 +114,7 @@ public:
(
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName = turbulenceModel::typeName,
const word& modelName = typeName
);

View File

@ -117,7 +117,7 @@ kOmegaSST::kOmegaSST
(
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName,
const word& modelName
)

View File

@ -206,7 +206,7 @@ public:
(
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName = turbulenceModel::typeName,
const word& modelName = typeName
);

View File

@ -206,7 +206,7 @@ kkLOmega::kkLOmega
(
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName,
const word& modelName
)

View File

@ -200,7 +200,7 @@ public:
(
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName = turbulenceModel::typeName,
const word& modelName = typeName
);

View File

@ -46,7 +46,7 @@ laminar::laminar
(
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName,
const word& modelName
)

View File

@ -70,7 +70,7 @@ public:
(
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName = turbulenceModel::typeName,
const word& modelName = typeName
);

View File

@ -74,7 +74,7 @@ qZeta::qZeta
(
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName,
const word& modelName
)

View File

@ -119,7 +119,7 @@ public:
(
const volVectorField& U,
const surfaceScalarField& phi,
transportModel& transport,
const transportModel& transport,
const word& turbulenceModelName = turbulenceModel::typeName,
const word& modelName = typeName
);

Some files were not shown because too many files have changed in this diff Show More