Theoretica
Scientific Computing
Loading...
Searching...
No Matches
ode.h
Go to the documentation of this file.
1
5
6#ifndef THEORETICA_ODE_H
7#define THEORETICA_ODE_H
8
9#include "../algebra/algebra_types.h"
10#include <functional>
11
12
13namespace theoretica {
14
16 namespace ode {
17
18
23 template<typename Vector = vec<real>>
25
28
31
32
35
36
40 ode_solution_t(size_t steps, const Vector& x0, real t0) {
41
42 t.resize(steps);
43 x.resize(steps);
44
45 t[0] = t0;
46 x[0] = x0;
47 }
48
49
50#ifndef THEORETICA_NO_PRINT
51
53 inline std::string to_string(const std::string& separator = " ") const {
54
55 if (t.size() != x.size()) {
56 TH_MATH_ERROR("ode_solution_t::to_string", t.size(), MathError::InvalidArgument);
57 return "";
58 }
59
60 std::stringstream res;
61
62 for (unsigned int i = 0; i < t.size(); ++i) {
63
64 res << t[i] << separator;
65
66 for (unsigned int j = 0; j < x[i].size(); ++j) {
67
68 res << x[i][j];
69
70 if(j != x[i].size() - 1)
71 res << separator;
72 else
73 res << "\n";
74 }
75 }
76
77 return res.str();
78 }
79
80
82 inline operator std::string() {
83 return to_string();
84 }
85
86
89 inline friend std::ostream& operator<<(
90 std::ostream& out, const ode_solution_t<Vector>& obj) {
91 return out << obj.to_string();
92 }
93#endif
94
95 };
96
97
100
101
104
105
108
109
112
113
116
117
123 template<typename Vector>
124 using ode_function = std::function<Vector(real, const Vector&)>;
125
126
127 // Steppers
128 // (functions which compute one iteration of a method)
129
130
140 template<typename Vector, typename OdeFunction = ode_function<Vector>>
141 inline Vector step_euler(OdeFunction f, const Vector& x, real t, real h = 0.0001) {
142
143 return x + h * f(t, x);
144 }
145
146
156 template<typename Vector, typename OdeFunction = ode_function<Vector>>
157 inline Vector step_midpoint(OdeFunction f, const Vector& x, real t, real h = 0.0001) {
158
159 return x + h * f(t + h / 2.0, x + f(t, x) * h / 2.0);
160 }
161
162
172 template<typename Vector, typename OdeFunction = ode_function<Vector>>
173 inline Vector step_heun(OdeFunction f, const Vector& x, real t, real h = 0.001) {
174
175 const Vector k1 = f(t, x);
176
177 return x + (k1 + f(t + h, x + k1 * h)) * (h / 2.0);
178 }
179
180
191 template<typename Vector, typename OdeFunction = ode_function<Vector>>
192 inline Vector step_rk2(OdeFunction f, const Vector& x, real t, real h = 0.001) {
193
194 const Vector k1 = f(t, x);
195 const Vector k2 = f(t + (h / 2.0), x + k1 * (h / 2.0));
196
197 return x + k2 * h;
198 }
199
200
211 template<typename Vector, typename OdeFunction = ode_function<Vector>>
212 inline Vector step_rk4(OdeFunction f, const Vector& x, real t, real h = 0.01) {
213
214 const real half = h / 2.0;
215
216 const Vector k1 = f(t, x);
217 const Vector k2 = f(t + half, x + k1 * half);
218 const Vector k3 = f(t + half, x + k2 * half);
219 const Vector k4 = f(t + h, x + k3 * h);
220
221 return x + (k1 + k2 * 2.0 + k3 * 2.0 + k4) * (h / 6.0);
222 }
223
224
235 template<typename Vector, typename OdeFunction = ode_function<Vector>>
236 inline Vector step_k38(OdeFunction f, const Vector& x, real t, real h = 0.001) {
237
238 const Vector k1 = f(t, x);
239 const Vector k2 = f(t + (h / 3.0), x + k1 * (h / 3.0));
240 const Vector k3 = f(t + (h * 2.0 / 3.0), x + h * (-k1 / 3.0 + k2));
241 const Vector k4 = f(t + h, x + h * (k1 - k2 + k3));
242
243 return x + (k1 + 3.0 * k2 + 3.0 * k3 + k4) * (h / 8.0);
244 }
245
246
247 // Solvers
248 // (functions which solve numerically an ODE over an interval)
249
250
267 template <
268 typename Vector, typename OdeFunction = ode_function<Vector>,
269 typename StepFunction
270 >
273 OdeFunction f, const Vector& x0, real t0, real tf,
274 StepFunction step, real stepsize = 0.001) {
275
276 if (tf < t0) {
277 TH_MATH_ERROR("ode::solve_fixstep", tf, MathError::InvalidArgument);
278 ode_solution_t<Vector> err; err.t = Vector(nan());
279 return err;
280 }
281
282 const unsigned int steps = floor((tf - t0) / stepsize);
283 unsigned int total_steps = steps;
284 unsigned int i;
285
286 if (abs(t0 + steps * stepsize - tf) > MACH_EPSILON)
287 total_steps++;
288
289 // Initialize solution structure
291
292
293 // Iterate over each step of the numerical method
294 for (i = 1; i <= steps; ++i) {
295 solution.x[i] = step(f, solution.x[i - 1], solution.t[i - 1], stepsize);
296 solution.t[i] = solution.t[i - 1] + stepsize;
297 }
298
299
300 // Additional shorter step if the stepsize
301 // does not cover exactly the time interval
302 if (steps != total_steps) {
303 solution.x[i] = step(
304 f, solution.x[i - 1], solution.t[i - 1], tf - solution.t[i - 1]);
305 solution.t[i] = tf;
306 }
307
308 return solution;
309 }
310
311
323 template <
324 typename Vector, typename OdeFunction = ode_function<Vector>
325 >
332
333
345 template <
346 typename Vector, typename OdeFunction = ode_function<Vector>
347 >
354
355
367 template <
368 typename Vector, typename OdeFunction = ode_function<Vector>
369 >
376
377
390 template <
391 typename Vector, typename OdeFunction = ode_function<Vector>
392 >
399
400
413 template <
414 typename Vector, typename OdeFunction = ode_function<Vector>
415 >
422
423
435 template <
436 typename Vector, typename OdeFunction = ode_function<Vector>
437 >
444 }
445}
446
447#endif
A statically allocated N-dimensional vector with elements of the given type.
Definition vec.h:92
void resize(size_t n) const
Compatibility function to allow for allocation or resizing of dynamic vectors.
Definition vec.h:459
TH_CONSTEXPR unsigned int size() const
Returns the size of the vector (N)
Definition vec.h:449
#define TH_MATH_ERROR(F_NAME, VALUE, EXCEPTION)
TH_MATH_ERROR is a macro which throws exceptions or modifies errno (depending on which compilation op...
Definition error.h:219
Vector step_euler(OdeFunction f, const Vector &x, real t, real h=0.0001)
Compute one step of Euler's method for ordinary differential equations.
Definition ode.h:141
Vector step_k38(OdeFunction f, const Vector &x, real t, real h=0.001)
Compute one step of Kutta's 3/8 rule method for ordinary differential equations.
Definition ode.h:236
Vector step_rk2(OdeFunction f, const Vector &x, real t, real h=0.001)
Compute one step of the Runge-Kutta method of 2nd order for ordinary differential equations.
Definition ode.h:192
std::function< Vector(real, const Vector &)> ode_function
A function representing a system of differential equations, taking as input the time (independent var...
Definition ode.h:124
ode_solution_t< Vector > solve_midpoint(OdeFunction f, const Vector &x0, real t0, real tf, real stepsize=0.0001)
Integrate an ordinary differential equation over a certain domain with the given initial conditions u...
Definition ode.h:348
ode_solution_t< Vector > solve_k38(OdeFunction f, const Vector &x0, real t0, real tf, real stepsize=0.0001)
Integrate an ordinary differential equation over a certain domain with the given initial conditions u...
Definition ode.h:438
ode_solution_t< Vector > solve_rk4(OdeFunction f, const Vector &x0, real t0, real tf, real stepsize=0.01)
Integrate an ordinary differential equation over a certain domain with the given initial conditions u...
Definition ode.h:416
Vector step_midpoint(OdeFunction f, const Vector &x, real t, real h=0.0001)
Compute one step of the midpoint method for ordinary differential equations.
Definition ode.h:157
ode_solution_t< Vector > solve_fixstep(OdeFunction f, const Vector &x0, real t0, real tf, StepFunction step, real stepsize=0.001)
Integrate an ordinary differential equation using any numerical algorithm with a constant step size,...
Definition ode.h:272
Vector step_rk4(OdeFunction f, const Vector &x, real t, real h=0.01)
Compute one step of the Runge-Kutta method of 4th order for ordinary differential equations.
Definition ode.h:212
ode_solution_t< Vector > solve_heun(OdeFunction f, const Vector &x0, real t0, real tf, real stepsize=0.0001)
Integrate an ordinary differential equation over a certain domain with the given initial conditions u...
Definition ode.h:370
Vector step_heun(OdeFunction f, const Vector &x, real t, real h=0.001)
Compute one step of Heun's method for ordinary differential equations.
Definition ode.h:173
ode_solution_t< Vector > solve_rk2(OdeFunction f, const Vector &x0, real t0, real tf, real stepsize=0.0001)
Integrate an ordinary differential equation over a certain domain with the given initial conditions u...
Definition ode.h:393
ode_solution_t< Vector > solve_euler(OdeFunction f, const Vector &x0, real t0, real tf, real stepsize=0.0001)
Integrate an ordinary differential equation over a certain domain with the given initial conditions u...
Definition ode.h:326
Main namespace of the library which contains all functions and objects.
Definition algebra.h:27
double real
A real number, defined as a floating point type.
Definition constants.h:207
dual2 abs(dual2 x)
Compute the absolute value of a second order dual number.
Definition dual2_functions.h:242
Vector make_error()
Create a vector representing an error state, with all NaN values.
Definition algebra.h:103
TH_CONSTEXPR real nan()
Return a quiet NaN number in floating point representation.
Definition error.h:74
@ InvalidArgument
Invalid argument.
constexpr real MACH_EPSILON
Machine epsilon for the real type.
Definition constants.h:216
TH_CONSTEXPR int floor(real x)
Compute the floor of x, as the maximum integer number that is smaller than x.
Definition real_analysis.h:271
Data structure holding the numerical solution of a discretized ODE, where the vector represents the ...
Definition ode.h:24
friend std::ostream & operator<<(std::ostream &out, const ode_solution_t< Vector > &obj)
Stream the ODE solution in string representation to an output stream (std::ostream)
Definition ode.h:89
vec< real > t
A vector of the time values (independent variable).
Definition ode.h:27
ode_solution_t(size_t steps, const Vector &x0, real t0)
Prepare the structure for integration by specifying the number of total steps and the initial conditi...
Definition ode.h:40
ode_solution_t()
Default constructor.
Definition ode.h:34
std::string to_string(const std::string &separator=" ") const
Convert the ODE solution to string representation.
Definition ode.h:53
vec< Vector > x
A vector of the phase space values (solution).
Definition ode.h:30