Abstract class for the actuation-mapping model. More...
#include <actuation-base.hpp>
Public Types | |
typedef ActuationDataAbstractTpl< Scalar > | ActuationDataAbstract |
typedef MathBaseTpl< Scalar > | MathBase |
typedef MathBase::MatrixXs | MatrixXs |
typedef StateAbstractTpl< Scalar > | StateAbstract |
typedef MathBase::VectorXs | VectorXs |
Public Member Functions | |
ActuationModelAbstractTpl (std::shared_ptr< StateAbstract > state, const std::size_t nu) | |
Initialize the actuation model. | |
void | calc (const std::shared_ptr< ActuationDataAbstract > &data, const Eigen::Ref< const VectorXs > &x) |
Ignore the computation of the actuation signal. | |
virtual void | calc (const std::shared_ptr< ActuationDataAbstract > &data, const Eigen::Ref< const VectorXs > &x, const Eigen::Ref< const VectorXs > &u)=0 |
Compute the actuation signal from the state point \(\mathbf{x}\in\mathbb{R}^{ndx}\) and joint torque inputs \(\mathbf{u}\in\mathbb{R}^{nu}\). | |
void | calcDiff (const std::shared_ptr< ActuationDataAbstract > &data, const Eigen::Ref< const VectorXs > &x) |
Ignore the computation of the Jacobians of the actuation function. | |
virtual void | calcDiff (const std::shared_ptr< ActuationDataAbstract > &data, const Eigen::Ref< const VectorXs > &x, const Eigen::Ref< const VectorXs > &u)=0 |
Compute the Jacobians of the actuation function. | |
virtual void | commands (const std::shared_ptr< ActuationDataAbstract > &data, const Eigen::Ref< const VectorXs > &x, const Eigen::Ref< const VectorXs > &tau)=0 |
Compute the joint torque input from the generalized torques. | |
virtual std::shared_ptr< ActuationDataAbstract > | createData () |
Create the actuation data. | |
std::size_t | get_nu () const |
Return the dimension of the joint-torque input. | |
const std::shared_ptr< StateAbstract > & | get_state () const |
Return the state. | |
virtual void | print (std::ostream &os) const |
Print relevant information of the residual model. | |
virtual void | torqueTransform (const std::shared_ptr< ActuationDataAbstract > &data, const Eigen::Ref< const VectorXs > &x, const Eigen::Ref< const VectorXs > &u) |
Compute the torque transform from generalized torques to joint torque inputs. | |
Public Attributes | |
EIGEN_MAKE_ALIGNED_OPERATOR_NEW typedef _Scalar | Scalar |
Protected Attributes | |
std::size_t | nu_ |
Dimension of joint torque inputs. | |
std::shared_ptr< StateAbstract > | state_ |
Model of the state. | |
Friends | |
template<class Scalar > | |
std::ostream & | operator<< (std::ostream &os, const ResidualModelAbstractTpl< Scalar > &model) |
Print information on the residual model. | |
Abstract class for the actuation-mapping model.
The generalized torques \(\boldsymbol{\tau}\in\mathbb{R}^{nv}\) can by any nonlinear function of the joint-torque inputs \(\mathbf{u}\in\mathbb{R}^{nu}\), and state point \(\mathbf{x}\in\mathbb{R}^{nx}\), where nv
, nu
, and ndx
are the number of joints, dimension of the joint torque input and state manifold, respectively. Additionally, the generalized torques are also named as the actuation signals of our system.
The main computations are carried out in calc()
, and calcDiff()
, where the former computes actuation signal, and the latter computes the Jacobians of the actuation-mapping function, i.e., \(\frac{\partial\boldsymbol{\tau}}{\partial\mathbf{x}}\) and \(\frac{\partial\boldsymbol{\tau}}{\partial\mathbf{u}}\). Note that calcDiff()
requires to run calc()
first.
calc()
, calcDiff()
, createData()
Definition at line 45 of file actuation-base.hpp.
typedef MathBaseTpl<Scalar> MathBase |
Definition at line 50 of file actuation-base.hpp.
typedef StateAbstractTpl<Scalar> StateAbstract |
Definition at line 51 of file actuation-base.hpp.
typedef ActuationDataAbstractTpl<Scalar> ActuationDataAbstract |
Definition at line 52 of file actuation-base.hpp.
typedef MathBase::VectorXs VectorXs |
Definition at line 53 of file actuation-base.hpp.
typedef MathBase::MatrixXs MatrixXs |
Definition at line 54 of file actuation-base.hpp.
ActuationModelAbstractTpl | ( | std::shared_ptr< StateAbstract > | state, |
const std::size_t | nu | ||
) |
Initialize the actuation model.
[in] | state | State description |
[in] | nu | Dimension of joint-torque input |
|
pure virtual |
Compute the actuation signal from the state point \(\mathbf{x}\in\mathbb{R}^{ndx}\) and joint torque inputs \(\mathbf{u}\in\mathbb{R}^{nu}\).
[in] | data | Actuation data |
[in] | x | State point \(\mathbf{x}\in\mathbb{R}^{ndx}\) |
[in] | u | Joint-torque input \(\mathbf{u}\in\mathbb{R}^{nu}\) |
Implemented in ActuationSquashingModelTpl< _Scalar >, ActuationModelNumDiffTpl< _Scalar >, ActuationModelFloatingBaseThrustersTpl< _Scalar >, ActuationModelFloatingBaseTpl< _Scalar >, ActuationModelFullTpl< _Scalar >, and ActuationModelMultiCopterBaseTpl< _Scalar >.
void calc | ( | const std::shared_ptr< ActuationDataAbstract > & | data, |
const Eigen::Ref< const VectorXs > & | x | ||
) |
Ignore the computation of the actuation signal.
It does not update the actuation signal as this function is used in the terminal nodes of an optimal control problem.
[in] | data | Actuation data |
[in] | x | State point \(\mathbf{x}\in\mathbb{R}^{ndx}\) |
|
pure virtual |
Compute the Jacobians of the actuation function.
[in] | data | Actuation data |
[in] | x | State point \(\mathbf{x}\in\mathbb{R}^{ndx}\) |
[in] | u | Joint-torque input \(\mathbf{u}\in\mathbb{R}^{nu}\) |
Implemented in ActuationSquashingModelTpl< _Scalar >, ActuationModelNumDiffTpl< _Scalar >, ActuationModelFloatingBaseThrustersTpl< _Scalar >, ActuationModelFloatingBaseTpl< _Scalar >, ActuationModelFullTpl< _Scalar >, and ActuationModelMultiCopterBaseTpl< _Scalar >.
void calcDiff | ( | const std::shared_ptr< ActuationDataAbstract > & | data, |
const Eigen::Ref< const VectorXs > & | x | ||
) |
Ignore the computation of the Jacobians of the actuation function.
It does not update the Jacobians of the actuation function as this function is used in the terminal nodes of an optimal control problem.
[in] | data | Actuation data |
[in] | x | State point \(\mathbf{x}\in\mathbb{R}^{ndx}\) |
|
pure virtual |
Compute the joint torque input from the generalized torques.
It stores the results in ActuationDataAbstractTpl::u
.
[in] | data | Actuation data |
[in] | x | State point \(\mathbf{x}\in\mathbb{R}^{ndx}\) |
[in] | tau | Generalized torques \(\mathbf{u}\in\mathbb{R}^{nv}\) |
Implemented in ActuationSquashingModelTpl< _Scalar >, ActuationModelNumDiffTpl< _Scalar >, ActuationModelFloatingBaseThrustersTpl< _Scalar >, ActuationModelFloatingBaseTpl< _Scalar >, ActuationModelFullTpl< _Scalar >, and ActuationModelMultiCopterBaseTpl< _Scalar >.
|
virtual |
Compute the torque transform from generalized torques to joint torque inputs.
It stores the results in ActuationDataAbstractTpl::Mtau
.
[in] | data | Actuation data |
[in] | x | State point \(\mathbf{x}\in\mathbb{R}^{ndx}\) |
[in] | tau | Joint-torque inputs \(\mathbf{u}\in\mathbb{R}^{nu}\) |
Reimplemented in ActuationModelNumDiffTpl< _Scalar >, ActuationModelFloatingBaseThrustersTpl< _Scalar >, ActuationModelFloatingBaseTpl< _Scalar >, ActuationModelFullTpl< _Scalar >, and ActuationModelMultiCopterBaseTpl< _Scalar >.
|
virtual |
Create the actuation data.
Reimplemented in ActuationSquashingModelTpl< _Scalar >, ActuationModelNumDiffTpl< _Scalar >, ActuationModelFloatingBaseThrustersTpl< _Scalar >, ActuationModelFloatingBaseTpl< _Scalar >, ActuationModelFullTpl< _Scalar >, and ActuationModelMultiCopterBaseTpl< _Scalar >.
|
virtual |
Print relevant information of the residual model.
[out] | os | Output stream object |
Reimplemented in ActuationModelFloatingBaseThrustersTpl< _Scalar >.
EIGEN_MAKE_ALIGNED_OPERATOR_NEW typedef _Scalar Scalar |
Definition at line 49 of file actuation-base.hpp.
|
protected |
Dimension of joint torque inputs.
Definition at line 172 of file actuation-base.hpp.
|
protected |
Model of the state.
Definition at line 173 of file actuation-base.hpp.