Crates.io | dive-deco |
lib.rs | dive-deco |
version | 4.3.4 |
source | src |
created_at | 2024-02-18 19:21:49.709767 |
updated_at | 2024-10-30 23:35:34.134575 |
description | A dive decompression models library (Buehlmann ZH-L 16C) |
homepage | |
repository | https://github.com/KG32/dive-deco.git |
max_upload_size | |
id | 1144333 |
size | 133,851 |
A dive decompression models library.
The Bühlmann decompression set of parameters is an Haldanian mathematical model of the way in which inert gases enter and leave the human body as the ambient pressure changes. Versions are used to create Bühlmann decompression tables and in personal dive computers to compute no-decompression limits and decompression schedules for dives in real-time.1
use dive_deco::{ BuehlmannConfig, BuehlmannModel, DecoModel };
fn main() {
// model with default config (GF 100/100)
let model = BuehlmannModel::default();
println!("{:?}", model.config()); // BuehlmannConfig { gf: (100, 100) }
}
Current config options:
gradient_factors
- gradient factors settings ([GFlow], [GFhigh])
default: (100, 100)
)surface_pressure
- atmospheric pressure at the surface at the time of model initialization and assumed constant throughout model's lifedeco_ascent_rate
- ascent rate in m/s that is assumed to be followed when calculating deco obligations and simulations. Default value: 10 m/min (33 ft/min)ceiling_type
(enum CeilingType
)
Actual
(default) - both NDL time and ceiling are determined by the current tissues saturation, it counts down to a condition where calculated ceiling is below the surfaceAdaptive
- takes into account off-gassing on ascent, determines if real deco obligation assuming direct ascent with set ascent raterecalc_all_tissues_m_values
- recalculate all tissues considering gradient factors (default: true). If set to false, only leading tissue is recalculated with max gf // fluid-interface-like built config
let config = BuehlmannConfig::new()
.with_gradient_factors(30, 70)
.with_surface_pressure(1013)
.with_deco_ascent_rate(10.)
.with_ceiling_type(CeilingType::Actual);
let model = BuehlmannModel::new(config);
println!("{:?}", model.config()); // BuehlmannConfig { gf: (30, 70) }
A DecoModel trait method that represents a single model record as a datapoint.
.record(depth, time, gas)
let depth = 20.;
let time = 1; // 1 second
let nitrox = Gas::new(0.32, 0.);
// register 1 second at 20m breathing nitrox 32
model.record(depth, time, &nitrox);
A DecoModel trait method that represents a linear change of depth. It assumes a travel from depth A (current model state depth) to B (target_depth) with rate derived from change of depth and time.
.record_travel(target_depth, time, gas)
let target_depth = 30.;
let descent_time = 4 * 60; // 4 minutes as seconds
let nitrox = Gas::new(0.32, 0.);
// register a 4 minute descent to 30m using nitrox 32
model.record_travel(target_depth, time, &nitrox);
All decompression stages calculated to clear deco obligations and resurface in a most efficient way - a partial deco runtime from current model state to resurfacing.
.deco(Vec<Gas>) -> Result<DecoRuntime, DecoCalculationError>
<!-- DecoRuntime {
deco_stages: Vec<DecoStage>,
tts: u64,
tts_at_5: u64,
tts_delta_at_5: i64
} -->
DecoRuntime
deco_stages (DecoStage)
stage_type
(enum)
Ascent
- linear ascent to shallowest depth possible, defined by deco stop depth (ceiling rounded using default 3m deco stop window) or surface if no deco obligationDecoStop
- a mandatory deco stop needed to desaturate enough to proceed to the next oneGasSwitch
- a switch to another (most efficient) deco gas considering MOD and o2 content. Gas switch to another gas considered only if currently in decompressionstart_depth
- depth at which deco stage startedend_depth
- depth at which deco stage endedduration
- duration of deco stage in secondstts
- current time to surface in minutes. The least amount of time possible to surface without violating decompression obligations according to the current model. Includes the duration of all necessary deco stops (assuming switching to most optimal decompression gas) and travel time between themtts_at_5
(aka @+5) - TTS in 5 minutes assuming constant depth and gas mixtts_delta_at_5
(aka Δ+5) - absolute change in TTS after 5 mins assuming constant depth and gas mixDecoCalculationError
EmptyGasList
- occurs when available gasses vector is emptyCurrentGasNotInList
- occurs when provided available list doesn't include gas currently in use according to deco model's state let config = BuehlmannConfig::new().with_gradient_factors(30, 70);
let mut model = BuehlmannModel::new(config);
// bottom gas
let air = Gas::air();
// deco gases
let ean_50 = Gas::new(0.5, 0.);
let oxygen = Gas::new(1., 0.);
let available_gas_mixes = vec![
air,
ean_50,
oxygen,
];
let bottom_depth = 40.;
let bottom_time = 20 * 60; // 20 min
// descent to 40m at a rate of 9min/min using air
model.record_travel_with_rate(bottom_depth, 9., &available_gas_mixes[0]);
// 20 min bottom time
model.record(bottom_depth, bottom_time, &air);
// calculate deco runtime providing available gasses
let deco_runtime = model.deco(available_gas_mixes);
println!("{:#?}", deco_runtime);
DecoRuntime {
deco_stages: [
DecoStage {
stage_type: Ascent,
start_depth: 40.0,
end_depth: 22.0,
duration: 120,
gas: Gas {
o2_pp: 0.21,
n2_pp: 0.79,
he_pp: 0.0,
},
},
DecoStage {
stage_type: GasSwitch,
start_depth: 22.0,
end_depth: 22.0,
duration: 0,
gas: Gas {
o2_pp: 0.5,
n2_pp: 0.5,
he_pp: 0.0,
},
},
DecoStage {
stage_type: Ascent,
start_depth: 22.0,
end_depth: 6.000000000000001,
duration: 106,
gas: Gas {
o2_pp: 0.5,
n2_pp: 0.5,
he_pp: 0.0,
},
},
DecoStage {
stage_type: GasSwitch,
start_depth: 6.000000000000001,
end_depth: 6.000000000000001,
duration: 0,
gas: Gas {
o2_pp: 1.0,
n2_pp: 0.0,
he_pp: 0.0,
},
},
DecoStage {
stage_type: DecoStop,
start_depth: 6.000000000000001,
end_depth: 6.000000000000001,
duration: 410,
gas: Gas {
o2_pp: 1.0,
n2_pp: 0.0,
he_pp: 0.0,
},
},
DecoStage {
stage_type: Ascent,
start_depth: 6.000000000000001,
end_depth: 3.0,
duration: 20,
gas: Gas {
o2_pp: 1.0,
n2_pp: 0.0,
he_pp: 0.0,
},
},
DecoStage {
stage_type: DecoStop,
start_depth: 3.0,
end_depth: 3.0,
duration: 226,
gas: Gas {
o2_pp: 1.0,
n2_pp: 0.0,
he_pp: 0.0,
},
},
DecoStage {
stage_type: Ascent,
start_depth: 3.0,
end_depth: 0.0,
duration: 20,
gas: Gas {
o2_pp: 1.0,
n2_pp: 0.0,
he_pp: 0.0,
},
},
],
tts: 16,
tts_at_5: 20,
tts_delta_at_5: 4,
}
:warning: Current deco stops implementation consideres gas switches based on MOD only - don't use with hypoxic trimix mixes
The NDL is a theoretical time obtained by calculating inert gas uptake and release in the body that determines a time interval a diver may theoretically spend at given depth without aquiring any decompression obligations (given constant depth and gas mix).
ndl()
- no-decompression limit for current model state in minutes, assuming constant depth and gas mix. This method has a cut-off at 99 minutes.
NDL controllable by ceiling_type
model config. By default (Actual
), NDL is determined by the current tissues saturation, it counts down to a condition where ceiling isn't equal to the surface. The other ceiling type config (Adaptive
) takes into account off-gassing during ascent and it's defined as a maximum time at given depth that won't create any decompression obligations (i.e. even on existing ceiling, limit occures when a direct ascent with configured ascent rate doesn't cause any tissue to intersect with its M-Value at a given time).use dive_deco::{DecoModel, BuehlmannModel, BuehlmannConfig, Gas};
fn main() {
// initialize a Buehlmann ZHL-16C deco model with default config (GF 100/100)
let config = BuehlmannConfig::default();
let mut model = BuehlmannModel::new(config);
let air = Gas::new(0.21, 0.);
let depth = 30.;
let bottom_time_minutes = 10;
// a simulated instantaneous drop to 20m with a single record simulating 20 minutes bottom time using air
model.record(depth, bottom_time_minutes * 60, &air);
// model.record(....)
// model.record(....)
// current NDL (no-decompression limit)
let current_ndl = model.ndl();
println!("NDL: {} min", current_ndl); // output: NDL: 5 min
// if we used an `Adaptive` ceiling_type config that takes into account off-gassing on ascent, the output would be 9 min
}
Minimum theoretical depth that can be reached at the moment without breaking the decompression obligation. In case of Buehlmann algorithm, a depth restricted by M-value given leading tissue saturation and gradient factors setting.
ceiling()
- current decompression ceiling in meters, given current model state and gradient factors settingsuse dive_deco::{ BuehlmannConfig, BuehlmannModel, DecoModel, Gas };
fn main() {
let mut model = BuehlmannModel::new(BuehlmannConfig::default());
let nitrox_32 = Gas::new(0.32, 0.);
// ceiling after 20 min at 20 meters using EAN32 - ceiling at 0m
model.record(20., 20 * 60, &nitrox_32);
println!("Ceiling: {}m", model.ceiling()); // Ceiling: 0m
// ceiling after another 42 min at 30 meters using EAN32 - ceiling at 3m
model.record(30., 42 * 60, &nitrox_32);
println!("Ceiling: {},", model.ceiling()); // Ceiling: 3.004(..)m
}
Current tissue oversaturation as gradient factors.
supersaturation() -> Supersaturation { gf_99, gf_surf }
- supersaturation in % relative to M-value ()
// given model state after 120 seconds at 40 meters breathing air
// (...)
// on-gassing, gf99: 0%, surfGF: 71%
let supersaturation = model.supersaturation(); // Supersaturation { gf_99: 0.0, gf_surf: 71.09852831834125 }
Current Central Nervous System Toxicity percentage (derived from NOAA limits). Measure (%) of accumulated exposure to elevated oxygen partial pressure in relation to maximum allowed exposure time for given ranges.
cns()
- CNS % // given model
// (...)
let cns = model.cns(); // 32.5
Pulmonary oxygen toxicity which concerns the effects to the lungs of long-term exposures to oxygen at elevated partial pressures presented as units (1 OTU = 100% O2 @ 1bar equivalent).
otu()
- OTU // given model
// (...)
let cns = model.otu(); // 78.43
Breathing gas used in the model.
new(o2, he)
partial_pressures(depth)
- compounded gas's components partial pressures at certain depthinspired_partial_pressures(depth)
- inspired gas partial pressures in alveoli taking into account alveolar water vapor pressuremaximum_operating_depth(pp_o2_limit)
- maximum operating depth considering o2 partial, with maximum o2 partial pressure as parameterequivalent_narcotic_depth(depth)
- equivalent depth at which given gas has the same narcotic potential as air. Assumes o2 - n2 1:1 narcotic ratio.let mix = Gas::new(0.21, 0.);
mix.partial_pressures(10.); // PartialPressures { o2: 0.42, n2: 1.58, he: 0.0 }
mix.inspired_partial_pressures(10.); // PartialPressures { o2: 0.406833, n2: 1.530467, he: 0.0 }
:warning: Disclaimer: Not Suitable for Dive Planning, Work-in-Progress Model This decompression model is currently in a developmental stage and should be treated as a work in progress. Users are advised that the information generated by this model may not be accurate and could contain errors. It is important to exercise caution and verify any critical information provided by the model through alternative sources. This model is not designed or intended to be used as a dive planning software. Diving involves inherent risks, and accurate planning is crucial for safety. Users are strongly advised to rely on specialized dive planning software and consult with certified dive professionals for accurate and reliable information related to diving activities. By using this model, users acknowledge that it is not a substitute for professional advice or dedicated tools designed for specific tasks, and the developers take no responsibility for any consequences arising from the use of information generated by this model.