summaryrefslogtreecommitdiffstats
path: root/dive.h
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2011-11-01 21:00:46 -0700
committerGravatar Dirk Hohndel <dirk@hohndel.org>2011-11-01 21:00:46 -0700
commit56980579514f2900e43441b483e435b3e3235266 (patch)
tree18e51be41828333d3e396cabce307206bc4964a6 /dive.h
parentb26ca781b87371e77b851298093b0a7136be64fa (diff)
downloadsubsurface-56980579514f2900e43441b483e435b3e3235266.tar.gz
Further cleanup of pressure and volume conversions
I'm amazed at how many spots we were doing conversions - some of them subtly different than others. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'dive.h')
-rw-r--r--dive.h16
1 files changed, 15 insertions, 1 deletions
diff --git a/dive.h b/dive.h
index fe4515ee6..783d640a0 100644
--- a/dive.h
+++ b/dive.h
@@ -91,9 +91,19 @@ extern double get_depth_units(unsigned int mm, int *frac, const char **units);
extern double get_volume_units(unsigned int mm, int *frac, const char **units);
extern double get_temp_units(unsigned int mm, const char **units);
+static inline double bar_to_atm(double bar)
+{
+ return bar / 1.01325;
+}
+
static inline double ml_to_cuft(int ml)
{
- return ml / 28317.0;
+ return ml / 28316.8466;
+}
+
+static inline double cuft_to_ml(double cuft)
+{
+ return cuft * 28.3168466;
}
static inline double mm_to_feet(int mm)
@@ -137,6 +147,10 @@ static inline int to_K(temperature_t temp)
return (temp.mkelvin + 499)/1000;
}
+static inline double psi_to_bar(double psi)
+{
+ return psi / 14.5037738;
+}
static inline int to_PSI(pressure_t pressure)
{
return pressure.mbar * 0.0145037738 + 0.5;