UNPKG
neo-barometer
Version:
latest (1.0.6)
1.0.6
1.0.5
1.0.4
Small module for the barometer brick on the UDOO Neo
neo-barometer
/
lib
/
calc_sl_pressure.js
7 lines
(6 loc)
•
217 B
JavaScript
View Raw
1
2
3
4
5
6
7
/* * P0 = P * Math.pow((1 - ( (0.0065 * h) / (T + (0.0065 * h) + 273.15) ) ), -5.257) */
module
.
exports
=
function
(
P, T, h
) {
return
P *
Math
.
pow
((
1
- ( (
0.0065
* h) / (T + (
0.0065
* h) +
273.15
) ) ), -
5.257
); };