diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2013-05-22 13:29:17 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-05-22 14:51:41 -0700 |
commit | 76903849de8da124d737a8ecd615cec259504a4e (patch) | |
tree | e83cfeb04c002438dc6592b40e702e39de4613bc /dive.c | |
parent | 63b6f7d5a25967f003a734d2058a73b4b13e8387 (diff) | |
download | subsurface-76903849de8da124d737a8ecd615cec259504a4e.tar.gz |
Get the math right for cylinder model setData function
This is a fun one.
We only want to mark the divelist changed if the user actually changed
something. So we try really hard to compare what was entered with what was
there and only if it is different do we overwrite existing values and
record this as a change to the divelist.
An additional challenge here is the fact that the user needs to enter a
working pressure before they can enter a size (when in cuft mode). That is
not really intuitive. We work around this by assuming working pressure is
3000psi if a size is given in cuft - but then if the user changes the
working pressure, that changes the volume. Now going back and changing the
volume again does the trick. Or enter the working pressure FIRST and then
the volume...
This also changes the incorrect MAXPRESSURE to WORKINGPRESSURE and uses
the text WorkPress in English (Gtk code used MaxPress which was simply
wrong - this is just the design pressure or working pressure, not some
hard maximum. In fact, people quite commonly "overfill" these tanks.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'dive.c')
-rw-r--r-- | dive.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -312,6 +312,11 @@ int gas_volume(cylinder_t *cyl, pressure_t p) return cyl->type.size.mliter * surface_volume_multiplier(p); } +int wet_volume(double cuft, pressure_t p) +{ + return cuft_to_l(cuft) * 1000 / surface_volume_multiplier(p); +} + /* * If the cylinder tank pressures are within half a bar * (about 8 PSI) of the sample pressures, we consider it |