ardupilot/libraries/AP_Baro/AP_Baro_HIL.cpp

100 lines
2.7 KiB
C++
Raw Normal View History

/// -*- tab-width: 4; Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil -*-
2011-10-13 11:22:03 -03:00
#include <AP_Baro.h>
#include "AP_Baro_HIL.h"
2012-10-11 14:53:21 -03:00
#include <AP_HAL.h>
2012-10-11 14:53:21 -03:00
extern const AP_HAL::HAL& hal;
2011-10-13 11:22:03 -03:00
// Public Methods //////////////////////////////////////////////////////////////
bool AP_Baro_HIL::init()
2011-10-13 11:22:03 -03:00
{
2014-08-13 09:43:14 -03:00
_flags.healthy = false;
return true;
2011-10-13 11:22:03 -03:00
}
// Read the sensor. This is a state machine
// We read one time Temperature (state = 1) and then 4 times Pressure (states 2-5)
uint8_t AP_Baro_HIL::read()
2011-10-13 11:22:03 -03:00
{
uint8_t result = 0;
2011-10-13 11:22:03 -03:00
if (_count != 0) {
hal.scheduler->suspend_timer_procs();
result = 1;
Press = _pressure_sum / _count;
Temp = _temperature_sum / _count;
_pressure_samples = _count;
_count = 0;
_pressure_sum = 0;
_temperature_sum = 0;
hal.scheduler->resume_timer_procs();
}
return result;
2011-10-13 11:22:03 -03:00
}
void AP_Baro_HIL::setHIL(float pressure, float temperature)
{
if (pressure > 0) {
_count = 1;
_pressure_sum = pressure;
_temperature_sum = temperature;
_last_update = hal.scheduler->millis();
2014-08-13 09:43:14 -03:00
_flags.healthy = true;
}
}
// ==========================================================================
// based on tables.cpp from http://www.pdas.com/atmosdownload.html
/*
Compute the temperature, density, and pressure in the standard atmosphere
Correct to 20 km. Only approximate thereafter.
*/
static void SimpleAtmosphere(
const float alt, // geometric altitude, km.
float& sigma, // density/sea-level standard density
float& delta, // pressure/sea-level standard pressure
float& theta) // temperature/sea-level standard temperature
{
const float REARTH = 6369.0f; // radius of the Earth (km)
const float GMR = 34.163195f; // gas constant
float h=alt*REARTH/(alt+REARTH); // geometric to geopotential altitude
if (h<11.0f)
{ // Troposphere
theta=(288.15f-6.5f*h)/288.15f;
delta=powf(theta, GMR/6.5f);
}
else
{ // Stratosphere
theta=216.65f/288.15f;
delta=0.2233611f*expf(-GMR*(h-11.0f)/216.65f);
}
sigma=delta/theta;
}
void AP_Baro_HIL::setHIL(float altitude_msl)
2011-10-13 11:22:03 -03:00
{
float sigma, delta, theta;
const float p0 = 101325;
SimpleAtmosphere(altitude_msl*0.001f, sigma, delta, theta);
float p = p0 * delta;
float T = 303.16f * theta - 273.16f; // Assume 30 degrees at sea level - converted to degrees Kelvin
setHIL(p, T);
2011-10-13 11:22:03 -03:00
}
2011-12-11 00:30:24 -04:00
float AP_Baro_HIL::get_pressure() {
2011-12-11 00:30:24 -04:00
return Press;
}
float AP_Baro_HIL::get_temperature() const {
2011-12-11 00:30:24 -04:00
return Temp;
}