diff options
author | Berthold Stoeger <bstoeger@mail.tuwien.ac.at> | 2021-02-26 12:42:27 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2021-03-24 10:30:22 -0700 |
commit | d0494beb5f1509fc73cf7d0a110740676164d7b9 (patch) | |
tree | a46c8d05055abd0673ad2921827266db40764596 /core/profile.c | |
parent | 289cf3f9c5e7bd1882690b93d83b0c49e35883ba (diff) | |
download | subsurface-d0494beb5f1509fc73cf7d0a110740676164d7b9.tar.gz |
planner: fix deco calculation
In 9bfc6d252, testing of the planner was changed to use the
planner_ds parameter instead of a global variable.
Unfortunately, two conditionals were inverted, leading to
an erroneous ceiling calculation when in the planner.
Restore the proper conditions. Moreover, instead of testing
the planner_ds parameter, use the already existing in_planner
flag, which is derived from said parameter.
Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
Diffstat (limited to 'core/profile.c')
-rw-r--r-- | core/profile.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/core/profile.c b/core/profile.c index 3b214f4ab..d20d068e3 100644 --- a/core/profile.c +++ b/core/profile.c @@ -997,7 +997,7 @@ static void calculate_deco_information(struct deco_state *ds, const struct deco_ int prev_deco_time = 10000000, time_deep_ceiling = 0; bool in_planner = planner_ds != NULL; - if (!planner_ds) { + if (!in_planner) { ds->deco_time = 0; ds->first_ceiling_pressure.mbar = 0; } else { @@ -1054,7 +1054,7 @@ static void calculate_deco_information(struct deco_state *ds, const struct deco_ nuclear_regeneration(ds, t1); vpmb_start_gradient(ds); /* For CVA iterations, calculate next gradient */ - if (!first_iteration || !planner_ds) + if (!first_iteration || in_planner) vpmb_next_gradient(ds, ds->deco_time, surface_pressure / 1000.0, in_planner); } entry->ceiling = deco_allowed_depth(tissue_tolerance_calc(ds, dive, depth_to_bar(entry->depth, dive), in_planner), surface_pressure, dive, !prefs.calcceiling3m); @@ -1076,7 +1076,7 @@ static void calculate_deco_information(struct deco_state *ds, const struct deco_ /* For CVA calculations, deco time = dive time remaining is a good guess, but we want to over-estimate deco_time for the first iteration so it converges correctly, so add 30min*/ - if (!planner_ds) + if (!in_planner) ds->deco_time = pi->maxtime - t1 + 1800; vpmb_next_gradient(ds, ds->deco_time, surface_pressure / 1000.0, in_planner); } @@ -1113,7 +1113,7 @@ static void calculate_deco_information(struct deco_state *ds, const struct deco_ // that can be trampled upon. But ultimately, the ceiling-violation // marker should be handled differently! // Don't scream if we violate the ceiling by a few cm. - if (planner_ds && !pi->waypoint_above_ceiling && + if (in_planner && !pi->waypoint_above_ceiling && entry->depth < max_ceiling - 100 && entry->sec > 0) { struct dive *non_const_dive = (struct dive *)dive; // cast away const! add_event(&non_const_dive->dc, entry->sec, SAMPLE_EVENT_CEILING, -1, max_ceiling / 1000, @@ -1125,8 +1125,8 @@ static void calculate_deco_information(struct deco_state *ds, const struct deco_ * We don't for print-mode because this info doesn't show up there * If the ceiling hasn't cleared by the last data point, we need tts for VPM-B CVA calculation * It is not necessary to do these calculation on the first VPMB iteration, except for the last data point */ - if ((prefs.calcndltts && (decoMode(in_planner) != VPMB || !planner_ds || !first_iteration)) || - (decoMode(in_planner) == VPMB && !planner_ds && i == pi->nr - 1)) { + if ((prefs.calcndltts && (decoMode(in_planner) != VPMB || in_planner || !first_iteration)) || + (decoMode(in_planner) == VPMB && !in_planner && i == pi->nr - 1)) { /* only calculate ndl/tts on every 30 seconds */ if ((entry->sec - last_ndl_tts_calc_time) < 30 && i != pi->nr - 1) { struct plot_data *prev_entry = (entry - 1); @@ -1142,14 +1142,14 @@ static void calculate_deco_information(struct deco_state *ds, const struct deco_ struct deco_state *cache_data = NULL; cache_deco_state(ds, &cache_data); calculate_ndl_tts(ds, dive, entry, gasmix, surface_pressure, current_divemode, in_planner); - if (decoMode(in_planner) == VPMB && !planner_ds && i == pi->nr - 1) + if (decoMode(in_planner) == VPMB && !in_planner && i == pi->nr - 1) final_tts = entry->tts_calc; /* Restore "real" deco state for next real time step */ restore_deco_state(cache_data, ds, decoMode(in_planner) == VPMB); free(cache_data); } } - if (decoMode(in_planner) == VPMB && !planner_ds) { + if (decoMode(in_planner) == VPMB && !in_planner) { int this_deco_time; prev_deco_time = ds->deco_time; // Do we need to update deco_time? |