move EndTime to TypeTag-free parameter system

This commit is contained in:
Arne Morten Kvarving
2024-07-05 17:49:51 +02:00
parent d95c049936
commit f5c7bada37
20 changed files with 32 additions and 146 deletions

View File

@@ -48,8 +48,8 @@ template<class Scalar>
struct DomainSizeZ { static constexpr Scalar value = 1.0; };
//! The default value for the simulation's end time
template<class TypeTag, class MyTypeTag>
struct EndTime { using type = Properties::UndefinedProperty; };
template<class Scalar>
struct EndTime { static constexpr Scalar value = -1e35; };
//! Name of the grid file
struct GridFile { static constexpr auto value = ""; };