terrain_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/terrain_constraint.h>
00031 
00032 
00033 namespace towr {
00034 
00035 
00036 TerrainConstraint::TerrainConstraint (const HeightMap::Ptr& terrain,
00037                                       std::string ee_motion)
00038     :ConstraintSet(kSpecifyLater, "Terrain-Constraint-" + ee_motion)
00039 {
00040   ee_motion_id_ = ee_motion;
00041   terrain_ = terrain;
00042 }
00043 
00044 void
00045 TerrainConstraint::InitVariableDependedQuantities (const VariablesPtr& x)
00046 {
00047   ee_motion_ = x->GetComponent<PhaseNodes>(ee_motion_id_);
00048 
00049   // skip first node, b/c already constrained by initial stance
00050   for (int id=1; id<ee_motion_->GetNodes().size(); ++id)
00051     node_ids_.push_back(id);
00052 
00053   int constraint_count = node_ids_.size();
00054   SetRows(constraint_count);
00055 }
00056 
00057 Eigen::VectorXd
00058 TerrainConstraint::GetValues () const
00059 {
00060   VectorXd g(GetRows());
00061 
00062   auto nodes = ee_motion_->GetNodes();
00063   int row = 0;
00064   for (int id : node_ids_) {
00065     Vector3d p = nodes.at(id).p();
00066     g(row++) = p.z() - terrain_->GetHeight(p.x(), p.y());
00067   }
00068 
00069   return g;
00070 }
00071 
00072 TerrainConstraint::VecBound
00073 TerrainConstraint::GetBounds () const
00074 {
00075   VecBound bounds(GetRows());
00076   double max_distance_above_terrain = 1e20; // [m]
00077 
00078   int row = 0;
00079   for (int id : node_ids_) {
00080     if (ee_motion_->IsConstantNode(id))
00081       bounds.at(row) = ifopt::BoundZero;
00082     else
00083       bounds.at(row) = ifopt::Bounds(0.0, max_distance_above_terrain);
00084     row++;
00085   }
00086 
00087   return bounds;
00088 }
00089 
00090 void
00091 TerrainConstraint::FillJacobianBlock (std::string var_set, Jacobian& jac) const
00092 {
00093   if (var_set == ee_motion_->GetName()) {
00094 
00095     auto nodes = ee_motion_->GetNodes();
00096     int row = 0;
00097     for (int id : node_ids_) {
00098 
00099       jac.coeffRef(row, ee_motion_->Index(id, kPos, Z)) = 1.0;
00100 
00101       Vector3d p = nodes.at(id).p();
00102       for (auto dim : {X,Y})
00103         jac.coeffRef(row, ee_motion_->Index(id, kPos, dim)) = -terrain_->GetDerivativeOfHeightWrt(To2D(dim), p.x(), p.y());
00104 
00105       row++;
00106     }
00107   }
00108 }
00109 
00110 } /* namespace towr */


towr_core
Author(s): Alexander W. Winkler
autogenerated on Mon Apr 9 2018 03:12:44