Skip to content
Snippets Groups Projects
Commit 1fdc7654 authored by moon2's avatar moon2 :speech_balloon:
Browse files

sensors: don't use temperature for altitude (also tiny math typo fix)

note: for accurate absolute altitude calculation we'd need to know the local
pressure at sea level, outside temperature and ideally relative humidity.
while it is certainly possible to retrieve them via wifi etc., it is not in
the scope of this application to do so.

relative altitude is proportional to outside temperature, so we introduce a
multiplicative error by ignoring it. this scale error is 7% at 35degC and
-4% at 0degC. in comparison, if we assume the temperature reading is the
outside temperature, going from a heated apartment to the balcony at same
elevation can cause a shift that may well be in the magnitude of 10m. we
find the former to be preferable to the latter.
parent 3733e3a9
No related branches found
No related tags found
1 merge request!592sensors: don't use temperature for altitude (also tiny math typo fix)
Pipeline #9314 passed
......@@ -37,7 +37,6 @@ def azimuth(vec):
def relative_altitude(pascal, celsius):
# https://en.wikipedia.org/wiki/Hypsometric_equation
# assumes average pressure at sea level
return (celsius + 273.15) * (287 / 9.81) * math.log(101325 / pascal, math.e)
......@@ -113,7 +112,7 @@ class App(Application):
if delta > 3.14:
delta -= 6.28
elif delta < -3.14:
delta = 6.28
delta += 6.28
self.rotate += (1 - damp) * delta
else:
self.rotate *= damp
......@@ -173,7 +172,11 @@ class App(Application):
self.pressure = ins.imu.pressure
self.battery_voltage = ins.battery_voltage
self.temperature = ins.temperature
self.altitude = relative_altitude(self.pressure, self.temperature)
# not using actual temperature here since keeping rel. altitude
# identical when going on a balcony outweighs the extra outdoors
# precision in our opinion
self.altitude = relative_altitude(self.pressure, 15)
self.acc = tuple(ins.imu.acc)
self.gyro = tuple(ins.imu.gyro)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment