3.1-git
DUNE for Multi-{Phase, Component, Scale, Physics, ...} flow and transport in porous media
Public Types | Static Public Member Functions | Static Public Attributes | List of all members
Dumux::Components::Constant< id, Scalar > Class Template Reference

A component which returns run time specified values for all fluid properties. More...

#include <dumux/material/components/constant.hh>

Inheritance diagram for Dumux::Components::Constant< id, Scalar >:
Inheritance graph

Description

template<int id, class Scalar>
class Dumux::Components::Constant< id, Scalar >

A component which returns run time specified values for all fluid properties.

Template Parameters
idThe id used to read from the input file / parametertree
ScalarThe type used for scalar values
Note
For the constant component with id=1 you would specify the parameters in the input file as follows
[1.Component]
MolarMass = 0.018 # kg/mol
If you only have one component you can also omit the "1.".

Public Types

using Scalar = Scalar
 export the scalar type used by the component More...
 

Static Public Member Functions

static constexpr bool gasIsCompressible ()
 Returns true if the gas phase is assumed to be compressible. More...
 
static constexpr bool gasViscosityIsConstant ()
 Returns true if the gas phase viscosity is constant. More...
 
static constexpr bool gasIsIdeal ()
 Returns true if the gas phase is assumed to be ideal. More...
 
static constexpr bool liquidIsCompressible ()
 Returns true if the liquid phase is assumed to be compressible. More...
 
static constexpr bool liquidViscosityIsConstant ()
 Returns true if the liquid phase viscosity is constant. More...
 
static const std::string & name ()
 A human readable name for the component. More...
 
static Scalar molarMass ()
 The mass in \(\mathrm{[kg]}\) of one mole of the component. More...
 
static Scalar liquidDensity (Scalar temperature, Scalar pressure)
 Sets the liquid density in \(\mathrm{[kg/m^3]}\). More...
 
static Scalar liquidMolarDensity (Scalar temperature, Scalar pressure)
 The molar density in \(\mathrm{[mol/m^3]}\) at a given pressure and temperature. More...
 
static Scalar liquidViscosity (Scalar temperature, Scalar pressure)
 Sets the liquid dynamic viscosity in \(\mathrm{[Pa*s]}\). More...
 
static Scalar gasDensity (Scalar temperature, Scalar pressure)
 Sets the gas density in \(\mathrm{[kg/m^3]}\). More...
 
static Scalar gasMolarDensity (Scalar temperature, Scalar pressure)
 The molar density in \(\mathrm{[mol/m^3]}\) at a given pressure and temperature. More...
 
static Scalar gasViscosity (Scalar temperature, Scalar pressure)
 Sets the gas dynamic viscosity in \(\mathrm{[Pa*s]}\). More...
 
static Scalar solidDensity (Scalar temperature)
 The density in \(\mathrm{[kg/m^3]}\) of the component at a given pressure in \(\mathrm{[Pa]}\) and temperature in \(\mathrm{[K]}\). More...
 
static Scalar solidThermalConductivity (Scalar temperature)
 Thermal conductivity of the component \(\mathrm{[W/(m*K)]}\) as a solid. More...
 
static Scalar solidHeatCapacity (Scalar temperature)
 Specific isobaric heat capacity of the component \(\mathrm{[J/(kg*K)]}\) as a solid. More...
 
static void init (Scalar tempMin, Scalar tempMax, unsigned nTemp, Scalar pressMin, Scalar pressMax, unsigned nPress)
 A default routine for initialization, not needed for components and must not be called. More...
 
static constexpr Scalar criticalTemperature ()
 Returns the critical temperature in \(\mathrm{[K]}\) of the component. More...
 
static constexpr Scalar criticalPressure ()
 Returns the critical pressure in \(\mathrm{[Pa]}\) of the component. More...
 
static constexpr Scalar tripleTemperature ()
 Returns the temperature in \(\mathrm{[K]}\) at the component's triple point. More...
 
static constexpr Scalar triplePressure ()
 Returns the pressure in \(\mathrm{[Pa]}\) at the component's triple point. More...
 
static Scalar vaporPressure (Scalar t)
 The vapor pressure in \(\mathrm{[Pa]}\) of the component at a given temperature in \(\mathrm{[K]}\). More...
 
static const Scalar liquidEnthalpy (Scalar temperature, Scalar pressure)
 Specific enthalpy \(\mathrm{[J/kg]}\) of the pure component in liquid. More...
 
static const Scalar liquidInternalEnergy (Scalar temperature, Scalar pressure)
 Specific internal energy \(\mathrm{[J/kg]}\) of pure the pure component in liquid. More...
 
static Scalar liquidThermalConductivity (Scalar temperature, Scalar pressure)
 Thermal conductivity of the component \(\mathrm{[W/(m*K)]}\) as a liquid. More...
 
static Scalar liquidHeatCapacity (Scalar temperature, Scalar pressure)
 Specific isobaric heat capacity of the component \(\mathrm{[J/(kg*K)]}\) as a liquid. More...
 
static const Scalar gasEnthalpy (Scalar temperature, Scalar pressure)
 Specific enthalpy \(\mathrm{[J/kg]}\) of the pure component in gas. More...
 
static const Scalar gasInternalEnergy (Scalar temperature, Scalar pressure)
 Specific internal energy \(\mathrm{[J/kg]}\) of the pure component in gas. More...
 
static Scalar gasThermalConductivity (Scalar temperature, Scalar pressure)
 Thermal conductivity of the component \(\mathrm{[W/(m*K)]}\) as a gas. More...
 
static Scalar gasHeatCapacity (Scalar temperature, Scalar pressure)
 Specific isobaric heat capacity of the component \(\mathrm{[J/(kg*K)]}\) as a gas. More...
 
static constexpr bool solidIsCompressible ()
 Returns true if the solid phase is assumed to be compressible. More...
 

Static Public Attributes

static constexpr bool isTabulated
 if the component relies on tabulated values More...
 

Member Typedef Documentation

◆ Scalar

using Dumux::Components::Base< Scalar , Constant< id, Scalar > >::Scalar = Scalar
inherited

export the scalar type used by the component

Member Function Documentation

◆ criticalPressure()

static constexpr Scalar Dumux::Components::Base< Scalar , Constant< id, Scalar > >::criticalPressure ( )
inlinestaticconstexprinherited

Returns the critical pressure in \(\mathrm{[Pa]}\) of the component.

◆ criticalTemperature()

static constexpr Scalar Dumux::Components::Base< Scalar , Constant< id, Scalar > >::criticalTemperature ( )
inlinestaticconstexprinherited

Returns the critical temperature in \(\mathrm{[K]}\) of the component.

◆ gasDensity()

template<int id, class Scalar >
static Scalar Dumux::Components::Constant< id, Scalar >::gasDensity ( Scalar  temperature,
Scalar  pressure 
)
inlinestatic

Sets the gas density in \(\mathrm{[kg/m^3]}\).

Parameters
temperaturephase temperature in \(\mathrm{[K]}\)
pressurephase pressure in \(\mathrm{[Pa]}\)

◆ gasEnthalpy()

static const Scalar Dumux::Components::Gas< Scalar, Constant< id, Scalar > >::gasEnthalpy ( Scalar  temperature,
Scalar  pressure 
)
inlinestaticinherited

Specific enthalpy \(\mathrm{[J/kg]}\) of the pure component in gas.

Parameters
temperaturetemperature of component in \(\mathrm{[K]}\)
pressurepressure of component in \(\mathrm{[Pa]}\)

◆ gasHeatCapacity()

static Scalar Dumux::Components::Gas< Scalar, Constant< id, Scalar > >::gasHeatCapacity ( Scalar  temperature,
Scalar  pressure 
)
inlinestaticinherited

Specific isobaric heat capacity of the component \(\mathrm{[J/(kg*K)]}\) as a gas.

Parameters
temperaturetemperature of component in \(\mathrm{[K]}\)
pressurepressure of component in \(\mathrm{[Pa]}\)

◆ gasInternalEnergy()

static const Scalar Dumux::Components::Gas< Scalar, Constant< id, Scalar > >::gasInternalEnergy ( Scalar  temperature,
Scalar  pressure 
)
inlinestaticinherited

Specific internal energy \(\mathrm{[J/kg]}\) of the pure component in gas.

Parameters
temperaturetemperature of component in \(\mathrm{[K]}\)
pressurepressure of component in \(\mathrm{[Pa]}\)

◆ gasIsCompressible()

template<int id, class Scalar >
static constexpr bool Dumux::Components::Constant< id, Scalar >::gasIsCompressible ( )
inlinestaticconstexpr

Returns true if the gas phase is assumed to be compressible.

◆ gasIsIdeal()

template<int id, class Scalar >
static constexpr bool Dumux::Components::Constant< id, Scalar >::gasIsIdeal ( )
inlinestaticconstexpr

Returns true if the gas phase is assumed to be ideal.

◆ gasMolarDensity()

template<int id, class Scalar >
static Scalar Dumux::Components::Constant< id, Scalar >::gasMolarDensity ( Scalar  temperature,
Scalar  pressure 
)
inlinestatic

