mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-01-07 23:13:01 -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;
|
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
|
// Set the material law for fluid fluxes
|
||||||
template<class TypeTag>
|
template<class TypeTag>
|
||||||
struct MaterialLaw<TypeTag, TTag::EclBaseProblem>
|
struct MaterialLaw<TypeTag, TTag::EclBaseProblem>
|
||||||
|
Loading…
Reference in New Issue
Block a user