- 3.0.2 models module.
HyQInverseDynJacForward.h
Go to the documentation of this file.
1 /**********************************************************************************************************************
2 This file is part of the Control Toolbox (https://github.com/ethz-adrl/control-toolbox), copyright by ETH Zurich.
3 Licensed under the BSD-2 license (see LICENSE file in main directory)
4 **********************************************************************************************************************/
5 
6 #pragma once
7 
9 
10 namespace ct {
11 namespace models {
12 namespace HyQ {
13 
14 class HyQInverseDynJacForward : public core::Derivatives<54, 18, double>
15 {
16 public:
17  typedef Eigen::Matrix<double, 18, 54> JAC_TYPE;
18  typedef Eigen::Matrix<double, 54, 1> X_TYPE;
19 
21  {
22  jac_.setZero();
23  v_.fill(0.0);
24  };
25 
27  {
28  jac_.setZero();
29  v_.fill(0.0);
30  }
31 
33 
34  HyQInverseDynJacForward* clone() const override { return new HyQInverseDynJacForward(*this); }
35  JAC_TYPE jacobian(const Eigen::VectorXd& x_in) override;
36 
37 private:
38  JAC_TYPE jac_;
39  std::array<double, 337> v_;
40 };
41 
42 } /* namespace HyQ */
43 } /* namespace models */
44 } /* namespace ct */
Eigen::Matrix< double, 54, 1 > X_TYPE
Definition: HyQInverseDynJacForward.h:18
HyQInverseDynJacForward(const HyQInverseDynJacForward &other)
Definition: HyQInverseDynJacForward.h:26
Definition: HyQInverseDynJacForward.h:14
HyQInverseDynJacForward * clone() const override
Definition: HyQInverseDynJacForward.h:34
Eigen::Matrix< double, 18, 54 > JAC_TYPE
Definition: HyQInverseDynJacForward.h:17
JAC_TYPE jacobian(const Eigen::VectorXd &x_in) override
Definition: HyQInverseDynJacForward.cpp:12
HyQInverseDynJacForward()
Definition: HyQInverseDynJacForward.h:20
virtual ~HyQInverseDynJacForward()
Definition: HyQInverseDynJacForward.h:32