This problem simulates an input file given in the data format used by the commercial ECLiPSE simulator. More...

#include <FlowGenericProblem.hpp>

Inheritance diagram for Opm::FlowGenericProblem< GridView, FluidSystem >:
Inheritance graph

Classes

struct  RockParams
 

Public Types

using Scalar = typename FluidSystem::Scalar
 
using TabulatedTwoDFunction = UniformXTabulated2DFunction< Scalar >
 
using TabulatedFunction = Tabulated1DFunction< Scalar >
 

Public Member Functions

 FlowGenericProblem (const EclipseState &eclState, const Schedule &schedule, const GridView &gridView)
 
Scalar maxWaterSaturation (unsigned globalDofIdx) const
 Returns an element's historic maximum water phase saturation that was observed during the simulation. More...
 
Scalar minOilPressure (unsigned globalDofIdx) const
 Returns an element's historic minimum pressure of the oil phase that was observed during the simulation. More...
 
Scalar overburdenPressure (unsigned elementIdx) const
 Get the pressure of the overburden. More...
 
Scalar referencePorosity (unsigned elementIdx, unsigned timeIdx) const
 Returns the porosity of an element. More...
 
Scalar rockFraction (unsigned elementIdx, unsigned timeIdx) const
 Returns the rockFraction of an element. More...
 
void setPorosity (Scalar poro, unsigned elementIdx, unsigned timeIdx=0)
 Sets the porosity of an element. More...
 
Scalar solventSaturation (unsigned elemIdx) const
 Returns the initial solvent saturation for a given a cell index. More...
 
Scalar solventRsw (unsigned elemIdx) const
 Returns the initial solvent dissolved in water for a given a cell index. More...
 
Scalar drsdtcon (unsigned elemIdx, int episodeIdx) const
 Returns the dynamic drsdt convective mixing value. More...
 
Scalar polymerConcentration (unsigned elemIdx) const
 Returns the initial polymer concentration for a given a cell index. More...
 
Scalar polymerMolecularWeight (const unsigned elemIdx) const
 Returns the polymer molecule weight for a given cell index. More...
 
Scalar microbialConcentration (unsigned elemIdx) const
 Returns the initial microbial concentration for a given a cell index. More...
 
Scalar oxygenConcentration (unsigned elemIdx) const
 Returns the initial oxygen concentration for a given a cell index. More...
 
Scalar ureaConcentration (unsigned elemIdx) const
 Returns the initial urea concentration for a given a cell index. More...
 
Scalar biofilmConcentration (unsigned elemIdx) const
 Returns the initial biofilm concentration for a given a cell index. More...
 
Scalar calciteConcentration (unsigned elemIdx) const
 Returns the initial calcite concentration for a given a cell index. More...
 
unsigned pvtRegionIndex (unsigned elemIdx) const
 Returns the index the relevant PVT region given a cell index. More...
 
unsigned satnumRegionIndex (unsigned elemIdx) const
 Returns the index the relevant saturation function region given a cell index. More...
 
unsigned miscnumRegionIndex (unsigned elemIdx) const
 Returns the index the relevant MISC region given a cell index. More...
 
unsigned plmixnumRegionIndex (unsigned elemIdx) const
 Returns the index the relevant PLMIXNUM (for polymer module) region given a cell index. More...
 
Scalar maxPolymerAdsorption (unsigned elemIdx) const
 Returns the max polymer adsorption value. More...
 
Scalar rockCompressibility (unsigned globalSpaceIdx) const
 
Scalar rockReferencePressure (unsigned globalSpaceIdx) const
 
Scalar porosity (unsigned globalSpaceIdx, unsigned timeIdx) const
 Direct indexed access to the porosity. More...
 
bool vapparsActive (int episodeIdx) const
 
int numPressurePointsEquil () const
 
bool operator== (const FlowGenericProblem &rhs) const
 
template<class Serializer >
void serializeOp (Serializer &serializer)
 

Static Public Member Functions

static FlowGenericProblem serializationTestObject (const EclipseState &eclState, const Schedule &schedule, const GridView &gridView)
 
static std::string helpPreamble (int, const char **argv)
 
static std::string briefDescription ()
 
static void setBriefDescription (const std::string &msg)
 Specifies the string returned by briefDescription() More...
 

Protected Types

using Grid = std::remove_cv_t< typename std::remove_reference< decltype(gridView_.grid())>::type >
 
using LookUpData = Opm::LookUpData< Grid, GridView >
 

Protected Member Functions

void initFluidSystem_ ()
 
bool shouldWriteOutput () const
 Always returns true. The ecl output writer takes care of the rest. More...
 
bool shouldWriteRestartFile () const
 Returns true if an eWoms restart file should be written to disk. More...
 
bool beginEpisode_ (bool enableExperiments, int episodeIdx)
 
void beginTimeStep_ (bool enableExperiments, int episodeIdx, int timeStepIndex, Scalar startTime, Scalar time, Scalar timeStepSize, Scalar endTime)
 
void readRockParameters_ (const std::vector< Scalar > &cellCenterDepths, std::function< std::array< int, 3 >(const unsigned)> ijkIndex)
 
void readRockCompactionParameters_ ()
 
void readBlackoilExtentionsInitialConditions_ (std::size_t numDof, bool enableSolvent, bool enablePolymer, bool enablePolymerMolarWeight, bool enableMICP)
 
void updatePvtnum_ ()
 
void updateSatnum_ ()
 
void updateMiscnum_ ()
 
void updatePlmixnum_ ()
 
void updateKrnum_ ()
 
void updateImbnum_ ()
 
std::function< unsigned(unsigned)> lookupIdxOnLevelZeroAssigner_ ()
 

Protected Attributes

const EclipseState & eclState_
 
const Schedule & schedule_
 
const GridView & gridView_
 
std::array< std::vector< Scalar >, 2 > referencePorosity_
 
std::vector< int > pvtnum_
 
std::vector< unsigned short > satnum_
 
std::vector< unsigned short > miscnum_
 
std::vector< unsigned short > plmixnum_
 
std::vector< unsigned short > krnumx_
 
std::vector< unsigned short > krnumy_
 
std::vector< unsigned short > krnumz_
 
std::vector< unsigned short > imbnumx_
 
std::vector< unsigned short > imbnumy_
 
std::vector< unsigned short > imbnumz_
 
std::vector< RockParamsrockParams_
 
std::vector< unsigned short > rockTableIdx_
 
std::vector< TabulatedTwoDFunctionrockCompPoroMultWc_
 
std::vector< TabulatedTwoDFunctionrockCompTransMultWc_
 
std::vector< TabulatedFunctionrockCompPoroMult_
 
std::vector< TabulatedFunctionrockCompTransMult_
 
std::vector< ScalarrockCompTransMultVal_
 
PolymerSolutionContainer< Scalarpolymer_
 
std::vector< ScalarmaxOilSaturation_
 
std::vector< ScalarmaxWaterSaturation_
 
std::vector< ScalarminRefPressure_
 
std::vector< ScalaroverburdenPressure_
 
std::vector< ScalarsolventSaturation_
 
std::vector< ScalarsolventRsw_
 
MICPSolutionContainer< Scalarmicp_
 
MixingRateControls< FluidSystem > mixControls_
 
bool enableTuning_
 
Scalar initialTimeStepSize_
 
Scalar maxTimeStepAfterWellEvent_
 
int numPressurePointsEquil_
 
const LookUpData lookUpData_
 

Static Protected Attributes

static std::string briefDescription_
 

Detailed Description

template<class GridView, class FluidSystem>
class Opm::FlowGenericProblem< GridView, FluidSystem >

This problem simulates an input file given in the data format used by the commercial ECLiPSE simulator.

Member Typedef Documentation

◆ Grid

template<class GridView , class FluidSystem >
using Opm::FlowGenericProblem< GridView, FluidSystem >::Grid = std::remove_cv_t< typename std::remove_reference<decltype(gridView_.grid())>::type>
protected

◆ LookUpData

template<class GridView , class FluidSystem >
using Opm::FlowGenericProblem< GridView, FluidSystem >::LookUpData = Opm::LookUpData<Grid,GridView>
protected

◆ Scalar

template<class GridView , class FluidSystem >
using Opm::FlowGenericProblem< GridView, FluidSystem >::Scalar = typename FluidSystem::Scalar

◆ TabulatedFunction

template<class GridView , class FluidSystem >
using Opm::FlowGenericProblem< GridView, FluidSystem >::TabulatedFunction = Tabulated1DFunction<Scalar>

◆ TabulatedTwoDFunction

template<class GridView , class FluidSystem >
using Opm::FlowGenericProblem< GridView, FluidSystem >::TabulatedTwoDFunction = UniformXTabulated2DFunction<Scalar>

Constructor & Destructor Documentation

◆ FlowGenericProblem()

template<class GridView , class FluidSystem >
Opm::FlowGenericProblem< GridView, FluidSystem >::FlowGenericProblem ( const EclipseState &  eclState,
const Schedule &  schedule,
const GridView &  gridView 
)

Member Function Documentation

◆ beginEpisode_()

template<class GridView , class FluidSystem >
bool Opm::FlowGenericProblem< GridView, FluidSystem >::beginEpisode_ ( bool  enableExperiments,
int  episodeIdx 
)
protected

◆ beginTimeStep_()

template<class GridView , class FluidSystem >
void Opm::FlowGenericProblem< GridView, FluidSystem >::beginTimeStep_ ( bool  enableExperiments,
int  episodeIdx,
int  timeStepIndex,
Scalar  startTime,
Scalar  time,
Scalar  timeStepSize,
Scalar  endTime 
)
protected

◆ biofilmConcentration()

template<class GridView , class FluidSystem >
FlowGenericProblem< GridView, FluidSystem >::Scalar Opm::FlowGenericProblem< GridView, FluidSystem >::biofilmConcentration ( unsigned  elemIdx) const

Returns the initial biofilm concentration for a given a cell index.

◆ briefDescription()

template<class GridView , class FluidSystem >
std::string Opm::FlowGenericProblem< GridView, FluidSystem >::briefDescription
static

◆ calciteConcentration()

template<class GridView , class FluidSystem >
FlowGenericProblem< GridView, FluidSystem >::Scalar Opm::FlowGenericProblem< GridView, FluidSystem >::calciteConcentration ( unsigned  elemIdx) const

Returns the initial calcite concentration for a given a cell index.

◆ drsdtcon()

template<class GridView , class FluidSystem >
FlowGenericProblem< GridView, FluidSystem >::Scalar Opm::FlowGenericProblem< GridView, FluidSystem >::drsdtcon ( unsigned  elemIdx,
int  episodeIdx 
) const

Returns the dynamic drsdt convective mixing value.

◆ helpPreamble()

template<class GridView , class FluidSystem >
std::string Opm::FlowGenericProblem< GridView, FluidSystem >::helpPreamble ( int  ,
const char **  argv 
)
static

◆ initFluidSystem_()

template<class GridView , class FluidSystem >
void Opm::FlowGenericProblem< GridView, FluidSystem >::initFluidSystem_
protected

◆ lookupIdxOnLevelZeroAssigner_()

template<class GridView , class FluidSystem >
std::function< unsigned(unsigned)> Opm::FlowGenericProblem< GridView, FluidSystem >::lookupIdxOnLevelZeroAssigner_ ( )
inlineprotected

◆ maxPolymerAdsorption()

template<class GridView , class FluidSystem >
FlowGenericProblem< GridView, FluidSystem >::Scalar Opm::FlowGenericProblem< GridView, FluidSystem >::maxPolymerAdsorption ( unsigned  elemIdx) const

Returns the max polymer adsorption value.

◆ maxWaterSaturation()

template<class GridView , class FluidSystem >
FlowGenericProblem< GridView, FluidSystem >::Scalar Opm::FlowGenericProblem< GridView, FluidSystem >::maxWaterSaturation ( unsigned  globalDofIdx) const

Returns an element's historic maximum water phase saturation that was observed during the simulation.

In this context, "historic" means the the time before the current timestep began.

This is used for output of the maximum water saturation used as input for water induced rock compation ROCK2D/ROCK2DTR.

◆ microbialConcentration()

template<class GridView , class FluidSystem >
FlowGenericProblem< GridView, FluidSystem >::Scalar Opm::FlowGenericProblem< GridView, FluidSystem >::microbialConcentration ( unsigned  elemIdx) const

Returns the initial microbial concentration for a given a cell index.

◆ minOilPressure()

template<class GridView , class FluidSystem >
FlowGenericProblem< GridView, FluidSystem >::Scalar Opm::FlowGenericProblem< GridView, FluidSystem >::minOilPressure ( unsigned  globalDofIdx) const

Returns an element's historic minimum pressure of the oil phase that was observed during the simulation.

In this context, "historic" means the the time before the current timestep began.

This is used for output of the minimum pressure used as input for the irreversible rock compation option.

◆ miscnumRegionIndex()

template<class GridView , class FluidSystem >
unsigned Opm::FlowGenericProblem< GridView, FluidSystem >::miscnumRegionIndex ( unsigned  elemIdx) const

Returns the index the relevant MISC region given a cell index.

◆ numPressurePointsEquil()

template<class GridView , class FluidSystem >
int Opm::FlowGenericProblem< GridView, FluidSystem >::numPressurePointsEquil ( ) const
inline

◆ operator==()

◆ overburdenPressure()

template<class GridView , class FluidSystem >
FlowGenericProblem< GridView, FluidSystem >::Scalar Opm::FlowGenericProblem< GridView, FluidSystem >::overburdenPressure ( unsigned  elementIdx) const

Get the pressure of the overburden.

This method is mainly for output.

◆ oxygenConcentration()

template<class GridView , class FluidSystem >
FlowGenericProblem< GridView, FluidSystem >::Scalar Opm::FlowGenericProblem< GridView, FluidSystem >::oxygenConcentration ( unsigned  elemIdx) const

Returns the initial oxygen concentration for a given a cell index.

◆ plmixnumRegionIndex()

template<class GridView , class FluidSystem >
unsigned Opm::FlowGenericProblem< GridView, FluidSystem >::plmixnumRegionIndex ( unsigned  elemIdx) const

Returns the index the relevant PLMIXNUM (for polymer module) region given a cell index.

◆ polymerConcentration()

template<class GridView , class FluidSystem >
FlowGenericProblem< GridView, FluidSystem >::Scalar Opm::FlowGenericProblem< GridView, FluidSystem >::polymerConcentration ( unsigned  elemIdx) const

Returns the initial polymer concentration for a given a cell index.

◆ polymerMolecularWeight()

template<class GridView , class FluidSystem >
FlowGenericProblem< GridView, FluidSystem >::Scalar Opm::FlowGenericProblem< GridView, FluidSystem >::polymerMolecularWeight ( const unsigned  elemIdx) const

Returns the polymer molecule weight for a given cell index.

◆ porosity()

template<class GridView , class FluidSystem >
FlowGenericProblem< GridView, FluidSystem >::Scalar Opm::FlowGenericProblem< GridView, FluidSystem >::porosity ( unsigned  globalSpaceIdx,
unsigned  timeIdx 
) const

Direct indexed access to the porosity.

For the FlowProblem, this method is identical to referencePorosity(). The intensive quantities object may apply various multipliers (e.g. ones which model rock compressibility and water induced rock compaction) to it which depend on the current physical conditions.

◆ pvtRegionIndex()

template<class GridView , class FluidSystem >
unsigned Opm::FlowGenericProblem< GridView, FluidSystem >::pvtRegionIndex ( unsigned  elemIdx) const

Returns the index the relevant PVT region given a cell index.

◆ readBlackoilExtentionsInitialConditions_()

template<class GridView , class FluidSystem >
void Opm::FlowGenericProblem< GridView, FluidSystem >::readBlackoilExtentionsInitialConditions_ ( std::size_t  numDof,
bool  enableSolvent,
bool  enablePolymer,
bool  enablePolymerMolarWeight,
bool  enableMICP 
)
protected

◆ readRockCompactionParameters_()

template<class GridView , class FluidSystem >
void Opm::FlowGenericProblem< GridView, FluidSystem >::readRockCompactionParameters_
protected

◆ readRockParameters_()

template<class GridView , class FluidSystem >
void Opm::FlowGenericProblem< GridView, FluidSystem >::readRockParameters_ ( const std::vector< Scalar > &  cellCenterDepths,
std::function< std::array< int, 3 >(const unsigned)>  ijkIndex 
)
protected

◆ referencePorosity()

template<class GridView , class FluidSystem >
Scalar Opm::FlowGenericProblem< GridView, FluidSystem >::referencePorosity ( unsigned  elementIdx,
unsigned  timeIdx 
) const
inline

Returns the porosity of an element.

The reference porosity of an element is the porosity of the medium before modified by the current solution. Note that this method is not part of the generic eWoms problem API because it would bake the assumption that only the elements are the degrees of freedom into the interface.

References Opm::FlowGenericProblem< GridView, FluidSystem >::referencePorosity_.

◆ rockCompressibility()

template<class GridView , class FluidSystem >
FlowGenericProblem< GridView, FluidSystem >::Scalar Opm::FlowGenericProblem< GridView, FluidSystem >::rockCompressibility ( unsigned  globalSpaceIdx) const

Direct access to rock compressibility.

While the above overload could be implemented in terms of this method, that would require always looking up the global space index, which is not always needed.

◆ rockFraction()

template<class GridView , class FluidSystem >
FlowGenericProblem< GridView, FluidSystem >::Scalar Opm::FlowGenericProblem< GridView, FluidSystem >::rockFraction ( unsigned  elementIdx,
unsigned  timeIdx 
) const

Returns the rockFraction of an element.

Usually 1 - porosity, but if pvmult is used to modify porosity we will apply the same multiplier to the rock fraction i.e. pvmult*(1 - porosity) and thus interpret multpv as a volume multiplier. This is to avoid negative rock volume for pvmult*porosity > 1

◆ rockReferencePressure()

template<class GridView , class FluidSystem >
FlowGenericProblem< GridView, FluidSystem >::Scalar Opm::FlowGenericProblem< GridView, FluidSystem >::rockReferencePressure ( unsigned  globalSpaceIdx) const

Direct access to rock reference pressure.

While the above overload could be implemented in terms of this method, that would require always looking up the global space index, which is not always needed.

◆ satnumRegionIndex()

template<class GridView , class FluidSystem >
unsigned Opm::FlowGenericProblem< GridView, FluidSystem >::satnumRegionIndex ( unsigned  elemIdx) const

Returns the index the relevant saturation function region given a cell index.

◆ serializationTestObject()

template<class GridView , class FluidSystem >
FlowGenericProblem< GridView, FluidSystem > Opm::FlowGenericProblem< GridView, FluidSystem >::serializationTestObject ( const EclipseState &  eclState,
const Schedule &  schedule,
const GridView &  gridView 
)
static

◆ serializeOp()

◆ setBriefDescription()

template<class GridView , class FluidSystem >
static void Opm::FlowGenericProblem< GridView, FluidSystem >::setBriefDescription ( const std::string &  msg)
inlinestatic

Specifies the string returned by briefDescription()

This string appears in the usage message.

References Opm::FlowGenericProblem< GridView, FluidSystem >::briefDescription_.

◆ setPorosity()

template<class GridView , class FluidSystem >
void Opm::FlowGenericProblem< GridView, FluidSystem >::setPorosity ( Scalar  poro,
unsigned  elementIdx,
unsigned  timeIdx = 0 
)
inline

Sets the porosity of an element.

References Opm::FlowGenericProblem< GridView, FluidSystem >::referencePorosity_.

