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 SURFACE_PRESSURE 1013 // mbar
|
|
|
|
#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.
|
|
|
|
*
|
|
|
|
* 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-05-14 20:56:07 +00:00
|
|
|
struct 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
|
|
|
};
|
2014-05-10 23:42:27 +00:00
|
|
|
|
2024-05-14 20:56:07 +00:00
|
|
|
struct 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-05-14 20:56:07 +00:00
|
|
|
struct 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
|
|
|
};
|
2014-05-10 23:42:27 +00:00
|
|
|
|
2024-05-14 20:56:07 +00:00
|
|
|
struct 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
|
|
|
};
|
2014-05-10 23:42:27 +00:00
|
|
|
|
2024-05-14 20:56:07 +00:00
|
|
|
struct 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
|
|
|
};
|
2014-06-03 17:21:41 +00:00
|
|
|
|
2024-05-14 20:56:07 +00:00
|
|
|
struct 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-05-14 20:56:07 +00:00
|
|
|
struct 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
|
|
|
};
|
2014-05-10 23:42:27 +00:00
|
|
|
|
2024-05-14 20:56:07 +00:00
|
|
|
struct 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-05-14 20:56:07 +00:00
|
|
|
struct 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
|
|
|
};
|
2014-05-10 23:42:27 +00:00
|
|
|
|
2024-05-14 20:56:07 +00:00
|
|
|
struct 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
|
|
|
};
|
2014-05-10 23:42:27 +00:00
|
|
|
|
2024-05-14 20:56:07 +00:00
|
|
|
struct 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-05-14 20:56:07 +00:00
|
|
|
struct 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 = {
|
|
|
|
{ (int) lrint(lat * 1000000) },
|
|
|
|
{ (int) lrint(lon * 1000000) }
|
|
|
|
};
|
|
|
|
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)
|
|
|
|
{
|
2018-05-18 15:23:51 +00:00
|
|
|
return (int)lrint(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 int to_feet(depth_t depth)
|
|
|
|
{
|
2018-05-18 15:23:51 +00:00
|
|
|
return (int)lrint(mm_to_feet(depth.mm));
|
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)
|
|
|
|
{
|
|
|
|
return bar / SURFACE_PRESSURE * 1000;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline double mbar_to_atm(int mbar)
|
|
|
|
{
|
|
|
|
return (double)mbar / SURFACE_PRESSURE;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
{
|
|
|
|
pressure_t p = { mbar };
|
|
|
|
return to_PSI(p);
|
|
|
|
}
|
|
|
|
|
2019-04-30 10:42:33 +00:00
|
|
|
static inline int32_t altitude_to_pressure(int32_t altitude) // altitude in mm above sea level
|
|
|
|
{ // returns atmospheric pressure in mbar
|
|
|
|
return (int32_t) (1013.0 * exp(- altitude / 7800000.0));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static inline int32_t pressure_to_altitude(int32_t pressure) // pressure in mbar
|
|
|
|
{ // returns altitude in mm above sea level
|
|
|
|
return (int32_t) (log(1013.0 / pressure) * 7800000);
|
|
|
|
}
|
|
|
|
|
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-05-02 05:56:47 +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
|