# VTL 역전환 튜닝

When a VTOL performs a back-transition (transition from fixed wing mode to multicopter) it needs to slow down before the multicopter can take proper control. As of PX4 version 1.7, and on the current developer branch, the vehicle will consider the back-transition complete when the horizontal speed has reached multicopter cruise speed (MPC_XY_CRUISE) or when the back-transition duration (VT_B_TRANS_DUR) has passed (whichever comes first).

# 역전환 시간

Setting a high back-transition time (VT_B_TRANS_DUR) will give the vehicle more time to slow down. During this period the VTOL will shut down its fixed wing motor and slowly ramp up its MC motors while gliding. The higher this time is set the longer the vehicle will glide in an attempt to slow down. The caveat of this behavior is that the vehicle will only control altitude and not position during this period, so some drift can occur.

# 예상 감속 설정

When flying missions that make use of a VTOL_LAND (opens new window) waypoint the autopilot will attempt to calculate the proper distance at which to initiate the back-transition. It does this by looking at the current velocity (comparable to ground speed) and the expected deceleration. To get the vehicle to come out of back-transition very close to its landing point you can tune the expected deceleration (VT_B_DEC_MSS) parameter. Make sure you have a large enough back-transition duration to allow the vehicle to reach its intended position before this timeout kicks in.

# 에어브레이크 적용

If your vehicle is equipped with airbrakes, and your selected airframe supports them (in code), you can set the airbrake position during back-transition in VT_B_REV_OUT. The values scale from 0 to 1, so a value of 0.7 equals 70% output.

# 고정익 모터에 역 추력 적용

To get the shortest possible back-transition, PX4 supports active breaking by reversing the fixed wing motor direction. To use this feature you will require an ESC that supports motor rotation reversing.

Note

A typical fixed wing propeller is not optimized to spin in reverse, when the throttle during reverse thrust is set too high the propeller can stall.

Generally there are 2 ways a reverse-capable ESC can implement reverse thrust.

# 스로틀 스케일링 (3D) 사용

Normally the throttle stick is used purely for forward thrust.

3D ESCs assume 0 thrust at 50% throttle, positive (forward) thrust above 50% and negative thrust (reverse) below 50%. The airframe can be modified to implement this behaviour only during back transition, allowing reverse thrust to be applied during the transition.

WARNING

Support for 3D throttle scaling during back-transition requires code support in the airframe.

The amount of negative thrust during back transition can then be configured using the VT_B_TRANS_THR parameter (set to a negative value between 0 and -1).

# 제어 채널

ESCs that use a separate control channel to control the motor direction (e.g. Hobbywing Platinum series (opens new window)) can use the airbrakes channel to apply reverse thrust during back-transition.

Airframes that have been configured to support this behavior (like the DeltaQuad airframe) can be configured to do so by setting both VT_B_REV_OUT to 1 and VT_B_TRANS_THR to the desired throttle level to apply for active breaking. The values scale from 0 to 1, so a value of 0.7 equals 70% throttle.

# 일반적인 설정

An example of a setup that employs most features listed above would be the following:

  • 기체 : 역 추력을 지원하는 모든 VTOL (예 : DeltaQuad)
  • ESC : 모터 반전을 지원하는 고정익 ESC (예 : Hobbywing Platinum Pro 60A)
  • 예상 감속 값 (m/s/s) VT_B_DEC_MSS : 2.5
  • 역전환 기간 제한 시간 (초) VT_B_TRANS_DUR : 10
  • 역전환중 역방향 채널을 높게 설정 VT_B_REV_OUT : 1.0
  • 역 전환 중 70% 추력 적용 VT_B_TRANS_THR : 0.7