BlackoilModelParameters: introduce translation unit

This commit is contained in:
Arne Morten Kvarving
2024-08-14 14:46:53 +02:00
parent a0ec0fca72
commit b902f83fa6
13 changed files with 248 additions and 216 deletions

View File

@@ -124,6 +124,7 @@ struct LinearSolverBackend<TypeTag, TTag::FlowExpTypeTag> {
} // namespace Opm::Properties
namespace Opm {
template <class TypeTag>
class FlowExpProblem : public FlowProblem<TypeTag> //, public FvBaseProblem<TypeTag>
{
@@ -150,7 +151,7 @@ public:
{
ParentType::registerParameters();
BlackoilModelParameters<TypeTag>::registerParameters();
BlackoilModelParameters<double>::registerParameters();
Parameters::Register<Parameters::EnableTerminalOutput>("Do *NOT* use!");
Parameters::Hide<Parameters::DbhpMaxRel<Scalar>>();
Parameters::Hide<Parameters::DwellFractionMax<Scalar>>();
@@ -204,6 +205,7 @@ public:
// inherit the constructors
using ParentType::FlowProblem;
};
}
#endif