mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
If we don't have cylinder working pressure, we sill want to show the volume
.. although in that case we can only ever show the volume in liters, and cannot do a conversion to cubic feet even if the user has set imperial units. Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
97f09f3ea8
commit
2b26b6433f
1 changed files with 2 additions and 2 deletions
|
@ -71,12 +71,12 @@ static int convert_volume_pressure(int ml, int mbar, double *v, double *p)
|
|||
int decimals = 1;
|
||||
double volume, pressure;
|
||||
|
||||
volume = ml / 1000.0;
|
||||
if (mbar) {
|
||||
if (output_units.volume == CUFT) {
|
||||
volume = ml_to_cuft(ml);
|
||||
volume *= bar_to_atm(mbar / 1000.0);
|
||||
} else
|
||||
volume = ml / 1000.0;
|
||||
}
|
||||
|
||||
if (output_units.pressure == PSI) {
|
||||
pressure = mbar_to_PSI(mbar);
|
||||
|
|
Loading…
Add table
Reference in a new issue