32#ifndef EWOMS_BLACK_OIL_EXTBO_MODULE_HH
33#define EWOMS_BLACK_OIL_EXTBO_MODULE_HH
35#include <dune/common/fvector.hh>
60template <class TypeTag, bool enableExtboV = getPropValue<TypeTag, Properties::EnableExtbo>()>
76 using Toolbox = MathToolbox<Evaluation>;
81 static constexpr unsigned zFractionIdx = Indices::zFractionIdx;
82 static constexpr unsigned contiZfracEqIdx = Indices::contiZfracEqIdx;
83 static constexpr unsigned enableExtbo = enableExtboV;
84 static constexpr unsigned numEq = getPropValue<TypeTag, Properties::NumEq>();
85 static constexpr unsigned numPhases = FluidSystem::numPhases;
86 static constexpr unsigned gasPhaseIdx = FluidSystem::gasPhaseIdx;
87 static constexpr unsigned oilPhaseIdx = FluidSystem::oilPhaseIdx;
88 static constexpr unsigned waterPhaseIdx = FluidSystem::waterPhaseIdx;
89 static constexpr bool blackoilConserveSurfaceVolume = getPropValue<TypeTag, Properties::BlackoilConserveSurfaceVolume>();
113 if constexpr (enableExtbo) {
114 return pvIdx == zFractionIdx;
133 return static_cast<Scalar
>(1.0);
138 if constexpr (enableExtbo) {
139 return eqIdx == contiZfracEqIdx;
146 static std::string
eqName([[maybe_unused]]
unsigned eqIdx)
150 return "conti^solvent";
153 static Scalar
eqWeight([[maybe_unused]]
unsigned eqIdx)
158 return static_cast<Scalar
>(1.0);
161 template <
class LhsEval>
162 static void addStorage(Dune::FieldVector<LhsEval, numEq>& storage,
163 const IntensiveQuantities& intQuants)
165 if constexpr (enableExtbo) {
166 if constexpr (blackoilConserveSurfaceVolume) {
167 storage[contiZfracEqIdx] =
168 Toolbox::template decay<LhsEval>(intQuants.porosity()) *
169 Toolbox::template decay<LhsEval>(intQuants.yVolume()) *
170 Toolbox::template decay<LhsEval>(intQuants.fluidState().saturation(gasPhaseIdx)) *
171 Toolbox::template decay<LhsEval>(intQuants.fluidState().invB(gasPhaseIdx));
172 if (FluidSystem::enableDissolvedGas()) {
173 storage[contiZfracEqIdx] +=
174 Toolbox::template decay<LhsEval>(intQuants.porosity()) *
175 Toolbox::template decay<LhsEval>(intQuants.xVolume()) *
176 Toolbox::template decay<LhsEval>(intQuants.fluidState().Rs()) *
177 Toolbox::template decay<LhsEval>(intQuants.fluidState().saturation(oilPhaseIdx)) *
178 Toolbox::template decay<LhsEval>(intQuants.fluidState().invB(oilPhaseIdx));
183 const Scalar regWghtFactor = 1.0e-6;
184 storage[contiZfracEqIdx] +=
185 regWghtFactor* (1.0 - Toolbox::template decay<LhsEval>(intQuants.zFraction())) +
186 regWghtFactor*Toolbox::template decay<LhsEval>(intQuants.porosity()) *
187 Toolbox::template decay<LhsEval>(intQuants.fluidState().saturation(gasPhaseIdx)) *
188 Toolbox::template decay<LhsEval>(intQuants.fluidState().invB(gasPhaseIdx));
189 storage[contiZfracEqIdx - 1] += regWghtFactor*Toolbox::template decay<LhsEval>(intQuants.zFraction());
192 throw std::runtime_error(
"Only component conservation in terms of surface volumes is implemented. ");
198 [[maybe_unused]]
const ElementContext& elemCtx,
199 [[maybe_unused]]
unsigned scvfIdx,
200 [[maybe_unused]]
unsigned timeIdx)
202 if constexpr (enableExtbo) {
203 const auto& extQuants = elemCtx.extensiveQuantities(scvfIdx, timeIdx);
205 if constexpr (blackoilConserveSurfaceVolume) {
206 const unsigned inIdx = extQuants.interiorIndex();
208 const unsigned upIdxGas =
static_cast<unsigned>(extQuants.upstreamIndex(gasPhaseIdx));
209 const auto& upGas = elemCtx.intensiveQuantities(upIdxGas, timeIdx);
210 const auto& fsGas = upGas.fluidState();
211 if (upIdxGas == inIdx) {
212 flux[contiZfracEqIdx] =
213 extQuants.volumeFlux(gasPhaseIdx) *
215 fsGas.invB(gasPhaseIdx);
218 flux[contiZfracEqIdx] =
219 extQuants.volumeFlux(gasPhaseIdx) *
220 decay<Scalar>(upGas.yVolume()) *
221 decay<Scalar>(fsGas.invB(gasPhaseIdx));
223 if (FluidSystem::enableDissolvedGas()) {
224 const unsigned upIdxOil =
static_cast<unsigned>(extQuants.upstreamIndex(oilPhaseIdx));
225 const auto& upOil = elemCtx.intensiveQuantities(upIdxOil, timeIdx);
226 const auto& fsOil = upOil.fluidState();
227 if (upIdxOil == inIdx) {
228 flux[contiZfracEqIdx] +=
229 extQuants.volumeFlux(oilPhaseIdx) *
232 fsOil.invB(oilPhaseIdx);
235 flux[contiZfracEqIdx] +=
236 extQuants.volumeFlux(oilPhaseIdx) *
237 decay<Scalar>(upOil.xVolume()) *
238 decay<Scalar>(fsOil.Rs()) *
239 decay<Scalar>(fsOil.invB(oilPhaseIdx));
244 throw std::runtime_error(
"Only component conservation in terms of surface volumes is implemented. ");
255 if constexpr (enableExtbo) {
256 priVars[zFractionIdx] = zFraction;
264 const PrimaryVariables& oldPv,
265 const EqVector& delta)
267 if constexpr (enableExtbo) {
269 newPv[zFractionIdx] = oldPv[zFractionIdx] - delta[zFractionIdx];
282 return static_cast<Scalar
>(0.0);
291 return std::abs(Toolbox::scalarValue(resid[contiZfracEqIdx]));
294 template <
class DofEntity>
295 static void serializeEntity(
const Model& model, std::ostream& outstream,
const DofEntity& dof)
297 if constexpr (enableExtbo) {
298 const unsigned dofIdx = model.dofMapper().index(dof);
300 const PrimaryVariables& priVars = model.solution(0)[dofIdx];
301 outstream << priVars[zFractionIdx];
305 template <
class DofEntity>
308 if constexpr (enableExtbo) {
309 const unsigned dofIdx = model.dofMapper().index(dof);
311 PrimaryVariables& priVars0 = model.solution(0)[dofIdx];
312 PrimaryVariables& priVars1 = model.solution(1)[dofIdx];
314 instream >> priVars0[zFractionIdx];
317 priVars1 = priVars0[zFractionIdx];
321 template <
typename Value>
322 static Value
xVolume(
unsigned pvtRegionIdx,
const Value& pressure,
const Value& z)
323 {
return params_.X_[pvtRegionIdx].eval(z, pressure,
true); }
325 template <
typename Value>
326 static Value
yVolume(
unsigned pvtRegionIdx,
const Value& pressure,
const Value& z)
327 {
return params_.Y_[pvtRegionIdx].eval(z, pressure,
true); }
329 template <
typename Value>
330 static Value
pbubRs(
unsigned pvtRegionIdx,
const Value& z,
const Value&
rs)
331 {
return params_.PBUB_RS_[pvtRegionIdx].eval(z,
rs,
true); }
333 template <
typename Value>
334 static Value
pbubRv(
unsigned pvtRegionIdx,
const Value& z,
const Value&
rv)
335 {
return params_.PBUB_RV_[pvtRegionIdx].eval(z,
rv,
true); }
337 template <
typename Value>
338 static Value
oilViscosity(
unsigned pvtRegionIdx,
const Value& pressure,
const Value& z)
339 {
return params_.VISCO_[pvtRegionIdx].eval(z, pressure,
true); }
341 template <
typename Value>
342 static Value
gasViscosity(
unsigned pvtRegionIdx,
const Value& pressure,
const Value& z)
343 {
return params_.VISCG_[pvtRegionIdx].eval(z, pressure,
true); }
345 template <
typename Value>
346 static Value
bo(
unsigned pvtRegionIdx,
const Value& pressure,
const Value& z)
347 {
return params_.BO_[pvtRegionIdx].eval(z, pressure,
true); }
349 template <
typename Value>
350 static Value
bg(
unsigned pvtRegionIdx,
const Value& pressure,
const Value& z)
351 {
return params_.BG_[pvtRegionIdx].eval(z, pressure,
true); }
353 template <
typename Value>
354 static Value
rs(
unsigned pvtRegionIdx,
const Value& pressure,
const Value& z)
355 {
return params_.RS_[pvtRegionIdx].eval(z, pressure,
true); }
357 template <
typename Value>
358 static Value
rv(
unsigned pvtRegionIdx,
const Value& pressure,
const Value& z)
359 {
return params_.RV_[pvtRegionIdx].eval(z, pressure,
true); }
362 {
return params_.zReferenceDensity_[regionIdx]; }
364 static Scalar
zLim(
unsigned regionIdx)
365 {
return params_.zLim_[regionIdx]; }
367 template <
typename Value>
368 static Value
oilCmp(
unsigned pvtRegionIdx,
const Value& z)
369 {
return params_.oilCmp_[pvtRegionIdx].eval(z,
true); }
371 template <
typename Value>
372 static Value
gasCmp(
unsigned pvtRegionIdx,
const Value& z)
373 {
return params_.gasCmp_[pvtRegionIdx].eval(z,
true); }
379template <
class TypeTag,
bool enableExtboV>
380BlackOilExtboParams<typename BlackOilExtboModule<TypeTag, enableExtboV>::Scalar>
381BlackOilExtboModule<TypeTag, enableExtboV>::params_;
383template <
class TypeTag,
bool enableExtboV>
393template <
class TypeTag>
408 enum { numPhases = getPropValue<TypeTag, Properties::NumPhases>() };
409 static constexpr int zFractionIdx = Indices::zFractionIdx;
410 static constexpr int oilPhaseIdx = FluidSystem::oilPhaseIdx;
411 static constexpr int gasPhaseIdx = FluidSystem::gasPhaseIdx;
412 static constexpr int waterPhaseIdx = FluidSystem::waterPhaseIdx;
413 static constexpr double cutOff = 1e-12;
425 const PrimaryVariables& priVars = elemCtx.primaryVars(dofIdx, timeIdx);
426 const unsigned pvtRegionIdx = priVars.pvtRegionIndex();
427 const auto& fs = asImp_().fluidState_;
429 zFraction_ = priVars.makeEvaluation(zFractionIdx, timeIdx);
431 oilViscosity_ = ExtboModule::oilViscosity(pvtRegionIdx, fs.pressure(oilPhaseIdx), zFraction_);
432 gasViscosity_ = ExtboModule::gasViscosity(pvtRegionIdx, fs.pressure(gasPhaseIdx), zFraction_);
434 bo_ = ExtboModule::bo(pvtRegionIdx, fs.pressure(oilPhaseIdx), zFraction_);
435 bg_ = ExtboModule::bg(pvtRegionIdx, fs.pressure(gasPhaseIdx), zFraction_);
437 bz_ = ExtboModule::bg(pvtRegionIdx, fs.pressure(oilPhaseIdx), Evaluation{0.99});
439 if (FluidSystem::enableDissolvedGas()) {
440 rs_ = ExtboModule::rs(pvtRegionIdx, fs.pressure(oilPhaseIdx), zFraction_);
446 if (FluidSystem::enableVaporizedOil()) {
447 rv_ = ExtboModule::rv(pvtRegionIdx, fs.pressure(gasPhaseIdx), zFraction_);
453 xVolume_ = ExtboModule::xVolume(pvtRegionIdx, fs.pressure(oilPhaseIdx), zFraction_);
454 yVolume_ = ExtboModule::yVolume(pvtRegionIdx, fs.pressure(oilPhaseIdx), zFraction_);
456 Evaluation pbub = fs.pressure(oilPhaseIdx);
458 if (priVars.primaryVarsMeaningWater() == PrimaryVariables::WaterMeaning::Sw) {
459 static const Scalar thresholdWaterFilledCell = 1.0 - 1e-6;
460 Scalar sw = priVars.makeEvaluation(Indices::waterSwitchIdx, timeIdx).value();
461 if (sw >= thresholdWaterFilledCell) {
466 if (priVars.primaryVarsMeaningGas() == PrimaryVariables::GasMeaning::Rs) {
467 rs_ = priVars.makeEvaluation(Indices::compositionSwitchIdx, timeIdx);
468 const Evaluation zLim = ExtboModule::zLim(pvtRegionIdx);
469 if (zFraction_ > zLim) {
470 pbub = ExtboModule::pbubRs(pvtRegionIdx, zLim, rs_);
472 pbub = ExtboModule::pbubRs(pvtRegionIdx, zFraction_, rs_);
474 bo_ = ExtboModule::bo(pvtRegionIdx, pbub, zFraction_) +
475 ExtboModule::oilCmp(pvtRegionIdx, zFraction_) * (fs.pressure(oilPhaseIdx) - pbub);
477 xVolume_ = ExtboModule::xVolume(pvtRegionIdx, pbub, zFraction_);
480 if (priVars.primaryVarsMeaningGas() == PrimaryVariables::GasMeaning::Rv) {
481 rv_ = priVars.makeEvaluation(Indices::compositionSwitchIdx, timeIdx);
482 const Evaluation rvsat = ExtboModule::rv(pvtRegionIdx, pbub, zFraction_);
483 bg_ = ExtboModule::bg(pvtRegionIdx, pbub, zFraction_) +
484 ExtboModule::gasCmp(pvtRegionIdx, zFraction_) * (rv_ - rvsat);
486 yVolume_ = ExtboModule::yVolume(pvtRegionIdx, pbub, zFraction_);
497 const auto& iq = asImp_();
498 auto& fs = asImp_().fluidState_;
500 const unsigned pvtRegionIdx = iq.pvtRegionIndex();
501 zRefDensity_ = ExtboModule::referenceDensity(pvtRegionIdx);
503 fs.setInvB(oilPhaseIdx, 1.0 / bo_);
504 fs.setInvB(gasPhaseIdx, 1.0 / bg_);
506 fs.setDensity(oilPhaseIdx,
507 fs.invB(oilPhaseIdx) *
508 (FluidSystem::referenceDensity(oilPhaseIdx, pvtRegionIdx) +
509 (1.0 - xVolume_) * fs.Rs() * FluidSystem::referenceDensity(gasPhaseIdx, pvtRegionIdx) +
510 xVolume_ * fs.Rs() * zRefDensity_));
511 fs.setDensity(gasPhaseIdx,
512 fs.invB(gasPhaseIdx) *
513 (FluidSystem::referenceDensity(gasPhaseIdx, pvtRegionIdx) *
514 (1.0 - yVolume_) + yVolume_* zRefDensity_ +
515 FluidSystem::referenceDensity(oilPhaseIdx, pvtRegionIdx) * fs.Rv()));
519 {
return zFraction_; }
528 {
return oilViscosity_; }
531 {
return gasViscosity_; }
533 const Evaluation&
bo()
const
536 const Evaluation&
bg()
const
539 const Evaluation&
rs()
const
542 const Evaluation&
rv()
const
546 {
return 1.0 / bz_; }
549 {
return zRefDensity_; }
553 {
return *
static_cast<Implementation*
>(
this); }
577template <
class TypeTag>
594 {
throw std::runtime_error(
"xVolume() called but extbo is disabled"); }
597 {
throw std::runtime_error(
"yVolume() called but extbo is disabled"); }
600 {
throw std::runtime_error(
"oilViscosity() called but extbo is disabled"); }
603 {
throw std::runtime_error(
"gasViscosity() called but extbo is disabled"); }
605 const Evaluation&
rs()
const
606 {
throw std::runtime_error(
"rs() called but extbo is disabled"); }
608 const Evaluation&
rv()
const
609 {
throw std::runtime_error(
"rv() called but extbo is disabled"); }
612 {
throw std::runtime_error(
"zPureInvFormationVolumeFactor() called but extbo is disabled"); }
615 {
throw std::runtime_error(
"zFraction() called but extbo is disabled"); }
618 {
throw std::runtime_error(
"zInverseFormationVolumeFactor() called but extbo is disabled"); }
621 {
throw std::runtime_error(
"zRefDensity() called but extbo is disabled"); }
631template <class TypeTag, bool enableExtboV = getPropValue<TypeTag, Properties::EnableExtbo>()>
644 using Toolbox = MathToolbox<Evaluation>;
646 static constexpr unsigned gasPhaseIdx = FluidSystem::gasPhaseIdx;
647 static constexpr int dimWorld = GridView::dimensionworld;
649 using DimVector = Dune::FieldVector<Scalar, dimWorld>;
650 using DimEvalVector = Dune::FieldVector<Evaluation, dimWorld>;
652 Implementation& asImp_()
653 {
return *
static_cast<Implementation*
>(
this); }
656template <
class TypeTag>
Defines a type tags and some fundamental properties all models.
Contains the parameters required to extend the black-oil model by solvent component....
Declares the properties required by the black oil model.
Provides the solvent specific extensive quantities to the generic black-oil module's extensive quanti...
Definition: blackoilextbomodules.hh:633
const Evaluation & xVolume() const
Definition: blackoilextbomodules.hh:593
const Evaluation & rs() const
Definition: blackoilextbomodules.hh:605
const Evaluation & zInverseFormationVolumeFactor() const
Definition: blackoilextbomodules.hh:617
const Evaluation & zPureInvFormationVolumeFactor() const
Definition: blackoilextbomodules.hh:611
const Evaluation & oilViscosity() const
Definition: blackoilextbomodules.hh:599
void zFractionUpdate_(const ElementContext &, unsigned, unsigned)
Definition: blackoilextbomodules.hh:588
const Evaluation & zFraction() const
Definition: blackoilextbomodules.hh:614
void zPvtUpdate_()
Definition: blackoilextbomodules.hh:585
const Evaluation & rv() const
Definition: blackoilextbomodules.hh:608
const Evaluation & gasViscosity() const
Definition: blackoilextbomodules.hh:602
const Evaluation & yVolume() const
Definition: blackoilextbomodules.hh:596
Scalar zRefDensity() const
Definition: blackoilextbomodules.hh:620
void zFractionUpdate_(const ElementContext &elemCtx, unsigned dofIdx, unsigned timeIdx)
Compute extended pvt properties from table lookups.
Definition: blackoilextbomodules.hh:421
Evaluation xVolume_
Definition: blackoilextbomodules.hh:561
Evaluation bo_
Definition: blackoilextbomodules.hh:567
void zPvtUpdate_()
Re-compute face densities to account for zFraction dependency.
Definition: blackoilextbomodules.hh:495
const Evaluation & oilViscosity() const
Definition: blackoilextbomodules.hh:527
const Evaluation & xVolume() const
Definition: blackoilextbomodules.hh:521
const Evaluation & zFraction() const
Definition: blackoilextbomodules.hh:518
Scalar zRefDensity_
Definition: blackoilextbomodules.hh:574
const Evaluation & gasViscosity() const
Definition: blackoilextbomodules.hh:530
const Evaluation & yVolume() const
Definition: blackoilextbomodules.hh:524
Evaluation oilViscosity_
Definition: blackoilextbomodules.hh:565
const Evaluation & rv() const
Definition: blackoilextbomodules.hh:542
Evaluation bg_
Definition: blackoilextbomodules.hh:568
Evaluation bz_
Definition: blackoilextbomodules.hh:573
const Evaluation & bg() const
Definition: blackoilextbomodules.hh:536
Evaluation yVolume_
Definition: blackoilextbomodules.hh:562
Evaluation gasViscosity_
Definition: blackoilextbomodules.hh:566
Scalar zRefDensity() const
Definition: blackoilextbomodules.hh:548
const Evaluation & rs() const
Definition: blackoilextbomodules.hh:539
const Evaluation zPureInvFormationVolumeFactor() const
Definition: blackoilextbomodules.hh:545
Evaluation rs_
Definition: blackoilextbomodules.hh:569
const Evaluation & bo() const
Definition: blackoilextbomodules.hh:533
Implementation & asImp_()
Definition: blackoilextbomodules.hh:552
Evaluation rv_
Definition: blackoilextbomodules.hh:570
Evaluation zFraction_
Definition: blackoilextbomodules.hh:558
Provides the volumetric quantities required for the equations needed by the solvents extension of the...
Definition: blackoilextbomodules.hh:384
Contains the high level supplements required to extend the black oil model.
Definition: blackoilextbomodules.hh:62
static void addStorage(Dune::FieldVector< LhsEval, numEq > &storage, const IntensiveQuantities &intQuants)
Definition: blackoilextbomodules.hh:162
static bool primaryVarApplies(unsigned pvIdx)
Definition: blackoilextbomodules.hh:111
static Scalar zLim(unsigned regionIdx)
Definition: blackoilextbomodules.hh:364
static Scalar computeResidualError(const EqVector &resid)
Return how much a residual is considered an error.
Definition: blackoilextbomodules.hh:288
static Value yVolume(unsigned pvtRegionIdx, const Value &pressure, const Value &z)
Definition: blackoilextbomodules.hh:326
static void updatePrimaryVars(PrimaryVariables &newPv, const PrimaryVariables &oldPv, const EqVector &delta)
Do a Newton-Raphson update the primary variables of the solvents.
Definition: blackoilextbomodules.hh:263
static Value gasViscosity(unsigned pvtRegionIdx, const Value &pressure, const Value &z)
Definition: blackoilextbomodules.hh:342
static std::string eqName(unsigned eqIdx)
Definition: blackoilextbomodules.hh:146
static bool eqApplies(unsigned eqIdx)
Definition: blackoilextbomodules.hh:136
static Value pbubRv(unsigned pvtRegionIdx, const Value &z, const Value &rv)
Definition: blackoilextbomodules.hh:334
static Scalar primaryVarWeight(unsigned pvIdx)
Definition: blackoilextbomodules.hh:128
static Value rs(unsigned pvtRegionIdx, const Value &pressure, const Value &z)
Definition: blackoilextbomodules.hh:354
static void registerOutputModules(Model &, Simulator &)
Register all solvent specific VTK and ECL output modules.
Definition: blackoilextbomodules.hh:107
static Scalar computeUpdateError(const PrimaryVariables &, const EqVector &)
Return how much a Newton-Raphson update is considered an error.
Definition: blackoilextbomodules.hh:276
static Value xVolume(unsigned pvtRegionIdx, const Value &pressure, const Value &z)
Definition: blackoilextbomodules.hh:322
static void serializeEntity(const Model &model, std::ostream &outstream, const DofEntity &dof)
Definition: blackoilextbomodules.hh:295
static void computeFlux(RateVector &flux, const ElementContext &elemCtx, unsigned scvfIdx, unsigned timeIdx)
Definition: blackoilextbomodules.hh:197
static void registerParameters()
Register all run-time parameters for the black-oil solvent module.
Definition: blackoilextbomodules.hh:101
static void deserializeEntity(Model &model, std::istream &instream, const DofEntity &dof)
Definition: blackoilextbomodules.hh:306
static std::string primaryVarName(unsigned pvIdx)
Definition: blackoilextbomodules.hh:121
static Value rv(unsigned pvtRegionIdx, const Value &pressure, const Value &z)
Definition: blackoilextbomodules.hh:358
static void setParams(BlackOilExtboParams< Scalar > &¶ms)
Set parameters.
Definition: blackoilextbomodules.hh:93
static Value pbubRs(unsigned pvtRegionIdx, const Value &z, const Value &rs)
Definition: blackoilextbomodules.hh:330
static Value oilCmp(unsigned pvtRegionIdx, const Value &z)
Definition: blackoilextbomodules.hh:368
static Scalar referenceDensity(unsigned regionIdx)
Definition: blackoilextbomodules.hh:361
static Value bg(unsigned pvtRegionIdx, const Value &pressure, const Value &z)
Definition: blackoilextbomodules.hh:350
static Value oilViscosity(unsigned pvtRegionIdx, const Value &pressure, const Value &z)
Definition: blackoilextbomodules.hh:338
static void assignPrimaryVars(PrimaryVariables &priVars, Scalar zFraction)
Assign the solvent specific primary variables to a PrimaryVariables object.
Definition: blackoilextbomodules.hh:252
static Scalar eqWeight(unsigned eqIdx)
Definition: blackoilextbomodules.hh:153
static Value bo(unsigned pvtRegionIdx, const Value &pressure, const Value &z)
Definition: blackoilextbomodules.hh:346
static Value gasCmp(unsigned pvtRegionIdx, const Value &z)
Definition: blackoilextbomodules.hh:372
Declare the properties used by the infrastructure code of the finite volume discretizations.
Definition: blackoilboundaryratevector.hh:39
typename Properties::Detail::GetPropImpl< TypeTag, Property >::type::type GetPropType
get the type alias defined in the property (equivalent to old macro GET_PROP_TYPE(....
Definition: propertysystem.hh:233
Struct holding the parameters for the BlackoilExtboModule class.
Definition: blackoilextboparams.hpp:49
UniformXTabulated2DFunction< Scalar > Tabulated2DFunction
Definition: blackoilextboparams.hpp:51
Tabulated1DFunction< Scalar > TabulatedFunction
Definition: blackoilextboparams.hpp:50