#include <final_state_cost.h>
Public Member Functions | |
bool | checkParameters (int state_dim, int control_dim, std::stringstream *issues) const override |
void | computeNonIntegralStateTerm (int k, const Eigen::Ref< const Eigen::VectorXd > &x_k, Eigen::Ref< Eigen::VectorXd > cost) const override |
FinalStageCost::Ptr | getInstance () const override |
Return a newly created shared instance of the implemented class. More... | |
int | getNonIntegralStateTermDimension (int k) const override |
const Eigen::MatrixXd & | getWeightQf () const override |
QuadraticFinalStateCostRiccati () | |
QuadraticFinalStateCostRiccati (SystemDynamicsInterface::Ptr dynamics, const Eigen::Ref< const Eigen::MatrixXd > &Q, const Eigen::Ref< const Eigen::MatrixXd > &R) | |
void | setLsqForm (bool lsq_form) |
void | setSystemDynamics (SystemDynamicsInterface::Ptr dynamics) |
bool | setWeightQ (const Eigen::Ref< const Eigen::MatrixXd > &Q) |
bool | setWeightQ (const Eigen::DiagonalMatrix< double, -1 > &Q) |
bool | setWeightR (const Eigen::Ref< const Eigen::MatrixXd > &R) |
bool | setWeightR (const Eigen::DiagonalMatrix< double, -1 > &R) |
bool | update (int n, double t, ReferenceTrajectoryInterface &xref, ReferenceTrajectoryInterface &uref, ReferenceTrajectoryInterface *sref, bool single_dt, const Eigen::VectorXd &x0, StagePreprocessor::Ptr stage_preprocessor, const std::vector< double > &dts, const DiscretizationGridInterface *) override |
![]() | |
bool | hasIntegralTerms (int k) const final |
bool | hasNonIntegralTerms (int k) const final |
![]() | |
virtual void | computeConcatenatedNonIntegralStateControlTerms (int k, const Eigen::Ref< const Eigen::VectorXd > &x_k, const Eigen::Ref< const Eigen::VectorXd > &u_k, double dt_k, Eigen::Ref< Eigen::VectorXd > cost, bool lsq_mode=false) const |
virtual void | computeConcatenatedNonIntegralStateTerms (int k, const Eigen::Ref< const Eigen::VectorXd > &x_k, const Eigen::Ref< const Eigen::VectorXd > &u_k, double dt_k, Eigen::Ref< Eigen::VectorXd > cost, bool lsq_mode=false) const |
virtual void | computeNonIntegralStateDtTerm (int k, const Eigen::Ref< const Eigen::VectorXd > &x_k, double dt_k, Eigen::Ref< Eigen::VectorXd > cost) const |
computeNonIntegralStateDtTerm: warning: currently only supported for full discretization More... | |
virtual int | getConcatenatedNonIntegralStateControlTermDimension (int k, bool lsq_mode=false) const |
virtual int | getConcatenatedNonIntegralStateTermDimension (int k, bool lsq_mode=false) const |
virtual int | getNonIntegralStateDtTermDimension (int k) const |
virtual bool | isLinearNonIntegralControlTerm (int k) const |
virtual bool | isLinearNonIntegralDtTerm (int k) const |
virtual bool | isLinearNonIntegralStateTerm (int k) const |
virtual bool | isLsqFormNonIntegralControlTerm (int k) const |
virtual bool | isLsqFormNonIntegralDtTerm (int k) const |
virtual bool | isLsqFormNonIntegralStateTerm (int k) const |
virtual | ~StageFunction ()=default |
Default destructor. More... | |
Protected Member Functions | |
bool | computeWeightQfSqrt () |
Protected Attributes | |
bool | _are_solved_before = false |
SystemDynamicsInterface::Ptr | _dynamics |
bool | _lsq_form = true |
Eigen::MatrixXd | _Q |
bool | _Q_diagonal_mode_intentionally = false |
Eigen::MatrixXd | _Qf |
Eigen::MatrixXd | _Qf_sqrt |
Eigen::MatrixXd | _R |
bool | _R_diagonal_mode_intentionally = false |
Eigen::VectorXd | _steady_state_u |
Eigen::VectorXd | _steady_state_x |
const ReferenceTrajectoryInterface * | _x_ref = nullptr |
bool | _zero_x_ref = false |
Additional Inherited Members | |
![]() | |
using | ConstPtr = std::shared_ptr< const BaseQuadraticFinalStateCost > |
using | Ptr = std::shared_ptr< BaseQuadraticFinalStateCost > |
![]() | |
using | ConstPtr = std::shared_ptr< const FinalStageCost > |
using | Ptr = std::shared_ptr< FinalStageCost > |
![]() | |
using | ConstPtr = std::shared_ptr< const StageFunction > |
using | Ptr = std::shared_ptr< StageFunction > |
Definition at line 103 of file final_state_cost.h.
|
inline |
Definition at line 106 of file final_state_cost.h.
|
inline |
Definition at line 108 of file final_state_cost.h.
|
overridevirtual |
Reimplemented from corbo::StageFunction.
Definition at line 348 of file final_state_cost.cpp.
|
overridevirtual |
Implements corbo::FinalStageCost.
Definition at line 332 of file final_state_cost.cpp.
|
protected |
Definition at line 319 of file final_state_cost.cpp.
|
inlineoverridevirtual |
Return a newly created shared instance of the implemented class.
Implements corbo::FinalStageCost.
Definition at line 116 of file final_state_cost.h.
|
inlineoverridevirtual |
Implements corbo::FinalStageCost.
Definition at line 118 of file final_state_cost.h.
|
inlineoverridevirtual |
Implements corbo::BaseQuadraticFinalStateCost.
Definition at line 133 of file final_state_cost.h.
|
inline |
Definition at line 131 of file final_state_cost.h.
|
inline |
Definition at line 120 of file final_state_cost.h.
bool corbo::QuadraticFinalStateCostRiccati::setWeightQ | ( | const Eigen::Ref< const Eigen::MatrixXd > & | Q | ) |
Definition at line 208 of file final_state_cost.cpp.
bool corbo::QuadraticFinalStateCostRiccati::setWeightQ | ( | const Eigen::DiagonalMatrix< double, -1 > & | Q | ) |
Definition at line 218 of file final_state_cost.cpp.
bool corbo::QuadraticFinalStateCostRiccati::setWeightR | ( | const Eigen::Ref< const Eigen::MatrixXd > & | R | ) |
Definition at line 227 of file final_state_cost.cpp.
bool corbo::QuadraticFinalStateCostRiccati::setWeightR | ( | const Eigen::DiagonalMatrix< double, -1 > & | R | ) |
Definition at line 237 of file final_state_cost.cpp.
|
overridevirtual |
Reimplemented from corbo::StageFunction.
Definition at line 246 of file final_state_cost.cpp.
|
protected |
Definition at line 162 of file final_state_cost.h.
|
protected |
Definition at line 158 of file final_state_cost.h.
|
protected |
Definition at line 161 of file final_state_cost.h.
|
protected |
Definition at line 151 of file final_state_cost.h.
|
protected |
Definition at line 153 of file final_state_cost.h.
|
protected |
Definition at line 157 of file final_state_cost.h.
|
protected |
Definition at line 156 of file final_state_cost.h.
|
protected |
Definition at line 152 of file final_state_cost.h.
|
protected |
Definition at line 154 of file final_state_cost.h.
|
protected |
Definition at line 160 of file final_state_cost.h.
|
protected |
Definition at line 159 of file final_state_cost.h.
|
protected |
Definition at line 164 of file final_state_cost.h.
|
protected |
Definition at line 165 of file final_state_cost.h.