JSBSim Flight Dynamics Model 1.2.2 (22 Mar 2025)
An Open Source Flight Dynamics and Control Software Library in C++
Loading...
Searching...
No Matches
FGRungeKutta Class Referenceabstract

Detailed Description

Abstract base.

Definition at line 78 of file FGRungeKutta.h.

#include <FGRungeKutta.h>

+ Inheritance diagram for FGRungeKutta:
+ Collaboration diagram for FGRungeKutta:

Public Types

enum  eStates {
  eNoError =0 , eMathError =1 , eFaultyInit =2 , eEvolve =4 ,
  eUnknown =8
}
 

Public Member Functions

void clearStatus ()
 
double evolve (double y_0, FGRungeKuttaProblem *pf)
 
double getError ()
 
int getIterations ()
 
int getStatus ()
 
double getXEnd ()
 
int init (double x_start, double x_end, int intervals=4)
 
void setTrace (bool t)
 

Protected Attributes

double err
 
double h
 
double h05
 
FGRungeKuttaProblempfo
 

Member Enumeration Documentation

◆ eStates

enum eStates

Definition at line 82 of file FGRungeKutta.h.

82{ eNoError=0, eMathError=1, eFaultyInit=2, eEvolve=4, eUnknown=8} ;

Constructor & Destructor Documentation

◆ FGRungeKutta()

FGRungeKutta ( )
inlineprotected

Definition at line 98 of file FGRungeKutta.h.

98: status(eNoError), trace_values(false), iterations(0) {};

◆ ~FGRungeKutta()

~FGRungeKutta ( )
protectedvirtual

Definition at line 54 of file FGRungeKutta.cpp.

54{ };

Member Function Documentation

◆ clearStatus()

void clearStatus ( )
inline

Definition at line 93 of file FGRungeKutta.h.

93{ status = eNoError; }

◆ evolve()

double evolve ( double  y_0,
FGRungeKuttaProblem pf 
)

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; // twimc, store the last x used.
116 return y;
117}

◆ getError()

double getError ( )
inline

Definition at line 89 of file FGRungeKutta.h.

89{ return err; }

◆ getIterations()

int getIterations ( )
inline

Definition at line 92 of file FGRungeKutta.h.

92{ return iterations; }

◆ getStatus()

int getStatus ( )
inline

Definition at line 91 of file FGRungeKutta.h.

91{ return status; }

◆ getXEnd()

double getXEnd ( )
inline

Definition at line 88 of file FGRungeKutta.h.

88{ return x_end; }

◆ 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; // avoid 'intervals*h < x1'
62 h05 = h*0.5;
63 err = 0.0;
64
65 if (x0>=x1) {
66 status &= eFaultyInit;
67 }
68 return status;
69}

◆ setTrace()

void setTrace ( bool  t)
inline

Definition at line 94 of file FGRungeKutta.h.

94{ trace_values = t; }

Member Data Documentation

◆ err

double err
protected

Definition at line 105 of file FGRungeKutta.h.

◆ h

double h
protected

Definition at line 103 of file FGRungeKutta.h.

◆ h05

double h05
protected

Definition at line 104 of file FGRungeKutta.h.

◆ pfo

FGRungeKuttaProblem* pfo
protected

Definition at line 101 of file FGRungeKutta.h.


The documentation for this class was generated from the following files: