On a recent trip, 8 of us were diving 232 bar D10s. I tried to get
everyone to use Subsurface, but this exact issue killed that idea -
no-one on board had a laptop, and even if they did, there was no
internet.
There is no "off the shelf" option for a single 20L volume anywhere
in the default cylinder definitions.
BTW I know several people who dive 232 bar twin 7's as well, there's
no default option (14L volume) for them either.
Simple to fix, I think.
diff --git a/core/equipment.c b/core/equipment.c
index 685306981..933ccab42 100644
--- a/core/equipment.c
+++ b/core/equipment.c
@@ -289,7 +289,9 @@ static void add_default_tank_infos(struct
tank_info_table *table)
add_tank_info_metric(table, "15ℓ 200 bar", 15000, 200);
add_tank_info_metric(table, "15ℓ 232 bar", 15000, 232);
add_tank_info_metric(table, "D7 300 bar", 14000, 300);
+ add_tank_info_metric(table, "D7 232 bar", 14000, 232);
add_tank_info_metric(table, "D8.5 232 bar", 17000, 232);
+ add_tank_info_metric(table, "D10 232 bar", 20000, 232);
add_tank_info_metric(table, "D12 232 bar", 24000, 232);
add_tank_info_metric(table, "D13 232 bar", 26000, 232);
add_tank_info_metric(table, "D15 232 bar", 30000, 232);
Regards,
C.