mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-01-06 14:33:02 -06:00
changed default fvbasediscretization to not have dunefem even if dunefem is installed
This commit is contained in:
parent
a6aa80668a
commit
6893a30fd4
@ -170,6 +170,23 @@ struct LocalLinearizerSplice<TypeTag, TTag::EclBaseProblem> {
|
||||
using type = TTag::AutoDiffLocalLinearizer;
|
||||
};
|
||||
|
||||
template<class TypeTag>
|
||||
struct BaseDiscretizationType<TypeTag, TTag::EclBaseProblem> {
|
||||
using type = FvBaseDiscretizationNoAdapt<TypeTag>;
|
||||
};
|
||||
|
||||
template<class TypeTag>
|
||||
struct DiscreteFunction<TypeTag, TTag::EclBaseProblem> {
|
||||
using BaseDiscretization = FvBaseDiscretization<TypeTag>;
|
||||
using type = typename BaseDiscretization::BlockVectorWrapper;
|
||||
};
|
||||
|
||||
template<class TypeTag>
|
||||
struct GridView<TypeTag, TTag::EclBaseProblem>
|
||||
{
|
||||
using type = typename GetPropType<TypeTag, Properties::Grid>::LeafGridView;
|
||||
};
|
||||
|
||||
// Set the material law for fluid fluxes
|
||||
template<class TypeTag>
|
||||
struct MaterialLaw<TypeTag, TTag::EclBaseProblem>
|
||||
|
Loading…
Reference in New Issue
Block a user