10 #ifndef CROCODDYL_CORE_DIFF_ACTION_BASE_HPP_
11 #define CROCODDYL_CORE_DIFF_ACTION_BASE_HPP_
13 #include "crocoddyl/core/fwd.hpp"
14 #include "crocoddyl/core/state-base.hpp"
121 template <
typename _Scalar>
124 EIGEN_MAKE_ALIGNED_OPERATOR_NEW
126 typedef _Scalar Scalar;
127 typedef typename ScalarSelector<Scalar>::type ScalarType;
132 typedef typename MathBase::VectorXs VectorXs;
133 typedef typename MathBase::MatrixXs MatrixXs;
147 const std::size_t nu,
148 const std::size_t nr = 0,
149 const std::size_t ng = 0,
150 const std::size_t nh = 0,
151 const std::size_t ng_T = 0,
152 const std::size_t nh_T = 0);
162 virtual void calc(
const std::shared_ptr<DifferentialActionDataAbstract>& data,
163 const Eigen::Ref<const VectorXs>& x,
164 const Eigen::Ref<const VectorXs>& u) = 0;
177 virtual void calc(
const std::shared_ptr<DifferentialActionDataAbstract>& data,
178 const Eigen::Ref<const VectorXs>& x);
193 const std::shared_ptr<DifferentialActionDataAbstract>& data,
194 const Eigen::Ref<const VectorXs>& x,
195 const Eigen::Ref<const VectorXs>& u) = 0;
209 const std::shared_ptr<DifferentialActionDataAbstract>& data,
210 const Eigen::Ref<const VectorXs>& x);
217 virtual std::shared_ptr<DifferentialActionDataAbstract>
createData();
223 const std::shared_ptr<DifferentialActionDataAbstract>& data);
239 const std::shared_ptr<DifferentialActionDataAbstract>& data,
240 Eigen::Ref<VectorXs> u,
const Eigen::Ref<const VectorXs>& x,
241 const std::size_t maxiter = 100,
const Scalar tol = Scalar(1e-9));
255 const std::shared_ptr<DifferentialActionDataAbstract>& data,
256 const VectorXs& x,
const std::size_t maxiter = 100,
257 const Scalar tol = Scalar(1e-9));
292 const std::shared_ptr<StateAbstract>&
get_state()
const;
342 template <
class Scalar>
352 virtual void print(std::ostream& os)
const;
355 std::size_t ng_internal_;
357 std::size_t nh_internal_;
384 template <
class Scalar>
386 template <
class Scalar>
390 template <
typename _Scalar>
392 EIGEN_MAKE_ALIGNED_OPERATOR_NEW
394 typedef _Scalar Scalar;
396 typedef typename MathBase::VectorXs VectorXs;
397 typedef typename MathBase::MatrixXs MatrixXs;
399 template <
template <
typename Scalar>
class Model>
402 xout(model->get_state()->get_nv()),
403 Fx(model->get_state()->get_nv(), model->get_state()->get_ndx()),
404 Fu(model->get_state()->get_nv(), model->get_nu()),
406 Lx(model->get_state()->get_ndx()),
408 Lxx(model->get_state()->get_ndx(), model->get_state()->get_ndx()),
409 Lxu(model->get_state()->get_ndx(), model->get_nu()),
410 Luu(model->get_nu(), model->get_nu()),
411 g(model->get_ng() > model->get_ng_T() ? model->get_ng()
412 : model->get_ng_T()),
413 Gx(model->get_ng() > model->get_ng_T() ? model->get_ng()
415 model->get_state()->get_ndx()),
416 Gu(model->get_ng() > model->get_ng_T() ? model->get_ng()
419 h(model->get_nh() > model->get_nh_T() ? model->get_nh()
420 : model->get_nh_T()),
421 Hx(model->get_nh() > model->get_nh_T() ? model->get_nh()
423 model->get_state()->get_ndx()),
424 Hu(model->get_nh() > model->get_nh_T() ? model->get_nh()
474 #include "crocoddyl/core/diff-action-base.hxx"
476 CROCODDYL_DECLARE_EXTERN_TEMPLATE_CLASS(
478 CROCODDYL_DECLARE_EXTERN_TEMPLATE_STRUCT(
Manage the individual constraint models.
Abstract class for differential action model.
virtual std::size_t get_ng() const
Return the number of inequality constraints.
void set_g_lb(const VectorXs &g_lb)
Modify the lower bound of the inequality constraints.
std::shared_ptr< StateAbstract > state_
Model of the state.
VectorXs u_lb_
Lower control limits.
VectorXs u_ub_
Upper control limits.
virtual std::shared_ptr< DifferentialActionDataAbstract > createData()
Create the differential action data.
virtual std::size_t get_nh() const
Return the number of equality constraints.
virtual void print(std::ostream &os) const
Print relevant information of the differential action model.
void set_u_ub(const VectorXs &u_ub)
Modify the control upper bounds.
const VectorXs & get_u_ub() const
Return the control upper bound.
virtual void calc(const std::shared_ptr< DifferentialActionDataAbstract > &data, const Eigen::Ref< const VectorXs > &x, const Eigen::Ref< const VectorXs > &u)=0
Compute the system acceleration and cost value.
VectorXs g_ub_
Lower bound of the inequality constraints.
friend std::ostream & operator<<(std::ostream &os, const DifferentialActionModelAbstractTpl< Scalar > &model)
Print information on the differential action model.
bool get_has_control_limits() const
Indicates if there are defined control limits.
std::size_t nh_T_
Number of equality terminal constraints.
virtual const VectorXs & get_g_lb() const
Return the lower bound of the inequality constraints.
VectorXs quasiStatic_x(const std::shared_ptr< DifferentialActionDataAbstract > &data, const VectorXs &x, const std::size_t maxiter=100, const Scalar tol=Scalar(1e-9))
void update_has_control_limits()
Update the status of the control limits (i.e. if there are defined limits)
virtual std::size_t get_nh_T() const
Return the number of equality terminal constraints.
const std::shared_ptr< StateAbstract > & get_state() const
Return the state.
std::size_t nu_
Control dimension.
VectorXs unone_
Neutral state.
virtual bool checkData(const std::shared_ptr< DifferentialActionDataAbstract > &data)
Checks that a specific data belongs to this model.
std::size_t nr_
Dimension of the cost residual.
std::size_t nh_
Number of equality constraints.
virtual void quasiStatic(const std::shared_ptr< DifferentialActionDataAbstract > &data, Eigen::Ref< VectorXs > u, const Eigen::Ref< const VectorXs > &x, const std::size_t maxiter=100, const Scalar tol=Scalar(1e-9))
Computes the quasic static commands.
std::size_t get_nr() const
Return the dimension of the cost-residual vector.
virtual void calcDiff(const std::shared_ptr< DifferentialActionDataAbstract > &data, const Eigen::Ref< const VectorXs > &x)
Compute the derivatives of the cost functions with respect to the state only.
DifferentialActionModelAbstractTpl(std::shared_ptr< StateAbstract > state, const std::size_t nu, const std::size_t nr=0, const std::size_t ng=0, const std::size_t nh=0, const std::size_t ng_T=0, const std::size_t nh_T=0)
Initialize the differential action model.
std::size_t ng_T_
Number of inequality terminal constraints.
void set_g_ub(const VectorXs &g_ub)
Modify the upper bound of the inequality constraints.
virtual std::size_t get_ng_T() const
Return the number of inequality terminal constraints.
void set_u_lb(const VectorXs &u_lb)
Modify the control lower bounds.
VectorXs g_lb_
Lower bound of the inequality constraints.
virtual const VectorXs & get_g_ub() const
Return the upper bound of the inequality constraints.
virtual void calcDiff(const std::shared_ptr< DifferentialActionDataAbstract > &data, const Eigen::Ref< const VectorXs > &x, const Eigen::Ref< const VectorXs > &u)=0
Compute the derivatives of the dynamics and cost functions.
virtual void calc(const std::shared_ptr< DifferentialActionDataAbstract > &data, const Eigen::Ref< const VectorXs > &x)
Compute the total cost value for nodes that depends only on the state.
const VectorXs & get_u_lb() const
Return the control lower bound.
std::size_t ng_
Number of inequality constraints.
std::size_t get_nu() const
Return the dimension of the control input.
Abstract class for an integrated action model.
Abstract class for the state representation.
MatrixXs Fx
Jacobian of the dynamics w.r.t. the state .
MatrixXs Fu
Jacobian of the dynamics w.r.t. the control .
VectorXs h
Equality constraint values.
MatrixXs Luu
Hessian of the cost w.r.t. the control .
VectorXs g
Inequality constraint values.
VectorXs Lx
Jacobian of the cost w.r.t. the state .
MatrixXs Lxx
Hessian of the cost w.r.t. the state .
VectorXs Lu
Jacobian of the cost w.r.t. the control .
VectorXs xout
evolution state