2017-04-27 18:24:53 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2014-05-10 23:42:27 +00:00
|
|
|
#ifndef UNITS_H
|
|
|
|
#define UNITS_H
|
|
|
|
|
2014-05-13 22:32:48 +00:00
|
|
|
#include <math.h>
|
2015-11-03 11:47:28 +00:00
|
|
|
#ifndef M_PI
|
|
|
|
#define M_PI 3.14159265358979323846
|
|
|
|
#endif
|
2014-05-13 22:32:48 +00:00
|
|
|
|
2024-05-01 09:01:06 +00:00
|
|
|
#define FRACTION_TUPLE(n, x) ((unsigned)(n) / (x)), ((unsigned)(n) % (x))
|
|
|
|
#define SIGNED_FRAC_TRIPLET(n, x) ((n) >= 0 ? '+': '-'), ((n) >= 0 ? (unsigned)(n) / (x) : (-(n) / (x))), ((unsigned)((n) >= 0 ? (n) : -(n)) % (x))
|
2020-05-01 10:53:43 +00:00
|
|
|
|
2014-05-10 23:42:27 +00:00
|
|
|
#define O2_IN_AIR 209 // permille
|
|
|
|
#define N2_IN_AIR 781
|
2017-05-19 18:11:30 +00:00
|
|
|
#define O2_DENSITY 1331 // mg/Liter
|
2017-05-12 13:36:24 +00:00
|
|
|
#define N2_DENSITY 1165
|
2017-05-19 18:11:30 +00:00
|
|
|
#define HE_DENSITY 166
|
2014-05-10 23:42:27 +00:00
|
|
|
#define ZERO_C_IN_MKELVIN 273150 // mKelvin
|
|
|
|
|
2014-06-25 13:36:30 +00:00
|
|
|
#define M_OR_FT(_m, _f) ((prefs.units.length == units::METERS) ? ((_m) * 1000) : (feet_to_mm(_f)))
|
|
|
|
|
2014-05-10 23:42:27 +00:00
|
|
|
/* Salinity is expressed in weight in grams per 10l */
|
|
|
|
#define SEAWATER_SALINITY 10300
|
2018-02-10 22:28:05 +00:00
|
|
|
#define EN13319_SALINITY 10200
|
2020-05-04 23:07:56 +00:00
|
|
|
#define BRACKISH_SALINITY 10100
|
2014-05-10 23:42:27 +00:00
|
|
|
#define FRESHWATER_SALINITY 10000
|
|
|
|
|
2014-06-26 17:01:31 +00:00
|
|
|
#include <stdint.h>
|
2014-05-10 23:42:27 +00:00
|
|
|
/*
|
2024-05-14 20:56:07 +00:00
|
|
|
* Some silly structs to make our units very explicit.
|
2014-05-10 23:42:27 +00:00
|
|
|
*
|
|
|
|
* Also, the units are chosen so that values can be expressible as
|
|
|
|
* integers, so that we never have FP rounding issues. And they
|
|
|
|
* are small enough that converting to/from imperial units doesn't
|
|
|
|
* really matter.
|
|
|
|
*
|
|
|
|
* We also strive to make '0' a meaningless number saying "not
|
|
|
|
* initialized", since many values are things that may not have
|
|
|
|
* been reported (eg cylinder pressure or temperature from dive
|
2017-11-05 14:56:35 +00:00
|
|
|
* computers that don't support them). But for some of the values
|
|
|
|
* 0 doesn't works as a flag for not initialized. Examples are
|
|
|
|
* compass bearing (bearing_t) or NDL (duration_t).
|
|
|
|
* Therefore some types have a default value which is -1 and has to
|
|
|
|
* be set at certain points in the code.
|
2014-05-10 23:42:27 +00:00
|
|
|
*
|
|
|
|
* Thus "millibar" for pressure, for example, or "millikelvin" for
|
|
|
|
* temperatures. Doing temperatures in celsius or fahrenheit would
|
|
|
|
* make for loss of precision when converting from one to the other,
|
|
|
|
* and using millikelvin is SI-like but also means that a temperature
|
|
|
|
* of '0' is clearly just a missing temperature or cylinder pressure.
|
|
|
|
*
|
|
|
|
* Also strive to use units that can not possibly be mistaken for a
|
|
|
|
* valid value in a "normal" system without conversion. If the max
|
|
|
|
* depth of a dive is '20000', you probably didn't convert from mm on
|
2017-03-06 12:27:39 +00:00
|
|
|
* output, or if the max. depth gets reported as "0.2ft" it was either
|
2014-05-10 23:42:27 +00:00
|
|
|
* a really boring dive, or there was some missing input conversion,
|
|
|
|
* and a 60-ft dive got recorded as 60mm.
|
|
|
|
*
|
|
|
|
* Doing these as "structs containing value" means that we always
|
|
|
|
* have to explicitly write out those units in order to get at the
|
|
|
|
* actual value. So there is hopefully little fear of using a value
|
|
|
|
* in millikelvin as Fahrenheit by mistake.
|
|
|
|
*
|
2024-09-10 19:28:07 +00:00
|
|
|
* In general, to initialize a variable, use named initializers:
|
|
|
|
* depth_t depth = { .mm = 10'000; }; // 10 m
|
|
|
|
* However, for convenience, we define a number of user-defined
|
|
|
|
* literals, which make the above more readable:
|
|
|
|
* depht_t depth = 10_m;
|
|
|
|
* Currently, we only support integer literals, but might also
|
|
|
|
* do floating points if that seems practical.
|
|
|
|
*
|
|
|
|
* Currently we define:
|
|
|
|
* _sec -> duration_t in seconds
|
|
|
|
* _min -> duration_t in minutes
|
|
|
|
* _mm -> depth_t in millimeters
|
|
|
|
* _m -> depth_t in meters
|
|
|
|
* _ft -> depth_t in feet
|
|
|
|
* _mbar -> pressure_t in millibar
|
|
|
|
* _bar -> pressure_t in bar
|
|
|
|
* _atm -> pressure_t in atmospheres
|
|
|
|
* _baro2 -> o2pressure_t in bar
|
|
|
|
* _K -> temperature_t in kelvin
|
|
|
|
* _ml -> volume_t in milliliters
|
|
|
|
* _l -> volume_t in liters
|
|
|
|
* _percent -> volume_t in liters
|
|
|
|
* _permille -> fraction_t in ‰
|
|
|
|
* _percent -> fraction_t in %
|
|
|
|
*
|
2014-05-10 23:42:27 +00:00
|
|
|
* We don't actually use these all yet, so maybe they'll change, but
|
|
|
|
* I made a number of types as guidelines.
|
|
|
|
*/
|
2024-05-14 20:56:07 +00:00
|
|
|
using timestamp_t = int64_t;
|
2014-05-10 23:42:27 +00:00
|
|
|
|
2024-09-03 07:52:12 +00:00
|
|
|
/*
|
|
|
|
* There is a semi-common pattern where lrint() is used to round
|
|
|
|
* doubles to long integers and then cast down to a less wide
|
|
|
|
* int. Since this is unwieldy, encapsulate this in this function
|
|
|
|
*/
|
|
|
|
template <typename INT>
|
|
|
|
INT int_cast(double v)
|
|
|
|
{
|
|
|
|
return static_cast<INT>(lrint(v));
|
|
|
|
}
|
|
|
|
|
2024-09-02 18:40:37 +00:00
|
|
|
// Base class for all unit types using the "Curiously recurring template pattern"
|
|
|
|
// (https://en.wikipedia.org/wiki/Curiously_recurring_template_pattern)
|
|
|
|
// to implement addition, subtraction and negation.
|
|
|
|
// Multiplication and division (which result in a different type)
|
|
|
|
// are not implemented. If we want that, we should switch to a proper
|
|
|
|
// units libary.
|
|
|
|
// Also note that some units may be based on unsigned integers and
|
|
|
|
// therefore subtraction may be ill-defined.
|
2024-09-01 19:48:31 +00:00
|
|
|
template <typename T>
|
|
|
|
struct unit_base {
|
2024-09-02 18:40:37 +00:00
|
|
|
auto &get_base() {
|
|
|
|
auto &[v] = static_cast<T &>(*this);
|
|
|
|
return v;
|
|
|
|
}
|
|
|
|
auto get_base() const {
|
|
|
|
auto [v] = static_cast<const T &>(*this);
|
|
|
|
return v;
|
|
|
|
}
|
|
|
|
template <typename base_type>
|
|
|
|
static T from_base(base_type v) {
|
|
|
|
return { {}, v };
|
|
|
|
}
|
|
|
|
T operator+(const T &v2) const {
|
|
|
|
return from_base(get_base() + v2.get_base());
|
|
|
|
}
|
|
|
|
T &operator+=(const T &v2) {
|
|
|
|
get_base() += v2.get_base();
|
|
|
|
return static_cast<T &>(*this);
|
|
|
|
}
|
|
|
|
T operator-(const T &v2) const {
|
|
|
|
return from_base(get_base() - v2.get_base());
|
|
|
|
}
|
|
|
|
T &operator-=(const T &v2) {
|
|
|
|
get_base() -= v2.get_base();
|
|
|
|
return static_cast<T &>(*this);
|
|
|
|
}
|
2024-09-01 19:48:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct duration_t : public unit_base<duration_t>
|
2014-05-10 23:42:27 +00:00
|
|
|
{
|
2024-05-04 17:15:47 +00:00
|
|
|
int32_t seconds = 0; // durations up to 34 yrs
|
2024-05-14 20:56:07 +00:00
|
|
|
};
|
2024-09-03 15:04:48 +00:00
|
|
|
static inline duration_t operator""_sec(unsigned long long sec)
|
|
|
|
{
|
2024-09-16 16:38:42 +00:00
|
|
|
return duration_t { .seconds = static_cast<int32_t>(sec) };
|
2024-09-03 15:04:48 +00:00
|
|
|
}
|
|
|
|
static inline duration_t operator""_min(unsigned long long min)
|
|
|
|
{
|
2024-09-16 16:38:42 +00:00
|
|
|
return duration_t { .seconds = static_cast<int32_t>(min * 60) };
|
2024-09-03 15:04:48 +00:00
|
|
|
}
|
2014-05-10 23:42:27 +00:00
|
|
|
|
2024-09-01 19:48:31 +00:00
|
|
|
struct offset_t : public unit_base<offset_t>
|
2014-07-08 19:29:06 +00:00
|
|
|
{
|
2024-05-04 17:15:47 +00:00
|
|
|
int32_t seconds = 0; // offsets up to +/- 34 yrs
|
2024-05-14 20:56:07 +00:00
|
|
|
};
|
2014-07-08 19:29:06 +00:00
|
|
|
|
2024-09-01 19:48:31 +00:00
|
|
|
struct depth_t : public unit_base<depth_t> // depth to 2000 km
|
2014-05-10 23:42:27 +00:00
|
|
|
{
|
2024-05-04 17:15:47 +00:00
|
|
|
int32_t mm = 0;
|
2024-05-14 20:56:07 +00:00
|
|
|
};
|
2024-09-03 15:04:48 +00:00
|
|
|
static inline depth_t operator""_mm(unsigned long long mm)
|
|
|
|
{
|
2024-09-16 16:38:42 +00:00
|
|
|
return depth_t { .mm = static_cast<int32_t>(mm) };
|
2024-09-03 15:04:48 +00:00
|
|
|
}
|
|
|
|
static inline depth_t operator""_m(unsigned long long m)
|
|
|
|
{
|
2024-09-16 16:38:42 +00:00
|
|
|
return depth_t { .mm = static_cast<int32_t>(m * 1000) };
|
2024-09-03 15:04:48 +00:00
|
|
|
}
|
|
|
|
static inline depth_t operator""_ft(unsigned long long ft)
|
|
|
|
{
|
2024-09-16 16:38:42 +00:00
|
|
|
return depth_t { .mm = static_cast<int32_t>(round(ft * 304.8)) };
|
2024-09-03 15:04:48 +00:00
|
|
|
}
|
2014-05-10 23:42:27 +00:00
|
|
|
|
2024-09-01 19:48:31 +00:00
|
|
|
struct pressure_t : public unit_base<pressure_t>
|
2014-05-10 23:42:27 +00:00
|
|
|
{
|
2024-05-04 17:15:47 +00:00
|
|
|
int32_t mbar = 0; // pressure up to 2000 bar
|
2024-05-14 20:56:07 +00:00
|
|
|
};
|
2024-09-03 15:04:48 +00:00
|
|
|
static inline pressure_t operator""_mbar(unsigned long long mbar)
|
|
|
|
{
|
2024-09-16 16:38:42 +00:00
|
|
|
return pressure_t { .mbar = static_cast<int32_t>(mbar) };
|
2024-09-03 15:04:48 +00:00
|
|
|
}
|
|
|
|
static inline pressure_t operator""_bar(unsigned long long bar)
|
|
|
|
{
|
2024-09-16 16:38:42 +00:00
|
|
|
return pressure_t { .mbar = static_cast<int32_t>(bar * 1000) };
|
2024-09-03 15:04:48 +00:00
|
|
|
}
|
|
|
|
static inline pressure_t operator""_atm(unsigned long long atm)
|
|
|
|
{
|
2024-09-16 16:38:42 +00:00
|
|
|
return pressure_t { .mbar = static_cast<int32_t>(round(atm * 1013.25)) };
|
2024-09-03 15:04:48 +00:00
|
|
|
}
|
2014-05-10 23:42:27 +00:00
|
|
|
|
2024-09-01 19:48:31 +00:00
|
|
|
struct o2pressure_t : public unit_base<o2pressure_t>
|
2014-05-10 23:42:27 +00:00
|
|
|
{
|
2024-05-04 17:15:47 +00:00
|
|
|
uint16_t mbar = 0;
|
2024-05-14 20:56:07 +00:00
|
|
|
};
|
2024-09-03 15:04:48 +00:00
|
|
|
static inline o2pressure_t operator""_baro2(unsigned long long bar)
|
|
|
|
{
|
2024-09-16 16:38:42 +00:00
|
|
|
return o2pressure_t { .mbar = static_cast<uint16_t>(bar * 1000) };
|
2024-09-03 15:04:48 +00:00
|
|
|
}
|
2014-06-03 17:21:41 +00:00
|
|
|
|
2024-09-01 19:48:31 +00:00
|
|
|
struct bearing_t : public unit_base<bearing_t>
|
2014-06-03 17:21:41 +00:00
|
|
|
{
|
2024-05-04 17:15:47 +00:00
|
|
|
int16_t degrees = 0;
|
2024-05-14 20:56:07 +00:00
|
|
|
};
|
2014-06-03 17:21:41 +00:00
|
|
|
|
2024-09-01 19:48:31 +00:00
|
|
|
struct temperature_t : public unit_base<temperature_t>
|
2014-06-03 17:21:41 +00:00
|
|
|
{
|
2024-05-04 17:15:47 +00:00
|
|
|
uint32_t mkelvin = 0; // up to 4 MK (temperatures in K are always positive)
|
2024-05-14 20:56:07 +00:00
|
|
|
};
|
2024-09-03 15:04:48 +00:00
|
|
|
static inline temperature_t operator""_K(unsigned long long K)
|
|
|
|
{
|
2024-09-16 16:38:42 +00:00
|
|
|
return temperature_t { .mkelvin = static_cast<uint32_t>(K * 1000) };
|
2024-09-03 15:04:48 +00:00
|
|
|
}
|
2014-05-10 23:42:27 +00:00
|
|
|
|
2024-09-01 19:48:31 +00:00
|
|
|
struct temperature_sum_t : public unit_base<temperature_sum_t>
|
2018-02-18 20:55:57 +00:00
|
|
|
{
|
2024-05-04 17:15:47 +00:00
|
|
|
uint64_t mkelvin = 0; // up to 18446744073 MK (temperatures in K are always positive)
|
2024-05-14 20:56:07 +00:00
|
|
|
};
|
2018-02-18 20:55:57 +00:00
|
|
|
|
2024-09-01 19:48:31 +00:00
|
|
|
struct volume_t : public unit_base<volume_t>
|
2014-05-10 23:42:27 +00:00
|
|
|
{
|
2024-05-04 17:15:47 +00:00
|
|
|
int mliter = 0;
|
2024-05-14 20:56:07 +00:00
|
|
|
};
|
2024-09-03 15:04:48 +00:00
|
|
|
static inline volume_t operator""_ml(unsigned long long ml)
|
|
|
|
{
|
2024-09-16 16:38:42 +00:00
|
|
|
return volume_t { .mliter = static_cast<int>(ml) };
|
2024-09-03 15:04:48 +00:00
|
|
|
}
|
|
|
|
static inline volume_t operator""_l(unsigned long long l)
|
|
|
|
{
|
2024-09-16 16:38:42 +00:00
|
|
|
return volume_t { .mliter = static_cast<int>(l * 1000) };
|
2024-09-03 15:04:48 +00:00
|
|
|
}
|
2014-05-10 23:42:27 +00:00
|
|
|
|
2024-09-01 19:48:31 +00:00
|
|
|
struct fraction_t : public unit_base<fraction_t>
|
2014-05-10 23:42:27 +00:00
|
|
|
{
|
2024-05-04 17:15:47 +00:00
|
|
|
int permille = 0;
|
2024-05-14 20:56:07 +00:00
|
|
|
};
|
2024-09-03 15:04:48 +00:00
|
|
|
static inline fraction_t operator""_permille(unsigned long long permille)
|
|
|
|
{
|
2024-09-16 16:38:42 +00:00
|
|
|
return fraction_t { .permille = static_cast<int>(permille) };
|
2024-09-03 15:04:48 +00:00
|
|
|
}
|
|
|
|
static inline fraction_t operator""_percent(unsigned long long percent)
|
|
|
|
{
|
2024-09-16 16:38:42 +00:00
|
|
|
return fraction_t { .permille = static_cast<int>(percent * 10) };
|
2024-09-03 15:04:48 +00:00
|
|
|
}
|
2014-05-10 23:42:27 +00:00
|
|
|
|
2024-09-01 19:48:31 +00:00
|
|
|
struct weight_t : public unit_base<weight_t>
|
2014-05-10 23:42:27 +00:00
|
|
|
{
|
2024-04-17 09:31:50 +00:00
|
|
|
int grams = 0;
|
2024-05-14 20:56:07 +00:00
|
|
|
};
|
2014-05-10 23:42:27 +00:00
|
|
|
|
2024-09-01 19:48:31 +00:00
|
|
|
struct degrees_t : public unit_base<degrees_t>
|
2014-05-10 23:42:27 +00:00
|
|
|
{
|
2024-05-04 17:15:47 +00:00
|
|
|
int udeg = 0;
|
2024-05-14 20:56:07 +00:00
|
|
|
};
|
2015-06-13 09:54:33 +00:00
|
|
|
|
2024-05-14 20:56:07 +00:00
|
|
|
struct location_t {
|
2018-10-20 18:12:15 +00:00
|
|
|
degrees_t lat, lon;
|
2024-05-14 20:56:07 +00:00
|
|
|
};
|
2018-10-20 18:12:15 +00:00
|
|
|
|
2019-04-16 19:40:03 +00:00
|
|
|
extern void parse_location(const char *, location_t *);
|
2024-05-11 13:18:37 +00:00
|
|
|
extern unsigned int get_distance(location_t loc1, location_t loc2);
|
2019-04-16 19:40:03 +00:00
|
|
|
|
2018-10-20 18:12:15 +00:00
|
|
|
static inline bool has_location(const location_t *loc)
|
|
|
|
{
|
|
|
|
return loc->lat.udeg || loc->lon.udeg;
|
|
|
|
}
|
|
|
|
|
2024-05-04 21:20:53 +00:00
|
|
|
static inline bool operator==(const location_t &a, const location_t &b)
|
2018-10-20 18:12:15 +00:00
|
|
|
{
|
2024-05-04 21:20:53 +00:00
|
|
|
return (a.lat.udeg == b.lat.udeg) && (a.lon.udeg == b.lon.udeg);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool operator!=(const location_t &a, const location_t &b)
|
|
|
|
{
|
|
|
|
return !(a == b);
|
2018-10-20 18:12:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline location_t create_location(double lat, double lon)
|
|
|
|
{
|
|
|
|
location_t location = {
|
2024-09-03 07:52:12 +00:00
|
|
|
{ .udeg = int_cast<int>(lat * 1000000) },
|
|
|
|
{ .udeg = int_cast<int>(lon * 1000000) }
|
2018-10-20 18:12:15 +00:00
|
|
|
};
|
|
|
|
return location;
|
|
|
|
}
|
|
|
|
|
2015-06-13 09:54:33 +00:00
|
|
|
static inline double udeg_to_radians(int udeg)
|
|
|
|
{
|
|
|
|
return (udeg * M_PI) / (1000000.0 * 180.0);
|
|
|
|
}
|
2014-05-10 23:42:27 +00:00
|
|
|
|
|
|
|
static inline double grams_to_lbs(int grams)
|
|
|
|
{
|
|
|
|
return grams / 453.6;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int lbs_to_grams(double lbs)
|
|
|
|
{
|
2024-09-03 07:52:12 +00:00
|
|
|
return int_cast<int>(lbs * 453.6);
|
2014-05-10 23:42:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline double ml_to_cuft(int ml)
|
|
|
|
{
|
|
|
|
return ml / 28316.8466;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline double cuft_to_l(double cuft)
|
|
|
|
{
|
|
|
|
return cuft * 28.3168466;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline double mm_to_feet(int mm)
|
|
|
|
{
|
|
|
|
return mm * 0.00328084;
|
|
|
|
}
|
|
|
|
|
2015-07-14 18:35:04 +00:00
|
|
|
static inline double m_to_mile(int m)
|
|
|
|
{
|
|
|
|
return m / 1609.344;
|
|
|
|
}
|
|
|
|
|
2022-01-02 17:47:48 +00:00
|
|
|
static inline long feet_to_mm(double feet)
|
2014-05-10 23:42:27 +00:00
|
|
|
{
|
2017-03-08 06:41:41 +00:00
|
|
|
return lrint(feet * 304.8);
|
2014-05-10 23:42:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline double mkelvin_to_C(int mkelvin)
|
|
|
|
{
|
|
|
|
return (mkelvin - ZERO_C_IN_MKELVIN) / 1000.0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline double mkelvin_to_F(int mkelvin)
|
|
|
|
{
|
|
|
|
return mkelvin * 9 / 5000.0 - 459.670;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline unsigned long F_to_mkelvin(double f)
|
|
|
|
{
|
2017-03-08 06:41:41 +00:00
|
|
|
return lrint((f - 32) * 1000 / 1.8 + ZERO_C_IN_MKELVIN);
|
2014-05-10 23:42:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline unsigned long C_to_mkelvin(double c)
|
|
|
|
{
|
2017-03-08 06:41:41 +00:00
|
|
|
return lrint(c * 1000 + ZERO_C_IN_MKELVIN);
|
2014-05-10 23:42:27 +00:00
|
|
|
}
|
|
|
|
|
2020-07-17 01:40:46 +00:00
|
|
|
static inline unsigned long cC_to_mkelvin(double c)
|
|
|
|
{
|
|
|
|
return lrint(c * 10 + ZERO_C_IN_MKELVIN);
|
|
|
|
}
|
|
|
|
|
2014-05-10 23:42:27 +00:00
|
|
|
static inline double psi_to_bar(double psi)
|
|
|
|
{
|
|
|
|
return psi / 14.5037738;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline long psi_to_mbar(double psi)
|
|
|
|
{
|
2017-03-08 06:41:41 +00:00
|
|
|
return lrint(psi_to_bar(psi) * 1000);
|
2014-05-10 23:42:27 +00:00
|
|
|
}
|
|
|
|
|
core: return floating point from to_PSI() functions
Dive data are stored internally using integral types using
appropriately fine units (mm, mbar, mkelvin, etc.). These
are converted with functions defined in units.h for display
(m, bar, C, etc.). Usually floating points are returned by
these functions, to retain the necessary precision. There
is one exception: the to_PSI() and mbar_to_PSI() functions.
For consistency, make these functions likewise return floats.
This will be needed for the rework of the profile-axes.
The plan is to use the conversion functions to make the
axes aware of the displayed values. This in turn will be
necessary to place the ticks at sensible distances. However,
the conversions need to be precise, which is not the
case for the current to_PSI() functions.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
2021-09-24 13:07:11 +00:00
|
|
|
static inline double to_PSI(pressure_t pressure)
|
2014-05-10 23:42:27 +00:00
|
|
|
{
|
core: return floating point from to_PSI() functions
Dive data are stored internally using integral types using
appropriately fine units (mm, mbar, mkelvin, etc.). These
are converted with functions defined in units.h for display
(m, bar, C, etc.). Usually floating points are returned by
these functions, to retain the necessary precision. There
is one exception: the to_PSI() and mbar_to_PSI() functions.
For consistency, make these functions likewise return floats.
This will be needed for the rework of the profile-axes.
The plan is to use the conversion functions to make the
axes aware of the displayed values. This in turn will be
necessary to place the ticks at sensible distances. However,
the conversions need to be precise, which is not the
case for the current to_PSI() functions.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
2021-09-24 13:07:11 +00:00
|
|
|
return pressure.mbar * 0.0145037738;
|
2014-05-10 23:42:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline double bar_to_atm(double bar)
|
|
|
|
{
|
2024-09-09 11:55:37 +00:00
|
|
|
return bar / (1_atm).mbar * 1000;
|
2014-05-10 23:42:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline double mbar_to_atm(int mbar)
|
|
|
|
{
|
2024-09-09 11:55:37 +00:00
|
|
|
return (double)mbar / (1_atm).mbar;
|
2014-05-10 23:42:27 +00:00
|
|
|
}
|
|
|
|
|
core: return floating point from to_PSI() functions
Dive data are stored internally using integral types using
appropriately fine units (mm, mbar, mkelvin, etc.). These
are converted with functions defined in units.h for display
(m, bar, C, etc.). Usually floating points are returned by
these functions, to retain the necessary precision. There
is one exception: the to_PSI() and mbar_to_PSI() functions.
For consistency, make these functions likewise return floats.
This will be needed for the rework of the profile-axes.
The plan is to use the conversion functions to make the
axes aware of the displayed values. This in turn will be
necessary to place the ticks at sensible distances. However,
the conversions need to be precise, which is not the
case for the current to_PSI() functions.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
2021-09-24 13:07:11 +00:00
|
|
|
static inline double mbar_to_PSI(int mbar)
|
2014-05-10 23:42:27 +00:00
|
|
|
{
|
2024-09-01 19:48:31 +00:00
|
|
|
pressure_t p = { .mbar = mbar };
|
2014-05-10 23:42:27 +00:00
|
|
|
return to_PSI(p);
|
|
|
|
}
|
|
|
|
|
2024-09-09 11:55:37 +00:00
|
|
|
static inline pressure_t altitude_to_pressure(int32_t altitude) { // altitude in mm above sea level
|
|
|
|
return pressure_t { .mbar = int_cast<int32_t> (1013.0 * exp(- altitude / 7800000.0)) };
|
2019-04-30 10:42:33 +00:00
|
|
|
}
|
|
|
|
|
2024-09-09 11:55:37 +00:00
|
|
|
static inline int32_t pressure_to_altitude(pressure_t pressure)
|
2019-04-30 10:42:33 +00:00
|
|
|
{ // returns altitude in mm above sea level
|
2024-09-09 11:55:37 +00:00
|
|
|
return (int32_t) (log(1013.0 / pressure.mbar) * 7800000);
|
2019-04-30 10:42:33 +00:00
|
|
|
}
|
|
|
|
|
2014-05-10 23:42:27 +00:00
|
|
|
/*
|
|
|
|
* We keep our internal data in well-specified units, but
|
|
|
|
* the input and output may come in some random format. This
|
|
|
|
* keeps track of those units.
|
|
|
|
*/
|
|
|
|
/* turns out in Win32 PASCAL is defined as a calling convention */
|
2020-01-04 08:26:09 +00:00
|
|
|
/* NOTE: these enums are duplicated in mobile-widgets/qmlinterface.h */
|
2014-05-10 23:42:27 +00:00
|
|
|
struct units {
|
2017-11-16 21:00:26 +00:00
|
|
|
enum LENGTH {
|
2014-05-10 23:42:27 +00:00
|
|
|
METERS,
|
|
|
|
FEET
|
|
|
|
} length;
|
2016-01-22 20:37:18 +00:00
|
|
|
enum VOLUME {
|
2014-05-10 23:42:27 +00:00
|
|
|
LITER,
|
|
|
|
CUFT
|
|
|
|
} volume;
|
2016-01-22 20:37:18 +00:00
|
|
|
enum PRESSURE {
|
2014-05-10 23:42:27 +00:00
|
|
|
BAR,
|
|
|
|
PSI,
|
2019-08-28 09:21:24 +00:00
|
|
|
PASCALS
|
2014-05-10 23:42:27 +00:00
|
|
|
} pressure;
|
2016-01-22 20:37:18 +00:00
|
|
|
enum TEMPERATURE {
|
2014-05-10 23:42:27 +00:00
|
|
|
CELSIUS,
|
|
|
|
FAHRENHEIT,
|
|
|
|
KELVIN
|
|
|
|
} temperature;
|
2016-01-22 20:37:18 +00:00
|
|
|
enum WEIGHT {
|
2014-05-10 23:42:27 +00:00
|
|
|
KG,
|
|
|
|
LBS
|
|
|
|
} weight;
|
2016-01-22 20:37:18 +00:00
|
|
|
enum TIME {
|
2014-05-10 23:42:27 +00:00
|
|
|
SECONDS,
|
|
|
|
MINUTES
|
|
|
|
} vertical_speed_time;
|
2017-05-06 20:44:22 +00:00
|
|
|
enum DURATION {
|
|
|
|
MIXED,
|
|
|
|
MINUTES_ONLY,
|
|
|
|
ALWAYS_HOURS
|
|
|
|
} duration_units;
|
2017-11-21 14:52:01 +00:00
|
|
|
bool show_units_table;
|
2014-05-10 23:42:27 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* We're going to default to SI units for input. Yes,
|
|
|
|
* technically the SI unit for pressure is Pascal, but
|
|
|
|
* we default to bar (10^5 pascal), which people
|
|
|
|
* actually use. Similarly, C instead of Kelvin.
|
|
|
|
* And kg instead of g.
|
|
|
|
*/
|
2024-05-02 05:56:47 +00:00
|
|
|
#define SI_UNITS \
|
2024-08-10 03:50:11 +00:00
|
|
|
{ \
|
2024-08-10 03:50:20 +00:00
|
|
|
.length = units::METERS, .volume = units::LITER, .pressure = units::BAR, .temperature = units::CELSIUS, .weight = units::KG, \
|
2024-08-10 03:50:33 +00:00
|
|
|
.vertical_speed_time = units::MINUTES, .duration_units = units::MIXED, .show_units_table = false \
|
2017-05-06 20:44:22 +00:00
|
|
|
}
|
|
|
|
|
2019-06-04 07:05:17 +00:00
|
|
|
extern const struct units SI_units, IMPERIAL_units;
|
|
|
|
|
2024-05-04 16:53:41 +00:00
|
|
|
extern const struct units *get_units();
|
2019-06-04 07:05:17 +00:00
|
|
|
|
|
|
|
extern int get_pressure_units(int mb, const char **units);
|
|
|
|
extern double get_depth_units(int mm, int *frac, const char **units);
|
|
|
|
extern double get_volume_units(unsigned int ml, int *frac, const char **units);
|
|
|
|
extern double get_temp_units(unsigned int mk, const char **units);
|
|
|
|
extern double get_weight_units(unsigned int grams, int *frac, const char **units);
|
|
|
|
extern double get_vertical_speed_units(unsigned int mms, int *frac, const char **units);
|
|
|
|
|
|
|
|
extern depth_t units_to_depth(double depth);
|
|
|
|
extern int units_to_sac(double volume);
|
2014-05-10 23:42:27 +00:00
|
|
|
|
2014-06-03 17:21:41 +00:00
|
|
|
#endif
|