2015-05-29 23:12:49 -03:00
|
|
|
#include "Copter.h"
|
|
|
|
|
2019-05-09 23:18:49 -03:00
|
|
|
Mode::_TakeOff Mode::takeoff;
|
2017-12-12 06:34:49 -04:00
|
|
|
|
2015-04-29 23:52:19 -03:00
|
|
|
// This file contains the high-level takeoff logic for Loiter, PosHold, AltHold, Sport modes.
|
|
|
|
// The take-off can be initiated from a GCS NAV_TAKEOFF command which includes a takeoff altitude
|
|
|
|
// A safe takeoff speed is calculated and used to calculate a time_ms
|
|
|
|
// the pos_control target is then slowly increased until time_ms expires
|
2015-04-30 03:06:55 -03:00
|
|
|
|
2019-05-09 23:18:49 -03:00
|
|
|
bool Mode::do_user_takeoff_start(float takeoff_alt_cm)
|
2017-12-12 06:09:48 -04:00
|
|
|
{
|
2018-03-16 03:22:14 -03:00
|
|
|
copter.flightmode->takeoff.start(takeoff_alt_cm);
|
2017-12-12 06:09:48 -04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-04-29 23:52:19 -03:00
|
|
|
// initiate user takeoff - called when MAVLink TAKEOFF command is received
|
2019-05-09 23:18:49 -03:00
|
|
|
bool Mode::do_user_takeoff(float takeoff_alt_cm, bool must_navigate)
|
2015-04-30 03:06:55 -03:00
|
|
|
{
|
2017-12-12 06:09:48 -04:00
|
|
|
if (!copter.motors->armed()) {
|
|
|
|
return false;
|
|
|
|
}
|
2019-05-09 23:18:49 -03:00
|
|
|
if (!copter.ap.land_complete) {
|
2017-12-12 06:09:48 -04:00
|
|
|
// can't takeoff again!
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (!has_user_takeoff(must_navigate)) {
|
|
|
|
// this mode doesn't support user takeoff
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (takeoff_alt_cm <= copter.current_loc.alt) {
|
|
|
|
// can't takeoff downwards...
|
|
|
|
return false;
|
|
|
|
}
|
2015-07-01 09:32:40 -03:00
|
|
|
|
2017-12-12 06:09:48 -04:00
|
|
|
// Helicopters should return false if MAVlink takeoff command is received while the rotor is not spinning
|
2019-05-09 23:18:49 -03:00
|
|
|
if (motors->get_spool_state() != AP_Motors::SpoolState::THROTTLE_UNLIMITED && copter.ap.using_interlock) {
|
2017-12-12 06:09:48 -04:00
|
|
|
return false;
|
|
|
|
}
|
2015-07-01 09:32:40 -03:00
|
|
|
|
2017-12-12 06:09:48 -04:00
|
|
|
if (!do_user_takeoff_start(takeoff_alt_cm)) {
|
|
|
|
return false;
|
2015-04-30 03:06:55 -03:00
|
|
|
}
|
2017-12-12 06:09:48 -04:00
|
|
|
|
|
|
|
copter.set_auto_armed(true);
|
|
|
|
return true;
|
2015-04-30 03:06:55 -03:00
|
|
|
}
|
|
|
|
|
2015-06-21 23:59:43 -03:00
|
|
|
// start takeoff to specified altitude above home in centimeters
|
2019-05-09 23:18:49 -03:00
|
|
|
void Mode::_TakeOff::start(float alt_cm)
|
2015-04-30 03:06:55 -03:00
|
|
|
{
|
2019-04-08 03:37:41 -03:00
|
|
|
// indicate we are taking off
|
|
|
|
copter.set_land_complete(false);
|
|
|
|
// tell position controller to reset alt target and reset I terms
|
|
|
|
copter.set_throttle_takeoff();
|
|
|
|
|
2015-04-29 23:52:19 -03:00
|
|
|
// calculate climb rate
|
2019-01-24 01:01:46 -04:00
|
|
|
const float speed = MIN(copter.wp_nav->get_default_speed_up(), MAX(copter.g.pilot_speed_up*2.0f/3.0f, copter.g.pilot_speed_up-50.0f));
|
2015-04-30 03:06:55 -03:00
|
|
|
|
2015-04-29 23:52:19 -03:00
|
|
|
// sanity check speed and target
|
2019-04-08 03:37:41 -03:00
|
|
|
if (speed <= 0.0f || alt_cm <= 0.0f) {
|
2015-04-30 03:06:55 -03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-04-29 23:52:19 -03:00
|
|
|
// initialise takeoff state
|
2018-03-16 03:22:14 -03:00
|
|
|
_running = true;
|
|
|
|
max_speed = speed;
|
|
|
|
start_ms = millis();
|
|
|
|
alt_delta = alt_cm;
|
2015-04-30 03:06:55 -03:00
|
|
|
}
|
|
|
|
|
2015-04-30 03:52:32 -03:00
|
|
|
// stop takeoff
|
2019-05-09 23:18:49 -03:00
|
|
|
void Mode::_TakeOff::stop()
|
2015-04-30 03:52:32 -03:00
|
|
|
{
|
2018-03-16 03:22:14 -03:00
|
|
|
_running = false;
|
|
|
|
start_ms = 0;
|
2015-04-30 03:52:32 -03:00
|
|
|
}
|
|
|
|
|
2015-04-30 04:40:38 -03:00
|
|
|
// returns pilot and takeoff climb rates
|
|
|
|
// pilot_climb_rate is both an input and an output
|
|
|
|
// takeoff_climb_rate is only an output
|
|
|
|
// has side-effect of turning takeoff off when timeout as expired
|
2019-05-09 23:18:49 -03:00
|
|
|
void Mode::_TakeOff::get_climb_rates(float& pilot_climb_rate,
|
2018-03-16 03:22:14 -03:00
|
|
|
float& takeoff_climb_rate)
|
2015-04-30 03:06:55 -03:00
|
|
|
{
|
2015-04-30 04:40:38 -03:00
|
|
|
// return pilot_climb_rate if take-off inactive
|
2018-03-16 03:22:14 -03:00
|
|
|
if (!_running) {
|
2015-04-30 04:40:38 -03:00
|
|
|
takeoff_climb_rate = 0.0f;
|
|
|
|
return;
|
2015-04-30 03:06:55 -03:00
|
|
|
}
|
|
|
|
|
2015-11-04 02:25:19 -04:00
|
|
|
// acceleration of 50cm/s/s
|
2018-03-16 03:22:14 -03:00
|
|
|
static constexpr float TAKEOFF_ACCEL = 50.0f;
|
|
|
|
const float takeoff_minspeed = MIN(50.0f, max_speed);
|
|
|
|
const float time_elapsed = (millis() - start_ms) * 1.0e-3f;
|
|
|
|
const float speed = MIN(time_elapsed * TAKEOFF_ACCEL + takeoff_minspeed, max_speed);
|
2015-10-19 21:56:49 -03:00
|
|
|
|
2018-03-16 03:22:14 -03:00
|
|
|
const float time_to_max_speed = (max_speed - takeoff_minspeed) / TAKEOFF_ACCEL;
|
2015-10-19 21:56:49 -03:00
|
|
|
float height_gained;
|
|
|
|
if (time_elapsed <= time_to_max_speed) {
|
2018-03-16 03:22:14 -03:00
|
|
|
height_gained = 0.5f * TAKEOFF_ACCEL * sq(time_elapsed) + takeoff_minspeed * time_elapsed;
|
2015-10-19 21:56:49 -03:00
|
|
|
} else {
|
2018-03-16 03:22:14 -03:00
|
|
|
height_gained = 0.5f * TAKEOFF_ACCEL * sq(time_to_max_speed) + takeoff_minspeed * time_to_max_speed +
|
|
|
|
(time_elapsed - time_to_max_speed) * max_speed;
|
2015-10-19 21:56:49 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
// check if the takeoff is over
|
2018-03-16 03:22:14 -03:00
|
|
|
if (height_gained >= alt_delta) {
|
|
|
|
stop();
|
2015-04-30 03:06:55 -03:00
|
|
|
}
|
|
|
|
|
2015-04-30 04:40:38 -03:00
|
|
|
// if takeoff climb rate is zero return
|
2015-10-19 21:56:49 -03:00
|
|
|
if (speed <= 0.0f) {
|
2015-04-30 04:40:38 -03:00
|
|
|
takeoff_climb_rate = 0.0f;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// default take-off climb rate to maximum speed
|
2015-10-19 21:56:49 -03:00
|
|
|
takeoff_climb_rate = speed;
|
2015-04-30 04:40:38 -03:00
|
|
|
|
|
|
|
// if pilot's commands descent
|
|
|
|
if (pilot_climb_rate < 0.0f) {
|
|
|
|
// if overall climb rate is still positive, move to take-off climb rate
|
|
|
|
if (takeoff_climb_rate + pilot_climb_rate > 0.0f) {
|
|
|
|
takeoff_climb_rate = takeoff_climb_rate + pilot_climb_rate;
|
2018-03-16 03:22:14 -03:00
|
|
|
pilot_climb_rate = 0.0f;
|
2015-04-30 04:40:38 -03:00
|
|
|
} else {
|
|
|
|
// if overall is negative, move to pilot climb rate
|
|
|
|
pilot_climb_rate = pilot_climb_rate + takeoff_climb_rate;
|
|
|
|
takeoff_climb_rate = 0.0f;
|
|
|
|
}
|
|
|
|
} else { // pilot commands climb
|
|
|
|
// pilot climb rate is zero until it surpasses the take-off climb rate
|
|
|
|
if (pilot_climb_rate > takeoff_climb_rate) {
|
|
|
|
pilot_climb_rate = pilot_climb_rate - takeoff_climb_rate;
|
|
|
|
} else {
|
|
|
|
pilot_climb_rate = 0.0f;
|
|
|
|
}
|
|
|
|
}
|
2015-04-30 03:06:55 -03:00
|
|
|
}
|
2016-06-04 23:37:55 -03:00
|
|
|
|
2019-05-09 23:18:49 -03:00
|
|
|
void Mode::auto_takeoff_set_start_alt(void)
|
2016-06-04 23:37:55 -03:00
|
|
|
{
|
|
|
|
// start with our current altitude
|
|
|
|
auto_takeoff_no_nav_alt_cm = inertial_nav.get_altitude();
|
|
|
|
|
2019-04-08 05:15:57 -03:00
|
|
|
if (is_disarmed_or_landed() || !motors->get_interlock()) {
|
2016-08-15 00:57:38 -03:00
|
|
|
// we are not flying, add the wp_navalt_min
|
|
|
|
auto_takeoff_no_nav_alt_cm += g2.wp_navalt_min * 100;
|
2016-06-04 23:37:55 -03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
call attitude controller for automatic takeoff, limiting roll/pitch
|
2016-08-15 00:57:38 -03:00
|
|
|
if below wp_navalt_min
|
2016-06-04 23:37:55 -03:00
|
|
|
*/
|
2019-05-09 23:18:49 -03:00
|
|
|
void Mode::auto_takeoff_attitude_run(float target_yaw_rate)
|
2016-06-04 23:37:55 -03:00
|
|
|
{
|
|
|
|
float nav_roll, nav_pitch;
|
|
|
|
|
2016-08-15 00:57:38 -03:00
|
|
|
if (g2.wp_navalt_min > 0 && inertial_nav.get_altitude() < auto_takeoff_no_nav_alt_cm) {
|
2016-06-04 23:37:55 -03:00
|
|
|
// we haven't reached the takeoff navigation altitude yet
|
|
|
|
nav_roll = 0;
|
|
|
|
nav_pitch = 0;
|
|
|
|
// tell the position controller that we have limited roll/pitch demand to prevent integrator buildup
|
2017-01-09 03:31:26 -04:00
|
|
|
pos_control->set_limit_accel_xy();
|
2016-06-04 23:37:55 -03:00
|
|
|
} else {
|
2017-01-09 03:31:26 -04:00
|
|
|
nav_roll = wp_nav->get_roll();
|
|
|
|
nav_pitch = wp_nav->get_pitch();
|
2016-06-04 23:37:55 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
// roll & pitch from waypoint controller, yaw rate from pilot
|
2017-06-26 05:48:04 -03:00
|
|
|
attitude_control->input_euler_angle_roll_pitch_euler_rate_yaw(nav_roll, nav_pitch, target_yaw_rate);
|
2016-06-04 23:37:55 -03:00
|
|
|
}
|
2018-04-30 06:50:04 -03:00
|
|
|
|
2019-05-09 23:18:49 -03:00
|
|
|
bool Mode::is_taking_off() const
|
2018-04-30 06:50:04 -03:00
|
|
|
{
|
|
|
|
if (!has_user_takeoff(false)) {
|
|
|
|
return false;
|
|
|
|
}
|
2019-05-09 23:18:49 -03:00
|
|
|
if (copter.ap.land_complete) {
|
2018-04-30 06:50:04 -03:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (takeoff.running()) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|