mirror of
https://github.com/TheAlgorithms/Python.git
synced 2024-11-24 05:21:09 +00:00
8b831cb600
* Added Altitude Pressure equation * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci * Removed trailing whitespaces * Removed pylint * Fix lru_cache_pythonic.py * Fixed spellings * Fix again lru_cache_pythonic.py * Update .vscode/settings.json Co-authored-by: Christian Clauss <cclauss@me.com> * Third fix lru_cache_pythonic.py * Update .vscode/settings.json Co-authored-by: Christian Clauss <cclauss@me.com> * 4th fix lru_cache_pythonic.py * Update physics/altitude_pressure.py Co-authored-by: Christian Clauss <cclauss@me.com> * lru_cache_pythonic.py: def get(self, key: Any, /) -> Any | None: * Delete lru_cache_pythonic.py * Added positive and negative pressure test cases * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Christian Clauss <cclauss@me.com>
53 lines
1.5 KiB
Python
53 lines
1.5 KiB
Python
"""
|
|
Title : Calculate altitude using Pressure
|
|
|
|
Description :
|
|
The below algorithm approximates the altitude using Barometric formula
|
|
|
|
|
|
"""
|
|
|
|
|
|
def get_altitude_at_pressure(pressure: float) -> float:
|
|
"""
|
|
This method calculates the altitude from Pressure wrt to
|
|
Sea level pressure as reference .Pressure is in Pascals
|
|
https://en.wikipedia.org/wiki/Pressure_altitude
|
|
https://community.bosch-sensortec.com/t5/Question-and-answers/How-to-calculate-the-altitude-from-the-pressure-sensor-data/qaq-p/5702
|
|
|
|
H = 44330 * [1 - (P/p0)^(1/5.255) ]
|
|
|
|
Where :
|
|
H = altitude (m)
|
|
P = measured pressure
|
|
p0 = reference pressure at sea level 101325 Pa
|
|
|
|
Examples:
|
|
>>> get_altitude_at_pressure(pressure=100_000)
|
|
105.47836610778828
|
|
>>> get_altitude_at_pressure(pressure=101_325)
|
|
0.0
|
|
>>> get_altitude_at_pressure(pressure=80_000)
|
|
1855.873388064995
|
|
>>> get_altitude_at_pressure(pressure=201_325)
|
|
Traceback (most recent call last):
|
|
...
|
|
ValueError: Value Higher than Pressure at Sea Level !
|
|
>>> get_altitude_at_pressure(pressure=-80_000)
|
|
Traceback (most recent call last):
|
|
...
|
|
ValueError: Atmospheric Pressure can not be negative !
|
|
"""
|
|
|
|
if pressure > 101325:
|
|
raise ValueError("Value Higher than Pressure at Sea Level !")
|
|
if pressure < 0:
|
|
raise ValueError("Atmospheric Pressure can not be negative !")
|
|
return 44_330 * (1 - (pressure / 101_325) ** (1 / 5.5255))
|
|
|
|
|
|
if __name__ == "__main__":
|
|
import doctest
|
|
|
|
doctest.testmod()
|