mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
compressibleInterFoam: Further development of twoPhaseThermo
This commit is contained in:
@ -2,7 +2,7 @@
|
|||||||
cd ${0%/*} || exit 1 # run from this directory
|
cd ${0%/*} || exit 1 # run from this directory
|
||||||
set -x
|
set -x
|
||||||
|
|
||||||
wclean libso phaseEquationsOfState
|
wclean libso twoPhaseThermo
|
||||||
wclean
|
wclean
|
||||||
wclean compressibleInterDyMFoam
|
wclean compressibleInterDyMFoam
|
||||||
|
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
cd ${0%/*} || exit 1 # run from this directory
|
cd ${0%/*} || exit 1 # run from this directory
|
||||||
set -x
|
set -x
|
||||||
|
|
||||||
wmake libso phaseEquationsOfState
|
wmake libso twoPhaseThermo
|
||||||
wmake
|
wmake
|
||||||
wmake compressibleInterDyMFoam
|
wmake compressibleInterDyMFoam
|
||||||
|
|
||||||
|
|||||||
@ -32,18 +32,11 @@
|
|||||||
twoPhaseMixture twoPhaseProperties(U, phi);
|
twoPhaseMixture twoPhaseProperties(U, phi);
|
||||||
|
|
||||||
volScalarField& alpha1(twoPhaseProperties.alpha1());
|
volScalarField& alpha1(twoPhaseProperties.alpha1());
|
||||||
|
volScalarField& alpha2(twoPhaseProperties.alpha2());
|
||||||
Info<< "Calculating phase-fraction alpha" << twoPhaseProperties.phase2Name()
|
|
||||||
<< nl << endl;
|
|
||||||
volScalarField alpha2
|
|
||||||
(
|
|
||||||
"alpha" + twoPhaseProperties.phase2Name(),
|
|
||||||
scalar(1) - alpha1
|
|
||||||
);
|
|
||||||
|
|
||||||
Info<< "Reading thermophysical properties\n" << endl;
|
Info<< "Reading thermophysical properties\n" << endl;
|
||||||
|
|
||||||
twoPhaseThermo thermo(mesh, alpha1, alpha2);
|
twoPhaseThermo thermo(twoPhaseProperties);
|
||||||
|
|
||||||
volScalarField& rho = thermo.rho();
|
volScalarField& rho = thermo.rho();
|
||||||
volScalarField& p = thermo.p();
|
volScalarField& p = thermo.p();
|
||||||
|
|||||||
@ -1,8 +1,11 @@
|
|||||||
EXE_INC = \
|
EXE_INC = \
|
||||||
-I$(LIB_SRC)/thermophysicalModels/basic/lnInclude \
|
-I$(LIB_SRC)/thermophysicalModels/basic/lnInclude \
|
||||||
|
-I$(LIB_SRC)/transportModels \
|
||||||
|
-I$(LIB_SRC)/transportModels/incompressible/lnInclude \
|
||||||
-I$(LIB_SRC)/finiteVolume/lnInclude
|
-I$(LIB_SRC)/finiteVolume/lnInclude
|
||||||
|
|
||||||
LIB_LIBS = \
|
LIB_LIBS = \
|
||||||
-lfluidThermophysicalModels \
|
-lfluidThermophysicalModels \
|
||||||
-lspecie \
|
-lspecie \
|
||||||
|
-lincompressibleTransportModels \
|
||||||
-lfiniteVolume
|
-lfiniteVolume
|
||||||
|
|||||||
@ -39,64 +39,18 @@ namespace Foam
|
|||||||
|
|
||||||
Foam::twoPhaseThermo::twoPhaseThermo
|
Foam::twoPhaseThermo::twoPhaseThermo
|
||||||
(
|
(
|
||||||
const fvMesh& mesh,
|
const twoPhaseMixture& twoPhaseProperties
|
||||||
const volScalarField& alpha1,
|
|
||||||
const volScalarField& alpha2,
|
|
||||||
const word& phaseName
|
|
||||||
)
|
)
|
||||||
:
|
:
|
||||||
rhoThermo(mesh, phaseName),
|
rhoThermo(twoPhaseProperties.alpha1().mesh(), word::null),
|
||||||
phaseName1_("1"),
|
tpm_(twoPhaseProperties),
|
||||||
phaseName2_("2"),
|
thermo1_(rhoThermo::New(tpm_.alpha1().mesh(), tpm_.phase1Name())),
|
||||||
alpha1_(alpha1),
|
thermo2_(rhoThermo::New(tpm_.alpha1().mesh(), tpm_.phase2Name()))
|
||||||
alpha2_(alpha2),
|
|
||||||
thermo1_(rhoThermo::New(mesh, phaseName1_)),
|
|
||||||
thermo2_(rhoThermo::New(mesh, phaseName2_)),
|
|
||||||
he_
|
|
||||||
(
|
|
||||||
IOobject
|
|
||||||
(
|
|
||||||
phasePropertyName
|
|
||||||
(
|
|
||||||
"he"
|
|
||||||
),
|
|
||||||
mesh.time().timeName(),
|
|
||||||
mesh,
|
|
||||||
IOobject::NO_READ,
|
|
||||||
IOobject::NO_WRITE
|
|
||||||
),
|
|
||||||
mesh,
|
|
||||||
dimEnergy/dimMass,
|
|
||||||
heBoundaryTypes(),
|
|
||||||
heBoundaryBaseTypes()
|
|
||||||
)
|
|
||||||
{
|
{
|
||||||
thermo1_->validate("phaseModel 1", "e");
|
thermo1_->validate(tpm_.phase1Name(), "e");
|
||||||
thermo2_->validate("phaseModel 2", "e");
|
thermo2_->validate(tpm_.phase2Name(), "e");
|
||||||
|
|
||||||
rho_ = alpha1_*thermo1_->rho() + alpha2_*thermo2_->rho();
|
rho_ = tpm_.alpha1()*thermo1_->rho() + tpm_.alpha2()*thermo2_->rho();
|
||||||
|
|
||||||
he_ =
|
|
||||||
(
|
|
||||||
alpha1_*thermo1_->rho()*thermo1_->he()
|
|
||||||
+ alpha2_*thermo2_->rho()*thermo2_->he()
|
|
||||||
)/rho_;
|
|
||||||
|
|
||||||
volScalarField::GeometricBoundaryField& hbf = he_.boundaryField();
|
|
||||||
|
|
||||||
forAll(hbf, patchi)
|
|
||||||
{
|
|
||||||
if (isA<gradientEnergyFvPatchScalarField>(hbf[patchi]))
|
|
||||||
{
|
|
||||||
refCast<gradientEnergyFvPatchScalarField>(hbf[patchi]).gradient()
|
|
||||||
= hbf[patchi].fvPatchField::snGrad();
|
|
||||||
}
|
|
||||||
else if (isA<mixedEnergyFvPatchScalarField>(hbf[patchi]))
|
|
||||||
{
|
|
||||||
refCast<mixedEnergyFvPatchScalarField>(hbf[patchi]).refGrad()
|
|
||||||
= hbf[patchi].fvPatchField::snGrad();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
correct();
|
correct();
|
||||||
}
|
}
|
||||||
@ -118,9 +72,9 @@ void Foam::twoPhaseThermo::correct()
|
|||||||
thermo2_->he() = thermo2_->he(p_, T_);
|
thermo2_->he() = thermo2_->he(p_, T_);
|
||||||
thermo2_->correct();
|
thermo2_->correct();
|
||||||
|
|
||||||
psi_ = alpha1_*thermo1_->psi() + alpha2_*thermo2_->psi();
|
psi_ = tpm_.alpha1()*thermo1_->psi() + tpm_.alpha2()*thermo2_->psi();
|
||||||
mu_ = alpha1_*thermo1_->mu() + alpha2_*thermo2_->mu();
|
mu_ = tpm_.alpha1()*thermo1_->mu() + tpm_.alpha2()*thermo2_->mu();
|
||||||
alpha_ = alpha1_*thermo1_->alpha() + alpha2_*thermo2_->alpha();
|
alpha_ = tpm_.alpha1()*thermo1_->alpha() + tpm_.alpha2()*thermo2_->alpha();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -142,7 +96,7 @@ Foam::tmp<Foam::volScalarField> Foam::twoPhaseThermo::he
|
|||||||
const volScalarField& T
|
const volScalarField& T
|
||||||
) const
|
) const
|
||||||
{
|
{
|
||||||
return alpha1_*thermo1_->he(p, T) + alpha2_*thermo2_->he(p, T);
|
return tpm_.alpha1()*thermo1_->he(p, T) + tpm_.alpha2()*thermo2_->he(p, T);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -154,8 +108,8 @@ Foam::tmp<Foam::scalarField> Foam::twoPhaseThermo::he
|
|||||||
) const
|
) const
|
||||||
{
|
{
|
||||||
return
|
return
|
||||||
scalarField(alpha1_, cells)*thermo1_->he(p, T, cells)
|
scalarField(tpm_.alpha1(), cells)*thermo1_->he(p, T, cells)
|
||||||
+ scalarField(alpha2_, cells)*thermo2_->he(p, T, cells);
|
+ scalarField(tpm_.alpha2(), cells)*thermo2_->he(p, T, cells);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -167,14 +121,14 @@ Foam::tmp<Foam::scalarField> Foam::twoPhaseThermo::he
|
|||||||
) const
|
) const
|
||||||
{
|
{
|
||||||
return
|
return
|
||||||
alpha1_.boundaryField()[patchi]*thermo1_->he(p, T, patchi)
|
tpm_.alpha1().boundaryField()[patchi]*thermo1_->he(p, T, patchi)
|
||||||
+ alpha2_.boundaryField()[patchi]*thermo2_->he(p, T, patchi);
|
+ tpm_.alpha2().boundaryField()[patchi]*thermo2_->he(p, T, patchi);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
Foam::tmp<Foam::volScalarField> Foam::twoPhaseThermo::hc() const
|
Foam::tmp<Foam::volScalarField> Foam::twoPhaseThermo::hc() const
|
||||||
{
|
{
|
||||||
return alpha1_*thermo1_->hc() + alpha2_*thermo2_->hc();
|
return tpm_.alpha1()*thermo1_->hc() + tpm_.alpha2()*thermo2_->hc();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -186,7 +140,7 @@ Foam::tmp<Foam::scalarField> Foam::twoPhaseThermo::THE
|
|||||||
const labelList& cells
|
const labelList& cells
|
||||||
) const
|
) const
|
||||||
{
|
{
|
||||||
notImplemented("Foam::twoPhaseThermo::THE");
|
notImplemented("twoPhaseThermo::THE(...)");
|
||||||
return T0;
|
return T0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -199,14 +153,14 @@ Foam::tmp<Foam::scalarField> Foam::twoPhaseThermo::THE
|
|||||||
const label patchi
|
const label patchi
|
||||||
) const
|
) const
|
||||||
{
|
{
|
||||||
notImplemented("Foam::twoPhaseThermo::THE");
|
notImplemented("twoPhaseThermo::THE(...)");
|
||||||
return T0;
|
return T0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
Foam::tmp<Foam::volScalarField> Foam::twoPhaseThermo::Cp() const
|
Foam::tmp<Foam::volScalarField> Foam::twoPhaseThermo::Cp() const
|
||||||
{
|
{
|
||||||
return alpha1_*thermo1_->Cp() + alpha2_*thermo2_->Cp();
|
return tpm_.alpha1()*thermo1_->Cp() + tpm_.alpha2()*thermo2_->Cp();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -218,14 +172,14 @@ Foam::tmp<Foam::scalarField> Foam::twoPhaseThermo::Cp
|
|||||||
) const
|
) const
|
||||||
{
|
{
|
||||||
return
|
return
|
||||||
alpha1_.boundaryField()[patchi]*thermo1_->Cp(p, T, patchi)
|
tpm_.alpha1().boundaryField()[patchi]*thermo1_->Cp(p, T, patchi)
|
||||||
+ alpha2_.boundaryField()[patchi]*thermo2_->Cp(p, T, patchi);
|
+ tpm_.alpha2().boundaryField()[patchi]*thermo2_->Cp(p, T, patchi);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
Foam::tmp<Foam::volScalarField> Foam::twoPhaseThermo::Cv() const
|
Foam::tmp<Foam::volScalarField> Foam::twoPhaseThermo::Cv() const
|
||||||
{
|
{
|
||||||
return alpha1_*thermo1_->Cv() + alpha2_*thermo2_->Cv();
|
return tpm_.alpha1()*thermo1_->Cv() + tpm_.alpha2()*thermo2_->Cv();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -237,14 +191,14 @@ Foam::tmp<Foam::scalarField> Foam::twoPhaseThermo::Cv
|
|||||||
) const
|
) const
|
||||||
{
|
{
|
||||||
return
|
return
|
||||||
alpha1_.boundaryField()[patchi]*thermo1_->Cv(p, T, patchi)
|
tpm_.alpha1().boundaryField()[patchi]*thermo1_->Cv(p, T, patchi)
|
||||||
+ alpha2_.boundaryField()[patchi]*thermo2_->Cv(p, T, patchi);
|
+ tpm_.alpha2().boundaryField()[patchi]*thermo2_->Cv(p, T, patchi);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
Foam::tmp<Foam::volScalarField> Foam::twoPhaseThermo::gamma() const
|
Foam::tmp<Foam::volScalarField> Foam::twoPhaseThermo::gamma() const
|
||||||
{
|
{
|
||||||
return alpha1_*thermo1_->gamma() + alpha2_*thermo2_->gamma();
|
return tpm_.alpha1()*thermo1_->gamma() + tpm_.alpha2()*thermo2_->gamma();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -256,14 +210,14 @@ Foam::tmp<Foam::scalarField> Foam::twoPhaseThermo::gamma
|
|||||||
) const
|
) const
|
||||||
{
|
{
|
||||||
return
|
return
|
||||||
alpha1_.boundaryField()[patchi]*thermo1_->gamma(p, T, patchi)
|
tpm_.alpha1().boundaryField()[patchi]*thermo1_->gamma(p, T, patchi)
|
||||||
+ alpha2_.boundaryField()[patchi]*thermo2_->gamma(p, T, patchi);
|
+ tpm_.alpha2().boundaryField()[patchi]*thermo2_->gamma(p, T, patchi);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
Foam::tmp<Foam::volScalarField> Foam::twoPhaseThermo::Cpv() const
|
Foam::tmp<Foam::volScalarField> Foam::twoPhaseThermo::Cpv() const
|
||||||
{
|
{
|
||||||
return alpha1_*thermo1_->Cpv() + alpha2_*thermo2_->Cpv();
|
return tpm_.alpha1()*thermo1_->Cpv() + tpm_.alpha2()*thermo2_->Cpv();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -275,14 +229,16 @@ Foam::tmp<Foam::scalarField> Foam::twoPhaseThermo::Cpv
|
|||||||
) const
|
) const
|
||||||
{
|
{
|
||||||
return
|
return
|
||||||
alpha1_.boundaryField()[patchi]*thermo1_->Cpv(p, T, patchi)
|
tpm_.alpha1().boundaryField()[patchi]*thermo1_->Cpv(p, T, patchi)
|
||||||
+ alpha2_.boundaryField()[patchi]*thermo2_->Cpv(p, T, patchi);
|
+ tpm_.alpha2().boundaryField()[patchi]*thermo2_->Cpv(p, T, patchi);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
Foam::tmp<Foam::volScalarField> Foam::twoPhaseThermo::CpByCpv() const
|
Foam::tmp<Foam::volScalarField> Foam::twoPhaseThermo::CpByCpv() const
|
||||||
{
|
{
|
||||||
return alpha1_*thermo1_->CpByCpv() + alpha2_*thermo2_->CpByCpv();
|
return
|
||||||
|
tpm_.alpha1()*thermo1_->CpByCpv()
|
||||||
|
+ tpm_.alpha2()*thermo2_->CpByCpv();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -294,14 +250,14 @@ Foam::tmp<Foam::scalarField> Foam::twoPhaseThermo::CpByCpv
|
|||||||
) const
|
) const
|
||||||
{
|
{
|
||||||
return
|
return
|
||||||
alpha1_.boundaryField()[patchi]*thermo1_->CpByCpv(p, T, patchi)
|
tpm_.alpha1().boundaryField()[patchi]*thermo1_->CpByCpv(p, T, patchi)
|
||||||
+ alpha2_.boundaryField()[patchi]*thermo2_->CpByCpv(p, T, patchi);
|
+ tpm_.alpha2().boundaryField()[patchi]*thermo2_->CpByCpv(p, T, patchi);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
Foam::tmp<Foam::volScalarField> Foam::twoPhaseThermo::kappa() const
|
Foam::tmp<Foam::volScalarField> Foam::twoPhaseThermo::kappa() const
|
||||||
{
|
{
|
||||||
return alpha1_*thermo1_->kappa() + alpha2_*thermo2_->kappa();
|
return tpm_.alpha1()*thermo1_->kappa() + tpm_.alpha2()*thermo2_->kappa();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -311,8 +267,8 @@ Foam::tmp<Foam::scalarField> Foam::twoPhaseThermo::kappa
|
|||||||
) const
|
) const
|
||||||
{
|
{
|
||||||
return
|
return
|
||||||
alpha1_.boundaryField()[patchi]*thermo1_->kappa(patchi)
|
tpm_.alpha1().boundaryField()[patchi]*thermo1_->kappa(patchi)
|
||||||
+ alpha2_.boundaryField()[patchi]*thermo2_->kappa(patchi);
|
+ tpm_.alpha2().boundaryField()[patchi]*thermo2_->kappa(patchi);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -322,8 +278,8 @@ Foam::tmp<Foam::volScalarField> Foam::twoPhaseThermo::kappaEff
|
|||||||
) const
|
) const
|
||||||
{
|
{
|
||||||
return
|
return
|
||||||
alpha1_*thermo1_->kappaEff(alphat)
|
tpm_.alpha1()*thermo1_->kappaEff(alphat)
|
||||||
+ alpha2_*thermo2_->kappaEff(alphat);
|
+ tpm_.alpha2()*thermo2_->kappaEff(alphat);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -334,8 +290,9 @@ Foam::tmp<Foam::scalarField> Foam::twoPhaseThermo::kappaEff
|
|||||||
) const
|
) const
|
||||||
{
|
{
|
||||||
return
|
return
|
||||||
alpha1_.boundaryField()[patchi]*thermo1_->kappaEff(alphat, patchi)
|
tpm_.alpha1().boundaryField()[patchi]*thermo1_->kappaEff(alphat, patchi)
|
||||||
+ alpha2_.boundaryField()[patchi]*thermo2_->kappaEff(alphat, patchi);
|
+ tpm_.alpha2().boundaryField()[patchi]*thermo2_->kappaEff(alphat, patchi)
|
||||||
|
;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -345,8 +302,8 @@ Foam::tmp<Foam::volScalarField> Foam::twoPhaseThermo::alphaEff
|
|||||||
) const
|
) const
|
||||||
{
|
{
|
||||||
return
|
return
|
||||||
alpha1_*thermo1_->alphaEff(alphat)
|
tpm_.alpha1()*thermo1_->alphaEff(alphat)
|
||||||
+ alpha2_*thermo2_->alphaEff(alphat);
|
+ tpm_.alpha2()*thermo2_->alphaEff(alphat);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -357,8 +314,9 @@ Foam::tmp<Foam::scalarField> Foam::twoPhaseThermo::alphaEff
|
|||||||
) const
|
) const
|
||||||
{
|
{
|
||||||
return
|
return
|
||||||
alpha1_.boundaryField()[patchi]*thermo1_->alphaEff(alphat, patchi)
|
tpm_.alpha1().boundaryField()[patchi]*thermo1_->alphaEff(alphat, patchi)
|
||||||
+ alpha2_.boundaryField()[patchi]*thermo2_->alphaEff(alphat, patchi);
|
+ tpm_.alpha2().boundaryField()[patchi]*thermo2_->alphaEff(alphat, patchi)
|
||||||
|
;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -37,6 +37,7 @@ SourceFiles
|
|||||||
#define twoPhaseThermo_H
|
#define twoPhaseThermo_H
|
||||||
|
|
||||||
#include "rhoThermo.H"
|
#include "rhoThermo.H"
|
||||||
|
#include "twoPhaseMixture.H"
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|
||||||
@ -53,17 +54,7 @@ class twoPhaseThermo
|
|||||||
{
|
{
|
||||||
// Private data
|
// Private data
|
||||||
|
|
||||||
//- Name of phase 1
|
const twoPhaseMixture& tpm_;
|
||||||
word phaseName1_;
|
|
||||||
|
|
||||||
//- Name of phase 2
|
|
||||||
word phaseName2_;
|
|
||||||
|
|
||||||
//- Phase-fraction of phase 1
|
|
||||||
const volScalarField& alpha1_;
|
|
||||||
|
|
||||||
//- Phase-fraction of phase2
|
|
||||||
const volScalarField& alpha2_;
|
|
||||||
|
|
||||||
//- Thermo-package of phase 1
|
//- Thermo-package of phase 1
|
||||||
autoPtr<rhoThermo> thermo1_;
|
autoPtr<rhoThermo> thermo1_;
|
||||||
@ -71,9 +62,6 @@ class twoPhaseThermo
|
|||||||
//- Thermo-package of phase 2
|
//- Thermo-package of phase 2
|
||||||
autoPtr<rhoThermo> thermo2_;
|
autoPtr<rhoThermo> thermo2_;
|
||||||
|
|
||||||
//- Energy field
|
|
||||||
volScalarField he_;
|
|
||||||
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
@ -86,10 +74,7 @@ public:
|
|||||||
//- Construct from mesh and phase fractions
|
//- Construct from mesh and phase fractions
|
||||||
twoPhaseThermo
|
twoPhaseThermo
|
||||||
(
|
(
|
||||||
const fvMesh&,
|
const twoPhaseMixture& twoPhaseProperties
|
||||||
const volScalarField& alpha1,
|
|
||||||
const volScalarField& alpha2,
|
|
||||||
const word& phaseName=word::null
|
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
@ -127,13 +112,15 @@ public:
|
|||||||
// Non-const access allowed for transport equations
|
// Non-const access allowed for transport equations
|
||||||
virtual volScalarField& he()
|
virtual volScalarField& he()
|
||||||
{
|
{
|
||||||
return he_;
|
notImplemented("twoPhaseThermo::he()");
|
||||||
|
return thermo1_->he();
|
||||||
}
|
}
|
||||||
|
|
||||||
//- Enthalpy/Internal energy [J/kg]
|
//- Enthalpy/Internal energy [J/kg]
|
||||||
virtual const volScalarField& he() const
|
virtual const volScalarField& he() const
|
||||||
{
|
{
|
||||||
return he_;
|
notImplemented("twoPhaseThermo::he() const");
|
||||||
|
return thermo1_->he();
|
||||||
}
|
}
|
||||||
|
|
||||||
//- Enthalpy/Internal energy
|
//- Enthalpy/Internal energy
|
||||||
|
|||||||
Reference in New Issue
Block a user