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

corrected sources and neumann boundaries

   - added division by phase densities



git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@6966 2fb0f335-1f38-0410-981e-8018bf24f1b0
parent 9d12e7a4
No related branches found
No related tags found
No related merge requests found
......@@ -332,9 +332,11 @@ public:
Pi.umv(Wc, F);
// std::cout << "Pi = \dim" << Pi << "c = " << c << ", F = " << F << std::endl;
Scalar densityW = problem_.variables().densityWetting(globalIdx);
Scalar densityNW = problem_.variables().densityNonwetting(globalIdx);
PrimaryVariables sourceVec(0.0);
problem_.source(sourceVec, element);
qmean = volume*(sourceVec[wetting] + sourceVec[nonwetting]);
qmean = volume*(sourceVec[wetting]/densityW + sourceVec[nonwetting]/densityNW);
}
private:
......@@ -402,8 +404,12 @@ private:
if (bcType.isNeumann(pressEqIdx))
{
int globalIdx = problem_.variables().index(element);
Scalar densityW = problem_.variables().densityWetting(globalIdx);
Scalar densityNW = problem_.variables().densityNonwetting(globalIdx);
problem_.neumann(boundValues, *it);
Scalar J = (boundValues[wetting]+boundValues[nonwetting]);
Scalar J = (boundValues[wetting]/densityW + boundValues[nonwetting]/densityNW);
this->b[faceIndex] -= J*it->geometry().volume();
}
else if (bcType.isDirichlet(pressEqIdx))
......
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