The molar density in \(\mathrm{[mol/m^3]}\) at a given pressure and temperature.

Parameters
temperaturetemperature of component in \(\mathrm{[K]}\)
pressurepressure of component in \(\mathrm{[Pa]}\)

◆ gasThermalConductivity()

static Scalar Dumux::Components::Gas< Scalar, Constant< id, Scalar > >::gasThermalConductivity ( Scalar  temperature,
Scalar  pressure 
)
inlinestaticinherited

Thermal conductivity of the component \(\mathrm{[W/(m*K)]}\) as a gas.

Parameters
temperaturetemperature of component in \(\mathrm{[K]}\)
pressurepressure of component in \(\mathrm{[Pa]}\)

◆ gasViscosity()

template<int id, class Scalar >
static Scalar Dumux::Components::Constant< id, Scalar >::gasViscosity ( Scalar  temperature,
Scalar  pressure 
)
inlinestatic

Sets the gas dynamic viscosity in \(\mathrm{[Pa*s]}\).

Although the dynamic viscosity \(\mathrm{[Pa*s]}\) is returned, the kinematic viscosity \(\mathrm{[m^2/s]}\) is requested from run time input.

Parameters
temperaturephase temperature in \(\mathrm{[K]}\)
pressurephase pressure in \(\mathrm{[Pa]}\)

◆ gasViscosityIsConstant()

template<int id, class Scalar >
static constexpr bool Dumux::Components::Constant< id, Scalar >::gasViscosityIsConstant ( )
inlinestaticconstexpr

Returns true if the gas phase viscosity is constant.

◆ init()

static void Dumux::Components::Base< Scalar , Constant< id, Scalar > >::init ( Scalar  tempMin,
Scalar  tempMax,
unsigned  nTemp,
Scalar  pressMin,
Scalar  pressMax,
unsigned  nPress 
)
inlinestaticinherited

A default routine for initialization, not needed for components and must not be called.

Parameters
tempMinThe minimum of the temperature range in \(\mathrm{[K]}\)
tempMaxThe maximum of the temperature range in \(\mathrm{[K]}\)
nTempThe number of entries/steps within the temperature range
pressMinThe minimum of the pressure range in \(\mathrm{[Pa]}\)
pressMaxThe maximum of the pressure range in \(\mathrm{[Pa]}\)
nPressThe number of entries/steps within the pressure range

This function throws a warning when called: "No init routine defined - make sure that this is not necessary!"

◆ liquidDensity()

template<int id, class Scalar >
static Scalar Dumux::Components::Constant< id, Scalar >::liquidDensity ( Scalar  temperature,
Scalar  pressure 
)
inlinestatic

Sets the liquid density in \(\mathrm{[kg/m^3]}\).

Parameters
temperaturephase temperature in \(\mathrm{[K]}\)
pressurephase pressure in \(\mathrm{[Pa]}\)

◆ liquidEnthalpy()

static const Scalar Dumux::Components::Liquid< Scalar, Constant< id, Scalar > >::liquidEnthalpy ( Scalar  temperature,
Scalar  pressure 
)
inlinestaticinherited

Specific enthalpy \(\mathrm{[J/kg]}\) of the pure component in liquid.

Parameters
temperaturetemperature of component in \(\mathrm{[K]}\)
pressurepressure of component in \(\mathrm{[Pa]}\)

◆ liquidHeatCapacity()

static Scalar Dumux::Components::Liquid< Scalar, Constant< id, Scalar > >::liquidHeatCapacity ( Scalar  temperature,
Scalar  pressure 
)
inlinestaticinherited

Specific isobaric heat capacity of the component \(\mathrm{[J/(kg*K)]}\) as a liquid.

Parameters
temperaturetemperature of component in \(\mathrm{[K]}\)
pressurepressure of component in \(\mathrm{[Pa]}\)

◆ liquidInternalEnergy()

static const Scalar Dumux::Components::Liquid< Scalar, Constant< id, Scalar > >::liquidInternalEnergy ( Scalar  temperature,
Scalar  pressure 
)
inlinestaticinherited

Specific internal energy \(\mathrm{[J/kg]}\) of pure the pure component in liquid.

Parameters
temperaturetemperature of component in \(\mathrm{[K]}\)
pressurepressure of component in \(\mathrm{[Pa]}\)

◆ liquidIsCompressible()

template<int id, class Scalar >
static constexpr bool Dumux::Components::Constant< id, Scalar >::liquidIsCompressible ( )
inlinestaticconstexpr

Returns true if the liquid phase is assumed to be compressible.

◆ liquidMolarDensity()

template<int id, class Scalar >
static Scalar Dumux::Components::Constant< id, Scalar >::liquidMolarDensity ( Scalar  temperature,
Scalar  pressure 
)
inlinestatic

