Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037 #ifndef VIRTUALTARGET_HPP_
00038 #define VIRTUALTARGET_HPP_
00039 #include <labust/control/PIDController.h>
00040 #include <labust/math/NumberManipulation.hpp>
00041 #include <labust_uvapp/EnableControl.h>
00042
00043 #include <auv_msgs/NavSts.h>
00044 #include <auv_msgs/BodyForceReq.h>
00045 #include <geometry_msgs/PointStamped.h>
00046 #include <geometry_msgs/TwistStamped.h>
00047 #include <std_msgs/Bool.h>
00048 #include <std_msgs/Float32.h>
00049 #include <tf2_ros/buffer.h>
00050 #include <tf2_ros/transform_listener.h>
00051 #include <ros/ros.h>
00052
00053 namespace labust
00054 {
00055 namespace control
00056 {
00060 class VirtualTarget
00061 {
00062 public:
00066 VirtualTarget();
00070 void onInit();
00074 void step();
00078 void start();
00079
00080 private:
00084
00088
00092 void onEstimate(const auv_msgs::NavSts::ConstPtr& estimate);
00096 void onFlowTwist(const geometry_msgs::TwistStamped::ConstPtr& flowtwist);
00100 void onWindup(const auv_msgs::BodyForceReq::ConstPtr& tauAch);
00104 bool onEnableControl(labust_uvapp::EnableControl::Request& req,
00105 labust_uvapp::EnableControl::Response& resp);
00109 void onOpenLoopSurge(const std_msgs::Float32::ConstPtr& surge);
00113
00117
00121
00125 ros::NodeHandle nh,ph;
00129 ros::Time lastEst;
00133 double timeout;
00134
00138 void initialize_controller();
00139
00144 PIDController headingController;
00148 double Ts, safetyRadius, surge, flowSurgeEstimate, K1, K2, gammaARad;
00152 auv_msgs::NavSts state;
00156 bool enable, use_flow_frame;
00160 boost::mutex dataMux;
00161
00165 ros::Publisher nuRef, vtTwist;
00169 ros::Subscriber stateHat, enableFlag, windup, flowTwist, openLoopSurge;
00173 labust::math::unwrap yaw_ref;
00177 ros::ServiceServer enableControl;
00181
00185
00189 tf2_ros::Buffer transBuffer;
00193 tf2_ros::TransformListener listener;
00194 };
00195 }
00196 }
00197
00198
00199 #endif