-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #157 from ye-luo-xi-tui/dev
Adopt windmill kinematics model
- Loading branch information
Showing
5 changed files
with
223 additions
and
117 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
143 changes: 143 additions & 0 deletions
143
rm_gimbal_controllers/include/rm_gimbal_controllers/bullet_solver/target_kinematics_model.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,143 @@ | ||
// | ||
// Created by yezi on 24-1-26. | ||
// | ||
|
||
#pragma once | ||
|
||
#include <tf2_geometry_msgs/tf2_geometry_msgs.h> | ||
#include <tf/transform_datatypes.h> | ||
|
||
class TargetKinematicsBase | ||
{ | ||
public: | ||
virtual ~TargetKinematicsBase() = default; | ||
virtual geometry_msgs::Point position(double time) = 0; | ||
virtual geometry_msgs::Vector3 velocity(double time) = 0; | ||
virtual geometry_msgs::Vector3 acceleration(double time) = 0; | ||
}; | ||
|
||
class NormalTargetKinematics : public TargetKinematicsBase | ||
{ | ||
public: | ||
NormalTargetKinematics(geometry_msgs::Point pos, geometry_msgs::Vector3 vel, double yaw, double v_yaw, double r) | ||
{ | ||
pos_ = pos; | ||
vel_ = vel; | ||
yaw_ = yaw; | ||
v_yaw_ = v_yaw; | ||
r_ = r; | ||
} | ||
|
||
protected: | ||
geometry_msgs::Point pos_; | ||
geometry_msgs::Vector3 vel_; | ||
double yaw_; | ||
double v_yaw_; | ||
double r_; | ||
}; | ||
|
||
class TrackedTargetKinematics : public NormalTargetKinematics | ||
{ | ||
public: | ||
TrackedTargetKinematics(geometry_msgs::Point pos, geometry_msgs::Vector3 vel, double yaw, double v_yaw, double r) | ||
: NormalTargetKinematics(pos, vel, yaw, v_yaw, r) | ||
{ | ||
} | ||
geometry_msgs::Point position(double time) override | ||
{ | ||
geometry_msgs::Point target_pos; | ||
target_pos.x = pos_.x + vel_.x * time - r_ * cos(yaw_ + v_yaw_ * time); | ||
target_pos.y = pos_.y + vel_.y * time - r_ * sin(yaw_ + v_yaw_ * time); | ||
target_pos.z = pos_.z + vel_.z * time; | ||
return target_pos; | ||
} | ||
geometry_msgs::Vector3 velocity(double time) override | ||
{ | ||
geometry_msgs::Vector3 target_vel; | ||
target_vel.x = vel_.x + v_yaw_ * r_ * sin(yaw_ + v_yaw_ * time); | ||
target_vel.y = vel_.y - v_yaw_ * r_ * cos(yaw_ + v_yaw_ * time); | ||
return target_vel; | ||
} | ||
geometry_msgs::Vector3 acceleration(double time) override | ||
{ | ||
geometry_msgs::Vector3 target_accel; | ||
target_accel.x = pow(v_yaw_, 2) * r_ * cos(yaw_ + v_yaw_ * time); | ||
target_accel.y = pow(v_yaw_, 2) * r_ * sin(yaw_ + v_yaw_ * time); | ||
return target_accel; | ||
} | ||
}; | ||
|
||
class UntrackedTargetKinematic : public NormalTargetKinematics | ||
{ | ||
public: | ||
UntrackedTargetKinematic(geometry_msgs::Point pos, geometry_msgs::Vector3 vel, double yaw, double v_yaw, double r) | ||
: NormalTargetKinematics(pos, vel, yaw, v_yaw, r) | ||
{ | ||
} | ||
geometry_msgs::Point position(double time) override | ||
{ | ||
geometry_msgs::Point target_pos; | ||
double target_center_pos[2]; | ||
target_center_pos[0] = pos_.x + vel_.x * time; | ||
target_center_pos[1] = pos_.y + vel_.y * time; | ||
target_pos.x = target_center_pos[0] - r_ * cos(atan2(target_center_pos[1], target_center_pos[0])); | ||
target_pos.y = target_center_pos[1] - r_ * sin(atan2(target_center_pos[1], target_center_pos[0])); | ||
target_pos.z = pos_.z + vel_.z * time; | ||
return target_pos; | ||
} | ||
geometry_msgs::Vector3 velocity(double time) override | ||
{ | ||
geometry_msgs::Vector3 target_vel; | ||
return target_vel; | ||
} | ||
geometry_msgs::Vector3 acceleration(double time) override | ||
{ | ||
geometry_msgs::Vector3 target_accel; | ||
return target_accel; | ||
} | ||
}; | ||
|
||
class WindmillKinematics : public TargetKinematicsBase | ||
{ | ||
public: | ||
WindmillKinematics(double theta, double theta_dot, double radius, geometry_msgs::TransformStamped windmill2odom) | ||
{ | ||
theta_ = theta; | ||
theta_dot_ = theta_dot; | ||
radius_ = radius; | ||
windmill2odom_ = windmill2odom; | ||
} | ||
geometry_msgs::Point position(double time) override | ||
{ | ||
geometry_msgs::Point target_pos; | ||
target_pos.x = 0.; | ||
target_pos.y = -radius_ * sin(theta_ + theta_dot_ * time); | ||
target_pos.z = radius_ * cos(theta_ + theta_dot_ * time); | ||
tf2::doTransform(target_pos, target_pos, windmill2odom_); | ||
return target_pos; | ||
} | ||
geometry_msgs::Vector3 velocity(double time) override | ||
{ | ||
geometry_msgs::Vector3 target_vel; | ||
target_vel.x = 0.; | ||
target_vel.y = -theta_dot_ * radius_ * cos(theta_ + theta_dot_ * time); | ||
target_vel.z = -theta_dot_ * radius_ * sin(theta_ + theta_dot_ * time); | ||
tf2::doTransform(target_vel, target_vel, windmill2odom_); | ||
return target_vel; | ||
} | ||
geometry_msgs::Vector3 acceleration(double time) override | ||
{ | ||
geometry_msgs::Vector3 target_accel; | ||
target_accel.x = 0.; | ||
target_accel.y = pow(theta_dot_, 2) * radius_ * sin(theta_ + theta_dot_ * time); | ||
target_accel.z = -pow(theta_dot_, 2) * radius_ * cos(theta_ + theta_dot_ * time); | ||
tf2::doTransform(target_accel, target_accel, windmill2odom_); | ||
return target_accel; | ||
} | ||
|
||
private: | ||
double theta_; | ||
double theta_dot_; | ||
double radius_; | ||
geometry_msgs::TransformStamped windmill2odom_; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.