|
| static const char * | phaseName (unsigned phaseIdx OPM_OPTIM_UNUSED) |
| | Return the human readable name of a fluid phase. More...
|
| |
| static bool | isLiquid (unsigned) |
| | Return whether a phase is liquid. More...
|
| |
| static bool | isCompressible (unsigned) |
| | Returns true if and only if a fluid phase is assumed to be compressible. More...
|
| |
| static bool | isIdealGas (unsigned) |
| | Returns true if and only if a fluid phase is assumed to be an ideal gas. More...
|
| |
| static bool | isIdealMixture (unsigned) |
| | Returns true if and only if a fluid phase is assumed to be an ideal mixture. More...
|
| |
| static const char * | componentName (unsigned compIdx) |
| | Return the human readable name of a component. More...
|
| |
| static Scalar | molarMass (unsigned compIdx) |
| | Return the molar mass of a component in [kg/mol]. More...
|
| |
| static Scalar | criticalTemperature (unsigned compIdx) |
| | Critical temperature of a component [K]. More...
|
| |
| static Scalar | criticalPressure (unsigned compIdx) |
| | Critical pressure of a component [Pa]. More...
|
| |
| static Scalar | acentricFactor (unsigned compIdx) |
| | The acentric factor of a component []. More...
|
| |
| static void | init () |
| | Initialize the fluid system's static parameters. More...
|
| |
| static void | init (Scalar tempMin, Scalar tempMax, unsigned nTemp, Scalar pressMin, Scalar pressMax, unsigned nPress) |
| | Initialize the fluid system's static parameters using problem specific temperature and pressure ranges. More...
|
| |
| template<class FluidState , class LhsEval = typename FluidState::Scalar, class ParamCacheEval = LhsEval> |
| static LhsEval | density (const FluidState &fluidState, const ParameterCache< ParamCacheEval > &, unsigned phaseIdx) |
| | Calculate the density [kg/m^3] of a fluid phase. More...
|
| |
| template<class FluidState , class LhsEval = typename FluidState::Scalar, class ParamCacheEval = LhsEval> |
| static LhsEval | viscosity (const FluidState &fluidState, const ParameterCache< ParamCacheEval > &, unsigned phaseIdx) |
| | Calculate the dynamic viscosity of a fluid phase [Pa*s]. More...
|
| |
| template<class FluidState , class LhsEval = typename FluidState::Scalar, class ParamCacheEval = LhsEval> |
| static LhsEval | fugacityCoefficient (const FluidState &fluidState, const ParameterCache< ParamCacheEval > &, unsigned phaseIdx, unsigned compIdx) |
| | Calculate the fugacity coefficient [Pa] of an individual component in a fluid phase. More...
|
| |
| template<class FluidState , class LhsEval = typename FluidState::Scalar, class ParamCacheEval = LhsEval> |
| static LhsEval | diffusionCoefficient (const FluidState &fluidState, const ParameterCache< ParamCacheEval > &, unsigned phaseIdx, unsigned) |
| | Calculate the binary molecular diffusion coefficient for a component in a fluid phase [mol^2 * s / (kg*m^3)]. More...
|
| |
| template<class FluidState , class LhsEval = typename FluidState::Scalar, class ParamCacheEval = LhsEval> |
| static LhsEval | enthalpy (const FluidState &fluidState, const ParameterCache< ParamCacheEval > &, unsigned phaseIdx) |
| | Given a phase's composition, temperature, pressure and density, calculate its specific enthalpy [J/kg]. More...
|
| |
| template<class FluidState , class LhsEval = typename FluidState::Scalar, class ParamCacheEval = LhsEval> |
| static LhsEval | thermalConductivity (const FluidState &fluidState, const ParameterCache< ParamCacheEval > &, const unsigned phaseIdx) |
| | Thermal conductivity of a fluid phase [W/(m K)]. More...
|
| |
| template<class FluidState , class LhsEval = typename FluidState::Scalar, class ParamCacheEval = LhsEval> |
| static LhsEval | heatCapacity (const FluidState &fluidState, const ParameterCache< ParamCacheEval > &, unsigned phaseIdx) |
| | Specific isobaric heat capacity of a fluid phase [J/kg]. More...
|
| |
| static char * | phaseName (unsigned) |
| | Return the human readable name of a fluid phase. More...
|
| |
| static bool | isLiquid (unsigned) |
| | Return whether a phase is liquid. More...
|
| |
| static bool | isIdealMixture (unsigned) |
| | Returns true if and only if a fluid phase is assumed to be an ideal mixture. More...
|
| |
| static bool | isCompressible (unsigned) |
| | Returns true if and only if a fluid phase is assumed to be compressible. More...
|
| |
| static bool | isIdealGas (unsigned) |
| | Returns true if and only if a fluid phase is assumed to be an ideal gas. More...
|
| |
| static const char * | componentName (unsigned) |
| | Return the human readable name of a component. More...
|
| |
| static Scalar | molarMass (unsigned) |
| | Return the molar mass of a component in [kg/mol]. More...
|
| |
|
static void | init () |
| | Initialize the fluid system's static parameters.
|
| |
| static LhsEval | density (const FluidState &, const ParamCache &, unsigned) |
| | Calculate the density [kg/m^3] of a fluid phase. More...
|
| |
| static LhsEval | fugacityCoefficient (const FluidState &, ParamCache &, unsigned, unsigned) |
| | Calculate the fugacity coefficient [Pa] of an individual component in a fluid phase. More...
|
| |
| static LhsEval | viscosity (const FluidState &, ParamCache &, unsigned) |
| | Calculate the dynamic viscosity of a fluid phase [Pa*s]. More...
|
| |
| static LhsEval | diffusionCoefficient (const FluidState &, ParamCache &, unsigned, unsigned) |
| | Calculate the binary molecular diffusion coefficient for a component in a fluid phase [mol^2 * s / (kg*m^3)]. More...
|
| |
| static LhsEval | enthalpy (const FluidState &, ParamCache &, unsigned) |
| | Given a phase's composition, temperature, pressure and density, calculate its specific enthalpy [J/kg]. More...
|
| |
| static LhsEval | thermalConductivity (const FluidState &, ParamCache &, unsigned) |
| | Thermal conductivity of a fluid phase [W/(m K)]. More...
|
| |
| static LhsEval | heatCapacity (const FluidState &, ParamCache &, unsigned) |
| | Specific isobaric heat capacity of a fluid phase [J/kg]. More...
|
| |
|
static unsigned | phaseIsActive (unsigned) |
| | Returns whether a fluid phase is active.
|
| |
template<class Scalar>
class Opm::H2ON2LiquidPhaseFluidSystem< Scalar >
A liquid-phase-only fluid system with water and nitrogen as components.