mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: Updated solid thermo i/o
This commit is contained in:
@ -37,18 +37,9 @@ template<class thermo>
|
||||
constSolidRad<thermo>::constSolidRad(const dictionary& dict)
|
||||
:
|
||||
thermo(dict),
|
||||
kappa_(readScalar(dict.subDict("radiativeProperties").lookup("kappa"))),
|
||||
sigmaS_
|
||||
(
|
||||
readScalar
|
||||
(
|
||||
dict.subDict("radiativeProperties").lookup("sigmaS")
|
||||
)
|
||||
),
|
||||
emissivity_
|
||||
(
|
||||
readScalar(dict.subDict("radiativeProperties").lookup("emissivity"))
|
||||
)
|
||||
kappa_(readScalar(dict.subDict("radiation").lookup("kappa"))),
|
||||
sigmaS_(readScalar(dict.subDict("radiation").lookup("sigmaS"))),
|
||||
emissivity_(readScalar(dict.subDict("radiation").lookup("emissivity")))
|
||||
{}
|
||||
|
||||
|
||||
|
||||
@ -29,7 +29,7 @@ License
|
||||
|
||||
Foam::constRho::constRho(const dictionary& dict)
|
||||
:
|
||||
rho_(readScalar(dict.subDict("densityProperties").lookup("rho")))
|
||||
rho_(readScalar(dict.subDict("density").lookup("rho")))
|
||||
{}
|
||||
|
||||
|
||||
|
||||
@ -35,8 +35,8 @@ Foam::constSolidThermo<rhoType>::constSolidThermo
|
||||
)
|
||||
:
|
||||
rhoType(dict),
|
||||
Cp_(readScalar(dict.subDict("thermoProperties").lookup("Cp"))),
|
||||
Hf_(readScalar(dict.subDict("thermoProperties").lookup("Hf")))
|
||||
Cp_(readScalar(dict.subDict("thermodynamics").lookup("Cp"))),
|
||||
Hf_(readScalar(dict.subDict("thermodynamics").lookup("Hf")))
|
||||
{}
|
||||
|
||||
|
||||
|
||||
@ -35,10 +35,10 @@ Foam::exponentialSolidThermo<rhoType>::exponentialSolidThermo
|
||||
)
|
||||
:
|
||||
rhoType(dict),
|
||||
c0_(readScalar(dict.subDict("thermoProperties").lookup("C0"))),
|
||||
n0_(readScalar(dict.subDict("thermoProperties").lookup("n0"))),
|
||||
Tref_(readScalar(dict.subDict("thermoProperties").lookup("Tref"))),
|
||||
Hf_(readScalar(dict.subDict("thermoProperties").lookup("Hf")))
|
||||
c0_(readScalar(dict.subDict("thermodynamics").lookup("C0"))),
|
||||
n0_(readScalar(dict.subDict("thermodynamics").lookup("n0"))),
|
||||
Tref_(readScalar(dict.subDict("thermodynamics").lookup("Tref"))),
|
||||
Hf_(readScalar(dict.subDict("thermodynamics").lookup("Hf")))
|
||||
{}
|
||||
|
||||
|
||||
|
||||
@ -32,7 +32,7 @@ template<class thermo>
|
||||
Foam::constSolidTransport<thermo>::constSolidTransport(const dictionary& dict)
|
||||
:
|
||||
thermo(dict),
|
||||
K_(readScalar(dict.subDict("transportProperties").lookup("K")))
|
||||
K_(readScalar(dict.subDict("transport").lookup("K")))
|
||||
{}
|
||||
|
||||
|
||||
|
||||
@ -39,7 +39,7 @@ Foam::exponentialSolidTransport<thermo>::exponentialSolidTransport
|
||||
n0_(0.0),
|
||||
Tref_(0.0)
|
||||
{
|
||||
const dictionary& subDict = dict.subDict("transportProperties");
|
||||
const dictionary& subDict = dict.subDict("transport");
|
||||
K0_ = readScalar(subDict.lookup("K0"));
|
||||
n0_ = readScalar(subDict.lookup("n0"));
|
||||
Tref_ = readScalar(subDict.lookup("Tref"));
|
||||
|
||||
Reference in New Issue
Block a user