changed: move the PvsVerbosity parameter to Opm::Parameters

This commit is contained in:
Arne Morten Kvarving
2024-07-01 14:13:14 +02:00
parent 88fc367633
commit c4ac2040c8
5 changed files with 76 additions and 47 deletions

View File

@@ -44,12 +44,16 @@ struct OutflowProblem
} // end namespace TTag
} // namespace Opm::Properties
namespace Opm::Parameters {
// Verbosity of the PVS model (0=silent, 1=medium, 2=chatty)
template<class TypeTag>
struct PvsVerbosity<TypeTag, TTag::OutflowProblem>
struct PvsVerbosity<TypeTag, Properties::TTag::OutflowProblem>
{ static constexpr int value = 1; };
} // namespace Opm::Properties
}
int main(int argc, char **argv)
{