Skip to content

Commit

Permalink
an attempt to reduce the running time of co2_ptflash_ecfv_validation
Browse files Browse the repository at this point in the history
  • Loading branch information
GitPaean committed Feb 28, 2024
1 parent a1de45d commit d58459a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/problems/co2ptflashproblemvalidation.hh
Original file line number Diff line number Diff line change
Expand Up @@ -166,14 +166,14 @@ struct EndTime<TypeTag, TTag::CO2PTBaseProblem> {
template <class TypeTag>
struct EpisodeLength<TypeTag, TTag::CO2PTBaseProblem> {
using type = GetPropType<TypeTag, Scalar>;
static constexpr type value = 21600.0;
static constexpr type value = 2*21600.0;
};

// convergence control
template <class TypeTag>
struct InitialTimeStepSize<TypeTag, TTag::CO2PTBaseProblem> {
using type = GetPropType<TypeTag, Scalar>;
static constexpr type value = 21600.0;
static constexpr type value = 2*21600.0;
};

template <class TypeTag>
Expand Down

0 comments on commit d58459a

Please sign in to comment.