◆ shouldWriteOutput()

template<class GridView , class FluidSystem >
bool Opm::FlowGenericProblem< GridView, FluidSystem >::shouldWriteOutput ( ) const
inlineprotected

Always returns true. The ecl output writer takes care of the rest.

◆ shouldWriteRestartFile()

template<class GridView , class FluidSystem >
bool Opm::FlowGenericProblem< GridView, FluidSystem >::shouldWriteRestartFile ( ) const
inlineprotected

Returns true if an eWoms restart file should be written to disk.

The FlowProblem does not write any restart files using the ad-hoc format, only ones using the ECL format.

◆ solventRsw()

template<class GridView , class FluidSystem >
FlowGenericProblem< GridView, FluidSystem >::Scalar Opm::FlowGenericProblem< GridView, FluidSystem >::solventRsw ( unsigned  elemIdx) const

Returns the initial solvent dissolved in water for a given a cell index.

◆ solventSaturation()

template<class GridView , class FluidSystem >
FlowGenericProblem< GridView, FluidSystem >::Scalar Opm::FlowGenericProblem< GridView, FluidSystem >::solventSaturation ( unsigned  elemIdx) const

Returns the initial solvent saturation for a given a cell index.

◆ updateImbnum_()

template<class GridView , class FluidSystem >
void Opm::FlowGenericProblem< GridView, FluidSystem >::updateImbnum_
protected

◆ updateKrnum_()

template<class GridView , class FluidSystem >
void Opm::FlowGenericProblem< GridView, FluidSystem >::updateKrnum_
protected

◆ updateMiscnum_()

template<class GridView , class FluidSystem >
void Opm::FlowGenericProblem< GridView, FluidSystem >::updateMiscnum_
protected

◆ updatePlmixnum_()

template<class GridView , class FluidSystem >
void Opm::FlowGenericProblem< GridView, FluidSystem >::updatePlmixnum_
protected

◆ updatePvtnum_()

template<class GridView , class FluidSystem >
void Opm::FlowGenericProblem< GridView, FluidSystem >::updatePvtnum_
protected

◆ updateSatnum_()

template<class GridView , class FluidSystem >
void Opm::FlowGenericProblem< GridView, FluidSystem >::updateSatnum_
protected

◆ ureaConcentration()

template<class GridView , class FluidSystem >
FlowGenericProblem< GridView, FluidSystem >::Scalar Opm::FlowGenericProblem< GridView, FluidSystem >::ureaConcentration ( unsigned  elemIdx) const

Returns the initial urea concentration for a given a cell index.

◆ vapparsActive()

template<class GridView , class FluidSystem >
bool Opm::FlowGenericProblem< GridView, FluidSystem >::vapparsActive ( int  episodeIdx) const

Member Data Documentation

◆ briefDescription_

template<class GridView , class FluidSystem >
std::string Opm::FlowGenericProblem< GridView, FluidSystem >::briefDescription_
inlinestaticprotected

◆ eclState_

template<class GridView , class FluidSystem >
const EclipseState& Opm::FlowGenericProblem< GridView, FluidSystem >::eclState_
protected

◆ enableTuning_

template<class GridView , class FluidSystem >
bool Opm::FlowGenericProblem< GridView, FluidSystem >::enableTuning_
protected

◆ gridView_

template<class GridView , class FluidSystem >
const GridView& Opm::FlowGenericProblem< GridView, FluidSystem >::gridView_
protected

◆ imbnumx_

template<class GridView , class FluidSystem >
std::vector<unsigned short> Opm::FlowGenericProblem< GridView, FluidSystem >::imbnumx_
protected

◆ imbnumy_

template<class GridView , class FluidSystem >
std::vector<unsigned short> Opm::FlowGenericProblem< GridView, FluidSystem >::imbnumy_
protected

◆ imbnumz_

template<class GridView , class FluidSystem >
std::vector<unsigned short> Opm::FlowGenericProblem< GridView, FluidSystem >::imbnumz_
protected

◆ initialTimeStepSize_

