|
Janus 2.0.0
High-performance C++20 dual-mode numerical framework
|
Result structure for second-order IVP solvers. More...
#include <Integrate.hpp>
Public Attributes | |
| JanusVector< Scalar > | t |
| Time points where solution was computed. | |
| JanusMatrix< Scalar > | q |
| Generalized coordinates at each time point (each column is q(t[i])). | |
| JanusMatrix< Scalar > | v |
| Generalized velocities at each time point (each column is v(t[i])). | |
| bool | success = true |
| Whether integration was successful. | |
| std::string | message = "" |
| Descriptive message. | |
| int | status = 0 |
| Status code (0 = success). | |
Result structure for second-order IVP solvers.
| Scalar | numeric or symbolic scalar type |
| std::string janus::SecondOrderOdeResult< Scalar >::message = "" |
Descriptive message.
| JanusMatrix<Scalar> janus::SecondOrderOdeResult< Scalar >::q |
Generalized coordinates at each time point (each column is q(t[i])).
| int janus::SecondOrderOdeResult< Scalar >::status = 0 |
Status code (0 = success).
| bool janus::SecondOrderOdeResult< Scalar >::success = true |
Whether integration was successful.
| JanusVector<Scalar> janus::SecondOrderOdeResult< Scalar >::t |
Time points where solution was computed.
| JanusMatrix<Scalar> janus::SecondOrderOdeResult< Scalar >::v |
Generalized velocities at each time point (each column is v(t[i])).