Skip to content
Snippets Groups Projects
Commit b5a7383b authored by Andreas Lauser's avatar Andreas Lauser
Browse files

make the Mp-Nc model compile

git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@7579 2fb0f335-1f38-0410-981e-8018bf24f1b0
parent 6a41a947
No related branches found
No related tags found
No related merge requests found
...@@ -200,8 +200,8 @@ public: ...@@ -200,8 +200,8 @@ public:
// compute the vertex and element colors for partial // compute the vertex and element colors for partial
// reassembly // reassembly
if (this->enablePartialReassemble_) { if (this->enablePartialReassemble_) {
const Scalar minReasmTol = 1e-2*tolerance_; const Scalar minReasmTol = 1e-2*this->tolerance_;
const Scalar maxReasmTol = 1e1*tolerance_; const Scalar maxReasmTol = 1e1*this->tolerance_;
Scalar reassembleTol = std::max(minReasmTol, std::min(maxReasmTol, this->error_/1e4)); Scalar reassembleTol = std::max(minReasmTol, std::min(maxReasmTol, this->error_/1e4));
this->model_().jacobianAssembler().updateDiscrepancy(uLastIter, deltaU); this->model_().jacobianAssembler().updateDiscrepancy(uLastIter, deltaU);
......
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