Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030 #include <towr/constraints/spline_acc_constraint.h>
00031
00032 namespace towr {
00033
00034 SplineAccConstraint::SplineAccConstraint (const NodeSpline::Ptr& spline,
00035 std::string node_variable_name)
00036 :ConstraintSet(kSpecifyLater, "splineacc-" + node_variable_name)
00037 {
00038 spline_ = spline;
00039 node_variables_id_ = node_variable_name;
00040
00041 n_dim_ = spline->GetPoint(0.0).p().rows();
00042 n_junctions_ = spline->GetPolynomialCount() - 1;
00043 T_ = spline->GetPolyDurations();
00044
00045 SetRows(n_dim_*n_junctions_);
00046 }
00047
00048 Eigen::VectorXd
00049 SplineAccConstraint::GetValues () const
00050 {
00051 VectorXd g(GetRows());
00052
00053 for (int j=0; j<n_junctions_; ++j) {
00054 int p_prev = j;
00055 VectorXd acc_prev = spline_->GetPoint(p_prev, T_.at(p_prev)).a();
00056
00057 int p_next = j+1;
00058 VectorXd acc_next = spline_->GetPoint(p_next, 0.0).a();
00059
00060 g.segment(j*n_dim_, n_dim_) = acc_prev - acc_next;
00061 }
00062
00063 return g;
00064 }
00065
00066 void
00067 SplineAccConstraint::FillJacobianBlock (std::string var_set, Jacobian& jac) const
00068 {
00069 if (var_set == node_variables_id_) {
00070 for (int j=0; j<n_junctions_; ++j) {
00071 int p_prev = j;
00072 Jacobian acc_prev = spline_->GetJacobianWrtNodes(p_prev, T_.at(p_prev), kAcc);
00073
00074 int p_next = j+1;
00075 Jacobian acc_next = spline_->GetJacobianWrtNodes(p_next, 0.0, kAcc);
00076
00077 jac.middleRows(j*n_dim_, n_dim_) = acc_prev - acc_next;
00078 }
00079 }
00080 }
00081
00082 SplineAccConstraint::VecBound
00083 SplineAccConstraint::GetBounds () const
00084 {
00085 return VecBound(GetRows(), ifopt::BoundZero);
00086 }
00087
00088 }
00089