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 35eb5f0
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 @@ -159,14 +159,14 @@ struct SimulationName<TypeTag, TTag::CO2PTBaseProblem> {
template <class TypeTag>
struct EndTime<TypeTag, TTag::CO2PTBaseProblem> {
using type = GetPropType<TypeTag, Scalar>;
static constexpr type value = 1.296e8;
static constexpr type value = 1.296e8/2;
};

// this is kinds of telling the report step length
template <class TypeTag>
struct EpisodeLength<TypeTag, TTag::CO2PTBaseProblem> {
using type = GetPropType<TypeTag, Scalar>;
static constexpr type value = 21600.0;
static constexpr type value = 5*21600.0;
};

// convergence control
Expand Down

0 comments on commit 35eb5f0

Please sign in to comment.