The molar density in \(\mathrm{[mol/m^3]}\) at a given pressure and temperature.

Parameters
temperaturetemperature of component in \(\mathrm{[K]}\)
pressurepressure of component in \(\mathrm{[Pa]}\)

◆ liquidThermalConductivity()

static Scalar Dumux::Components::Liquid< Scalar, Constant< id, Scalar > >::liquidThermalConductivity ( Scalar  temperature,
Scalar  pressure 
)
inlinestaticinherited

Thermal conductivity of the component \(\mathrm{[W/(m*K)]}\) as a liquid.

Parameters
temperaturetemperature of component in \(\mathrm{[K]}\)
pressurepressure of component in \(\mathrm{[Pa]}\)

◆ liquidViscosity()

template<int id, class Scalar >
static Scalar Dumux::Components::Constant< id, Scalar >::liquidViscosity ( Scalar  temperature,
Scalar  pressure 
)
inlinestatic

Sets the liquid dynamic viscosity in \(\mathrm{[Pa*s]}\).

Although the dynamic viscosity \(\mathrm{[Pa*s]}\) is returned, the kinematic viscosity \(\mathrm{[m^2/s]}\) is requested from run time input.

Parameters
temperaturephase temperature in \(\mathrm{[K]}\)
pressurephase pressure in \(\mathrm{[Pa]}\)

◆ liquidViscosityIsConstant()

template<int id, class Scalar >
static constexpr bool Dumux::Components::Constant< id, Scalar >::liquidViscosityIsConstant ( )
inlinestaticconstexpr

Returns true if the liquid phase viscosity is constant.

◆ molarMass()

template<int id, class Scalar >
static Scalar Dumux::Components::Constant< id, Scalar >::molarMass ( )
inlinestatic

The mass in \(\mathrm{[kg]}\) of one mole of the component.

◆ name()

template<int id, class Scalar >
static const std::string & Dumux::Components::Constant< id, Scalar >::name ( )
inlinestatic

A human readable name for the component.

◆ solidDensity()

template<int id, class Scalar >
static Scalar Dumux::Components::Constant< id, Scalar >::solidDensity ( Scalar  temperature)
inlinestatic

The density in \(\mathrm{[kg/m^3]}\) of the component at a given pressure in \(\mathrm{[Pa]}\) and temperature in \(\mathrm{[K]}\).

Parameters
temperaturetemperature of component in \(\mathrm{[K]}\)

◆ solidHeatCapacity()

template<int id, class Scalar >
static Scalar Dumux::Components::Constant< id, Scalar >::solidHeatCapacity ( Scalar  temperature)
inlinestatic

Specific isobaric heat capacity of the component \(\mathrm{[J/(kg*K)]}\) as a solid.

Parameters
temperaturetemperature of component in \(\mathrm{[K]}\)

◆ solidIsCompressible()

static constexpr bool Dumux::Components::Solid< Scalar, Constant< id, Scalar > >::solidIsCompressible ( )
inlinestaticconstexprinherited

Returns true if the solid phase is assumed to be compressible.

◆ solidThermalConductivity()

template<int id, class Scalar >
static Scalar Dumux::Components::Constant< id, Scalar >::solidThermalConductivity ( Scalar  temperature)
inlinestatic

Thermal conductivity of the component \(\mathrm{[W/(m*K)]}\) as a solid.

Parameters
temperaturetemperature of component in \(\mathrm{[K]}\)

◆ triplePressure()

static constexpr Scalar Dumux::Components::Base< Scalar , Constant< id, Scalar > >::triplePressure ( )
inlinestaticconstexprinherited

Returns the pressure in \(\mathrm{[Pa]}\) at the component's triple point.

◆ tripleTemperature()

static constexpr Scalar Dumux::Components::Base< Scalar , Constant< id, Scalar > >::tripleTemperature ( )
inlinestaticconstexprinherited

Returns the temperature in \(\mathrm{[K]}\) at the component's triple point.

◆ vaporPressure()

static Scalar Dumux::Components::Base< Scalar , Constant< id, Scalar > >::vaporPressure ( Scalar  t)
inlinestaticinherited

The vapor pressure in \(\mathrm{[Pa]}\) of the component at a given temperature in \(\mathrm{[K]}\).

Parameters
ttemperature of the component in \(\mathrm{[K]}\)

Member Data Documentation

◆ isTabulated

constexpr bool Dumux::Components::Base< Scalar , Constant< id, Scalar > >::isTabulated
staticconstexprinherited

if the component relies on tabulated values


The documentation for this class was generated from the following file: