#include <lib-algorithms.h>
template<class T>
class Algorithms::RK3< T >
Definition at line 546 of file lib-algorithms.h.
◆ RK3()
◆ operator()() [1/2]
Definition at line 562 of file lib-algorithms.h.
575 (*F)(
Y0,
Yh); Yh *= h;
576 Y0 +=
Yh; Y *= 3.0; Y0 += Y; Y0 *= 0.25;
581 (*F)(
Y0,
Yh); Yh *= h;
582 Y0 +=
Yh; Y0 *= 6.0; Y +=
Y0; Y *= (1.0/9.0);
◆ operator()() [2/2]
Definition at line 590 of file lib-algorithms.h.
597 (*F)(
Y0,
Yh,dir); Yh *= h;
603 (*F)(
Y0,
Yh,dir); Yh *= h;
604 Y0 +=
Yh; Y *= 3.0; Y0 += Y; Y0 *= 0.25;
609 (*F)(
Y0,
Yh,dir); Yh *= h;
610 Y0 +=
Yh; Y0 *= 6.0; Y +=
Y0; Y *= (1.0/9.0);
◆ Y0
◆ Yh
The documentation for this class was generated from the following file:
- /Users/archis/Dropbox/work/dev/oshun/oshun-OS/OSHUN/1d_cpp/source/lib-algorithms.h