From 1be2bc1e014a2f552de0f7fd2c8bf5bf92ef9b53 Mon Sep 17 00:00:00 2001 From: Andreas Lauser Date: Thu, 18 Dec 2014 16:03:18 +0100 Subject: [PATCH] ebos: enable the cache for intensive quantities this seems to slightly speed things up at the linearization stage... --- applications/ebos/eclproblem.hh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/applications/ebos/eclproblem.hh b/applications/ebos/eclproblem.hh index 2f9fcd33b..f3769422b 100644 --- a/applications/ebos/eclproblem.hh +++ b/applications/ebos/eclproblem.hh @@ -150,7 +150,11 @@ SET_BOOL_PROP(EclBaseProblem, EnableEclOutput, true); // also enable the summary output. SET_BOOL_PROP(EclBaseProblem, EnableEclSummaryOutput, true); -// The default DGF file to load +// the cache for intensive quantities can be used for ECL problems and also yields a +// decent speedup... +SET_BOOL_PROP(EclBaseProblem, EnableIntensiveQuantityCache, true); + +// The default name of the data file to load SET_STRING_PROP(EclBaseProblem, GridFile, "data/ecl.DATA"); }} // namespace Properties, Opm