time.hpp 250 B

12345678910111213141516
  1. #ifndef TIME_HPP
  2. #define TIME_HPP
  3. //! The Time class contains information on time discretisation
  4. class Time{
  5. public:
  6. //! Total duration of the simulation
  7. double T;
  8. //! Number of time steps
  9. size_t nT;
  10. //! Time step
  11. double dT;
  12. };
  13. #endif