#include "Plane.h" /* control code for tiltrotors and tiltwings. Enabled by setting Q_TILT_MASK to a non-zero value */ /* calculate maximum tilt change as a proportion from 0 to 1 of tilt */ float QuadPlane::tilt_max_change(bool up) { float rate; if (up || tilt.max_rate_down_dps <= 0) { rate = tilt.max_rate_up_dps; } else { rate = tilt.max_rate_down_dps; } if (plane.control_mode == MANUAL && tilt.tilt_type != TILT_TYPE_BINARY) { // allow a minimum of 90 DPS in manual, to give fast control rate = MAX(rate, 90); } return rate * plane.G_Dt / 90.0f; } /* output a slew limited tiltrotor angle. tilt is from 0 to 1 */ void QuadPlane::tiltrotor_slew(float newtilt) { float max_change = tilt_max_change(newtiltset_thrust_compensation_callback(FUNCTOR_BIND_MEMBER(&QuadPlane::tilt_compensate, void, float *, uint8_t)); } /* update motor tilt for continuous tilt servos */ void QuadPlane::tiltrotor_continuous_update(void) { // default to inactive tilt.motors_active = false; // the maximum rate of throttle change float max_change; if (!in_vtol_mode() && !assisted_flight) { // we are in pure fixed wing mode. Move the tiltable motors all the way forward and run them as // a forward motor tiltrotor_slew(1); max_change = tilt_max_change(false); float new_throttle = constrain_float(SRV_Channels::get_output_scaled(SRV_Channel::k_throttle)*0.01, 0, 1); if (tilt.current_tilt < 1) { tilt.current_throttle = constrain_float(new_throttle, tilt.current_throttle-max_change, tilt.current_throttle+max_change); } else { tilt.current_throttle = new_throttle; } if (!hal.util->get_soft_armed()) { tilt.current_throttle = 0; } else { // the motors are all the way forward, start using them for fwd thrust uint8_t mask = is_zero(tilt.current_throttle)?0:(uint8_t)tilt.tilt_mask.get(); motors->output_motor_mask(tilt.current_throttle, mask); // prevent motor shutdown tilt.motors_active = true; } return; } // remember the throttle level we're using for VTOL flight float motors_throttle = motors->get_throttle(); max_change = tilt_max_change(motors_throttle= TRANSITION_TIMER) { // we are transitioning to fixed wing - tilt the motors all // the way forward tiltrotor_slew(1); } else { // until we have completed the transition we limit the tilt to // Q_TILT_MAX. Anything above 50% throttle gets // Q_TILT_MAX. Below 50% throttle we decrease linearly. This // relies heavily on Q_VFWD_GAIN being set appropriately. float settilt = constrain_float(SRV_Channels::get_output_scaled(SRV_Channel::k_throttle) / 50.0f, 0, 1); tiltrotor_slew(settilt * tilt.max_angle_deg / 90.0f); } } /* output a slew limited tiltrotor angle. tilt is 0 or 1 */ void QuadPlane::tiltrotor_binary_slew(bool forward) { SRV_Channels::set_output_scaled(SRV_Channel::k_motor_tilt, forward?1000:0); float max_change = tilt_max_change(!forward); if (forward) { tilt.current_tilt = constrain_float(tilt.current_tilt+max_change, 0, 1); } else { tilt.current_tilt = constrain_float(tilt.current_tilt-max_change, 0, 1); } // setup tilt compensation motors->set_thrust_compensation_callback(FUNCTOR_BIND_MEMBER(&QuadPlane::tilt_compensate, void, float *, uint8_t)); } /* update motor tilt for binary tilt servos */ void QuadPlane::tiltrotor_binary_update(void) { // motors always active tilt.motors_active = true; if (!in_vtol_mode()) { // we are in pure fixed wing mode. Move the tiltable motors // all the way forward and run them as a forward motor tiltrotor_binary_slew(true); float new_throttle = SRV_Channels::get_output_scaled(SRV_Channel::k_throttle)*0.01f; if (tilt.current_tilt >= 1) { uint8_t mask = is_zero(new_throttle)?0:(uint8_t)tilt.tilt_mask.get(); // the motors are all the way forward, start using them for fwd thrust motors->output_motor_mask(new_throttle, mask); } } else { tiltrotor_binary_slew(false); } } /* update motor tilt */ void QuadPlane::tiltrotor_update(void) { if (tilt.tilt_mask <= 0) { // no motors to tilt return; } if (tilt.tilt_type == TILT_TYPE_BINARY) { tiltrotor_binary_update(); } else { tiltrotor_continuous_update(); } } /* compensate for tilt in a set of motor outputs Compensation is of two forms. The first is to apply _tilt_factor, which is a compensation for the reduces vertical thrust when tilted. This is supplied by set_motor_tilt_factor(). The second compensation is to use equal thrust on all tilted motors when _tilt_equal_thrust is true. This is used when the motors are tilted by a large angle to prevent the roll and yaw controllers from causing instability. Typically this would be used when the motors are tilted beyond 45 degrees. At this angle it is assumed that roll control can be achieved using fixed wing control surfaces and yaw control with the remaining multicopter motors (eg. tricopter tail). By applying _tilt_equal_thrust the tilted motors effectively become a single pitch control motor. */ void QuadPlane::tilt_compensate(float *thrust, uint8_t num_motors) { float tilt_factor; if (tilt.current_tilt > 0.98f) { tilt_factor = 1.0 / cosf(radians(0.98f*90)); } else { tilt_factor = 1.0 / cosf(radians(tilt.current_tilt*90)); } // when we got past Q_TILT_MAX we gang the tilted motors together // to generate equal thrust. This makes them act as a single pitch // control motor while preventing them trying to do roll and yaw // control while angled over. This greatly improves the stability // of the last phase of transitions float tilt_threshold = (tilt.max_angle_deg/90.0f); bool equal_thrust = (tilt.current_tilt > tilt_threshold); float tilt_total = 0; uint8_t tilt_count = 0; uint8_t mask = tilt.tilt_mask; // apply _tilt_factor first for (uint8_t i=0; i 1.0f) { float scale = 1.0f / largest_tilted; for (uint8_t i=0; i= 1); }