Merge pull request #771 from akva2/co2_table_encapsulate

adjust to upstream CO2Table encapsulation
This commit is contained in:
Bård Skaflestad
2022-12-22 16:31:11 +01:00
committed by GitHub
+1 -5
View File
@@ -61,9 +61,6 @@ namespace Opm {
template <class TypeTag>
class Co2InjectionProblem;
namespace Co2Injection {
#include <opm/material/components/co2tables.inc>
}
//! \endcond
}
@@ -109,10 +106,9 @@ struct FluidSystem<TypeTag, TTag::Co2InjectionBaseProblem>
{
private:
using Scalar = GetPropType<TypeTag, Properties::Scalar>;
using CO2Tables = Opm::Co2Injection::CO2Tables;
public:
using type = Opm::BrineCO2FluidSystem<Scalar, CO2Tables>;
using type = Opm::BrineCO2FluidSystem<Scalar>;
//using type = Opm::H2ON2FluidSystem<Scalar, /*useComplexRelations=*/false>;
};