mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Planner prefs: set all ascent rates to 9m/min
9m/min (or 10m/min) is the ascent rate assumed by Buhlmann and navy tables, and the default of most other planning software and dive computers. Setting the default to 9m/min allows the default behaviour to be consistent with "expected" behaviour, but does not prevent the user from changing the preference. There is disagreement between some users whether the final ascent ascent duration should be considered when determining the length of the final stop. This change does not alter that at all, but at 9m/min, the difference is <1min. See #592 Signed-off-by: Rick Walsh <rickmwalsh@gmail.com>
This commit is contained in:
parent
0f7c74f400
commit
1bc5050eff
1 changed files with 3 additions and 3 deletions
|
@ -48,9 +48,9 @@ struct preferences default_prefs = {
|
|||
.display_unused_tanks = false,
|
||||
.show_average_depth = true,
|
||||
.ascrate75 = 9000 / 60,
|
||||
.ascrate50 = 6000 / 60,
|
||||
.ascratestops = 6000 / 60,
|
||||
.ascratelast6m = 1000 / 60,
|
||||
.ascrate50 = 9000 / 60,
|
||||
.ascratestops = 9000 / 60,
|
||||
.ascratelast6m = 9000 / 60,
|
||||
.descrate = 18000 / 60,
|
||||
.sacfactor = 400,
|
||||
.problemsolvingtime = 4,
|
||||
|
|
Loading…
Add table
Reference in a new issue