From 6893a30fd41d0d9cc90dd5d178697eb058845bcf Mon Sep 17 00:00:00 2001 From: hnil Date: Fri, 4 Aug 2023 14:30:27 +0200 Subject: [PATCH] changed default fvbasediscretization to not have dunefem even if dunefem is installed --- ebos/eclproblem_properties.hh | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/ebos/eclproblem_properties.hh b/ebos/eclproblem_properties.hh index df6cfbde4..578f8a122 100644 --- a/ebos/eclproblem_properties.hh +++ b/ebos/eclproblem_properties.hh @@ -170,6 +170,23 @@ struct LocalLinearizerSplice { using type = TTag::AutoDiffLocalLinearizer; }; +template +struct BaseDiscretizationType { + using type = FvBaseDiscretizationNoAdapt; +}; + +template +struct DiscreteFunction { + using BaseDiscretization = FvBaseDiscretization; + using type = typename BaseDiscretization::BlockVectorWrapper; +}; + +template +struct GridView +{ + using type = typename GetPropType::LeafGridView; +}; + // Set the material law for fluid fluxes template struct MaterialLaw