0.3.0
Loading...
Searching...
No Matches
NumericalIntegration.hpp
Go to the documentation of this file.
1// This file is part of INSTINCT, the INS Toolkit for Integrated
2// Navigation Concepts and Training by the Institute of Navigation of
3// the University of Stuttgart, Germany.
4//
5// This Source Code Form is subject to the terms of the Mozilla Public
6// License, v. 2.0. If a copy of the MPL was not distributed with this
7// file, You can obtain one at https://mozilla.org/MPL/2.0/.
8
13
14#pragma once
15
16#include <array>
17#include <numeric>
18#include <type_traits>
19#include <gcem.hpp>
20
21#include "util/Assert.h"
22#include "util/Logger.hpp"
23
24namespace NAV
25{
26
27namespace ButcherTableau
28{
29
30#if defined(__GNUC__) && !defined(__clang__)
31 #pragma GCC diagnostic push
32 #pragma GCC diagnostic ignored "-Wmaybe-uninitialized" // NOLINT(clang-diagnostic-unknown-warning-option)
33#endif
34
43template<typename Y, typename Z, std::floating_point Scalar, size_t s, std::array<std::array<Scalar, s + 1>, s + 1> butcherTableau>
44inline Y RungeKuttaExplicit(const Y& y_n, const std::array<Z, s>& z, const Scalar& h, const auto& f, const auto& constParam, const Scalar& t_n)
45{
46 static_assert(gcem::abs(static_cast<Scalar>(1.0) - std::accumulate(butcherTableau[s].begin(), butcherTableau[s].end(), static_cast<Scalar>(0.0))) < 1e-8, // NOLINT(boost-use-ranges,modernize-use-ranges) // There is no ranges::accumulate
47 "The sum of the last row in the Butcher tableau has to be 1");
48 for (size_t r = 0; r <= s; ++r)
49 {
50 for (size_t c = r + 1; c <= s; ++c)
51 {
52 INS_ASSERT_USER_ERROR(butcherTableau.at(r).at(c) == 0.0, "All terms in the upper triangle have to be 0");
53 }
54 }
55
56 // std::string result = "y_(n+1) = y_n";
57
58 // std::string sum_b_str;
59 // std::string sum_b_val;
60 Y sum_b{};
61 std::array<Y, s> k{};
62 for (size_t i = 1; i <= s; ++i)
63 {
64 auto b = butcherTableau[s].at(i);
65 auto c = butcherTableau.at(i - 1)[0];
66 Y sum_a{};
67 // std::string sum_a_str;
68 // std::string sum_a_val;
69 for (size_t j = 2; j <= i; ++j)
70 {
71 auto a = butcherTableau.at(i - 1).at(j - 1);
72 if (j == 2) { sum_a = a * k.at(j - 2); }
73 else { sum_a += a * k.at(j - 2); }
74 // sum_a_str += fmt::format("a{}{} * k{}", i, j-1, j-1);
75 // sum_a_val += fmt::format("{:^3.1f} * k{}", a, j - 1);
76 // if (j < i) {
77 // sum_a_str += " + ";
78 // sum_a_val += " + ";
79 // }
80 }
81
82 if (i < 2) { k.at(i - 1) = f(y_n, z.at(i - 1), constParam, t_n + c * h); } // Do not add sum_a, because can have nan values
83 else { k.at(i - 1) = f(y_n + sum_a * h, z.at(i - 1), constParam, t_n + c * h); }
84 // if (sum_a_str.empty()) { sum_a_str = "0"; }
85 // if (sum_a_val.empty()) { sum_a_val = "0"; }
86 // fmt::println("k{} = f(t_n + c{} * h, y_n + ({}) * h)", i, i, sum_a_str);
87 // fmt::println("k{} = f(t_n + {:^3.1f} * h, y_n + ({:^{w}}) * h)", i, c, sum_a_val, fmt::arg("w",sum_a_str.length()));
88
89 if (i == 1) { sum_b = b * k.at(i - 1); }
90 else { sum_b += b * k.at(i - 1); }
91 // sum_b_str += fmt::format("b{} * k{}", i, i);
92 // sum_b_val += fmt::format("{:.2f} * k{}", butcherTableau[s].at(i), i);
93 // if (i < s)
94 // {
95 // sum_b_str += " + ";
96 // sum_b_val += " + ";
97 // }
98 }
99
100 // std::cout << result + fmt::format(" + h * ({})", sum_b_str) << std::endl;
101 // std::cout << result + fmt::format(" + h * ({})", sum_b_val) << std::endl;
102 return y_n + h * sum_b;
103}
104
105#if defined(__GNUC__) && !defined(__clang__)
106 #pragma GCC diagnostic pop
107#endif
108
110template<typename Scalar>
111constexpr std::array<std::array<Scalar, 2>, 2> RK1 = { { { 0.0, /*|*/ },
112 //------------------
113 { 0.0, /*|*/ 1.0 } } };
114
116template<typename Scalar>
117constexpr std::array<std::array<Scalar, 3>, 3> RK2 = { { { 0.0, /*|*/ },
118 { 0.5, /*|*/ 0.5 },
119 //-----------------------
120 { 0.0, /*|*/ 0.0, 1.0 } } };
121
123template<typename Scalar>
124constexpr std::array<std::array<Scalar, 3>, 3> Heun2 = { { { 0.0, /*|*/ },
125 { 1.0, /*|*/ 1.0 },
126 //-----------------------
127 { 0.0, /*|*/ 0.5, 0.5 } } };
128
130template<typename Scalar>
131constexpr std::array<std::array<Scalar, 4>, 4> RK3 = { { { 0.0, /*|*/ },
132 { 0.5, /*|*/ 0.5 },
133 { 1.0, /*|*/ -1.0, 2.0 },
134 //----------------------------------------------
135 { 0.0, /*|*/ 1.0 / 6.0, 4.0 / 6.0, 1.0 / 6.0 } } };
136
138template<typename Scalar>
139constexpr std::array<std::array<Scalar, 4>, 4> Heun3 = { { { 0.0, /* |*/ },
140 { 1.0 / 3.0, /*|*/ 1.0 / 3.0 },
141 { 2.0 / 3.0, /*|*/ 0.0, 2.0 / 3.0 },
142 //----------------------------------------
143 { 0.0, /*|*/ 1.0 / 4.0, 0.0, 3.0 / 4.0 } } };
144
146template<typename Scalar>
147constexpr std::array<std::array<Scalar, 5>, 5> RK4 = { { { 0.0, /*|*/ },
148 { 0.5, /*|*/ 0.5 },
149 { 0.5, /*|*/ 0.0, 0.5 },
150 { 1.0, /*|*/ 0.0, 0.0, 1.0 },
151 //------------------
152 { 0.0, /*|*/ 1.0 / 6.0, 1.0 / 3.0, 1.0 / 3.0, 1.0 / 6.0 } } };
153
154} // namespace ButcherTableau
155
174template<typename Y, typename Z, std::floating_point Scalar>
175Y RungeKutta1(const Y& y_n, const std::array<Z, 1>& z, const Scalar& h, const auto& f, const auto& constParam, const Scalar& t_n = 0)
176{
177 return ButcherTableau::RungeKuttaExplicit<Y, Z, Scalar, 1, ButcherTableau::RK1<Scalar>>(y_n, z, h, f, constParam, t_n);
178}
179
203template<typename Y, typename Z, std::floating_point Scalar>
204Y RungeKutta2(const Y& y_n, const std::array<Z, 2>& z, const Scalar& h, const auto& f, const auto& constParam, const Scalar& t_n = 0)
205{
206 return ButcherTableau::RungeKuttaExplicit<Y, Z, Scalar, 2, ButcherTableau::RK2<Scalar>>(y_n, z, h, f, constParam, t_n);
207}
208
232template<typename Y, typename Z, std::floating_point Scalar>
233Y Heun2(const Y& y_n, const std::array<Z, 2>& z, const Scalar& h, const auto& f, const auto& constParam, const Scalar& t_n = 0)
234{
235 return ButcherTableau::RungeKuttaExplicit<Y, Z, Scalar, 2, ButcherTableau::Heun2<Scalar>>(y_n, z, h, f, constParam, t_n);
236}
237
263template<typename Y, typename Z, std::floating_point Scalar>
264Y RungeKutta3(const Y& y_n, const std::array<Z, 3>& z, const Scalar& h, const auto& f, const auto& constParam, const Scalar& t_n = 0)
265{
266 return ButcherTableau::RungeKuttaExplicit<Y, Z, Scalar, 3, ButcherTableau::RK3<Scalar>>(y_n, z, h, f, constParam, t_n);
267}
268
294template<typename Y, typename Z, std::floating_point Scalar>
295Y Heun3(const Y& y_n, const std::array<Z, 3>& z, const Scalar& h, const auto& f, const auto& constParam, const Scalar& t_n = 0)
296{
297 return ButcherTableau::RungeKuttaExplicit<Y, Z, Scalar, 3, ButcherTableau::Heun3<Scalar>>(y_n, z, h, f, constParam, t_n);
298}
299
327template<typename Y, typename Z, std::floating_point Scalar>
328Y RungeKutta4(const Y& y_n, const std::array<Z, 4>& z, const Scalar& h, const auto& f, const auto& constParam, const Scalar& t_n = 0)
329{
330 return ButcherTableau::RungeKuttaExplicit<Y, Z, Scalar, 4, ButcherTableau::RK4<Scalar>>(y_n, z, h, f, constParam, t_n);
331}
332
333} // namespace NAV
Assertion helpers.
#define INS_ASSERT_USER_ERROR(_EXP, _MSG)
Assert function with message.
Definition Assert.h:21
Utility class for logging to console and file.
constexpr std::array< std::array< Scalar, 5 >, 5 > RK4
Butcher tableau for Runge-Kutta 4th order (explicit)
Definition NumericalIntegration.hpp:147
Y RungeKutta3(const Y &y_n, const std::array< Z, 3 > &z, const Scalar &h, const auto &f, const auto &constParam, const Scalar &t_n=0)
Runge-Kutta 3rd order (explicit) / Simpson's rule .
Definition NumericalIntegration.hpp:264
Y RungeKuttaExplicit(const Y &y_n, const std::array< Z, s > &z, const Scalar &h, const auto &f, const auto &constParam, const Scalar &t_n)
Calculates explicit Runge-Kutta methods. Order is defined by the Butcher tableau.
Definition NumericalIntegration.hpp:44
constexpr std::array< std::array< Scalar, 4 >, 4 > Heun3
Butcher tableau for Heun's method (3nd order) (explicit)
Definition NumericalIntegration.hpp:139
Y RungeKutta1(const Y &y_n, const std::array< Z, 1 > &z, const Scalar &h, const auto &f, const auto &constParam, const Scalar &t_n=0)
Runge-Kutta 1st order (explicit) / (Forward) Euler method .
Definition NumericalIntegration.hpp:175
constexpr std::array< std::array< Scalar, 3 >, 3 > Heun2
Butcher tableau for Heun's method (2nd order) (explicit)
Definition NumericalIntegration.hpp:124
Y RungeKutta4(const Y &y_n, const std::array< Z, 4 > &z, const Scalar &h, const auto &f, const auto &constParam, const Scalar &t_n=0)
Runge-Kutta 4th order (explicit) .
Definition NumericalIntegration.hpp:328
Y RungeKutta2(const Y &y_n, const std::array< Z, 2 > &z, const Scalar &h, const auto &f, const auto &constParam, const Scalar &t_n=0)
Runge-Kutta 2nd order (explicit) / Explicit midpoint method .
Definition NumericalIntegration.hpp:204
constexpr std::array< std::array< Scalar, 4 >, 4 > RK3
Butcher tableau for Runge-Kutta 3rd order (explicit) / Simpson's rule.
Definition NumericalIntegration.hpp:131
constexpr std::array< std::array< Scalar, 3 >, 3 > RK2
Butcher tableau for Runge-Kutta 2nd order (explicit) / Explicit midpoint method.
Definition NumericalIntegration.hpp:117
constexpr std::array< std::array< Scalar, 2 >, 2 > RK1
Butcher tableau for Runge-Kutta 1st order (explicit) / (Forward) Euler method.
Definition NumericalIntegration.hpp:111