mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
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>
This commit is contained in:
parent
b26ca781b8
commit
5698057951
2 changed files with 38 additions and 22 deletions
16
dive.h
16
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_volume_units(unsigned int mm, int *frac, const char **units);
|
||||||
extern double get_temp_units(unsigned int mm, 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)
|
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)
|
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;
|
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)
|
static inline int to_PSI(pressure_t pressure)
|
||||||
{
|
{
|
||||||
return pressure.mbar * 0.0145037738 + 0.5;
|
return pressure.mbar * 0.0145037738 + 0.5;
|
||||||
|
|
44
equipment.c
44
equipment.c
|
@ -49,18 +49,19 @@ struct cylinder_widget {
|
||||||
GtkWidget *o2, *gasmix_button;
|
GtkWidget *o2, *gasmix_button;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/* we want bar - so let's not use our unit functions */
|
||||||
static int convert_pressure(int mbar, double *p)
|
static int convert_pressure(int mbar, double *p)
|
||||||
{
|
{
|
||||||
int decimals = 1;
|
int decimals = 1;
|
||||||
double pressure;
|
double pressure;
|
||||||
|
|
||||||
pressure = mbar / 1000.0;
|
if (output_units.pressure == PSI) {
|
||||||
if (mbar) {
|
pressure = mbar_to_PSI(mbar);
|
||||||
if (output_units.pressure == PSI) {
|
decimals = 0;
|
||||||
pressure *= 14.5037738; /* Bar to PSI */
|
} else {
|
||||||
decimals = 0;
|
pressure = mbar / 1000.0;
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
*p = pressure;
|
*p = pressure;
|
||||||
return decimals;
|
return decimals;
|
||||||
}
|
}
|
||||||
|
@ -70,17 +71,18 @@ static int convert_volume_pressure(int ml, int mbar, double *v, double *p)
|
||||||
int decimals = 1;
|
int decimals = 1;
|
||||||
double volume, pressure;
|
double volume, pressure;
|
||||||
|
|
||||||
volume = ml / 1000.0;
|
|
||||||
pressure = mbar / 1000.0;
|
|
||||||
if (mbar) {
|
if (mbar) {
|
||||||
if (output_units.volume == CUFT) {
|
if (output_units.volume == CUFT) {
|
||||||
volume /= 28.3168466; /* Liters to cuft */
|
volume = ml_to_cuft(ml);
|
||||||
volume *= pressure / 1.01325;
|
volume *= bar_to_atm(mbar / 1000.0);
|
||||||
}
|
} else
|
||||||
|
volume = ml / 1000.0;
|
||||||
|
|
||||||
if (output_units.pressure == PSI) {
|
if (output_units.pressure == PSI) {
|
||||||
pressure *= 14.5037738; /* Bar to PSI */
|
pressure = mbar_to_PSI(mbar);
|
||||||
decimals = 0;
|
decimals = 0;
|
||||||
}
|
} else
|
||||||
|
pressure = mbar / 1000.0;
|
||||||
}
|
}
|
||||||
*v = volume;
|
*v = volume;
|
||||||
*p = pressure;
|
*p = pressure;
|
||||||
|
@ -352,14 +354,14 @@ static void fill_cylinder_info(struct cylinder_widget *cylinder, cylinder_t *cyl
|
||||||
int mbar, ml;
|
int mbar, ml;
|
||||||
|
|
||||||
if (output_units.pressure == PSI) {
|
if (output_units.pressure == PSI) {
|
||||||
pressure /= 14.5037738;
|
pressure = psi_to_bar(pressure);
|
||||||
start /= 14.5037738;
|
start = psi_to_bar(start);
|
||||||
end /= 14.5037738;
|
end = psi_to_bar(end);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (pressure && output_units.volume == CUFT) {
|
if (pressure && output_units.volume == CUFT) {
|
||||||
volume *= 28.3168466; /* CUFT to liter */
|
volume = cuft_to_ml(volume);
|
||||||
volume /= pressure / 1.01325;
|
volume /= bar_to_atm(pressure);
|
||||||
}
|
}
|
||||||
|
|
||||||
ml = volume * 1000 + 0.5;
|
ml = volume * 1000 + 0.5;
|
||||||
|
@ -461,9 +463,9 @@ static void fill_tank_list(GtkListStore *store)
|
||||||
|
|
||||||
/* Is it in cuft and psi? */
|
/* Is it in cuft and psi? */
|
||||||
if (psi) {
|
if (psi) {
|
||||||
double bar = 0.0689475729 * psi;
|
double bar = psi_to_bar(psi);
|
||||||
double airvolume = 28316.8466 * size;
|
double airvolume = cuft_to_ml(size);
|
||||||
double atm = bar / 1.01325;
|
double atm = bar_to_atm(bar);
|
||||||
|
|
||||||
ml = airvolume / atm + 0.5;
|
ml = airvolume / atm + 0.5;
|
||||||
mbar = bar*1000 + 0.5;
|
mbar = bar*1000 + 0.5;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue