>From 8874c487f560a78b031d57ae09f7242fa941265f Mon Sep 17 00:00:00 2001 From: Giuseppe 'ferdy' Miceli <[email protected]> Date: Tue, 4 Mar 2014 22:21:46 +0100 Subject: [PATCH] Add more common cylinders' sizes.
18L bottles are fairly common (at least in Italy). Likewise, D10 and D15 are for technical divers. Signed-off-by: Giuseppe 'ferdy' Miceli <[email protected]> --- equipment.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/equipment.c b/equipment.c index e63a876..71978bc 100644 --- a/equipment.c +++ b/equipment.c @@ -154,9 +154,13 @@ struct tank_info_t tank_info[100] = { { "12L 300 bar", .ml = 12000, .bar = 300 }, { "15L 200 bar", .ml = 15000, .bar = 200 }, { "15L 232 bar", .ml = 15000, .bar = 232 }, + { "18L 200 bar", .ml = 18000, .bar = 200 }, + { "18L 232 bar", .ml = 18000, .bar = 232 }, { "D7 300 bar", .ml = 14000, .bar = 300 }, { "D8.5 232 bar", .ml = 17000, .bar = 232 }, + { "D10 232 bar", .ml = 20000, .bar = 232 }, { "D12 232 bar", .ml = 24000, .bar = 232 }, + { "D15 232 bar", .ml = 30000, .bar = 232 }, /* We'll fill in more from the dive log dynamically */ { NULL, } -- 1.8.5.5
_______________________________________________ subsurface mailing list [email protected] http://lists.hohndel.org/cgi-bin/mailman/listinfo/subsurface
