Reference documentation for deal.II version 9.2.0
\(\newcommand{\dealvcentcolon}{\mathrel{\mathop{:}}}\) \(\newcommand{\dealcoloneq}{\dealvcentcolon\mathrel{\mkern-1.2mu}=}\) \(\newcommand{\jump}[1]{\left[\!\left[ #1 \right]\!\right]}\) \(\newcommand{\average}[1]{\left\{\!\left\{ #1 \right\}\!\right\}}\)
function_time.h
Go to the documentation of this file.
1 // ---------------------------------------------------------------------
2 //
3 // Copyright (C) 1999 - 2019 by the deal.II authors
4 //
5 // This file is part of the deal.II library.
6 //
7 // The deal.II library is free software; you can use it, redistribute
8 // it, and/or modify it under the terms of the GNU Lesser General
9 // Public License as published by the Free Software Foundation; either
10 // version 2.1 of the License, or (at your option) any later version.
11 // The full text of the license can be found in the file LICENSE.md at
12 // the top level directory of deal.II.
13 //
14 // ---------------------------------------------------------------------
15 
16 #ifndef dealii_function_time_h
17 #define dealii_function_time_h
18 
19 
20 #include <deal.II/base/config.h>
21 
23 
72 template <typename Number = double>
74 {
75 public:
80  FunctionTime(const Number initial_time = Number(0.0));
81 
85  virtual ~FunctionTime() = default;
86 
90  Number
91  get_time() const;
92 
96  virtual void
97  set_time(const Number new_time);
98 
102  virtual void
103  advance_time(const Number delta_t);
104 
108  using time_type = Number;
109 
110 private:
114  Number time;
115 };
116 
117 
118 
119 /*----------------------------- Inline functions ----------------------------*/
120 
121 #ifndef DOXYGEN
122 
123 template <typename Number>
124 inline Number
126 {
127  return time;
128 }
129 
130 #endif
132 
133 #endif
FunctionTime::get_time
Number get_time() const
Algorithms::Events::new_time
const Event new_time
Definition: event.cc:68
FunctionTime::time
Number time
Definition: function_time.h:114
FunctionTime::advance_time
virtual void advance_time(const Number delta_t)
FunctionTime
Definition: function_time.h:73
DEAL_II_NAMESPACE_OPEN
#define DEAL_II_NAMESPACE_OPEN
Definition: config.h:358
exceptions.h
FunctionTime::set_time
virtual void set_time(const Number new_time)
FunctionTime::~FunctionTime
virtual ~FunctionTime()=default
FunctionTime::FunctionTime
FunctionTime(const Number initial_time=Number(0.0))
config.h
DEAL_II_NAMESPACE_CLOSE
#define DEAL_II_NAMESPACE_CLOSE
Definition: config.h:359
FunctionTime< numbers::NumberTraits< double >::real_type >::time_type
numbers::NumberTraits< double >::real_type time_type
Definition: function_time.h:108