template<class GridView , class FluidSystem >
Scalar Opm::FlowGenericProblem< GridView, FluidSystem >::initialTimeStepSize_
protected

◆ krnumx_

template<class GridView , class FluidSystem >
std::vector<unsigned short> Opm::FlowGenericProblem< GridView, FluidSystem >::krnumx_
protected

◆ krnumy_

template<class GridView , class FluidSystem >
std::vector<unsigned short> Opm::FlowGenericProblem< GridView, FluidSystem >::krnumy_
protected

◆ krnumz_

template<class GridView , class FluidSystem >
std::vector<unsigned short> Opm::FlowGenericProblem< GridView, FluidSystem >::krnumz_
protected

◆ lookUpData_

template<class GridView , class FluidSystem >
const LookUpData Opm::FlowGenericProblem< GridView, FluidSystem >::lookUpData_
protected

◆ maxOilSaturation_

◆ maxTimeStepAfterWellEvent_

template<class GridView , class FluidSystem >
Scalar Opm::FlowGenericProblem< GridView, FluidSystem >::maxTimeStepAfterWellEvent_
protected

◆ maxWaterSaturation_

◆ micp_

◆ minRefPressure_

◆ miscnum_

template<class GridView , class FluidSystem >
std::vector<unsigned short> Opm::FlowGenericProblem< GridView, FluidSystem >::miscnum_
protected

◆ mixControls_

◆ numPressurePointsEquil_

template<class GridView , class FluidSystem >
int Opm::FlowGenericProblem< GridView, FluidSystem >::numPressurePointsEquil_
protected

◆ overburdenPressure_

◆ plmixnum_

template<class GridView , class FluidSystem >
std::vector<unsigned short> Opm::FlowGenericProblem< GridView, FluidSystem >::plmixnum_
protected

◆ polymer_

◆ pvtnum_

template<class GridView , class FluidSystem >
std::vector<int> Opm::FlowGenericProblem< GridView, FluidSystem >::pvtnum_
protected

◆ referencePorosity_

template<class GridView , class FluidSystem >
std::array<std::vector<Scalar>, 2> Opm::FlowGenericProblem< GridView, FluidSystem >::referencePorosity_
protected

◆ rockCompPoroMult_

template<class GridView , class FluidSystem >
std::vector<TabulatedFunction> Opm::FlowGenericProblem< GridView, FluidSystem >::rockCompPoroMult_
protected

◆ rockCompPoroMultWc_

template<class GridView , class FluidSystem >
std::vector<TabulatedTwoDFunction> Opm::FlowGenericProblem< GridView, FluidSystem >::rockCompPoroMultWc_
protected

◆ rockCompTransMult_

template<class GridView , class FluidSystem >
std::vector<TabulatedFunction> Opm::FlowGenericProblem< GridView, FluidSystem >::rockCompTransMult_
protected

◆ rockCompTransMultVal_

template<class GridView , class FluidSystem >
std::vector<Scalar> Opm::FlowGenericProblem< GridView, FluidSystem >::rockCompTransMultVal_
protected

◆ rockCompTransMultWc_

template<class GridView , class FluidSystem >
std::vector<TabulatedTwoDFunction> Opm::FlowGenericProblem< GridView, FluidSystem >::rockCompTransMultWc_
protected

◆ rockParams_

template<class GridView , class FluidSystem >
std::vector<RockParams> Opm::FlowGenericProblem< GridView, FluidSystem >::rockParams_
protected

◆ rockTableIdx_

template<class GridView , class FluidSystem >
std::vector<unsigned short> Opm::FlowGenericProblem< GridView, FluidSystem >::rockTableIdx_
protected

◆ satnum_

template<class GridView , class FluidSystem >
std::vector<unsigned short> Opm::FlowGenericProblem< GridView, FluidSystem >::satnum_
protected

◆ schedule_

template<class GridView , class FluidSystem >
const Schedule& Opm::FlowGenericProblem< GridView, FluidSystem >::schedule_
protected

◆ solventRsw_

◆ solventSaturation_


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