phase_nodes.h
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 #ifndef TOWR_VARIABLES_PHASE_NODES_H_
00031 #define TOWR_VARIABLES_PHASE_NODES_H_
00032 
00033 #include "nodes.h"
00034 
00035 namespace towr {
00036 
00046 class PhaseNodes : public Nodes {
00047 public:
00048   using Ptr       = std::shared_ptr<PhaseNodes>;
00049   using OptNodeIs = int;
00050   using NodeIds   = std::vector<int>;
00051 
00052   enum Type {Force, Motion};
00053 
00057   struct PolyInfo {
00058     int phase_; 
00059     int poly_in_phase_; 
00060     int n_polys_in_phase_; 
00061     bool is_constant_; 
00062     PolyInfo(int phase, int poly_in_phase, int n_polys_in_phase, bool is_const);
00063   };
00064 
00074   PhaseNodes (int phase_count, bool in_contact_start, const std::string& var_name,
00075               int n_polys_in_changing_phase, Type type);
00076 
00077   virtual ~PhaseNodes() = default;
00078 
00079   virtual std::vector<IndexInfo> GetNodeInfoAtOptIndex(int idx) const override;
00080 
00084   Eigen::Vector3d GetValueAtStartOfPhase(int phase) const;
00085 
00089   int GetNodeIDAtStartOfPhase(int phase) const;
00090 
00096   int GetPhase(int node_id) const;
00097 
00102   virtual bool IsConstantNode(int node_id) const;
00103 
00110   NodeIds GetIndicesOfNonConstantNodes() const;
00111 
00118   virtual VecDurations
00119   ConvertPhaseToPolyDurations(const VecDurations& phase_durations) const;
00120 
00129   virtual double
00130   GetDerivativeOfPolyDurationWrtPhaseDuration(int polynomial_id) const;
00131 
00140   virtual int
00141   GetNumberOfPrevPolynomialsInPhase(int polynomial_id) const;
00142 
00147   virtual bool IsInConstantPhase(int polynomial_id) const;
00148 
00149 private:
00150   std::vector<PolyInfo> polynomial_info_;
00151 
00152   // maps from the nodes that are actually optimized over to all the nodes.
00153   // Optimized nodes are sometimes used twice in a constant phase.
00154   // This is where the constant phases are enforced.
00155   std::map<OptNodeIs, NodeIds > optnode_to_node_;
00156 
00160   int GetPolyIDAtStartOfPhase(int phase) const;
00161 
00162   static std::map<OptNodeIs, NodeIds>
00163   GetOptNodeToNodeMappings(const std::vector<PolyInfo>&);
00164 
00170   void SetBoundsEEMotion();
00171 
00177   void SetBoundsEEForce();
00178 
00179   std::vector<int> GetAdjacentPolyIds(int node_id) const;
00180 
00181 };
00182 } /* namespace towr */
00183 
00184 #endif /* TOWR_VARIABLES_PHASE_NODES_H_ */


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