added spesialisation for using simple property updating

This commit is contained in:
hnil
2022-08-09 11:09:48 +02:00
committed by Atgeirr Flø Rasmussen
parent 060877a08b
commit d53b6ad9fa
2 changed files with 34 additions and 2 deletions
+6
View File
@@ -20,6 +20,7 @@
#include <opm/simulators/flow/Main.hpp>
// modifications from standard
#include <opm/models/blackoil/blackoillocalresidualtpfa.hh>
#include <opm/models/blackoil/blackoilintensivequantitiessimple.hh>
#include <opm/models/discretization/common/fvbaselocalresidualtpfa.hh>
#include <opm/models/discretization/common/fvbaseadlocallinearizertpfa.hh>
#include <opm/models/discretization/common/smallelementcontext.hh>
@@ -76,6 +77,11 @@ namespace Opm {
struct FluxModule<TypeTag, TTag::EclFlowProblemTPFA> {
using type = EclTransFluxModuleTPFA<TypeTag>;
};
template<class TypeTag>
struct IntensiveQuantities<TypeTag, TTag::EclFlowProblemTPFA> {
using type = BlackOilIntensiveQuantitiesSimple<TypeTag>;
};
}
}
// namespace Opm {