mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-05-02 01:44:06 +08:00
31 lines
1.4 KiB
Plaintext
31 lines
1.4 KiB
Plaintext
# SOARING ESTIMATOR WIND ESTIMATE, USED FOR SELECTING THE CORRECT TRAJECTORY
|
|
|
|
uint64 timestamp # time since system start (microseconds)
|
|
|
|
float32 vx # maximum wind in x-direction
|
|
float32 vy # maximum wind in y-direction
|
|
float32 bx # wind offset in x-direction
|
|
float32 by # wind offset in y-direction
|
|
float32 h # vertical position of shear layer in soaring frame
|
|
float32 a # shear strength
|
|
|
|
float32 sigma_vx # covariance of vx
|
|
float32 sigma_vy # covariance of vy
|
|
float32 sigma_bx # covariance of bx
|
|
float32 sigma_by # covariance of by
|
|
float32 sigma_h # covariance of h
|
|
float32 sigma_a # covariance of a
|
|
|
|
float32 coeff_0 # offset vertical wind
|
|
float32 coeff_1 # linear coeff vertical wind
|
|
float32 coeff_2 # quadratic coeff vertical wind
|
|
|
|
float32 v_max # discrete value of v_max (shear velocity), identifier for appropriate trajectrory
|
|
float32 alpha # discrete value of alpha (shear strength), identifier for appropriate trajectrory
|
|
float32 h_ref # discrete value of h_ref (shear location)
|
|
float32 psi # discrete value of shear heading
|
|
float32 aspd # airspeed identifier for appropriate trajectrory
|
|
|
|
bool soaring_feasible # plausibility check
|
|
uint64 reset_counter # filter reset counter
|