Px4-autopilot: VTOL standard flight to review

Created on 18 Dec 2020  路  7Comments  路  Source: PX4/PX4-Autopilot

All 7 comments

Screenshot from 2020-12-18 13-35-12

I don't think there's any bug here, this is a STABILIZED mode flight that stalled.

Screenshot from 2020-12-18 13-58-06

At a minimum you can reduce the roll and pitch limits FW_MAN_R_MAX and FW_MAN_P_MAX, but you really need to be aware of airspeed when flying manually.

I think I jumped the gun on this one, the roll departure actually happens during transition (FW -> MC).

Screenshot from 2020-12-18 14-14-21

Why is FW roll and pitch actuation at maximum during the transition?

The rampup time for MC motors seems to be a bit too long, which causes pitch/roll instability. I assume your MC motors are not strong enough to handle your VTOL rolling, especially not if the thrust is still ramping up.

The ramp up of the MC actuation is coupled with the airspeed measurement - and that happens to be still quite high during the back-transition when the roll angle diverges.

During the previous "healthy" flight, the airspeed even doesn't drop below the blending airspeed when the transition is finished, meaning it will keep the MC actuators at idle during the whole transition.
image

The high airspeed measurement is (at least partially) due to the sensor being badly calibrated (ASPD_SCALE param would need to be set to about 0.8).
image

I also wonder if the transition was done into the wind or with tailwind. From what I see in the log it's rather with the wind then against.

I will investigate where the multiple quadchute messages are coming from, it should just be one. Further, I will work on the airspeed scale factor estimation --> it should update the scale factor automatically and not via a user input/manually started calibration flight.

@sfuhrer the quadchute logic is broken for back transitions. This function: https://github.com/PX4/PX4-Autopilot/blob/master/src/modules/vtol_att_control/vtol_att_control_main.cpp#L197 . The logic only works for front transitions and FW flight, but not back transitions. (which kind of explains why the quadchute triggering function is called abort_front_transition...)

A triggered QC sets _abort_front_transition to true. But since here it was during a manual back transition to_fw is false and resets the quadchute failsafe.

Also, https://github.com/PX4/PX4-Autopilot/blob/master/src/modules/vtol_att_control/standard.cpp#L99 needs to be adapted I think

Was this page helpful?
0 / 5 - 0 ratings

Related issues

julianoes picture julianoes  路  3Comments

huangwen0907 picture huangwen0907  路  3Comments

JacobCrabill picture JacobCrabill  路  4Comments

julianoes picture julianoes  路  3Comments

felix-west picture felix-west  路  4Comments