-
Notifications
You must be signed in to change notification settings - Fork 88
/
Copy pathrunSimulationThrowBall.cpp
135 lines (116 loc) · 3.69 KB
/
runSimulationThrowBall.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
/**
* \file runSimulationThrowBall.cpp
* \author Freek Stulp
*
* \ingroup Demos
*
* This file is part of DmpBbo, a set of libraries and programs for the
* black-box optimization of dynamical movement primitives.
* Copyright (C) 2014 Freek Stulp, ENSTA-ParisTech
*
* DmpBbo is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
* DmpBbo is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with DmpBbo. If not, see <http://www.gnu.org/licenses/>.
*/
#include "runSimulationThrowBall.hpp"
#include <fstream>
#include <iostream>
#include "dmp/Dmp.hpp"
#include "dmp/Trajectory.hpp"
using namespace std;
using namespace Eigen;
namespace DmpBbo {
ThrowBallSimulator::ThrowBallSimulator(void)
{
time = 0.0;
y_endeff = VectorXd::Zero(2);
yd_endeff = VectorXd::Zero(2);
ydd_endeff = VectorXd::Zero(2);
y_ball = VectorXd::Zero(2);
yd_ball = VectorXd::Zero(2);
ydd_ball = VectorXd::Zero(2);
ball_in_hand = true;
y_floor = -0.3;
}
void ThrowBallSimulator::integrateStep(double dt, Eigen::VectorXd y_des,
Eigen::VectorXd yd_des,
Eigen::VectorXd ydd_des)
{
// Simple version without dynamics for now: end_eff = end_eff_des
y_endeff = y_des;
yd_endeff = yd_des;
ydd_endeff = ydd_des;
if (ball_in_hand) {
// If the ball is in your hand, it moves along with your hand
y_ball = y_endeff;
yd_ball = yd_endeff;
ydd_ball = ydd_endeff;
if (time > 0.6) {
// Release the ball to throw it!
ball_in_hand = false;
}
} else // ball_in_hand is false => ball is flying through the air
{
ydd_ball(0) = 0.0;
ydd_ball(1) = -9.81; // Gravity
// Euler integration
yd_ball = yd_ball + dt * ydd_ball;
y_ball = y_ball + dt * yd_ball;
if (y_ball(1) < y_floor) {
// Ball hits the floor
y_ball(1) = y_floor;
// No more movement
yd_ball = VectorXd::Zero(2);
ydd_ball = VectorXd::Zero(2);
}
}
time += dt;
// if x(t_i-1,BALL_IN_CUP)
// % If the ball is in the cup, it does not move
// x(t_i,BALL_X:BALL_Y) = x(t_i-1,BALL_X:BALL_Y);
// x(t_i,BALL_IN_CUP) = 1; % Once in the cup, always in the cup
//
// else
//
// if x(t_i,HOLD_BALL)
// % If the ball is in your hand, it moves along with your hand
// x(t_i,BALL_X:BALL_Y) = x(t_i,REF_X:REF_Y);
// x(t_i,BALL_XD) = diff(x([t_i-1 t_i],BALL_X))/dt;
// x(t_i,BALL_YD) = diff(x([t_i-1 t_i],BALL_Y))/dt;
//
// else
// % If the ball is not in your hand, it simply falls
// x(t_i,BALL_XDD) = 0;
// x(t_i,BALL_YDD) = -g;
//
// % Euler integration
// x(t_i,BALL_XD:BALL_YD) = x(t_i-1,BALL_XD:BALL_YD) +
// dt*x(t_i,BALL_XDD:BALL_YDD); x(t_i,BALL_X:BALL_Y) =
// x(t_i-1,BALL_X:BALL_Y) + dt*x(t_i,BALL_XD:BALL_YD);
//
// end
}
int ThrowBallSimulator::getStateSize(void) { return 1 + 6 * 2 + 1; }
Eigen::VectorXd ThrowBallSimulator::getState(void)
{
VectorXd state(getStateSize());
state(0) = time;
state.segment(1, 2) = y_endeff;
state.segment(3, 2) = yd_endeff;
state.segment(5, 2) = ydd_endeff;
state.segment(7, 2) = y_ball;
state.segment(9, 2) = yd_ball;
state.segment(11, 2) = ydd_ball;
state(13) = (ball_in_hand ? 1.0 : 0.0);
return state;
}
} // namespace DmpBbo