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

[bugfix,2pnc] Fix the 2pnc model/test. A volVars update got deleted by...

[bugfix,2pnc] Fix the 2pnc model/test. A volVars update got deleted by accident causing wrong vtu output.

git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@15382 2fb0f335-1f38-0410-981e-8018bf24f1b0
parent 3a2d7f8d
No related branches found
No related tags found
No related merge requests found
......@@ -235,9 +235,9 @@ public:
{
if(eIt->partitionType() == Dune::InteriorEntity)
{
this->localResidual().evalPhaseStorage(*eIt, phaseIdx);
this->localResidual().evalPhaseStorage(*eIt, phaseIdx);
for (unsigned int i = 0; i < this->localResidual().storageTerm().size(); ++i)
for (unsigned int i = 0; i < this->localResidual().storageTerm().size(); ++i)
storage += this->localResidual().storageTerm()[i];
}
}
......@@ -308,7 +308,7 @@ public:
{
typedef Dune::BlockVector<Dune::FieldVector<Scalar, 1> > ScalarField;
typedef Dune::BlockVector<Dune::FieldVector<double, dim> > VectorField;
typedef Dune::BlockVector<Dune::FieldVector<Scalar, dim> > VectorField;
// get the number of degrees of freedom
unsigned numDofs = this->numDofs();
......@@ -385,6 +385,12 @@ public:
#else
int dofIdxGlobal = this->dofMapper().map(*eIt, scvIdx, dofCodim);
#endif
volVars.update(sol[dofIdxGlobal],
this->problem_(),
*eIt,
fvGeometry,
scvIdx,
false);
GlobalPosition globalPos = fvGeometry.subContVol[scvIdx].global;
(*Sg)[dofIdxGlobal] = elemVolVars[scvIdx].saturation(nPhaseIdx);
......
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