5#ifndef CPPPROJCT_GENERALSOLVER_H
6#define CPPPROJCT_GENERALSOLVER_H
11#include "../GraphClasses/GeneralGraph.h"
12#include "../DifferentialEquations/GeneralDifferentialEquation.h"
21typedef std::function<double(
double,
double, std::vector<double>, std::vector<double>, std::vector<double>)> ScalarFlow;
22typedef std::function<double(
double a, std::vector<double> &b, std::vector<double> &c, std::vector<double> &d, Graph &g, ScalarFlow &F)> SolverOp;
37template <
typename DIFFEQ,
typename SOLVER>
47 bool requires_communication =
false;
54 DIFFEQ DifferentialEquation;
56 void PostTemplateProcessing();
61 std::vector<double> &b,
62 std::vector<double> &c,
63 std::vector<double> &d,
64 std::vector<double> &RK1,
65 std::vector<double> &RK2,
66 std::vector<double> &RK3,
67 std::vector<double> &RK4,
70 std::vector<double> &b,
71 std::vector<double> &c,
72 std::vector<double> &d,
73 std::vector<double> &RK1);
75 std::vector<double> &b,
76 std::vector<double> &c,
77 std::vector<double> &d,
78 std::vector<double> &RK1,
79 std::vector<double> &RK2);
81 std::vector<double> &b,
82 std::vector<double> &c,
83 std::vector<double> &d,
84 std::vector<double> &RK1,
85 std::vector<double> &RK2,
86 std::vector<double> &RK3);
88 std::vector<double> &b,
89 std::vector<double> &c,
90 std::vector<double> &d,
91 std::vector<double> &RK1,
92 std::vector<double> &RK2,
93 std::vector<double> &RK3,
94 std::vector<double> &RK4);
99 void SetStep(
double h);
100 void SetT0(
double t0);
105template <
typename DIFFEQ,
typename SOLVER>
109 Params[0] = *(params+0);
110 Params[1] = *(params+1);
111 Params[2] = *(params+2);
112 Params[3] = *(params+3);
113 std::cout <<
"[WARNING] GeneralSolver constructor that explicitly uses four weights params assigns 'true' to 'requires_communication', change it if the current method does not require it. Current method: " << valtype <<
" with d=" << d << std::endl;
114 std::cout << std::flush;
115 requires_communication = DifferentialEquation.requiresCom(d);
119template <
typename DIFFEQ,
typename SOLVER>
124 std::string methods_str =
"(1) Euler ('eu'), (2) RungeKutta ('rk').";
125 type = std::move(valtype);
129 requires_communication = DifferentialEquation.requiresCom(deg);
134 }
else if (type ==
"eu") {
136 requires_communication = DifferentialEquation.requiresCom(deg);
142 error_report(
"Only support for Integration is available for the following methods:" + methods_str);
147template <
typename DIFFEQ,
typename SOLVER>
155 requires_communication = DifferentialEquation.requiresCom(deg);
160template <
typename DIFFEQ,
typename SOLVER>
165 std::string methods_str =
"(1) Euler ('eu'), (2) RungeKutta O(2) ('rk') a.k.a. Heun's Method";
166 type = std::move(valtype);
175 requires_communication = DifferentialEquation.requiresCom(d);
177 printf(
"[FATAL] GeneralSolver(type='rk', int d) only accepts d=2 for Heun's method, but %d was the input.\n",d);
178 std::cout<<std::flush;
181 }
else if (type ==
"eu") {
183 for (
int i=0; i<4; ++i){
189 requires_communication = DifferentialEquation.requiresCom(d);
191 if (d!=1) PRINTF_DBG(
"\n\n[WARNING]\n\nEuler od Order != 1 may not be available for some Equations, i.e. some equation classes may not have defined their field derivatives up to the requested order :O.\n\n");
193 error_report(
"Only support for Integration is available for the following methods:" + methods_str);
199template <
typename DIFFEQ,
typename SOLVER>
203template <
typename DIFFEQ,
typename SOLVER>
207template <
typename DIFFEQ,
typename SOLVER>
215template <
typename DIFFEQ,
typename SOLVER>
217 std::vector<double> &b,
218 std::vector<double> &c,
219 std::vector<double> &d,
220 std::vector<double> &RK1,
221 std::vector<double> &RK2,
222 std::vector<double> &RK3,
223 std::vector<double> &RK4,
225 return Solver.evolve(T.t, T.h, a, b, c, d, DifferentialEquation,
226 DifferentialEquation.Specs, RK1, RK2, RK3, RK4, answer, &Params[0]);
230template <
typename DIFFEQ,
typename SOLVER>
232 std::vector<double> &b,
233 std::vector<double> &c,
234 std::vector<double> &d,
235 std::vector<double> &RK1){
236 return Solver.Term1(T.t, T.h, a, b, c, d, DifferentialEquation,
237 DifferentialEquation.Specs, RK1, &Params[0]);
241template <
typename DIFFEQ,
typename SOLVER>
243 std::vector<double> &b,
244 std::vector<double> &c,
245 std::vector<double> &d,
246 std::vector<double> &RK1,
247 std::vector<double> &RK2){
248 return Solver.Term2(T.t, T.h, a, b, c, d, DifferentialEquation,
249 DifferentialEquation.Specs, RK1, RK2, &Params[0]);
254template <
typename DIFFEQ,
typename SOLVER>
256 std::vector<double> &b,
257 std::vector<double> &c,
258 std::vector<double> &d,
259 std::vector<double> &RK1,
260 std::vector<double> &RK2,
261 std::vector<double> &RK3){
262 return Solver.Term3(T.t, T.h, a, b, c, d, DifferentialEquation,
263 DifferentialEquation.Specs, RK1, RK2, RK3, &Params[0]);
269template <
typename DIFFEQ,
typename SOLVER>
271 std::vector<double> &b,
272 std::vector<double> &c,
273 std::vector<double> &d,
274 std::vector<double> &RK1,
275 std::vector<double> &RK2,
276 std::vector<double> &RK3,
277 std::vector<double> &RK4){
278 return Solver.Term4(T.t, T.h, a, b, c, d, DifferentialEquation,
279 DifferentialEquation.Specs, RK1, RK2, RK3, RK4, &Params[0]);
284template <
typename DIFFEQ,
typename SOLVER>
286 if (DifferentialEquation.RequiresBuilding){
287 DifferentialEquation.BuildForSolver();
Definition: GeneralSolver.h:38
Definition: GeneralSolver.h:24
Definition: GeneralSolver.h:31