Paparazzi UAS  v5.12_stable-4-g9b43e9b
Paparazzi is a free software Unmanned Aircraft System.
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
air_data.c File Reference

Air Data interface. More...

#include "modules/air_data/air_data.h"
#include "subsystems/abi.h"
#include "math/pprz_isa.h"
#include "state.h"
#include "generated/airframe.h"
#include "subsystems/datalink/telemetry.h"
+ Include dependency graph for air_data.c:

Go to the source code of this file.

Macros

#define AIR_DATA_BARO_ABS_ID   ABI_BROADCAST
 ABI binding for absolute pressure. More...
 
#define AIR_DATA_BARO_DIFF_ID   ABI_BROADCAST
 ABI binding for differential pressure. More...
 
#define AIR_DATA_TEMPERATURE_ID   ABI_BROADCAST
 ABI binding for temperature. More...
 
#define AIR_DATA_AIRSPEED_ID   ABI_BROADCAST
 ABI binding for airspeed. More...
 
#define AIR_DATA_TAS_FACTOR   1.0
 Default factor to convert estimated airspeed (EAS) to true airspeed (TAS) More...
 
#define AIR_DATA_CALC_AIRSPEED   TRUE
 Calculate Airspeed from differential pressure by default. More...
 
#define AIR_DATA_CALC_TAS_FACTOR   TRUE
 Calculate tas_factor from temp and pressure by default. More...
 
#define AIR_DATA_CALC_AMSL_BARO   FALSE
 Don't calculate AMSL from baro and QNH by default. More...
 

Functions

static void pressure_abs_cb (uint8_t sender_id, float pressure)
 
static void pressure_diff_cb (uint8_t sender_id, float pressure)
 
static void temperature_cb (uint8_t sender_id, float temp)
 
static void airspeed_cb (uint8_t sender_id, float eas)
 
static void send_baro_raw (struct transport_tx *trans, struct link_device *dev)
 
static void send_air_data (struct transport_tx *trans, struct link_device *dev)
 
static void send_amsl (struct transport_tx *trans, struct link_device *dev)
 
void air_data_init (void)
 AirData initialization. More...
 
float air_data_get_amsl (void)
 Return AMSL (altitude AboveSeaLevel). More...
 
void air_data_periodic (void)
 Check health. More...
 
float eas_from_dynamic_pressure (float q)
 Calculate equivalent airspeed from dynamic pressure. More...
 
float get_tas_factor (float p, float t)
 Calculate true airspeed (TAS) factor. More...
 
float tas_from_eas (float eas)
 Calculate true airspeed from equivalent airspeed. More...
 
float tas_from_dynamic_pressure (float q)
 Calculate true airspeed from dynamic pressure. More...
 

Variables

struct AirData air_data
 global AirData state More...
 
static abi_event pressure_abs_ev
 
static abi_event pressure_diff_ev
 
static abi_event temperature_ev
 
static abi_event airspeed_ev
 
static uint8_t baro_health_counter
 counter to check baro health More...
 

Detailed Description

Air Data interface.

  • pressures
  • airspeed
  • angle of attack and sideslip
  • wind

Definition in file air_data.c.

Macro Definition Documentation

#define AIR_DATA_AIRSPEED_ID   ABI_BROADCAST

ABI binding for airspeed.

Definition at line 65 of file air_data.c.

Referenced by air_data_init().

#define AIR_DATA_BARO_ABS_ID   ABI_BROADCAST

ABI binding for absolute pressure.

Definition at line 44 of file air_data.c.

Referenced by air_data_init().

#define AIR_DATA_BARO_DIFF_ID   ABI_BROADCAST

ABI binding for differential pressure.

Definition at line 51 of file air_data.c.

Referenced by air_data_init().

#define AIR_DATA_CALC_AIRSPEED   TRUE

Calculate Airspeed from differential pressure by default.

Definition at line 76 of file air_data.c.

Referenced by air_data_init().

#define AIR_DATA_CALC_AMSL_BARO   FALSE

Don't calculate AMSL from baro and QNH by default.

Definition at line 86 of file air_data.c.

Referenced by air_data_init().

#define AIR_DATA_CALC_TAS_FACTOR   TRUE

Calculate tas_factor from temp and pressure by default.

Definition at line 81 of file air_data.c.

Referenced by air_data_init().

#define AIR_DATA_TAS_FACTOR   1.0

Default factor to convert estimated airspeed (EAS) to true airspeed (TAS)

Definition at line 71 of file air_data.c.

Referenced by air_data_init().

#define AIR_DATA_TEMPERATURE_ID   ABI_BROADCAST

ABI binding for temperature.

Definition at line 58 of file air_data.c.

Referenced by air_data_init().

Function Documentation

float air_data_get_amsl ( void  )

Return AMSL (altitude AboveSeaLevel).

If AMSL from baro is valid, return that, otherwise from gps.

Definition at line 235 of file air_data.c.

References air_data, LlaCoor_f::alt, AirData::amsl_baro, AirData::amsl_baro_valid, and stateGetPositionLla_f().

+ Here is the call graph for this function:

void air_data_periodic ( void  )

Check health.

Needs to be called periodically.

Definition at line 245 of file air_data.c.

References air_data, and AirData::amsl_baro_valid.

static void airspeed_cb ( uint8_t  sender_id,
float  eas 
)
static

Definition at line 154 of file air_data.c.

References air_data, AirData::airspeed, AirData::calc_airspeed, stateSetAirspeed_f(), AirData::tas, and tas_from_eas().

Referenced by air_data_init().

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

float eas_from_dynamic_pressure ( float  q)

Calculate equivalent airspeed from dynamic pressure.

Dynamic pressure $q$ (also called impact pressure) is the difference between total(pitot) and static pressure.

Airspeed from dynamic pressure:

\[ v = \frac12 \sqrt{\frac{2q}{\rho}} \]

with $\rho$ as air density. Using standard sea level air density $\rho_0$ gives you equivalent airspeed (EAS).

Parameters
qdynamic pressure in Pa
Returns
equivalent airspeed in m/s

Definition at line 269 of file air_data.c.

References Max, and PPRZ_ISA_AIR_DENSITY.

Referenced by pressure_diff_cb(), and tas_from_dynamic_pressure().

+ Here is the caller graph for this function:

float get_tas_factor ( float  p,
float  t 
)

Calculate true airspeed (TAS) factor.

TAS = tas_factor * EAS

True airspeed (TAS) from equivalent airspeed (EAS):

\[\mbox{TAS} = \mbox{EAS} \sqrt{\frac{\rho_0}{\rho}}\]

and $ \frac{\rho_0}{\rho} = \frac{p_0T}{pT_0}$ where

  • $p$ is the air pressure at the flight condition
  • $p_0$ is the air pressure at sea level = 101325 Pa
  • $T$ is the air temperature at the flight condition
  • $T_0$ is the air temperature at sea level = 288.15 K
Parameters
pcurrent air pressure in Pa
tcurrent air temperature in degrees Celcius
Returns
tas factor

Definition at line 297 of file air_data.c.

References PPRZ_ISA_SEA_LEVEL_PRESSURE, and PPRZ_ISA_SEA_LEVEL_TEMP.

Referenced by temperature_cb().

+ Here is the caller graph for this function:

static void pressure_abs_cb ( uint8_t  sender_id,
float  pressure 
)
static

FIXME: use height above MSL (geoid) and not WGS84 ellipsoid here

Definition at line 105 of file air_data.c.

References air_data, LlaCoor_f::alt, AirData::amsl_baro, AirData::amsl_baro_valid, AirData::calc_amsl_baro, AirData::calc_qnh_once, h(), LtpDef_f::hmsl, LtpDef_f::lla, State::ned_initialized_f, State::ned_origin_f, pprz_isa_height_of_pressure_full(), pprz_isa_ref_pressure_of_height_full(), AirData::pressure, AirData::qnh, state, stateGetPositionLla_f(), and stateIsGlobalCoordinateValid().

Referenced by air_data_init().

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

static void pressure_diff_cb ( uint8_t  sender_id,
float  pressure 
)
static

Definition at line 132 of file air_data.c.

References air_data, AirData::airspeed, AirData::calc_airspeed, AirData::differential, eas_from_dynamic_pressure(), AirData::pressure, stateSetAirspeed_f(), AirData::tas, and tas_from_eas().

Referenced by air_data_init().

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

static void send_air_data ( struct transport_tx *  trans,
struct link_device *  dev 
)
static

Definition at line 174 of file air_data.c.

References air_data, AirData::airspeed, AirData::amsl_baro, AirData::differential, AirData::pressure, AirData::qnh, AirData::tas, and AirData::temperature.

Referenced by air_data_init().

+ Here is the caller graph for this function:

static void send_amsl ( struct transport_tx *  trans,
struct link_device *  dev 
)
static

Definition at line 183 of file air_data.c.

References air_data, LlaCoor_f::alt, AirData::amsl_baro, and stateGetPositionLla_f().

Referenced by air_data_init().

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

static void send_baro_raw ( struct transport_tx *  trans,
struct link_device *  dev 
)
static

Definition at line 168 of file air_data.c.

References air_data, AirData::differential, and AirData::pressure.

Referenced by air_data_init().

+ Here is the caller graph for this function:

float tas_from_dynamic_pressure ( float  q)

Calculate true airspeed from dynamic pressure.

Dynamic pressure $q$ (also called impact pressure) is the difference between total(pitot) and static pressure.

Parameters
qdynamic pressure in Pa
Returns
true airspeed in m/s

Definition at line 329 of file air_data.c.

References eas_from_dynamic_pressure(), and tas_from_eas().

+ Here is the call graph for this function:

float tas_from_eas ( float  eas)

Calculate true airspeed from equivalent airspeed.

True airspeed (TAS) from EAS: TAS = air_data.tas_factor * EAS

Parameters
easequivalent airspeed (EAS) in m/s
Returns
true airspeed in m/s

Definition at line 316 of file air_data.c.

References air_data, and AirData::tas_factor.

Referenced by airspeed_cb(), pressure_diff_cb(), and tas_from_dynamic_pressure().

+ Here is the caller graph for this function:

static void temperature_cb ( uint8_t  sender_id,
float  temp 
)
static

Definition at line 144 of file air_data.c.

References air_data, AirData::airspeed, AirData::calc_tas_factor, get_tas_factor(), AirData::pressure, AirData::tas_factor, and AirData::temperature.

Referenced by air_data_init().

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

Variable Documentation

abi_event airspeed_ev
static

Definition at line 67 of file air_data.c.

uint8_t baro_health_counter
static

counter to check baro health

Definition at line 102 of file air_data.c.

abi_event pressure_abs_ev
static

Definition at line 46 of file air_data.c.

abi_event pressure_diff_ev
static

Definition at line 53 of file air_data.c.

abi_event temperature_ev
static

Definition at line 60 of file air_data.c.