Return Mode (VTOL)
The Return flight mode is used to fly a vehicle to safety on an unobstructed path to a safe destination, where it may either wait (hover or circle) or land.
VTOL vehicles use the Mission Landing/Rally Point return type by default. In this return type a vehicle ascends to a minimum safe altitude above obstructions (if needed), and then flies directly to a rally point or the start of a mission landing point (whichever is nearest), or the home position if neither rally points or mission landing pattern is defined. If the destination is a mission landing pattern, the vehicle will then follow the pattern to land. If the destination is a rally point or the home location, the vehicle will fly back to the home position and land.
The vehicle will return using the flying mode (MC or FW) it was using at the point when return mode was triggered. Generally it will follow the same return mode behaviour of the corresponding vehicle type, but will always transition to MC mode (if needed) before landing.
VTOL supports the other PX4 return types, including home/rally point return, mission path and closest safe destination. The default type is recommended.
INFO
- Mode is automatic - no user intervention is required to control the vehicle.
- Mode requires a global 3d position estimate (from GPS or inferred from a local position).
- Flying vehicles can't switch to this mode without global position.
- Flying vehicles will failsafe if they lose the position estimate.
- Mode requires home position is set.
- Mode prevents arming (vehicle must be armed when switching to this mode).
- 遥控开关可以在任何无人机上更改飞行模式。
- RC stick movement is ignored.
技术总结
VTOL vehicles use the Mission Landing/Rally Point return type by default, and return using the flying mode (MC or FW) it was using at the point when return mode was triggered.
Fixed-wing Mode (FW) Return
If returning as a fixed-wing, the vehicle:
Ascends to a safe minimum return altitude defined by RTL_RETURN_ALT (safely above any expected obstacles). The vehicle maintains its initial altitude if that is higher than the minimum return altitude.
Flies via direct constant-altitude path to the destination, which will be the closest of the start of a mission landing pattern and any rally point, or the home location if no mission landing pattern or rally points are defined.
如果目的地是飞行任务着陆模式,则按照该模式降落。
A mission landing pattern for a VTOL vehicle consists of a MAV_CMD_DO_LAND_START, one or more position waypoints, and a MAV_CMD_NAV_VTOL_LAND.
If the destination is a rally point or home it will:
Loiter/spiral down to RTL_DESCEND_ALT.
Circle for a short time, as defined by RTL_LAND_DELAY.
Yaw towards the destination (centre of loiter).
Transition to MC mode and land.
Note that NAV_FORCE_VT is ignored: the vehicle will always land as a multicopter for these destinations.
Multicopter Mode (MC) Return
If returning as a multicopter:
- The behaviour is the same except that the vehicle flies as a multicopter and respects multicopter settings.
- In particular, if landing on rally point or the home position the vehicle uses the RTL_CONE_ANG instead of just the RTL_RETURN_ALT for defining the minimum safe return altitude. For more information see the explanation of the "cone" in Return mode (Generic Vehicle) > Minimum Return Altitude.
参数
The RTL parameters are listed in Parameter Reference > Return Mode. If using a mission landing, only the RTL_RETURN_ALT and RTL_DESCEND_ALT are relevant. The others are relevant if the destination is a rally point or the home location.
参数 | 描述 |
---|---|
RTL_TYPE | Return type. |
RTL_RETURN_ALT | Return altitude in meters (default: 60m)If already above this value the vehicle will return at its current altitude. |
RTL_CONE_ANG | 圆锥半角决定无人机的 RTL 返航高度。 数值(度数):0、25、45、65、80、90。 Note that 0 is "no cone" (always return at RTL_RETURN_ALT or higher), while 90 indicates that the vehicle must return at the current altitude or RTL_DESCEND_ALT (whichever is higher). |
RTL_DESCEND_ALT | 最小返航高度和无人机从较高的返航高度到减速或者停止的初始下降高度(默认: 30米)。 |
RTL_LAND_DELAY | Time to hover at RTL_DESCEND_ALT before landing (default: 0.5s) -by default this period is short so that the vehicle will simply slow and then land immediately. If set to -1 the system will loiter at RTL_DESCEND_ALT rather than landing. 延迟能够使你为起落架的展开部署配置时间(自动触发)。 |
RTL_LOITER_RAD | [Fixed-wing Only] The radius of the loiter circle (at RTL_LAND_DELAY. |
MIS_TKO_LAND_REQ | Specify whether a mission landing or takeoff pattern is required. Generally fixed-wing vehicles set this to require a landing pattern but VTOL do not. |