|
| QuadrotorDynamicsSolver () |
|
void | AssignScene (ScenePtr scene_in) override |
|
StateVector | f (const StateVector &x, const ControlVector &u) override |
| Forward dynamics. This computes the differential dynamics. More...
|
|
Eigen::MatrixXd | fx (const StateVector &x, const ControlVector &u) override |
| Derivative of the forward dynamics w.r.t. the state. More...
|
|
Eigen::MatrixXd | fu (const StateVector &x, const ControlVector &u) override |
| Derivative of the forward dynamics w.r.t. the control. More...
|
|
| AbstractDynamicsSolver () |
|
virtual | ~AbstractDynamicsSolver () |
|
virtual void | InstantiateBase (const Initializer &init) |
| Instantiates the base properties of the DynamicsSolver. More...
|
|
virtual void | AssignScene (std::shared_ptr< Scene > scene_in) |
| Passes the Scene of the PlanningProblem to the DynamicsSolver. More...
|
|
virtual void | SetDt (double dt_in) |
| Sets the timestep dt to be used for integration. More...
|
|
virtual StateVector | F (const StateVector &x, const ControlVector &u) |
| State transition function. This internally computes the differential dynamics and applies the chosen integration scheme. More...
|
|
virtual void | ComputeDerivatives (const StateVector &x, const ControlVector &u) |
| Computes derivatives fx, fu, Fx, Fu [single call for efficiency, derivatives can be retrieved with get_fx, get_fu, get_Fx, get_Fu]. More...
|
|
const StateDerivative & | get_Fx () const |
| Returns derivative Fx computed by ComputeDerivatives. More...
|
|
const ControlDerivative & | get_Fu () const |
| Returns derivative Fu computed by ComputeDerivatives. More...
|
|
const StateDerivative & | get_fx () const |
| Returns derivative fx computed by ComputeDerivatives. More...
|
|
const ControlDerivative & | get_fu () const |
| Returns derivative fu computed by ComputeDerivatives. More...
|
|
StateDerivative | fx_fd (const StateVector &x, const ControlVector &u) |
| Derivative of the forward dynamics w.r.t. the state [finite differencing]. More...
|
|
ControlDerivative | fu_fd (const StateVector &x, const ControlVector &u) |
| Derivative of the forward dynamics w.r.t. the control [finite differencing]. More...
|
|
const bool & | get_has_second_order_derivatives () const |
| Returns whether second-order derivatives are available. More...
|
|
virtual Eigen::Tensor< T, 3 > | fxx (const StateVector &x, const ControlVector &u) |
|
virtual Eigen::Tensor< T, 3 > | fuu (const StateVector &x, const ControlVector &u) |
|
virtual Eigen::Tensor< T, 3 > | fxu (const StateVector &x, const ControlVector &u) |
|
StateVector | Simulate (const StateVector &x, const ControlVector &u, T t) |
| Simulates the dynamic system from starting state x using control u for t seconds. More...
|
|
virtual StateVector | StateDelta (const StateVector &x_1, const StateVector &x_2) |
| Return the difference of two state vectors. Used when e.g. angle differences need to be wrapped from [-pi; pi] Returns x_1-x_2. More...
|
|
void | StateDelta (const StateVector &x_1, const StateVector &x_2, Eigen::VectorXdRef xout) |
|
virtual Eigen::Matrix< T, Eigen::Dynamic, Eigen::Dynamic > | dStateDelta (const StateVector &x_1, const StateVector &x_2, const ArgumentPosition first_or_second) |
| Return the difference of the StateDelta operation between two state vectors. The ArgumentPosition argument can be used to select whether to take derivative w.r.t. x_1 or x_2. More...
|
|
virtual Hessian | ddStateDelta (const StateVector &x_1, const StateVector &x_2, const ArgumentPosition first_or_second) |
|
virtual Eigen::Matrix< T, Eigen::Dynamic, 1 > | GetPosition (Eigen::VectorXdRefConst x_in) |
| Returns the position-part of the state vector to update the scene. For types including SE(3) and rotation, convert to the appropriate representation here by overriding this method. More...
|
|
int | get_num_controls () const |
| Returns number of controls. More...
|
|
int | get_num_positions () const |
| Returns number of positions. More...
|
|
int | get_num_velocities () const |
| Returns number of velocities. More...
|
|
int | get_num_state () const |
| Returns size of state space (nx) More...
|
|
int | get_num_state_derivative () const |
| Returns size of derivative vector of state space (ndx) More...
|
|
T | get_dt () const |
| Returns integration timestep dt. More...
|
|
Integrator | get_integrator () const |
| Returns used integration scheme. More...
|
|
void | set_integrator (Integrator integrator_in) |
| Sets integrator type. More...
|
|
void | SetIntegrator (const std::string &integrator_in) |
| Sets integrator type based on request string. More...
|
|
const Eigen::MatrixXd & | get_control_limits () |
| Returns the control limits vector. More...
|
|
void | set_control_limits (Eigen::VectorXdRefConst control_limits_low, Eigen::VectorXdRefConst control_limits_high) |
| Sets the control limits. More...
|
|
const bool & | get_has_state_limits () const |
| Returns whether state limits are available. More...
|
|
void | ClampToStateLimits (Eigen::Ref< Eigen::VectorXd > state_in) |
| Clamps the passed in state to the state limits. More...
|
|
virtual ControlVector | InverseDynamics (const StateVector &state) |
| Returns a control vector corresponding to the state vector assuming zero acceleration. More...
|
|
virtual void | Integrate (const StateVector &x, const StateVector &dx, const double dt, StateVector &xout) |
| Integrates without performing dynamics. More...
|
|
| Object () |
|
virtual | ~Object () |
|
virtual std::string | type () const |
| Type Information wrapper: must be virtual so that it is polymorphic... More...
|
|
std::string | GetObjectName () |
|
void | InstantiateObject (const Initializer &init) |
|
virtual std::string | Print (const std::string &prepend) const |
|
| InstantiableBase ()=default |
|
virtual | ~InstantiableBase ()=default |
|
virtual std::vector< Initializer > | GetAllTemplates () const =0 |
|
void | InstantiateInternal (const Initializer &init) override |
|
Initializer | GetInitializerTemplate () override |
|
std::vector< Initializer > | GetAllTemplates () const override |
|
virtual void | Instantiate (const QuadrotorDynamicsSolverInitializer &init) |
|
const QuadrotorDynamicsSolverInitializer & | GetParameters () const |
|