consistency updates

This commit is contained in:
andy 2008-06-20 11:22:33 +01:00 committed by graham
parent 41161387e4
commit 71916c4416
314 changed files with 1519 additions and 1455 deletions

View File

@ -20,7 +20,7 @@ EXE_INC = \
EXE_LIBS = \
-lengine \
-lmeshTools \
-lcompressibleRASmodels \
-lcompressibleRASModels \
-lbasicThermophysicalModels \
-lcombustionThermophysicalModels \
-lspecie \

View File

@ -58,7 +58,7 @@ Description
#include "fvCFD.H"
#include "hhuCombustionThermo.H"
#include "RASmodel.H"
#include "RASModel.H"
#include "laminarFlameSpeed.H"
#include "XiModel.H"
#include "PDRDragModel.H"

View File

@ -59,7 +59,7 @@ Description
#include "fvCFD.H"
#include "dynamicFvMesh.H"
#include "hhuCombustionThermo.H"
#include "RASmodel.H"
#include "RASModel.H"
#include "laminarFlameSpeed.H"
#include "XiModel.H"
#include "PDRDragModel.H"

View File

@ -45,7 +45,7 @@ Foam::XiEqModels::basicSubGrid::basicSubGrid
(
const dictionary& XiEqProperties,
const hhuCombustionThermo& thermo,
const compressible::RASmodel& turbulence,
const compressible::RASModel& turbulence,
const volScalarField& Su
)
:

View File

@ -94,7 +94,7 @@ public:
(
const dictionary& XiEqProperties,
const hhuCombustionThermo& thermo,
const compressible::RASmodel& turbulence,
const compressible::RASModel& turbulence,
const volScalarField& Su
);

View File

@ -45,7 +45,7 @@ Foam::XiGModels::basicSubGrid::basicSubGrid
(
const dictionary& XiGProperties,
const hhuCombustionThermo& thermo,
const compressible::RASmodel& turbulence,
const compressible::RASModel& turbulence,
const volScalarField& Su
)
:

View File

@ -85,7 +85,7 @@ public:
(
const dictionary& XiGProperties,
const hhuCombustionThermo& thermo,
const compressible::RASmodel& turbulence,
const compressible::RASModel& turbulence,
const volScalarField& Su
);

View File

@ -40,7 +40,7 @@ namespace Foam
Foam::PDRDragModel::PDRDragModel
(
const dictionary& PDRProperties,
const compressible::RASmodel& turbulence,
const compressible::RASModel& turbulence,
const volScalarField& rho,
const volVectorField& U,
const surfaceScalarField& phi

View File

@ -38,7 +38,7 @@ SourceFiles
#include "IOdictionary.H"
#include "hhuCombustionThermo.H"
#include "RASmodel.H"
#include "RASModel.H"
#include "multivariateSurfaceInterpolationScheme.H"
#include "runTimeSelectionTables.H"
@ -62,7 +62,7 @@ protected:
dictionary PDRDragModelCoeffs_;
const compressible::RASmodel& turbulence_;
const compressible::RASModel& turbulence_;
const volScalarField& rho_;
const volVectorField& U_;
const surfaceScalarField& phi_;
@ -96,7 +96,7 @@ public:
dictionary,
(
const dictionary& PDRProperties,
const compressible::RASmodel& turbulence,
const compressible::RASModel& turbulence,
const volScalarField& rho,
const volVectorField& U,
const surfaceScalarField& phi
@ -117,7 +117,7 @@ public:
static autoPtr<PDRDragModel> New
(
const dictionary& PDRProperties,
const compressible::RASmodel& turbulence,
const compressible::RASModel& turbulence,
const volScalarField& rho,
const volVectorField& U,
const surfaceScalarField& phi
@ -130,7 +130,7 @@ public:
PDRDragModel
(
const dictionary& PDRProperties,
const compressible::RASmodel& turbulence,
const compressible::RASModel& turbulence,
const volScalarField& rho,
const volVectorField& U,
const surfaceScalarField& phi

View File

@ -31,7 +31,7 @@ License
Foam::autoPtr<Foam::PDRDragModel> Foam::PDRDragModel::New
(
const dictionary& PDRProperties,
const compressible::RASmodel& turbulence,
const compressible::RASModel& turbulence,
const volScalarField& rho,
const volVectorField& U,
const surfaceScalarField& phi

View File

@ -44,7 +44,7 @@ namespace PDRDragModels
Foam::PDRDragModels::basic::basic
(
const dictionary& PDRProperties,
const compressible::RASmodel& turbulence,
const compressible::RASModel& turbulence,
const volScalarField& rho,
const volVectorField& U,
const surfaceScalarField& phi

View File

@ -86,7 +86,7 @@ public:
basic
(
const dictionary& PDRProperties,
const compressible::RASmodel& turbulence,
const compressible::RASModel& turbulence,
const volScalarField& rho,
const volVectorField& U,
const surfaceScalarField& phi

View File

@ -35,13 +35,13 @@ namespace Foam
{
namespace compressible
{
namespace RAS
namespace RASModels
{
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
defineTypeNameAndDebug(PDRkEpsilon, 0);
addToRunTimeSelectionTable(RASmodel, PDRkEpsilon, dictionary);
addToRunTimeSelectionTable(RASModel, PDRkEpsilon, dictionary);
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
@ -53,17 +53,62 @@ PDRkEpsilon::PDRkEpsilon
basicThermo& thermophysicalModel
)
:
RASmodel(typeName, rho, U, phi, thermophysicalModel),
RASModel(typeName, rho, U, phi, thermophysicalModel),
Cmu(RASmodelCoeffs_.lookupOrAddDefault<scalar>("Cmu", 0.09)),
C1(RASmodelCoeffs_.lookupOrAddDefault<scalar>("C1", 1.44)),
C2(RASmodelCoeffs_.lookupOrAddDefault<scalar>("C2", 1.92)),
alphak(RASmodelCoeffs_.lookupOrAddDefault<scalar>("alphak", 1.0)),
alphaEps
Cmu_
(
RASmodelCoeffs_.lookupOrAddDefault<scalar>("alphaEps", 0.76923)
dimensioned<scalar>::lookupOrAddToDict
(
"Cmu",
coeffDict_,
0.09
)
),
C1_
(
dimensioned<scalar>::lookupOrAddToDict
(
"C1",
coeffDict_,
1.44
)
),
C2_
(
dimensioned<scalar>::lookupOrAddToDict
(
"C2",
coeffDict_,
1.92
)
),
alphak_
(
dimensioned<scalar>::lookupOrAddToDict
(
"alphak",
coeffDict_,
1.0
)
),
alphaEps_
(
dimensioned<scalar>::lookupOrAddToDict
(
"alphaEps",
coeffDict_,
0.76923
)
),
alphah_
(
dimensioned<scalar>::lookupOrAddToDict
(
"alphah",
coeffDict_,
1.0
)
),
alphah(RASmodelCoeffs_.lookupOrAddDefault<scalar>("alphah", 1.0)),
k_
(
@ -101,7 +146,7 @@ PDRkEpsilon::PDRkEpsilon
IOobject::NO_READ,
IOobject::NO_WRITE
),
Cmu*rho_*sqr(k_)/(epsilon_ + epsilonSmall_)
Cmu_*rho_*sqr(k_)/(epsilon_ + epsilonSmall_)
)
{
# include "wallViscosityI.H"
@ -164,14 +209,14 @@ tmp<fvVectorMatrix> PDRkEpsilon::divDevRhoReff(volVectorField& U) const
bool PDRkEpsilon::read()
{
if (RASmodel::read())
if (RASModel::read())
{
RASmodelCoeffs_.readIfPresent<scalar>("Cmu", Cmu);
RASmodelCoeffs_.readIfPresent<scalar>("C1", C1);
RASmodelCoeffs_.readIfPresent<scalar>("C2", C2);
RASmodelCoeffs_.readIfPresent<scalar>("alphak", alphak);
RASmodelCoeffs_.readIfPresent<scalar>("alphaEps", alphaEps);
RASmodelCoeffs_.readIfPresent<scalar>("alphah", alphah);
Cmu_.readIfPresent(coeffDict_);
C1_.readIfPresent(coeffDict_);
C2_.readIfPresent(coeffDict_);
alphak_.readIfPresent(coeffDict_);
alphaEps_.readIfPresent(coeffDict_);
alphah_.readIfPresent(coeffDict_);
return true;
}
@ -187,12 +232,12 @@ void PDRkEpsilon::correct()
if (!turbulence_)
{
// Re-calculate viscosity
mut_ = rho_*Cmu*sqr(k_)/(epsilon_ + epsilonSmall_);
mut_ = rho_*Cmu_*sqr(k_)/(epsilon_ + epsilonSmall_);
# include "wallViscosityI.H"
return;
}
RASmodel::correct();
RASModel::correct();
volScalarField divU = fvc::div(phi_/fvc::interpolate(rho_));
@ -223,9 +268,9 @@ void PDRkEpsilon::correct()
+ fvm::div(phi_, epsilon_)
- fvm::laplacian(DepsilonEff(), epsilon_)
==
C1*(betav*G + GR)*epsilon_/k_
- fvm::SuSp(((2.0/3.0)*C1)*betav*rho_*divU, epsilon_)
- fvm::Sp(C2*betav*rho_*epsilon_/k_, epsilon_)
C1_*(betav*G + GR)*epsilon_/k_
- fvm::SuSp(((2.0/3.0)*C1_)*betav*rho_*divU, epsilon_)
- fvm::Sp(C2_*betav*rho_*epsilon_/k_, epsilon_)
);
# include "wallDissipationI.H"
@ -255,7 +300,7 @@ void PDRkEpsilon::correct()
// Re-calculate viscosity
mut_ = rho_*Cmu*sqr(k_)/epsilon_;
mut_ = rho_*Cmu_*sqr(k_)/epsilon_;
# include "wallViscosityI.H"
@ -264,7 +309,7 @@ void PDRkEpsilon::correct()
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
} // End namespace RAS
} // End namespace RASModels
} // End namespace compressible
} // End namespace Foam

View File

@ -37,7 +37,7 @@ SourceFiles
#ifndef compressiblePDRkEpsilon_H
#define compressiblePDRkEpsilon_H
#include "RASmodel.H"
#include "RASModel.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
@ -45,7 +45,7 @@ namespace Foam
{
namespace compressible
{
namespace RAS
namespace RASModels
{
/*---------------------------------------------------------------------------*\
@ -54,16 +54,16 @@ namespace RAS
class PDRkEpsilon
:
public RASmodel
public RASModel
{
// Private data
scalar Cmu;
scalar C1;
scalar C2;
scalar alphak;
scalar alphaEps;
scalar alphah;
dimensionedScalar Cmu_;
dimensionedScalar C1_;
dimensionedScalar C2_;
dimensionedScalar alphak_;
dimensionedScalar alphaEps_;
dimensionedScalar alphah_;
volScalarField k_;
volScalarField epsilon_;
@ -105,7 +105,7 @@ public:
{
return tmp<volScalarField>
(
new volScalarField("DkEff", alphak*mut_ + mu())
new volScalarField("DkEff", alphak_*mut_ + mu())
);
}
@ -114,7 +114,7 @@ public:
{
return tmp<volScalarField>
(
new volScalarField("DepsilonEff", alphaEps*mut_ + mu())
new volScalarField("DepsilonEff", alphaEps_*mut_ + mu())
);
}
@ -123,7 +123,7 @@ public:
{
return tmp<volScalarField>
(
new volScalarField("alphaEff", alphah*mut_ + alpha())
new volScalarField("alphaEff", alphah_*mut_ + alpha())
);
}
@ -158,7 +158,7 @@ public:
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
} // End namespace RAS
} // End namespace RASModels
} // End namespace compressible
} // End namespace Foam

View File

@ -45,7 +45,7 @@ Foam::XiEqModels::Gulder::Gulder
(
const dictionary& XiEqProperties,
const hhuCombustionThermo& thermo,
const compressible::RASmodel& turbulence,
const compressible::RASModel& turbulence,
const volScalarField& Su
)
:

View File

@ -82,7 +82,7 @@ public:
(
const dictionary& XiEqProperties,
const hhuCombustionThermo& thermo,
const compressible::RASmodel& turbulence,
const compressible::RASModel& turbulence,
const volScalarField& Su
);

View File

@ -45,7 +45,7 @@ Foam::XiEqModels::SCOPEBlend::SCOPEBlend
(
const dictionary& XiEqProperties,
const hhuCombustionThermo& thermo,
const compressible::RASmodel& turbulence,
const compressible::RASModel& turbulence,
const volScalarField& Su
)
:

View File

@ -83,7 +83,7 @@ public:
(
const dictionary& XiEqProperties,
const hhuCombustionThermo& thermo,
const compressible::RASmodel& turbulence,
const compressible::RASModel& turbulence,
const volScalarField& Su
);

View File

@ -45,7 +45,7 @@ Foam::XiEqModels::SCOPEXiEq::SCOPEXiEq
(
const dictionary& XiEqProperties,
const hhuCombustionThermo& thermo,
const compressible::RASmodel& turbulence,
const compressible::RASModel& turbulence,
const volScalarField& Su
)
:

View File

@ -90,7 +90,7 @@ public:
(
const dictionary& XiEqProperties,
const hhuCombustionThermo& thermo,
const compressible::RASmodel& turbulence,
const compressible::RASModel& turbulence,
const volScalarField& Su
);

View File

@ -41,7 +41,7 @@ Foam::XiEqModel::XiEqModel
(
const dictionary& XiEqProperties,
const hhuCombustionThermo& thermo,
const compressible::RASmodel& turbulence,
const compressible::RASModel& turbulence,
const volScalarField& Su
)
:

View File

@ -38,7 +38,7 @@ SourceFiles
#include "IOdictionary.H"
#include "hhuCombustionThermo.H"
#include "RASmodel.H"
#include "RASModel.H"
#include "runTimeSelectionTables.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
@ -60,7 +60,7 @@ protected:
dictionary XiEqModelCoeffs_;
const hhuCombustionThermo& thermo_;
const compressible::RASmodel& turbulence_;
const compressible::RASModel& turbulence_;
const volScalarField& Su_;
@ -91,7 +91,7 @@ public:
(
const dictionary& XiEqProperties,
const hhuCombustionThermo& thermo,
const compressible::RASmodel& turbulence,
const compressible::RASModel& turbulence,
const volScalarField& Su
),
(
@ -110,7 +110,7 @@ public:
(
const dictionary& XiEqProperties,
const hhuCombustionThermo& thermo,
const compressible::RASmodel& turbulence,
const compressible::RASModel& turbulence,
const volScalarField& Su
);
@ -122,7 +122,7 @@ public:
(
const dictionary& XiEqProperties,
const hhuCombustionThermo& thermo,
const compressible::RASmodel& turbulence,
const compressible::RASModel& turbulence,
const volScalarField& Su
);

View File

@ -32,7 +32,7 @@ Foam::autoPtr<Foam::XiEqModel> Foam::XiEqModel::New
(
const dictionary& XiEqProperties,
const hhuCombustionThermo& thermo,
const compressible::RASmodel& turbulence,
const compressible::RASModel& turbulence,
const volScalarField& Su
)
{
@ -50,7 +50,7 @@ Foam::autoPtr<Foam::XiEqModel> Foam::XiEqModel::New
"XiEqModel::New"
"("
" const hhuCombustionThermo& thermo,"
" const compressible::RASmodel& turbulence,"
" const compressible::RASModel& turbulence,"
" const volScalarField& Su"
")"
) << "Unknown XiEqModel type "

View File

@ -45,7 +45,7 @@ Foam::XiEqModels::instability::instability
(
const dictionary& XiEqProperties,
const hhuCombustionThermo& thermo,
const compressible::RASmodel& turbulence,
const compressible::RASModel& turbulence,
const volScalarField& Su
)
:

View File

@ -83,7 +83,7 @@ public:
(
const dictionary& XiEqProperties,
const hhuCombustionThermo& thermo,
const compressible::RASmodel& turbulence,
const compressible::RASModel& turbulence,
const volScalarField& Su
);

View File

@ -45,7 +45,7 @@ Foam::XiGModels::KTS::KTS
(
const dictionary& XiGProperties,
const hhuCombustionThermo& thermo,
const compressible::RASmodel& turbulence,
const compressible::RASModel& turbulence,
const volScalarField& Su
)
:

View File

@ -80,7 +80,7 @@ public:
(
const dictionary& XiGProperties,
const hhuCombustionThermo& thermo,
const compressible::RASmodel& turbulence,
const compressible::RASModel& turbulence,
const volScalarField& Su
);

View File

@ -41,7 +41,7 @@ Foam::XiGModel::XiGModel
(
const dictionary& XiGProperties,
const hhuCombustionThermo& thermo,
const compressible::RASmodel& turbulence,
const compressible::RASModel& turbulence,
const volScalarField& Su
)
:

View File

@ -38,7 +38,7 @@ SourceFiles
#include "IOdictionary.H"
#include "hhuCombustionThermo.H"
#include "RASmodel.H"
#include "RASModel.H"
#include "runTimeSelectionTables.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
@ -60,7 +60,7 @@ protected:
dictionary XiGModelCoeffs_;
const hhuCombustionThermo& thermo_;
const compressible::RASmodel& turbulence_;
const compressible::RASModel& turbulence_;
const volScalarField& Su_;
@ -91,7 +91,7 @@ public:
(
const dictionary& XiGProperties,
const hhuCombustionThermo& thermo,
const compressible::RASmodel& turbulence,
const compressible::RASModel& turbulence,
const volScalarField& Su
),
(
@ -110,7 +110,7 @@ public:
(
const dictionary& XiGProperties,
const hhuCombustionThermo& thermo,
const compressible::RASmodel& turbulence,
const compressible::RASModel& turbulence,
const volScalarField& Su
);
@ -122,7 +122,7 @@ public:
(
const dictionary& XiGProperties,
const hhuCombustionThermo& thermo,
const compressible::RASmodel& turbulence,
const compressible::RASModel& turbulence,
const volScalarField& Su
);

View File

@ -32,7 +32,7 @@ Foam::autoPtr<Foam::XiGModel> Foam::XiGModel::New
(
const dictionary& XiGProperties,
const hhuCombustionThermo& thermo,
const compressible::RASmodel& turbulence,
const compressible::RASModel& turbulence,
const volScalarField& Su
)
{
@ -50,7 +50,7 @@ Foam::autoPtr<Foam::XiGModel> Foam::XiGModel::New
"XiGModel::New"
"("
" const hhuCombustionThermo& thermo,"
" const compressible::RASmodel& turbulence,"
" const compressible::RASModel& turbulence,"
" const volScalarField& Su"
")"
) << "Unknown XiGModel type "

View File

@ -45,7 +45,7 @@ Foam::XiGModels::instabilityG::instabilityG
(
const dictionary& XiGProperties,
const hhuCombustionThermo& thermo,
const compressible::RASmodel& turbulence,
const compressible::RASModel& turbulence,
const volScalarField& Su
)
:

View File

@ -87,7 +87,7 @@ public:
(
const dictionary& XiGProperties,
const hhuCombustionThermo& thermo,
const compressible::RASmodel& turbulence,
const compressible::RASModel& turbulence,
const volScalarField& Su
);

View File

@ -41,7 +41,7 @@ Foam::XiModel::XiModel
(
const dictionary& XiProperties,
const hhuCombustionThermo& thermo,
const compressible::RASmodel& turbulence,
const compressible::RASModel& turbulence,
const volScalarField& Su,
const volScalarField& rho,
const volScalarField& b,

View File

@ -38,7 +38,7 @@ SourceFiles
#include "IOdictionary.H"
#include "hhuCombustionThermo.H"
#include "RASmodel.H"
#include "RASModel.H"
#include "multivariateSurfaceInterpolationScheme.H"
#include "runTimeSelectionTables.H"
@ -61,7 +61,7 @@ protected:
dictionary XiModelCoeffs_;
const hhuCombustionThermo& thermo_;
const compressible::RASmodel& turbulence_;
const compressible::RASModel& turbulence_;
const volScalarField& Su_;
const volScalarField& rho_;
const volScalarField& b_;
@ -98,7 +98,7 @@ public:
(
const dictionary& XiProperties,
const hhuCombustionThermo& thermo,
const compressible::RASmodel& turbulence,
const compressible::RASModel& turbulence,
const volScalarField& Su,
const volScalarField& rho,
const volScalarField& b,
@ -123,7 +123,7 @@ public:
(
const dictionary& XiProperties,
const hhuCombustionThermo& thermo,
const compressible::RASmodel& turbulence,
const compressible::RASModel& turbulence,
const volScalarField& Su,
const volScalarField& rho,
const volScalarField& b,
@ -138,7 +138,7 @@ public:
(
const dictionary& XiProperties,
const hhuCombustionThermo& thermo,
const compressible::RASmodel& turbulence,
const compressible::RASModel& turbulence,
const volScalarField& Su,
const volScalarField& rho,
const volScalarField& b,

View File

@ -32,7 +32,7 @@ Foam::autoPtr<Foam::XiModel> Foam::XiModel::New
(
const dictionary& XiProperties,
const hhuCombustionThermo& thermo,
const compressible::RASmodel& turbulence,
const compressible::RASModel& turbulence,
const volScalarField& Su,
const volScalarField& rho,
const volScalarField& b,

View File

@ -45,7 +45,7 @@ Foam::XiModels::algebraic::algebraic
(
const dictionary& XiProperties,
const hhuCombustionThermo& thermo,
const compressible::RASmodel& turbulence,
const compressible::RASModel& turbulence,
const volScalarField& Su,
const volScalarField& rho,
const volScalarField& b,

View File

@ -86,7 +86,7 @@ public:
(
const dictionary& XiProperties,
const hhuCombustionThermo& thermo,
const compressible::RASmodel& turbulence,
const compressible::RASModel& turbulence,
const volScalarField& Su,
const volScalarField& rho,
const volScalarField& b,

View File

@ -45,7 +45,7 @@ Foam::XiModels::fixed::fixed
(
const dictionary& XiProperties,
const hhuCombustionThermo& thermo,
const compressible::RASmodel& turbulence,
const compressible::RASModel& turbulence,
const volScalarField& Su,
const volScalarField& rho,
const volScalarField& b,

View File

@ -75,7 +75,7 @@ public:
(
const dictionary& XiProperties,
const hhuCombustionThermo& thermo,
const compressible::RASmodel& turbulence,
const compressible::RASModel& turbulence,
const volScalarField& Su,
const volScalarField& rho,
const volScalarField& b,

View File

@ -45,7 +45,7 @@ Foam::XiModels::transport::transport
(
const dictionary& XiProperties,
const hhuCombustionThermo& thermo,
const compressible::RASmodel& turbulence,
const compressible::RASModel& turbulence,
const volScalarField& Su,
const volScalarField& rho,
const volScalarField& b,

View File

@ -86,7 +86,7 @@ public:
(
const dictionary& XiProperties,
const hhuCombustionThermo& thermo,
const compressible::RASmodel& turbulence,
const compressible::RASModel& turbulence,
const volScalarField& Su,
const volScalarField& rho,
const volScalarField& b,

View File

@ -47,9 +47,9 @@
# include "compressibleCreatePhi.H"
Info<< "Creating turbulence model\n" << endl;
autoPtr<compressible::RASmodel> turbulence
autoPtr<compressible::RASModel> turbulence
(
compressible::RASmodel::New
compressible::RASModel::New
(
rho,
U,

View File

@ -12,7 +12,7 @@ EXE_LIBS = \
-lengine \
-lfiniteVolume \
-lmeshTools \
-lcompressibleRASmodels \
-lcompressibleRASModels \
-lbasicThermophysicalModels \
-lcombustionThermophysicalModels \
-lspecie \

View File

@ -52,7 +52,7 @@ Description
#include "fvCFD.H"
#include "hhuCombustionThermo.H"
#include "compressible/RASmodel/RASmodel.H"
#include "compressible/RASModel/RASModel.H"
#include "laminarFlameSpeed.H"
#include "ignition.H"
#include "Switch.H"

View File

@ -48,9 +48,9 @@
Info<< "Creating turbulence model\n" << endl;
autoPtr<compressible::RASmodel> turbulence
autoPtr<compressible::RASModel> turbulence
(
compressible::RASmodel::New
compressible::RASModel::New
(
rho,
U,

View File

@ -19,5 +19,5 @@ EXE_LIBS = \
-lbasicThermophysicalModels \
-lcombustionThermophysicalModels \
-lspecie \
-lcompressibleLESmodels \
-lcompressibleLESModels \
-llaminarFlameSpeedModels

View File

@ -52,7 +52,7 @@ Description
#include "fvCFD.H"
#include "hhuCombustionThermo.H"
#include "compressible/LESmodel/LESmodel.H"
#include "compressible/LESModel/LESModel.H"
#include "laminarFlameSpeed.H"
#include "ignition.H"
#include "IFstream.H"

View File

@ -48,9 +48,9 @@
Info<< "Creating turbulence model\n" << endl;
autoPtr<compressible::LESmodel> turbulence
autoPtr<compressible::LESModel> turbulence
(
compressible::LESmodel::New(rho, U, phi, thermo())
compressible::LESModel::New(rho, U, phi, thermo())
);

View File

@ -11,6 +11,6 @@ EXE_INC = \
EXE_LIBS = \
-lengine \
-lfiniteVolume \
-lcompressibleRASmodels \
-lcompressibleRASModels \
-lbasicThermophysicalModels \
-lspecie

View File

@ -34,7 +34,7 @@ Description
#include "engineTime.H"
#include "engineMesh.H"
#include "basicThermo.H"
#include "RASmodel.H"
#include "RASModel.H"
#include "OFstream.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

View File

@ -42,9 +42,9 @@
Info<< "Creating turbulence model\n" << endl;
autoPtr<compressible::RASmodel> turbulence
autoPtr<compressible::RASModel> turbulence
(
compressible::RASmodel::New
compressible::RASModel::New
(
rho,
U,

View File

@ -18,7 +18,7 @@ EXE_INC = \
EXE_LIBS = \
-lengine \
-lcompressibleRASmodels \
-lcompressibleRASModels \
-lcombustionThermophysicalModels \
-lfiniteVolume \
-llagrangian \

View File

@ -58,9 +58,9 @@ volScalarField kappa
);
Info << "Creating turbulence model.\n" << nl;
autoPtr<compressible::RASmodel> turbulence
autoPtr<compressible::RASModel> turbulence
(
compressible::RASmodel::New
compressible::RASModel::New
(
rho,
U,

View File

@ -34,7 +34,7 @@ Description
#include "engineTime.H"
#include "engineMesh.H"
#include "hCombustionThermo.H"
#include "compressible/RASmodel/RASmodel.H"
#include "compressible/RASModel/RASModel.H"
#include "spray.H"
#include "chemistryModel.H"
#include "chemistrySolver.H"

View File

@ -16,7 +16,7 @@ EXE_INC = \
-I$(LIB_SRC)/ODE/lnInclude
EXE_LIBS = \
-lcompressibleRASmodels \
-lcompressibleRASModels \
-lcombustionThermophysicalModels \
-lfiniteVolume \
-llagrangian \

View File

@ -32,7 +32,7 @@ Description
#include "fvCFD.H"
#include "hCombustionThermo.H"
#include "compressible/RASmodel/RASmodel.H"
#include "compressible/RASModel/RASModel.H"
#include "spray.H"
#include "chemistryModel.H"
#include "chemistrySolver.H"

View File

@ -11,7 +11,7 @@ EXE_INC = \
EXE_LIBS = \
-lengine \
-lfiniteVolume \
-lcompressibleRASmodels \
-lcompressibleRASModels \
-lbasicThermophysicalModels \
-lcombustionThermophysicalModels \
-lspecie \

View File

@ -53,7 +53,7 @@ Description
#include "engineTime.H"
#include "engineMesh.H"
#include "hhuCombustionThermo.H"
#include "RASmodel.H"
#include "RASModel.H"
#include "laminarFlameSpeed.H"
#include "ignition.H"
#include "Switch.H"

View File

@ -9,7 +9,7 @@ EXE_INC = \
-I$(LIB_SRC)/ODE/lnInclude
EXE_LIBS = \
-lcompressibleRASmodels \
-lcompressibleRASModels \
-lcombustionThermophysicalModels \
-lfiniteVolume \
-lspecie \

View File

@ -58,9 +58,9 @@ volScalarField kappa
);
Info << "Creating turbulence model.\n" << nl;
autoPtr<compressible::RASmodel> turbulence
autoPtr<compressible::RASModel> turbulence
(
compressible::RASmodel::New
compressible::RASModel::New
(
rho,
U,

View File

@ -32,7 +32,7 @@ Description
#include "fvCFD.H"
#include "hCombustionThermo.H"
#include "compressible/RASmodel/RASmodel.H"
#include "compressible/RASModel/RASModel.H"
#include "chemistryModel.H"
#include "chemistrySolver.H"
#include "multivariateScheme.H"

View File

@ -10,4 +10,4 @@ EXE_LIBS = \
-lmeshTools \
-lbasicThermophysicalModels \
-lspecie \
-lcompressibleLESmodels
-lcompressibleLESModels

View File

@ -32,7 +32,7 @@ Description
#include "fvCFD.H"
#include "basicThermo.H"
#include "compressible/LESmodel/LESmodel.H"
#include "compressible/LESModel/LESModel.H"
#define divDevRhoReff divDevRhoBeff

View File

@ -40,9 +40,9 @@
Info<< "Creating turbulence model\n" << endl;
autoPtr<compressible::LESmodel> turbulence
autoPtr<compressible::LESModel> turbulence
(
compressible::LESmodel::New(rho, U, phi, thermo())
compressible::LESModel::New(rho, U, phi, thermo())
);
Info<< "Creating field DpDt\n" << endl;

View File

@ -9,4 +9,4 @@ EXE_LIBS = \
-lmeshTools \
-lbasicThermophysicalModels \
-lspecie \
-lcompressibleRASmodels
-lcompressibleRASModels

View File

@ -44,9 +44,9 @@
);
Info<< "Creating turbulence model\n" << endl;
autoPtr<compressible::RASmodel> turbulence
autoPtr<compressible::RASModel> turbulence
(
compressible::RASmodel::New
compressible::RASModel::New
(
rho,
U,

View File

@ -36,7 +36,7 @@ Description
#include "fvCFD.H"
#include "basicThermo.H"
#include "compressible/RASmodel/RASmodel.H"
#include "compressible/RASModel/RASModel.H"
#include "fixedGradientFvPatchFields.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

View File

@ -10,4 +10,4 @@ EXE_LIBS = \
-lmeshTools \
-lbasicThermophysicalModels \
-lspecie \
-lcompressibleRASmodels
-lcompressibleRASModels

View File

@ -49,9 +49,9 @@
);
Info<< "Creating turbulence model\n" << endl;
autoPtr<compressible::RASmodel> turbulence
autoPtr<compressible::RASModel> turbulence
(
compressible::RASmodel::New
compressible::RASModel::New
(
rho,
U,

View File

@ -33,7 +33,7 @@ Description
#include "fvCFD.H"
#include "basicThermo.H"
#include "compressible/RASmodel/RASmodel.H"
#include "compressible/RASModel/RASModel.H"
#include "porousZones.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

View File

@ -9,4 +9,4 @@ EXE_LIBS = \
-lmeshTools \
-lbasicThermophysicalModels \
-lspecie \
-lcompressibleRASmodels
-lcompressibleRASModels

View File

@ -49,9 +49,9 @@
);
Info<< "Creating turbulence model\n" << endl;
autoPtr<compressible::RASmodel> turbulence
autoPtr<compressible::RASModel> turbulence
(
compressible::RASmodel::New
compressible::RASModel::New
(
rho,
U,

View File

@ -33,7 +33,7 @@ Description
#include "fvCFD.H"
#include "basicThermo.H"
#include "compressible/RASmodel/RASmodel.H"
#include "compressible/RASModel/RASModel.H"
#include "fixedGradientFvPatchFields.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

View File

@ -9,4 +9,4 @@ EXE_LIBS = \
-lmeshTools \
-lbasicThermophysicalModels \
-lspecie \
-lcompressibleRASmodels
-lcompressibleRASModels

View File

@ -40,9 +40,9 @@
Info<< "Creating turbulence model\n" << endl;
autoPtr<compressible::RASmodel> turbulence
autoPtr<compressible::RASModel> turbulence
(
compressible::RASmodel::New
compressible::RASModel::New
(
rho,
U,

View File

@ -32,7 +32,7 @@ Description
#include "fvCFD.H"
#include "basicThermo.H"
#include "compressible/RASmodel/RASmodel.H"
#include "compressible/RASModel/RASModel.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

View File

@ -7,6 +7,6 @@ EXE_INC = \
EXE_LIBS = \
-lfiniteVolume \
-lmeshTools \
-lcompressibleRASmodels \
-lcompressibleRASModels \
-lbasicThermophysicalModels \
-lspecie

View File

@ -38,9 +38,9 @@
Info<< "Creating turbulence model\n" << endl;
autoPtr<compressible::RASmodel> turbulence
autoPtr<compressible::RASModel> turbulence
(
compressible::RASmodel::New
compressible::RASModel::New
(
rho,
U,

View File

@ -33,7 +33,7 @@ Description
#include "fvCFD.H"
#include "basicThermo.H"
#include "compressible/RASmodel/RASmodel.H"
#include "compressible/RASModel/RASModel.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

View File

@ -9,4 +9,4 @@ EXE_LIBS = \
-lmeshTools \
-lbasicThermophysicalModels \
-lspecie \
-lcompressibleRASmodels
-lcompressibleRASModels

View File

@ -34,7 +34,7 @@ Description
#include "fvCFD.H"
#include "basicThermo.H"
#include "compressible/RASmodel/RASmodel.H"
#include "compressible/RASModel/RASModel.H"
#include "fixedGradientFvPatchFields.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

View File

@ -41,9 +41,9 @@
Info<< "Creating turbulence model\n" << endl;
autoPtr<compressible::RASmodel> turbulence
autoPtr<compressible::RASModel> turbulence
(
compressible::RASmodel::New
compressible::RASModel::New
(
rho,
U,

View File

@ -9,4 +9,4 @@ EXE_LIBS = \
-lmeshTools \
-lbasicThermophysicalModels \
-lspecie \
-lcompressibleRASmodels
-lcompressibleRASModels

View File

@ -33,7 +33,7 @@ Description
#include "fvCFD.H"
#include "basicThermo.H"
#include "compressible/RASmodel/RASmodel.H"
#include "compressible/RASModel/RASModel.H"
#include "fixedGradientFvPatchFields.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

View File

@ -40,9 +40,9 @@
Info<< "Creating turbulence model\n" << endl;
autoPtr<compressible::RASmodel> turbulence
autoPtr<compressible::RASModel> turbulence
(
compressible::RASmodel::New
compressible::RASModel::New
(
rho,
U,

View File

@ -11,4 +11,4 @@ EXE_LIBS = \
-lbasicThermophysicalModels \
-lspecie \
-lradiation \
-lcompressibleRASmodels
-lcompressibleRASModels

View File

@ -33,7 +33,7 @@ Description
#include "fvCFD.H"
#include "basicThermo.H"
#include "compressible/RASmodel/RASmodel.H"
#include "compressible/RASModel/RASModel.H"
#include "fixedGradientFvPatchFields.H"
#include "radiationModel.H"

View File

@ -41,9 +41,9 @@
Info<< "Creating turbulence model\n" << endl;
autoPtr<compressible::RASmodel> turbulence
autoPtr<compressible::RASModel> turbulence
(
compressible::RASmodel::New
compressible::RASModel::New
(
rho,
U,

View File

@ -13,4 +13,4 @@ EXE_LIBS = \
-lfiniteVolume \
-lbasicThermophysicalModels \
-lspecie \
-lcompressibleRASmodels
-lcompressibleRASModels

View File

@ -33,7 +33,7 @@ Description
#include "fvCFD.H"
#include "basicThermo.H"
#include "compressible/RASmodel/RASmodel.H"
#include "compressible/RASModel/RASModel.H"
#include "fixedGradientFvPatchFields.H"
#include "regionProperties.H"

View File

@ -4,7 +4,7 @@
PtrList<volScalarField> Kf(fluidRegions.size());
PtrList<volVectorField> Uf(fluidRegions.size());
PtrList<surfaceScalarField> phif(fluidRegions.size());
PtrList<compressible::RASmodel> turb(fluidRegions.size());
PtrList<compressible::RASModel> turb(fluidRegions.size());
PtrList<volScalarField> DpDtf(fluidRegions.size());
PtrList<volScalarField> ghf(fluidRegions.size());
PtrList<volScalarField> pdf(fluidRegions.size());
@ -125,9 +125,9 @@
turb.set
(
i,
autoPtr<compressible::RASmodel>
autoPtr<compressible::RASModel>
(
compressible::RASmodel::New
compressible::RASModel::New
(
rhof[i],
Uf[i],

View File

@ -32,7 +32,7 @@ void solveEnthalpyEquation
const volScalarField& rho,
const volScalarField& DpDt,
const surfaceScalarField& phi,
const compressible::RASmodel& turb,
const compressible::RASModel& turb,
basicThermo& thermo
)
{

View File

@ -35,7 +35,7 @@ tmp<fvVectorMatrix> solveMomentumEquation
const surfaceScalarField& phi,
const volScalarField& pd,
const volScalarField& gh,
const compressible::RASmodel& turb
const compressible::RASModel& turb
)
{
// Solve the Momentum equation

View File

@ -10,4 +10,4 @@ EXE_LIBS = \
-lmeshTools \
-lbasicThermophysicalModels \
-lspecie \
-lcompressibleLESmodels
-lcompressibleLESModels

View File

@ -41,9 +41,9 @@
Info<< "Creating turbulence model\n" << endl;
autoPtr<compressible::LESmodel> turbulence
autoPtr<compressible::LESModel> turbulence
(
compressible::LESmodel::New(rho, U, phi, thermo())
compressible::LESModel::New(rho, U, phi, thermo())
);

View File

@ -34,7 +34,7 @@ Description
#include "fvCFD.H"
#include "basicThermo.H"
#include "compressible/LESmodel/LESmodel.H"
#include "compressible/LESModel/LESModel.H"
#define divDevRhoReff divDevRhoBeff

View File

@ -5,7 +5,7 @@ EXE_INC = \
-I$(LIB_SRC)/sampling/lnInclude
EXE_LIBS = \
-lincompressibleRASmodels \
-lincompressibleRASModels \
-lincompressibleTransportModels \
-lfiniteVolume \
-lmeshTools \

View File

@ -38,7 +38,7 @@ Description
#include "fvCFD.H"
#include "incompressible/singlePhaseTransportModel/singlePhaseTransportModel.H"
#include "incompressible/RASmodel/RASmodel.H"
#include "incompressible/RASModel/RASModel.H"
#include "wallFvPatch.H"
#include "makeGraph.H"

View File

@ -31,9 +31,9 @@
singlePhaseTransportModel laminarTransport(U, phi);
autoPtr<incompressible::RASmodel> turbulence
autoPtr<incompressible::RASModel> turbulence
(
incompressible::RASmodel::New(U, phi, laminarTransport)
incompressible::RASModel::New(U, phi, laminarTransport)
);

View File

@ -7,7 +7,7 @@ EXE_INC = \
-I../oodles
EXE_LIBS = \
-lincompressibleLESmodels \
-lincompressibleLESModels \
-lincompressibleTransportModels \
-lfiniteVolume \
-lmeshTools

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