Skip to content
Snippets Groups Projects
Commit c96a096f authored by Bernd Flemisch's avatar Bernd Flemisch
Browse files

decoupled diffusion 3d test: account for the fact that the permeability is constant.

git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@11792 2fb0f335-1f38-0410-981e-8018bf24f1b0
parent 2bb40a7e
No related branches found
No related tags found
No related merge requests found
......@@ -80,9 +80,6 @@ public:
const FieldMatrix& intrinsicPermeabilityAtPos (const GlobalPosition& globalPos) const
{
permeability_[0][0] = permeability_[1][1] = permeability_[2][2] = 1.0;
permeability_[0][1] = permeability_[1][0] = permeability_[1][2] = permeability_[2][1] = 0.5;
return permeability_;
}
......@@ -108,11 +105,15 @@ public:
// parameters for the linear entry pressure function
materialLawParams_.setEntryPc(0);
materialLawParams_.setMaxPc(0);
// permeability values
permeability_[0][0] = permeability_[1][1] = permeability_[2][2] = 1.0;
permeability_[0][1] = permeability_[1][0] = permeability_[1][2] = permeability_[2][1] = 0.5;
}
private:
MaterialLawParams materialLawParams_;
mutable FieldMatrix permeability_;
FieldMatrix permeability_;
};
} // end namespace
......
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