co2injection problem: increase tolerance for conservativeness check

this fixes a few test failures in debug mode with quadruple precision
math enabled.
This commit is contained in:
Andreas Lauser 2016-11-02 15:45:19 +01:00
parent b31e0c3d2f
commit 00a907962b

View File

@ -354,7 +354,7 @@ public:
void endTimeStep() void endTimeStep()
{ {
#ifndef NDEBUG #ifndef NDEBUG
Scalar tol = this->model().newtonMethod().tolerance()*5e2; Scalar tol = this->model().newtonMethod().tolerance()*1e5;
this->model().checkConservativeness(tol); this->model().checkConservativeness(tol);
// Calculate storage terms // Calculate storage terms