mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
consistency updates
This commit is contained in:
@ -20,7 +20,7 @@ EXE_INC = \
|
|||||||
EXE_LIBS = \
|
EXE_LIBS = \
|
||||||
-lengine \
|
-lengine \
|
||||||
-lmeshTools \
|
-lmeshTools \
|
||||||
-lcompressibleRASmodels \
|
-lcompressibleRASModels \
|
||||||
-lbasicThermophysicalModels \
|
-lbasicThermophysicalModels \
|
||||||
-lcombustionThermophysicalModels \
|
-lcombustionThermophysicalModels \
|
||||||
-lspecie \
|
-lspecie \
|
||||||
|
|||||||
@ -58,7 +58,7 @@ Description
|
|||||||
|
|
||||||
#include "fvCFD.H"
|
#include "fvCFD.H"
|
||||||
#include "hhuCombustionThermo.H"
|
#include "hhuCombustionThermo.H"
|
||||||
#include "RASmodel.H"
|
#include "RASModel.H"
|
||||||
#include "laminarFlameSpeed.H"
|
#include "laminarFlameSpeed.H"
|
||||||
#include "XiModel.H"
|
#include "XiModel.H"
|
||||||
#include "PDRDragModel.H"
|
#include "PDRDragModel.H"
|
||||||
|
|||||||
@ -59,7 +59,7 @@ Description
|
|||||||
#include "fvCFD.H"
|
#include "fvCFD.H"
|
||||||
#include "dynamicFvMesh.H"
|
#include "dynamicFvMesh.H"
|
||||||
#include "hhuCombustionThermo.H"
|
#include "hhuCombustionThermo.H"
|
||||||
#include "RASmodel.H"
|
#include "RASModel.H"
|
||||||
#include "laminarFlameSpeed.H"
|
#include "laminarFlameSpeed.H"
|
||||||
#include "XiModel.H"
|
#include "XiModel.H"
|
||||||
#include "PDRDragModel.H"
|
#include "PDRDragModel.H"
|
||||||
|
|||||||
@ -45,7 +45,7 @@ Foam::XiEqModels::basicSubGrid::basicSubGrid
|
|||||||
(
|
(
|
||||||
const dictionary& XiEqProperties,
|
const dictionary& XiEqProperties,
|
||||||
const hhuCombustionThermo& thermo,
|
const hhuCombustionThermo& thermo,
|
||||||
const compressible::RASmodel& turbulence,
|
const compressible::RASModel& turbulence,
|
||||||
const volScalarField& Su
|
const volScalarField& Su
|
||||||
)
|
)
|
||||||
:
|
:
|
||||||
|
|||||||
@ -94,7 +94,7 @@ public:
|
|||||||
(
|
(
|
||||||
const dictionary& XiEqProperties,
|
const dictionary& XiEqProperties,
|
||||||
const hhuCombustionThermo& thermo,
|
const hhuCombustionThermo& thermo,
|
||||||
const compressible::RASmodel& turbulence,
|
const compressible::RASModel& turbulence,
|
||||||
const volScalarField& Su
|
const volScalarField& Su
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|||||||
@ -45,7 +45,7 @@ Foam::XiGModels::basicSubGrid::basicSubGrid
|
|||||||
(
|
(
|
||||||
const dictionary& XiGProperties,
|
const dictionary& XiGProperties,
|
||||||
const hhuCombustionThermo& thermo,
|
const hhuCombustionThermo& thermo,
|
||||||
const compressible::RASmodel& turbulence,
|
const compressible::RASModel& turbulence,
|
||||||
const volScalarField& Su
|
const volScalarField& Su
|
||||||
)
|
)
|
||||||
:
|
:
|
||||||
|
|||||||
@ -85,7 +85,7 @@ public:
|
|||||||
(
|
(
|
||||||
const dictionary& XiGProperties,
|
const dictionary& XiGProperties,
|
||||||
const hhuCombustionThermo& thermo,
|
const hhuCombustionThermo& thermo,
|
||||||
const compressible::RASmodel& turbulence,
|
const compressible::RASModel& turbulence,
|
||||||
const volScalarField& Su
|
const volScalarField& Su
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|||||||
@ -40,7 +40,7 @@ namespace Foam
|
|||||||
Foam::PDRDragModel::PDRDragModel
|
Foam::PDRDragModel::PDRDragModel
|
||||||
(
|
(
|
||||||
const dictionary& PDRProperties,
|
const dictionary& PDRProperties,
|
||||||
const compressible::RASmodel& turbulence,
|
const compressible::RASModel& turbulence,
|
||||||
const volScalarField& rho,
|
const volScalarField& rho,
|
||||||
const volVectorField& U,
|
const volVectorField& U,
|
||||||
const surfaceScalarField& phi
|
const surfaceScalarField& phi
|
||||||
|
|||||||
@ -38,7 +38,7 @@ SourceFiles
|
|||||||
|
|
||||||
#include "IOdictionary.H"
|
#include "IOdictionary.H"
|
||||||
#include "hhuCombustionThermo.H"
|
#include "hhuCombustionThermo.H"
|
||||||
#include "RASmodel.H"
|
#include "RASModel.H"
|
||||||
#include "multivariateSurfaceInterpolationScheme.H"
|
#include "multivariateSurfaceInterpolationScheme.H"
|
||||||
#include "runTimeSelectionTables.H"
|
#include "runTimeSelectionTables.H"
|
||||||
|
|
||||||
@ -62,7 +62,7 @@ protected:
|
|||||||
|
|
||||||
dictionary PDRDragModelCoeffs_;
|
dictionary PDRDragModelCoeffs_;
|
||||||
|
|
||||||
const compressible::RASmodel& turbulence_;
|
const compressible::RASModel& turbulence_;
|
||||||
const volScalarField& rho_;
|
const volScalarField& rho_;
|
||||||
const volVectorField& U_;
|
const volVectorField& U_;
|
||||||
const surfaceScalarField& phi_;
|
const surfaceScalarField& phi_;
|
||||||
@ -96,7 +96,7 @@ public:
|
|||||||
dictionary,
|
dictionary,
|
||||||
(
|
(
|
||||||
const dictionary& PDRProperties,
|
const dictionary& PDRProperties,
|
||||||
const compressible::RASmodel& turbulence,
|
const compressible::RASModel& turbulence,
|
||||||
const volScalarField& rho,
|
const volScalarField& rho,
|
||||||
const volVectorField& U,
|
const volVectorField& U,
|
||||||
const surfaceScalarField& phi
|
const surfaceScalarField& phi
|
||||||
@ -117,7 +117,7 @@ public:
|
|||||||
static autoPtr<PDRDragModel> New
|
static autoPtr<PDRDragModel> New
|
||||||
(
|
(
|
||||||
const dictionary& PDRProperties,
|
const dictionary& PDRProperties,
|
||||||
const compressible::RASmodel& turbulence,
|
const compressible::RASModel& turbulence,
|
||||||
const volScalarField& rho,
|
const volScalarField& rho,
|
||||||
const volVectorField& U,
|
const volVectorField& U,
|
||||||
const surfaceScalarField& phi
|
const surfaceScalarField& phi
|
||||||
@ -130,7 +130,7 @@ public:
|
|||||||
PDRDragModel
|
PDRDragModel
|
||||||
(
|
(
|
||||||
const dictionary& PDRProperties,
|
const dictionary& PDRProperties,
|
||||||
const compressible::RASmodel& turbulence,
|
const compressible::RASModel& turbulence,
|
||||||
const volScalarField& rho,
|
const volScalarField& rho,
|
||||||
const volVectorField& U,
|
const volVectorField& U,
|
||||||
const surfaceScalarField& phi
|
const surfaceScalarField& phi
|
||||||
|
|||||||
@ -31,7 +31,7 @@ License
|
|||||||
Foam::autoPtr<Foam::PDRDragModel> Foam::PDRDragModel::New
|
Foam::autoPtr<Foam::PDRDragModel> Foam::PDRDragModel::New
|
||||||
(
|
(
|
||||||
const dictionary& PDRProperties,
|
const dictionary& PDRProperties,
|
||||||
const compressible::RASmodel& turbulence,
|
const compressible::RASModel& turbulence,
|
||||||
const volScalarField& rho,
|
const volScalarField& rho,
|
||||||
const volVectorField& U,
|
const volVectorField& U,
|
||||||
const surfaceScalarField& phi
|
const surfaceScalarField& phi
|
||||||
|
|||||||
@ -44,7 +44,7 @@ namespace PDRDragModels
|
|||||||
Foam::PDRDragModels::basic::basic
|
Foam::PDRDragModels::basic::basic
|
||||||
(
|
(
|
||||||
const dictionary& PDRProperties,
|
const dictionary& PDRProperties,
|
||||||
const compressible::RASmodel& turbulence,
|
const compressible::RASModel& turbulence,
|
||||||
const volScalarField& rho,
|
const volScalarField& rho,
|
||||||
const volVectorField& U,
|
const volVectorField& U,
|
||||||
const surfaceScalarField& phi
|
const surfaceScalarField& phi
|
||||||
|
|||||||
@ -86,7 +86,7 @@ public:
|
|||||||
basic
|
basic
|
||||||
(
|
(
|
||||||
const dictionary& PDRProperties,
|
const dictionary& PDRProperties,
|
||||||
const compressible::RASmodel& turbulence,
|
const compressible::RASModel& turbulence,
|
||||||
const volScalarField& rho,
|
const volScalarField& rho,
|
||||||
const volVectorField& U,
|
const volVectorField& U,
|
||||||
const surfaceScalarField& phi
|
const surfaceScalarField& phi
|
||||||
|
|||||||
@ -35,13 +35,13 @@ namespace Foam
|
|||||||
{
|
{
|
||||||
namespace compressible
|
namespace compressible
|
||||||
{
|
{
|
||||||
namespace RAS
|
namespace RASModels
|
||||||
{
|
{
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
|
||||||
|
|
||||||
defineTypeNameAndDebug(PDRkEpsilon, 0);
|
defineTypeNameAndDebug(PDRkEpsilon, 0);
|
||||||
addToRunTimeSelectionTable(RASmodel, PDRkEpsilon, dictionary);
|
addToRunTimeSelectionTable(RASModel, PDRkEpsilon, dictionary);
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
@ -53,17 +53,62 @@ PDRkEpsilon::PDRkEpsilon
|
|||||||
basicThermo& thermophysicalModel
|
basicThermo& thermophysicalModel
|
||||||
)
|
)
|
||||||
:
|
:
|
||||||
RASmodel(typeName, rho, U, phi, thermophysicalModel),
|
RASModel(typeName, rho, U, phi, thermophysicalModel),
|
||||||
|
|
||||||
Cmu(RASmodelCoeffs_.lookupOrAddDefault<scalar>("Cmu", 0.09)),
|
Cmu_
|
||||||
C1(RASmodelCoeffs_.lookupOrAddDefault<scalar>("C1", 1.44)),
|
|
||||||
C2(RASmodelCoeffs_.lookupOrAddDefault<scalar>("C2", 1.92)),
|
|
||||||
alphak(RASmodelCoeffs_.lookupOrAddDefault<scalar>("alphak", 1.0)),
|
|
||||||
alphaEps
|
|
||||||
(
|
(
|
||||||
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_
|
k_
|
||||||
(
|
(
|
||||||
@ -101,7 +146,7 @@ PDRkEpsilon::PDRkEpsilon
|
|||||||
IOobject::NO_READ,
|
IOobject::NO_READ,
|
||||||
IOobject::NO_WRITE
|
IOobject::NO_WRITE
|
||||||
),
|
),
|
||||||
Cmu*rho_*sqr(k_)/(epsilon_ + epsilonSmall_)
|
Cmu_*rho_*sqr(k_)/(epsilon_ + epsilonSmall_)
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
# include "wallViscosityI.H"
|
# include "wallViscosityI.H"
|
||||||
@ -164,14 +209,14 @@ tmp<fvVectorMatrix> PDRkEpsilon::divDevRhoReff(volVectorField& U) const
|
|||||||
|
|
||||||
bool PDRkEpsilon::read()
|
bool PDRkEpsilon::read()
|
||||||
{
|
{
|
||||||
if (RASmodel::read())
|
if (RASModel::read())
|
||||||
{
|
{
|
||||||
RASmodelCoeffs_.readIfPresent<scalar>("Cmu", Cmu);
|
Cmu_.readIfPresent(coeffDict_);
|
||||||
RASmodelCoeffs_.readIfPresent<scalar>("C1", C1);
|
C1_.readIfPresent(coeffDict_);
|
||||||
RASmodelCoeffs_.readIfPresent<scalar>("C2", C2);
|
C2_.readIfPresent(coeffDict_);
|
||||||
RASmodelCoeffs_.readIfPresent<scalar>("alphak", alphak);
|
alphak_.readIfPresent(coeffDict_);
|
||||||
RASmodelCoeffs_.readIfPresent<scalar>("alphaEps", alphaEps);
|
alphaEps_.readIfPresent(coeffDict_);
|
||||||
RASmodelCoeffs_.readIfPresent<scalar>("alphah", alphah);
|
alphah_.readIfPresent(coeffDict_);
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
@ -187,12 +232,12 @@ void PDRkEpsilon::correct()
|
|||||||
if (!turbulence_)
|
if (!turbulence_)
|
||||||
{
|
{
|
||||||
// Re-calculate viscosity
|
// Re-calculate viscosity
|
||||||
mut_ = rho_*Cmu*sqr(k_)/(epsilon_ + epsilonSmall_);
|
mut_ = rho_*Cmu_*sqr(k_)/(epsilon_ + epsilonSmall_);
|
||||||
# include "wallViscosityI.H"
|
# include "wallViscosityI.H"
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
RASmodel::correct();
|
RASModel::correct();
|
||||||
|
|
||||||
volScalarField divU = fvc::div(phi_/fvc::interpolate(rho_));
|
volScalarField divU = fvc::div(phi_/fvc::interpolate(rho_));
|
||||||
|
|
||||||
@ -223,9 +268,9 @@ void PDRkEpsilon::correct()
|
|||||||
+ fvm::div(phi_, epsilon_)
|
+ fvm::div(phi_, epsilon_)
|
||||||
- fvm::laplacian(DepsilonEff(), epsilon_)
|
- fvm::laplacian(DepsilonEff(), epsilon_)
|
||||||
==
|
==
|
||||||
C1*(betav*G + GR)*epsilon_/k_
|
C1_*(betav*G + GR)*epsilon_/k_
|
||||||
- fvm::SuSp(((2.0/3.0)*C1)*betav*rho_*divU, epsilon_)
|
- fvm::SuSp(((2.0/3.0)*C1_)*betav*rho_*divU, epsilon_)
|
||||||
- fvm::Sp(C2*betav*rho_*epsilon_/k_, epsilon_)
|
- fvm::Sp(C2_*betav*rho_*epsilon_/k_, epsilon_)
|
||||||
);
|
);
|
||||||
|
|
||||||
# include "wallDissipationI.H"
|
# include "wallDissipationI.H"
|
||||||
@ -255,7 +300,7 @@ void PDRkEpsilon::correct()
|
|||||||
|
|
||||||
|
|
||||||
// Re-calculate viscosity
|
// Re-calculate viscosity
|
||||||
mut_ = rho_*Cmu*sqr(k_)/epsilon_;
|
mut_ = rho_*Cmu_*sqr(k_)/epsilon_;
|
||||||
|
|
||||||
# include "wallViscosityI.H"
|
# include "wallViscosityI.H"
|
||||||
|
|
||||||
@ -264,7 +309,7 @@ void PDRkEpsilon::correct()
|
|||||||
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
} // End namespace RAS
|
} // End namespace RASModels
|
||||||
} // End namespace compressible
|
} // End namespace compressible
|
||||||
} // End namespace Foam
|
} // End namespace Foam
|
||||||
|
|
||||||
|
|||||||
@ -37,7 +37,7 @@ SourceFiles
|
|||||||
#ifndef compressiblePDRkEpsilon_H
|
#ifndef compressiblePDRkEpsilon_H
|
||||||
#define compressiblePDRkEpsilon_H
|
#define compressiblePDRkEpsilon_H
|
||||||
|
|
||||||
#include "RASmodel.H"
|
#include "RASModel.H"
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
@ -45,7 +45,7 @@ namespace Foam
|
|||||||
{
|
{
|
||||||
namespace compressible
|
namespace compressible
|
||||||
{
|
{
|
||||||
namespace RAS
|
namespace RASModels
|
||||||
{
|
{
|
||||||
|
|
||||||
/*---------------------------------------------------------------------------*\
|
/*---------------------------------------------------------------------------*\
|
||||||
@ -54,16 +54,16 @@ namespace RAS
|
|||||||
|
|
||||||
class PDRkEpsilon
|
class PDRkEpsilon
|
||||||
:
|
:
|
||||||
public RASmodel
|
public RASModel
|
||||||
{
|
{
|
||||||
// Private data
|
// Private data
|
||||||
|
|
||||||
scalar Cmu;
|
dimensionedScalar Cmu_;
|
||||||
scalar C1;
|
dimensionedScalar C1_;
|
||||||
scalar C2;
|
dimensionedScalar C2_;
|
||||||
scalar alphak;
|
dimensionedScalar alphak_;
|
||||||
scalar alphaEps;
|
dimensionedScalar alphaEps_;
|
||||||
scalar alphah;
|
dimensionedScalar alphah_;
|
||||||
|
|
||||||
volScalarField k_;
|
volScalarField k_;
|
||||||
volScalarField epsilon_;
|
volScalarField epsilon_;
|
||||||
@ -105,7 +105,7 @@ public:
|
|||||||
{
|
{
|
||||||
return tmp<volScalarField>
|
return tmp<volScalarField>
|
||||||
(
|
(
|
||||||
new volScalarField("DkEff", alphak*mut_ + mu())
|
new volScalarField("DkEff", alphak_*mut_ + mu())
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -114,7 +114,7 @@ public:
|
|||||||
{
|
{
|
||||||
return tmp<volScalarField>
|
return tmp<volScalarField>
|
||||||
(
|
(
|
||||||
new volScalarField("DepsilonEff", alphaEps*mut_ + mu())
|
new volScalarField("DepsilonEff", alphaEps_*mut_ + mu())
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -123,7 +123,7 @@ public:
|
|||||||
{
|
{
|
||||||
return tmp<volScalarField>
|
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 compressible
|
||||||
} // End namespace Foam
|
} // End namespace Foam
|
||||||
|
|
||||||
|
|||||||
@ -45,7 +45,7 @@ Foam::XiEqModels::Gulder::Gulder
|
|||||||
(
|
(
|
||||||
const dictionary& XiEqProperties,
|
const dictionary& XiEqProperties,
|
||||||
const hhuCombustionThermo& thermo,
|
const hhuCombustionThermo& thermo,
|
||||||
const compressible::RASmodel& turbulence,
|
const compressible::RASModel& turbulence,
|
||||||
const volScalarField& Su
|
const volScalarField& Su
|
||||||
)
|
)
|
||||||
:
|
:
|
||||||
|
|||||||
@ -82,7 +82,7 @@ public:
|
|||||||
(
|
(
|
||||||
const dictionary& XiEqProperties,
|
const dictionary& XiEqProperties,
|
||||||
const hhuCombustionThermo& thermo,
|
const hhuCombustionThermo& thermo,
|
||||||
const compressible::RASmodel& turbulence,
|
const compressible::RASModel& turbulence,
|
||||||
const volScalarField& Su
|
const volScalarField& Su
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|||||||
@ -45,7 +45,7 @@ Foam::XiEqModels::SCOPEBlend::SCOPEBlend
|
|||||||
(
|
(
|
||||||
const dictionary& XiEqProperties,
|
const dictionary& XiEqProperties,
|
||||||
const hhuCombustionThermo& thermo,
|
const hhuCombustionThermo& thermo,
|
||||||
const compressible::RASmodel& turbulence,
|
const compressible::RASModel& turbulence,
|
||||||
const volScalarField& Su
|
const volScalarField& Su
|
||||||
)
|
)
|
||||||
:
|
:
|
||||||
|
|||||||
@ -83,7 +83,7 @@ public:
|
|||||||
(
|
(
|
||||||
const dictionary& XiEqProperties,
|
const dictionary& XiEqProperties,
|
||||||
const hhuCombustionThermo& thermo,
|
const hhuCombustionThermo& thermo,
|
||||||
const compressible::RASmodel& turbulence,
|
const compressible::RASModel& turbulence,
|
||||||
const volScalarField& Su
|
const volScalarField& Su
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|||||||
@ -45,7 +45,7 @@ Foam::XiEqModels::SCOPEXiEq::SCOPEXiEq
|
|||||||
(
|
(
|
||||||
const dictionary& XiEqProperties,
|
const dictionary& XiEqProperties,
|
||||||
const hhuCombustionThermo& thermo,
|
const hhuCombustionThermo& thermo,
|
||||||
const compressible::RASmodel& turbulence,
|
const compressible::RASModel& turbulence,
|
||||||
const volScalarField& Su
|
const volScalarField& Su
|
||||||
)
|
)
|
||||||
:
|
:
|
||||||
|
|||||||
@ -90,7 +90,7 @@ public:
|
|||||||
(
|
(
|
||||||
const dictionary& XiEqProperties,
|
const dictionary& XiEqProperties,
|
||||||
const hhuCombustionThermo& thermo,
|
const hhuCombustionThermo& thermo,
|
||||||
const compressible::RASmodel& turbulence,
|
const compressible::RASModel& turbulence,
|
||||||
const volScalarField& Su
|
const volScalarField& Su
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|||||||
@ -41,7 +41,7 @@ Foam::XiEqModel::XiEqModel
|
|||||||
(
|
(
|
||||||
const dictionary& XiEqProperties,
|
const dictionary& XiEqProperties,
|
||||||
const hhuCombustionThermo& thermo,
|
const hhuCombustionThermo& thermo,
|
||||||
const compressible::RASmodel& turbulence,
|
const compressible::RASModel& turbulence,
|
||||||
const volScalarField& Su
|
const volScalarField& Su
|
||||||
)
|
)
|
||||||
:
|
:
|
||||||
|
|||||||
@ -38,7 +38,7 @@ SourceFiles
|
|||||||
|
|
||||||
#include "IOdictionary.H"
|
#include "IOdictionary.H"
|
||||||
#include "hhuCombustionThermo.H"
|
#include "hhuCombustionThermo.H"
|
||||||
#include "RASmodel.H"
|
#include "RASModel.H"
|
||||||
#include "runTimeSelectionTables.H"
|
#include "runTimeSelectionTables.H"
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
@ -60,7 +60,7 @@ protected:
|
|||||||
dictionary XiEqModelCoeffs_;
|
dictionary XiEqModelCoeffs_;
|
||||||
|
|
||||||
const hhuCombustionThermo& thermo_;
|
const hhuCombustionThermo& thermo_;
|
||||||
const compressible::RASmodel& turbulence_;
|
const compressible::RASModel& turbulence_;
|
||||||
const volScalarField& Su_;
|
const volScalarField& Su_;
|
||||||
|
|
||||||
|
|
||||||
@ -91,7 +91,7 @@ public:
|
|||||||
(
|
(
|
||||||
const dictionary& XiEqProperties,
|
const dictionary& XiEqProperties,
|
||||||
const hhuCombustionThermo& thermo,
|
const hhuCombustionThermo& thermo,
|
||||||
const compressible::RASmodel& turbulence,
|
const compressible::RASModel& turbulence,
|
||||||
const volScalarField& Su
|
const volScalarField& Su
|
||||||
),
|
),
|
||||||
(
|
(
|
||||||
@ -110,7 +110,7 @@ public:
|
|||||||
(
|
(
|
||||||
const dictionary& XiEqProperties,
|
const dictionary& XiEqProperties,
|
||||||
const hhuCombustionThermo& thermo,
|
const hhuCombustionThermo& thermo,
|
||||||
const compressible::RASmodel& turbulence,
|
const compressible::RASModel& turbulence,
|
||||||
const volScalarField& Su
|
const volScalarField& Su
|
||||||
);
|
);
|
||||||
|
|
||||||
@ -122,7 +122,7 @@ public:
|
|||||||
(
|
(
|
||||||
const dictionary& XiEqProperties,
|
const dictionary& XiEqProperties,
|
||||||
const hhuCombustionThermo& thermo,
|
const hhuCombustionThermo& thermo,
|
||||||
const compressible::RASmodel& turbulence,
|
const compressible::RASModel& turbulence,
|
||||||
const volScalarField& Su
|
const volScalarField& Su
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|||||||
@ -32,7 +32,7 @@ Foam::autoPtr<Foam::XiEqModel> Foam::XiEqModel::New
|
|||||||
(
|
(
|
||||||
const dictionary& XiEqProperties,
|
const dictionary& XiEqProperties,
|
||||||
const hhuCombustionThermo& thermo,
|
const hhuCombustionThermo& thermo,
|
||||||
const compressible::RASmodel& turbulence,
|
const compressible::RASModel& turbulence,
|
||||||
const volScalarField& Su
|
const volScalarField& Su
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
@ -50,7 +50,7 @@ Foam::autoPtr<Foam::XiEqModel> Foam::XiEqModel::New
|
|||||||
"XiEqModel::New"
|
"XiEqModel::New"
|
||||||
"("
|
"("
|
||||||
" const hhuCombustionThermo& thermo,"
|
" const hhuCombustionThermo& thermo,"
|
||||||
" const compressible::RASmodel& turbulence,"
|
" const compressible::RASModel& turbulence,"
|
||||||
" const volScalarField& Su"
|
" const volScalarField& Su"
|
||||||
")"
|
")"
|
||||||
) << "Unknown XiEqModel type "
|
) << "Unknown XiEqModel type "
|
||||||
|
|||||||
@ -45,7 +45,7 @@ Foam::XiEqModels::instability::instability
|
|||||||
(
|
(
|
||||||
const dictionary& XiEqProperties,
|
const dictionary& XiEqProperties,
|
||||||
const hhuCombustionThermo& thermo,
|
const hhuCombustionThermo& thermo,
|
||||||
const compressible::RASmodel& turbulence,
|
const compressible::RASModel& turbulence,
|
||||||
const volScalarField& Su
|
const volScalarField& Su
|
||||||
)
|
)
|
||||||
:
|
:
|
||||||
|
|||||||
@ -83,7 +83,7 @@ public:
|
|||||||
(
|
(
|
||||||
const dictionary& XiEqProperties,
|
const dictionary& XiEqProperties,
|
||||||
const hhuCombustionThermo& thermo,
|
const hhuCombustionThermo& thermo,
|
||||||
const compressible::RASmodel& turbulence,
|
const compressible::RASModel& turbulence,
|
||||||
const volScalarField& Su
|
const volScalarField& Su
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|||||||
@ -45,7 +45,7 @@ Foam::XiGModels::KTS::KTS
|
|||||||
(
|
(
|
||||||
const dictionary& XiGProperties,
|
const dictionary& XiGProperties,
|
||||||
const hhuCombustionThermo& thermo,
|
const hhuCombustionThermo& thermo,
|
||||||
const compressible::RASmodel& turbulence,
|
const compressible::RASModel& turbulence,
|
||||||
const volScalarField& Su
|
const volScalarField& Su
|
||||||
)
|
)
|
||||||
:
|
:
|
||||||
|
|||||||
@ -80,7 +80,7 @@ public:
|
|||||||
(
|
(
|
||||||
const dictionary& XiGProperties,
|
const dictionary& XiGProperties,
|
||||||
const hhuCombustionThermo& thermo,
|
const hhuCombustionThermo& thermo,
|
||||||
const compressible::RASmodel& turbulence,
|
const compressible::RASModel& turbulence,
|
||||||
const volScalarField& Su
|
const volScalarField& Su
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|||||||
@ -41,7 +41,7 @@ Foam::XiGModel::XiGModel
|
|||||||
(
|
(
|
||||||
const dictionary& XiGProperties,
|
const dictionary& XiGProperties,
|
||||||
const hhuCombustionThermo& thermo,
|
const hhuCombustionThermo& thermo,
|
||||||
const compressible::RASmodel& turbulence,
|
const compressible::RASModel& turbulence,
|
||||||
const volScalarField& Su
|
const volScalarField& Su
|
||||||
)
|
)
|
||||||
:
|
:
|
||||||
|
|||||||
@ -38,7 +38,7 @@ SourceFiles
|
|||||||
|
|
||||||
#include "IOdictionary.H"
|
#include "IOdictionary.H"
|
||||||
#include "hhuCombustionThermo.H"
|
#include "hhuCombustionThermo.H"
|
||||||
#include "RASmodel.H"
|
#include "RASModel.H"
|
||||||
#include "runTimeSelectionTables.H"
|
#include "runTimeSelectionTables.H"
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
@ -60,7 +60,7 @@ protected:
|
|||||||
dictionary XiGModelCoeffs_;
|
dictionary XiGModelCoeffs_;
|
||||||
|
|
||||||
const hhuCombustionThermo& thermo_;
|
const hhuCombustionThermo& thermo_;
|
||||||
const compressible::RASmodel& turbulence_;
|
const compressible::RASModel& turbulence_;
|
||||||
const volScalarField& Su_;
|
const volScalarField& Su_;
|
||||||
|
|
||||||
|
|
||||||
@ -91,7 +91,7 @@ public:
|
|||||||
(
|
(
|
||||||
const dictionary& XiGProperties,
|
const dictionary& XiGProperties,
|
||||||
const hhuCombustionThermo& thermo,
|
const hhuCombustionThermo& thermo,
|
||||||
const compressible::RASmodel& turbulence,
|
const compressible::RASModel& turbulence,
|
||||||
const volScalarField& Su
|
const volScalarField& Su
|
||||||
),
|
),
|
||||||
(
|
(
|
||||||
@ -110,7 +110,7 @@ public:
|
|||||||
(
|
(
|
||||||
const dictionary& XiGProperties,
|
const dictionary& XiGProperties,
|
||||||
const hhuCombustionThermo& thermo,
|
const hhuCombustionThermo& thermo,
|
||||||
const compressible::RASmodel& turbulence,
|
const compressible::RASModel& turbulence,
|
||||||
const volScalarField& Su
|
const volScalarField& Su
|
||||||
);
|
);
|
||||||
|
|
||||||
@ -122,7 +122,7 @@ public:
|
|||||||
(
|
(
|
||||||
const dictionary& XiGProperties,
|
const dictionary& XiGProperties,
|
||||||
const hhuCombustionThermo& thermo,
|
const hhuCombustionThermo& thermo,
|
||||||
const compressible::RASmodel& turbulence,
|
const compressible::RASModel& turbulence,
|
||||||
const volScalarField& Su
|
const volScalarField& Su
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|||||||
@ -32,7 +32,7 @@ Foam::autoPtr<Foam::XiGModel> Foam::XiGModel::New
|
|||||||
(
|
(
|
||||||
const dictionary& XiGProperties,
|
const dictionary& XiGProperties,
|
||||||
const hhuCombustionThermo& thermo,
|
const hhuCombustionThermo& thermo,
|
||||||
const compressible::RASmodel& turbulence,
|
const compressible::RASModel& turbulence,
|
||||||
const volScalarField& Su
|
const volScalarField& Su
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
@ -50,7 +50,7 @@ Foam::autoPtr<Foam::XiGModel> Foam::XiGModel::New
|
|||||||
"XiGModel::New"
|
"XiGModel::New"
|
||||||
"("
|
"("
|
||||||
" const hhuCombustionThermo& thermo,"
|
" const hhuCombustionThermo& thermo,"
|
||||||
" const compressible::RASmodel& turbulence,"
|
" const compressible::RASModel& turbulence,"
|
||||||
" const volScalarField& Su"
|
" const volScalarField& Su"
|
||||||
")"
|
")"
|
||||||
) << "Unknown XiGModel type "
|
) << "Unknown XiGModel type "
|
||||||
|
|||||||
@ -45,7 +45,7 @@ Foam::XiGModels::instabilityG::instabilityG
|
|||||||
(
|
(
|
||||||
const dictionary& XiGProperties,
|
const dictionary& XiGProperties,
|
||||||
const hhuCombustionThermo& thermo,
|
const hhuCombustionThermo& thermo,
|
||||||
const compressible::RASmodel& turbulence,
|
const compressible::RASModel& turbulence,
|
||||||
const volScalarField& Su
|
const volScalarField& Su
|
||||||
)
|
)
|
||||||
:
|
:
|
||||||
|
|||||||
@ -87,7 +87,7 @@ public:
|
|||||||
(
|
(
|
||||||
const dictionary& XiGProperties,
|
const dictionary& XiGProperties,
|
||||||
const hhuCombustionThermo& thermo,
|
const hhuCombustionThermo& thermo,
|
||||||
const compressible::RASmodel& turbulence,
|
const compressible::RASModel& turbulence,
|
||||||
const volScalarField& Su
|
const volScalarField& Su
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|||||||
@ -41,7 +41,7 @@ Foam::XiModel::XiModel
|
|||||||
(
|
(
|
||||||
const dictionary& XiProperties,
|
const dictionary& XiProperties,
|
||||||
const hhuCombustionThermo& thermo,
|
const hhuCombustionThermo& thermo,
|
||||||
const compressible::RASmodel& turbulence,
|
const compressible::RASModel& turbulence,
|
||||||
const volScalarField& Su,
|
const volScalarField& Su,
|
||||||
const volScalarField& rho,
|
const volScalarField& rho,
|
||||||
const volScalarField& b,
|
const volScalarField& b,
|
||||||
|
|||||||
@ -38,7 +38,7 @@ SourceFiles
|
|||||||
|
|
||||||
#include "IOdictionary.H"
|
#include "IOdictionary.H"
|
||||||
#include "hhuCombustionThermo.H"
|
#include "hhuCombustionThermo.H"
|
||||||
#include "RASmodel.H"
|
#include "RASModel.H"
|
||||||
#include "multivariateSurfaceInterpolationScheme.H"
|
#include "multivariateSurfaceInterpolationScheme.H"
|
||||||
#include "runTimeSelectionTables.H"
|
#include "runTimeSelectionTables.H"
|
||||||
|
|
||||||
@ -61,7 +61,7 @@ protected:
|
|||||||
dictionary XiModelCoeffs_;
|
dictionary XiModelCoeffs_;
|
||||||
|
|
||||||
const hhuCombustionThermo& thermo_;
|
const hhuCombustionThermo& thermo_;
|
||||||
const compressible::RASmodel& turbulence_;
|
const compressible::RASModel& turbulence_;
|
||||||
const volScalarField& Su_;
|
const volScalarField& Su_;
|
||||||
const volScalarField& rho_;
|
const volScalarField& rho_;
|
||||||
const volScalarField& b_;
|
const volScalarField& b_;
|
||||||
@ -98,7 +98,7 @@ public:
|
|||||||
(
|
(
|
||||||
const dictionary& XiProperties,
|
const dictionary& XiProperties,
|
||||||
const hhuCombustionThermo& thermo,
|
const hhuCombustionThermo& thermo,
|
||||||
const compressible::RASmodel& turbulence,
|
const compressible::RASModel& turbulence,
|
||||||
const volScalarField& Su,
|
const volScalarField& Su,
|
||||||
const volScalarField& rho,
|
const volScalarField& rho,
|
||||||
const volScalarField& b,
|
const volScalarField& b,
|
||||||
@ -123,7 +123,7 @@ public:
|
|||||||
(
|
(
|
||||||
const dictionary& XiProperties,
|
const dictionary& XiProperties,
|
||||||
const hhuCombustionThermo& thermo,
|
const hhuCombustionThermo& thermo,
|
||||||
const compressible::RASmodel& turbulence,
|
const compressible::RASModel& turbulence,
|
||||||
const volScalarField& Su,
|
const volScalarField& Su,
|
||||||
const volScalarField& rho,
|
const volScalarField& rho,
|
||||||
const volScalarField& b,
|
const volScalarField& b,
|
||||||
@ -138,7 +138,7 @@ public:
|
|||||||
(
|
(
|
||||||
const dictionary& XiProperties,
|
const dictionary& XiProperties,
|
||||||
const hhuCombustionThermo& thermo,
|
const hhuCombustionThermo& thermo,
|
||||||
const compressible::RASmodel& turbulence,
|
const compressible::RASModel& turbulence,
|
||||||
const volScalarField& Su,
|
const volScalarField& Su,
|
||||||
const volScalarField& rho,
|
const volScalarField& rho,
|
||||||
const volScalarField& b,
|
const volScalarField& b,
|
||||||
|
|||||||
@ -32,7 +32,7 @@ Foam::autoPtr<Foam::XiModel> Foam::XiModel::New
|
|||||||
(
|
(
|
||||||
const dictionary& XiProperties,
|
const dictionary& XiProperties,
|
||||||
const hhuCombustionThermo& thermo,
|
const hhuCombustionThermo& thermo,
|
||||||
const compressible::RASmodel& turbulence,
|
const compressible::RASModel& turbulence,
|
||||||
const volScalarField& Su,
|
const volScalarField& Su,
|
||||||
const volScalarField& rho,
|
const volScalarField& rho,
|
||||||
const volScalarField& b,
|
const volScalarField& b,
|
||||||
|
|||||||
@ -45,7 +45,7 @@ Foam::XiModels::algebraic::algebraic
|
|||||||
(
|
(
|
||||||
const dictionary& XiProperties,
|
const dictionary& XiProperties,
|
||||||
const hhuCombustionThermo& thermo,
|
const hhuCombustionThermo& thermo,
|
||||||
const compressible::RASmodel& turbulence,
|
const compressible::RASModel& turbulence,
|
||||||
const volScalarField& Su,
|
const volScalarField& Su,
|
||||||
const volScalarField& rho,
|
const volScalarField& rho,
|
||||||
const volScalarField& b,
|
const volScalarField& b,
|
||||||
|
|||||||
@ -86,7 +86,7 @@ public:
|
|||||||
(
|
(
|
||||||
const dictionary& XiProperties,
|
const dictionary& XiProperties,
|
||||||
const hhuCombustionThermo& thermo,
|
const hhuCombustionThermo& thermo,
|
||||||
const compressible::RASmodel& turbulence,
|
const compressible::RASModel& turbulence,
|
||||||
const volScalarField& Su,
|
const volScalarField& Su,
|
||||||
const volScalarField& rho,
|
const volScalarField& rho,
|
||||||
const volScalarField& b,
|
const volScalarField& b,
|
||||||
|
|||||||
@ -45,7 +45,7 @@ Foam::XiModels::fixed::fixed
|
|||||||
(
|
(
|
||||||
const dictionary& XiProperties,
|
const dictionary& XiProperties,
|
||||||
const hhuCombustionThermo& thermo,
|
const hhuCombustionThermo& thermo,
|
||||||
const compressible::RASmodel& turbulence,
|
const compressible::RASModel& turbulence,
|
||||||
const volScalarField& Su,
|
const volScalarField& Su,
|
||||||
const volScalarField& rho,
|
const volScalarField& rho,
|
||||||
const volScalarField& b,
|
const volScalarField& b,
|
||||||
|
|||||||
@ -75,7 +75,7 @@ public:
|
|||||||
(
|
(
|
||||||
const dictionary& XiProperties,
|
const dictionary& XiProperties,
|
||||||
const hhuCombustionThermo& thermo,
|
const hhuCombustionThermo& thermo,
|
||||||
const compressible::RASmodel& turbulence,
|
const compressible::RASModel& turbulence,
|
||||||
const volScalarField& Su,
|
const volScalarField& Su,
|
||||||
const volScalarField& rho,
|
const volScalarField& rho,
|
||||||
const volScalarField& b,
|
const volScalarField& b,
|
||||||
|
|||||||
@ -45,7 +45,7 @@ Foam::XiModels::transport::transport
|
|||||||
(
|
(
|
||||||
const dictionary& XiProperties,
|
const dictionary& XiProperties,
|
||||||
const hhuCombustionThermo& thermo,
|
const hhuCombustionThermo& thermo,
|
||||||
const compressible::RASmodel& turbulence,
|
const compressible::RASModel& turbulence,
|
||||||
const volScalarField& Su,
|
const volScalarField& Su,
|
||||||
const volScalarField& rho,
|
const volScalarField& rho,
|
||||||
const volScalarField& b,
|
const volScalarField& b,
|
||||||
|
|||||||
@ -86,7 +86,7 @@ public:
|
|||||||
(
|
(
|
||||||
const dictionary& XiProperties,
|
const dictionary& XiProperties,
|
||||||
const hhuCombustionThermo& thermo,
|
const hhuCombustionThermo& thermo,
|
||||||
const compressible::RASmodel& turbulence,
|
const compressible::RASModel& turbulence,
|
||||||
const volScalarField& Su,
|
const volScalarField& Su,
|
||||||
const volScalarField& rho,
|
const volScalarField& rho,
|
||||||
const volScalarField& b,
|
const volScalarField& b,
|
||||||
|
|||||||
@ -47,9 +47,9 @@
|
|||||||
# include "compressibleCreatePhi.H"
|
# include "compressibleCreatePhi.H"
|
||||||
|
|
||||||
Info<< "Creating turbulence model\n" << endl;
|
Info<< "Creating turbulence model\n" << endl;
|
||||||
autoPtr<compressible::RASmodel> turbulence
|
autoPtr<compressible::RASModel> turbulence
|
||||||
(
|
(
|
||||||
compressible::RASmodel::New
|
compressible::RASModel::New
|
||||||
(
|
(
|
||||||
rho,
|
rho,
|
||||||
U,
|
U,
|
||||||
|
|||||||
@ -12,7 +12,7 @@ EXE_LIBS = \
|
|||||||
-lengine \
|
-lengine \
|
||||||
-lfiniteVolume \
|
-lfiniteVolume \
|
||||||
-lmeshTools \
|
-lmeshTools \
|
||||||
-lcompressibleRASmodels \
|
-lcompressibleRASModels \
|
||||||
-lbasicThermophysicalModels \
|
-lbasicThermophysicalModels \
|
||||||
-lcombustionThermophysicalModels \
|
-lcombustionThermophysicalModels \
|
||||||
-lspecie \
|
-lspecie \
|
||||||
|
|||||||
@ -52,7 +52,7 @@ Description
|
|||||||
|
|
||||||
#include "fvCFD.H"
|
#include "fvCFD.H"
|
||||||
#include "hhuCombustionThermo.H"
|
#include "hhuCombustionThermo.H"
|
||||||
#include "compressible/RASmodel/RASmodel.H"
|
#include "compressible/RASModel/RASModel.H"
|
||||||
#include "laminarFlameSpeed.H"
|
#include "laminarFlameSpeed.H"
|
||||||
#include "ignition.H"
|
#include "ignition.H"
|
||||||
#include "Switch.H"
|
#include "Switch.H"
|
||||||
|
|||||||
@ -48,9 +48,9 @@
|
|||||||
|
|
||||||
|
|
||||||
Info<< "Creating turbulence model\n" << endl;
|
Info<< "Creating turbulence model\n" << endl;
|
||||||
autoPtr<compressible::RASmodel> turbulence
|
autoPtr<compressible::RASModel> turbulence
|
||||||
(
|
(
|
||||||
compressible::RASmodel::New
|
compressible::RASModel::New
|
||||||
(
|
(
|
||||||
rho,
|
rho,
|
||||||
U,
|
U,
|
||||||
|
|||||||
@ -19,5 +19,5 @@ EXE_LIBS = \
|
|||||||
-lbasicThermophysicalModels \
|
-lbasicThermophysicalModels \
|
||||||
-lcombustionThermophysicalModels \
|
-lcombustionThermophysicalModels \
|
||||||
-lspecie \
|
-lspecie \
|
||||||
-lcompressibleLESmodels \
|
-lcompressibleLESModels \
|
||||||
-llaminarFlameSpeedModels
|
-llaminarFlameSpeedModels
|
||||||
|
|||||||
@ -52,7 +52,7 @@ Description
|
|||||||
|
|
||||||
#include "fvCFD.H"
|
#include "fvCFD.H"
|
||||||
#include "hhuCombustionThermo.H"
|
#include "hhuCombustionThermo.H"
|
||||||
#include "compressible/LESmodel/LESmodel.H"
|
#include "compressible/LESModel/LESModel.H"
|
||||||
#include "laminarFlameSpeed.H"
|
#include "laminarFlameSpeed.H"
|
||||||
#include "ignition.H"
|
#include "ignition.H"
|
||||||
#include "IFstream.H"
|
#include "IFstream.H"
|
||||||
|
|||||||
@ -48,9 +48,9 @@
|
|||||||
|
|
||||||
|
|
||||||
Info<< "Creating turbulence model\n" << endl;
|
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())
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -11,6 +11,6 @@ EXE_INC = \
|
|||||||
EXE_LIBS = \
|
EXE_LIBS = \
|
||||||
-lengine \
|
-lengine \
|
||||||
-lfiniteVolume \
|
-lfiniteVolume \
|
||||||
-lcompressibleRASmodels \
|
-lcompressibleRASModels \
|
||||||
-lbasicThermophysicalModels \
|
-lbasicThermophysicalModels \
|
||||||
-lspecie
|
-lspecie
|
||||||
|
|||||||
@ -34,7 +34,7 @@ Description
|
|||||||
#include "engineTime.H"
|
#include "engineTime.H"
|
||||||
#include "engineMesh.H"
|
#include "engineMesh.H"
|
||||||
#include "basicThermo.H"
|
#include "basicThermo.H"
|
||||||
#include "RASmodel.H"
|
#include "RASModel.H"
|
||||||
#include "OFstream.H"
|
#include "OFstream.H"
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|||||||
@ -42,9 +42,9 @@
|
|||||||
|
|
||||||
|
|
||||||
Info<< "Creating turbulence model\n" << endl;
|
Info<< "Creating turbulence model\n" << endl;
|
||||||
autoPtr<compressible::RASmodel> turbulence
|
autoPtr<compressible::RASModel> turbulence
|
||||||
(
|
(
|
||||||
compressible::RASmodel::New
|
compressible::RASModel::New
|
||||||
(
|
(
|
||||||
rho,
|
rho,
|
||||||
U,
|
U,
|
||||||
|
|||||||
@ -18,7 +18,7 @@ EXE_INC = \
|
|||||||
|
|
||||||
EXE_LIBS = \
|
EXE_LIBS = \
|
||||||
-lengine \
|
-lengine \
|
||||||
-lcompressibleRASmodels \
|
-lcompressibleRASModels \
|
||||||
-lcombustionThermophysicalModels \
|
-lcombustionThermophysicalModels \
|
||||||
-lfiniteVolume \
|
-lfiniteVolume \
|
||||||
-llagrangian \
|
-llagrangian \
|
||||||
|
|||||||
@ -58,9 +58,9 @@ volScalarField kappa
|
|||||||
);
|
);
|
||||||
|
|
||||||
Info << "Creating turbulence model.\n" << nl;
|
Info << "Creating turbulence model.\n" << nl;
|
||||||
autoPtr<compressible::RASmodel> turbulence
|
autoPtr<compressible::RASModel> turbulence
|
||||||
(
|
(
|
||||||
compressible::RASmodel::New
|
compressible::RASModel::New
|
||||||
(
|
(
|
||||||
rho,
|
rho,
|
||||||
U,
|
U,
|
||||||
|
|||||||
@ -34,7 +34,7 @@ Description
|
|||||||
#include "engineTime.H"
|
#include "engineTime.H"
|
||||||
#include "engineMesh.H"
|
#include "engineMesh.H"
|
||||||
#include "hCombustionThermo.H"
|
#include "hCombustionThermo.H"
|
||||||
#include "compressible/RASmodel/RASmodel.H"
|
#include "compressible/RASModel/RASModel.H"
|
||||||
#include "spray.H"
|
#include "spray.H"
|
||||||
#include "chemistryModel.H"
|
#include "chemistryModel.H"
|
||||||
#include "chemistrySolver.H"
|
#include "chemistrySolver.H"
|
||||||
|
|||||||
@ -16,7 +16,7 @@ EXE_INC = \
|
|||||||
-I$(LIB_SRC)/ODE/lnInclude
|
-I$(LIB_SRC)/ODE/lnInclude
|
||||||
|
|
||||||
EXE_LIBS = \
|
EXE_LIBS = \
|
||||||
-lcompressibleRASmodels \
|
-lcompressibleRASModels \
|
||||||
-lcombustionThermophysicalModels \
|
-lcombustionThermophysicalModels \
|
||||||
-lfiniteVolume \
|
-lfiniteVolume \
|
||||||
-llagrangian \
|
-llagrangian \
|
||||||
|
|||||||
@ -32,7 +32,7 @@ Description
|
|||||||
|
|
||||||
#include "fvCFD.H"
|
#include "fvCFD.H"
|
||||||
#include "hCombustionThermo.H"
|
#include "hCombustionThermo.H"
|
||||||
#include "compressible/RASmodel/RASmodel.H"
|
#include "compressible/RASModel/RASModel.H"
|
||||||
#include "spray.H"
|
#include "spray.H"
|
||||||
#include "chemistryModel.H"
|
#include "chemistryModel.H"
|
||||||
#include "chemistrySolver.H"
|
#include "chemistrySolver.H"
|
||||||
|
|||||||
@ -11,7 +11,7 @@ EXE_INC = \
|
|||||||
EXE_LIBS = \
|
EXE_LIBS = \
|
||||||
-lengine \
|
-lengine \
|
||||||
-lfiniteVolume \
|
-lfiniteVolume \
|
||||||
-lcompressibleRASmodels \
|
-lcompressibleRASModels \
|
||||||
-lbasicThermophysicalModels \
|
-lbasicThermophysicalModels \
|
||||||
-lcombustionThermophysicalModels \
|
-lcombustionThermophysicalModels \
|
||||||
-lspecie \
|
-lspecie \
|
||||||
|
|||||||
@ -53,7 +53,7 @@ Description
|
|||||||
#include "engineTime.H"
|
#include "engineTime.H"
|
||||||
#include "engineMesh.H"
|
#include "engineMesh.H"
|
||||||
#include "hhuCombustionThermo.H"
|
#include "hhuCombustionThermo.H"
|
||||||
#include "RASmodel.H"
|
#include "RASModel.H"
|
||||||
#include "laminarFlameSpeed.H"
|
#include "laminarFlameSpeed.H"
|
||||||
#include "ignition.H"
|
#include "ignition.H"
|
||||||
#include "Switch.H"
|
#include "Switch.H"
|
||||||
|
|||||||
@ -9,7 +9,7 @@ EXE_INC = \
|
|||||||
-I$(LIB_SRC)/ODE/lnInclude
|
-I$(LIB_SRC)/ODE/lnInclude
|
||||||
|
|
||||||
EXE_LIBS = \
|
EXE_LIBS = \
|
||||||
-lcompressibleRASmodels \
|
-lcompressibleRASModels \
|
||||||
-lcombustionThermophysicalModels \
|
-lcombustionThermophysicalModels \
|
||||||
-lfiniteVolume \
|
-lfiniteVolume \
|
||||||
-lspecie \
|
-lspecie \
|
||||||
|
|||||||
@ -58,9 +58,9 @@ volScalarField kappa
|
|||||||
);
|
);
|
||||||
|
|
||||||
Info << "Creating turbulence model.\n" << nl;
|
Info << "Creating turbulence model.\n" << nl;
|
||||||
autoPtr<compressible::RASmodel> turbulence
|
autoPtr<compressible::RASModel> turbulence
|
||||||
(
|
(
|
||||||
compressible::RASmodel::New
|
compressible::RASModel::New
|
||||||
(
|
(
|
||||||
rho,
|
rho,
|
||||||
U,
|
U,
|
||||||
|
|||||||
@ -32,7 +32,7 @@ Description
|
|||||||
|
|
||||||
#include "fvCFD.H"
|
#include "fvCFD.H"
|
||||||
#include "hCombustionThermo.H"
|
#include "hCombustionThermo.H"
|
||||||
#include "compressible/RASmodel/RASmodel.H"
|
#include "compressible/RASModel/RASModel.H"
|
||||||
#include "chemistryModel.H"
|
#include "chemistryModel.H"
|
||||||
#include "chemistrySolver.H"
|
#include "chemistrySolver.H"
|
||||||
#include "multivariateScheme.H"
|
#include "multivariateScheme.H"
|
||||||
|
|||||||
@ -10,4 +10,4 @@ EXE_LIBS = \
|
|||||||
-lmeshTools \
|
-lmeshTools \
|
||||||
-lbasicThermophysicalModels \
|
-lbasicThermophysicalModels \
|
||||||
-lspecie \
|
-lspecie \
|
||||||
-lcompressibleLESmodels
|
-lcompressibleLESModels
|
||||||
|
|||||||
@ -32,7 +32,7 @@ Description
|
|||||||
|
|
||||||
#include "fvCFD.H"
|
#include "fvCFD.H"
|
||||||
#include "basicThermo.H"
|
#include "basicThermo.H"
|
||||||
#include "compressible/LESmodel/LESmodel.H"
|
#include "compressible/LESModel/LESModel.H"
|
||||||
|
|
||||||
#define divDevRhoReff divDevRhoBeff
|
#define divDevRhoReff divDevRhoBeff
|
||||||
|
|
||||||
|
|||||||
@ -40,9 +40,9 @@
|
|||||||
|
|
||||||
|
|
||||||
Info<< "Creating turbulence model\n" << endl;
|
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;
|
Info<< "Creating field DpDt\n" << endl;
|
||||||
|
|||||||
@ -9,4 +9,4 @@ EXE_LIBS = \
|
|||||||
-lmeshTools \
|
-lmeshTools \
|
||||||
-lbasicThermophysicalModels \
|
-lbasicThermophysicalModels \
|
||||||
-lspecie \
|
-lspecie \
|
||||||
-lcompressibleRASmodels
|
-lcompressibleRASModels
|
||||||
|
|||||||
@ -44,9 +44,9 @@
|
|||||||
);
|
);
|
||||||
|
|
||||||
Info<< "Creating turbulence model\n" << endl;
|
Info<< "Creating turbulence model\n" << endl;
|
||||||
autoPtr<compressible::RASmodel> turbulence
|
autoPtr<compressible::RASModel> turbulence
|
||||||
(
|
(
|
||||||
compressible::RASmodel::New
|
compressible::RASModel::New
|
||||||
(
|
(
|
||||||
rho,
|
rho,
|
||||||
U,
|
U,
|
||||||
|
|||||||
@ -36,7 +36,7 @@ Description
|
|||||||
|
|
||||||
#include "fvCFD.H"
|
#include "fvCFD.H"
|
||||||
#include "basicThermo.H"
|
#include "basicThermo.H"
|
||||||
#include "compressible/RASmodel/RASmodel.H"
|
#include "compressible/RASModel/RASModel.H"
|
||||||
#include "fixedGradientFvPatchFields.H"
|
#include "fixedGradientFvPatchFields.H"
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|||||||
@ -10,4 +10,4 @@ EXE_LIBS = \
|
|||||||
-lmeshTools \
|
-lmeshTools \
|
||||||
-lbasicThermophysicalModels \
|
-lbasicThermophysicalModels \
|
||||||
-lspecie \
|
-lspecie \
|
||||||
-lcompressibleRASmodels
|
-lcompressibleRASModels
|
||||||
|
|||||||
@ -49,9 +49,9 @@
|
|||||||
);
|
);
|
||||||
|
|
||||||
Info<< "Creating turbulence model\n" << endl;
|
Info<< "Creating turbulence model\n" << endl;
|
||||||
autoPtr<compressible::RASmodel> turbulence
|
autoPtr<compressible::RASModel> turbulence
|
||||||
(
|
(
|
||||||
compressible::RASmodel::New
|
compressible::RASModel::New
|
||||||
(
|
(
|
||||||
rho,
|
rho,
|
||||||
U,
|
U,
|
||||||
|
|||||||
@ -33,7 +33,7 @@ Description
|
|||||||
|
|
||||||
#include "fvCFD.H"
|
#include "fvCFD.H"
|
||||||
#include "basicThermo.H"
|
#include "basicThermo.H"
|
||||||
#include "compressible/RASmodel/RASmodel.H"
|
#include "compressible/RASModel/RASModel.H"
|
||||||
#include "porousZones.H"
|
#include "porousZones.H"
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|||||||
@ -9,4 +9,4 @@ EXE_LIBS = \
|
|||||||
-lmeshTools \
|
-lmeshTools \
|
||||||
-lbasicThermophysicalModels \
|
-lbasicThermophysicalModels \
|
||||||
-lspecie \
|
-lspecie \
|
||||||
-lcompressibleRASmodels
|
-lcompressibleRASModels
|
||||||
|
|||||||
@ -49,9 +49,9 @@
|
|||||||
);
|
);
|
||||||
|
|
||||||
Info<< "Creating turbulence model\n" << endl;
|
Info<< "Creating turbulence model\n" << endl;
|
||||||
autoPtr<compressible::RASmodel> turbulence
|
autoPtr<compressible::RASModel> turbulence
|
||||||
(
|
(
|
||||||
compressible::RASmodel::New
|
compressible::RASModel::New
|
||||||
(
|
(
|
||||||
rho,
|
rho,
|
||||||
U,
|
U,
|
||||||
|
|||||||
@ -33,7 +33,7 @@ Description
|
|||||||
|
|
||||||
#include "fvCFD.H"
|
#include "fvCFD.H"
|
||||||
#include "basicThermo.H"
|
#include "basicThermo.H"
|
||||||
#include "compressible/RASmodel/RASmodel.H"
|
#include "compressible/RASModel/RASModel.H"
|
||||||
#include "fixedGradientFvPatchFields.H"
|
#include "fixedGradientFvPatchFields.H"
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|||||||
@ -9,4 +9,4 @@ EXE_LIBS = \
|
|||||||
-lmeshTools \
|
-lmeshTools \
|
||||||
-lbasicThermophysicalModels \
|
-lbasicThermophysicalModels \
|
||||||
-lspecie \
|
-lspecie \
|
||||||
-lcompressibleRASmodels
|
-lcompressibleRASModels
|
||||||
|
|||||||
@ -40,9 +40,9 @@
|
|||||||
|
|
||||||
|
|
||||||
Info<< "Creating turbulence model\n" << endl;
|
Info<< "Creating turbulence model\n" << endl;
|
||||||
autoPtr<compressible::RASmodel> turbulence
|
autoPtr<compressible::RASModel> turbulence
|
||||||
(
|
(
|
||||||
compressible::RASmodel::New
|
compressible::RASModel::New
|
||||||
(
|
(
|
||||||
rho,
|
rho,
|
||||||
U,
|
U,
|
||||||
|
|||||||
@ -32,7 +32,7 @@ Description
|
|||||||
|
|
||||||
#include "fvCFD.H"
|
#include "fvCFD.H"
|
||||||
#include "basicThermo.H"
|
#include "basicThermo.H"
|
||||||
#include "compressible/RASmodel/RASmodel.H"
|
#include "compressible/RASModel/RASModel.H"
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
|||||||
@ -7,6 +7,6 @@ EXE_INC = \
|
|||||||
EXE_LIBS = \
|
EXE_LIBS = \
|
||||||
-lfiniteVolume \
|
-lfiniteVolume \
|
||||||
-lmeshTools \
|
-lmeshTools \
|
||||||
-lcompressibleRASmodels \
|
-lcompressibleRASModels \
|
||||||
-lbasicThermophysicalModels \
|
-lbasicThermophysicalModels \
|
||||||
-lspecie
|
-lspecie
|
||||||
|
|||||||
@ -38,9 +38,9 @@
|
|||||||
|
|
||||||
|
|
||||||
Info<< "Creating turbulence model\n" << endl;
|
Info<< "Creating turbulence model\n" << endl;
|
||||||
autoPtr<compressible::RASmodel> turbulence
|
autoPtr<compressible::RASModel> turbulence
|
||||||
(
|
(
|
||||||
compressible::RASmodel::New
|
compressible::RASModel::New
|
||||||
(
|
(
|
||||||
rho,
|
rho,
|
||||||
U,
|
U,
|
||||||
|
|||||||
@ -33,7 +33,7 @@ Description
|
|||||||
|
|
||||||
#include "fvCFD.H"
|
#include "fvCFD.H"
|
||||||
#include "basicThermo.H"
|
#include "basicThermo.H"
|
||||||
#include "compressible/RASmodel/RASmodel.H"
|
#include "compressible/RASModel/RASModel.H"
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
|
|||||||
@ -9,4 +9,4 @@ EXE_LIBS = \
|
|||||||
-lmeshTools \
|
-lmeshTools \
|
||||||
-lbasicThermophysicalModels \
|
-lbasicThermophysicalModels \
|
||||||
-lspecie \
|
-lspecie \
|
||||||
-lcompressibleRASmodels
|
-lcompressibleRASModels
|
||||||
|
|||||||
@ -34,7 +34,7 @@ Description
|
|||||||
|
|
||||||
#include "fvCFD.H"
|
#include "fvCFD.H"
|
||||||
#include "basicThermo.H"
|
#include "basicThermo.H"
|
||||||
#include "compressible/RASmodel/RASmodel.H"
|
#include "compressible/RASModel/RASModel.H"
|
||||||
#include "fixedGradientFvPatchFields.H"
|
#include "fixedGradientFvPatchFields.H"
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|||||||
@ -41,9 +41,9 @@
|
|||||||
|
|
||||||
|
|
||||||
Info<< "Creating turbulence model\n" << endl;
|
Info<< "Creating turbulence model\n" << endl;
|
||||||
autoPtr<compressible::RASmodel> turbulence
|
autoPtr<compressible::RASModel> turbulence
|
||||||
(
|
(
|
||||||
compressible::RASmodel::New
|
compressible::RASModel::New
|
||||||
(
|
(
|
||||||
rho,
|
rho,
|
||||||
U,
|
U,
|
||||||
|
|||||||
@ -9,4 +9,4 @@ EXE_LIBS = \
|
|||||||
-lmeshTools \
|
-lmeshTools \
|
||||||
-lbasicThermophysicalModels \
|
-lbasicThermophysicalModels \
|
||||||
-lspecie \
|
-lspecie \
|
||||||
-lcompressibleRASmodels
|
-lcompressibleRASModels
|
||||||
|
|||||||
@ -33,7 +33,7 @@ Description
|
|||||||
|
|
||||||
#include "fvCFD.H"
|
#include "fvCFD.H"
|
||||||
#include "basicThermo.H"
|
#include "basicThermo.H"
|
||||||
#include "compressible/RASmodel/RASmodel.H"
|
#include "compressible/RASModel/RASModel.H"
|
||||||
#include "fixedGradientFvPatchFields.H"
|
#include "fixedGradientFvPatchFields.H"
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|||||||
@ -40,9 +40,9 @@
|
|||||||
|
|
||||||
|
|
||||||
Info<< "Creating turbulence model\n" << endl;
|
Info<< "Creating turbulence model\n" << endl;
|
||||||
autoPtr<compressible::RASmodel> turbulence
|
autoPtr<compressible::RASModel> turbulence
|
||||||
(
|
(
|
||||||
compressible::RASmodel::New
|
compressible::RASModel::New
|
||||||
(
|
(
|
||||||
rho,
|
rho,
|
||||||
U,
|
U,
|
||||||
|
|||||||
@ -11,4 +11,4 @@ EXE_LIBS = \
|
|||||||
-lbasicThermophysicalModels \
|
-lbasicThermophysicalModels \
|
||||||
-lspecie \
|
-lspecie \
|
||||||
-lradiation \
|
-lradiation \
|
||||||
-lcompressibleRASmodels
|
-lcompressibleRASModels
|
||||||
|
|||||||
@ -33,7 +33,7 @@ Description
|
|||||||
|
|
||||||
#include "fvCFD.H"
|
#include "fvCFD.H"
|
||||||
#include "basicThermo.H"
|
#include "basicThermo.H"
|
||||||
#include "compressible/RASmodel/RASmodel.H"
|
#include "compressible/RASModel/RASModel.H"
|
||||||
#include "fixedGradientFvPatchFields.H"
|
#include "fixedGradientFvPatchFields.H"
|
||||||
#include "radiationModel.H"
|
#include "radiationModel.H"
|
||||||
|
|
||||||
|
|||||||
@ -41,9 +41,9 @@
|
|||||||
|
|
||||||
|
|
||||||
Info<< "Creating turbulence model\n" << endl;
|
Info<< "Creating turbulence model\n" << endl;
|
||||||
autoPtr<compressible::RASmodel> turbulence
|
autoPtr<compressible::RASModel> turbulence
|
||||||
(
|
(
|
||||||
compressible::RASmodel::New
|
compressible::RASModel::New
|
||||||
(
|
(
|
||||||
rho,
|
rho,
|
||||||
U,
|
U,
|
||||||
|
|||||||
@ -13,4 +13,4 @@ EXE_LIBS = \
|
|||||||
-lfiniteVolume \
|
-lfiniteVolume \
|
||||||
-lbasicThermophysicalModels \
|
-lbasicThermophysicalModels \
|
||||||
-lspecie \
|
-lspecie \
|
||||||
-lcompressibleRASmodels
|
-lcompressibleRASModels
|
||||||
|
|||||||
@ -33,7 +33,7 @@ Description
|
|||||||
|
|
||||||
#include "fvCFD.H"
|
#include "fvCFD.H"
|
||||||
#include "basicThermo.H"
|
#include "basicThermo.H"
|
||||||
#include "compressible/RASmodel/RASmodel.H"
|
#include "compressible/RASModel/RASModel.H"
|
||||||
#include "fixedGradientFvPatchFields.H"
|
#include "fixedGradientFvPatchFields.H"
|
||||||
#include "regionProperties.H"
|
#include "regionProperties.H"
|
||||||
|
|
||||||
|
|||||||
@ -4,7 +4,7 @@
|
|||||||
PtrList<volScalarField> Kf(fluidRegions.size());
|
PtrList<volScalarField> Kf(fluidRegions.size());
|
||||||
PtrList<volVectorField> Uf(fluidRegions.size());
|
PtrList<volVectorField> Uf(fluidRegions.size());
|
||||||
PtrList<surfaceScalarField> phif(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> DpDtf(fluidRegions.size());
|
||||||
PtrList<volScalarField> ghf(fluidRegions.size());
|
PtrList<volScalarField> ghf(fluidRegions.size());
|
||||||
PtrList<volScalarField> pdf(fluidRegions.size());
|
PtrList<volScalarField> pdf(fluidRegions.size());
|
||||||
@ -125,9 +125,9 @@
|
|||||||
turb.set
|
turb.set
|
||||||
(
|
(
|
||||||
i,
|
i,
|
||||||
autoPtr<compressible::RASmodel>
|
autoPtr<compressible::RASModel>
|
||||||
(
|
(
|
||||||
compressible::RASmodel::New
|
compressible::RASModel::New
|
||||||
(
|
(
|
||||||
rhof[i],
|
rhof[i],
|
||||||
Uf[i],
|
Uf[i],
|
||||||
|
|||||||
@ -32,7 +32,7 @@ void solveEnthalpyEquation
|
|||||||
const volScalarField& rho,
|
const volScalarField& rho,
|
||||||
const volScalarField& DpDt,
|
const volScalarField& DpDt,
|
||||||
const surfaceScalarField& phi,
|
const surfaceScalarField& phi,
|
||||||
const compressible::RASmodel& turb,
|
const compressible::RASModel& turb,
|
||||||
basicThermo& thermo
|
basicThermo& thermo
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
|
|||||||
@ -35,7 +35,7 @@ tmp<fvVectorMatrix> solveMomentumEquation
|
|||||||
const surfaceScalarField& phi,
|
const surfaceScalarField& phi,
|
||||||
const volScalarField& pd,
|
const volScalarField& pd,
|
||||||
const volScalarField& gh,
|
const volScalarField& gh,
|
||||||
const compressible::RASmodel& turb
|
const compressible::RASModel& turb
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
// Solve the Momentum equation
|
// Solve the Momentum equation
|
||||||
|
|||||||
@ -10,4 +10,4 @@ EXE_LIBS = \
|
|||||||
-lmeshTools \
|
-lmeshTools \
|
||||||
-lbasicThermophysicalModels \
|
-lbasicThermophysicalModels \
|
||||||
-lspecie \
|
-lspecie \
|
||||||
-lcompressibleLESmodels
|
-lcompressibleLESModels
|
||||||
|
|||||||
@ -41,9 +41,9 @@
|
|||||||
|
|
||||||
|
|
||||||
Info<< "Creating turbulence model\n" << endl;
|
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())
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -34,7 +34,7 @@ Description
|
|||||||
|
|
||||||
#include "fvCFD.H"
|
#include "fvCFD.H"
|
||||||
#include "basicThermo.H"
|
#include "basicThermo.H"
|
||||||
#include "compressible/LESmodel/LESmodel.H"
|
#include "compressible/LESModel/LESModel.H"
|
||||||
|
|
||||||
#define divDevRhoReff divDevRhoBeff
|
#define divDevRhoReff divDevRhoBeff
|
||||||
|
|
||||||
|
|||||||
@ -5,7 +5,7 @@ EXE_INC = \
|
|||||||
-I$(LIB_SRC)/sampling/lnInclude
|
-I$(LIB_SRC)/sampling/lnInclude
|
||||||
|
|
||||||
EXE_LIBS = \
|
EXE_LIBS = \
|
||||||
-lincompressibleRASmodels \
|
-lincompressibleRASModels \
|
||||||
-lincompressibleTransportModels \
|
-lincompressibleTransportModels \
|
||||||
-lfiniteVolume \
|
-lfiniteVolume \
|
||||||
-lmeshTools \
|
-lmeshTools \
|
||||||
|
|||||||
@ -38,7 +38,7 @@ Description
|
|||||||
|
|
||||||
#include "fvCFD.H"
|
#include "fvCFD.H"
|
||||||
#include "incompressible/singlePhaseTransportModel/singlePhaseTransportModel.H"
|
#include "incompressible/singlePhaseTransportModel/singlePhaseTransportModel.H"
|
||||||
#include "incompressible/RASmodel/RASmodel.H"
|
#include "incompressible/RASModel/RASModel.H"
|
||||||
#include "wallFvPatch.H"
|
#include "wallFvPatch.H"
|
||||||
#include "makeGraph.H"
|
#include "makeGraph.H"
|
||||||
|
|
||||||
|
|||||||
@ -31,9 +31,9 @@
|
|||||||
|
|
||||||
singlePhaseTransportModel laminarTransport(U, phi);
|
singlePhaseTransportModel laminarTransport(U, phi);
|
||||||
|
|
||||||
autoPtr<incompressible::RASmodel> turbulence
|
autoPtr<incompressible::RASModel> turbulence
|
||||||
(
|
(
|
||||||
incompressible::RASmodel::New(U, phi, laminarTransport)
|
incompressible::RASModel::New(U, phi, laminarTransport)
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -7,7 +7,7 @@ EXE_INC = \
|
|||||||
-I../oodles
|
-I../oodles
|
||||||
|
|
||||||
EXE_LIBS = \
|
EXE_LIBS = \
|
||||||
-lincompressibleLESmodels \
|
-lincompressibleLESModels \
|
||||||
-lincompressibleTransportModels \
|
-lincompressibleTransportModels \
|
||||||
-lfiniteVolume \
|
-lfiniteVolume \
|
||||||
-lmeshTools
|
-lmeshTools
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user