Merge pull request #3042 from totto82/changeDefaultMinTimeStepShutting

change default MinTimeStepBeforeShuttingProblematicWellsInDays to 0.01
This commit is contained in:
Atgeirr Flø Rasmussen 2021-04-07 08:04:05 +02:00 committed by GitHub
commit c6431c2f04
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -208,7 +208,7 @@ struct TimeStepControlFileName<TypeTag, TTag::FlowTimeSteppingParameters> {
template<class TypeTag>
struct MinTimeStepBeforeShuttingProblematicWellsInDays<TypeTag, TTag::FlowTimeSteppingParameters> {
using type = GetPropType<TypeTag, Scalar>;
static constexpr type value = 0.001;
static constexpr type value = 0.01;
};
template<class TypeTag>