Paparazzi UAS v7.0_unstable
Paparazzi is a free software Unmanned Aircraft System.
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
ins_alt_float.c
Go to the documentation of this file.
1/*
2 * Copyright (C) 2004-2012 The Paparazzi Team
3 *
4 * This file is part of paparazzi.
5 *
6 * paparazzi is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2, or (at your option)
9 * any later version.
10 *
11 * paparazzi is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with paparazzi; see the file COPYING. If not, write to
18 * the Free Software Foundation, 59 Temple Place - Suite 330,
19 * Boston, MA 02111-1307, USA.
20 */
21
28
29#include "modules/core/abi.h"
30#include "state.h"
31
32#include <inttypes.h>
33#include <math.h>
34
35#include "state.h"
36#include "mcu_periph/sys_time.h"
37#include "modules/gps/gps.h"
39
40#include "generated/airframe.h"
41#include "generated/modules.h"
42#include "generated/flight_plan.h"
43
44#ifdef DEBUG_ALT_KALMAN
45#include "mcu_periph/uart.h"
47#endif
48
49#ifndef USE_INS_NAV_INIT
50#define USE_INS_NAV_INIT TRUE
51PRINT_CONFIG_MSG("USE_INS_NAV_INIT defaulting to TRUE")
52#endif
53
55
56#if USE_BAROMETER
58#include "math/pprz_isa.h"
59
60PRINT_CONFIG_MSG("USE_BAROMETER is TRUE: Using baro for altitude estimation.")
61
62// Baro event on ABI
63#ifndef INS_ALT_BARO_ID
64#if USE_BARO_BOARD
65#define INS_ALT_BARO_ID BARO_BOARD_SENDER_ID
66#else
67#define INS_ALT_BARO_ID ABI_BROADCAST
68#endif
69#endif
71
73static void baro_cb(uint8_t sender_id, uint32_t stamp, float pressure);
74#endif /* USE_BAROMETER */
75
79#ifndef INS_ALT_GPS_ID
80#define INS_ALT_GPS_ID GPS_MULTI_ID
81#endif
85
86#ifndef INS_ALT_IMU_ID
87#define INS_ALT_IMU_ID ABI_BROADCAST
88#endif
90static void accel_cb(uint8_t sender_id, uint32_t stamp, struct Int32Vect3 *accel);
91
94
95static void alt_kalman_reset(void);
96static void alt_kalman_init(void);
97static void alt_kalman(float z_meas, float dt);
98
100
102{
103#if USE_INS_NAV_INIT
107
109#else
111#endif
112
114
115#if USE_BAROMETER
116 ins_altf.qfe = 0.0f;
118 ins_altf.baro_alt = 0.0f;
119#endif
120 ins_altf.reset_alt_ref = false;
121
122 // why do we have this here?
123 alt_kalman(0.0f, 0.1);
124
125#if USE_BAROMETER
126 // Bind to BARO_ABS message
128#endif
132}
133
134static void reset_ref(void)
135{
136 // get utm pos
137 struct UtmCoor_f utm = utm_float_from_gps(&gps, 0);
138 // reset state UTM ref
141 // reset filter flag
142 ins_altf.reset_alt_ref = true;
143}
144
145static void reset_vertical_ref(void)
146{
148 // ground_alt
149 utm.alt = gps.hmsl / 1000.0f;
150 // reset state UTM ref
152 // reset filter flag
153 ins_altf.reset_alt_ref = true;
154}
155
157{
158 switch (flag) {
159 case INS_RESET_REF:
160 reset_ref();
161 break;
164 break;
165 default:
166 // unsupported cases
167 break;
168 }
169}
170
171#if USE_BAROMETER
172void ins_alt_float_update_baro(float pressure)
173{
174 // timestamp in usec when last callback was received
175 static uint32_t last_ts = 0;
176 // current timestamp
178 // dt between this and last callback in seconds
179 float dt = (float)(now_ts - last_ts) / 1e6;
180 last_ts = now_ts;
181
182 // bound dt (assume baro freq 1Hz-500Hz
183 Bound(dt, 0.002, 1.0)
184
186 ins_altf.qfe = pressure;
188 }
190 ins_altf.reset_alt_ref = false;
192 ins_altf.alt_dot = 0.0f;
193 ins_altf.qfe = pressure;
195 } else { /* not realigning, so normal update with baro measurement */
197 /* run the filter */
199 /* set new altitude, just copy old horizontal position */
200 struct UtmCoor_f utm;
202 utm.alt = ins_altf.alt;
204 struct NedCoor_f ned_vel;
205 ned_vel = *stateGetSpeedNed_f();
206 ned_vel.z = -ins_altf.alt_dot;
208 }
209}
210#else
211void ins_alt_float_update_baro(float pressure __attribute__((unused)))
212{
213}
214#endif
215
216
218{
219#if USE_GPS
220 if (gps_s->fix < GPS_FIX_3D) {
221 return;
222 }
223
225 reset_ref();
226 }
227
229 struct NedCoor_f ned_vel = ned_vel_float_from_gps(gps_s);
230
231#if !USE_BAROMETER
232#ifdef GPS_DT
233 const float dt = GPS_DT;
234#else
235 // timestamp in usec when last callback was received
236 static uint32_t last_ts = 0;
237 // current timestamp
239 // dt between this and last callback in seconds
240 float dt = (float)(now_ts - last_ts) / 1e6;
241 last_ts = now_ts;
242
243 // bound dt (assume GPS freq between 0.5Hz and 50Hz)
244 Bound(dt, 0.02, 2)
245#endif
246
248 ins_altf.reset_alt_ref = false;
249 ins_altf.alt = utm.alt;
250 ins_altf.alt_dot = 0.0f;
252 } else {
253 alt_kalman(utm.alt, dt);
254 ins_altf.alt_dot = -ned_vel.z;
255 }
256#endif // !USE_BAROMETER
257
258 utm.alt = ins_altf.alt;
259 // set position
261
262 ned_vel.z = -ins_altf.alt_dot; // vz (down) from filter
263 // set velocity
265
266#endif
267}
268
269
270#define GPS_SIGMA2 1.
271#define GPS_R 2.
272
273static float p[2][2];
274
275static void alt_kalman_reset(void)
276{
277 p[0][0] = 1.0f;
278 p[0][1] = 0.0f;
279 p[1][0] = 0.0f;
280 p[1][1] = 1.0f;
281}
282
283static void alt_kalman_init(void)
284{
286}
287
288static void alt_kalman(float z_meas, float dt)
289{
290 float R = GPS_R;
291 float SIGMA2 = GPS_SIGMA2;
292
293#if USE_BAROMETER
294#ifdef SITL
295 R = 0.5;
296 SIGMA2 = 0.1;
297#elif USE_BARO_MS5534A
298 if (alt_baro_enabled) {
299 R = baro_MS5534A_r;
301 }
302#elif USE_BARO_ETS
303 if (baro_ets_enabled) {
304 R = baro_ets_r;
306 }
307#elif USE_BARO_MS5611
309 R = baro_ms5611_r;
311 }
312#elif USE_BARO_AMSYS
313 if (baro_amsys_enabled) {
314 R = baro_amsys_r;
316 }
317#elif USE_BARO_BMP
318 if (baro_bmp_enabled) {
319 R = baro_bmp_r;
321 }
322#endif
323#endif // USE_BAROMETER
324
325 float q[2][2];
326 q[0][0] = dt * dt * dt * dt / 4.;
327 q[0][1] = dt * dt * dt / 2.;
328 q[1][0] = dt * dt * dt / 2.;
329 q[1][1] = dt * dt;
330
331
332 /* predict */
334 p[0][0] = p[0][0] + p[1][0] * dt + dt * (p[0][1] + p[1][1] * dt) + SIGMA2 * q[0][0];
335 p[0][1] = p[0][1] + p[1][1] * dt + SIGMA2 * q[0][1];
336 p[1][0] = p[1][0] + p[1][1] * dt + SIGMA2 * q[1][0];
337 p[1][1] = p[1][1] + SIGMA2 * q[1][1];
338
339 /* error estimate */
340 float e = p[0][0] + R;
341
342 if (fabs(e) > 1e-5) {
343 float k_0 = p[0][0] / e;
344 float k_1 = p[1][0] / e;
345 e = z_meas - ins_altf.alt;
346
347 /* correction */
348 ins_altf.alt += k_0 * e;
349 ins_altf.alt_dot += k_1 * e;
350
351 p[1][0] = -p[0][0] * k_1 + p[1][0];
352 p[1][1] = -p[0][1] * k_1 + p[1][1];
353 p[0][0] = p[0][0] * (1 - k_0);
354 p[0][1] = p[0][1] * (1 - k_0);
355 }
356
357#ifdef DEBUG_ALT_KALMAN
358 DOWNLINK_SEND_ALT_KALMAN(DefaultChannel, DefaultDevice, &(p[0][0]), &(p[0][1]), &(p[1][0]), &(p[1][1]));
359#endif
360}
361
362#if USE_BAROMETER
363static void baro_cb(uint8_t __attribute__((unused)) sender_id, __attribute__((unused)) uint32_t stamp, float pressure)
364{
366}
367#endif
368
369static void gps_cb(uint8_t sender_id __attribute__((unused)),
370 uint32_t stamp __attribute__((unused)),
371 struct GpsState *gps_s)
372{
374}
375
377 uint32_t stamp __attribute__((unused)),
378 struct Int32Vect3 *accel)
379{
380 // untilt accel and remove gravity
381 struct Int32Vect3 accel_ned;
385 accel_ned.z += ACCEL_BFP_OF_REAL(9.81);
387}
Main include for ABI (AirBorneInterface).
#define ABI_BROADCAST
Broadcast address.
Definition abi_common.h:58
Event structure to store callbacks in a linked list.
Definition abi_common.h:67
Common barometric sensor implementation.
float baro_MS5534A_sigma2
bool alt_baro_enabled
float baro_MS5534A_r
float baro_amsys_r
Definition baro_amsys.c:78
float baro_amsys_sigma2
Definition baro_amsys.c:79
bool baro_amsys_enabled
Definition baro_amsys.c:77
bool baro_bmp_enabled
Definition baro_bmp.c:54
float baro_bmp_r
Definition baro_bmp.c:55
float baro_bmp_sigma2
Definition baro_bmp.c:56
float baro_ets_r
Definition baro_ets.c:108
bool baro_ets_enabled
Definition baro_ets.c:107
float baro_ets_sigma2
Definition baro_ets.c:109
float baro_ms5611_sigma2
bool baro_ms5611_enabled
float baro_ms5611_r
uint32_t last_ts
Definition bluegiga.c:131
#define UNUSED(x)
uint32_t get_sys_time_usec(void)
Get the time in microseconds since startup.
int32_t nav_utm_east0
Definition common_nav.c:48
uint8_t nav_utm_zone0
Definition common_nav.c:50
float ground_alt
size == nb_waypoint, waypoint 0 is a dummy waypoint
Definition common_nav.c:46
int32_t nav_utm_north0
Definition common_nav.c:49
struct UtmCoor_f utm_float_from_gps(struct GpsState *gps_s, uint8_t zone)
Convenience functions to get utm position from GPS state.
Definition gps.c:577
struct NedCoor_f ned_vel_float_from_gps(struct GpsState *gps_s)
Get GPS ned velocity (float) Converted on the fly if not available.
Definition gps.c:544
struct GpsState gps
global GPS state
Definition gps.c:74
Device independent GPS code (interface)
int32_t hmsl
height above mean sea level (MSL) in mm
Definition gps.h:94
#define GPS_FIX_3D
3D GPS fix
Definition gps.h:44
data structure for GPS information
Definition gps.h:87
#define ACCEL_BFP_OF_REAL(_af)
void int32_rmat_transp_vmult(struct Int32Vect3 *vb, struct Int32RMat *m_b2a, struct Int32Vect3 *va)
rotate 3D vector by transposed rotation matrix.
rotation matrix
#define UTM_COPY(_u1, _u2)
vector in North East Down coordinates
static float pprz_isa_height_of_pressure(float pressure, float ref_p)
Get relative altitude from pressure (using simplified equation).
Definition pprz_isa.h:102
static void stateSetAccelNed_i(uint16_t id, struct NedCoor_i *ned_accel)
Set acceleration in NED coordinates (int).
Definition state.h:1127
static void stateSetAccelBody_i(uint16_t id, struct Int32Vect3 *body_accel)
Set acceleration in Body coordinates (int).
Definition state.h:1167
static struct Int32RMat * stateGetNedToBodyRMat_i(void)
Get vehicle body attitude rotation matrix (int).
Definition state.h:1282
static void stateSetPositionUtm_f(uint16_t id, struct UtmCoor_f *utm_pos)
Set position from UTM coordinates (float).
Definition state.h:698
static struct UtmCoor_f * stateGetUtmOrigin_f(void)
Get the coordinate UTM frame origin (int)
Definition state.h:576
static void stateSetLocalUtmOrigin_f(uint16_t id, struct UtmCoor_f *utm_def)
Set the local (flat earth) coordinate frame origin from UTM (float).
Definition state.h:541
static struct UtmCoor_f * stateGetPositionUtm_f(void)
Get position in UTM coordinates (float).
Definition state.h:821
static void stateSetSpeedNed_f(uint16_t id, struct NedCoor_f *ned_speed)
Set ground speed in local NED coordinates (float).
Definition state.h:947
static struct NedCoor_f * stateGetSpeedNed_f(void)
Get ground speed in local NED coordinates (float).
Definition state.h:1049
#define INS_RESET_VERTICAL_REF
Definition ins.h:37
#define INS_RESET_REF
flags for INS reset
Definition ins.h:36
static void reset_vertical_ref(void)
#define GPS_SIGMA2
static void gps_cb(uint8_t sender_id, uint32_t stamp, struct GpsState *gps_s)
static void reset_cb(uint8_t sender_id, uint8_t flag)
#define INS_ALT_IMU_ID
static void reset_ref(void)
static abi_event accel_ev
#define INS_ALT_GPS_ID
ABI binding for gps data.
static void alt_kalman_init(void)
static abi_event reset_ev
#define GPS_R
abi_event baro_ev
static void alt_kalman(float z_meas, float dt)
static void baro_cb(uint8_t sender_id, uint32_t stamp, float pressure)
static float p[2][2]
struct InsAltFloat ins_altf
static void accel_cb(uint8_t sender_id, uint32_t stamp, struct Int32Vect3 *accel)
#define INS_ALT_BARO_ID
void ins_alt_float_update_gps(struct GpsState *gps_s)
void ins_alt_float_init(void)
static void alt_kalman_reset(void)
static abi_event gps_ev
void ins_alt_float_update_baro(float pressure)
Filters altitude and climb rate for fixedwings.
float alt_dot
estimated vertical speed in m/s (positive-up)
bool reset_alt_ref
flag to request reset of altitude reference to current alt
float alt
estimated altitude above MSL in meters
bool baro_initialized
bool origin_initialized
TRUE if UTM origin was initialized.
Ins implementation state (altitude, float)
PRINT_CONFIG_MSG("USE_INS_NAV_INIT defaulting to TRUE")
uint16_t foo
Definition main_demo5.c:58
Fixedwing Navigation library.
PRINT_CONFIG_VAR(ONELOOP_ANDI_FILT_CUTOFF)
float z
in meters
vector in North East Down coordinates Units: meters
position in UTM coordinates Units: meters
Paparazzi atmospheric pressure conversion utilities.
API to get/set the generic vehicle states.
Architecture independent timing functions.
arch independent UART (Universal Asynchronous Receiver/Transmitter) API
unsigned int uint32_t
Typedef defining 32 bit unsigned int type.
unsigned char uint8_t
Typedef defining 8 bit unsigned char type.