dimensioned<Type>: Added constructor from name, dimensions and dictionary
to simplify construction of dimensionedScalar properties and avoid the duplication of the name string in the constructor call.
This commit is contained in:
@ -14,5 +14,7 @@
|
||||
|
||||
dimensionedScalar nu
|
||||
(
|
||||
transportProperties.lookup("nu")
|
||||
"nu",
|
||||
dimViscosity,
|
||||
transportProperties
|
||||
);
|
||||
|
||||
@ -51,8 +51,8 @@ Foam::PDRDragModels::basic::basic
|
||||
)
|
||||
:
|
||||
PDRDragModel(PDRProperties, turbulence, rho, U, phi),
|
||||
Csu("Csu", dimless, PDRDragModelCoeffs_.lookup("Csu")),
|
||||
Csk("Csk", dimless, PDRDragModelCoeffs_.lookup("Csk")),
|
||||
Csu("Csu", dimless, PDRDragModelCoeffs_),
|
||||
Csk("Csk", dimless, PDRDragModelCoeffs_),
|
||||
|
||||
Aw_
|
||||
(
|
||||
|
||||
@ -14,17 +14,23 @@
|
||||
|
||||
dimensionedScalar rho0
|
||||
(
|
||||
thermodynamicProperties.lookup("rho0")
|
||||
"rho0",
|
||||
dimDensity,
|
||||
thermodynamicProperties
|
||||
);
|
||||
|
||||
dimensionedScalar p0
|
||||
(
|
||||
thermodynamicProperties.lookup("p0")
|
||||
"p0",
|
||||
dimPressure,
|
||||
thermodynamicProperties
|
||||
);
|
||||
|
||||
dimensionedScalar psi
|
||||
(
|
||||
thermodynamicProperties.lookup("psi")
|
||||
"psi",
|
||||
dimCompressibility,
|
||||
thermodynamicProperties
|
||||
);
|
||||
|
||||
// Density offset, i.e. the constant part of the density
|
||||
|
||||
@ -1,18 +1,20 @@
|
||||
Info<< "Reading transportProperties\n" << endl;
|
||||
Info<< "Reading transportProperties\n" << endl;
|
||||
|
||||
IOdictionary transportProperties
|
||||
IOdictionary transportProperties
|
||||
(
|
||||
IOobject
|
||||
(
|
||||
IOobject
|
||||
(
|
||||
"transportProperties",
|
||||
runTime.constant(),
|
||||
mesh,
|
||||
IOobject::MUST_READ_IF_MODIFIED,
|
||||
IOobject::NO_WRITE
|
||||
)
|
||||
);
|
||||
"transportProperties",
|
||||
runTime.constant(),
|
||||
mesh,
|
||||
IOobject::MUST_READ_IF_MODIFIED,
|
||||
IOobject::NO_WRITE
|
||||
)
|
||||
);
|
||||
|
||||
dimensionedScalar mu
|
||||
(
|
||||
transportProperties.lookup("mu")
|
||||
);
|
||||
dimensionedScalar mu
|
||||
(
|
||||
"mu",
|
||||
dimDynamicViscosity,
|
||||
transportProperties
|
||||
);
|
||||
|
||||
@ -14,22 +14,30 @@ IOdictionary transportProperties
|
||||
|
||||
dimensionedScalar rho
|
||||
(
|
||||
transportProperties.lookup("rho")
|
||||
"rho",
|
||||
dimDensity,
|
||||
transportProperties
|
||||
);
|
||||
|
||||
dimensionedScalar nu
|
||||
(
|
||||
transportProperties.lookup("nu")
|
||||
"nu",
|
||||
dimViscosity,
|
||||
transportProperties
|
||||
);
|
||||
|
||||
dimensionedScalar mu
|
||||
(
|
||||
transportProperties.lookup("mu")
|
||||
"mu",
|
||||
dimensionSet(1, 1, -2, 0, 0, -2, 0),
|
||||
transportProperties
|
||||
);
|
||||
|
||||
dimensionedScalar sigma
|
||||
(
|
||||
transportProperties.lookup("sigma")
|
||||
"sigma",
|
||||
dimensionSet(-1, -3, 3, 0, 0, 2, 0),
|
||||
transportProperties
|
||||
);
|
||||
|
||||
Info<< "Reading field p\n" << endl;
|
||||
|
||||
@ -5,14 +5,14 @@ dimensionedScalar beta
|
||||
(
|
||||
"beta",
|
||||
dimless/dimTemperature,
|
||||
laminarTransport.lookup("beta")
|
||||
laminarTransport
|
||||
);
|
||||
|
||||
// Reference temperature [K]
|
||||
dimensionedScalar TRef("TRef", dimTemperature, laminarTransport.lookup("TRef"));
|
||||
dimensionedScalar TRef("TRef", dimTemperature, laminarTransport);
|
||||
|
||||
// Laminar Prandtl number
|
||||
dimensionedScalar Pr("Pr", dimless, laminarTransport.lookup("Pr"));
|
||||
dimensionedScalar Pr("Pr", dimless, laminarTransport);
|
||||
|
||||
// Turbulent Prandtl number
|
||||
dimensionedScalar Prt("Prt", dimless, laminarTransport.lookup("Prt"));
|
||||
dimensionedScalar Prt("Prt", dimless, laminarTransport);
|
||||
|
||||
@ -36,7 +36,7 @@ autoPtr<incompressible::RASModel> turbulence
|
||||
incompressible::RASModel::New(U, phi, laminarTransport)
|
||||
);
|
||||
|
||||
dimensionedVector Ubar("Ubar", dimVelocity, laminarTransport.lookup("Ubar"));
|
||||
dimensionedVector Ubar("Ubar", dimVelocity, laminarTransport);
|
||||
|
||||
vector flowDirection = (Ubar/mag(Ubar)).value();
|
||||
tensor flowMask = sqr(flowDirection);
|
||||
|
||||
@ -14,6 +14,8 @@ IOdictionary transportProperties
|
||||
|
||||
dimensionedScalar nu
|
||||
(
|
||||
"nu",
|
||||
dimViscosity,
|
||||
transportProperties.lookup("nu")
|
||||
);
|
||||
|
||||
|
||||
@ -20,7 +20,7 @@
|
||||
(
|
||||
"rhoInf",
|
||||
dimDensity,
|
||||
laminarTransport.lookup("rhoInf")
|
||||
laminarTransport
|
||||
);
|
||||
|
||||
volScalarField rhoInf
|
||||
|
||||
@ -16,28 +16,28 @@ dimensionedScalar psil
|
||||
(
|
||||
"psil",
|
||||
dimCompressibility,
|
||||
thermodynamicProperties.lookup("psil")
|
||||
thermodynamicProperties
|
||||
);
|
||||
|
||||
dimensionedScalar rholSat
|
||||
(
|
||||
"rholSat",
|
||||
dimDensity,
|
||||
thermodynamicProperties.lookup("rholSat")
|
||||
thermodynamicProperties
|
||||
);
|
||||
|
||||
dimensionedScalar psiv
|
||||
(
|
||||
"psiv",
|
||||
dimCompressibility,
|
||||
thermodynamicProperties.lookup("psiv")
|
||||
thermodynamicProperties
|
||||
);
|
||||
|
||||
dimensionedScalar pSat
|
||||
(
|
||||
"pSat",
|
||||
dimPressure,
|
||||
thermodynamicProperties.lookup("pSat")
|
||||
thermodynamicProperties
|
||||
);
|
||||
|
||||
dimensionedScalar rhovSat("rhovSat", psiv*pSat);
|
||||
@ -48,5 +48,5 @@ dimensionedScalar rhoMin
|
||||
(
|
||||
"rhoMin",
|
||||
dimDensity,
|
||||
thermodynamicProperties.lookup("rhoMin")
|
||||
thermodynamicProperties
|
||||
);
|
||||
|
||||
@ -61,7 +61,7 @@ dimensionedScalar pMin
|
||||
(
|
||||
"pMin",
|
||||
dimPressure,
|
||||
mixture.lookup("pMin")
|
||||
mixture
|
||||
);
|
||||
|
||||
mesh.setFluxRequired(p_rgh.name());
|
||||
|
||||
@ -46,7 +46,7 @@ volScalarField rho
|
||||
mixture.rho()
|
||||
);
|
||||
|
||||
dimensionedScalar pMin("pMin", dimPressure, mixture.lookup("pMin"));
|
||||
dimensionedScalar pMin("pMin", dimPressure, mixture);
|
||||
|
||||
mesh.setFluxRequired(p_rgh.name());
|
||||
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2014 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2014-2015 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -80,8 +80,8 @@ incompressibleTwoPhaseInteractingMixture
|
||||
)
|
||||
),
|
||||
|
||||
rhod_("rho", dimDensity, muModel_->viscosityProperties().lookup("rho")),
|
||||
rhoc_("rho", dimDensity, nucModel_->viscosityProperties().lookup("rho")),
|
||||
rhod_("rho", dimDensity, muModel_->viscosityProperties()),
|
||||
rhoc_("rho", dimDensity, nucModel_->viscosityProperties()),
|
||||
dd_
|
||||
(
|
||||
"d",
|
||||
|
||||
@ -60,19 +60,19 @@ Foam::mixtureViscosityModels::BinghamPlastic::BinghamPlastic
|
||||
(
|
||||
"BinghamCoeff",
|
||||
dimensionSet(1, -1, -2, 0, 0),
|
||||
plasticCoeffs_.lookup("BinghamCoeff")
|
||||
plasticCoeffs_
|
||||
),
|
||||
yieldStressExponent_
|
||||
(
|
||||
"BinghamExponent",
|
||||
dimless,
|
||||
plasticCoeffs_.lookup("BinghamExponent")
|
||||
plasticCoeffs_
|
||||
),
|
||||
yieldStressOffset_
|
||||
(
|
||||
"BinghamOffset",
|
||||
dimless,
|
||||
plasticCoeffs_.lookup("BinghamOffset")
|
||||
plasticCoeffs_
|
||||
),
|
||||
U_(U)
|
||||
{}
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2014 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2014-2015 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -47,9 +47,9 @@ Foam::relativeVelocityModels::general::general
|
||||
)
|
||||
:
|
||||
relativeVelocityModel(dict, mixture),
|
||||
a_("a", dimless, dict.lookup("a")),
|
||||
a1_("a1", dimless, dict.lookup("a1")),
|
||||
V0_("V0", dimVelocity, dict.lookup("V0")),
|
||||
a_("a", dimless, dict),
|
||||
a1_("a1", dimless, dict),
|
||||
V0_("V0", dimVelocity, dict),
|
||||
residualAlpha_(dict.lookup("residualAlpha"))
|
||||
{}
|
||||
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2014 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2014-2015 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -47,9 +47,9 @@ Foam::relativeVelocityModels::simple::simple
|
||||
)
|
||||
:
|
||||
relativeVelocityModel(dict, mixture),
|
||||
a_("a", dimless, dict.lookup("a")),
|
||||
V0_("V0", dimVelocity, dict.lookup("V0")),
|
||||
residualAlpha_("residualAlpha", dimless, dict.lookup("residualAlpha"))
|
||||
a_("a", dimless, dict),
|
||||
V0_("V0", dimVelocity, dict),
|
||||
residualAlpha_("residualAlpha", dimless, dict)
|
||||
{}
|
||||
|
||||
|
||||
|
||||
@ -152,9 +152,9 @@ Foam::incompressibleThreePhaseMixture::incompressibleThreePhaseMixture
|
||||
)
|
||||
),
|
||||
|
||||
rho1_("rho", dimDensity, nuModel1_->viscosityProperties().lookup("rho")),
|
||||
rho2_("rho", dimDensity, nuModel2_->viscosityProperties().lookup("rho")),
|
||||
rho3_("rho", dimDensity, nuModel3_->viscosityProperties().lookup("rho"))
|
||||
rho1_("rho", dimDensity, nuModel1_->viscosityProperties()),
|
||||
rho2_("rho", dimDensity, nuModel2_->viscosityProperties()),
|
||||
rho3_("rho", dimDensity, nuModel3_->viscosityProperties())
|
||||
{
|
||||
alpha3_ == 1.0 - alpha1_ - alpha2_;
|
||||
calcNu();
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -53,7 +53,7 @@ Foam::diameterModels::constant::constant
|
||||
)
|
||||
:
|
||||
diameterModel(dict, phase),
|
||||
d_("d", dimLength, dict.lookup("d"))
|
||||
d_("d", dimLength, dict)
|
||||
{}
|
||||
|
||||
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -53,8 +53,8 @@ Foam::diameterModels::isothermal::isothermal
|
||||
)
|
||||
:
|
||||
diameterModel(dict, phase),
|
||||
d0_("d0", dimLength, dict.lookup("d0")),
|
||||
p0_("p0", dimPressure, dict.lookup("p0"))
|
||||
d0_("d0", dimLength, dict),
|
||||
p0_("p0", dimPressure, dict)
|
||||
{}
|
||||
|
||||
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -57,25 +57,25 @@ Foam::phaseModel::phaseModel
|
||||
(
|
||||
"nu",
|
||||
dimensionSet(0, 2, -1, 0, 0),
|
||||
phaseDict_.lookup("nu")
|
||||
phaseDict_
|
||||
),
|
||||
kappa_
|
||||
(
|
||||
"kappa",
|
||||
dimensionSet(1, 1, -3, -1, 0),
|
||||
phaseDict_.lookup("kappa")
|
||||
phaseDict_
|
||||
),
|
||||
Cp_
|
||||
(
|
||||
"Cp",
|
||||
dimensionSet(0, 2, -2, -1, 0),
|
||||
phaseDict_.lookup("Cp")
|
||||
phaseDict_
|
||||
),
|
||||
rho_
|
||||
(
|
||||
"rho",
|
||||
dimDensity,
|
||||
phaseDict_.lookup("rho")
|
||||
phaseDict_
|
||||
),
|
||||
U_
|
||||
(
|
||||
|
||||
@ -59,7 +59,7 @@ Foam::phase::phase
|
||||
phi
|
||||
)
|
||||
),
|
||||
rho_("rho", dimDensity, phaseDict_.lookup("rho"))
|
||||
rho_("rho", dimDensity, phaseDict_)
|
||||
{}
|
||||
|
||||
|
||||
|
||||
@ -31,7 +31,7 @@ dimensionedScalar pMin
|
||||
(
|
||||
"pMin",
|
||||
dimPressure,
|
||||
fluid.lookup("pMin")
|
||||
fluid
|
||||
);
|
||||
|
||||
#include "gh.H"
|
||||
|
||||
@ -89,7 +89,7 @@ Foam::InterfaceCompositionModel<Thermo, OtherThermo>::InterfaceCompositionModel
|
||||
IOobject::groupName(basicThermo::dictName, pair.phase2().name())
|
||||
)
|
||||
),
|
||||
Le_("Le", dimless, dict.lookup("Le"))
|
||||
Le_("Le", dimless, dict)
|
||||
{}
|
||||
|
||||
|
||||
|
||||
@ -48,7 +48,7 @@ Foam::massTransferModels::Frossling::Frossling
|
||||
)
|
||||
:
|
||||
massTransferModel(dict, pair),
|
||||
Le_("Le", dimless, dict.lookup("Le"))
|
||||
Le_("Le", dimless, dict)
|
||||
{}
|
||||
|
||||
|
||||
|
||||
@ -53,7 +53,7 @@ Foam::massTransferModels::sphericalMassTransfer::sphericalMassTransfer
|
||||
)
|
||||
:
|
||||
massTransferModel(dict, pair),
|
||||
Le_("Le", dimless, dict.lookup("Le"))
|
||||
Le_("Le", dimless, dict)
|
||||
{}
|
||||
|
||||
|
||||
|
||||
@ -43,9 +43,9 @@ namespace saturationModels
|
||||
Foam::saturationModels::Antoine::Antoine(const dictionary& dict)
|
||||
:
|
||||
saturationModel(),
|
||||
A_("A", dimless, dict.lookup("A")),
|
||||
B_("B", dimTemperature, dict.lookup("B")),
|
||||
C_("C", dimTemperature, dict.lookup("C"))
|
||||
A_("A", dimless, dict),
|
||||
B_("B", dimTemperature, dict),
|
||||
C_("C", dimTemperature, dict)
|
||||
{}
|
||||
|
||||
|
||||
|
||||
@ -51,9 +51,9 @@ Foam::saturationModels::AntoineExtended::AntoineExtended
|
||||
)
|
||||
:
|
||||
Antoine(dict),
|
||||
D_("D", dimless, dict.lookup("D")),
|
||||
F_("F", dimless, dict.lookup("F")),
|
||||
E_("E", dimless/pow(dimTemperature, F_), dict.lookup("E"))
|
||||
D_("D", dimless, dict),
|
||||
F_("F", dimless, dict),
|
||||
E_("E", dimless/pow(dimTemperature, F_), dict)
|
||||
{}
|
||||
|
||||
|
||||
|
||||
@ -49,8 +49,8 @@ Foam::saturationModels::constantSaturationConditions::
|
||||
constantSaturationConditions(const dictionary& dict)
|
||||
:
|
||||
saturationModel(),
|
||||
pSat_("pSat", dimPressure, dict.lookup("pSat")),
|
||||
Tsat_("Tsat", dimTemperature, dict.lookup("Tsat"))
|
||||
pSat_("pSat", dimPressure, dict),
|
||||
Tsat_("Tsat", dimTemperature, dict)
|
||||
{}
|
||||
|
||||
|
||||
|
||||
@ -55,7 +55,7 @@ constantSurfaceTensionCoefficient
|
||||
)
|
||||
:
|
||||
surfaceTensionModel(dict, pair, registerObject),
|
||||
sigma_("sigma", dimSigma, dict.lookup("sigma"))
|
||||
sigma_("sigma", dimSigma, dict)
|
||||
{}
|
||||
|
||||
|
||||
|
||||
@ -53,7 +53,7 @@ Foam::aspectRatioModels::constantAspectRatio::constantAspectRatio
|
||||
)
|
||||
:
|
||||
aspectRatioModel(dict, pair),
|
||||
E0_("E0", dimless, dict.lookup("E0"))
|
||||
E0_("E0", dimless, dict)
|
||||
{}
|
||||
|
||||
|
||||
|
||||
@ -49,7 +49,7 @@ Foam::dragModels::GidaspowSchillerNaumann::GidaspowSchillerNaumann
|
||||
)
|
||||
:
|
||||
dragModel(dict, pair, registerObject),
|
||||
residualRe_("residualRe", dimless, dict.lookup("residualRe"))
|
||||
residualRe_("residualRe", dimless, dict)
|
||||
{}
|
||||
|
||||
|
||||
|
||||
@ -49,7 +49,7 @@ Foam::dragModels::SchillerNaumann::SchillerNaumann
|
||||
)
|
||||
:
|
||||
dragModel(dict, pair, registerObject),
|
||||
residualRe_("residualRe", dimless, dict.lookup("residualRe"))
|
||||
residualRe_("residualRe", dimless, dict)
|
||||
{}
|
||||
|
||||
|
||||
|
||||
@ -49,9 +49,9 @@ Foam::dragModels::TomiyamaAnalytic::TomiyamaAnalytic
|
||||
)
|
||||
:
|
||||
dragModel(dict, pair, registerObject),
|
||||
residualRe_("residualRe", dimless, dict.lookup("residualRe")),
|
||||
residualEo_("residualEo", dimless, dict.lookup("residualEo")),
|
||||
residualE_("residualE", dimless, dict.lookup("residualE"))
|
||||
residualRe_("residualRe", dimless, dict),
|
||||
residualEo_("residualEo", dimless, dict),
|
||||
residualE_("residualE", dimless, dict)
|
||||
{}
|
||||
|
||||
|
||||
|
||||
@ -49,7 +49,7 @@ Foam::dragModels::TomiyamaCorrelated::TomiyamaCorrelated
|
||||
)
|
||||
:
|
||||
dragModel(dict, pair, registerObject),
|
||||
A_("A", dimless, dict.lookup("A"))
|
||||
A_("A", dimless, dict)
|
||||
{}
|
||||
|
||||
|
||||
|
||||
@ -49,7 +49,7 @@ Foam::dragModels::WenYu::WenYu
|
||||
)
|
||||
:
|
||||
dragModel(dict, pair, registerObject),
|
||||
residualRe_("residualRe", dimless, dict.lookup("residualRe"))
|
||||
residualRe_("residualRe", dimless, dict)
|
||||
{}
|
||||
|
||||
|
||||
|
||||
@ -51,8 +51,8 @@ Foam::dragModels::segregated::segregated
|
||||
)
|
||||
:
|
||||
dragModel(dict, pair, registerObject),
|
||||
m_("m", dimless, dict.lookup("m")),
|
||||
n_("n", dimless, dict.lookup("n"))
|
||||
m_("m", dimless, dict),
|
||||
n_("n", dimless, dict)
|
||||
{}
|
||||
|
||||
|
||||
|
||||
@ -49,7 +49,7 @@ Foam::liftModels::LegendreMagnaudet::LegendreMagnaudet
|
||||
)
|
||||
:
|
||||
liftModel(dict, pair),
|
||||
residualRe_("residualRe", dimless, dict.lookup("residualRe"))
|
||||
residualRe_("residualRe", dimless, dict)
|
||||
{}
|
||||
|
||||
|
||||
|
||||
@ -48,7 +48,7 @@ Foam::liftModels::constantLiftCoefficient::constantLiftCoefficient
|
||||
)
|
||||
:
|
||||
liftModel(dict, pair),
|
||||
Cl_("Cl", dimless, dict.lookup("Cl"))
|
||||
Cl_("Cl", dimless, dict)
|
||||
{}
|
||||
|
||||
|
||||
|
||||
@ -63,7 +63,7 @@ Foam::swarmCorrections::TomiyamaSwarm::TomiyamaSwarm
|
||||
pair_.dispersed().residualAlpha().value()
|
||||
)
|
||||
),
|
||||
l_("l", dimless, dict.lookup("l"))
|
||||
l_("l", dimless, dict)
|
||||
{}
|
||||
|
||||
|
||||
|
||||
@ -56,7 +56,7 @@ Foam::turbulentDispersionModels::Burns::Burns
|
||||
)
|
||||
:
|
||||
turbulentDispersionModel(dict, pair),
|
||||
sigma_("sigma", dimless, dict.lookup("sigma")),
|
||||
sigma_("sigma", dimless, dict),
|
||||
residualAlpha_
|
||||
(
|
||||
"residualAlpha",
|
||||
|
||||
@ -56,7 +56,7 @@ Foam::turbulentDispersionModels::Gosman::Gosman
|
||||
)
|
||||
:
|
||||
turbulentDispersionModel(dict, pair),
|
||||
sigma_("sigma", dimless, dict.lookup("sigma"))
|
||||
sigma_("sigma", dimless, dict)
|
||||
{}
|
||||
|
||||
|
||||
|
||||
@ -54,7 +54,7 @@ Foam::turbulentDispersionModels::LopezDeBertodano::LopezDeBertodano
|
||||
)
|
||||
:
|
||||
turbulentDispersionModel(dict, pair),
|
||||
Ctd_("Ctd", dimless, dict.lookup("Ctd"))
|
||||
Ctd_("Ctd", dimless, dict)
|
||||
{}
|
||||
|
||||
|
||||
|
||||
@ -55,7 +55,7 @@ constantTurbulentDispersionCoefficient
|
||||
)
|
||||
:
|
||||
turbulentDispersionModel(dict, pair),
|
||||
Ctd_("Ctd", dimless, dict.lookup("Ctd"))
|
||||
Ctd_("Ctd", dimless, dict)
|
||||
{}
|
||||
|
||||
|
||||
|
||||
@ -55,7 +55,7 @@ constantVirtualMassCoefficient
|
||||
)
|
||||
:
|
||||
virtualMassModel(dict, pair, registerObject),
|
||||
Cvm_("Cvm", dimless, dict.lookup("Cvm"))
|
||||
Cvm_("Cvm", dimless, dict)
|
||||
{}
|
||||
|
||||
|
||||
|
||||
@ -53,8 +53,8 @@ Foam::wallLubricationModels::Antal::Antal
|
||||
)
|
||||
:
|
||||
wallLubricationModel(dict, pair),
|
||||
Cw1_("Cw1", dimless, dict.lookup("Cw1")),
|
||||
Cw2_("Cw2", dimless, dict.lookup("Cw2"))
|
||||
Cw1_("Cw1", dimless, dict),
|
||||
Cw2_("Cw2", dimless, dict)
|
||||
{}
|
||||
|
||||
|
||||
|
||||
@ -53,8 +53,8 @@ Foam::wallLubricationModels::Frank::Frank
|
||||
)
|
||||
:
|
||||
wallLubricationModel(dict, pair),
|
||||
Cwd_("Cwd", dimless, dict.lookup("Cwd")),
|
||||
Cwc_("Cwc", dimless, dict.lookup("Cwc")),
|
||||
Cwd_("Cwd", dimless, dict),
|
||||
Cwc_("Cwc", dimless, dict),
|
||||
p_(readScalar(dict.lookup("p")))
|
||||
{}
|
||||
|
||||
|
||||
@ -53,7 +53,7 @@ Foam::wallLubricationModels::TomiyamaWallLubrication::TomiyamaWallLubrication
|
||||
)
|
||||
:
|
||||
wallLubricationModel(dict, pair),
|
||||
D_("Cwd", dimLength, dict.lookup("D"))
|
||||
D_("Cwd", dimLength, dict)
|
||||
{}
|
||||
|
||||
|
||||
|
||||
@ -57,7 +57,7 @@ Foam::kineticTheoryModels::conductivityModels::HrenyaSinclair::HrenyaSinclair
|
||||
:
|
||||
conductivityModel(dict),
|
||||
coeffDict_(dict.subDict(typeName + "Coeffs")),
|
||||
L_("L", dimensionSet(0, 1, 0, 0, 0), coeffDict_.lookup("L"))
|
||||
L_("L", dimensionSet(0, 1, 0, 0, 0), coeffDict_)
|
||||
{}
|
||||
|
||||
|
||||
|
||||
@ -58,11 +58,11 @@ JohnsonJackson
|
||||
:
|
||||
frictionalStressModel(dict),
|
||||
coeffDict_(dict.subDict(typeName + "Coeffs")),
|
||||
Fr_("Fr", dimensionSet(1, -1, -2, 0, 0), coeffDict_.lookup("Fr")),
|
||||
eta_("eta", dimless, coeffDict_.lookup("eta")),
|
||||
p_("p", dimless, coeffDict_.lookup("p")),
|
||||
phi_("phi", dimless, coeffDict_.lookup("phi")),
|
||||
alphaDeltaMin_("alphaDeltaMin", dimless, coeffDict_.lookup("alphaDeltaMin"))
|
||||
Fr_("Fr", dimensionSet(1, -1, -2, 0, 0), coeffDict_),
|
||||
eta_("eta", dimless, coeffDict_),
|
||||
p_("p", dimless, coeffDict_),
|
||||
phi_("phi", dimless, coeffDict_),
|
||||
alphaDeltaMin_("alphaDeltaMin", dimless, coeffDict_)
|
||||
{
|
||||
phi_ *= constant::mathematical::pi/180.0;
|
||||
}
|
||||
|
||||
@ -56,7 +56,7 @@ Foam::kineticTheoryModels::frictionalStressModels::Schaeffer::Schaeffer
|
||||
:
|
||||
frictionalStressModel(dict),
|
||||
coeffDict_(dict.subDict(typeName + "Coeffs")),
|
||||
phi_("phi", dimless, coeffDict_.lookup("phi"))
|
||||
phi_("phi", dimless, coeffDict_)
|
||||
{
|
||||
phi_ *= constant::mathematical::pi/180.0;
|
||||
}
|
||||
|
||||
@ -92,19 +92,19 @@ Foam::RASModels::kineticTheoryModel::kineticTheoryModel
|
||||
),
|
||||
|
||||
equilibrium_(coeffDict_.lookup("equilibrium")),
|
||||
e_("e", dimless, coeffDict_.lookup("e")),
|
||||
alphaMax_("alphaMax", dimless, coeffDict_.lookup("alphaMax")),
|
||||
e_("e", dimless, coeffDict_),
|
||||
alphaMax_("alphaMax", dimless, coeffDict_),
|
||||
alphaMinFriction_
|
||||
(
|
||||
"alphaMinFriction",
|
||||
dimless,
|
||||
coeffDict_.lookup("alphaMinFriction")
|
||||
coeffDict_
|
||||
),
|
||||
residualAlpha_
|
||||
(
|
||||
"residualAlpha",
|
||||
dimless,
|
||||
coeffDict_.lookup("residualAlpha")
|
||||
coeffDict_
|
||||
),
|
||||
|
||||
Theta_
|
||||
|
||||
@ -57,7 +57,7 @@ Foam::kineticTheoryModels::viscosityModels::HrenyaSinclair::HrenyaSinclair
|
||||
:
|
||||
viscosityModel(dict),
|
||||
coeffDict_(dict.subDict(typeName + "Coeffs")),
|
||||
L_("L", dimensionSet(0, 1, 0, 0, 0), coeffDict_.lookup("L"))
|
||||
L_("L", dimensionSet(0, 1, 0, 0, 0), coeffDict_)
|
||||
{}
|
||||
|
||||
|
||||
|
||||
@ -75,13 +75,13 @@ Foam::diameterModels::IATE::IATE
|
||||
),
|
||||
phase_.mesh()
|
||||
),
|
||||
dMax_("dMax", dimLength, diameterProperties_.lookup("dMax")),
|
||||
dMin_("dMin", dimLength, diameterProperties_.lookup("dMin")),
|
||||
dMax_("dMax", dimLength, diameterProperties_),
|
||||
dMin_("dMin", dimLength, diameterProperties_),
|
||||
residualAlpha_
|
||||
(
|
||||
"residualAlpha",
|
||||
dimless,
|
||||
diameterProperties_.lookup("residualAlpha")
|
||||
diameterProperties_
|
||||
),
|
||||
d_
|
||||
(
|
||||
|
||||
@ -51,9 +51,9 @@ randomCoalescence
|
||||
)
|
||||
:
|
||||
IATEsource(iate),
|
||||
Crc_("Crc", dimless, dict.lookup("Crc")),
|
||||
C_("C", dimless, dict.lookup("C")),
|
||||
alphaMax_("alphaMax", dimless, dict.lookup("alphaMax"))
|
||||
Crc_("Crc", dimless, dict),
|
||||
C_("C", dimless, dict),
|
||||
alphaMax_("alphaMax", dimless, dict)
|
||||
{}
|
||||
|
||||
|
||||
|
||||
@ -51,8 +51,8 @@ turbulentBreakUp
|
||||
)
|
||||
:
|
||||
IATEsource(iate),
|
||||
Cti_("Cti", dimless, dict.lookup("Cti")),
|
||||
WeCr_("WeCr", dimless, dict.lookup("WeCr"))
|
||||
Cti_("Cti", dimless, dict),
|
||||
WeCr_("WeCr", dimless, dict)
|
||||
{}
|
||||
|
||||
|
||||
|
||||
@ -56,7 +56,7 @@ wakeEntrainmentCoalescence
|
||||
)
|
||||
:
|
||||
IATEsource(iate),
|
||||
Cwe_("Cwe", dimless, dict.lookup("Cwe"))
|
||||
Cwe_("Cwe", dimless, dict)
|
||||
{}
|
||||
|
||||
|
||||
|
||||
@ -53,7 +53,7 @@ Foam::diameterModels::constant::constant
|
||||
)
|
||||
:
|
||||
diameterModel(diameterProperties, phase),
|
||||
d_("d", dimLength, diameterProperties_.lookup("d"))
|
||||
d_("d", dimLength, diameterProperties_)
|
||||
{}
|
||||
|
||||
|
||||
|
||||
@ -53,8 +53,8 @@ Foam::diameterModels::isothermal::isothermal
|
||||
)
|
||||
:
|
||||
diameterModel(diameterProperties, phase),
|
||||
d0_("d0", dimLength, diameterProperties_.lookup("d0")),
|
||||
p0_("p0", dimPressure, diameterProperties_.lookup("p0"))
|
||||
d0_("d0", dimLength, diameterProperties_),
|
||||
p0_("p0", dimPressure, diameterProperties_)
|
||||
{}
|
||||
|
||||
|
||||
|
||||
@ -49,13 +49,13 @@ Foam::MultiComponentPhaseModel<BasePhaseModel>::MultiComponentPhaseModel
|
||||
(
|
||||
"Sc",
|
||||
dimless,
|
||||
fluid.subDict(phaseName).lookup("Sc")
|
||||
fluid.subDict(phaseName)
|
||||
),
|
||||
residualAlpha_
|
||||
(
|
||||
"residualAlpha",
|
||||
dimless,
|
||||
fluid.mesh().solverDict("Yi").lookup("residualAlpha")
|
||||
fluid.mesh().solverDict("Yi")
|
||||
),
|
||||
inertIndex_(-1)
|
||||
{
|
||||
|
||||
@ -37,10 +37,10 @@ volScalarField& alpha2(mixture.alpha2());
|
||||
const dimensionedScalar& rho1 = mixture.rho1();
|
||||
const dimensionedScalar& rho2 = mixture.rho2();
|
||||
|
||||
dimensionedScalar Dab("Dab", dimViscosity, mixture.lookup("Dab"));
|
||||
dimensionedScalar Dab("Dab", dimViscosity, mixture);
|
||||
|
||||
// Read the reciprocal of the turbulent Schmidt number
|
||||
dimensionedScalar alphatab("alphatab", dimless, mixture.lookup("alphatab"));
|
||||
dimensionedScalar alphatab("alphatab", dimless, mixture);
|
||||
|
||||
// Need to store rho for ddt(rho, U)
|
||||
volScalarField rho("rho", alpha1*rho1 + alpha2*rho2);
|
||||
|
||||
@ -27,7 +27,7 @@ dimensionedScalar pMin
|
||||
(
|
||||
"pMin",
|
||||
dimPressure,
|
||||
fluid.lookup("pMin")
|
||||
fluid
|
||||
);
|
||||
|
||||
#include "gh.H"
|
||||
|
||||
@ -53,7 +53,7 @@ Foam::aspectRatioModels::constantAspectRatio::constantAspectRatio
|
||||
)
|
||||
:
|
||||
aspectRatioModel(dict, pair),
|
||||
E0_("E0", dimless, dict.lookup("E0"))
|
||||
E0_("E0", dimless, dict)
|
||||
{}
|
||||
|
||||
|
||||
|
||||
@ -49,7 +49,7 @@ Foam::dragModels::GidaspowSchillerNaumann::GidaspowSchillerNaumann
|
||||
)
|
||||
:
|
||||
dragModel(dict, pair, registerObject),
|
||||
residualRe_("residualRe", dimless, dict.lookup("residualRe"))
|
||||
residualRe_("residualRe", dimless, dict)
|
||||
{}
|
||||
|
||||
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2011-2014 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -49,7 +49,7 @@ Foam::dragModels::SchillerNaumann::SchillerNaumann
|
||||
)
|
||||
:
|
||||
dragModel(dict, pair, registerObject),
|
||||
residualRe_("residualRe", dimless, dict.lookup("residualRe"))
|
||||
residualRe_("residualRe", dimless, dict)
|
||||
{}
|
||||
|
||||
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2014 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2014-2015 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -49,9 +49,9 @@ Foam::dragModels::TomiyamaAnalytic::TomiyamaAnalytic
|
||||
)
|
||||
:
|
||||
dragModel(dict, pair, registerObject),
|
||||
residualRe_("residualRe", dimless, dict.lookup("residualRe")),
|
||||
residualEo_("residualEo", dimless, dict.lookup("residualEo")),
|
||||
residualE_("residualE", dimless, dict.lookup("residualE"))
|
||||
residualRe_("residualRe", dimless, dict),
|
||||
residualEo_("residualEo", dimless, dict),
|
||||
residualE_("residualE", dimless, dict)
|
||||
{}
|
||||
|
||||
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2014 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2014-2015 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -49,7 +49,7 @@ Foam::dragModels::TomiyamaCorrelated::TomiyamaCorrelated
|
||||
)
|
||||
:
|
||||
dragModel(dict, pair, registerObject),
|
||||
A_("A", dimless, dict.lookup("A"))
|
||||
A_("A", dimless, dict)
|
||||
{}
|
||||
|
||||
|
||||
|
||||
@ -49,7 +49,7 @@ Foam::dragModels::WenYu::WenYu
|
||||
)
|
||||
:
|
||||
dragModel(dict, pair, registerObject),
|
||||
residualRe_("residualRe", dimless, dict.lookup("residualRe"))
|
||||
residualRe_("residualRe", dimless, dict)
|
||||
{}
|
||||
|
||||
|
||||
|
||||
@ -51,8 +51,8 @@ Foam::dragModels::segregated::segregated
|
||||
)
|
||||
:
|
||||
dragModel(dict, pair, registerObject),
|
||||
m_("m", dimless, dict.lookup("m")),
|
||||
n_("n", dimless, dict.lookup("n"))
|
||||
m_("m", dimless, dict),
|
||||
n_("n", dimless, dict)
|
||||
{}
|
||||
|
||||
|
||||
|
||||
@ -49,7 +49,7 @@ Foam::liftModels::LegendreMagnaudet::LegendreMagnaudet
|
||||
)
|
||||
:
|
||||
liftModel(dict, pair),
|
||||
residualRe_("residualRe", dimless, dict.lookup("residualRe"))
|
||||
residualRe_("residualRe", dimless, dict)
|
||||
{}
|
||||
|
||||
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2014 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2014-2015 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -48,7 +48,7 @@ Foam::liftModels::constantLiftCoefficient::constantLiftCoefficient
|
||||
)
|
||||
:
|
||||
liftModel(dict, pair),
|
||||
Cl_("Cl", dimless, dict.lookup("Cl"))
|
||||
Cl_("Cl", dimless, dict)
|
||||
{}
|
||||
|
||||
|
||||
|
||||
@ -63,7 +63,7 @@ Foam::swarmCorrections::TomiyamaSwarm::TomiyamaSwarm
|
||||
pair_.dispersed().residualAlpha().value()
|
||||
)
|
||||
),
|
||||
l_("l", dimless, dict.lookup("l"))
|
||||
l_("l", dimless, dict)
|
||||
{}
|
||||
|
||||
|
||||
|
||||
@ -56,7 +56,7 @@ Foam::turbulentDispersionModels::Burns::Burns
|
||||
)
|
||||
:
|
||||
turbulentDispersionModel(dict, pair),
|
||||
sigma_("sigma", dimless, dict.lookup("sigma")),
|
||||
sigma_("sigma", dimless, dict),
|
||||
residualAlpha_
|
||||
(
|
||||
"residualAlpha",
|
||||
|
||||
@ -56,7 +56,7 @@ Foam::turbulentDispersionModels::Gosman::Gosman
|
||||
)
|
||||
:
|
||||
turbulentDispersionModel(dict, pair),
|
||||
sigma_("sigma", dimless, dict.lookup("sigma"))
|
||||
sigma_("sigma", dimless, dict)
|
||||
{}
|
||||
|
||||
|
||||
|
||||
@ -54,7 +54,7 @@ Foam::turbulentDispersionModels::LopezDeBertodano::LopezDeBertodano
|
||||
)
|
||||
:
|
||||
turbulentDispersionModel(dict, pair),
|
||||
Ctd_("Ctd", dimless, dict.lookup("Ctd"))
|
||||
Ctd_("Ctd", dimless, dict)
|
||||
{}
|
||||
|
||||
|
||||
|
||||
@ -55,7 +55,7 @@ constantTurbulentDispersionCoefficient
|
||||
)
|
||||
:
|
||||
turbulentDispersionModel(dict, pair),
|
||||
Ctd_("Ctd", dimless, dict.lookup("Ctd"))
|
||||
Ctd_("Ctd", dimless, dict)
|
||||
{}
|
||||
|
||||
|
||||
|
||||
@ -55,7 +55,7 @@ constantVirtualMassCoefficient
|
||||
)
|
||||
:
|
||||
virtualMassModel(dict, pair, registerObject),
|
||||
Cvm_("Cvm", dimless, dict.lookup("Cvm"))
|
||||
Cvm_("Cvm", dimless, dict)
|
||||
{}
|
||||
|
||||
|
||||
|
||||
@ -53,8 +53,8 @@ Foam::wallLubricationModels::Antal::Antal
|
||||
)
|
||||
:
|
||||
wallLubricationModel(dict, pair),
|
||||
Cw1_("Cw1", dimless, dict.lookup("Cw1")),
|
||||
Cw2_("Cw2", dimless, dict.lookup("Cw2"))
|
||||
Cw1_("Cw1", dimless, dict),
|
||||
Cw2_("Cw2", dimless, dict)
|
||||
{}
|
||||
|
||||
|
||||
|
||||
@ -53,8 +53,8 @@ Foam::wallLubricationModels::Frank::Frank
|
||||
)
|
||||
:
|
||||
wallLubricationModel(dict, pair),
|
||||
Cwd_("Cwd", dimless, dict.lookup("Cwd")),
|
||||
Cwc_("Cwc", dimless, dict.lookup("Cwc")),
|
||||
Cwd_("Cwd", dimless, dict),
|
||||
Cwc_("Cwc", dimless, dict),
|
||||
p_(readScalar(dict.lookup("p")))
|
||||
{}
|
||||
|
||||
|
||||
@ -53,7 +53,7 @@ Foam::wallLubricationModels::TomiyamaWallLubrication::TomiyamaWallLubrication
|
||||
)
|
||||
:
|
||||
wallLubricationModel(dict, pair),
|
||||
D_("Cwd", dimLength, dict.lookup("D"))
|
||||
D_("Cwd", dimLength, dict)
|
||||
{}
|
||||
|
||||
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2011-2014 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -57,7 +57,7 @@ Foam::kineticTheoryModels::conductivityModels::HrenyaSinclair::HrenyaSinclair
|
||||
:
|
||||
conductivityModel(dict),
|
||||
coeffDict_(dict.subDict(typeName + "Coeffs")),
|
||||
L_("L", dimensionSet(0, 1, 0, 0, 0), coeffDict_.lookup("L"))
|
||||
L_("L", dimensionSet(0, 1, 0, 0, 0), coeffDict_)
|
||||
{}
|
||||
|
||||
|
||||
|
||||
@ -58,11 +58,11 @@ JohnsonJackson
|
||||
:
|
||||
frictionalStressModel(dict),
|
||||
coeffDict_(dict.subDict(typeName + "Coeffs")),
|
||||
Fr_("Fr", dimensionSet(1, -1, -2, 0, 0), coeffDict_.lookup("Fr")),
|
||||
eta_("eta", dimless, coeffDict_.lookup("eta")),
|
||||
p_("p", dimless, coeffDict_.lookup("p")),
|
||||
phi_("phi", dimless, coeffDict_.lookup("phi")),
|
||||
alphaDeltaMin_("alphaDeltaMin", dimless, coeffDict_.lookup("alphaDeltaMin"))
|
||||
Fr_("Fr", dimensionSet(1, -1, -2, 0, 0), coeffDict_),
|
||||
eta_("eta", dimless, coeffDict_),
|
||||
p_("p", dimless, coeffDict_),
|
||||
phi_("phi", dimless, coeffDict_),
|
||||
alphaDeltaMin_("alphaDeltaMin", dimless, coeffDict_)
|
||||
{
|
||||
phi_ *= constant::mathematical::pi/180.0;
|
||||
}
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2011-2014 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -56,7 +56,7 @@ Foam::kineticTheoryModels::frictionalStressModels::Schaeffer::Schaeffer
|
||||
:
|
||||
frictionalStressModel(dict),
|
||||
coeffDict_(dict.subDict(typeName + "Coeffs")),
|
||||
phi_("phi", dimless, coeffDict_.lookup("phi"))
|
||||
phi_("phi", dimless, coeffDict_)
|
||||
{
|
||||
phi_ *= constant::mathematical::pi/180.0;
|
||||
}
|
||||
|
||||
@ -92,19 +92,19 @@ Foam::RASModels::kineticTheoryModel::kineticTheoryModel
|
||||
),
|
||||
|
||||
equilibrium_(coeffDict_.lookup("equilibrium")),
|
||||
e_("e", dimless, coeffDict_.lookup("e")),
|
||||
alphaMax_("alphaMax", dimless, coeffDict_.lookup("alphaMax")),
|
||||
e_("e", dimless, coeffDict_),
|
||||
alphaMax_("alphaMax", dimless, coeffDict_),
|
||||
alphaMinFriction_
|
||||
(
|
||||
"alphaMinFriction",
|
||||
dimless,
|
||||
coeffDict_.lookup("alphaMinFriction")
|
||||
coeffDict_
|
||||
),
|
||||
residualAlpha_
|
||||
(
|
||||
"residualAlpha",
|
||||
dimless,
|
||||
coeffDict_.lookup("residualAlpha")
|
||||
coeffDict_
|
||||
),
|
||||
|
||||
Theta_
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2011-2014 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -57,7 +57,7 @@ Foam::kineticTheoryModels::viscosityModels::HrenyaSinclair::HrenyaSinclair
|
||||
:
|
||||
viscosityModel(dict),
|
||||
coeffDict_(dict.subDict(typeName + "Coeffs")),
|
||||
L_("L", dimensionSet(0, 1, 0, 0, 0), coeffDict_.lookup("L"))
|
||||
L_("L", dimensionSet(0, 1, 0, 0, 0), coeffDict_)
|
||||
{}
|
||||
|
||||
|
||||
|
||||
@ -76,13 +76,13 @@ Foam::diameterModels::IATE::IATE
|
||||
),
|
||||
phase_.U().mesh()
|
||||
),
|
||||
dMax_("dMax", dimLength, diameterProperties_.lookup("dMax")),
|
||||
dMin_("dMin", dimLength, diameterProperties_.lookup("dMin")),
|
||||
dMax_("dMax", dimLength, diameterProperties_),
|
||||
dMin_("dMin", dimLength, diameterProperties_),
|
||||
residualAlpha_
|
||||
(
|
||||
"residualAlpha",
|
||||
dimless,
|
||||
diameterProperties_.lookup("residualAlpha")
|
||||
diameterProperties_
|
||||
),
|
||||
d_
|
||||
(
|
||||
|
||||
@ -51,9 +51,9 @@ randomCoalescence
|
||||
)
|
||||
:
|
||||
IATEsource(iate),
|
||||
Crc_("Crc", dimless, dict.lookup("Crc")),
|
||||
C_("C", dimless, dict.lookup("C")),
|
||||
alphaMax_("alphaMax", dimless, dict.lookup("alphaMax"))
|
||||
Crc_("Crc", dimless, dict),
|
||||
C_("C", dimless, dict),
|
||||
alphaMax_("alphaMax", dimless, dict)
|
||||
{}
|
||||
|
||||
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2013 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2013-2015 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -51,8 +51,8 @@ turbulentBreakUp
|
||||
)
|
||||
:
|
||||
IATEsource(iate),
|
||||
Cti_("Cti", dimless, dict.lookup("Cti")),
|
||||
WeCr_("WeCr", dimless, dict.lookup("WeCr"))
|
||||
Cti_("Cti", dimless, dict),
|
||||
WeCr_("WeCr", dimless, dict)
|
||||
{}
|
||||
|
||||
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2013 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2013-2015 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -56,7 +56,7 @@ wakeEntrainmentCoalescence
|
||||
)
|
||||
:
|
||||
IATEsource(iate),
|
||||
Cwe_("Cwe", dimless, dict.lookup("Cwe"))
|
||||
Cwe_("Cwe", dimless, dict)
|
||||
{}
|
||||
|
||||
|
||||
|
||||
@ -53,7 +53,7 @@ Foam::diameterModels::constant::constant
|
||||
)
|
||||
:
|
||||
diameterModel(diameterProperties, phase),
|
||||
d_("d", dimLength, diameterProperties_.lookup("d"))
|
||||
d_("d", dimLength, diameterProperties_)
|
||||
{}
|
||||
|
||||
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
========= |
|
||||
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
||||
\\ / O peration |
|
||||
\\ / A nd | Copyright (C) 2011-2013 OpenFOAM Foundation
|
||||
\\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation
|
||||
\\/ M anipulation |
|
||||
-------------------------------------------------------------------------------
|
||||
License
|
||||
@ -53,8 +53,8 @@ Foam::diameterModels::isothermal::isothermal
|
||||
)
|
||||
:
|
||||
diameterModel(diameterProperties, phase),
|
||||
d0_("d0", dimLength, diameterProperties_.lookup("d0")),
|
||||
p0_("p0", dimPressure, diameterProperties_.lookup("p0"))
|
||||
d0_("d0", dimLength, diameterProperties_),
|
||||
p0_("p0", dimPressure, diameterProperties_)
|
||||
{}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user