-
Notifications
You must be signed in to change notification settings - Fork 173
/
4_waypoints_online.cpp
57 lines (42 loc) · 1.81 KB
/
4_waypoints_online.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
// This example shows the usage of intermediate waypoints. It will only work with the Ruckig Pro version.
#include <iostream>
#include <ruckig/ruckig.hpp>
using namespace ruckig;
int main() {
const double control_cycle {0.01};
const size_t DOFs {3};
const size_t max_number_of_waypoints {10}; // for memory allocation
// Create instances: the Ruckig OTG as well as input and output parameters
Ruckig<DOFs> otg {control_cycle, max_number_of_waypoints};
InputParameter<DOFs> input;
OutputParameter<DOFs> output {max_number_of_waypoints};
// Set input parameters
input.current_position = {0.2, 0.0, -0.3};
input.current_velocity = {0.0, 0.2, 0.0};
input.current_acceleration = {0.0, 0.6, 0.0};
input.intermediate_positions = {
{1.4, -1.6, 1.0},
{-0.6, -0.5, 0.4},
{-0.4, -0.35, 0.0},
{0.8, 1.8, -0.1}
};
input.target_position = {0.5, 1.0, 0.0};
input.target_velocity = {0.2, 0.0, 0.3};
input.target_acceleration = {0.0, 0.1, -0.1};
input.max_velocity = {1.0, 2.0, 1.0};
input.max_acceleration = {3.0, 2.0, 2.0};
input.max_jerk = {6.0, 10.0, 20.0};
input.interrupt_calculation_duration = 500; // [µs]
std::cout << "t | p1 | p2 | p3" << std::endl;
double calculation_duration {0.0};
while (otg.update(input, output) == Result::Working) {
auto& p = output.new_position;
std::cout << output.time << " " << p[0] << " " << p[1] << " " << p[2] << std::endl;
output.pass_to_input(input);
if (output.new_calculation) {
calculation_duration = output.calculation_duration;
}
}
std::cout << "Reached target position in " << output.trajectory.get_duration() << " [s]." << std::endl;
std::cout << "Calculation in " << calculation_duration << " [µs]." << std::endl;
}