![]() |
- 3.0.2 optimal control module.
|
A simple example with an 1d constraint. More...
#include <ConstraintComparison.h>
Public Types | |
typedef ct::core::tpl::TraitSelector< SCALAR >::Trait | Trait |
typedef ct::core::tpl::TraitSelector< ct::core::ADCGScalar >::Trait | TraitCG |
typedef ct::optcon::ConstraintBase< STATE_DIM, CONTROL_DIM, SCALAR > | Base |
typedef core::StateVector< STATE_DIM, SCALAR > | state_vector_t |
typedef core::ControlVector< CONTROL_DIM, SCALAR > | control_vector_t |
typedef Eigen::Matrix< SCALAR, Eigen::Dynamic, 1 > | VectorXs |
typedef Eigen::Matrix< SCALAR, Eigen::Dynamic, Eigen::Dynamic > | MatrixXs |
![]() | |
typedef core::StateVector< STATE_DIM, SCALAR > | state_vector_t |
typedef core::ControlVector< CONTROL_DIM, SCALAR > | control_vector_t |
typedef Eigen::Matrix< SCALAR, Eigen::Dynamic, 1 > | VectorXs |
typedef Eigen::Matrix< SCALAR, Eigen::Dynamic, Eigen::Dynamic > | MatrixXs |
Public Member Functions | |
ConstraintTerm1D () | |
virtual | ~ConstraintTerm1D () |
virtual ConstraintTerm1D< STATE_DIM, CONTROL_DIM, SCALAR > * | clone () const override |
Creates a new instance of the object with same properties than original. More... | |
virtual size_t | getConstraintSize () const override |
The evaluate method used for jit compilation in constraint container ad. More... | |
virtual VectorXs | evaluate (const state_vector_t &x, const control_vector_t &u, const SCALAR t) override |
The evaluation of the constraint violation. Note this method is SCALAR typed. More... | |
virtual Eigen::Matrix< ct::core::ADCGScalar, Eigen::Dynamic, 1 > | evaluateCppadCg (const core::StateVector< STATE_DIM, ct::core::ADCGScalar > &x, const core::ControlVector< CONTROL_DIM, ct::core::ADCGScalar > &u, ct::core::ADCGScalar t) override |
virtual MatrixXs | jacobianState (const state_vector_t &x, const control_vector_t &u, const SCALAR t) override |
Returns the constraint jacobian wrt state. More... | |
virtual MatrixXs | jacobianInput (const state_vector_t &x, const control_vector_t &u, const SCALAR t) override |
Returns the constraint jacobian wrt input. More... | |
![]() | |
ConstraintBase (std::string name="Unnamed") | |
Custom constructor. More... | |
ConstraintBase (const ConstraintBase &arg) | |
Copy constructor. More... | |
virtual | ~ConstraintBase () |
Destructor. More... | |
virtual VectorXs | getLowerBound () const |
Returns the lower constraint bound. More... | |
virtual VectorXs | getUpperBound () const |
Returns the upper constraint bound. More... | |
void | getName (std::string &constraintName) const |
Returns the constraint name. More... | |
void | setName (const std::string constraintName) |
Sets the constraint name. More... | |
virtual size_t | getNumNonZerosJacobianState () const |
Returns the number of nonzeros in the jacobian wrt state. The default implementation assumes a dense matrix with only nonzero elements. More... | |
virtual size_t | getNumNonZerosJacobianInput () const |
Returns the number of nonzeros in the jacobian wrt control input. The default implementation assumes a dense matrix with only nonzero elements. More... | |
virtual VectorXs | jacobianStateSparse (const state_vector_t &x, const control_vector_t &u, const SCALAR t) |
Returns the constraint jacobian wrt state in sparse structure. The default implementation maps the JacobianState matrix to a vector. More... | |
virtual VectorXs | jacobianInputSparse (const state_vector_t &x, const control_vector_t &u, const SCALAR t) |
Returns the constraint jacobian wrt control input in sparse structure. The default implementation maps the JacobianState matrix to a vector. More... | |
virtual void | sparsityPatternState (Eigen::VectorXi &rows, Eigen::VectorXi &cols) |
Generates the sparsity pattern of the jacobian wrt state. The default implementation returns a vector of ones corresponding to the dense jacobianState. More... | |
virtual void | sparsityPatternInput (Eigen::VectorXi &rows, Eigen::VectorXi &cols) |
Generates the sparsity pattern of the jacobian wrt control input. The default implementation returns a vector of ones corresponding to the dense jacobianInput. More... | |
Static Public Attributes | |
EIGEN_MAKE_ALIGNED_OPERATOR_NEW static const size_t | term_dim = 1 |
Additional Inherited Members | |
![]() | |
EIGEN_MAKE_ALIGNED_OPERATOR_NEW typedef ct::core::tpl::TraitSelector< SCALAR >::Trait | Trait |
![]() | |
static void | genDiagonalIndices (const size_t num_elements, Eigen::VectorXi &iRow_vec, Eigen::VectorXi &jCol_vec) |
upper bound on the constraints More... | |
static void | genSparseDiagonalIndices (const Eigen::VectorXi &diag_sparsity, Eigen::VectorXi &iRow_vec, Eigen::VectorXi &jCol_vec) |
Generates indices of a sparse diagonal square matrix. More... | |
static void | genBlockIndices (const size_t num_rows, const size_t num_cols, Eigen::VectorXi &iRow_vec, Eigen::VectorXi &jCol_vec) |
Generates indices of a full matrix. More... | |
![]() | |
VectorXs | lb_ |
VectorXs | ub_ |
lower bound on the constraints More... | |
A simple example with an 1d constraint.
typedef ct::core::tpl::TraitSelector<SCALAR>::Trait ct::optcon::example::ConstraintTerm1D< STATE_DIM, CONTROL_DIM, SCALAR >::Trait |
typedef ct::core::tpl::TraitSelector<ct::core::ADCGScalar>::Trait ct::optcon::example::ConstraintTerm1D< STATE_DIM, CONTROL_DIM, SCALAR >::TraitCG |
typedef ct::optcon::ConstraintBase<STATE_DIM, CONTROL_DIM, SCALAR> ct::optcon::example::ConstraintTerm1D< STATE_DIM, CONTROL_DIM, SCALAR >::Base |
typedef core::StateVector<STATE_DIM, SCALAR> ct::optcon::example::ConstraintTerm1D< STATE_DIM, CONTROL_DIM, SCALAR >::state_vector_t |
typedef core::ControlVector<CONTROL_DIM, SCALAR> ct::optcon::example::ConstraintTerm1D< STATE_DIM, CONTROL_DIM, SCALAR >::control_vector_t |
typedef Eigen::Matrix<SCALAR, Eigen::Dynamic, 1> ct::optcon::example::ConstraintTerm1D< STATE_DIM, CONTROL_DIM, SCALAR >::VectorXs |
typedef Eigen::Matrix<SCALAR, Eigen::Dynamic, Eigen::Dynamic> ct::optcon::example::ConstraintTerm1D< STATE_DIM, CONTROL_DIM, SCALAR >::MatrixXs |
|
inline |
|
inlinevirtual |
|
inlineoverridevirtual |
Creates a new instance of the object with same properties than original.
Implements ct::optcon::ConstraintBase< STATE_DIM, CONTROL_DIM, SCALAR >.
|
inlineoverridevirtual |
The evaluate method used for jit compilation in constraint container ad.
[in] | x | The state vector |
[in] | u | The control vector |
[in] | t | The time |
Implements ct::optcon::ConstraintBase< STATE_DIM, CONTROL_DIM, SCALAR >.
References ct::optcon::example::ConstraintTerm1D< STATE_DIM, CONTROL_DIM, SCALAR >::term_dim.
|
inlineoverridevirtual |
The evaluation of the constraint violation. Note this method is SCALAR typed.
[in] | x | The state vector |
[in] | u | The control vector |
[in] | t | The time |
Implements ct::optcon::ConstraintBase< STATE_DIM, CONTROL_DIM, SCALAR >.
|
inlineoverridevirtual |
|
inlineoverridevirtual |
Returns the constraint jacobian wrt state.
Reimplemented from ct::optcon::ConstraintBase< STATE_DIM, CONTROL_DIM, SCALAR >.
|
inlineoverridevirtual |
Returns the constraint jacobian wrt input.
Reimplemented from ct::optcon::ConstraintBase< STATE_DIM, CONTROL_DIM, SCALAR >.
References x.
|
static |