|
const state_matrix_t & | getDerivativeState (const core::StateVector< state_dim > &x, const core::ControlVector< control_dim > &u, const double t=0.0) override |
|
const state_control_matrix_t & | getDerivativeControl (const core::StateVector< state_dim > &x, const core::ControlVector< control_dim > &u, const double t=0.0) override |
|
SpringLoadedMassLinear * | clone () const override |
|
| LinearSystem (const ct::core::SYSTEM_TYPE &type=ct::core::SYSTEM_TYPE::GENERAL) |
|
virtual | ~LinearSystem () |
|
virtual void | computeControlledDynamics (const state_vector_t &state, const time_t &t, const control_vector_t &control, state_vector_t &derivative) override |
|
virtual const state_matrix_t & | getDerivativeState (const state_vector_t &x, const control_vector_t &u, const time_t t=time_t(0.0))=0 |
|
virtual const state_control_matrix_t & | getDerivativeControl (const state_vector_t &x, const control_vector_t &u, const time_t t=time_t(0.0))=0 |
|
virtual void | getDerivatives (state_matrix_t &A, state_control_matrix_t &B, const state_vector_t &x, const control_vector_t &u, const time_t t=time_t(0.0)) |
|
| ControlledSystem (const SYSTEM_TYPE &type=SYSTEM_TYPE::GENERAL) |
|
| ControlledSystem (std::shared_ptr< ct::core::Controller< STATE_DIM, CONTROL_DIM, SCALAR >> controller, const SYSTEM_TYPE &type=SYSTEM_TYPE::GENERAL) |
|
| ControlledSystem (const ControlledSystem &arg) |
|
virtual | ~ControlledSystem () |
|
void | setController (const std::shared_ptr< Controller< STATE_DIM, CONTROL_DIM, SCALAR >> &controller) |
|
void | getController (std::shared_ptr< Controller< STATE_DIM, CONTROL_DIM, SCALAR >> &controller) const |
|
std::shared_ptr< Controller< STATE_DIM, CONTROL_DIM, SCALAR > > | getController () |
|
virtual void | computeDynamics (const StateVector< STATE_DIM, SCALAR > &state, const time_t &t, StateVector< STATE_DIM, SCALAR > &derivative) override |
|
virtual void | computeControlledDynamics (const StateVector< STATE_DIM, SCALAR > &state, const time_t &t, const ControlVector< CONTROL_DIM, SCALAR > &control, StateVector< STATE_DIM, SCALAR > &derivative)=0 |
|
ControlVector< CONTROL_DIM, SCALAR > | getLastControlAction () |
|
| System (const SYSTEM_TYPE &type=SYSTEM_TYPE::GENERAL) |
|
| System (const System &other) |
|
virtual | ~System () |
|
virtual void | computeDynamics (const StateVector< STATE_DIM, SCALAR > &state, const time_t &t, StateVector< STATE_DIM, SCALAR > &derivative)=0 |
|
SYSTEM_TYPE | getType () const |
|
virtual bool | isSymplectic () const |
|
| ControlledSystem (const SYSTEM_TYPE &type=SYSTEM_TYPE::GENERAL) |
|
| ControlledSystem (std::shared_ptr< ct::core::Controller< STATE_DIM, CONTROL_DIM, double >> controller, const SYSTEM_TYPE &type=SYSTEM_TYPE::GENERAL) |
|
| ControlledSystem (const ControlledSystem &arg) |
|
virtual | ~ControlledSystem () |
|
void | setController (const std::shared_ptr< Controller< STATE_DIM, CONTROL_DIM, double >> &controller) |
|
void | getController (std::shared_ptr< Controller< STATE_DIM, CONTROL_DIM, double >> &controller) const |
|
std::shared_ptr< Controller< STATE_DIM, CONTROL_DIM, double > > | getController () |
|
virtual void | computeDynamics (const StateVector< STATE_DIM, double > &state, const time_t &t, StateVector< STATE_DIM, double > &derivative) override |
|
virtual void | computeControlledDynamics (const StateVector< STATE_DIM, double > &state, const time_t &t, const ControlVector< CONTROL_DIM, double > &control, StateVector< STATE_DIM, double > &derivative)=0 |
|
ControlVector< CONTROL_DIM, double > | getLastControlAction () |
|
| System (const SYSTEM_TYPE &type=SYSTEM_TYPE::GENERAL) |
|
| System (const System &other) |
|
virtual | ~System () |
|
virtual void | computeDynamics (const StateVector< STATE_DIM, double > &state, const time_t &t, StateVector< STATE_DIM, double > &derivative)=0 |
|
SYSTEM_TYPE | getType () const |
|
virtual bool | isSymplectic () const |
|
|
typedef Base::time_t | time_t |
|
typedef StateVector< 2, SCALAR > | state_vector_t |
|
typedef ControlVector< 1, SCALAR > | control_vector_t |
|
typedef StateMatrix< 2, SCALAR > | state_matrix_t |
|
typedef StateControlMatrix< 2, 1, SCALAR > | state_control_matrix_t |
|
typedef std::shared_ptr< ControlledSystem< STATE_DIM, CONTROL_DIM, SCALAR > > | Ptr |
|
typedef Base::time_t | time_t |
|
typedef SCALAR | time_t |
|
typedef std::shared_ptr< ControlledSystem< STATE_DIM, CONTROL_DIM, double > > | Ptr |
|
typedef Base::time_t | time_t |
|
typedef double | time_t |
|
std::shared_ptr< Controller< STATE_DIM, CONTROL_DIM, SCALAR > > | controller_ |
|
ControlVector< CONTROL_DIM, SCALAR > | controlAction_ |
|
SYSTEM_TYPE | type_ |
|
std::shared_ptr< Controller< STATE_DIM, CONTROL_DIM, double > > | controller_ |
|
ControlVector< CONTROL_DIM, double > | controlAction_ |
|
SYSTEM_TYPE | type_ |
|
Linear system class for the GNMS unit test.