TrajectoryController.h
Go to the documentation of this file.
1/*
2 * This file is part of ArmarX.
3 *
4 * Copyright (C) 2011-2017, High Performance Humanoid Technologies (H2T), Karlsruhe Institute of Technology (KIT), all rights reserved.
5 *
6 * ArmarX is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 *
10 * ArmarX is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 *
18 * @package ArmarX
19 * @author Mirko Waechter( mirko.waechter at kit dot edu)
20 * @date 2017
21 * @copyright http://www.gnu.org/licenses/gpl-2.0.txt
22 * GNU General Public License
23 */
24#pragma once
25
26#include "PIDController.h"
27#include "Trajectory.h"
28
29namespace armarx
30{
31
33 {
34 public:
36 float kp,
37 float ki = 0.0f,
38 float kd = 0.0f,
39 bool threadSafe = true,
40 float maxIntegral = std::numeric_limits<float>::max());
41 const Eigen::VectorXf& update(double deltaT, const Eigen::VectorXf& currentPosition);
42 //const MultiDimPIDControllerPtr& getPid() const;
43 //void setPid(const MultiDimPIDControllerPtr& value);
44
45 double getCurrentTimestamp() const;
46
47 const TrajectoryPtr& getTraj() const;
48
51
52 const Eigen::VectorXf& getCurrentError() const;
53
54 const Eigen::VectorXf& getPositions() const;
55
56 protected:
59 //std::vector<PIDControllerPtr> pids;
61 Eigen::VectorXf positions;
62 Eigen::VectorXf veloctities;
63 Eigen::VectorXf currentError;
64 };
65
66 using TrajectoryControllerPtr = std::shared_ptr<TrajectoryController>;
67
68} // namespace armarx
const Eigen::VectorXf & getPositions() const
TrajectoryController()
Creates a new TrajectoryController and assigns a QWidget to handle.
MultiDimPIDControllerPtr pid
TrajectoryController(const TrajectoryPtr &traj, float kp, float ki=0.0f, float kd=0.0f, bool threadSafe=true, float maxIntegral=std::numeric_limits< float >::max())
static void UnfoldLimitlessJointPositions(TrajectoryPtr traj)
const TrajectoryPtr & getTraj() const
static void FoldLimitlessJointPositions(TrajectoryPtr traj)
const Eigen::VectorXf & getCurrentError() const
const Eigen::VectorXf & update(double deltaT, const Eigen::VectorXf &currentPosition)
This file offers overloads of toIce() and fromIce() functions for STL container types.
IceInternal::Handle< Trajectory > TrajectoryPtr
Definition Trajectory.h:52
std::shared_ptr< MultiDimPIDControllerTemplate<> > MultiDimPIDControllerPtr
std::shared_ptr< TrajectoryController > TrajectoryControllerPtr