base_nodes.cc
Go to the documentation of this file.
1 /******************************************************************************
2 Copyright (c) 2018, Alexander W. Winkler. All rights reserved.
3 
4 Redistribution and use in source and binary forms, with or without
5 modification, are permitted provided that the following conditions are met:
6 
7 * Redistributions of source code must retain the above copyright notice, this
8  list of conditions and the following disclaimer.
9 
10 * Redistributions in binary form must reproduce the above copyright notice,
11  this list of conditions and the following disclaimer in the documentation
12  and/or other materials provided with the distribution.
13 
14 * Neither the name of the copyright holder nor the names of its
15  contributors may be used to endorse or promote products derived from
16  this software without specific prior written permission.
17 
18 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19 AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21 DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
22 FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
24 SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
25 CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
26 OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 ******************************************************************************/
29 
32 
33 namespace towr {
34 
35 BaseNodes::BaseNodes (int n_nodes, std::string name) : Nodes(k3D, name)
36 {
37  int n_derivs = 2; // position and velocity
38  int n_variables = n_nodes*n_derivs*k3D;
39  InitMembers(n_nodes, n_variables);
40 }
41 
42 std::vector<BaseNodes::IndexInfo>
44 {
45  std::vector<IndexInfo> nodes;
46 
47  int n_opt_values_per_node_ = 2*GetDim();
48  int internal_id = idx%n_opt_values_per_node_; // 0...6 (p.x, p.y, p.z, v.x, v.y. v.z)
49 
50  IndexInfo node;
51  node.node_deriv_ = internal_id<GetDim()? kPos : kVel;
52  node.node_dim_ = internal_id%GetDim();
53  node.node_id_ = std::floor(idx/n_opt_values_per_node_);
54 
55  nodes.push_back(node);
56 
57  return nodes;
58 }
59 
60 } /* namespace towr */
virtual std::vector< IndexInfo > GetNodeInfoAtOptIndex(int idx) const override
The node information that the optimization index represents.
Definition: base_nodes.cc:43
int node_dim_
the dimension (x,y,z) of that optimization index.
Definition: nodes.h:64
Position and velocity of nodes used to generate a Hermite spline.
Definition: nodes.h:52
int GetDim() const
Definition: nodes.cc:162
void InitMembers(int n_nodes, int n_variables)
initializes the member variables.
Definition: nodes.cc:43
BaseNodes(int n_nodes, std::string variable_id)
Definition: base_nodes.cc:35
static constexpr int k3D
Dx node_deriv_
The derivative (pos,vel) of that optimziation index.
Definition: nodes.h:63
Holds information about the node the optimization index represents.
Definition: nodes.h:61
int node_id_
The ID of the node of the optimization index.
Definition: nodes.h:62


towr_core
Author(s): Alexander W. Winkler
autogenerated on Sat Apr 7 2018 02:15:57