Skip to content
Snippets Groups Projects
Commit 73ee6550 authored by Markus Wolff's avatar Markus Wolff
Browse files

case of zero entry pressure added in regularization of dSw/dpc function


git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@5114 2fb0f335-1f38-0410-981e-8018bf24f1b0
parent a5d6ae6e
No related branches found
No related tags found
No related merge requests found
......@@ -203,6 +203,12 @@ public:
{
const Scalar Sthres = params.thresholdSw();
//instead of return value = inf, return a very large number
if (params.pe() == 0.0)
{
return 1e100;
}
// calculate the saturation which corresponds to the
// saturation in the non-regularized version of the
// Brooks-Corey law
......
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