2017-04-27 18:18:03 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2013-01-03 05:21:36 +00:00
|
|
|
/* calculate deco values
|
|
|
|
* based on Bühlmann ZHL-16b
|
|
|
|
* based on an implemention by heinrichs weikamp for the DR5
|
2013-01-08 17:29:07 +00:00
|
|
|
* the original file was given to Subsurface under the GPLv2
|
|
|
|
* by Matthias Heinrichs
|
2013-01-03 05:21:36 +00:00
|
|
|
*
|
2013-01-08 17:29:07 +00:00
|
|
|
* The implementation below is a fairly complete rewrite since then
|
|
|
|
* (C) Robert C. Helling 2013 and released under the GPLv2
|
2013-01-03 05:21:36 +00:00
|
|
|
*
|
2013-01-08 17:29:07 +00:00
|
|
|
* add_segment() - add <seconds> at the given pressure, breathing gasmix
|
|
|
|
* deco_allowed_depth() - ceiling based on lead tissue, surface pressure, 3m increments or smooth
|
|
|
|
* set_gf() - set Buehlmann gradient factors
|
2016-09-24 08:02:08 +00:00
|
|
|
* set_vpmb_conservatism() - set VPM-B conservatism value
|
2013-01-08 17:29:07 +00:00
|
|
|
* clear_deco()
|
|
|
|
* cache_deco_state()
|
|
|
|
* restore_deco_state()
|
|
|
|
* dump_tissues()
|
2013-01-03 05:21:36 +00:00
|
|
|
*/
|
2013-01-04 04:45:20 +00:00
|
|
|
#include <math.h>
|
2013-01-06 19:13:46 +00:00
|
|
|
#include <string.h>
|
2019-08-05 18:07:10 +00:00
|
|
|
#include <assert.h>
|
|
|
|
|
2019-08-05 18:43:06 +00:00
|
|
|
#include "deco.h"
|
2019-08-05 18:07:10 +00:00
|
|
|
#include "ssrf.h"
|
2013-01-03 05:21:36 +00:00
|
|
|
#include "dive.h"
|
2019-08-05 18:43:06 +00:00
|
|
|
#include "gas.h"
|
2018-05-11 15:25:41 +00:00
|
|
|
#include "subsurface-string.h"
|
2019-08-05 17:41:15 +00:00
|
|
|
#include "errorhelper.h"
|
|
|
|
#include "planner.h"
|
2018-02-24 22:28:13 +00:00
|
|
|
#include "qthelper.h"
|
2013-01-03 05:21:36 +00:00
|
|
|
|
2015-08-31 20:15:43 +00:00
|
|
|
#define cube(x) (x * x * x)
|
|
|
|
|
2017-09-20 12:35:05 +00:00
|
|
|
// Subsurface until v4.6.2 appeared to produce marginally less conservative plans than our benchmarks.
|
|
|
|
// This factor was used to correct this. Since a fix for the saturation and desaturation rates
|
|
|
|
// was introduced in v4.6.3 this can be set to a value of 1.0 which means no correction.
|
2017-02-19 09:28:55 +00:00
|
|
|
#define subsurface_conservatism_factor 1.0
|
2015-09-01 22:22:58 +00:00
|
|
|
|
2013-01-03 05:21:36 +00:00
|
|
|
//! Option structure for Buehlmann decompression.
|
|
|
|
struct buehlmann_config {
|
2016-03-23 16:53:44 +00:00
|
|
|
double satmult; //! safety at inert gas accumulation as percentage of effect (more than 100).
|
|
|
|
double desatmult; //! safety at inert gas depletion as percentage of effect (less than 100).
|
|
|
|
int last_deco_stop_in_mtr; //! depth of last_deco_stop.
|
|
|
|
double gf_high; //! gradient factor high (at surface).
|
|
|
|
double gf_low; //! gradient factor low (at bottom/start of deco calculation).
|
|
|
|
double gf_low_position_min; //! gf_low_position below surface_min_shallow.
|
2013-01-03 05:21:36 +00:00
|
|
|
};
|
2015-08-17 11:52:14 +00:00
|
|
|
|
|
|
|
struct buehlmann_config buehlmann_config = {
|
|
|
|
.satmult = 1.0,
|
2017-02-19 09:28:55 +00:00
|
|
|
.desatmult = 1.0,
|
2015-08-17 11:52:14 +00:00
|
|
|
.last_deco_stop_in_mtr = 0,
|
|
|
|
.gf_high = 0.75,
|
|
|
|
.gf_low = 0.35,
|
|
|
|
.gf_low_position_min = 1.0,
|
|
|
|
};
|
2013-01-03 05:21:36 +00:00
|
|
|
|
2015-07-03 19:30:53 +00:00
|
|
|
//! Option structure for VPM-B decompression.
|
|
|
|
struct vpmb_config {
|
|
|
|
double crit_radius_N2; //! Critical radius of N2 nucleon (microns).
|
|
|
|
double crit_radius_He; //! Critical radius of He nucleon (microns).
|
2015-08-15 13:55:46 +00:00
|
|
|
double crit_volume_lambda; //! Constant corresponding to critical gas volume (bar * min).
|
2015-07-07 10:25:51 +00:00
|
|
|
double gradient_of_imperm; //! Gradient after which bubbles become impermeable (bar).
|
2015-08-29 11:34:19 +00:00
|
|
|
double surface_tension_gamma; //! Nucleons surface tension constant (N / bar = m2).
|
|
|
|
double skin_compression_gammaC; //! Skin compression gammaC (N / bar = m2).
|
2015-07-07 10:25:51 +00:00
|
|
|
double regeneration_time; //! Time needed for the bubble to regenerate to the start radius (min).
|
|
|
|
double other_gases_pressure; //! Always present pressure of other gasses in tissues (bar).
|
2016-09-24 08:02:08 +00:00
|
|
|
short conservatism; //! VPM-B conservatism level (0-4)
|
2015-07-03 19:30:53 +00:00
|
|
|
};
|
2015-08-17 11:52:14 +00:00
|
|
|
|
2019-06-04 16:51:54 +00:00
|
|
|
static struct vpmb_config vpmb_config = {
|
2015-08-17 11:52:14 +00:00
|
|
|
.crit_radius_N2 = 0.55,
|
|
|
|
.crit_radius_He = 0.45,
|
2015-08-18 14:06:39 +00:00
|
|
|
.crit_volume_lambda = 199.58,
|
2015-09-16 09:57:24 +00:00
|
|
|
.gradient_of_imperm = 8.30865, // = 8.2 atm
|
2015-08-29 11:34:19 +00:00
|
|
|
.surface_tension_gamma = 0.18137175, // = 0.0179 N/msw
|
|
|
|
.skin_compression_gammaC = 2.6040525, // = 0.257 N/msw
|
2015-08-17 11:52:14 +00:00
|
|
|
.regeneration_time = 20160.0,
|
2016-09-24 08:02:08 +00:00
|
|
|
.other_gases_pressure = 0.1359888,
|
|
|
|
.conservatism = 3
|
2015-08-17 11:52:14 +00:00
|
|
|
};
|
2015-07-03 19:30:53 +00:00
|
|
|
|
2019-06-04 16:51:54 +00:00
|
|
|
static const double buehlmann_N2_a[] = { 1.1696, 1.0, 0.8618, 0.7562,
|
|
|
|
0.62, 0.5043, 0.441, 0.4,
|
|
|
|
0.375, 0.35, 0.3295, 0.3065,
|
|
|
|
0.2835, 0.261, 0.248, 0.2327 };
|
2013-01-03 05:21:36 +00:00
|
|
|
|
2019-06-04 16:51:54 +00:00
|
|
|
static const double buehlmann_N2_b[] = { 0.5578, 0.6514, 0.7222, 0.7825,
|
|
|
|
0.8126, 0.8434, 0.8693, 0.8910,
|
|
|
|
0.9092, 0.9222, 0.9319, 0.9403,
|
|
|
|
0.9477, 0.9544, 0.9602, 0.9653 };
|
2013-01-03 05:21:36 +00:00
|
|
|
|
2014-02-28 04:09:57 +00:00
|
|
|
const double buehlmann_N2_t_halflife[] = { 5.0, 8.0, 12.5, 18.5,
|
|
|
|
27.0, 38.3, 54.3, 77.0,
|
|
|
|
109.0, 146.0, 187.0, 239.0,
|
|
|
|
305.0, 390.0, 498.0, 635.0 };
|
2013-01-03 05:21:36 +00:00
|
|
|
|
2016-08-30 09:33:16 +00:00
|
|
|
// 1 - exp(-1 / (halflife * 60) * ln(2))
|
2019-06-04 16:51:54 +00:00
|
|
|
static const double buehlmann_N2_factor_expositon_one_second[] = {
|
2013-01-03 05:21:36 +00:00
|
|
|
2.30782347297664E-003, 1.44301447809736E-003, 9.23769302935806E-004, 6.24261986779007E-004,
|
|
|
|
4.27777107246730E-004, 3.01585140931371E-004, 2.12729727268379E-004, 1.50020603047807E-004,
|
|
|
|
1.05980191127841E-004, 7.91232600646508E-005, 6.17759153688224E-005, 4.83354552742732E-005,
|
2014-02-28 04:09:57 +00:00
|
|
|
3.78761777920511E-005, 2.96212356654113E-005, 2.31974277413727E-005, 1.81926738960225E-005
|
|
|
|
};
|
2013-01-03 05:21:36 +00:00
|
|
|
|
2019-06-04 16:51:54 +00:00
|
|
|
static const double buehlmann_He_a[] = { 1.6189, 1.383, 1.1919, 1.0458,
|
|
|
|
0.922, 0.8205, 0.7305, 0.6502,
|
|
|
|
0.595, 0.5545, 0.5333, 0.5189,
|
|
|
|
0.5181, 0.5176, 0.5172, 0.5119 };
|
2013-01-03 05:21:36 +00:00
|
|
|
|
2019-06-04 16:51:54 +00:00
|
|
|
static const double buehlmann_He_b[] = { 0.4770, 0.5747, 0.6527, 0.7223,
|
|
|
|
0.7582, 0.7957, 0.8279, 0.8553,
|
|
|
|
0.8757, 0.8903, 0.8997, 0.9073,
|
|
|
|
0.9122, 0.9171, 0.9217, 0.9267 };
|
2013-01-03 05:21:36 +00:00
|
|
|
|
2019-06-04 16:51:54 +00:00
|
|
|
static const double buehlmann_He_t_halflife[] = { 1.88, 3.02, 4.72, 6.99,
|
|
|
|
10.21, 14.48, 20.53, 29.11,
|
|
|
|
41.20, 55.19, 70.69, 90.34,
|
|
|
|
115.29, 147.42, 188.24, 240.03 };
|
2013-01-03 05:21:36 +00:00
|
|
|
|
2019-06-04 16:51:54 +00:00
|
|
|
static const double buehlmann_He_factor_expositon_one_second[] = {
|
2013-01-03 05:21:36 +00:00
|
|
|
6.12608039419837E-003, 3.81800836683133E-003, 2.44456078654209E-003, 1.65134647076792E-003,
|
|
|
|
1.13084424730725E-003, 7.97503165599123E-004, 5.62552521860549E-004, 3.96776399429366E-004,
|
|
|
|
2.80360036664540E-004, 2.09299583354805E-004, 1.63410794820518E-004, 1.27869320250551E-004,
|
2014-02-28 04:09:57 +00:00
|
|
|
1.00198406028040E-004, 7.83611475491108E-005, 6.13689891868496E-005, 4.81280465299827E-005
|
|
|
|
};
|
2013-01-03 05:21:36 +00:00
|
|
|
|
2019-06-04 16:51:54 +00:00
|
|
|
static const double vpmb_conservatism_lvls[] = { 1.0, 1.05, 1.12, 1.22, 1.35 };
|
2015-08-15 12:36:07 +00:00
|
|
|
|
2015-08-29 11:43:32 +00:00
|
|
|
/* Inspired gas loading equations depend on the partial pressure of inert gas in the alveolar.
|
|
|
|
* P_alv = (P_amb - P_H2O + (1 - Rq) / Rq * P_CO2) * f
|
|
|
|
* where:
|
|
|
|
* P_alv alveolar partial pressure of inert gas
|
|
|
|
* P_amb ambient pressure
|
|
|
|
* P_H2O water vapour partial pressure = ~0.0627 bar
|
|
|
|
* P_CO2 carbon dioxide partial pressure = ~0.0534 bar
|
|
|
|
* Rq respiratory quotient (O2 consumption / CO2 production)
|
|
|
|
* f fraction of inert gas
|
|
|
|
*
|
|
|
|
* In our calculations, we simplify this to use an effective water vapour pressure
|
|
|
|
* WV = P_H20 - (1 - Rq) / Rq * P_CO2
|
|
|
|
*
|
|
|
|
* Buhlmann ignored the contribution of CO2 (i.e. Rq = 1.0), whereas Schreiner adopted Rq = 0.8.
|
|
|
|
* WV_Buhlmann = PP_H2O = 0.0627 bar
|
|
|
|
* WV_Schreiner = 0.0627 - (1 - 0.8) / Rq * 0.0534 = 0.0493 bar
|
|
|
|
|
|
|
|
* Buhlmann calculations use the Buhlmann value, VPM-B calculations use the Schreiner value.
|
|
|
|
*/
|
|
|
|
#define WV_PRESSURE 0.0627 // water vapor pressure in bar, based on respiratory quotient Rq = 1.0 (Buhlmann value)
|
|
|
|
#define WV_PRESSURE_SCHREINER 0.0493 // water vapor pressure in bar, based on respiratory quotient Rq = 0.8 (Schreiner value)
|
|
|
|
|
2013-01-08 14:37:41 +00:00
|
|
|
#define DECO_STOPS_MULTIPLIER_MM 3000.0
|
2015-08-15 12:28:44 +00:00
|
|
|
#define NITROGEN_FRACTION 0.79
|
2013-01-08 14:37:41 +00:00
|
|
|
|
2017-11-22 19:42:33 +00:00
|
|
|
#define TISSUE_ARRAY_SZ sizeof(ds->tissue_n2_sat)
|
2015-07-03 20:10:12 +00:00
|
|
|
|
2019-06-04 16:51:54 +00:00
|
|
|
static double get_crit_radius_He()
|
2015-08-15 12:36:07 +00:00
|
|
|
{
|
2016-09-24 08:02:08 +00:00
|
|
|
if (vpmb_config.conservatism <= 4)
|
|
|
|
return vpmb_config.crit_radius_He * vpmb_conservatism_lvls[vpmb_config.conservatism] * subsurface_conservatism_factor;
|
2015-08-15 12:36:07 +00:00
|
|
|
return vpmb_config.crit_radius_He;
|
|
|
|
}
|
|
|
|
|
2019-06-04 16:51:54 +00:00
|
|
|
static double get_crit_radius_N2()
|
2015-08-15 12:36:07 +00:00
|
|
|
{
|
2016-09-24 08:02:08 +00:00
|
|
|
if (vpmb_config.conservatism <= 4)
|
|
|
|
return vpmb_config.crit_radius_N2 * vpmb_conservatism_lvls[vpmb_config.conservatism] * subsurface_conservatism_factor;
|
2015-08-15 12:36:07 +00:00
|
|
|
return vpmb_config.crit_radius_N2;
|
|
|
|
}
|
2015-07-03 20:10:12 +00:00
|
|
|
|
2015-08-31 20:15:43 +00:00
|
|
|
// Solve another cubic equation, this time
|
|
|
|
// x^3 - B x - C == 0
|
|
|
|
// Use trigonometric formula for negative discriminants (see Wikipedia for details)
|
|
|
|
|
2019-06-04 16:51:54 +00:00
|
|
|
static double solve_cubic2(double B, double C)
|
2015-08-31 20:15:43 +00:00
|
|
|
{
|
|
|
|
double discriminant = 27 * C * C - 4 * cube(B);
|
|
|
|
if (discriminant < 0.0) {
|
|
|
|
return 2.0 * sqrt(B / 3.0) * cos(acos(3.0 * C * sqrt(3.0 / B) / (2.0 * B)) / 3.0);
|
|
|
|
}
|
|
|
|
|
|
|
|
double denominator = pow(9 * C + sqrt(3 * discriminant), 1 / 3.0);
|
|
|
|
|
|
|
|
return pow(2.0 / 3.0, 1.0 / 3.0) * B / denominator + denominator / pow(18.0, 1.0 / 3.0);
|
|
|
|
}
|
|
|
|
|
|
|
|
// This is a simplified formula avoiding radii. It uses the fact that Boyle's law says
|
|
|
|
// pV = (G + P_amb) / G^3 is constant to solve for the new gradient G.
|
|
|
|
|
2019-06-04 16:51:54 +00:00
|
|
|
static double update_gradient(struct deco_state *ds, double next_stop_pressure, double first_gradient)
|
2015-08-31 20:15:43 +00:00
|
|
|
{
|
2017-11-22 19:42:33 +00:00
|
|
|
double B = cube(first_gradient) / (ds->first_ceiling_pressure.mbar / 1000.0 + first_gradient);
|
2015-08-31 20:15:43 +00:00
|
|
|
double C = next_stop_pressure * B;
|
|
|
|
|
|
|
|
double new_gradient = solve_cubic2(B, C);
|
|
|
|
|
|
|
|
if (new_gradient < 0.0)
|
|
|
|
report_error("Negative gradient encountered!");
|
|
|
|
return new_gradient;
|
|
|
|
}
|
|
|
|
|
2019-06-04 16:51:54 +00:00
|
|
|
static double vpmb_tolerated_ambient_pressure(struct deco_state *ds, double reference_pressure, int ci)
|
2015-08-31 20:15:43 +00:00
|
|
|
{
|
|
|
|
double n2_gradient, he_gradient, total_gradient;
|
|
|
|
|
2017-11-22 19:42:33 +00:00
|
|
|
if (reference_pressure >= ds->first_ceiling_pressure.mbar / 1000.0 || !ds->first_ceiling_pressure.mbar) {
|
|
|
|
n2_gradient = ds->bottom_n2_gradient[ci];
|
|
|
|
he_gradient = ds->bottom_he_gradient[ci];
|
2015-08-31 20:15:43 +00:00
|
|
|
} else {
|
2017-11-22 19:42:33 +00:00
|
|
|
n2_gradient = update_gradient(ds, reference_pressure, ds->bottom_n2_gradient[ci]);
|
|
|
|
he_gradient = update_gradient(ds, reference_pressure, ds->bottom_he_gradient[ci]);
|
2015-08-31 20:15:43 +00:00
|
|
|
}
|
|
|
|
|
2017-11-22 19:42:33 +00:00
|
|
|
total_gradient = ((n2_gradient * ds->tissue_n2_sat[ci]) + (he_gradient * ds->tissue_he_sat[ci])) / (ds->tissue_n2_sat[ci] + ds->tissue_he_sat[ci]);
|
2015-08-31 20:15:43 +00:00
|
|
|
|
2017-11-22 19:42:33 +00:00
|
|
|
return ds->tissue_n2_sat[ci] + ds->tissue_he_sat[ci] + vpmb_config.other_gases_pressure - total_gradient;
|
2015-08-31 20:15:43 +00:00
|
|
|
}
|
|
|
|
|
2017-11-22 19:42:33 +00:00
|
|
|
double tissue_tolerance_calc(struct deco_state *ds, const struct dive *dive, double pressure)
|
2013-01-03 05:21:36 +00:00
|
|
|
{
|
|
|
|
int ci = -1;
|
2013-01-04 07:56:10 +00:00
|
|
|
double ret_tolerance_limit_ambient_pressure = 0.0;
|
2013-01-08 14:37:41 +00:00
|
|
|
double gf_high = buehlmann_config.gf_high;
|
|
|
|
double gf_low = buehlmann_config.gf_low;
|
2014-01-15 18:54:41 +00:00
|
|
|
double surface = get_surface_pressure_in_mbar(dive, true) / 1000.0;
|
Deco artefacts with low GFlow
In a dive, when you choose a very low GFlow (like 5 or 9) and a trimix
with quite some He (12/48 in the example) and descend fast, the ceiling
seems to do strange things in the first minutes of the dive (very very
deep for example or jumping around).
To understand what is going on we have to recall what gradient factors do
in detail: Plain Buehlmann gives you for each tissue a maximal inert gas
pressure that is a straight line when plotted against the ambient
pressure. So for each depth (=ambient pressure) there is a maximally
allowed over-pressure.
The idea of gradient factors is that one does not use all the possible
over-pressure that Buehlmann gives us but only a depth dependent fraction.
GFhigh is the fraction of the possible over-pressure at the surface while
GFlow is the fraction at the first deco stop. In between, the fraction is
linearly interpolated. As the Buehlmann over-pressure is increasing with
depth and typically also the allowed overpressure after applications of
gradient factors increases with depth or said differently: the tissue
saturation has to be lower if the diver wants to ascent.
The main problem is: What is the first stop (where to apply GFlow)? In a
planned dive, we could take the first deco stop, but in a real dive from a
dive computer download it is impossible to say what constitutes a stop and
what is only a slow ascent?
What I have used so far is not exactly the first stop but rather the first
theoretical stop: During all of the dive, I have calculated the ceiling
under the assumption that GFlow applies everywhere (and not just at a
single depth). The deepest of these ceilings I have used as the “first
stop depth”, the depth at which GFlow applies.
Even more, I only wanted to use the information that a diver has during
the dive, so I actually only considered the ceilings in the past (and not
in the future of a given sample).
But this brings with it the problem that early in the dive, in particular
during the descent the lowest ceiling so far is very shallow (as not much
gas has built up in the body so far).
This problem now interferes with a second one: If at the start of the dive
when the all compartments have 790mbar N2 the diver starts breathing a
He-heavy mix (like 12/48) and descents fast the He builds up in the
tissues before the N2 can diffuse out. So right at the start, we already
encounter high tissue loadings.
If now we have a large difference between GFhigh and GFlow but they apply
at very similar depth (the surface and a very shallow depth of the deepest
ceiling (which for a non-decompression dive would be theoretically at
negative depth) so far) it can happen that the linear interpolation as
opposite slope then in the typical case above: The allowed over-pressure
is degreasing with depth, shallower depth do not require lower gas loading
in the tissue (i.e. can be reached after further off-gasing) but but
tolerate higher loadings. In that situation the ceiling disappears (or is
rather a floor).
So far, I got rid of that problem, by stating that the minimum depth for
GFlow was 20m (after all, GFlow is about deep stops, so it should better
not be too shallow). Now the dive reported in ticket #549 takes values to
an extreme in such away that 20m (which is determined by
buehlmann_config.gf_low_position_min in deco.c) was not enough to prevent
this inversion problem (or in a milder form that the interpolation of
gradient factors is in fact an extrapolation with quite extreme values).
This patch that gets rid of the problem for the dive described above but
still it is possible to find (more extreme) parameter choices that lead to
non-realistic ceilings.
Let me close by pointing out that all this is only about the descent, as
it is about too shallow depth for GFlow. So no real deco (i.e. later part
of the dive) is inflicted. This is only about a theoretical ceiling
displayed possibly in the first minutes of a dive. So this is more an
aesthetically than a practical problem.
Fixes #549
Signed-off-by: Robert C. Helling <helling@atdotde.de>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
2014-06-18 15:11:54 +00:00
|
|
|
double lowest_ceiling = 0.0;
|
|
|
|
double tissue_lowest_ceiling[16];
|
2013-01-03 05:21:36 +00:00
|
|
|
|
2016-10-03 14:38:37 +00:00
|
|
|
for (ci = 0; ci < 16; ci++) {
|
2017-11-22 19:42:33 +00:00
|
|
|
ds->buehlmann_inertgas_a[ci] = ((buehlmann_N2_a[ci] * ds->tissue_n2_sat[ci]) + (buehlmann_He_a[ci] * ds->tissue_he_sat[ci])) / ds->tissue_inertgas_saturation[ci];
|
|
|
|
ds->buehlmann_inertgas_b[ci] = ((buehlmann_N2_b[ci] * ds->tissue_n2_sat[ci]) + (buehlmann_He_b[ci] * ds->tissue_he_sat[ci])) / ds->tissue_inertgas_saturation[ci];
|
2016-10-03 14:38:37 +00:00
|
|
|
}
|
|
|
|
|
2017-01-07 02:01:14 +00:00
|
|
|
if (decoMode() != VPMB) {
|
2015-08-12 10:06:52 +00:00
|
|
|
for (ci = 0; ci < 16; ci++) {
|
2013-01-03 05:21:36 +00:00
|
|
|
|
2015-08-12 10:06:52 +00:00
|
|
|
/* tolerated = (tissue_inertgas_saturation - buehlmann_inertgas_a) * buehlmann_inertgas_b; */
|
2013-01-08 14:37:41 +00:00
|
|
|
|
2017-11-22 19:42:33 +00:00
|
|
|
tissue_lowest_ceiling[ci] = (ds->buehlmann_inertgas_b[ci] * ds->tissue_inertgas_saturation[ci] - gf_low * ds->buehlmann_inertgas_a[ci] * ds->buehlmann_inertgas_b[ci]) /
|
|
|
|
((1.0 - ds->buehlmann_inertgas_b[ci]) * gf_low + ds->buehlmann_inertgas_b[ci]);
|
2015-08-12 10:06:52 +00:00
|
|
|
if (tissue_lowest_ceiling[ci] > lowest_ceiling)
|
|
|
|
lowest_ceiling = tissue_lowest_ceiling[ci];
|
2017-11-22 19:42:33 +00:00
|
|
|
if (lowest_ceiling > ds->gf_low_pressure_this_dive)
|
|
|
|
ds->gf_low_pressure_this_dive = lowest_ceiling;
|
2013-11-20 15:11:22 +00:00
|
|
|
}
|
2015-08-12 10:06:52 +00:00
|
|
|
for (ci = 0; ci < 16; ci++) {
|
|
|
|
double tolerated;
|
|
|
|
|
2017-11-22 19:42:33 +00:00
|
|
|
if ((surface / ds->buehlmann_inertgas_b[ci] + ds->buehlmann_inertgas_a[ci] - surface) * gf_high + surface <
|
|
|
|
(ds->gf_low_pressure_this_dive / ds->buehlmann_inertgas_b[ci] + ds->buehlmann_inertgas_a[ci] - ds->gf_low_pressure_this_dive) * gf_low + ds->gf_low_pressure_this_dive)
|
|
|
|
tolerated = (-ds->buehlmann_inertgas_a[ci] * ds->buehlmann_inertgas_b[ci] * (gf_high * ds->gf_low_pressure_this_dive - gf_low * surface) -
|
|
|
|
(1.0 - ds->buehlmann_inertgas_b[ci]) * (gf_high - gf_low) * ds->gf_low_pressure_this_dive * surface +
|
|
|
|
ds->buehlmann_inertgas_b[ci] * (ds->gf_low_pressure_this_dive - surface) * ds->tissue_inertgas_saturation[ci]) /
|
|
|
|
(-ds->buehlmann_inertgas_a[ci] * ds->buehlmann_inertgas_b[ci] * (gf_high - gf_low) +
|
|
|
|
(1.0 - ds->buehlmann_inertgas_b[ci]) * (gf_low * ds->gf_low_pressure_this_dive - gf_high * surface) +
|
|
|
|
ds->buehlmann_inertgas_b[ci] * (ds->gf_low_pressure_this_dive - surface));
|
2015-08-12 10:06:52 +00:00
|
|
|
else
|
|
|
|
tolerated = ret_tolerance_limit_ambient_pressure;
|
|
|
|
|
|
|
|
|
2017-11-22 19:42:33 +00:00
|
|
|
ds->tolerated_by_tissue[ci] = tolerated;
|
2015-08-12 10:06:52 +00:00
|
|
|
|
|
|
|
if (tolerated >= ret_tolerance_limit_ambient_pressure) {
|
2017-11-22 19:42:33 +00:00
|
|
|
ds->ci_pointing_to_guiding_tissue = ci;
|
2015-08-12 10:06:52 +00:00
|
|
|
ret_tolerance_limit_ambient_pressure = tolerated;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// VPM-B ceiling
|
2015-08-31 20:15:43 +00:00
|
|
|
double reference_pressure;
|
|
|
|
|
|
|
|
ret_tolerance_limit_ambient_pressure = pressure;
|
|
|
|
// The Boyle compensated gradient depends on ambient pressure. For the ceiling, this should set the ambient pressure.
|
|
|
|
do {
|
|
|
|
reference_pressure = ret_tolerance_limit_ambient_pressure;
|
|
|
|
ret_tolerance_limit_ambient_pressure = 0.0;
|
|
|
|
for (ci = 0; ci < 16; ci++) {
|
2017-11-22 19:42:33 +00:00
|
|
|
double tolerated = vpmb_tolerated_ambient_pressure(ds, reference_pressure, ci);
|
2015-08-31 20:15:43 +00:00
|
|
|
if (tolerated >= ret_tolerance_limit_ambient_pressure) {
|
2017-11-22 19:42:33 +00:00
|
|
|
ds->ci_pointing_to_guiding_tissue = ci;
|
2015-08-31 20:15:43 +00:00
|
|
|
ret_tolerance_limit_ambient_pressure = tolerated;
|
|
|
|
}
|
2017-11-22 19:42:33 +00:00
|
|
|
ds->tolerated_by_tissue[ci] = tolerated;
|
2015-08-12 10:06:52 +00:00
|
|
|
}
|
2015-08-31 20:15:43 +00:00
|
|
|
// We are doing ok if the gradient was computed within ten centimeters of the ceiling.
|
|
|
|
} while (fabs(ret_tolerance_limit_ambient_pressure - reference_pressure) > 0.01);
|
2013-01-03 05:21:36 +00:00
|
|
|
}
|
2013-01-04 07:56:10 +00:00
|
|
|
return ret_tolerance_limit_ambient_pressure;
|
2013-01-03 05:21:36 +00:00
|
|
|
}
|
|
|
|
|
2013-09-26 03:42:19 +00:00
|
|
|
/*
|
2020-05-05 20:24:50 +00:00
|
|
|
* Return Buehlmann factor for a particular period and tissue index.
|
2013-09-26 03:42:19 +00:00
|
|
|
*/
|
2019-06-04 16:51:54 +00:00
|
|
|
static double factor(int period_in_seconds, int ci, enum inertgas gas)
|
2013-09-26 03:42:19 +00:00
|
|
|
{
|
2017-08-25 21:21:27 +00:00
|
|
|
if (period_in_seconds == 1) {
|
|
|
|
if (gas == N2)
|
|
|
|
return buehlmann_N2_factor_expositon_one_second[ci];
|
|
|
|
else
|
|
|
|
return buehlmann_He_factor_expositon_one_second[ci];
|
|
|
|
}
|
2013-09-26 03:42:19 +00:00
|
|
|
|
2020-05-05 20:24:50 +00:00
|
|
|
// ln(2)/60 = 1.155245301e-02
|
|
|
|
if (gas == N2)
|
|
|
|
return 1.0 - exp(-period_in_seconds * 1.155245301e-02 / buehlmann_N2_t_halflife[ci]);
|
|
|
|
else
|
|
|
|
return 1.0 - exp(-period_in_seconds * 1.155245301e-02 / buehlmann_He_t_halflife[ci]);
|
2013-09-26 03:42:19 +00:00
|
|
|
}
|
|
|
|
|
2019-06-04 16:51:54 +00:00
|
|
|
static double calc_surface_phase(double surface_pressure, double he_pressure, double n2_pressure, double he_time_constant, double n2_time_constant)
|
2015-08-15 12:28:44 +00:00
|
|
|
{
|
2017-01-07 02:01:14 +00:00
|
|
|
double inspired_n2 = (surface_pressure - ((in_planner() && (decoMode() == VPMB)) ? WV_PRESSURE_SCHREINER : WV_PRESSURE)) * NITROGEN_FRACTION;
|
2015-08-15 12:28:44 +00:00
|
|
|
|
|
|
|
if (n2_pressure > inspired_n2)
|
|
|
|
return (he_pressure / he_time_constant + (n2_pressure - inspired_n2) / n2_time_constant) / (he_pressure + n2_pressure - inspired_n2);
|
|
|
|
|
|
|
|
if (he_pressure + n2_pressure >= inspired_n2){
|
|
|
|
double gradient_decay_time = 1.0 / (n2_time_constant - he_time_constant) * log ((inspired_n2 - n2_pressure) / he_pressure);
|
|
|
|
double gradients_integral = he_pressure / he_time_constant * (1.0 - exp(-he_time_constant * gradient_decay_time)) + (n2_pressure - inspired_n2) / n2_time_constant * (1.0 - exp(-n2_time_constant * gradient_decay_time));
|
|
|
|
return gradients_integral / (he_pressure + n2_pressure - inspired_n2);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-11-22 19:42:33 +00:00
|
|
|
void vpmb_start_gradient(struct deco_state *ds)
|
2015-07-03 21:19:57 +00:00
|
|
|
{
|
|
|
|
int ci;
|
|
|
|
|
|
|
|
for (ci = 0; ci < 16; ++ci) {
|
2017-11-22 19:42:33 +00:00
|
|
|
ds->initial_n2_gradient[ci] = ds->bottom_n2_gradient[ci] = 2.0 * (vpmb_config.surface_tension_gamma / vpmb_config.skin_compression_gammaC) * ((vpmb_config.skin_compression_gammaC - vpmb_config.surface_tension_gamma) / ds->n2_regen_radius[ci]);
|
|
|
|
ds->initial_he_gradient[ci] = ds->bottom_he_gradient[ci] = 2.0 * (vpmb_config.surface_tension_gamma / vpmb_config.skin_compression_gammaC) * ((vpmb_config.skin_compression_gammaC - vpmb_config.surface_tension_gamma) / ds->he_regen_radius[ci]);
|
2015-07-03 21:19:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-22 19:42:33 +00:00
|
|
|
void vpmb_next_gradient(struct deco_state *ds, double deco_time, double surface_pressure)
|
2015-07-03 21:59:22 +00:00
|
|
|
{
|
|
|
|
int ci;
|
|
|
|
double n2_b, n2_c;
|
|
|
|
double he_b, he_c;
|
2015-08-15 12:28:44 +00:00
|
|
|
double desat_time;
|
|
|
|
deco_time /= 60.0;
|
2015-07-03 21:59:22 +00:00
|
|
|
|
|
|
|
for (ci = 0; ci < 16; ++ci) {
|
2017-11-22 19:42:33 +00:00
|
|
|
desat_time = deco_time + calc_surface_phase(surface_pressure, ds->tissue_he_sat[ci], ds->tissue_n2_sat[ci], log(2.0) / buehlmann_He_t_halflife[ci], log(2.0) / buehlmann_N2_t_halflife[ci]);
|
2015-08-15 12:28:44 +00:00
|
|
|
|
2017-11-22 19:42:33 +00:00
|
|
|
n2_b = ds->initial_n2_gradient[ci] + (vpmb_config.crit_volume_lambda * vpmb_config.surface_tension_gamma) / (vpmb_config.skin_compression_gammaC * desat_time);
|
|
|
|
he_b = ds->initial_he_gradient[ci] + (vpmb_config.crit_volume_lambda * vpmb_config.surface_tension_gamma) / (vpmb_config.skin_compression_gammaC * desat_time);
|
2015-07-03 21:59:22 +00:00
|
|
|
|
2017-11-22 19:42:33 +00:00
|
|
|
n2_c = vpmb_config.surface_tension_gamma * vpmb_config.surface_tension_gamma * vpmb_config.crit_volume_lambda * ds->max_n2_crushing_pressure[ci];
|
2015-08-15 12:03:08 +00:00
|
|
|
n2_c = n2_c / (vpmb_config.skin_compression_gammaC * vpmb_config.skin_compression_gammaC * desat_time);
|
2017-11-22 19:42:33 +00:00
|
|
|
he_c = vpmb_config.surface_tension_gamma * vpmb_config.surface_tension_gamma * vpmb_config.crit_volume_lambda * ds->max_he_crushing_pressure[ci];
|
2015-08-15 12:03:08 +00:00
|
|
|
he_c = he_c / (vpmb_config.skin_compression_gammaC * vpmb_config.skin_compression_gammaC * desat_time);
|
|
|
|
|
2017-11-22 19:42:33 +00:00
|
|
|
ds->bottom_n2_gradient[ci] = 0.5 * ( n2_b + sqrt(n2_b * n2_b - 4.0 * n2_c));
|
|
|
|
ds->bottom_he_gradient[ci] = 0.5 * ( he_b + sqrt(he_b * he_b - 4.0 * he_c));
|
2015-08-15 12:03:08 +00:00
|
|
|
}
|
|
|
|
}
|
2015-07-03 21:59:22 +00:00
|
|
|
|
2015-08-17 19:36:50 +00:00
|
|
|
// A*r^3 - B*r^2 - C == 0
|
|
|
|
// Solved with the help of mathematica
|
|
|
|
|
2019-06-04 16:51:54 +00:00
|
|
|
static double solve_cubic(double A, double B, double C)
|
2015-08-17 19:36:50 +00:00
|
|
|
{
|
|
|
|
double BA = B/A;
|
|
|
|
double CA = C/A;
|
|
|
|
|
|
|
|
double discriminant = CA * (4 * cube(BA) + 27 * CA);
|
|
|
|
|
|
|
|
// Let's make sure we have a real solution:
|
|
|
|
if (discriminant < 0.0) {
|
|
|
|
// This should better not happen
|
|
|
|
report_error("Complex solution for inner pressure encountered!\n A=%f\tB=%f\tC=%f\n", A, B, C);
|
|
|
|
return 0.0;
|
|
|
|
}
|
|
|
|
double denominator = pow(cube(BA) + 1.5 * (9 * CA + sqrt(3.0) * sqrt(discriminant)), 1/3.0);
|
|
|
|
return (BA + BA * BA / denominator + denominator) / 3.0;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2015-07-03 21:59:22 +00:00
|
|
|
|
2017-11-22 19:42:33 +00:00
|
|
|
void nuclear_regeneration(struct deco_state *ds, double time)
|
2015-07-03 20:45:29 +00:00
|
|
|
{
|
|
|
|
time /= 60.0;
|
|
|
|
int ci;
|
|
|
|
double crushing_radius_N2, crushing_radius_He;
|
|
|
|
for (ci = 0; ci < 16; ++ci) {
|
|
|
|
//rm
|
2017-11-22 19:42:33 +00:00
|
|
|
crushing_radius_N2 = 1.0 / (ds->max_n2_crushing_pressure[ci] / (2.0 * (vpmb_config.skin_compression_gammaC - vpmb_config.surface_tension_gamma)) + 1.0 / get_crit_radius_N2());
|
|
|
|
crushing_radius_He = 1.0 / (ds->max_he_crushing_pressure[ci] / (2.0 * (vpmb_config.skin_compression_gammaC - vpmb_config.surface_tension_gamma)) + 1.0 / get_crit_radius_He());
|
2015-07-03 20:45:29 +00:00
|
|
|
//rs
|
2017-11-22 19:42:33 +00:00
|
|
|
ds->n2_regen_radius[ci] = crushing_radius_N2 + (get_crit_radius_N2() - crushing_radius_N2) * (1.0 - exp (-time / vpmb_config.regeneration_time));
|
|
|
|
ds->he_regen_radius[ci] = crushing_radius_He + (get_crit_radius_He() - crushing_radius_He) * (1.0 - exp (-time / vpmb_config.regeneration_time));
|
2015-07-03 20:45:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-17 19:36:50 +00:00
|
|
|
|
2015-07-03 19:50:39 +00:00
|
|
|
// Calculates the nucleons inner pressure during the impermeable period
|
2019-06-04 16:51:54 +00:00
|
|
|
static double calc_inner_pressure(double crit_radius, double onset_tension, double current_ambient_pressure)
|
2015-07-03 19:50:39 +00:00
|
|
|
{
|
2015-07-01 10:27:42 +00:00
|
|
|
double onset_radius = 1.0 / (vpmb_config.gradient_of_imperm / (2.0 * (vpmb_config.skin_compression_gammaC - vpmb_config.surface_tension_gamma)) + 1.0 / crit_radius);
|
2015-07-03 19:50:39 +00:00
|
|
|
|
|
|
|
|
2015-07-01 10:27:42 +00:00
|
|
|
double A = current_ambient_pressure - vpmb_config.gradient_of_imperm + (2.0 * (vpmb_config.skin_compression_gammaC - vpmb_config.surface_tension_gamma)) / onset_radius;
|
|
|
|
double B = 2.0 * (vpmb_config.skin_compression_gammaC - vpmb_config.surface_tension_gamma);
|
|
|
|
double C = onset_tension * pow(onset_radius, 3);
|
2015-07-03 19:50:39 +00:00
|
|
|
|
2015-08-17 19:36:50 +00:00
|
|
|
double current_radius = solve_cubic(A, B, C);
|
2015-07-01 10:27:42 +00:00
|
|
|
|
|
|
|
return onset_tension * onset_radius * onset_radius * onset_radius / (current_radius * current_radius * current_radius);
|
2015-07-03 19:50:39 +00:00
|
|
|
}
|
|
|
|
|
2015-07-03 20:10:12 +00:00
|
|
|
// Calculates the crushing pressure in the given moment. Updates crushing_onset_tension and critical radius if needed
|
2017-11-22 19:42:33 +00:00
|
|
|
void calc_crushing_pressure(struct deco_state *ds, double pressure)
|
2015-07-03 20:10:12 +00:00
|
|
|
{
|
|
|
|
int ci;
|
|
|
|
double gradient;
|
|
|
|
double gas_tension;
|
|
|
|
double n2_crushing_pressure, he_crushing_pressure;
|
|
|
|
double n2_inner_pressure, he_inner_pressure;
|
|
|
|
|
|
|
|
for (ci = 0; ci < 16; ++ci) {
|
2017-11-22 19:42:33 +00:00
|
|
|
gas_tension = ds->tissue_n2_sat[ci] + ds->tissue_he_sat[ci] + vpmb_config.other_gases_pressure;
|
2015-07-03 20:10:12 +00:00
|
|
|
gradient = pressure - gas_tension;
|
|
|
|
|
|
|
|
if (gradient <= vpmb_config.gradient_of_imperm) { // permeable situation
|
|
|
|
n2_crushing_pressure = he_crushing_pressure = gradient;
|
2017-11-22 19:42:33 +00:00
|
|
|
ds->crushing_onset_tension[ci] = gas_tension;
|
2019-05-15 14:42:14 +00:00
|
|
|
} else { // impermeable
|
2017-11-22 19:42:33 +00:00
|
|
|
if (ds->max_ambient_pressure >= pressure)
|
2015-07-03 20:10:12 +00:00
|
|
|
return;
|
|
|
|
|
2017-11-22 19:42:33 +00:00
|
|
|
n2_inner_pressure = calc_inner_pressure(get_crit_radius_N2(), ds->crushing_onset_tension[ci], pressure);
|
|
|
|
he_inner_pressure = calc_inner_pressure(get_crit_radius_He(), ds->crushing_onset_tension[ci], pressure);
|
2015-07-03 20:10:12 +00:00
|
|
|
|
|
|
|
n2_crushing_pressure = pressure - n2_inner_pressure;
|
|
|
|
he_crushing_pressure = pressure - he_inner_pressure;
|
|
|
|
}
|
2017-11-22 19:42:33 +00:00
|
|
|
ds->max_n2_crushing_pressure[ci] = MAX(ds->max_n2_crushing_pressure[ci], n2_crushing_pressure);
|
|
|
|
ds->max_he_crushing_pressure[ci] = MAX(ds->max_he_crushing_pressure[ci], he_crushing_pressure);
|
2015-07-03 20:10:12 +00:00
|
|
|
}
|
2017-11-22 19:42:33 +00:00
|
|
|
ds->max_ambient_pressure = MAX(pressure, ds->max_ambient_pressure);
|
2015-07-03 20:10:12 +00:00
|
|
|
}
|
|
|
|
|
2013-01-08 17:29:07 +00:00
|
|
|
/* add period_in_seconds at the given pressure and gas to the deco calculation */
|
2018-08-16 17:10:10 +00:00
|
|
|
void add_segment(struct deco_state *ds, double pressure, struct gasmix gasmix, int period_in_seconds, int ccpo2, enum divemode_t divemode, int sac)
|
2013-01-03 05:21:36 +00:00
|
|
|
{
|
2018-05-22 07:07:42 +00:00
|
|
|
UNUSED(sac);
|
2013-01-03 05:21:36 +00:00
|
|
|
int ci;
|
2014-09-15 12:55:20 +00:00
|
|
|
struct gas_pressures pressures;
|
2018-04-10 19:20:38 +00:00
|
|
|
bool icd = false;
|
2017-01-07 02:01:14 +00:00
|
|
|
fill_pressures(&pressures, pressure - ((in_planner() && (decoMode() == VPMB)) ? WV_PRESSURE_SCHREINER : WV_PRESSURE),
|
2018-04-03 17:30:27 +00:00
|
|
|
gasmix, (double) ccpo2 / 1000.0, divemode);
|
2013-01-03 05:21:36 +00:00
|
|
|
|
2013-09-26 03:42:19 +00:00
|
|
|
for (ci = 0; ci < 16; ci++) {
|
2017-11-22 19:42:33 +00:00
|
|
|
double pn2_oversat = pressures.n2 - ds->tissue_n2_sat[ci];
|
|
|
|
double phe_oversat = pressures.he - ds->tissue_he_sat[ci];
|
2017-08-25 21:21:27 +00:00
|
|
|
double n2_f = factor(period_in_seconds, ci, N2);
|
|
|
|
double he_f = factor(period_in_seconds, ci, HE);
|
2014-06-22 14:41:44 +00:00
|
|
|
double n2_satmult = pn2_oversat > 0 ? buehlmann_config.satmult : buehlmann_config.desatmult;
|
|
|
|
double he_satmult = phe_oversat > 0 ? buehlmann_config.satmult : buehlmann_config.desatmult;
|
2013-09-26 03:42:19 +00:00
|
|
|
|
2018-04-10 19:20:38 +00:00
|
|
|
// Report ICD if N2 is more on-gasing than He off-gasing in leading tissue
|
|
|
|
if (ci == ds->ci_pointing_to_guiding_tissue && pn2_oversat > 0.0 && phe_oversat < 0.0 &&
|
|
|
|
pn2_oversat * n2_satmult * n2_f + phe_oversat * he_satmult * he_f > 0)
|
|
|
|
icd = true;
|
|
|
|
|
2017-11-22 19:42:33 +00:00
|
|
|
ds->tissue_n2_sat[ci] += n2_satmult * pn2_oversat * n2_f;
|
|
|
|
ds->tissue_he_sat[ci] += he_satmult * phe_oversat * he_f;
|
|
|
|
ds->tissue_inertgas_saturation[ci] = ds->tissue_n2_sat[ci] + ds->tissue_he_sat[ci];
|
2016-09-13 19:29:39 +00:00
|
|
|
|
2013-01-03 05:21:36 +00:00
|
|
|
}
|
2017-12-01 16:57:32 +00:00
|
|
|
if (decoMode() == VPMB)
|
2017-11-22 19:42:33 +00:00
|
|
|
calc_crushing_pressure(ds, pressure);
|
2018-04-10 19:20:38 +00:00
|
|
|
ds->icd_warning = icd;
|
2015-08-31 21:25:28 +00:00
|
|
|
return;
|
2013-01-03 05:21:36 +00:00
|
|
|
}
|
|
|
|
|
2017-11-27 11:33:17 +00:00
|
|
|
#if DECO_CALC_DEBUG
|
2017-11-22 19:42:33 +00:00
|
|
|
void dump_tissues(struct deco_state *ds)
|
2013-01-04 04:45:20 +00:00
|
|
|
{
|
|
|
|
int ci;
|
|
|
|
printf("N2 tissues:");
|
|
|
|
for (ci = 0; ci < 16; ci++)
|
2017-11-22 19:42:33 +00:00
|
|
|
printf(" %6.3e", ds->tissue_n2_sat[ci]);
|
2013-01-04 04:45:20 +00:00
|
|
|
printf("\nHe tissues:");
|
|
|
|
for (ci = 0; ci < 16; ci++)
|
2017-11-22 19:42:33 +00:00
|
|
|
printf(" %6.3e", ds->tissue_he_sat[ci]);
|
2013-01-04 04:45:20 +00:00
|
|
|
printf("\n");
|
|
|
|
}
|
2017-11-27 11:33:17 +00:00
|
|
|
#endif
|
2013-01-04 04:45:20 +00:00
|
|
|
|
2019-02-23 17:31:02 +00:00
|
|
|
void clear_vpmb_state(struct deco_state *ds)
|
|
|
|
{
|
2017-02-07 08:18:19 +00:00
|
|
|
int ci;
|
|
|
|
for (ci = 0; ci < 16; ci++) {
|
2017-11-22 19:42:33 +00:00
|
|
|
ds->max_n2_crushing_pressure[ci] = 0.0;
|
|
|
|
ds->max_he_crushing_pressure[ci] = 0.0;
|
2017-02-07 08:18:19 +00:00
|
|
|
}
|
2017-11-22 19:42:33 +00:00
|
|
|
ds->max_ambient_pressure = 0;
|
|
|
|
ds->first_ceiling_pressure.mbar = 0;
|
|
|
|
ds->max_bottom_ceiling_pressure.mbar = 0;
|
2017-02-07 08:18:19 +00:00
|
|
|
}
|
|
|
|
|
2017-11-22 19:42:33 +00:00
|
|
|
void clear_deco(struct deco_state *ds, double surface_pressure)
|
2013-01-03 05:21:36 +00:00
|
|
|
{
|
|
|
|
int ci;
|
2018-10-15 20:01:24 +00:00
|
|
|
|
|
|
|
memset(ds, 0, sizeof(*ds));
|
2017-11-22 19:42:33 +00:00
|
|
|
clear_vpmb_state(ds);
|
2013-01-03 05:21:36 +00:00
|
|
|
for (ci = 0; ci < 16; ci++) {
|
2017-11-22 19:42:33 +00:00
|
|
|
ds->tissue_n2_sat[ci] = (surface_pressure - ((in_planner() && (decoMode() == VPMB)) ? WV_PRESSURE_SCHREINER : WV_PRESSURE)) * N2_IN_AIR / 1000;
|
|
|
|
ds->tissue_he_sat[ci] = 0.0;
|
|
|
|
ds->max_n2_crushing_pressure[ci] = 0.0;
|
|
|
|
ds->max_he_crushing_pressure[ci] = 0.0;
|
|
|
|
ds->n2_regen_radius[ci] = get_crit_radius_N2();
|
|
|
|
ds->he_regen_radius[ci] = get_crit_radius_He();
|
2013-01-03 05:21:36 +00:00
|
|
|
}
|
2017-12-19 19:58:01 +00:00
|
|
|
ds->gf_low_pressure_this_dive = surface_pressure + buehlmann_config.gf_low_position_min;
|
2017-11-22 19:42:33 +00:00
|
|
|
ds->max_ambient_pressure = 0.0;
|
2018-10-15 11:54:06 +00:00
|
|
|
ds->ci_pointing_to_guiding_tissue = -1;
|
2013-01-03 05:21:36 +00:00
|
|
|
}
|
2013-01-03 07:22:07 +00:00
|
|
|
|
2017-11-22 19:42:33 +00:00
|
|
|
void cache_deco_state(struct deco_state *src, struct deco_state **cached_datap)
|
2013-01-06 19:13:46 +00:00
|
|
|
{
|
2017-05-25 22:45:53 +00:00
|
|
|
struct deco_state *data = *cached_datap;
|
2013-01-06 19:13:46 +00:00
|
|
|
|
|
|
|
if (!data) {
|
2017-05-25 22:45:53 +00:00
|
|
|
data = malloc(sizeof(struct deco_state));
|
2013-01-06 19:13:46 +00:00
|
|
|
*cached_datap = data;
|
|
|
|
}
|
2017-11-22 19:42:33 +00:00
|
|
|
*data = *src;
|
2013-01-06 19:13:46 +00:00
|
|
|
}
|
|
|
|
|
2017-11-22 19:42:33 +00:00
|
|
|
void restore_deco_state(struct deco_state *data, struct deco_state *target, bool keep_vpmb_state)
|
2013-01-06 19:13:46 +00:00
|
|
|
{
|
2017-05-25 22:45:53 +00:00
|
|
|
if (keep_vpmb_state) {
|
|
|
|
int ci;
|
|
|
|
for (ci = 0; ci < 16; ci++) {
|
2017-11-22 19:42:33 +00:00
|
|
|
data->bottom_n2_gradient[ci] = target->bottom_n2_gradient[ci];
|
|
|
|
data->bottom_he_gradient[ci] = target->bottom_he_gradient[ci];
|
|
|
|
data->initial_n2_gradient[ci] = target->initial_n2_gradient[ci];
|
|
|
|
data->initial_he_gradient[ci] = target->initial_he_gradient[ci];
|
2017-05-25 22:45:53 +00:00
|
|
|
}
|
2017-11-22 19:42:33 +00:00
|
|
|
data->first_ceiling_pressure = target->first_ceiling_pressure;
|
|
|
|
data->max_bottom_ceiling_pressure = target->max_bottom_ceiling_pressure;
|
2017-05-25 22:45:53 +00:00
|
|
|
}
|
2017-11-22 19:42:33 +00:00
|
|
|
*target = *data;
|
2017-05-25 22:45:53 +00:00
|
|
|
|
2013-01-06 19:13:46 +00:00
|
|
|
}
|
|
|
|
|
2018-08-16 22:58:30 +00:00
|
|
|
int deco_allowed_depth(double tissues_tolerance, double surface_pressure, const struct dive *dive, bool smooth)
|
2013-01-03 07:22:07 +00:00
|
|
|
{
|
2016-03-23 16:53:44 +00:00
|
|
|
int depth;
|
2013-01-08 14:37:41 +00:00
|
|
|
double pressure_delta;
|
|
|
|
|
2013-01-08 17:29:07 +00:00
|
|
|
/* Avoid negative depths */
|
|
|
|
pressure_delta = tissues_tolerance > surface_pressure ? tissues_tolerance - surface_pressure : 0.0;
|
2013-01-08 14:37:41 +00:00
|
|
|
|
2017-03-09 16:07:30 +00:00
|
|
|
depth = rel_mbar_to_depth(lrint(pressure_delta * 1000), dive);
|
2013-01-08 14:37:41 +00:00
|
|
|
|
2013-01-29 21:10:46 +00:00
|
|
|
if (!smooth)
|
2017-03-09 16:07:30 +00:00
|
|
|
depth = lrint(ceil(depth / DECO_STOPS_MULTIPLIER_MM) * DECO_STOPS_MULTIPLIER_MM);
|
2013-01-08 14:37:41 +00:00
|
|
|
|
2013-01-29 21:10:46 +00:00
|
|
|
if (depth > 0 && depth < buehlmann_config.last_deco_stop_in_mtr * 1000)
|
2013-01-08 17:29:07 +00:00
|
|
|
depth = buehlmann_config.last_deco_stop_in_mtr * 1000;
|
2013-01-03 07:22:07 +00:00
|
|
|
|
|
|
|
return depth;
|
|
|
|
}
|
2013-01-04 05:31:22 +00:00
|
|
|
|
2017-09-19 12:38:38 +00:00
|
|
|
void set_gf(short gflow, short gfhigh)
|
2013-01-04 05:31:22 +00:00
|
|
|
{
|
2013-05-28 18:21:27 +00:00
|
|
|
if (gflow != -1)
|
|
|
|
buehlmann_config.gf_low = (double)gflow / 100.0;
|
|
|
|
if (gfhigh != -1)
|
|
|
|
buehlmann_config.gf_high = (double)gfhigh / 100.0;
|
2013-01-04 05:31:22 +00:00
|
|
|
}
|
2016-09-24 08:02:08 +00:00
|
|
|
|
|
|
|
void set_vpmb_conservatism(short conservatism)
|
|
|
|
{
|
|
|
|
if (conservatism < 0)
|
|
|
|
vpmb_config.conservatism = 0;
|
|
|
|
else if (conservatism > 4)
|
|
|
|
vpmb_config.conservatism = 4;
|
|
|
|
else
|
|
|
|
vpmb_config.conservatism = conservatism;
|
|
|
|
}
|
2016-10-26 05:21:47 +00:00
|
|
|
|
2017-11-22 19:42:33 +00:00
|
|
|
double get_gf(struct deco_state *ds, double ambpressure_bar, const struct dive *dive)
|
2016-10-26 05:21:47 +00:00
|
|
|
{
|
|
|
|
double surface_pressure_bar = get_surface_pressure_in_mbar(dive, true) / 1000.0;
|
|
|
|
double gf_low = buehlmann_config.gf_low;
|
|
|
|
double gf_high = buehlmann_config.gf_high;
|
|
|
|
double gf;
|
2017-11-22 19:42:33 +00:00
|
|
|
if (ds->gf_low_pressure_this_dive > surface_pressure_bar)
|
2016-10-26 05:21:47 +00:00
|
|
|
gf = MAX((double)gf_low, (ambpressure_bar - surface_pressure_bar) /
|
2017-11-22 19:42:33 +00:00
|
|
|
(ds->gf_low_pressure_this_dive - surface_pressure_bar) * (gf_low - gf_high) + gf_high);
|
2016-10-26 05:21:47 +00:00
|
|
|
else
|
|
|
|
gf = gf_low;
|
|
|
|
return gf;
|
|
|
|
}
|
2016-11-23 10:50:50 +00:00
|
|
|
|
2019-08-05 21:23:10 +00:00
|
|
|
double regressiona(const struct deco_state *ds)
|
2016-11-23 10:50:50 +00:00
|
|
|
{
|
2019-08-05 21:23:10 +00:00
|
|
|
if (ds->sum1 > 1) {
|
|
|
|
double avxy = ds->sumxy / ds->sum1;
|
|
|
|
double avx = (double)ds->sumx / ds->sum1;
|
|
|
|
double avy = ds->sumy / ds->sum1;
|
|
|
|
double avxx = (double) ds->sumxx / ds->sum1;
|
2016-11-23 10:50:50 +00:00
|
|
|
return (avxy - avx * avy) / (avxx - avx*avx);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return 0.0;
|
|
|
|
}
|
|
|
|
|
2019-08-05 21:23:10 +00:00
|
|
|
double regressionb(const struct deco_state *ds)
|
2016-11-23 10:50:50 +00:00
|
|
|
{
|
2019-08-05 21:23:10 +00:00
|
|
|
if (ds->sum1)
|
|
|
|
return ds->sumy / ds->sum1 - ds->sumx * regressiona(ds) / ds->sum1;
|
2016-11-23 10:50:50 +00:00
|
|
|
else
|
|
|
|
return 0.0;
|
|
|
|
}
|
|
|
|
|
2019-08-05 21:23:10 +00:00
|
|
|
void reset_regression(struct deco_state *ds)
|
2016-11-23 10:50:50 +00:00
|
|
|
{
|
2019-08-05 21:23:10 +00:00
|
|
|
ds->sum1 = 0;
|
|
|
|
ds->sumxx = ds->sumx = 0L;
|
|
|
|
ds->sumy = ds->sumxy = 0.0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void update_regression(struct deco_state *ds, const struct dive *dive)
|
|
|
|
{
|
|
|
|
if (!ds->plot_depth)
|
|
|
|
return;
|
|
|
|
ds->sum1 += 1;
|
|
|
|
ds->sumx += ds->plot_depth;
|
|
|
|
ds->sumxx += (long)ds->plot_depth * ds->plot_depth;
|
|
|
|
double n2_gradient, he_gradient, total_gradient;
|
|
|
|
n2_gradient = update_gradient(ds, depth_to_bar(ds->plot_depth, dive), ds->bottom_n2_gradient[ds->ci_pointing_to_guiding_tissue]);
|
|
|
|
he_gradient = update_gradient(ds, depth_to_bar(ds->plot_depth, dive), ds->bottom_he_gradient[ds->ci_pointing_to_guiding_tissue]);
|
|
|
|
total_gradient = ((n2_gradient * ds->tissue_n2_sat[ds->ci_pointing_to_guiding_tissue]) + (he_gradient * ds->tissue_he_sat[ds->ci_pointing_to_guiding_tissue]))
|
|
|
|
/ (ds->tissue_n2_sat[ds->ci_pointing_to_guiding_tissue] + ds->tissue_he_sat[ds->ci_pointing_to_guiding_tissue]);
|
|
|
|
|
|
|
|
double buehlmann_gradient = (1.0 / ds->buehlmann_inertgas_b[ds->ci_pointing_to_guiding_tissue] - 1.0) * depth_to_bar(ds->plot_depth, dive) + ds->buehlmann_inertgas_a[ds->ci_pointing_to_guiding_tissue];
|
|
|
|
double gf = (total_gradient - vpmb_config.other_gases_pressure) / buehlmann_gradient;
|
|
|
|
ds->sumxy += gf * ds->plot_depth;
|
|
|
|
ds->sumy += gf;
|
|
|
|
ds->plot_depth = 0;
|
2016-11-23 10:50:50 +00:00
|
|
|
}
|