reservoir_ncp_vcfv: change the epsilon base value for the finite difference method to 1e-11

this *might* fix the failed test on the jenkins server.
This commit is contained in:
Andreas Lauser
2016-12-16 21:17:52 +01:00
parent a2ef88989d
commit aa194cddbb

View File

@@ -43,6 +43,11 @@ SET_TAG_PROP(ReservoirNcpVcfvProblem, SpatialDiscretizationSplice, VcfvDiscretiz
// enable the storage cache for this problem so that the storage cache receives wider
// testing
SET_BOOL_PROP(ReservoirNcpVcfvProblem, EnableStorageCache, true);
// reduce the base epsilon for the finite difference method to 10^-11. for some reason
// the simulator converges better with this. (TODO: use automatic differentiation?)
SET_SCALAR_PROP(ReservoirNcpVcfvProblem, BaseEpsilon, 1e-11);
}}
int main(int argc, char **argv)