/**************************************************************************** * * Copyright (c) 2013-2019 PX4 Development Team. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * 3. Neither the name PX4 nor the names of its contributors may be * used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. * ****************************************************************************/ #pragma once #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace time_literals; class AngularVelocityController : public ModuleBase, public ModuleParams, public px4::WorkItem { public: AngularVelocityController(); virtual ~AngularVelocityController(); /** @see ModuleBase */ static int task_spawn(int argc, char *argv[]); /** @see ModuleBase */ static int custom_command(int argc, char *argv[]); /** @see ModuleBase */ static int print_usage(const char *reason = nullptr); /** @see ModuleBase::print_status() */ int print_status() override; void Run() override; bool init(); private: /** * initialize some vectors/matrices from parameters */ void parameters_updated(); void vehicle_status_poll(); void publish_angular_acceleration_setpoint(); void publish_torque_setpoint(); void publish_thrust_setpoint(); void publish_actuator_controls(); AngularVelocityControl _control; ///< class for control calculations uORB::SubscriptionInterval _parameter_update_sub{ORB_ID(parameter_update), 1_s}; uORB::Subscription _control_allocator_status_sub{ORB_ID(control_allocator_status)}; /**< motor limits subscription */ uORB::Subscription _vehicle_angular_acceleration_sub{ORB_ID(vehicle_angular_acceleration)}; /**< vehicle angular acceleration subscription */ uORB::Subscription _vehicle_control_mode_sub{ORB_ID(vehicle_control_mode)}; /**< vehicle control mode subscription */ uORB::Subscription _vehicle_land_detected_sub{ORB_ID(vehicle_land_detected)}; /**< vehicle land detected subscription */ uORB::Subscription _vehicle_rates_setpoint_sub{ORB_ID(vehicle_rates_setpoint)}; /**< vehicle rates setpoint subscription */ uORB::Subscription _vehicle_status_sub{ORB_ID(vehicle_status)}; /**< vehicle status subscription */ uORB::Subscription _hover_thrust_estimate_sub{ORB_ID(hover_thrust_estimate)}; uORB::SubscriptionCallbackWorkItem _vehicle_angular_velocity_sub{this, ORB_ID(vehicle_angular_velocity)}; uORB::Publication _rate_ctrl_status_pub{ORB_ID(rate_ctrl_status)}; /**< controller status publication */ uORB::Publication _vehicle_angular_acceleration_setpoint_pub{ORB_ID(vehicle_angular_acceleration_setpoint)}; /**< angular acceleration setpoint publication */ uORB::Publication _vehicle_thrust_setpoint_pub{ORB_ID(vehicle_thrust_setpoint)}; /**< thrust setpoint publication */ uORB::Publication _vehicle_torque_setpoint_pub{ORB_ID(vehicle_torque_setpoint)}; /**< torque setpoint publication */ vehicle_control_mode_s _vehicle_control_mode{}; vehicle_status_s _vehicle_status{}; bool _landed{true}; bool _maybe_landed{true}; float _battery_status_scale{0.0f}; perf_counter_t _loop_perf; /**< loop duration performance counter */ matrix::Vector3f _angular_velocity_sp; /**< angular velocity setpoint */ matrix::Vector3f _angular_acceleration; /**< angular acceleration (estimated) */ matrix::Vector3f _thrust_sp; /**< thrust setpoint */ float _hover_thrust{0.5f}; /**< Normalized hover thrust **/ bool _gear_state_initialized{false}; /**< true if the gear state has been initialized */ hrt_abstime _task_start{hrt_absolute_time()}; hrt_abstime _last_run{0}; hrt_abstime _timestamp_sample{0}; DEFINE_PARAMETERS( (ParamFloat) _param_avc_x_p, (ParamFloat) _param_avc_x_i, (ParamFloat) _param_avc_x_i_lim, (ParamFloat) _param_avc_x_d, (ParamFloat) _param_avc_x_ff, (ParamFloat) _param_avc_x_k, (ParamFloat) _param_avc_y_p, (ParamFloat) _param_avc_y_i, (ParamFloat) _param_avc_y_i_lim, (ParamFloat) _param_avc_y_d, (ParamFloat) _param_avc_y_ff, (ParamFloat) _param_avc_y_k, (ParamFloat) _param_avc_z_p, (ParamFloat) _param_avc_z_i, (ParamFloat) _param_avc_z_i_lim, (ParamFloat) _param_avc_z_d, (ParamFloat) _param_avc_z_ff, (ParamFloat) _param_avc_z_k, (ParamFloat) _param_vm_mass, (ParamFloat) _param_vm_inertia_xx, (ParamFloat) _param_vm_inertia_yy, (ParamFloat) _param_vm_inertia_zz, (ParamFloat) _param_vm_inertia_xy, (ParamFloat) _param_vm_inertia_xz, (ParamFloat) _param_vm_inertia_yz, (ParamFloat) _param_mpc_thr_hover, (ParamBool) _param_mpc_use_hte ) };