Base class for PorousFlow relative permeability materials. More...
#include <PorousFlowRelativePermeabilityBase.h>
Public Member Functions | |
PorousFlowRelativePermeabilityBase (const InputParameters ¶meters) | |
Protected Member Functions | |
virtual void | computeQpProperties () override |
virtual Real | effectiveSaturation (Real saturation) const |
Effective saturation of fluid phase. More... | |
virtual Real | relativePermeability (Real seff) const =0 |
Relative permeability equation (must be overriden in derived class) More... | |
virtual Real | dRelativePermeability (Real seff) const =0 |
Derivative of relative permeability with respect to effective saturation. More... | |
Protected Attributes | |
const Real | _scaling |
Relative permeability is multiplied by this quantity. More... | |
const MaterialProperty< std::vector< Real > > & | _saturation |
Saturation material property. More... | |
MaterialProperty< Real > & | _relative_permeability |
Relative permeability material property. More... | |
MaterialProperty< Real > & | _drelative_permeability_ds |
Derivative of relative permeability wrt phase saturation. More... | |
const Real | _s_res |
Residual saturation of specified phase. More... | |
const Real | _sum_s_res |
Sum of residual saturations over all phases. More... | |
const Real | _dseff_ds |
Derivative of effective saturation with respect to saturation. More... | |
const unsigned int | _phase_num |
Phase number of fluid. More... | |
const std::string | _phase |
Stringified fluid phase number. More... | |
Base class for PorousFlow relative permeability materials.
All materials that derive from this class must override relativePermeability() and dRelativePermeability()
Definition at line 24 of file PorousFlowRelativePermeabilityBase.h.
PorousFlowRelativePermeabilityBase::PorousFlowRelativePermeabilityBase | ( | const InputParameters & | parameters | ) |
Definition at line 34 of file PorousFlowRelativePermeabilityBase.C.
|
overrideprotectedvirtual |
Definition at line 59 of file PorousFlowRelativePermeabilityBase.C.
|
protectedpure virtual |
Derivative of relative permeability with respect to effective saturation.
seff | effective saturation |
Implemented in PorousFlowRelativePermeabilityVG, PorousFlowRelativePermeabilityBC, PorousFlowRelativePermeabilityBW, PorousFlowRelativePermeabilityCorey, PorousFlowRelativePermeabilityFLAC, and PorousFlowRelativePermeabilityConst.
Referenced by computeQpProperties().
|
protectedvirtual |
Effective saturation of fluid phase.
saturation | true saturation |
Definition at line 88 of file PorousFlowRelativePermeabilityBase.C.
Referenced by computeQpProperties().
|
protectedpure virtual |
Relative permeability equation (must be overriden in derived class)
seff | effective saturation |
Implemented in PorousFlowRelativePermeabilityVG, PorousFlowRelativePermeabilityBC, PorousFlowRelativePermeabilityBW, PorousFlowRelativePermeabilityCorey, PorousFlowRelativePermeabilityFLAC, and PorousFlowRelativePermeabilityConst.
Referenced by computeQpProperties().
|
protected |
Derivative of relative permeability wrt phase saturation.
Definition at line 63 of file PorousFlowRelativePermeabilityBase.h.
Referenced by computeQpProperties().
|
protected |
Derivative of effective saturation with respect to saturation.
Definition at line 72 of file PorousFlowRelativePermeabilityBase.h.
Referenced by computeQpProperties().
|
protectedinherited |
Stringified fluid phase number.
Definition at line 37 of file PorousFlowMaterialBase.h.
|
protectedinherited |
Phase number of fluid.
Definition at line 34 of file PorousFlowMaterialBase.h.
Referenced by computeQpProperties(), PorousFlowBrine::computeQpProperties(), PorousFlowSingleComponentFluid::computeQpProperties(), PorousFlowBrine::initQpStatefulProperties(), PorousFlowSingleComponentFluid::initQpStatefulProperties(), and PorousFlowMaterialBase::PorousFlowMaterialBase().
|
protected |
Relative permeability material property.
Definition at line 60 of file PorousFlowRelativePermeabilityBase.h.
Referenced by computeQpProperties().
|
protected |
Residual saturation of specified phase.
Definition at line 66 of file PorousFlowRelativePermeabilityBase.h.
Referenced by effectiveSaturation(), and PorousFlowRelativePermeabilityBase().
|
protected |
Saturation material property.
Definition at line 57 of file PorousFlowRelativePermeabilityBase.h.
Referenced by computeQpProperties().
|
protected |
Relative permeability is multiplied by this quantity.
Definition at line 54 of file PorousFlowRelativePermeabilityBase.h.
Referenced by computeQpProperties().
|
protected |
Sum of residual saturations over all phases.
Definition at line 69 of file PorousFlowRelativePermeabilityBase.h.
Referenced by effectiveSaturation(), and PorousFlowRelativePermeabilityBase().