chainfdsolver_recursive_newton_euler.hpp
Go to the documentation of this file.
1 // Copyright (C) 2018 Craig Carignan <craigc at ssl dot umd dot edu>
2 
3 // Version: 1.0
4 // Author: Craig Carignan <craigc at ssl dot umd dot edu>
5 // Maintainer: Ruben Smits <ruben dot smits at mech dot kuleuven dot be>
6 // URL: http://www.orocos.org/kdl
7 
8 // This library is free software; you can redistribute it and/or
9 // modify it under the terms of the GNU Lesser General Public
10 // License as published by the Free Software Foundation; either
11 // version 2.1 of the License, or (at your option) any later version.
12 
13 // This library is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 // Lesser General Public License for more details.
17 
18 // You should have received a copy of the GNU Lesser General Public
19 // License along with this library; if not, write to the Free Software
20 // Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21 
22 #ifndef KDL_CHAIN_FDSOLVER_RECURSIVE_NEWTON_EULER_HPP
23 #define KDL_CHAIN_FDSOLVER_RECURSIVE_NEWTON_EULER_HPP
24 
25 #include "chainfdsolver.hpp"
27 #include "chaindynparam.hpp"
28 
29 namespace KDL{
43  public:
49  ChainFdSolver_RNE(const Chain& chain, Vector grav);
51 
62  int CartToJnt(const JntArray &q, const JntArray &q_dot, const JntArray &torques, const Wrenches& f_ext, JntArray &q_dotdot);
63 
65  virtual void updateInternalDataStructures();
66 
89  void RK4Integrator(unsigned int& nj, const double& t, double& dt, KDL::JntArray& q, KDL::JntArray& q_dot,
90  KDL::JntArray& torques, KDL::Wrenches& f_ext, KDL::ChainFdSolver_RNE& fdsolver,
91  KDL::JntArray& q_dotdot, KDL::JntArray& dq, KDL::JntArray& dq_dot,
92  KDL::JntArray& q_temp, KDL::JntArray& q_dot_temp);
93 
94  private:
95  const Chain& chain;
98  unsigned int nj;
99  unsigned int ns;
100  JntSpaceInertiaMatrix H;
102  Eigen::MatrixXd H_eig;
103  Eigen::VectorXd Tzeroacc_eig;
104  Eigen::MatrixXd L_eig;
105  Eigen::VectorXd D_eig;
106  Eigen::VectorXd r_eig;
107  Eigen::VectorXd acc_eig;
108  };
109 }
110 
111 #endif
void RK4Integrator(unsigned int &nj, const double &t, double &dt, KDL::JntArray &q, KDL::JntArray &q_dot, KDL::JntArray &torques, KDL::Wrenches &f_ext, KDL::ChainFdSolver_RNE &fdsolver, KDL::JntArray &q_dotdot, KDL::JntArray &dq, KDL::JntArray &dq_dot, KDL::JntArray &q_temp, KDL::JntArray &q_dot_temp)
This class encapsulates a serial kinematic interconnection structure. It is built out of segments...
Definition: chain.hpp:35
This class represents an fixed size array containing joint values of a KDL::Chain.
Definition: jntarray.hpp:69
Recursive newton euler forward dynamics solver.
int CartToJnt(const JntArray &q, const JntArray &q_dot, const JntArray &torques, const Wrenches &f_ext, JntArray &q_dotdot)
ChainFdSolver_RNE(const Chain &chain, Vector grav)
A concrete implementation of a 3 dimensional vector class.
Definition: frames.hpp:162
Recursive newton euler inverse dynamics solver.
std::vector< Wrench > Wrenches
This abstract class encapsulates the inverse dynamics solver for a KDL::Chain.


orocos_kdl
Author(s):
autogenerated on Thu Apr 13 2023 02:19:14