Franka Robot demo 关节速度运动生成器控制运动 (generate_joint_velocity_motion.cpp)
// Copyright (c) 2023 Franka Robotics GmbH // Use of this source code is governed by the Apache-2.0 license, see LICENSE #include <cmath> #include <iostream> #include <franka/exception.h> #include <franka/robot.h> #include "examples_common.h" /** * @example generate_joint_velocity_motion.cpp * An example showing how to generate a joint velocity motion. 关于关节速度运动的例子 * * @warning Before executing this example, make sure there is enough space in front of the robot. */ int main(int argc, char** argv) { // 检查命令行参数 if (argc != 2) { std::cerr << "Usage: " << argv[0] << " <robot-hostname>" << std::endl; return -1; } try { franka::Robot robot(argv[1]);// 连接机器人 setDefaultBehavior(robot);// 设置默认行为 // First move the robot to a suitable joint configuration std::array<double, 7> q_goal = {{0, -M_PI_4, 0, -3 * M_PI_4, 0, M_PI_2, M_PI_4}}; MotionGenerator motion_generator(0.5, q_goal);// 首先把机器人移动到合适的位置 std::cout << "WARNING: This example will move the robot! " << "Please make sure to have the user stop button at hand!" << std::endl << "Press Enter to continue..." << std::endl; std::cin.ignore(); robot.control(motion_generator); std::cout << "Finished moving to initial joint configuration." << std::endl; // Set additional parameters always before the control loop, NEVER in the control loop! // Set collision behavior. robot.setCollisionBehavior(// 重置碰撞参数 {{20.0, 20.0, 18.0, 18.0, 16.0, 14.0, 12.0}}, {{20.0, 20.0, 18.0, 18.0, 16.0, 14.0, 12.0}}, {{20.0, 20.0, 18.0, 18.0, 16.0, 14.0, 12.0}}, {{20.0, 20.0, 18.0, 18.0, 16.0, 14.0, 12.0}}, {{20.0, 20.0, 20.0, 25.0, 25.0, 25.0}}, {{20.0, 20.0, 20.0, 25.0, 25.0, 25.0}}, {{20.0, 20.0, 20.0, 25.0, 25.0, 25.0}}, {{20.0, 20.0, 20.0, 25.0, 25.0, 25.0}}); double time_max = 1.0;// 最长时间 double omega_max = 1.0; // 最大关节速度 double time = 0.0; // 机器人关节4、5、6、7将以正弦波的速度模式进行运动。 // 在第一个时间周期内,关节将正向加速到最大速度的一半,然后减速回到0。 // 在第二个时间周期内,关节将反向加速到最大速度的一半,然后再次减速回到0。 // 这种运动在两个周期后结束,机器人将停止运动并输出结束消息。 robot.control( [=, &time](const franka::RobotState&, franka::Duration period) -> franka::JointVelocities { time += period.toSec(); double cycle = std::floor(std::pow(-1.0, (time - std::fmod(time, time_max)) / time_max)); double omega = cycle * omega_max / 2.0 * (1.0 - std::cos(2.0 * M_PI / time_max * time)); franka::JointVelocities velocities = {{0.0, 0.0, 0.0, omega, omega, omega, omega}}; if (time >= 2 * time_max) { std::cout << std::endl << "Finished motion, shutting down example" << std::endl; return franka::MotionFinished(velocities); } return velocities; }); } catch (const franka::Exception& e) { std::cout << e.what() << std::endl; return -1; } return 0; }
这个示例展示了如何通过正弦波关节速度控制来产生平滑的关节运动。通过这种方式,可以有效地控制机器人的关节运动,使其在指定时间内完成特定的运动任务,同时确保运动的平滑和安全。