spline_acc_constraint.cc
Go to the documentation of this file.
00001 /******************************************************************************
00002 Copyright (c) 2018, Alexander W. Winkler. All rights reserved.
00003 
00004 Redistribution and use in source and binary forms, with or without
00005 modification, are permitted provided that the following conditions are met:
00006 
00007 * Redistributions of source code must retain the above copyright notice, this
00008   list of conditions and the following disclaimer.
00009 
00010 * Redistributions in binary form must reproduce the above copyright notice,
00011   this list of conditions and the following disclaimer in the documentation
00012   and/or other materials provided with the distribution.
00013 
00014 * Neither the name of the copyright holder nor the names of its
00015   contributors may be used to endorse or promote products derived from
00016   this software without specific prior written permission.
00017 
00018 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
00019 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
00020 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
00021 DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
00022 FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
00023 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
00024 SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
00025 CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
00026 OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
00027 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
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; // id of previous polynomial
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; // id of previous polynomial
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 } /* namespace xpp */
00089 


towr
Author(s): Alexander W. Winkler
autogenerated on Mon Apr 15 2019 02:42:32