Abstract base.
Definition at line 78 of file FGRungeKutta.h.
#include <FGRungeKutta.h>
|
enum | eStates {
eNoError =0
, eMathError =1
, eFaultyInit =2
, eEvolve =4
,
eUnknown =8
} |
|
◆ eStates
Definition at line 82 of file FGRungeKutta.h.
82{ eNoError=0, eMathError=1, eFaultyInit=2, eEvolve=4, eUnknown=8} ;
◆ FGRungeKutta()
Definition at line 98 of file FGRungeKutta.h.
98: status(eNoError), trace_values(false), iterations(0) {};
◆ ~FGRungeKutta()
◆ clearStatus()
◆ evolve()
Definition at line 89 of file FGRungeKutta.cpp.
90{
91 double x = x0;
92 double y = y_0;
93 pfo = pf;
94
95 iterations = 0;
96
97 if (!trace_values) {
98 while (x<safer_x1) {
99 y = approximate(x,y);
100 if (!sane_val(y)) { status &= eMathError; }
101 x += h;
102 iterations++;
103 }
104 } else {
105 while (x<safer_x1) {
106 cout << x << " " << y << endl;
107 y = approximate(x,y);
108 if (!sane_val(y)) { status &= eMathError; }
109 x += h;
110 iterations++;
111 }
112 cout << x << " " << y << endl;
113 }
114
115 x_end = x;
116 return y;
117}
◆ getError()
◆ getIterations()
◆ getStatus()
◆ getXEnd()
◆ init()
int init |
( |
double |
x_start, |
|
|
double |
x_end, |
|
|
int |
intervals = 4 |
|
) |
| |
Definition at line 56 of file FGRungeKutta.cpp.
57{
58 x0 = x_start;
59 x1 = x_end;
60 h = (x_end - x_start)/intervals;
61 safer_x1 = x1 - h*1e-6;
62 h05 = h*0.5;
63 err = 0.0;
64
65 if (x0>=x1) {
66 status &= eFaultyInit;
67 }
68 return status;
69}
◆ setTrace()
◆ err
◆ h05
◆ pfo
The documentation for this class was generated from the following files: