Skip to content
Snippets Groups Projects
Commit be63fd66 authored by Timo Koch's avatar Timo Koch
Browse files

[3p] Remove permeability from volume variables

parent 234341ed
No related branches found
No related tags found
1 merge request!617[WIP] Next
......@@ -155,10 +155,6 @@ public:
porosity_ = problem.spatialParams().porosity(scv);
Valgrind::CheckDefined(porosity_);
// permeability
permeability_ = problem.spatialParams().intrinsicPermeability(scv);
Valgrind::CheckDefined(permeability_);
// energy related quantities not contained in the fluid state
typename FluidSystem::ParameterCache paramCache;
asImp_().updateEnergy_(priVars, problem, element, scv);
......@@ -235,12 +231,6 @@ public:
Scalar porosity() const
{ return porosity_; }
/*!
* \brief Returns the permeability within the control volume.
*/
Scalar permeability() const
{ return permeability_; }
protected:
static Scalar temperature_(const PrimaryVariables &priVars,
......@@ -271,7 +261,6 @@ protected:
Scalar sw_, sg_, sn_, pg_, pw_, pn_;
Scalar porosity_; //!< Effective porosity within the control volume
Scalar permeability_; //!< Effective porosity within the control volume
Scalar mobility_[numPhases]; //!< Effective mobility within the control volume
Scalar bulkDensTimesAdsorpCoeff_; //!< the basis for calculating adsorbed NAPL
FluidState fluidState_;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment