196 lines
5.1 KiB
C++
196 lines
5.1 KiB
C++
/*
|
|
Copyright (C) 2011-2013 by Andreas Lauser
|
|
Copyright (C) 2012 by Bernd Flemisch
|
|
|
|
This file is part of the Open Porous Media project (OPM).
|
|
|
|
OPM 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 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
OPM 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 OPM. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
/*!
|
|
* \file
|
|
*
|
|
* \brief Modules for the ModularFluidState which represent temperature.
|
|
*/
|
|
#ifndef OPM_FLUID_STATE_TEMPERATURE_MODULES_HPP
|
|
#define OPM_FLUID_STATE_TEMPERATURE_MODULES_HPP
|
|
|
|
#include <opm/material/Valgrind.hpp>
|
|
|
|
#include <opm/core/utility/ErrorMacros.hpp>
|
|
#include <opm/core/utility/Exceptions.hpp>
|
|
|
|
#include <algorithm>
|
|
#include <cassert>
|
|
|
|
namespace Opm {
|
|
|
|
/*!
|
|
* \brief Module for the modular fluid state which stores the
|
|
* temperatures explicitly.
|
|
*/
|
|
template <class Scalar,
|
|
class FluidSystem,
|
|
class Implementation>
|
|
class FluidStateExplicitTemperatureModule
|
|
{
|
|
enum { numPhases = FluidSystem::numPhases };
|
|
|
|
public:
|
|
FluidStateExplicitTemperatureModule()
|
|
{ Valgrind::SetUndefined(temperature_); }
|
|
|
|
/*!
|
|
* \brief The temperature of a fluid phase [-]
|
|
*/
|
|
Scalar temperature(int phaseIdx) const
|
|
{ return temperature_[phaseIdx]; }
|
|
|
|
/*!
|
|
* \brief Set the temperature of a phase [-]
|
|
*/
|
|
void setTemperature(int phaseIdx, Scalar value)
|
|
{ temperature_[phaseIdx] = value; }
|
|
|
|
/*!
|
|
* \brief Retrieve all parameters from an arbitrary fluid
|
|
* state.
|
|
*/
|
|
template <class FluidState>
|
|
void assign(const FluidState& fs)
|
|
{
|
|
for (int phaseIdx = 0; phaseIdx < numPhases; ++phaseIdx) {
|
|
temperature_[phaseIdx] = fs.temperature(phaseIdx);
|
|
}
|
|
}
|
|
|
|
/*!
|
|
* \brief Make sure that all attributes are defined.
|
|
*
|
|
* This method does not do anything if the program is not run
|
|
* under valgrind. If it is, then valgrind will print an error
|
|
* message if some attributes of the object have not been properly
|
|
* defined.
|
|
*/
|
|
void checkDefined() const
|
|
{
|
|
Valgrind::CheckDefined(temperature_);
|
|
}
|
|
|
|
protected:
|
|
Scalar temperature_[numPhases];
|
|
};
|
|
|
|
/*!
|
|
* \brief Module for the modular fluid state which stores the
|
|
* temperatures explicitly and assumes thermal equilibrium.
|
|
*/
|
|
template <class Scalar,
|
|
class FluidSystem,
|
|
class Implementation>
|
|
class FluidStateEquilibriumTemperatureModule
|
|
{
|
|
enum { numPhases = FluidSystem::numPhases };
|
|
|
|
public:
|
|
FluidStateEquilibriumTemperatureModule()
|
|
{ Valgrind::SetUndefined(temperature_); }
|
|
|
|
/*!
|
|
* \brief The temperature of a fluid phase [-]
|
|
*/
|
|
Scalar temperature(int phaseIdx) const
|
|
{ return temperature_; }
|
|
|
|
/*!
|
|
* \brief Set the temperature of a phase [-]
|
|
*/
|
|
void setTemperature(Scalar value)
|
|
{ temperature_ = value; }
|
|
|
|
/*!
|
|
* \brief Retrieve all parameters from an arbitrary fluid
|
|
* state.
|
|
*/
|
|
template <class FluidState>
|
|
void assign(const FluidState& fs)
|
|
{
|
|
temperature_ = fs.temperature(/*phaseIdx=*/0);
|
|
|
|
#ifndef NDEBUG
|
|
for (int phaseIdx = 0; phaseIdx < numPhases; ++phaseIdx) {
|
|
assert(std::abs(fs.temperature(phaseIdx) - temperature_) < 1e-30);
|
|
}
|
|
#endif
|
|
}
|
|
|
|
/*!
|
|
* \brief Make sure that all attributes are defined.
|
|
*
|
|
* This method does not do anything if the program is not run
|
|
* under valgrind. If it is, then valgrind will print an error
|
|
* message if some attributes of the object have not been properly
|
|
* defined.
|
|
*/
|
|
void checkDefined() const
|
|
{
|
|
Valgrind::CheckDefined(temperature_);
|
|
}
|
|
|
|
protected:
|
|
Scalar temperature_;
|
|
};
|
|
|
|
/*!
|
|
* \brief Module for the modular fluid state which does not the
|
|
* temperatures but throws std::logic_error instead.
|
|
*/
|
|
template <class Scalar,
|
|
class FluidSystem,
|
|
class Implementation>
|
|
class FluidStateNullTemperatureModule
|
|
{
|
|
public:
|
|
FluidStateNullTemperatureModule()
|
|
{ }
|
|
|
|
/*!
|
|
* \brief The temperature of a fluid phase [-]
|
|
*/
|
|
Scalar temperature(int phaseIdx) const
|
|
{ OPM_THROW(std::runtime_error, "Temperature is not provided by this fluid state"); }
|
|
|
|
/*!
|
|
* \brief Retrieve all parameters from an arbitrary fluid
|
|
* state.
|
|
*/
|
|
template <class FluidState>
|
|
void assign(const FluidState& fs)
|
|
{ }
|
|
|
|
/*!
|
|
* \brief Make sure that all attributes are defined.
|
|
*
|
|
* This method does not do anything if the program is not run
|
|
* under valgrind. If it is, then valgrind will print an error
|
|
* message if some attributes of the object have not been properly
|
|
* defined.
|
|
*/
|
|
void checkDefined() const
|
|
{ }
|
|
};
|
|
|
|
} // namespace Opm
|
|
|
|
#endif
|