2016-02-17 21:25:50 -04:00
|
|
|
#pragma once
|
2013-06-26 07:47:04 -03:00
|
|
|
|
|
|
|
/// @file AP_SpdHgtControl.h
|
|
|
|
/// @brief generic speed & height controller interface
|
|
|
|
|
|
|
|
/*
|
|
|
|
This defines a generic interface for speed & height controllers. Each
|
|
|
|
specific controller should be a subclass of this generic
|
|
|
|
interface. All variables used by controllers should be in their
|
|
|
|
own class.
|
|
|
|
*/
|
|
|
|
|
2016-12-13 22:19:56 -04:00
|
|
|
#include <AP_Vehicle/AP_Vehicle.h>
|
2013-06-26 07:47:04 -03:00
|
|
|
|
2019-06-27 00:28:27 -03:00
|
|
|
#include <stdint.h>
|
|
|
|
|
2013-06-26 07:47:04 -03:00
|
|
|
class AP_SpdHgtControl {
|
|
|
|
public:
|
|
|
|
// Update the internal state of the height and height rate estimator
|
|
|
|
// Update of the inertial speed rate estimate internal state
|
|
|
|
// Should be called at 50Hz or faster
|
2016-04-21 03:45:23 -03:00
|
|
|
virtual void update_50hz(void) = 0;
|
2013-06-26 07:47:04 -03:00
|
|
|
|
2013-10-11 23:12:16 -03:00
|
|
|
|
2013-06-26 07:47:04 -03:00
|
|
|
// Update of the pitch and throttle demands
|
|
|
|
// Should be called at 10Hz or faster
|
2013-07-09 07:50:37 -03:00
|
|
|
virtual void update_pitch_throttle( int32_t hgt_dem_cm,
|
|
|
|
int32_t EAS_dem_cm,
|
2016-12-13 22:19:56 -04:00
|
|
|
enum AP_Vehicle::FixedWing::FlightStage flight_stage,
|
2016-02-12 15:39:12 -04:00
|
|
|
float distance_beyond_land_wp,
|
2013-07-09 07:50:37 -03:00
|
|
|
int32_t ptchMinCO_cd,
|
2013-07-10 00:32:13 -03:00
|
|
|
int16_t throttle_nudge,
|
2014-11-11 22:33:14 -04:00
|
|
|
float hgt_afe,
|
2018-10-18 09:51:21 -03:00
|
|
|
float load_factor) = 0;
|
2013-06-26 07:47:04 -03:00
|
|
|
|
|
|
|
// demanded throttle in percentage
|
|
|
|
// should return 0 to 100
|
|
|
|
virtual int32_t get_throttle_demand(void)=0;
|
|
|
|
|
|
|
|
// demanded pitch angle in centi-degrees
|
|
|
|
// should return -9000 to +9000
|
|
|
|
virtual int32_t get_pitch_demand(void)=0;
|
|
|
|
|
|
|
|
// Rate of change of velocity along X body axis in m/s^2
|
|
|
|
virtual float get_VXdot(void)=0;
|
|
|
|
|
2014-03-19 17:57:01 -03:00
|
|
|
// return current target airspeed
|
|
|
|
virtual float get_target_airspeed(void) const = 0;
|
|
|
|
|
2014-08-06 20:29:40 -03:00
|
|
|
// return maximum climb rate
|
|
|
|
virtual float get_max_climbrate(void) const = 0;
|
|
|
|
|
2017-02-13 16:51:19 -04:00
|
|
|
// added to let SoaringController reset pitch integrator to zero
|
|
|
|
virtual void reset_pitch_I(void) = 0;
|
|
|
|
|
2016-04-13 13:07:33 -03:00
|
|
|
// return landing sink rate
|
|
|
|
virtual float get_land_sinkrate(void) const = 0;
|
|
|
|
|
|
|
|
// return landing airspeed
|
|
|
|
virtual float get_land_airspeed(void) const = 0;
|
2014-12-15 06:44:03 -04:00
|
|
|
|
2016-01-08 20:01:02 -04:00
|
|
|
// set path_proportion accessor
|
|
|
|
virtual void set_path_proportion(float path_proportion) = 0;
|
|
|
|
|
2020-02-06 00:43:26 -04:00
|
|
|
// reset on next loop
|
|
|
|
virtual void reset(void) = 0;
|
|
|
|
|
2018-10-18 09:51:21 -03:00
|
|
|
// set gliding requested flag
|
|
|
|
virtual void set_gliding_requested_flag(bool gliding_requested) = 0;
|
|
|
|
|
|
|
|
// set propulsion failed flag
|
|
|
|
virtual void set_propulsion_failed_flag(bool propulsion_failed) = 0;
|
|
|
|
|
2013-06-26 07:47:04 -03:00
|
|
|
// add new controllers to this enum. Users can then
|
|
|
|
// select which controller to use by setting the
|
|
|
|
// SPDHGT_CONTROLLER parameter
|
|
|
|
enum ControllerType {
|
|
|
|
CONTROLLER_TECS = 1
|
|
|
|
};
|
2013-10-11 23:12:16 -03:00
|
|
|
|
2013-06-26 07:47:04 -03:00
|
|
|
|
|
|
|
};
|