diff options
author | Rick Walsh <rickmwalsh@gmail.com> | 2015-09-27 19:18:33 +1000 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-09-27 12:53:25 -0400 |
commit | 3741e8228e91c965084f511bdf51d0a528edc145 (patch) | |
tree | 24bbda646a6bb29cde236671a38ed3d292776693 | |
parent | 64453893a0d8f88f4c70b5606d133b1acc68d10b (diff) | |
download | subsurface-3741e8228e91c965084f511bdf51d0a528edc145.tar.gz |
VPM-B set default conservatism +3
Nominal (aka 0) conservatism for VPM-B is generally considered aggressive. We
don't want to be aggressive, especially as some users might assume the default
is the correct value. Our default Buhlmann gradient factors are 30/75. The
most similar VPM-B conservatism level is probably +3, at least for dives in the
40-50 metre, 50-70 minute range.
Signed-off-by: Rick Walsh <rickmwalsh@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r-- | subsurfacestartup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/subsurfacestartup.c b/subsurfacestartup.c index 18d00d374..fd5df09ab 100644 --- a/subsurfacestartup.c +++ b/subsurfacestartup.c @@ -76,7 +76,7 @@ struct preferences default_prefs = { .category = { 0 } }, .deco_mode = BUEHLMANN, - .conservatism_level = 0 + .conservatism_level = 3 }; int run_survey; |