/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration | Website: https://openfoam.org
\\ / A nd | Copyright (C) 2015-2023 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
License
This file is part of OpenFOAM.
OpenFOAM is free software: you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
for more details.
You should have received a copy of the GNU General Public License
along with OpenFOAM. If not, see .
\*---------------------------------------------------------------------------*/
#include "ThermoPhaseModel.H"
#include "phaseSystem.H"
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
template
Foam::ThermoPhaseModel::ThermoPhaseModel
(
const phaseSystem& fluid,
const word& phaseName,
const bool referencePhase,
const label index
)
:
BasePhaseModel(fluid, phaseName, referencePhase, index),
viscosity(),
thermo_(ThermoModel::New(fluid.mesh(), this->name()))
{
thermo_->validate
(
IOobject::groupName(phaseModel::typeName, this->name()),
"h",
"e"
);
}
// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
template
Foam::ThermoPhaseModel::~ThermoPhaseModel()
{}
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
template
bool Foam::ThermoPhaseModel::incompressible() const
{
return thermo_().incompressible();
}
template
bool Foam::ThermoPhaseModel::isochoric() const
{
return thermo_().isochoric();
}
template
const Foam::rhoThermo&
Foam::ThermoPhaseModel::thermo() const
{
return thermo_();
}
template
Foam::rhoThermo&
Foam::ThermoPhaseModel::thermo()
{
return thermo_();
}
template
const Foam::volScalarField&
Foam::ThermoPhaseModel::rho() const
{
return thermo_->rho();
}
template
Foam::volScalarField&
Foam::ThermoPhaseModel::rho()
{
return thermo_->rho();
}
template
Foam::tmp
Foam::ThermoPhaseModel::mu() const
{
return thermo_->mu();
}
template
Foam::tmp
Foam::ThermoPhaseModel::mu
(
const label patchi
) const
{
return thermo_->mu(patchi);
}
template
Foam::tmp
Foam::ThermoPhaseModel::nu() const
{
return thermo_->nu();
}
template
Foam::tmp
Foam::ThermoPhaseModel::nu
(
const label patchi
) const
{
return thermo_->nu(patchi);
}
// ************************************************************************* //