Ruckig 0.13.0
Motion Generation for Robots and Machines
Loading...
Searching...
No Matches
Example 13: Custom Vector Type with Dynamic DoFs

C++

#include <deque>
#include <iostream>
template<class T, size_t DOFs>
class MinimalDynamicDofsVector {
std::deque<T> data;
public:
MinimalDynamicDofsVector() { }
MinimalDynamicDofsVector(std::initializer_list<T> a) {
data.resize(a.size());
std::copy_n(a.begin(), a.size(), std::begin(data));
}
T operator[](size_t i) const {
return data[i];
}
T& operator[](size_t i) {
return data[i];
}
size_t size() const {
return data.size();
}
void resize(size_t size) {
data.resize(size);
}
bool operator==(const MinimalDynamicDofsVector<T, DOFs>& rhs) const {
for (size_t dof = 0; dof < data.size(); ++dof) {
if (data[dof] != rhs[dof]) {
return false;
}
}
return true;
}
};
using namespace ruckig;
int main() {
// Create instances: the Ruckig OTG as well as input and output parameters
Ruckig<DynamicDOFs, MinimalDynamicDofsVector> otg(3, 0.01); // control cycle
// Set input parameters
input.current_position = {0.0, 0.0, 0.5};
input.current_velocity = {0.0, -2.2, -0.5};
input.current_acceleration = {0.0, 2.5, -0.5};
input.target_position = {5.0, -2.0, -3.5};
input.target_velocity = {0.0, -0.5, -2.0};
input.target_acceleration = {0.0, 0.0, 0.5};
input.max_velocity = {3.0, 1.0, 3.0};
input.max_acceleration = {3.0, 2.0, 1.0};
input.max_jerk = {4.0, 3.0, 2.0};
// Generate the trajectory within the control loop
std::cout << "t | position" << std::endl;
while (otg.update(input, output) == Result::Working) {
std::cout << output.time << " | " << join(output.new_position) << std::endl;
output.pass_to_input(input);
}
std::cout << "Trajectory duration: " << output.trajectory.get_duration() << " [s]." << std::endl;
}
int main()
Definition 01_position.cpp:8
Input of the Ruckig algorithm.
Definition input_parameter.hpp:44
Output of the Ruckig algorithm.
Definition output_parameter.hpp:15
Main interface for the Ruckig algorithm.
Definition ruckig.hpp:29
Definition block.hpp:13
std::string join(const Vector &array, bool high_precision=false)
Join a vector for easy printing (e.g. to std::cout)
Definition utils.hpp:40

Python

# ---
#
# Nothing to see here, as the custom vector types don't affect the Python version.
#
# ---

Output Trajectory