|
BSS
|
Class representing an ODE system. More...
#include <ODE.hpp>
Public Member Functions | |
| ODE (double m_1, double m_2, double x_1_0, double y_1_0, double x_2_0, double y_2_0, double v_x1_0, double v_y1_0, double v_x2_0, double v_y2_0, double t_final) | |
| Constructor for ODE objects. | |
| void | operator() (vector< double > q, vector< double > &dq, double t) |
| function representation of ODE system | |
Class representing an ODE system.
| ODE::ODE | ( | double | m_1, |
| double | m_2, | ||
| double | x_1_0, | ||
| double | y_1_0, | ||
| double | x_2_0, | ||
| double | y_2_0, | ||
| double | v_x1_0, | ||
| double | v_y1_0, | ||
| double | v_x2_0, | ||
| double | v_y2_0, | ||
| double | t_final ) |
Constructor for ODE objects.
| m_1 | mass of the first star (kg) |
| m_2 | mass of the second star (kg) |
| x_1_0 | initial x-position of the first star (m) |
| y_1_0 | initial y-position of the first star (m) |
| x_2_0 | initial x-position of the second star (m) |
| y_2_0 | initial y-position of the second star (m) |
| v_x1_0 | initial x-velocity of the first star (m/s) |
| v_y1_0 | initial y-velocity of the first star (m/s) |
| v_x2_0 | initial x-velocity of the second star (m/s) |
| v_y2_0 | initial y-velocity of the second star (m/s) |
| t_final | final time (s) |
| void ODE::operator() | ( | vector< double > | q, |
| vector< double > & | dq, | ||
| double | t ) |