From 8272ec552884de60a9a3a6f43501070c0034dd8a Mon Sep 17 00:00:00 2001 From: Andreas Lauser Date: Tue, 27 Oct 2015 17:33:13 +0100 Subject: [PATCH] ebos: enable the new cache for the storage term by default on my machine, this accelerates the linearization by about 30% for SPE9 (6.4 instead of 8.7 seconds). --- applications/ebos/eclproblem.hh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/applications/ebos/eclproblem.hh b/applications/ebos/eclproblem.hh index 2c6bf00c8..df491df15 100644 --- a/applications/ebos/eclproblem.hh +++ b/applications/ebos/eclproblem.hh @@ -152,6 +152,9 @@ SET_BOOL_PROP(EclBaseProblem, EnableEclSummaryOutput, true); // decent speedup... SET_BOOL_PROP(EclBaseProblem, EnableIntensiveQuantityCache, true); +// the cache for the storage term can also be used and also yields a decent speedup +SET_BOOL_PROP(EclBaseProblem, EnableStorageCache, true); + // Use the "velocity module" which uses the Eclipse "NEWTRAN" transmissibilities SET_TYPE_PROP(EclBaseProblem, FluxModule, Ewoms::EclTransFluxModule);