Paparazzi UAS
v5.18.0_stable
Paparazzi is a free software Unmanned Aircraft System.
|
Go to the source code of this file.
Macros | |
#define | NPS_QNH 101325.0 |
#define | NPS_WIND_SPEED 0.0 |
#define | NPS_WIND_DIR 0 |
#define | NPS_TURBULENCE_SEVERITY 0 |
#define | NPS_WORLD_ENV_UPDATE 1.0 |
Functions | |
void | nps_atmosphere_init (void) |
void | nps_atmosphere_set_wind_speed (double speed) |
void | nps_atmosphere_set_wind_dir (double dir) |
void | nps_atmosphere_set_wind_ned (double wind_north, double wind_east, double wind_down) |
void | nps_atmosphere_update (double dt) |
Variables | |
struct NpsAtmosphere | nps_atmosphere |
Atmosphere model (pressure, wind) for NPS.
Definition in file nps_atmosphere.c.
#define NPS_QNH 101325.0 |
Definition at line 32 of file nps_atmosphere.c.
#define NPS_TURBULENCE_SEVERITY 0 |
Definition at line 44 of file nps_atmosphere.c.
#define NPS_WIND_DIR 0 |
Definition at line 40 of file nps_atmosphere.c.
#define NPS_WIND_SPEED 0.0 |
Definition at line 36 of file nps_atmosphere.c.
#define NPS_WORLD_ENV_UPDATE 1.0 |
Definition at line 48 of file nps_atmosphere.c.
void nps_atmosphere_init | ( | void | ) |
Definition at line 53 of file nps_atmosphere.c.
References FLOAT_VECT3_ZERO, NpsAtmosphere::last_world_env_req, nps_atmosphere, nps_atmosphere_set_wind_dir(), nps_atmosphere_set_wind_speed(), NPS_QNH, NPS_TURBULENCE_SEVERITY, NPS_WIND_DIR, NPS_WIND_SPEED, NpsAtmosphere::qnh, NpsAtmosphere::turbulence_severity, and NpsAtmosphere::wind.
Referenced by nps_main_init().
void nps_atmosphere_set_wind_dir | ( | double | dir | ) |
Definition at line 71 of file nps_atmosphere.c.
References dir, nps_atmosphere, NpsAtmosphere::wind, NpsAtmosphere::wind_dir, NpsAtmosphere::wind_speed, DoubleVect3::x, and DoubleVect3::y.
Referenced by nps_atmosphere_init().
void nps_atmosphere_set_wind_ned | ( | double | wind_north, |
double | wind_east, | ||
double | wind_down | ||
) |
Definition at line 83 of file nps_atmosphere.c.
References dir, FLOAT_VECT2_NORM, nps_atmosphere, NpsAtmosphere::wind, NpsAtmosphere::wind_dir, NpsAtmosphere::wind_speed, DoubleVect3::x, DoubleVect3::y, and DoubleVect3::z.
Referenced by nps_flightgear_receive(), and on_WORLD_ENV().
void nps_atmosphere_set_wind_speed | ( | double | speed | ) |
Definition at line 63 of file nps_atmosphere.c.
References nps_atmosphere, NpsAtmosphere::wind, NpsAtmosphere::wind_dir, NpsAtmosphere::wind_speed, DoubleVect3::x, and DoubleVect3::y.
Referenced by nps_atmosphere_init().
void nps_atmosphere_update | ( | double | dt | ) |
Definition at line 98 of file nps_atmosphere.c.
References NpsAtmosphere::last_world_env_req, nps_atmosphere, nps_fdm_set_turbulence(), nps_fdm_set_wind_ned(), nps_ivy_send_world_env, NPS_WORLD_ENV_UPDATE, NpsAtmosphere::turbulence_severity, NpsAtmosphere::wind, NpsAtmosphere::wind_speed, DoubleVect3::x, DoubleVect3::y, and DoubleVect3::z.
Referenced by nps_main_run_sim_step().
struct NpsAtmosphere nps_atmosphere |
Definition at line 51 of file nps_atmosphere.c.
Referenced by nps_atmosphere_init(), nps_atmosphere_set_wind_dir(), nps_atmosphere_set_wind_ned(), nps_atmosphere_set_wind_speed(), and nps_atmosphere_update().