Mercurial > public > hwos_code
annotate src/p2_deco.c @ 584:d63dec562d50
CNS fix
author | heinrichsweikamp |
---|---|
date | Wed, 28 Feb 2018 10:24:54 +0100 |
parents | b455b31ce022 |
children | 00ad4ffd915b |
rev | line source |
---|---|
582 | 1 // *************************************************************************** |
584 | 2 // p2_deco.c REFACTORED VERSION V2.98 |
0 | 3 // |
4 // Created on: 12.05.2009 | |
560 | 5 // Author: heinrichs weikamp, contributions by Ralph Lembcke and others |
0 | 6 // |
582 | 7 // *************************************************************************** |
0 | 8 |
9 ////////////////////////////////////////////////////////////////////////////// | |
10 // OSTC - diving computer code | |
11 // Copyright (C) 2011 HeinrichsWeikamp GbR | |
12 // | |
13 // This program is free software: you can redistribute it and/or modify | |
14 // it under the terms of the GNU General Public License as published by | |
15 // the Free Software Foundation, either version 3 of the License, or | |
16 // (at your option) any later version. | |
17 // | |
18 // This program is distributed in the hope that it will be useful, | |
19 // but WITHOUT ANY WARRANTY; without even the implied warranty of | |
20 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
21 // GNU General Public License for more details. | |
22 // | |
23 // You should have received a copy of the GNU General Public License | |
24 // along with this program. If not, see <http://www.gnu.org/licenses/>. | |
25 // | |
26 ////////////////////////////////////////////////////////////////////////////// | |
27 | |
28 // history: | |
29 // 01/03/08 v100: first release candidate | |
30 // 03/13/08 v101: start of programming ppO2 code | |
560 | 31 // 03/13/25 v101a: backup of interim version with ppO2 calculation |
0 | 32 // 03/13/25 v101: open circuit gas change during deco |
33 // 03/13/25 v101: CNS_fraction calculation | |
34 // 03/13/26 v101: optimization of tissue calc routines | |
35 // 07/xx/08 v102a: debug of bottom time routine | |
560 | 36 // 09/xx/08 v102d: Gradient Factor Model implementation |
0 | 37 // 10/10/08 v104: renamed to build v103 for v118 stable |
582 | 38 // 10/14/08 v104: integration of char_I_depth_last_deco for Gradient Model |
0 | 39 // 03/31/09 v107: integration of FONT Incon24 |
40 // 05/23/10 v109: 5 gas changes & 1 min timer | |
41 // 07/13/10 v110: cns vault added | |
42 // 12/25/10 v110: split in three files (deco.c, main.c, definitions.h) | |
43 // 2011/01/20: [jDG] Create a common file included in ASM and C code. | |
44 // 2011/01/24: [jDG] Make ascenttime an short. No more overflow! | |
45 // 2011/01/25: [jDG] Fusion deco array for both models. | |
46 // 2011/01/25: [jDG] Use CF(54) to reverse deco order. | |
47 // 2011/02/11: [jDG] Reworked gradient-factor implementation. | |
48 // 2011/02/15: [jDG] Fixed inconsistencies introduced by gas switch delays. | |
49 // 2011/03/21: [jDG] Added gas consumption (CF56 & CF57) evaluation for OCR mode. | |
50 // 2011/04/15: [jDG] Store low_depth in 32bits (w/o rounding), for a better stability. | |
560 | 51 // 2011/04/25: [jDG] Added 1mn mode for CNS calculation, to allow it for deco planning. |
0 | 52 // 2011/04/27: [jDG] Fixed char_O_gradient_factor calculation when model uses gradient-factor. |
53 // 2011/05/02: [jDG] Added "Future TTS" function (CF58). | |
54 // 2011/05/17: [jDG] Various cleanups. | |
55 // 2011/08/08: [jDG] Computes CNS during deco planning ascent. | |
56 // 2011/11/24: [jDG] Slightly faster and better NDL computation. | |
57 // 2011/12/17: [mH] Remove of the useless debug stuff | |
58 // 2012/02/24: [jDG] Remove missed stop bug. | |
59 // 2012/02/25: [jDG] Looking for a more stable LOW grad factor reference. | |
60 // 2012/09/10: [mH] Fill char_O_deco_time_for_log for logbook write | |
560 | 61 // 2012/10/05: [jDG] Better gas_volumes accuracy (average depth, switch between stop). |
0 | 62 // 2013/03/05: [jDG] Should vault low_depth too. |
63 // 2013/03/05: [jDG] Wrobell remark: ascent_to_first_stop works better with finer steps (2sec). | |
33
5d4a4fb0e8a6
Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents:
0
diff
changeset
|
64 // 2013/05/08: [jDG] A. Salm remark: NOAA tables for CNS are in ATA, not bar. |
560 | 65 // 2013/12/21: [jDG] Fix CNS calculation in deco plan w/o marked gas switch |
66 // 2014/06/16: [jDG] Fix Helium diluent. Fix volumes with many travel mix. | |
324
0e9dcdcf03c1
FIX NDL prediction error with Buhlmann model: might be desaturating too fast.
jdg@air
parents:
323
diff
changeset
|
67 // 2014/06/29: [mH] Compute int_O_ceiling |
0e9dcdcf03c1
FIX NDL prediction error with Buhlmann model: might be desaturating too fast.
jdg@air
parents:
323
diff
changeset
|
68 // 2015/06/12: [jDG] Fix NDL prediction while desaturating with the Buhlmann model. |
560 | 69 // 2017/08/04: [mH] Switch to absolute GF everywhere and apply safety margin parameters to both models (GF and non-GF), fixes from Ralph Lembcke |
70 // 2017/10/31: [rl] enhancements for pSCR mode and introduction of 2nd deco plan computation | |
71 // 2017/12/31: [rl] completion of 2nd deco plan computation and various up-fixes | |
584 | 72 // 2018/02/17: [rl] switch-over to new ceiling rounding (V2.98a) |
0 | 73 // |
74 // | |
75 // Literature: | |
313 | 76 // Buhlmann, Albert: Tauchmedizin; 4. Auflage [2002]; |
0 | 77 // Schr"oder, Kai & Reith, Steffen; 2000; S"attigungsvorg"ange beim Tauchen, das Modell ZH-L16, Funktionsweise von Tauchcomputern; http://www.achim-und-kai.de/kai/tausim/saett_faq |
78 // Morrison, Stuart; 2000; DIY DECOMPRESSION; http://www.lizardland.co.uk/DIYDeco.html | |
79 // Balthasar, Steffen; Dekompressionstheorie I: Neo Haldane Modelle; http://www.txfreak.de/dekompressionstheorie_1.pdf | |
80 // Baker, Erik C.; Clearing Up The Confusion About "Deep Stops" | |
81 // Baker, Erik C.; Understanding M-values; http://www.txfreak.de/understanding_m-values.pdf | |
82 // | |
83 // | |
84 | |
85 // ********************* | |
86 // ** I N C L U D E S ** | |
87 // ********************* | |
88 #include <math.h> | |
89 | |
90 // *********************************************** | |
91 // ** V A R I A B L E S D E F I N I T I O N S ** | |
92 // *********************************************** | |
93 | |
582 | 94 #include "p2_definitions.h" |
95 #define TEST_MAIN | |
96 #include "shared_definitions.h" | |
0 | 97 |
560 | 98 |
99 // ambient pressure at different mountain heights | |
100 #define P_ambient_1000m 0.880 // [bar] based on 990 hPa and 20°C at sea level, 15°C at altitude | |
101 #define P_ambient_2000m 0.782 // [bar] | |
102 #define P_ambient_3000m 0.695 // [bar] | |
103 | |
104 // ambient pressure in aircraft cabin during flying - worst case according to Buhlmann | |
105 #define P_ambient_fly 0.600 // [bar], 0.600 bar is the value used by Buhlmann for his flying-after-diving calculations | |
582 | 106 // 0.735 bar is a typical cabin pressure for nowadays commercial jet aircrafts |
560 | 107 // ----- |
108 // 0.135 bar safety margin | |
109 | |
110 // constants and factors | |
582 | 111 #define ppWater 0.0627 // water vapor partial pressure in the lungs |
112 #define METER_TO_BAR 0.09985 // conversion factor | |
113 #define BAR_TO_METER 10.0150 // conversion factor (1.0/METER_TO_BAR) | |
114 #define SURFACE_DESAT_FACTOR 0.7042 // surface desaturation safety factor | |
560 | 115 #define HYST 1.0E-06 // threshold for tissue graphics on-gassing / off-gassing visualization |
116 | |
117 // thresholds | |
582 | 118 #define GF_WARNING_THRESHOLD 100 // threshold for GF warning (attention threshold is current GF_high) |
119 #define CNS_WARNING_THRESHOLD 100 // threshold for CNS warning | |
120 #define CNS_ATTENTION_THRESHOLD 70 // threshold for CNS attention | |
584 | 121 #define ppO2_ATTENTION_THRESHOLD 130 // threshold for ppO2 attention (thresholds for warnings come by options_table.asm) |
582 | 122 #define ppO2_GAP_TO_SETPOINT 10 // gap between setpoint and max. ppO2 of the pure diluent [cbar] |
560 | 123 #define GAS_NEEDS_ATTENTION_THRESHOLD 0.70 // threshold for gas needs attention |
124 | |
125 // deco engine states and modes - char_O_deco_status | |
126 #define DECO_STATUS_MASK 0x03 | |
127 #define DECO_STATUS_START 0x00 | |
128 #define DECO_STATUS_FINISHED 0x00 | |
129 #define DECO_STATUS_STOPS 0x01 | |
582 | 130 #define DECO_STATUS_RESULTS 0x02 |
560 | 131 #define DECO_STATUS_INIT 0x03 |
132 | |
133 #define DECO_MODE_MASK 0x0C | |
134 #define DECO_MODE_LOOP 0x04 | |
135 #define DECO_MODE_CCR 0x04 // to be used with == operator in combination with DECO_MODE_MASK only! | |
136 #define DECO_MODE_PSCR 0x08 | |
137 | |
138 #define DECO_PLAN_ALTERNATE 0x10 | |
582 | 139 #define DECO_CNS_CALCULATE 0x20 |
140 #define DECO_VOLUME_CALCULATE 0x40 | |
141 #define DECO_ASCENT_DELAYED 0x80 | |
560 | 142 |
143 // deco engine states and modes - char_O_main_status | |
144 //#define DECO_MODE_MASK 0x0C | |
145 //#define DECO_MODE_LOOP 0x04 | |
146 //#define DECO_MODE_CCR 0x04 // to be used with == operator in combination with DECO_MODE_MASK only! | |
147 //#define DECO_MODE_PSCR 0x08 | |
582 | 148 #define DECO_GASCHANGE_OVRD 0x10 |
560 | 149 #define DECO_BOTTOM_CALCULATE 0x40 |
150 | |
582 | 151 // deco engine states and modes - tissue_increment |
584 | 152 #define TIME_MASK 0x7F // (127 decimal, bits 0-6 set) |
153 #define TISSUE_FLAG 0x80 // (128 decimal, bit 7 set) | |
560 | 154 |
155 // deco engine warnings | |
156 #define DECO_WARNING_IBCD 0x01 | |
157 #define DECO_WARNING_IBCD_lock 0x02 | |
582 | 158 #define DECO_WARNING_MBUBBLES 0x04 |
560 | 159 #define DECO_WARNING_MBUBBLES_lock 0x08 |
160 #define DECO_WARNING_OUTSIDE 0x10 | |
161 #define DECO_WARNING_OUTSIDE_lock 0x20 | |
162 #define DECO_WARNING_STOPTABLE_OVERFLOW 0x40 | |
163 #define DECO_FLAG 0x80 | |
164 | |
165 // flags used with integer numbers | |
166 #define INT_FLAG_INVALID 0x0400 | |
167 #define INT_FLAG_ZERO 0x0800 | |
168 #define INT_FLAG_LOW 0x1000 | |
169 #define INT_FLAG_HIGH 0x2000 | |
582 | 170 #define INT_FLAG_ATTENTION 0x4000 |
560 | 171 #define INT_FLAG_WARNING 0x8000 |
172 | |
173 | |
0 | 174 |
175 // ************************* | |
176 // ** P R O T O T Y P E S ** | |
177 // ************************* | |
178 | |
179 static void calc_hauptroutine(void); | |
180 static void calc_hauptroutine_data_input(void); | |
181 static void calc_hauptroutine_calc_deco(void); | |
582 | 182 static void calc_alveolar_pressures(void); |
183 static void calc_tissues(void); | |
184 static void calc_NDL_time(void); | |
560 | 185 static void calc_ascenttime(void); |
582 | 186 static void calc_CNS_increment(void); |
560 | 187 static void calc_desaturation_time(void); |
582 | 188 static void calc_ascent_to_first_stop(void); |
189 static void calc_limit(PARAMETER float GF_current); | |
190 static void calc_interval(PARAMETER unsigned char time_increment); | |
191 | |
192 static void gas_find_current(void); | |
193 static void gas_set_ratios(void); | |
194 static void convert_CNS_for_display(void); | |
195 static void convert_sim_CNS_for_display(void); | |
196 static void publish_deco_table(void); | |
560 | 197 static void clear_deco_table(void); |
198 static void clear_tissue(void); | |
199 | |
582 | 200 static unsigned char calc_nextdecodepth(void); |
560 | 201 static unsigned char gas_find_better(void); |
202 static unsigned char update_deco_table(PARAMETER unsigned char time_increment); | |
203 | |
0 | 204 |
205 //---- Bank 5 parameters ----------------------------------------------------- | |
206 #ifndef UNIX | |
207 # pragma udata bank5=0x500 | |
208 #endif | |
209 | |
560 | 210 // general deco parameters |
211 | |
212 static float GF_low; // initialized from deco parameters, constant during all computations | |
213 static float GF_high; // initialized from deco parameters, constant during all computations | |
214 static float GF_delta; // initialized from deco parameters, constant during all computations | |
215 static float locked_GF_step_norm; // GF_delta / low_depth_norm in normal plan | |
216 static float locked_GF_step_alt; // GF_delta / low_depth_alt in alternative plan | |
217 | |
218 static float low_depth_norm; // Depth of deepest stop in normal plan | |
219 static float low_depth_alt; // Depth of deepest stop in alternative plan | |
220 | |
221 static float float_ascent_speed; // ascent speed from options_table (1.0 .. 10.0 m/min) | |
582 | 222 static float float_deco_distance; // additional depth below stop depth for tissue, CNS and gas volume calculation |
223 static float float_saturation_multiplier; // safety factor for on-gassing rates | |
224 static float float_desaturation_multiplier; // safety factor for off-gassing rates | |
225 | |
226 // real context: what we are doing now | |
227 | |
228 static float ceiling; // minimum tolerated relative pressure (i.e. without surface pressue) | |
229 static float CNS_fraction; // current CNS (1.00 = 100%) | |
230 | |
231 static unsigned short deco_tissue_vector; // 16 bit vector to memories all tissues that are in decompression | |
232 static unsigned short IBCD_tissue_vector; // 16 bit vector to memories all tissues that experience IBCD | |
233 | |
234 // simulation context: used to predict ascent | |
235 | |
236 static float sim_ceiling; // minimum tolerated relative pressure (i.e. without surface pressue) | |
237 static float sim_CNS_fraction; // CNS increase during predicted ascent, 0.01 = 1% | |
238 | |
239 static unsigned int int_sim_CNS_fraction; // CNS increase during predicted ascent, in % | |
240 | |
241 static unsigned char sim_depth_limit; // depth of next stop in meters, used in deco calculations | |
560 | 242 static unsigned char split_N2_He[NUM_COMP]; // used for calculating the desaturation time |
582 | 243 static unsigned char NDL_lead_tissue; // used to cache tissue to start with calculating NDL |
560 | 244 |
245 | |
246 // stops table | |
247 | |
248 static unsigned char internal_deco_depth[NUM_STOPS]; // depth of the stop | |
249 static unsigned char internal_deco_time[NUM_STOPS]; // duration of the stop | |
250 static unsigned char internal_deco_gas[NUM_STOPS]; // gas used at the stop | |
251 | |
252 | |
253 // transfer variables between calc_desaturation_time() and calc_desaturation_time_helper() | |
254 | |
255 static float desat_factor; // used to cache a pre-computed factor | |
256 static float var_ht; // buffer for a half-time factor | |
582 | 257 static float pres_target; // target pressure for a compartment |
560 | 258 static float pres_actual; // current pressure of the compartment |
582 | 259 static unsigned int int_time; // time it takes for the compartment to reach the target pressure |
260 | |
560 | 261 |
262 // transfer variables between gas_volumes() and gas_volumes_helper() | |
582 | 263 |
560 | 264 static float float_depth; // depth of the stop or half-way point |
265 static float float_time; // duration of the stop or ascent phase | |
266 static float volume; // computed volume of gas | |
267 static unsigned char usage; // gas usage in l/min | |
268 | |
269 | |
582 | 270 // auxiliary variables for data buffering |
271 | |
272 static float N2_equilibrium; // used for N2 tissue graphics scaling | |
273 static float temp_tissue; // auxiliary variable to buffer tissue pressures | |
274 static float float_pSCR_factor; // pre-computed factor for pSCR ppO2 drop calculation | |
275 | |
276 | |
277 // 35 byte free space left in this bank (4 bytes per float, 2 bytes per int/short, 1 byte per char) | |
560 | 278 |
0 | 279 |
280 //---- Bank 6 parameters ----------------------------------------------------- | |
281 #ifndef UNIX | |
282 # pragma udata bank6=0x600 | |
283 #endif | |
284 | |
560 | 285 // indexing and sequencing |
286 | |
287 static unsigned char ci; // used as index to the Buhlmann tables | |
288 static unsigned char twosectimer = 0; // used for timing the tissue updating | |
582 | 289 static unsigned char tissue_increment; // selector for real/simulated tissues and time increment |
560 | 290 |
291 | |
292 // environmental and gas data | |
293 | |
582 | 294 static float pres_surface; // absolute pressure at the surface |
560 | 295 |
296 static unsigned char bottom_depth; // bottom depth in meters, used by CNS and gas needs calculation | |
297 | |
582 | 298 static float pres_respiration; // current depth in absolute pressure |
299 static float O2_ratio; // real breathed gas oxygen ratio | |
300 static float N2_ratio; // real breathed gas nitrogen ratio | |
301 static float He_ratio; // real breathed gas helium ratio | |
302 static float pSCR_drop; // real ppO2 drop in pSCR loop | |
303 | |
304 static float sim_pres_respiration; // simulated current depth in abs.pressure, used for deco calculations | |
305 static float sim_O2_ratio; // simulated breathed gas oxygen ratio | |
306 static float sim_N2_ratio; // simulated breathed gas nitrogen ratio | |
307 static float sim_He_ratio; // simulated breathed gas helium ratio | |
308 static float sim_pSCR_drop; // simulated ppO2 drop in pSCR loop | |
560 | 309 |
310 static float O2_ppO2; // ppO2 - calculated for pure oxygen at current depth | |
582 | 311 static float OC_ppO2; // ppO2 - calculated for breathed in OC mode |
560 | 312 static float pSCR_ppO2; // ppO2 - calculated for breathed from pSCR loop |
582 | 313 |
314 static float ppO2; // partial pressure of breathed oxygen | |
315 static float ppN2; // partial pressure of breathed nitrogen | |
316 static float ppHe; // partial pressure of breathed helium | |
317 | |
318 | |
319 // Result values from calculation functions | |
320 | |
321 static float CNS_fraction_inc; // increment of CNS load, 0.01 = 1% | |
322 | |
323 static unsigned char char_ppO2; // partial pressure of breathed oxygen, as integer 100 = 1.00 bar | |
324 static unsigned char NDL_time; // time in minutes until reaching NDL | |
325 static unsigned int ascent_time; // time in minutes needed for the ascent | |
560 | 326 |
327 | |
328 // Buhlmann model parameters | |
329 | |
582 | 330 static float var_N2_a; // Buhlmann a, for current N2 tissue |
331 static float var_N2_b; // Buhlmann b, for current N2 tissue | |
332 static float var_He_a; // Buhlmann a, for current He tissue | |
333 static float var_He_b; // Buhlmann b, for current He tissue | |
334 static float var_N2_e; // exposition, for current N2 tissue | |
335 static float var_He_e; // exposition, for current He tissue | |
336 static float var_N2_ht; // half-time for current N2 tissue | |
337 static float var_He_ht; // half-time for current N2 tissue | |
338 | |
339 | |
340 // Gas switch history | |
560 | 341 |
342 static unsigned char sim_gas_first_used; // Number of first used gas, for bottom segment | |
582 | 343 static unsigned char sim_gas_last_used; // number of last used gas |
344 static unsigned char sim_gas_last_depth; // change depth of last used gas | |
345 | |
346 | |
347 // Vault to back-up & restore tissue data | |
560 | 348 |
349 static float pres_tissue_N2_vault[NUM_COMP]; // stores the nitrogen tissue pressures | |
350 static float pres_tissue_He_vault[NUM_COMP]; // stores the helium tissue pressures | |
351 static float cns_vault_float; // stores current CNS (float representation) | |
352 static unsigned char deco_warnings_vault; // stores warnings status | |
353 | |
354 | |
582 | 355 // 8 byte free space left in this bank (4 bytes per float, 2 bytes per int/short, 1 byte per char) |
560 | 356 |
0 | 357 |
358 //---- Bank 7 parameters ----------------------------------------------------- | |
359 #ifndef UNIX | |
360 # pragma udata bank7=0x700 | |
361 #endif | |
560 | 362 |
363 // Keep order and position of the variables in bank 7 as they are backed-up to & restored from EEPROM | |
364 | |
365 float pres_tissue_N2[NUM_COMP]; // 16 floats = 64 bytes | |
366 float pres_tissue_He[NUM_COMP]; // 16 floats = 64 bytes | |
582 | 367 |
560 | 368 float sim_pres_tissue_N2[NUM_COMP]; // 16 floats = 64 bytes |
369 float sim_pres_tissue_He[NUM_COMP]; // 16 floats = 64 bytes | |
370 | |
582 | 371 // bank is full! |
372 | |
0 | 373 |
374 //---- Bank 8 parameters ----------------------------------------------------- | |
375 #ifndef UNIX | |
376 # pragma udata overlay bank8=0x800 | |
560 | 377 |
582 | 378 static char md_pi_subst[256]; // Overlay C-code data stack here, too. |
560 | 379 |
380 # define C_STACK md_pi_subst | |
0 | 381 #endif |
382 | |
582 | 383 |
0 | 384 // Back to bank6 for further tmp data |
582 | 385 // Do not delete this assignment, it is needed by the compiler/linker. |
0 | 386 #ifndef UNIX |
387 # pragma udata bank6 | |
388 #endif | |
389 | |
582 | 390 |
0 | 391 ////////////////////////////////////////////////////////////////////////////// |
392 ////////////////////////////////////////////////////////////////////////////// | |
582 | 393 //////////////// THE LOOKUP TABLES //////////////// |
0 | 394 ////////////////////////////////////////////////////////////////////////////// |
395 ////////////////////////////////////////////////////////////////////////////// | |
582 | 396 |
0 | 397 #ifndef UNIX |
560 | 398 # pragma romdata Buhlmann_tables = 0x1DD00 // Needs to be in UPPER bank. |
0 | 399 #endif |
400 | |
560 | 401 rom const float Buhlmann_ab[4*16] = { |
521
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
402 // Data ZH-L16C, from Bühlmann Tauchmedizin 2002, option 1a (4mn) |
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
403 // a for N2 b for N2 a of He b for He |
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
404 1.2599, 0.5050, 1.7424, 0.4245, |
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
405 1.0000, 0.6514, 1.3830, 0.5747, |
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
406 0.8618, 0.7222, 1.1919, 0.6527, |
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
407 0.7562, 0.7825, 1.0458, 0.7223, |
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
408 0.6200, 0.8126, 0.9220, 0.7582, |
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
409 0.5043, 0.8434, 0.8205, 0.7957, |
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
410 0.4410, 0.8693, 0.7305, 0.8279, |
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
411 0.4000, 0.8910, 0.6502, 0.8553, |
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
412 0.3750, 0.9092, 0.5950, 0.8757, |
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
413 0.3500, 0.9222, 0.5545, 0.8903, |
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
414 0.3295, 0.9319, 0.5333, 0.8997, |
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
415 0.3065, 0.9403, 0.5189, 0.9073, |
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
416 0.2835, 0.9477, 0.5181, 0.9122, |
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
417 0.2610, 0.9544, 0.5176, 0.9171, |
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
418 0.2480, 0.9602, 0.5172, 0.9217, |
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
419 0.2327, 0.9653, 0.5119, 0.9267 |
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
420 }; |
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
421 |
560 | 422 rom const float Buhlmann_ht[2*16] = { |
423 // Compartment half-life, in minute | |
424 //--- N2 ---- He ---------------------- | |
521
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
425 4.0, 1.51, |
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
426 8.0, 3.02, |
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
427 12.5, 4.72, |
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
428 18.5, 6.99, |
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
429 27.0, 10.21, |
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
430 38.3, 14.48, |
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
431 54.3, 20.53, |
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
432 77.0, 29.11, |
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
433 109.0, 41.20, |
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
434 146.0, 55.19, |
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
435 187.0, 70.69, |
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
436 239.0, 90.34, |
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
437 305.0, 115.29, |
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
438 390.0, 147.42, |
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
439 498.0, 188.24, |
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
440 635.0, 240.03 |
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
441 }; |
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
442 |
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
443 rom const float e2secs[2*16] = { |
560 | 444 // result of 1 - 2^(-1/(2sec*HT)) |
521
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
445 //---- N2 ------------- He ------------ |
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
446 5.75958E-03, 1.51848E-02, |
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
447 2.88395E-03, 7.62144E-03, |
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
448 1.84669E-03, 4.88315E-03, |
582 | 449 1.24813E-03, 3.29997E-03, |
450 8.55371E-04, 2.26041E-03, | |
451 6.03079E-04, 1.59437E-03, | |
452 4.25414E-04, 1.12479E-03, | |
453 3.00019E-04, 7.93395E-04, | |
454 2.11949E-04, 5.60641E-04, | |
455 1.58240E-04, 4.18555E-04, | |
456 1.23548E-04, 3.26795E-04, | |
457 9.66686E-05, 2.55722E-04, | |
458 7.57509E-05, 2.00387E-04, | |
459 5.92416E-05, 1.56716E-04, | |
460 4.63943E-05, 1.22734E-04, | |
461 3.63850E-05, 9.62538E-05 | |
521
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
462 //------------------------------------- |
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
463 }; |
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
464 |
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
465 rom const float e1min[2*16] = { |
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
466 // Integration constant for 1 minute, |
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
467 // Ie. 1- 2^(-1/HT) |
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
468 //----- N2 --------- e 1min He -------- |
582 | 469 1.59104E-01, 3.68109E-01, |
470 8.29960E-02, 2.05084E-01, | |
471 5.39424E-02, 1.36579E-01, | |
472 3.67742E-02, 9.44046E-02, | |
473 2.53454E-02, 6.56359E-02, | |
474 1.79351E-02, 4.67416E-02, | |
475 1.26840E-02, 3.31991E-02, | |
476 8.96152E-03, 2.35301E-02, | |
477 6.33897E-03, 1.66832E-02, | |
478 4.73633E-03, 1.24808E-02, | |
479 3.69981E-03, 9.75753E-03, | |
480 2.89600E-03, 7.64329E-03, | |
481 2.27003E-03, 5.99417E-03, | |
482 1.77572E-03, 4.69082E-03, | |
483 1.39089E-03, 3.67548E-03, | |
484 1.09097E-03, 2.88359E-03 | |
521
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
485 //------------------------------------- |
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
486 }; |
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
487 |
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
488 rom const float e10min[2*16] = { |
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
489 // The 10 min Value in float notation: |
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
490 // result of 1 - 2^(-10/ht) |
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
491 //---- N2 -------------- He ----------- |
582 | 492 8.23223E-01, 9.89851E-01, |
493 5.79552E-01, 8.99258E-01, | |
494 4.25651E-01, 7.69737E-01, | |
495 3.12487E-01, 6.29027E-01, | |
496 2.26416E-01, 4.92821E-01, | |
497 1.65547E-01, 3.80407E-01, | |
498 1.19840E-01, 2.86538E-01, | |
499 8.60863E-02, 2.11886E-01, | |
500 6.16117E-02, 1.54849E-01, | |
501 4.63665E-02, 1.18026E-01, | |
502 3.63881E-02, 9.34005E-02, | |
503 2.85855E-02, 7.38569E-02, | |
504 2.24698E-02, 5.83504E-02, | |
505 1.76160E-02, 4.59303E-02, | |
506 1.38222E-02, 3.61528E-02, | |
507 1.08563E-02, 2.84646E-02 | |
521
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
508 //------------------------------------- |
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
509 }; |
0 | 510 |
511 ////////////////////////////////////////////////////////////////////////////// | |
512 ////////////////////////////////////////////////////////////////////////////// | |
582 | 513 //////////////// THE SUBROUTINES //////////////// |
0 | 514 ////////////////////////////////////////////////////////////////////////////// |
515 ////////////////////////////////////////////////////////////////////////////// | |
516 // | |
517 // all new in v.102 | |
518 // moved from 0x0D000 to 0x0C000 in v.108 | |
519 #ifndef UNIX | |
584 | 520 # pragma code p2_deco = 0x0C000 |
0 | 521 #endif |
522 | |
523 ////////////////////////////////////////////////////////////////////////////// | |
524 ////////////////////////////////////////////////////////////////////////////// | |
582 | 525 //////////////// U T I L I T I E S //////////////// |
0 | 526 ////////////////////////////////////////////////////////////////////////////// |
527 ////////////////////////////////////////////////////////////////////////////// | |
528 | |
529 ////////////////////////////////////////////////////////////////////////////// | |
530 // Bump to blue-screen when an assert is wrong | |
531 #ifdef __DEBUG | |
532 void assert_failed(PARAMETER short int line) | |
533 { | |
534 } | |
535 #endif | |
536 | |
537 ////////////////////////////////////////////////////////////////////////////// | |
538 // When calling C code from ASM context, the data stack pointer and | |
539 // frames should be reset. Bank8 is used by stack | |
540 | |
541 #ifdef CROSS_COMPILE | |
584 | 542 # define RESET_C_STACK |
0 | 543 #else |
584 | 544 # ifdef __DEBUG |
545 # define RESET_C_STACK fillDataStack(); | |
546 void fillDataStack(void) | |
547 { | |
548 _asm | |
549 LFSR 1,C_STACK | |
550 MOVLW 0xCC | |
551 loop: MOVWF POSTINC1,0 | |
552 TSTFSZ FSR1L,0 | |
553 BRA loop | |
554 | |
555 LFSR 1,C_STACK | |
556 LFSR 2,C_STACK | |
557 _endasm | |
558 } | |
559 # else | |
560 # define RESET_C_STACK \ | |
561 _asm \ | |
562 LFSR 1, C_STACK \ | |
563 LFSR 2, C_STACK \ | |
564 _endasm | |
565 # endif | |
0 | 566 #endif |
567 | |
568 ////////////////////////////////////////////////////////////////////////////// | |
569 // Fast subroutine to read timer 5. | |
560 | 570 // Note: result is in 1/32 of milliseconds (30,51757813 us/bit to be precise) |
0 | 571 static unsigned short tmr5(void) |
572 { | |
573 #ifndef CROSS_COMPILE | |
584 | 574 _asm |
575 movff 0xf7c,PRODL // TMR5L | |
576 movff 0xf7d,PRODH // TMR5H | |
577 _endasm // result in PRODH:PRODL. | |
0 | 578 #else |
584 | 579 return 0; |
0 | 580 #endif |
581 } | |
582 | |
583 ////////////////////////////////////////////////////////////////////////////// | |
560 | 584 // read Buhlmann tables A and B for compartment ci |
0 | 585 // |
560 | 586 static void read_Buhlmann_coefficients(void) |
0 | 587 { |
588 #ifndef CROSS_COMPILE | |
584 | 589 // Note: we don't use far rom pointer, because the |
590 // 24 bits is too complex, hence we have to set | |
591 // the UPPER page ourself... | |
592 // --> Set zero if tables are moved to lower pages ! | |
593 _asm | |
594 movlw 1 | |
595 movwf TBLPTRU,0 | |
596 _endasm | |
0 | 597 #endif |
598 | |
584 | 599 assert( ci < NUM_COMP ); |
600 | |
601 // Use an interleaved array (AoS) to access coefficients with a | |
602 // single addressing. | |
603 { | |
604 overlay rom const float* ptr = &Buhlmann_ab[4*ci]; | |
605 var_N2_a = *ptr++; | |
606 var_N2_b = *ptr++; | |
607 var_He_a = *ptr++; | |
608 var_He_b = *ptr++; | |
609 } | |
0 | 610 } |
611 | |
612 ////////////////////////////////////////////////////////////////////////////// | |
560 | 613 // read Buhlmann tables for compartment ci |
0 | 614 // If period == 0 : 2sec interval |
615 // 1 : 1 min interval | |
616 // 2 : 10 min interval. | |
560 | 617 static void read_Buhlmann_times(PARAMETER char period) |
0 | 618 { |
619 #ifndef CROSS_COMPILE | |
584 | 620 // Note: we don't use far rom pointer, because the |
621 // 24 bits is to complex, hence we have to set | |
622 // the UPPER page ourself... | |
623 // --> Set zero if tables are moved to lower pages! | |
624 _asm | |
625 movlw 1 | |
626 movwf TBLPTRU,0 | |
627 _endasm | |
0 | 628 #endif |
629 | |
584 | 630 assert( ci < NUM_COMP ); |
631 | |
632 // Integration intervals | |
633 switch(period) | |
634 { | |
635 case 0: //---- 2 sec ----------------------------------------------------- | |
636 { | |
637 overlay rom const float* ptr = &e2secs[2*ci]; | |
638 var_N2_e = *ptr++; | |
639 var_He_e = *ptr++; | |
640 } | |
641 break; | |
642 | |
643 case 1: //---- 1 min ----------------------------------------------------- | |
644 { | |
645 overlay rom const float* ptr = &e1min[2*ci]; | |
646 var_N2_e = *ptr++; | |
647 var_He_e = *ptr++; | |
648 } | |
649 break; | |
650 | |
651 case 2: //---- 10 min ---------------------------------------------------- | |
652 { | |
653 overlay rom const float* ptr = &e10min[2*ci]; | |
654 var_N2_e = *ptr++; | |
655 var_He_e = *ptr++; | |
656 } | |
657 break; | |
658 | |
659 default: | |
660 assert(0); // Never go there... | |
661 } | |
0 | 662 } |
663 | |
664 ////////////////////////////////////////////////////////////////////////////// | |
560 | 665 // read Buhlmann tables for compartment ci |
0 | 666 // |
560 | 667 static void read_Buhlmann_ht(void) |
0 | 668 { |
669 | |
670 #ifndef CROSS_COMPILE | |
584 | 671 // Note: we don't use far rom pointer, because the |
672 // 24 bits is to complex, hence we have to set | |
673 // the UPPER page ourself... | |
674 // --> Set zero if tables are moved to lower pages ! | |
675 _asm | |
676 movlw 1 | |
677 movwf TBLPTRU,0 | |
678 _endasm | |
0 | 679 #endif |
680 | |
584 | 681 assert( ci < NUM_COMP ); |
682 { | |
683 overlay rom const float* ptr = &Buhlmann_ht[2*ci]; | |
684 var_N2_ht = *ptr++; | |
685 var_He_ht = *ptr++; | |
686 } | |
687 | |
688 assert( 4.0 <= var_N2_ht && var_N2_ht <= 635.0 ); | |
689 assert( 1.5099 <= var_He_ht && var_He_ht <= 240.03 ); | |
0 | 690 } |
691 | |
692 ////////////////////////////////////////////////////////////////////////////// | |
582 | 693 ////////////////////////////////////////////////////////////////////////////// |
694 //////////////// THE JUMP-IN CODE for the asm code //////////////// | |
695 ////////////////////////////////////////////////////////////////////////////// | |
696 ////////////////////////////////////////////////////////////////////////////// | |
697 | |
698 ////////////////////////////////////////////////////////////////////////////// | |
699 // deco_calc_hauptroutine | |
700 // | |
701 // called from: divemode.asm | |
702 // | |
703 // Called every second during diving, | |
704 // updates tissues on every second invocation. | |
705 // | |
706 // Every few seconds (or slower when TTS > 16): | |
707 // - Updates deco table (char_O_deco_time/depth) with new values, | |
708 // - updates ascent time, and | |
709 // - sets status to zero (so we can check there is new results). | |
710 // | |
711 void deco_calc_hauptroutine(void) | |
712 { | |
713 RESET_C_STACK | |
714 calc_hauptroutine(); | |
715 } | |
716 | |
717 ////////////////////////////////////////////////////////////////////////////// | |
718 // deco_clear_tissue | |
719 // | |
720 // called from: start.asm | |
721 // menu_tree.asm | |
722 // simulator.asm | |
723 // | |
724 // Sets all tissues to equilibrium with Air at ambient pressure, | |
725 // resets all CNS values, any warnings and resets all model output. | |
726 // | |
727 void deco_clear_tissue(void) | |
728 { | |
729 RESET_C_STACK | |
730 clear_tissue(); | |
731 } | |
732 | |
733 ////////////////////////////////////////////////////////////////////////////// | |
734 // deco_calc_dive_interval | |
735 // | |
736 // called from: simulator.asm | |
737 // | |
738 // Updates tissues and CNS value for char_I_dive_interval minutes on Air | |
739 // at ambient pressure and calculates resulting GF factor and ceiling for | |
740 // a GF-high of 100% (ceiling and GF factor not used by simulator.asm) | |
741 // | |
742 void deco_calc_dive_interval(void) | |
743 { | |
744 RESET_C_STACK | |
745 calc_interval(char_I_dive_interval); | |
746 } | |
747 | |
748 ////////////////////////////////////////////////////////////////////////////// | |
749 // deco_calc_dive_interval_1min | |
750 // | |
751 // called from: start.asm | |
752 // sleepmode.asm | |
753 // surfmode.asm | |
754 // menu_tree.asm | |
755 // ghostwriter.asm | |
756 // | |
757 // Updates tissues and CNS value for 1 minute on Air at ambient pressure and | |
758 // calculates resulting GF factor and ceiling for a GF-high of 100% (ceiling | |
759 // is not used by *.asm files). | |
760 // | |
761 void deco_calc_dive_interval_1min(void) | |
762 { | |
763 RESET_C_STACK | |
764 calc_interval(1); | |
765 } | |
766 | |
767 | |
768 ////////////////////////////////////////////////////////////////////////////// | |
769 // deco_calc_dive_interval_1min | |
770 // | |
771 // called from: sleepmode.asm | |
772 // | |
773 // Updates tissues and CNS value for 10 minutes on Air at ambient pressure and | |
774 // calculates resulting GF factor and ceiling for a GF-high of 100% (ceiling | |
775 // is not used by sleepmode.asm). | |
776 // | |
777 void deco_calc_dive_interval_10min(void) | |
778 { | |
779 RESET_C_STACK | |
780 calc_interval(10); | |
781 } | |
782 | |
783 | |
784 ////////////////////////////////////////////////////////////////////////////// | |
785 // deco_calc_desaturation_time | |
786 // | |
787 // called from: start.asm | |
788 // surfmode.asm | |
789 // menu_tree.asm | |
790 // ghostwriter.asm | |
791 // | |
792 // Computes desaturation and no-fly times. | |
793 // | |
794 void deco_calc_desaturation_time(void) | |
795 { | |
796 RESET_C_STACK | |
797 calc_desaturation_time(); | |
798 } | |
799 | |
800 ////////////////////////////////////////////////////////////////////////////// | |
801 // deco_push_tissues_to_vault | |
802 // | |
803 // called from: simulator.asm | |
804 // | |
805 // Makes a backup of the state of the real tissues and the deco engine. | |
806 // | |
807 void deco_push_tissues_to_vault(void) | |
808 { | |
809 RESET_C_STACK | |
810 push_tissues_to_vault(); | |
811 } | |
812 | |
813 ////////////////////////////////////////////////////////////////////////////// | |
814 // deco_pull_tissues_from_vault | |
815 // | |
816 // called from: simulator.asm | |
817 // ghostwriter.asm | |
818 // | |
819 // Restores the state of the real tissues and the deco engine from the backup. | |
820 // | |
821 void deco_pull_tissues_from_vault(void) | |
822 { | |
823 RESET_C_STACK | |
824 pull_tissues_from_vault(); | |
825 } | |
826 | |
827 ////////////////////////////////////////////////////////////////////////////// | |
828 ////////////////////////////////////////////////////////////////////////////// | |
829 //////////////// THE FUNCTIONS //////////////// | |
830 ////////////////////////////////////////////////////////////////////////////// | |
831 ////////////////////////////////////////////////////////////////////////////// | |
832 | |
833 | |
834 ////////////////////////////////////////////////////////////////////////////// | |
0 | 835 // calc_nextdecodepth |
836 // | |
837 // new in v.102 | |
838 // | |
839 // INPUT, changing during dive: | |
582 | 840 // sim_pres_respiration : current depth in absolute pressure |
0 | 841 // |
842 // INPUT, fixed during dive: | |
843 // pres_surface | |
844 // GF_delta | |
845 // GF_high | |
846 // GF_low | |
847 // char_I_depth_last_deco | |
848 // | |
560 | 849 // MODIFIED |
850 // locked_GF_step_norm/_alt : used for GF model | |
851 // low_depth_norm/_alt : used for GF model | |
0 | 852 // |
853 // OUTPUT | |
582 | 854 // sim_depth_limit : depth of next stop in meters (if RETURN == true ) |
855 // depth we can ascent to without stop (if RETURN == false) | |
560 | 856 // |
857 // RETURN TRUE if a stop is needed. | |
0 | 858 // |
859 static unsigned char calc_nextdecodepth(void) | |
860 { | |
582 | 861 overlay unsigned char need_stop; |
862 | |
560 | 863 // compute current depth in meters |
582 | 864 overlay float depth = (sim_pres_respiration - pres_surface) * BAR_TO_METER; |
865 | |
866 // compute depth in meters after 1 minute of ascent at float_ascent_speed (5..10 m/min) | |
867 overlay float min_depth = (depth > float_ascent_speed) ? (depth - float_ascent_speed) : 0.0; | |
868 | |
869 | |
870 // allow for 200mbar of weather dependent surface pressure change | |
871 assert( depth >= -0.2 ); | |
560 | 872 |
873 | |
874 //---- check if a stop is needed for deco reasons ---------------------------- | |
582 | 875 |
876 // switch on deco model | |
877 if( char_I_deco_model != 0 ) | |
878 { | |
560 | 879 //---- ZH-L16 + GRADIENT FACTOR Model ------------------------------------ |
582 | 880 |
560 | 881 overlay float locked_GF_step; |
882 overlay float low_depth; | |
582 | 883 overlay float limit_depth; |
884 | |
885 overlay unsigned char first_stop = 0; | |
886 | |
887 | |
888 // calculate minimum depth we can ascent to in bar relative pressure | |
889 calc_limit(GF_low); | |
560 | 890 |
891 // check if we can surface directly | |
582 | 892 if( sim_ceiling <= 0.0 ) |
560 | 893 { |
894 min_depth = 0.0; // set minimum depth to 0 meters = surface | |
895 goto no_deco_stop; // done. | |
896 } | |
897 | |
898 // convert minimum depth we can ascent to from relative pressure to depth in meters | |
582 | 899 limit_depth = sim_ceiling * BAR_TO_METER; |
560 | 900 |
901 // recall low_depth dependent on current plan | |
902 low_depth = (char_O_deco_status & DECO_PLAN_ALTERNATE) ? low_depth_alt : low_depth_norm; | |
903 | |
582 | 904 // Store the deepest point needing a deco stop as the LOW reference for GF. |
905 // NOTE: following stops will be validated using this LOW-HIGH GF scale, | |
906 // so if we want to keep coherency, we should not validate this stop | |
907 // yet, but apply the search to it, as for all the following stops afterward. | |
908 if( limit_depth > low_depth ) | |
909 { | |
560 | 910 // update GF parameters |
582 | 911 low_depth = limit_depth; |
912 locked_GF_step = GF_delta / low_depth; | |
913 | |
560 | 914 // store updated GF parameters dependent on current plan |
915 if( char_O_deco_status & DECO_PLAN_ALTERNATE ) | |
916 { | |
917 low_depth_alt = low_depth; | |
918 locked_GF_step_alt = locked_GF_step; | |
919 } | |
920 else | |
921 { | |
922 low_depth_norm = low_depth; | |
923 locked_GF_step_norm = locked_GF_step; | |
924 } | |
582 | 925 } |
560 | 926 else |
927 { | |
928 // recall locked_GF_step dependent on current plan | |
929 locked_GF_step = (char_O_deco_status & DECO_PLAN_ALTERNATE) ? locked_GF_step_alt : locked_GF_step_norm; | |
930 } | |
931 | |
932 // invalidate this stop if we can ascent for 1 minute without going above minimum required deco depth | |
582 | 933 if( limit_depth < min_depth ) goto no_deco_stop; |
934 | |
935 | |
560 | 936 // if program execution passes here, we need a deco stop |
582 | 937 |
938 // Round to multiple of 3 meters | |
939 first_stop = 3 * (unsigned char)(0.9995 + limit_depth * 0.333333); | |
560 | 940 |
941 // check a constraint | |
582 | 942 assert( first_stop < 128 ); |
943 | |
944 // apply correction for the shallowest stop, use char_I_depth_last_deco (3..6 m) instead | |
945 if( first_stop == 3 ) first_stop = char_I_depth_last_deco; | |
946 | |
947 // We have a stop candidate. | |
948 // But maybe ascending to the next stop will diminish the constraint, | |
949 // because the GF might decrease more than the pressure gradient... | |
950 while(first_stop > 0) | |
951 { | |
560 | 952 // Next depth |
582 | 953 overlay unsigned char next_stop; |
954 | |
955 // invalidate this stop if we can ascent one more minute without going above minimum required deco depth | |
956 if( first_stop <= (unsigned char)min_depth ) goto no_deco_stop; | |
560 | 957 |
958 // compute depth of next stop | |
582 | 959 if ( first_stop <= char_I_depth_last_deco ) next_stop = 0; |
960 else if ( first_stop == 6 ) next_stop = char_I_depth_last_deco; | |
961 else next_stop = first_stop - 3; | |
962 | |
963 // compute limit with the GF of the new stop candidate | |
964 if( (low_depth == 0.0) || (next_stop > low_depth) ) calc_limit(GF_low); | |
965 else calc_limit(GF_high - next_stop * locked_GF_step); | |
966 | |
967 // check if ascent to the next stop candidate is possible | |
968 if( sim_ceiling * BAR_TO_METER >= next_stop ) goto deco_stop_found; // no - ascent to next_stop forbidden | |
969 | |
970 // else, validate that stop and loop... | |
971 first_stop = next_stop; | |
972 } | |
0 | 973 |
974 no_deco_stop: | |
582 | 975 need_stop = 0; // set flag for stop needed to 'no' |
976 sim_depth_limit = (unsigned char)min_depth; // report depth we can ascent to without stop | |
560 | 977 goto done; |
0 | 978 |
342
7812ec7ef694
Fix low_depth shall be stored as a float (no rounding).
jDG
parents:
324
diff
changeset
|
979 deco_stop_found: |
582 | 980 need_stop = 1; // set flag for stop needed to 'yes' |
981 sim_depth_limit = (unsigned char)first_stop; // stop depth, in meters | |
0 | 982 |
983 done: | |
582 | 984 ; |
985 } | |
986 else | |
987 { | |
560 | 988 //---- ZH-L16 model ------------------------------------------------- |
582 | 989 |
990 overlay float limit_depth; | |
991 | |
992 | |
993 // calculate minimum depth we can ascent to in bar relative pressure | |
994 calc_limit(1.0); | |
560 | 995 |
996 // check if we can surface directly | |
582 | 997 if (sim_ceiling >= 0) |
998 { | |
560 | 999 // no - set flag for stop needed to 'yes' |
582 | 1000 need_stop = 1; |
560 | 1001 |
1002 // convert stop depth in relative pressure to stop index | |
582 | 1003 limit_depth = sim_ceiling * BAR_TO_METER / 3; |
560 | 1004 |
1005 // convert stop index to depth in meters, rounded to multiple of 3 meters | |
582 | 1006 sim_depth_limit = 3 * (short)(limit_depth + 0.99); |
1007 | |
1008 // correct last stop to 4m/5m/6m | |
1009 if( sim_depth_limit == 3 ) sim_depth_limit = char_I_depth_last_deco; | |
1010 } | |
1011 else | |
560 | 1012 { |
1013 // yes - set flag for stop needed to 'no' | |
582 | 1014 need_stop = 0; |
560 | 1015 |
1016 // set depth we can ascent to as 0 = surface | |
582 | 1017 sim_depth_limit = 0; |
560 | 1018 } |
582 | 1019 } |
1020 | |
560 | 1021 // After the first deco stop, gas changes are only done at deco stops now! |
582 | 1022 |
560 | 1023 // check if a stop is found and there is a better gas to switch to |
1024 if( need_stop && gas_find_better() ) | |
1025 { | |
1026 // set the new calculation ratios for N2, He and O2 | |
582 | 1027 gas_set_ratios(); |
560 | 1028 |
1029 // prime the deco stop with the gas change time | |
1030 update_deco_table(char_I_gas_change_time); | |
1031 } | |
0 | 1032 |
582 | 1033 return need_stop; |
0 | 1034 } |
1035 | |
1036 ////////////////////////////////////////////////////////////////////////////// | |
582 | 1037 // publish_deco_table |
0 | 1038 // |
1039 // Buffer the stops, once computed, so we can continue to display them | |
1040 // while computing the next set. | |
1041 // | |
582 | 1042 static void publish_deco_table(void) |
0 | 1043 { |
582 | 1044 overlay unsigned char x, y; |
1045 | |
1046 | |
1047 // Copy depth of the first (deepest) stop, because when reversing | |
1048 // order, it will be hard to find... | |
1049 char_O_first_deco_depth = internal_deco_depth[0]; | |
1050 char_O_first_deco_time = internal_deco_time [0]; | |
1051 | |
1052 for(x=0; x<NUM_STOPS; x++) | |
1053 { | |
1054 char_O_deco_depth[x] = internal_deco_depth[x]; | |
1055 char_O_deco_time [x] = internal_deco_time [x]; | |
1056 char_O_deco_gas [x] = internal_deco_gas [x]; | |
1057 } | |
1058 | |
1059 //Now fill the char_O_deco_time_for_log array | |
1060 //---- First: search the first non-null depth | |
1061 for(x=(NUM_STOPS-1); x != 0; --x) | |
1062 if( internal_deco_depth[x] != 0 ) break; | |
1063 | |
1064 //---- Second: copy to output table (in reverse order) | |
1065 for(y=0; y<NUM_STOPS; y++, --x) | |
1066 { | |
1067 char_O_deco_time_for_log[y] = internal_deco_time [x]; | |
1068 | |
1069 // Stop only once the last transfer is done. | |
1070 if( x == 0 ) break; | |
1071 } | |
1072 | |
1073 //---- Third: fill table with null until end | |
1074 for(y++; y<NUM_STOPS; y++) | |
1075 char_O_deco_time_for_log[y] = 0; | |
0 | 1076 } |
1077 | |
1078 ////////////////////////////////////////////////////////////////////////////// | |
560 | 1079 // temp_tissue_safety |
0 | 1080 // |
1081 // outsourced in v.102 | |
1082 // | |
521
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
1083 // Apply safety factors for both ZH-L16 models. |
0 | 1084 // |
1085 static void temp_tissue_safety(void) | |
1086 { | |
582 | 1087 assert( 0.0 < float_desaturation_multiplier && float_desaturation_multiplier <= 1.0 ); |
1088 assert( 1.0 <= float_saturation_multiplier && float_saturation_multiplier <= 2.0 ); | |
0 | 1089 |
560 | 1090 if( temp_tissue < 0.0 ) temp_tissue *= float_desaturation_multiplier; |
1091 else temp_tissue *= float_saturation_multiplier; | |
0 | 1092 } |
1093 | |
560 | 1094 |
1095 | |
1096 ////////////////////////////////////////////////////////////////////////////// | |
1097 // Find current gas in the list (if any) and get its change depth | |
1098 // | |
1099 // Input: char_I_current_gas : 1..5 or 6 | |
1100 // | |
1101 // Output: sim_gas_last_used : 1..6 or 0 if it is the gas set as FIRST | |
1102 // sim_gas_last_depth : change depth in meters or 0 if it is the gas set as FIRST | |
1103 // | |
1104 static void gas_find_current(void) | |
1105 { | |
582 | 1106 assert( 1 <= char_I_current_gas && char_I_current_gas <= 6 ); |
1107 | |
1108 if( char_I_current_gas <= NUM_GAS ) // Gas 1-5 | |
1109 { | |
584 | 1110 sim_gas_last_used = sim_gas_first_used = char_I_current_gas; |
1111 sim_gas_last_depth = char_I_deco_gas_change[sim_gas_last_used-1]; // > 0 for OC deco gases, | |
1112 // > 0 for first & normal diluents, | |
1113 // = 0 else | |
582 | 1114 } |
1115 else | |
560 | 1116 { |
584 | 1117 sim_gas_last_used = sim_gas_first_used = 0; // Gas 6 (the manually set one) has number 0 here |
1118 sim_gas_last_depth = 0; // handle it as a travel/normal gas | |
560 | 1119 } |
1120 } | |
1121 | |
1122 | |
1123 ////////////////////////////////////////////////////////////////////////////// | |
1124 // Find the deco gas with the shallowest change depth beyond current depth | |
1125 // | |
582 | 1126 // INPUT sim_depth_limit : current depth in meters |
560 | 1127 // char_I_deco_gas_change[] : change depths of the deco gases |
582 | 1128 // sim_gas_last_depth : change depth of the currently used gas, 0 if on the gas set as FIRST |
560 | 1129 // |
1130 // OUTPUT sim_gas_last_depth : switch depth - only if return value is true | |
1131 // sim_gas_last_used : index of the gas (1..5) - only if return value is true | |
1132 // | |
1133 // RETURNS TRUE if a better gas is available | |
1134 // | |
1135 static unsigned char gas_find_better(void) | |
1136 { | |
1137 overlay unsigned char switch_depth = 255; | |
1138 overlay unsigned char switch_gas = 0; | |
1139 overlay unsigned char j; | |
582 | 1140 |
1141 | |
560 | 1142 // no automatic gas changes in CCR mode and - as of now - in pSCR mode |
1143 if( char_O_deco_status & DECO_MODE_LOOP ) return 0; | |
1144 | |
1145 // Loop over all deco gases to find the shallowest one below or at current depth. | |
1146 for(j=0; j<NUM_GAS; ++j) | |
1147 { | |
1148 // Is this the gas we are already breathing? | |
1149 // If yes, skip this gas. | |
1150 if( j+1 == sim_gas_last_used ) continue; | |
1151 | |
1152 // Is the change depth of the gas shallower than the current depth? | |
1153 // If yes, skip this gas as it is not to be used yet. | |
1154 // Remark: this check will also skip all disabled gases and the gas set | |
1155 // as 'first' because these have their change depth set to 0. | |
582 | 1156 if( sim_depth_limit > char_I_deco_gas_change[j] ) continue; |
560 | 1157 |
1158 // Is the change depth of the gas deeper than the change depth of the | |
1159 // gas we are currently one? | |
1160 // If yes, skip this gas as it is not better than the current one. | |
1161 // Remark: if there is more than one gas with the same change depth, | |
1162 // the last one from the list will be taken. | |
1163 if( sim_gas_last_depth && (char_I_deco_gas_change[j] > sim_gas_last_depth) ) continue; | |
1164 | |
1165 // Is the change depth of the gas shallower or equal to the change depth | |
1166 // of the best gas found so far, or is it the first better gas found? | |
1167 // If yes, we have a better gas | |
1168 if( char_I_deco_gas_change[j] <= switch_depth ) | |
1169 { | |
1170 switch_gas = j+1; // remember this gas (1..5) | |
1171 switch_depth = char_I_deco_gas_change[j]; // remember its change depth | |
1172 } | |
1173 } // continue looping through all gases to eventually find an even better gas | |
1174 | |
1175 // has a better gas been found? | |
1176 if( switch_gas ) | |
1177 { | |
1178 // yes | |
1179 sim_gas_last_used = switch_gas; // report the index of the better | |
1180 sim_gas_last_depth = switch_depth; // report its change depth | |
1181 | |
1182 assert( sim_gas_last_depth < switch_depth ); | |
582 | 1183 |
560 | 1184 return 1; // signal a better gas was found |
1185 } | |
1186 else | |
1187 { | |
1188 return 0; // signal no better gas was found | |
1189 } | |
0 | 1190 } |
1191 | |
1192 ////////////////////////////////////////////////////////////////////////////// | |
560 | 1193 // Set calc_N2/He/O2_ratios by sim_gas_last_used |
0 | 1194 // |
582 | 1195 // Input: sim_gas_last_used : index of gas to use |
1196 // N2_ratio, He_ratio : if gas = 0 (the manually set gas) | |
1197 // char_I_deco_O2/He_ratio[] : if gas = 1..5 (the configured gases) | |
0 | 1198 // |
582 | 1199 // Output: sim_N2_ratio, sim_He_ratio : ratios of the inert gases |
1200 // sim_pSCR_drop : ppO2 drop in pSCR loop | |
0 | 1201 // |
582 | 1202 static void gas_set_ratios(void) |
0 | 1203 { |
582 | 1204 overlay float sim_IG_ratio; |
1205 | |
560 | 1206 assert( 0 <= sim_gas_last_used <= NUM_GAS ); |
1207 | |
582 | 1208 |
1209 // get gas ratios | |
1210 if( sim_gas_last_used == 0 ) | |
560 | 1211 { |
582 | 1212 sim_O2_ratio = O2_ratio; |
1213 sim_He_ratio = He_ratio; | |
560 | 1214 } |
1215 else | |
1216 { | |
582 | 1217 sim_O2_ratio = 0.01 * char_I_deco_O2_ratio[sim_gas_last_used-1]; |
1218 sim_He_ratio = 0.01 * char_I_deco_He_ratio[sim_gas_last_used-1]; | |
560 | 1219 } |
1220 | |
582 | 1221 // inert gas ratio (local helper variable) |
1222 sim_IG_ratio = 1.00 - sim_O2_ratio; | |
1223 | |
1224 // N2 ratio | |
1225 sim_N2_ratio = sim_IG_ratio - sim_He_ratio; | |
1226 | |
1227 // ppO2 drop in pSCR loop | |
1228 sim_pSCR_drop = sim_IG_ratio * float_pSCR_factor; | |
1229 | |
1230 | |
1231 assert( 0.0 <= sim_N2_ratio && sim_N2_ratio <= 0.95 ); | |
1232 assert( 0.0 <= sim_He_ratio && sim_He_ratio <= 0.95 ); | |
1233 assert( (sim_N2_ratio + sim_He_ratio) <= 0.95 ); | |
0 | 1234 } |
1235 | |
1236 ////////////////////////////////////////////////////////////////////////////// | |
582 | 1237 // Compute respired ppN2 and ppHe |
0 | 1238 // |
582 | 1239 // Input: tissue_increment : selector for targeting simulated or real tissues |
1240 // char_O_main_status : breathing mode for real tissues | |
1241 // char_O_deco_status : breathing mode for simulated tissues | |
1242 // (sim_)O2_ratio : (simulated) O2 ratio breathed | |
1243 // (sim_)N2_ratio : (simulated) N2 ratio breathed | |
1244 // (sim_)He_ratio : (simulated) He ratio breathed | |
1245 // (sim_)pres_respiration : (simulated) respiration pressure | |
1246 // char_I_const_ppO2 : ppO2 reported from sensors or setpoint | |
1247 // char_I_PSCR_drop : pSCR parameter | |
1248 // char_I_PSCR_lungratio : pSCR parameter | |
1249 // pres_surface : surface pressure | |
1250 // float_deco_distance : safety factor | |
1251 // ppWater : water-vapor pressure inside respiratory tract | |
0 | 1252 // |
582 | 1253 // Output: ppN2 : respired N2 partial pressure |
1254 // ppHe : respired He partial pressure | |
584 | 1255 // char_ppO2 : breathed ppO2 in %, to be used for CNS calculation |
0 | 1256 // |
582 | 1257 void calc_alveolar_pressures(void) |
0 | 1258 { |
582 | 1259 overlay float pres_diluent; |
1260 overlay float calc_O2_ratio; | |
1261 overlay float calc_N2_ratio; | |
1262 overlay float calc_He_ratio; | |
1263 overlay float calc_pSCR_drop; | |
1264 | |
1265 overlay unsigned char status; | |
1266 | |
1267 | |
1268 assert( 0.00 <= N2_ratio && N2_ratio <= 1.00 ); | |
1269 assert( 0.00 <= He_ratio && He_ratio <= 1.00 ); | |
1270 assert( (N2_ratio + He_ratio) <= 1.00 ); | |
1271 assert( 0.800 < pres_respiration && pres_respiration < 14.0 ); | |
1272 | |
1273 assert( 0.00 <= sim_N2_ratio && N2_ratio <= 1.00 ); | |
1274 assert( 0.00 <= sim_He_ratio && He_ratio <= 1.00 ); | |
1275 assert( (sim_N2_ratio + sim_He_ratio) <= 1.00 ); | |
1276 assert( 0.800 < sim_pres_respiration && sim_pres_respiration < 14.0 ); | |
1277 | |
1278 | |
1279 // get input data according to context | |
1280 if( tissue_increment & TISSUE_FLAG ) | |
1281 { | |
1282 //---- real tissues ----------------------------------------------------------- | |
1283 status = char_O_main_status; | |
1284 pres_diluent = pres_respiration; | |
1285 calc_pSCR_drop = pSCR_drop; | |
1286 | |
1287 calc_O2_ratio = O2_ratio; | |
1288 calc_N2_ratio = N2_ratio; | |
1289 calc_He_ratio = He_ratio; | |
1290 } | |
1291 else | |
1292 { | |
1293 //---- simulated tissues ------------------------------------------------------ | |
1294 status = char_O_deco_status; | |
1295 pres_diluent = sim_pres_respiration; | |
1296 calc_pSCR_drop = sim_pSCR_drop; | |
1297 | |
1298 calc_O2_ratio = sim_O2_ratio; | |
1299 calc_N2_ratio = sim_N2_ratio; | |
1300 calc_He_ratio = sim_He_ratio; | |
1301 | |
1302 // take deco offset into account, but not at surface | |
1303 if( pres_diluent > pres_surface ) pres_diluent += float_deco_distance; | |
1304 } | |
1305 | |
1306 //---- OC, CCR and Bailout Mode Gas Calculations ----------------------------------- | |
1307 | |
1308 // calculate ppO2 of pure oxygen | |
1309 O2_ppO2 = (pres_diluent - ppWater); | |
1310 | |
1311 // capture failure condition in case pres_respiration is < ppWater (should never happen...) | |
1312 if( O2_ppO2 < 0.0 ) O2_ppO2 = 0.0; | |
1313 | |
1314 // calculate ppO2 of the pure gas (diluent) | |
1315 OC_ppO2 = O2_ppO2 * calc_O2_ratio; | |
1316 | |
1317 // calculate pSCR ppO2 | |
1318 pSCR_ppO2 = OC_ppO2 - calc_pSCR_drop; | |
1319 | |
1320 // capture failure condition in case pSCR_ppO2 becomes negative | |
1321 if( pSCR_ppO2 < 0.0 ) pSCR_ppO2 = 0.0; | |
1322 | |
1323 | |
1324 //---- Loop modes : adjust ppN2 and ppHe for change in ppO2 due to setpoint (CCR) or drop (pSCR) --- | |
1325 if( status & DECO_MODE_LOOP ) | |
1326 { | |
1327 overlay float const_ppO2; | |
1328 | |
1329 // get the current sensor reading (CCR / pSCR if fitted) or the fixed setpoint (CCR) / a zero (pSCR) | |
1330 const_ppO2 = 0.01 * char_I_const_ppO2; | |
1331 | |
1332 // Limit the setpoint to the maximum physically possible ppO2. This prevents for | |
1333 // example calculating with a setpoint of 1.3 bar in only 2 meters of depth. | |
1334 // Additionally, if limiting occurs, the ppO2 can be further reduced to account | |
1335 // for residual inert gases by the user-adjustable setting char_I_cc_max_frac_o2. | |
1336 | |
1337 if( const_ppO2 > pres_diluent ) // no ppWater subtracted here to give some margin for | |
1338 { // sensors delivering data a little bit over target | |
1339 const_ppO2 = 0.01 * char_I_cc_max_frac_o2 * (pres_diluent - ppWater); | |
1340 } | |
1341 | |
1342 // check which kind of loop we are on | |
1343 if( status & DECO_MODE_PSCR ) | |
560 | 1344 { |
582 | 1345 //---- pSCR Mode -------------------------------------------------------------------------- |
1346 | |
1347 // Use the sensor value if available, but only in real tissue context! | |
1348 // In all other cases use calculated ppO2. | |
1349 if( char_I_const_ppO2 && (tissue_increment & TISSUE_FLAG)) ppO2 = const_ppO2; | |
1350 else ppO2 = pSCR_ppO2; | |
1351 } | |
560 | 1352 else |
1353 { | |
582 | 1354 //---- CCR Mode --------------------------------------------------------------------------- |
1355 | |
1356 // derive breathed ppO2 from (char_I_)const_ppO2, | |
1357 // which holds sensor reading or fixed setpoint | |
1358 ppO2 = const_ppO2; | |
560 | 1359 } |
1360 | |
582 | 1361 // adjust diluent pressure (ppN2 + ppHe) for change |
1362 // in ppO2 due to setpoint (CCR) or drop (pSCR) | |
1363 pres_diluent -= const_ppO2; | |
1364 pres_diluent /= calc_N2_ratio + calc_He_ratio; | |
1365 | |
1366 // capture all failure conditions, including div/0 | |
1367 // in case diluent is pure O2 | |
1368 if( (pres_diluent < 0.0) || (calc_O2_ratio > 99.5) ) | |
560 | 1369 { |
582 | 1370 pres_diluent = 0.0; |
1371 ppO2 = OC_ppO2; | |
560 | 1372 } |
582 | 1373 } |
1374 else | |
1375 { //---- OC mode --------------------------------------------------------------------------------- | |
1376 | |
1377 // breathed ppO2 is ppO2 of pure gas | |
1378 ppO2 = OC_ppO2; | |
560 | 1379 } |
1380 | |
582 | 1381 |
1382 // derive char_ppO2 in [cbar], used for calculating CNS% | |
1383 if ( ppO2 < 0.01 ) char_ppO2 = 0; | |
1384 else if ( ppO2 >= 2.545 ) char_ppO2 = 255; | |
1385 else char_ppO2 = (unsigned char)(100 * ppO2 + 0.5); | |
1386 | |
1387 | |
1388 //---- calculate ppN2 and ppHe --------------------------------------------------------------------- | |
1389 | |
1390 if( pres_diluent > ppWater ) | |
1391 { | |
1392 ppN2 = calc_N2_ratio * (pres_diluent - ppWater); | |
1393 ppHe = calc_He_ratio * (pres_diluent - ppWater); | |
1394 } | |
1395 else | |
1396 { | |
1397 ppN2 = 0.0; | |
1398 ppHe = 0.0; | |
1399 } | |
0 | 1400 } |
1401 | |
1402 ////////////////////////////////////////////////////////////////////////////// | |
1403 // clear_tissue | |
1404 // | |
1405 // optimized in v.101 (var_N2_a) | |
1406 // | |
1407 // preload tissues with standard pressure for the given ambient pressure. | |
1408 // | |
1409 static void clear_tissue(void) | |
1410 { | |
560 | 1411 pres_respiration = 0.001 * int_I_pres_respiration; |
1412 N2_equilibrium = 0.7902 * (pres_respiration - ppWater); | |
582 | 1413 |
1414 for(ci=0; ci<NUM_COMP; ci++) | |
1415 { | |
1416 // cycle through the 16 Buhlmann N2 tissues | |
1417 pres_tissue_N2[ci] = N2_equilibrium; // initialize data for "real" tissue | |
560 | 1418 char_O_tissue_N2_saturation[ci] = 11; // initialize data for tissue graphics |
582 | 1419 |
1420 // cycle through the 16 Buhlmann He tissues | |
1421 pres_tissue_He[ci] = 0.0; // initialize data for "real" tissue | |
560 | 1422 char_O_tissue_He_saturation[ci] = 0; // initialize data for tissue graphics |
582 | 1423 } |
1424 | |
1425 // reset CNS values | |
1426 CNS_fraction = 0.0; | |
1427 int_O_CNS_fraction = int_O_normal_CNS_fraction = int_O_alternate_CNS_fraction = 0; | |
1428 | |
1429 | |
1430 // reset any warnings | |
1431 char_O_deco_warnings = 0; | |
1432 | |
1433 // reset some more vars to their defaults | |
1434 char_O_nullzeit = 240; | |
1435 int_O_ascenttime = 0; | |
1436 int_O_alternate_ascenttime = 0; | |
1437 int_O_gradient_factor = 0; | |
0 | 1438 } |
1439 | |
582 | 1440 |
0 | 1441 ////////////////////////////////////////////////////////////////////////////// |
1442 // calc_hauptroutine | |
1443 // | |
1444 // this is the major code in dive mode calculates: | |
582 | 1445 // the tissues, |
1446 // the bottom time, | |
1447 // and simulates the ascend with all deco stops. | |
0 | 1448 // |
1449 static void calc_hauptroutine(void) | |
1450 { | |
582 | 1451 overlay unsigned int int_ppO2_min; |
1452 overlay unsigned int int_ppO2_max; | |
1453 overlay unsigned int int_ppO2_max_dil; | |
584 | 1454 overlay float EAD; |
1455 overlay float END; | |
1456 | |
1457 | |
1458 //--- Set-up Part -------------------------------------------------------------------------------- | |
582 | 1459 |
560 | 1460 // twosectimer: |
1461 // calc_hauptroutine is now invoked every second to speed up the deco planning. | |
584 | 1462 // Because the tissue and CNS calculations are based on a two seconds period, a |
1463 // toggle-timer is used by the respective routines to skip every 2nd invocation. | |
560 | 1464 twosectimer = (twosectimer) ? 0 : 1; // toggle the toggle-timer |
582 | 1465 |
560 | 1466 |
1467 // set up normal tissue updating or "fast forward" updating for simulator sim+5' function | |
1468 // and deco calculator bottom time calculation | |
1469 if( char_I_sim_advance_time > 0 ) | |
1470 { | |
1471 // configure char_I_sim_advance_time minutes of tissue updating | |
1472 tissue_increment = char_I_sim_advance_time // given number of minutes, limited to 127 | |
582 | 1473 | TISSUE_FLAG; // set flag for updating the "real" tissues & CNS |
560 | 1474 |
1475 char_I_sim_advance_time = 0; // clear "mailbox" | |
1476 } | |
1477 else | |
1478 { | |
1479 // configure 2 seconds of tissue updating | |
1480 tissue_increment = 0 // encoding for 2 seconds update | |
582 | 1481 | TISSUE_FLAG; // set flag for updating the "real" tissues & CNS |
560 | 1482 } |
1483 | |
582 | 1484 |
584 | 1485 //---- Calculations Part ---------------------------------------------------------------------- |
582 | 1486 |
1487 // acquire current environment data | |
1488 calc_hauptroutine_data_input(); | |
1489 | |
584 | 1490 // calculate ppN2 and ppHe |
1491 calc_alveolar_pressures(); | |
1492 | |
1493 // All deco code is invoked every second. But as the tissue and CNS updates are based | |
1494 // on 2 seconds periods, each update is done only on each 2nd second. | |
1495 // In case a "fast forward" of the tissues is commanded, the 2-seconds rule is over raided. | |
1496 // To distribute computational load, updating of tissues and CNS is done in alternation. | |
1497 if( twosectimer || (tissue_increment & TIME_MASK) ) | |
1498 { | |
1499 // calculate the real tissues | |
1500 calc_tissues(); | |
1501 | |
1502 // calculate ceiling (at GF_high) and current GF | |
1503 calc_limit(GF_high); | |
1504 } | |
1505 | |
1506 if( !twosectimer || (tissue_increment & TIME_MASK) ) | |
1507 { | |
1508 // calculate CNS value increment for the real tissues | |
1509 calc_CNS_increment(); | |
1510 | |
1511 // increment CNS value of the real tissues | |
1512 CNS_fraction += CNS_fraction_inc; | |
1513 | |
1514 // compute integer copy of CNS value for display purpose | |
1515 convert_CNS_for_display(); | |
1516 } | |
1517 | |
1518 | |
1519 //---- Calculate and Export EAD and END ------------------------------------------------------ | |
1520 | |
1521 // calculate EAD (Equivalent Air Depth): equivalent depth for the same N2 level with plain air | |
1522 EAD = (ppN2 / 0.7902 + ppWater - pres_surface) * BAR_TO_METER; | |
1523 | |
1524 // calculate END (Equivalent Narcotic Depth): here O2 is treated as narcotic, too | |
1525 // Source cited: The Physiology and Medicine of Diving by Peter Bennett and David Elliott, | |
1526 // 4th edition, 1993, W.B.Saunders Company Ltd, London. | |
1527 END = (pres_respiration - ppHe - pres_surface) * BAR_TO_METER; | |
1528 | |
1529 // export EAD | |
1530 if( (EAD < 0.0) || (EAD > 245.5) ) char_O_EAD = 0; | |
1531 else char_O_EAD = (unsigned char)(EAD + 0.5); | |
1532 | |
1533 // export END | |
1534 if( (END < 0.0) || (END > 245.5) ) char_O_END = 0; | |
1535 else char_O_END = (unsigned char)(END + 0.5); | |
1536 | |
1537 | |
1538 //---- Compute ppO2 Values in [cbar] --------------------------------------------------------- | |
1539 | |
1540 // pure oxygen ppO2 | |
1541 if ( O2_ppO2 < 0.01 ) int_O_O2_ppO2 = 0; | |
1542 else if ( O2_ppO2 >= 9.995 ) int_O_O2_ppO2 = 999; | |
1543 else int_O_O2_ppO2 = (unsigned int)(100 * O2_ppO2 + 0.5); | |
1544 | |
1545 // pure gas ppO2 | |
1546 if ( OC_ppO2 < 0.01 ) int_O_pure_ppO2 = 0; | |
1547 else if ( OC_ppO2 >= 9.995 ) int_O_pure_ppO2 = 999; | |
1548 else int_O_pure_ppO2 = (unsigned int)(100 * OC_ppO2 + 0.5); | |
1549 | |
1550 // calculated pSCR ppO2 | |
1551 if ( pSCR_ppO2 < 0.01 ) int_O_pSCR_ppO2 = 0; | |
1552 else if ( pSCR_ppO2 >= 9.995 ) int_O_pSCR_ppO2 = 999; | |
1553 else int_O_pSCR_ppO2 = (unsigned int)(100 * pSCR_ppO2 + 0.5); | |
1554 | |
1555 // breathed ppO2 | |
1556 if ( ppO2 < 0.01 ) int_O_breathed_ppO2 = 0; | |
1557 else if ( ppO2 >= 9.995 ) int_O_breathed_ppO2 = 999; | |
1558 else int_O_breathed_ppO2 = (unsigned int)(100 * ppO2 + 0.5); | |
1559 | |
1560 | |
1561 //---- Compute ppO2 Warnings ------------------------------------------------------------------ | |
582 | 1562 |
560 | 1563 // compute conditional min/max values |
1564 int_ppO2_min = (char_O_main_status & DECO_MODE_LOOP) ? (unsigned int)char_I_ppO2_min_loop : (unsigned int)char_I_ppO2_min; | |
1565 int_ppO2_max = (char_O_deco_warnings & DECO_FLAG ) ? (unsigned int)char_I_ppO2_max_deco : (unsigned int)char_I_ppO2_max; | |
1566 | |
582 | 1567 // default value for the upper diluent ppO2 warning threshold is the normal upper warning threshold |
1568 int_ppO2_max_dil = int_ppO2_max; | |
1569 | |
1570 // when in CCR mode, the upper diluent warning threshold gets adjust according to the current setpoint | |
1571 if( (char_O_main_status & DECO_MODE_MASK) == DECO_MODE_CCR ) | |
1572 { | |
1573 overlay unsigned int max_dil; | |
1574 | |
1575 // The upper diluent ppO2 threshold is ppO2_GAP_TO_SETPOINT below the setpoint... | |
1576 // (the condition protects from negative numbers which would cause a wrap-around) | |
1577 max_dil = (char_I_const_ppO2 > ppO2_GAP_TO_SETPOINT) ? (unsigned int)(char_I_const_ppO2 - ppO2_GAP_TO_SETPOINT) : 0; | |
1578 | |
1579 // ...but never above int_ppO2_max. | |
1580 if( max_dil < int_ppO2_max ) int_ppO2_max_dil = max_dil; | |
1581 | |
1582 // We do not need to guard int_ppO2_max_dil against becoming lower than char_I_ppO2_min because the check | |
1583 // against char_I_ppO2_min is done first and will then raise a low warning and inhibit further checks. | |
1584 } | |
1585 | |
560 | 1586 // check for safe range of pure oxygen |
582 | 1587 if ( int_O_O2_ppO2 >= int_ppO2_max ) int_O_O2_ppO2 |= INT_FLAG_WARNING + INT_FLAG_HIGH; |
560 | 1588 |
1589 // check for safe range of breathed gas | |
582 | 1590 if ( int_O_breathed_ppO2 <= int_ppO2_min ) int_O_breathed_ppO2 |= INT_FLAG_WARNING + INT_FLAG_LOW; |
1591 else if ( int_O_breathed_ppO2 >= int_ppO2_max ) int_O_breathed_ppO2 |= INT_FLAG_WARNING + INT_FLAG_HIGH; | |
1592 else if ( char_O_main_status & DECO_MODE_LOOP ) ; // no attention generated in loop modes | |
1593 else if ( int_O_breathed_ppO2 >= ppO2_ATTENTION_THRESHOLD ) int_O_breathed_ppO2 |= INT_FLAG_ATTENTION; | |
1594 | |
560 | 1595 // check for safe range of pure diluent |
582 | 1596 if ( int_O_pure_ppO2 <= (unsigned int)char_I_ppO2_min ) int_O_pure_ppO2 |= INT_FLAG_WARNING + INT_FLAG_LOW; |
1597 else if ( int_O_pure_ppO2 >= int_ppO2_max ) int_O_pure_ppO2 |= INT_FLAG_WARNING + INT_FLAG_HIGH; | |
1598 else if ( int_O_pure_ppO2 >= int_ppO2_max_dil ) int_O_pure_ppO2 |= INT_FLAG_ATTENTION; | |
1599 | |
560 | 1600 // check for safe range of calculated pSCR loop gas |
582 | 1601 if ( int_O_pSCR_ppO2 <= int_ppO2_min ) int_O_pSCR_ppO2 |= INT_FLAG_WARNING + INT_FLAG_LOW; |
1602 else if ( int_O_pSCR_ppO2 >= int_ppO2_max ) int_O_pSCR_ppO2 |= INT_FLAG_WARNING + INT_FLAG_HIGH; | |
1603 | |
1604 | |
584 | 1605 // done with the real tissues |
1606 | |
1607 | |
1608 | |
1609 //---- Toggle between Calculation for NDL (bottom time), ------------------------------------- | |
1610 //---- Deco Stops, more Deco Stops and Results Gathering ------------------------------------- | |
1611 | |
1612 | |
1613 // all following operations target the simulated tissues, so clear flag in bit 7 | |
582 | 1614 tissue_increment = 0; |
1615 | |
1616 // branch to the code for the current phase the deco calculations are in | |
560 | 1617 switch( char_O_deco_status & DECO_STATUS_MASK ) |
582 | 1618 { |
560 | 1619 overlay unsigned char i; |
1620 | |
582 | 1621 case DECO_STATUS_INIT: //---- At surface: Start a new dive --------------------- |
1622 | |
1623 // clear the internal stops table from remains lasting from the last dive | |
560 | 1624 clear_deco_table(); |
582 | 1625 |
1626 // publish the cleared stops table to the display functions | |
1627 publish_deco_table(); | |
1628 | |
1629 // clear the gas needs table | |
560 | 1630 for(i=0; i<NUM_GAS; ++i) |
1631 { | |
1632 int_O_gas_volumes[i] = 0; | |
582 | 1633 int_O_tank_pres_need[i] = 0 + INT_FLAG_ZERO; |
560 | 1634 } |
1635 | |
582 | 1636 // initialize the balancing between N2 and He for later no-fly time calculation |
560 | 1637 for(i=0; i<NUM_COMP; ++i) |
582 | 1638 { |
1639 split_N2_He[i] = 90; // assumes 90% of total tissue pressure will be needed for N2 | |
560 | 1640 } |
1641 | |
582 | 1642 // ** UNDER CONSTRUCTION - temporary code only ** |
1643 char_I_gas_change_time = 1; // TODO: validate proper operation before enabling this options-table parameter | |
1644 char_I_ascent_speed = 10; // TODO: validate proper operation before enabling this options-table parameter, | |
1645 // caution: values < 10 may have an impact on the deco calculation run-times! | |
1646 | |
1647 // initialize values that are constant during the course of the dive | |
1648 float_ascent_speed = 1.00 * char_I_ascent_speed; | |
1649 float_desaturation_multiplier = 0.01 * char_I_desaturation_multiplier; | |
1650 float_saturation_multiplier = 0.01 * char_I_saturation_multiplier; | |
1651 float_deco_distance = 0.01 * char_I_deco_distance; | |
1652 | |
1653 // initialize values that will be recalculated later on periodically | |
1654 char_O_nullzeit = 0; // reset NDL time for the normal plan | |
1655 char_O_alternate_nullzeit = 0; // reset NDL time for the alternative plan | |
1656 int_O_ascenttime = 0; // reset ascent time for the normal plan | |
1657 int_O_alternate_ascenttime = 0; // reset ascent time for the alternative plan | |
1658 char_O_deco_warnings = 0; // reset all deco warnings | |
1659 deco_tissue_vector = 0; // reset tissue deco vector | |
1660 IBCD_tissue_vector = 0; // reset tissue IBCD vector | |
1661 NDL_lead_tissue = 0; // reset first tissue to look at during NDL calculation | |
1662 | |
1663 // tag desaturation time as invalid (it will not be computed during a dive) | |
1664 int_O_desaturation_time = 65535; | |
1665 | |
1666 // initialize CNS values | |
1667 int_O_normal_CNS_fraction = int_O_alternate_CNS_fraction = int_O_CNS_fraction; | |
1668 | |
1669 // Values that should be reset just once for the full real dive. | |
1670 // This is used to record the lowest stop for the whole dive, | |
1671 // including ACCROSS all simulated ascents. | |
1672 low_depth_norm = low_depth_alt = 0.0; | |
1673 locked_GF_step_norm = locked_GF_step_alt = 0.0; | |
1674 | |
1675 // | |
1676 // --> code execution continues in state DECO_STATUS_START | |
1677 // | |
1678 | |
1679 case DECO_STATUS_START: //---- Bottom Time & initial Ascent -------------------- | |
1680 default: | |
560 | 1681 |
1682 // clear the internal(!) stops table | |
582 | 1683 clear_deco_table(); |
560 | 1684 |
1685 // initialize the simulated tissues with the current state of the real tissues | |
582 | 1686 for(i=0; i<NUM_COMP; i++) |
560 | 1687 { |
582 | 1688 sim_pres_tissue_N2[i] = pres_tissue_N2[i]; |
1689 sim_pres_tissue_He[i] = pres_tissue_He[i]; | |
1690 } | |
1691 | |
1692 // Lookup the current gas and store it also as the first gas used. | |
1693 // This gas will be used for the bottom segment of the dive and for | |
1694 // the period of delayed ascent when calculating fTTS or bailout. | |
1695 gas_find_current(); | |
1696 | |
1697 // setup the calculation ratio's for N2, He and O2 (sim_N2/He/O2_ratio) | |
1698 gas_set_ratios(); | |
1699 | |
1700 // initialize depth in absolute pressure, it is needed by | |
1701 // - calc_alveolar_pressures(), | |
1702 // - calc_ascent_to_first_stop(), and | |
1703 // - calc_hauptroutine_calc_deco() | |
1704 sim_pres_respiration = pres_respiration; | |
1705 | |
1706 // calculate ppN2 and ppHe from sim_N2/He_ratio (<- tissue_increment has been set to 0) | |
1707 calc_alveolar_pressures(); | |
1708 | |
1709 // calculate the effect of extended bottom time due to delayed ascent | |
1710 if( char_O_deco_status & DECO_ASCENT_DELAYED ) | |
1711 { | |
1712 // program interval on simulated tissues (flag bit 7 = 0) | |
1713 tissue_increment = char_I_extra_time; | |
1714 | |
1715 // update the tissues | |
1716 calc_tissues(); | |
1717 } | |
1718 | |
1719 // calculate if we are within no decompression limit (NDL) | |
1720 calc_NDL_time(); | |
1721 | |
1722 // Calculate the initial ascent if in deco. calc_NDL_time() is very fast | |
1723 // in detecting being beyond NDL, so there is enough time left in this | |
1724 // phase to do the initial ascent calculation. | |
1725 if( NDL_time == 0 ) | |
1726 { | |
1727 //--- in deco -------------------------------------------------------- | |
1728 | |
1729 // calculate ascent to first stop | |
1730 calc_ascent_to_first_stop(); | |
1731 | |
1732 // continue with calculating the stops | |
1733 char_O_deco_status &= ~DECO_STATUS_MASK; // clear status bits and set status bits for | |
1734 char_O_deco_status |= DECO_STATUS_STOPS; // calculation of stops on next invocation | |
560 | 1735 } |
1736 else | |
1737 { | |
582 | 1738 //--- within NDL ----------------------------------------------------- |
1739 | |
1740 // continue with gathering all results | |
1741 char_O_deco_status &= ~DECO_STATUS_MASK; | |
1742 char_O_deco_status |= DECO_STATUS_RESULTS; | |
1743 } | |
1744 | |
1745 break; | |
1746 | |
1747 | |
1748 case DECO_STATUS_STOPS: //---- Calculate Stops --------------------------------- | |
1749 | |
1750 // calculate the stops | |
1751 calc_hauptroutine_calc_deco(); | |
1752 | |
1753 // calc_hauptroutine_calc_deco iterates in this phase as long as it is | |
1754 // calculating the stops. Once done, it will set the status to doing the | |
1755 // results gathering. | |
1756 | |
1757 break; | |
1758 | |
1759 | |
1760 case DECO_STATUS_RESULTS: //--- Gathering of all Results ----------------------- | |
1761 | |
1762 // if in normal plan, publish the stops table to the display functions | |
1763 if( !(char_O_deco_status & DECO_PLAN_ALTERNATE) ) publish_deco_table(); | |
1764 | |
1765 // The current depth is needed by calc_CNS_planning() and gas_volumes(). | |
1766 // As it may be needed in different code blocks below but we don't want | |
1767 // it to be in the code multiple times, it's done here on stockpile. | |
1768 bottom_depth = (unsigned char)((pres_respiration - pres_surface) * BAR_TO_METER); | |
1769 | |
1770 // Calculate the ascent time. | |
1771 // When within NDL, potential gas switches will be treated as done "on the fly". | |
1772 calc_ascenttime(); | |
1773 | |
1774 // results to publish depend whether within NDL or in deco | |
1775 if( NDL_time ) | |
1776 { | |
1777 //---- within NDL ---------------------------------------------- | |
1778 | |
1779 // Calculate the initial ascent (not yet done when within NDL) - | |
1780 // just to get potential gas switches into the stops table for use | |
1781 // by gas_volumes(). The stops table can be polluted by now because | |
1782 // the clean table has already been published to the display | |
1783 // functions before. | |
1784 calc_ascent_to_first_stop(); | |
1785 | |
1786 // check which plan we are on | |
1787 if( char_O_deco_status & DECO_PLAN_ALTERNATE ) | |
560 | 1788 { |
582 | 1789 //---- alternate dive plan --------------------------------- |
1790 | |
1791 // As we are in no stop, CNS at end of dive is more or less | |
1792 // the same CNS as we have right now. It's so simple that we | |
1793 // don't check if it requested to be computed or not... | |
1794 int_O_alternate_CNS_fraction = int_O_CNS_fraction; | |
1795 | |
1796 // output NDL time | |
1797 char_O_alternate_nullzeit = NDL_time; | |
1798 | |
1799 // clear ascent time | |
1800 int_O_alternate_ascenttime = 0; | |
560 | 1801 } |
1802 else | |
1803 { | |
582 | 1804 //---- normal dive plan ------------------------------------ |
1805 | |
1806 // As we are in no stop, CNS at end of dive is more or less | |
1807 // the same CNS as we have right now. It's so simple that we | |
1808 // don't check if it requested to be computed or not... | |
1809 int_O_normal_CNS_fraction = int_O_CNS_fraction; | |
1810 | |
1811 // output NDL time | |
1812 char_O_nullzeit = NDL_time; | |
1813 | |
1814 // clear ascent time | |
1815 int_O_ascenttime = 0; | |
560 | 1816 } |
582 | 1817 } // NDL |
1818 else | |
1819 { | |
1820 //---- in DECO ------------------------------------------------- | |
1821 | |
1822 // check which plan we are on | |
1823 if( char_O_deco_status & DECO_PLAN_ALTERNATE ) | |
560 | 1824 { |
1825 //---- alternative plan ---------------------------------------------------- | |
1826 | |
582 | 1827 // shall the CNS at the end of the dive be calculated? |
560 | 1828 if( char_O_deco_status & DECO_CNS_CALCULATE ) |
1829 { | |
582 | 1830 // calculate the CNS for the predicted ascent, result in sim_CNS_fraction |
1831 calc_CNS_planning(); | |
1832 | |
1833 // add current CNS value | |
1834 sim_CNS_fraction += CNS_fraction; | |
1835 | |
1836 // convert to integer value | |
1837 convert_sim_CNS_for_display(); | |
1838 | |
1839 // export result | |
1840 int_O_alternate_CNS_fraction = int_sim_CNS_fraction; | |
560 | 1841 } |
582 | 1842 |
1843 // clear NDL time | |
1844 char_O_alternate_nullzeit = 0; | |
1845 | |
1846 // output ascent time | |
1847 int_O_alternate_ascenttime = ascent_time; | |
1848 | |
1849 } // alternative plan | |
560 | 1850 else |
1851 { | |
1852 //---- normal plan --------------------------------------------------------- | |
1853 | |
582 | 1854 // shall the CNS at the end of the dive be calculated? |
560 | 1855 if( char_O_deco_status & DECO_CNS_CALCULATE ) |
1856 { | |
582 | 1857 // calculate the CNS for the predicted ascent, result in sim_CNS_fraction |
1858 calc_CNS_planning(); | |
1859 | |
1860 // add current CNS value | |
1861 sim_CNS_fraction += CNS_fraction; | |
1862 | |
1863 // convert to integer value | |
1864 convert_sim_CNS_for_display(); | |
1865 | |
1866 // export result | |
1867 int_O_normal_CNS_fraction = int_sim_CNS_fraction; | |
560 | 1868 } |
582 | 1869 |
1870 // clear NDL time | |
1871 char_O_nullzeit = 0; | |
1872 | |
1873 // output ascent time | |
1874 int_O_ascenttime = ascent_time; | |
1875 | |
1876 } // normal plan | |
1877 } // DECO | |
1878 | |
1879 // if requested, calculate the required gas volumes and tank pressures at the end of the dive | |
1880 if( char_O_deco_status & DECO_VOLUME_CALCULATE ) gas_volumes(); | |
1881 | |
1882 // signal that the computation cycle is finished | |
1883 char_O_deco_status &= ~DECO_STATUS_MASK; | |
1884 | |
1885 break; | |
1886 | |
1887 } // switch | |
0 | 1888 } |
1889 | |
1890 ////////////////////////////////////////////////////////////////////////////// | |
1891 // calc_hauptroutine_data_input | |
1892 // | |
582 | 1893 // Set all C-code dive parameters from their ASM-code values. |
0 | 1894 // Detect gas change condition. |
1895 // | |
1896 void calc_hauptroutine_data_input(void) | |
1897 { | |
582 | 1898 overlay float IG_ratio; |
1899 | |
560 | 1900 // get the current pressures |
582 | 1901 pres_surface = 0.001 * int_I_pres_surface; |
1902 pres_respiration = 0.001 * int_I_pres_respiration; | |
1903 | |
1904 // N2 tissue pressure at surface equilibrium, used for tissue graphics scaling | |
1905 N2_equilibrium = 0.7902 * (pres_surface - ppWater); | |
1906 | |
1907 // read the GF settings (they may have been switch between GF/aGF) | |
1908 GF_high = 0.01 * char_I_GF_High_percentage; | |
1909 GF_low = 0.01 * char_I_GF_Low_percentage; | |
1910 GF_delta = GF_high - GF_low; | |
560 | 1911 |
1912 // get the currently breathed gas mixture | |
582 | 1913 O2_ratio = 0.01 * char_I_O2_ratio; |
1914 He_ratio = 0.01 * char_I_He_ratio; | |
1915 | |
1916 // inert gas ratio (local helper variable) | |
1917 IG_ratio = 1.00 - O2_ratio; | |
1918 | |
1919 // N2 ratio | |
1920 N2_ratio = IG_ratio - He_ratio; | |
1921 | |
1922 // precomputed values for ppO2 drop in pSCR loop | |
1923 float_pSCR_factor = 0.01 * char_I_PSCR_drop * char_I_PSCR_lungratio; | |
1924 pSCR_drop = IG_ratio * float_pSCR_factor; | |
0 | 1925 } |
1926 | |
1927 | |
1928 ////////////////////////////////////////////////////////////////////////////// | |
1929 // Compute stops. | |
1930 // | |
1931 // Note: because this can be very long, break on 16 iterations, and set state | |
560 | 1932 // to DECO_STATUS_FINISHED when finished, or to DECO_STATUS_STOPS when |
1933 // needing to continue. | |
0 | 1934 // Note: because each iteration might be very long too (~ 66 ms in 1.84beta), |
560 | 1935 // break the loop when elapsed time exceeds 512 milliseconds. |
0 | 1936 // |
1937 void calc_hauptroutine_calc_deco(void) | |
1938 { | |
560 | 1939 overlay unsigned char loop; |
1940 | |
582 | 1941 |
560 | 1942 for(loop = 0; loop < 16; ++loop) |
1943 { | |
1944 // limit loops to 512ms, using timer 5 | |
1945 if( tmr5() & (512*32) ) break; | |
1946 | |
1947 // calc_nextdecodepth() | |
1948 // | |
582 | 1949 // INPUT sim_pres_respiration : current depth in absolute pressure |
1950 // OUTPUT sim_depth_limit : depth of next stop in meters | |
560 | 1951 // RETURN true if a stop is needed |
1952 // | |
1953 // The function manages gas changes by itself, including priming | |
1954 // the deco stop with the configured gas change time. | |
1955 // | |
1956 if( calc_nextdecodepth() ) | |
1957 { | |
582 | 1958 if( sim_depth_limit == 0 ) goto Surface; // this check should not bee needed as in |
560 | 1959 // this case the RETURN value will be false |
1960 | |
582 | 1961 //---- stop required at sim_depth_limit ------------------------------------- |
560 | 1962 |
1963 // convert stop depth in meters to absolute pressure | |
582 | 1964 sim_pres_respiration = sim_depth_limit * METER_TO_BAR + pres_surface; |
560 | 1965 |
1966 // add one minute to the current stop, or add a new stop, | |
1967 // or abort deco calculation if the deco table is full. | |
1968 if( !update_deco_table(1) ) goto Surface; | |
1969 } | |
1970 else | |
1971 { | |
1972 //---- no stop required -------------------------------------- | |
582 | 1973 |
560 | 1974 // ascend by float_ascent_speed for 1 minute |
582 | 1975 sim_pres_respiration -= float_ascent_speed * METER_TO_BAR; |
560 | 1976 |
1977 // finish deco calculation if surface is reached | |
582 | 1978 if( sim_pres_respiration <= pres_surface ) |
560 | 1979 { |
0 | 1980 Surface: |
582 | 1981 // continue with gathering all results in the next calculation phase |
560 | 1982 char_O_deco_status &= ~DECO_STATUS_MASK; |
582 | 1983 char_O_deco_status |= DECO_STATUS_RESULTS; |
1984 | |
560 | 1985 return; |
1986 } | |
1987 } | |
1988 | |
1989 | |
1990 //---- as one minute as passed now, update the tissues ---------------------- | |
1991 | |
1992 // program 1 minute interval on simulated tissues (Flagbit 7 = 0) | |
1993 tissue_increment = 1; | |
582 | 1994 |
560 | 1995 // compute current ppN2 and ppHe |
582 | 1996 calc_alveolar_pressures(); |
1997 | |
560 | 1998 // update the tissues |
582 | 1999 calc_tissues(); |
560 | 2000 } |
0 | 2001 } |
2002 | |
2003 | |
2004 ////////////////////////////////////////////////////////////////////////////// | |
582 | 2005 // Calculate ascent to first deco stop. |
0 | 2006 // |
2007 // | |
582 | 2008 // Modified: sim_pres_respiration : current depth in ascent and deco simulation, in bar absolute pressure |
0 | 2009 // |
582 | 2010 void calc_ascent_to_first_stop(void) |
0 | 2011 { |
560 | 2012 overlay unsigned char fast = 1; // 1 = 1 minute steps, 0 = 2 seconds steps |
2013 overlay unsigned char gaschange = 0; // 1 = do a gas change, 0 = no better gas available | |
582 | 2014 |
2015 | |
560 | 2016 //---- Loop until first deco stop or surface is reached ---------- |
2017 for(;;) | |
2018 { | |
2019 // depth in absolute pressure we came from | |
582 | 2020 overlay float old_deco = sim_pres_respiration; |
2021 | |
560 | 2022 // try ascending 1 full minute (fast) or 2 seconds (!fast) |
582 | 2023 if ( fast ) sim_pres_respiration -= float_ascent_speed * METER_TO_BAR; // 1 min at float_ascent_speed ( 5 .. 10 m/min) |
2024 else sim_pres_respiration -= (float_ascent_speed/30.0) * METER_TO_BAR; // 2 sec at float_ascent_speed (17 .. 33 cm/min) | |
560 | 2025 |
2026 // but don't go over surface | |
582 | 2027 if( sim_pres_respiration < pres_surface ) sim_pres_respiration = pres_surface; |
2028 | |
2029 // compute current ceiling of the simulated tissues | |
2030 if ( char_I_deco_model != 0 ) calc_limit(GF_low); | |
2031 else calc_limit(1.0); | |
560 | 2032 |
2033 // did we overshoot the first deco stop? | |
582 | 2034 if( sim_pres_respiration < (sim_ceiling + pres_surface) ) |
560 | 2035 { |
2036 // YES - back to last depth below first stop | |
582 | 2037 sim_pres_respiration = old_deco; |
560 | 2038 |
2039 // switch to 2 seconds ascent if not yet in, else done | |
2040 if( fast ) | |
2041 { | |
2042 fast = 0; // retry with 2 seconds ascent steps | |
2043 continue; | |
2044 } | |
2045 else | |
2046 { | |
2047 break; // done... | |
2048 } | |
2049 } | |
2050 | |
2051 // If code execution passes along here, we did not overshoot the first stop. | |
582 | 2052 |
560 | 2053 // did we reach the surface? if yes, done! |
582 | 2054 if( sim_pres_respiration == pres_surface ) break; |
560 | 2055 |
2056 // depth in meters where we are now (no round-up) | |
582 | 2057 sim_depth_limit = (unsigned char)((sim_pres_respiration - pres_surface) * BAR_TO_METER); |
2058 | |
560 | 2059 // Check if there is a better gas to switch to, but only in alternative plan mode |
2060 // or if override is set. If yes, introduce a stop for the gas change. | |
2061 if( ((char_O_deco_status & DECO_PLAN_ALTERNATE) || (char_O_main_status & DECO_GASCHANGE_OVRD)) | |
2062 && gas_find_better() ) | |
2063 { | |
2064 // depth in meters we came from | |
2065 overlay unsigned char old_depth_limit = (unsigned char)((old_deco - pres_surface) * BAR_TO_METER); | |
582 | 2066 |
2067 // adjust sim_depth_limit to the gas change depth, but not deeper than the depth we came from | |
2068 sim_depth_limit = (sim_gas_last_depth < old_depth_limit) ? sim_gas_last_depth : old_depth_limit; | |
2069 | |
560 | 2070 // create a stop for the gas change |
2071 update_deco_table(char_I_gas_change_time); | |
2072 | |
2073 // set the new calculation values for N2, He and O2 | |
582 | 2074 gas_set_ratios(); |
2075 | |
560 | 2076 // signal to create a stop for the gas change and update the tissues |
2077 gaschange = char_I_gas_change_time; | |
582 | 2078 |
560 | 2079 // Adjust the depth for the tissue update to the stop depth. In case of fast mode, this |
2080 // imposes that the ascent from the 'old_deco' depth to this stop took 1 minute although | |
2081 // we might have only ascended one or two meters... | |
582 | 2082 sim_pres_respiration = sim_depth_limit * METER_TO_BAR + pres_surface; |
2083 } | |
2084 | |
560 | 2085 // Did one minute pass by and/or do we have a gas change? |
2086 // Remark: The 2 seconds ascent iterations towards the first deco stop in !fast speed may take | |
2087 // up to 28 seconds in total - for this rough half of a minute no tissue updates will be computed. | |
2088 // Well, it could be done by setting tissue_increment = 0 in !fast condition and making calls to | |
582 | 2089 // calc_alveolar_pressures() and calc_tissues() - see code commented out below. |
560 | 2090 if( fast || gaschange ) |
2091 { | |
2092 // program interval on simulated tissues (flag bit 7 = 0) | |
2093 tissue_increment = fast + gaschange; | |
582 | 2094 |
560 | 2095 // clear gas change signal |
2096 gaschange = 0; | |
2097 // } | |
2098 // else | |
2099 // { | |
2100 // // program 2 seconds interval on simulated tissues (flag bit 7 = 0) | |
2101 // tissue_increment = 0; | |
2102 // } | |
2103 // { | |
582 | 2104 // compute ppN2/ppHe for current depth from sim_pres_respiration |
2105 calc_alveolar_pressures(); | |
560 | 2106 |
2107 // update the tissues | |
582 | 2108 calc_tissues(); |
560 | 2109 } |
2110 } | |
0 | 2111 } |
2112 | |
2113 | |
2114 ////////////////////////////////////////////////////////////////////////////// | |
582 | 2115 // calc_tissues |
0 | 2116 // |
582 | 2117 // INPUT: ppN2 : partial pressure of inspired N2 |
2118 // ppHe : partial pressure of inspired He | |
2119 // tissue_increment : integration time and tissue selector (real or simulated) | |
0 | 2120 // |
582 | 2121 // MODIFIED: pres_tissue_N2[] : tissue N2 pressures (in real tissues context) |
2122 // pres_tissue_He[] : tissue He pressures (in real tissues context) | |
2123 // sim_pres_tissue_N2[] : tissue N2 pressures (in simulated tissues context) | |
2124 // sim_pres_tissue_He[] : tissue He pressures (in simulated tissues context) | |
560 | 2125 // |
582 | 2126 // OUTPUT: char_O_tissue_N2_saturation[] : tissue N2 pressures scaled for display purpose (in real tissues context) |
2127 // char_O_tissue_He_saturation[] : tissue He pressures scaled for display purpose (in real tissues context) | |
2128 // | |
2129 static void calc_tissues() | |
0 | 2130 { |
560 | 2131 overlay float temp_tissue_N2; |
2132 overlay float temp_tissue_He; | |
2133 overlay unsigned char period; | |
2134 overlay unsigned char i; | |
582 | 2135 |
2136 | |
2137 assert( 0.00 <= ppN2 && ppN2 < 11.2 ); // 80% N2 at 130m | |
2138 assert( 0.00 <= ppHe && ppHe < 12.6 ); // 90% He at 130m | |
2139 | |
2140 | |
2141 for (ci=0;ci<NUM_COMP;ci++) // iterate through all compartments | |
2142 { | |
2143 i = tissue_increment & TIME_MASK; // extract number of minutes to do (if i > 0) | |
2144 // or if one 2 second period is to do (if i = 0) | |
2145 | |
2146 if( i == 0 ) // check if we shall do one 2-seconds period | |
560 | 2147 { |
582 | 2148 read_Buhlmann_times(0); // YES, program coefficients for a 2 seconds period |
2149 period = 1; // set period length (in cycles) | |
2150 i = 1; // and one cycle to do | |
560 | 2151 } |
582 | 2152 else if( i > 9 ) // check if we can start with 10 minutes periods |
560 | 2153 { |
582 | 2154 read_Buhlmann_times(2); // YES, program coefficients for 10 minutes periods |
2155 period = 10; // set period length (in cycles) to ten | |
560 | 2156 } |
582 | 2157 else // we shall do 1 to 9 minutes |
560 | 2158 { |
582 | 2159 read_Buhlmann_times(1); // program coefficients for 1 minute periods |
2160 period = 1; // set period length (in cycles) to one | |
560 | 2161 } |
2162 | |
2163 do | |
2164 { | |
2165 //---- N2 ------------------------------------------------------------------------------- | |
2166 | |
582 | 2167 temp_tissue = (tissue_increment & TISSUE_FLAG) ? pres_tissue_N2[ci] : sim_pres_tissue_N2[ci]; |
560 | 2168 |
2169 temp_tissue = (ppN2 - temp_tissue) * var_N2_e; | |
2170 | |
2171 temp_tissue_safety(); | |
2172 | |
582 | 2173 if( tissue_increment & TISSUE_FLAG ) |
560 | 2174 { |
584 | 2175 temp_tissue_N2 = temp_tissue; |
2176 pres_tissue_N2[ci] += temp_tissue; | |
560 | 2177 } |
2178 else | |
2179 { | |
2180 sim_pres_tissue_N2[ci] += temp_tissue; | |
2181 } | |
2182 | |
2183 | |
2184 //---- He ------------------------------------------------------------------------------- | |
582 | 2185 |
2186 temp_tissue = (tissue_increment & TISSUE_FLAG) ? pres_tissue_He[ci] : sim_pres_tissue_He[ci]; | |
560 | 2187 |
2188 temp_tissue = (ppHe - temp_tissue) * var_He_e; | |
2189 | |
2190 temp_tissue_safety(); | |
2191 | |
582 | 2192 if( tissue_increment & TISSUE_FLAG ) |
560 | 2193 { |
584 | 2194 temp_tissue_He = temp_tissue; |
2195 pres_tissue_He[ci] += temp_tissue; | |
560 | 2196 } |
2197 else | |
2198 { | |
2199 sim_pres_tissue_He[ci] += temp_tissue; | |
2200 } | |
2201 | |
2202 // decrement loop counter | |
2203 i -= period; | |
582 | 2204 |
560 | 2205 // check if we need to switch from 10 minute periods to 1 minute periods |
2206 if( (i > 0) && (period = 10) && (i < 10) ) | |
2207 { | |
582 | 2208 read_Buhlmann_times(1); // program coefficients for 1 minute periods |
560 | 2209 period = 1; // set period length (in cycles) to one |
2210 } | |
2211 } | |
2212 while( i ); | |
582 | 2213 |
2214 | |
560 | 2215 // have the computations been done for the "real" tissues? |
584 | 2216 if( tissue_increment & TISSUE_FLAG ) |
560 | 2217 { |
2218 // net tissue balance | |
2219 temp_tissue = temp_tissue_N2 + temp_tissue_He; | |
582 | 2220 |
560 | 2221 // check tissue on-/off-gassing and IBCD with applying a threshold of +/-HYST |
2222 // | |
584 | 2223 if ( temp_tissue < -HYST ) // check if the tissue is off-gassing |
560 | 2224 { |
582 | 2225 deco_tissue_vector |= (1 << ci); // tag tissue as being in decompression |
2226 IBCD_tissue_vector &= ~(1 << ci); // tag tissue as not experiencing mentionable IBCD | |
560 | 2227 } |
2228 else if ( temp_tissue > +HYST ) // check if the tissue in on-gassing | |
2229 { | |
582 | 2230 deco_tissue_vector &= ~(1 << ci); // tag tissue as not being in decompression |
2231 | |
560 | 2232 if( ((temp_tissue_N2 > 0.0) && (temp_tissue_He < 0.0)) // check for counter diffusion |
2233 || ((temp_tissue_N2 < 0.0) && (temp_tissue_He > 0.0)) ) | |
2234 { | |
2235 IBCD_tissue_vector |= (1 << ci); // tag tissue as experiencing mentionable IBCD | |
2236 } | |
2237 } | |
2238 | |
582 | 2239 |
560 | 2240 // keep the saturating / desaturating flags from last invocation |
2241 char_O_tissue_N2_saturation[ci] &= 128; | |
2242 char_O_tissue_He_saturation[ci] &= 128; | |
582 | 2243 |
560 | 2244 // flip the flags applying a hysteresis of HYST (actual value: see #define of HYST) |
2245 if( temp_tissue_N2 > +HYST ) char_O_tissue_N2_saturation[ci] = 128; // set flag for tissue pressure is increasing | |
2246 else if( temp_tissue_N2 < -HYST ) char_O_tissue_N2_saturation[ci] = 0; // clear flag (-> tissue pressure is decreasing) | |
2247 | |
2248 if( temp_tissue_He > +HYST ) char_O_tissue_He_saturation[ci] = 128; // set flag for tissue pressure is increasing | |
2249 else if( temp_tissue_He < -HYST ) char_O_tissue_He_saturation[ci] = 0; // clear flag (-> tissue pressure is decreasing) | |
582 | 2250 |
2251 | |
560 | 2252 // For N2 tissue display purpose: |
2253 // Scale tissue press so that saturation in 70m on AIR gives a value of approx. 80. | |
2254 // The surface steady-state tissue loading of [0.7902 * (pres_respiration - ppWater)] bar | |
2255 // gives then a 10. If N2 is completely washed out of the tissue, result will be 0. | |
2256 // This scaling is adapted to the capabilities of the tissue graphics in the custom views. | |
2257 temp_tissue = (pres_tissue_N2[ci] / N2_equilibrium) * 10; | |
2258 | |
582 | 2259 // limit to 127 to leave space for sat/desat flag |
560 | 2260 if (temp_tissue > 127) temp_tissue = 127; |
2261 | |
2262 // export as integer | |
2263 char_O_tissue_N2_saturation[ci] += (unsigned char)temp_tissue; | |
2264 | |
582 | 2265 |
560 | 2266 // For H2 tissue display purpose: |
2267 // Scale tissue press so that saturation in 120m on TMX 10/70 gives a value of approx. 70. | |
2268 // With no He in a tissue, result will be 0. | |
2269 // This scaling is adapted to the capabilities of the tissue graphics in the custom views. | |
2270 temp_tissue = pres_tissue_He[ci] * 7.7; | |
2271 | |
2272 // limit to 127 to leave space for sat/desat flag | |
2273 if (temp_tissue > 127) temp_tissue = 127; | |
582 | 2274 |
560 | 2275 // export as integer |
2276 char_O_tissue_He_saturation[ci] += (unsigned char)temp_tissue; | |
582 | 2277 } //if |
2278 | |
2279 } // for | |
2280 | |
2281 | |
2282 // set deco flag if we are in deco and at least one of the real tissues is off-gassing | |
2283 // clear deco flag if all of the real tissues are on-gassing | |
2284 if ( (char_O_nullzeit == 0) && deco_tissue_vector ) char_O_deco_warnings |= DECO_FLAG; | |
2285 else if ( !deco_tissue_vector ) char_O_deco_warnings &= ~DECO_FLAG; | |
0 | 2286 } |
2287 | |
2288 ////////////////////////////////////////////////////////////////////////////// | |
2289 // calc_limit | |
2290 // | |
582 | 2291 // Input: |
2292 // tissue_increment : selector for context: real or simulated tissues | |
2293 // sim_pres_tissue_N2/_He : tissue pressures (used in simulated tissues context) | |
2294 // pres_tissue_N2/_He : tissue pressures (used in real tissues context) | |
0 | 2295 // |
582 | 2296 // Output: |
2297 // sim_ceiling : ceiling in bar relative pressure (only in simulated tissues context) | |
2298 // ceiling : ceiling in bar relative pressure (only in real tissues context) | |
2299 // int_O_ceiling : ceiling in mbar relative pressure (only in real tissues context) | |
2300 // int_O_gradient_factor : gradient factor in % (only in real tissues context) | |
2301 // | |
2302 // Modified: | |
2303 // char_O_deco_warnings : for IBCD, microbubbles and outside warning (only in real tissues context) | |
2304 // | |
2305 static void calc_limit(PARAMETER float GF_parameter) | |
0 | 2306 { |
582 | 2307 overlay float lead_tissue_limit = 0.0; |
2308 overlay float lead_supersat = 0.0; | |
2309 | |
2310 overlay unsigned char lead_tissue_no = 0; | |
2311 | |
2312 | |
2313 // check context | |
2314 if( tissue_increment & TISSUE_FLAG ) | |
2315 { | |
2316 // clear IBCD, microbubbles and outside warning flags (locked warnings will be preserved) | |
2317 char_O_deco_warnings &= ~(DECO_WARNING_IBCD + DECO_WARNING_MBUBBLES + DECO_WARNING_OUTSIDE); | |
2318 } | |
2319 | |
2320 | |
2321 // loop over all tissues | |
2322 for(ci=0; ci<NUM_COMP; ci++) | |
2323 { | |
2324 overlay float calc_pres_tissue_N2; | |
2325 overlay float calc_pres_tissue_He; | |
2326 overlay float pres_tissue; | |
560 | 2327 overlay float pres_min; |
582 | 2328 |
2329 // get the tissue pressures | |
2330 if( tissue_increment & TISSUE_FLAG ) | |
560 | 2331 { |
582 | 2332 // context is real tissues |
2333 calc_pres_tissue_N2 = pres_tissue_N2[ci]; | |
2334 calc_pres_tissue_He = pres_tissue_He[ci]; | |
560 | 2335 } |
2336 else | |
2337 { | |
582 | 2338 // context is simulated tissues |
2339 calc_pres_tissue_N2 = sim_pres_tissue_N2[ci]; | |
2340 calc_pres_tissue_He = sim_pres_tissue_He[ci]; | |
2341 } | |
2342 | |
2343 // overall tissue pressure | |
2344 pres_tissue = calc_pres_tissue_N2 + calc_pres_tissue_He; | |
2345 | |
2346 // get the coefficients for tissue ci | |
2347 read_Buhlmann_coefficients(); | |
2348 | |
2349 // adapt the coefficients according to the N2/He ratio in the tissue | |
2350 var_N2_a = (var_N2_a * calc_pres_tissue_N2 + var_He_a * calc_pres_tissue_He) / pres_tissue; | |
2351 var_N2_b = (var_N2_b * calc_pres_tissue_N2 + var_He_b * calc_pres_tissue_He) / pres_tissue; | |
2352 | |
2353 // calculate minimum ambient pressure that the tissue can withstand according to straight Buhlmann | |
2354 pres_min = (pres_tissue - var_N2_a) * var_N2_b; | |
2355 | |
2356 // next calculations are only relevant when invoked on the real tissues | |
2357 if( tissue_increment & TISSUE_FLAG ) | |
2358 { | |
2359 overlay float supersat; | |
2360 overlay float threshold; | |
584 | 2361 |
582 | 2362 // calculate current supersaturation value (1.0 = 100%) of this tissue |
2363 supersat = (pres_tissue - pres_respiration) / (pres_tissue - pres_min); | |
2364 | |
2365 // check if tissue is in supersaturation | |
2366 if( supersat > 0.0 ) | |
2367 { | |
2368 // memorize highest supersaturation found | |
2369 if( supersat > lead_supersat ) lead_supersat = supersat; | |
2370 | |
2371 // set a threshold value for the microbubbles and outside warnings | |
2372 // ToDo: finalize the definition of the threshold | |
2373 threshold = 0.02 * ci + 0.9; | |
2374 | |
2375 // check if this tissue is likely to develop microbubbles | |
2376 // and/or if this tissue is outside of the Buhlmann model | |
2377 if( ci <= 5 ) | |
560 | 2378 { |
582 | 2379 if( supersat >= threshold ) |
2380 { | |
2381 char_O_deco_warnings |= (DECO_WARNING_MBUBBLES + DECO_WARNING_MBUBBLES_lock); | |
2382 | |
2383 if( supersat >= 1.0 ) | |
2384 { | |
2385 char_O_deco_warnings |= (DECO_WARNING_OUTSIDE + DECO_WARNING_OUTSIDE_lock); | |
2386 } | |
2387 } | |
2388 } | |
2389 else // ci > 5 | |
2390 { | |
2391 if( supersat >= 1.0 ) | |
2392 { | |
2393 char_O_deco_warnings |= (DECO_WARNING_MBUBBLES + DECO_WARNING_MBUBBLES_lock); | |
2394 | |
2395 if( supersat >= threshold ) | |
2396 { | |
2397 char_O_deco_warnings |= (DECO_WARNING_OUTSIDE + DECO_WARNING_OUTSIDE_lock); | |
2398 } | |
2399 } | |
560 | 2400 } |
2401 } | |
2402 } | |
582 | 2403 |
2404 // Apply the Eric Baker's varying gradient factor correction if the GF-Model is selected. | |
2405 // Note: the correction factor depends both on GF and b, so that can change who is the | |
2406 // leading gas... | |
2407 if( char_I_deco_model != 0 ) pres_min = ( pres_tissue - (var_N2_a * GF_parameter) ) | |
2408 / ( 1.0 - GF_parameter + (GF_parameter / var_N2_b ) ); | |
560 | 2409 |
2410 // check if this tissue requires a higher ambient pressure than was found to be needed up to now | |
582 | 2411 if( pres_min > lead_tissue_limit ) |
2412 { | |
2413 lead_tissue_limit = pres_min; | |
2414 lead_tissue_no = ci; | |
2415 } | |
2416 } // for | |
2417 | |
2418 | |
2419 // compile outputs | |
2420 if( tissue_increment & TISSUE_FLAG ) | |
560 | 2421 { |
582 | 2422 //--- real tissues ----------------------------------------------------- |
2423 | |
2424 // check if leading tissue is in IBCD condition | |
2425 if( (IBCD_tissue_vector & (1 << lead_tissue_no)) | |
2426 && ((pres_tissue_N2[lead_tissue_no] + pres_tissue_He[lead_tissue_no]) > pres_respiration) ) | |
2427 { | |
2428 // leading tissue is in IBCD condition and in super-saturation, so issue a warning. | |
2429 char_O_deco_warnings |= (DECO_WARNING_IBCD + DECO_WARNING_IBCD_lock); | |
2430 } | |
2431 | |
2432 | |
2433 // compute ceiling in bar relative pressure | |
2434 ceiling = lead_tissue_limit - pres_surface; | |
2435 | |
2436 // convert ceiling to int_O_ceiling in mbar | |
2437 if ( ceiling <= 0 ) int_O_ceiling = 0; | |
2438 else if ( ceiling > 16 ) int_O_ceiling = 16000; | |
2439 // Compatibility version | |
584 | 2440 // else int_O_ceiling = (short)(ceiling * 1000); |
582 | 2441 |
2442 // New version: Rounds up to next 10 cm so that the ceiling disappears on the display only when the | |
2443 // ceiling limit is really zero. This will coincident then with TTS switching back to NDL time. | |
584 | 2444 else int_O_ceiling = (short)(ceiling * 1000 + 9); |
582 | 2445 |
2446 | |
2447 // convert highest supersaturation found to int_O_gradient_factor in % (1.0 = 100%) | |
2448 // limit to 255 because of constraints in ghostwriter code | |
2449 if ( lead_supersat <= 0.0 ) int_O_gradient_factor = 0; | |
2450 else if( lead_supersat > 2.545 ) int_O_gradient_factor = 255 + INT_FLAG_WARNING; | |
2451 else | |
2452 { | |
2453 int_O_gradient_factor = (unsigned int)(100 * lead_supersat + 0.5); | |
2454 | |
2455 if ( int_O_gradient_factor >= GF_WARNING_THRESHOLD ) | |
2456 int_O_gradient_factor |= INT_FLAG_WARNING; | |
2457 | |
2458 else if ( int_O_gradient_factor >= char_I_GF_High_percentage ) | |
2459 int_O_gradient_factor |= INT_FLAG_ATTENTION; | |
2460 } | |
560 | 2461 } |
582 | 2462 else |
560 | 2463 { |
582 | 2464 //--- simulated tissues ------------------------------------------------ |
2465 | |
2466 // compute ceiling for the simulated tissues in bar relative pressure | |
2467 sim_ceiling = lead_tissue_limit - pres_surface; | |
560 | 2468 } |
0 | 2469 } |
2470 | |
2471 ////////////////////////////////////////////////////////////////////////////// | |
582 | 2472 // calc_NDL_time |
0 | 2473 // |
2474 // calculates the remaining bottom time | |
2475 // | |
2476 // NOTE: Erik Baker's closed formula works for Nitroxes. Trimix adds a second | |
2477 // exponential term to the M-value equation, making it impossible to | |
2478 // invert... So we have to make a fast-simu until we find a better way. | |
2479 // | |
582 | 2480 // Input: ppN2 |
2481 // ppHe | |
0 | 2482 // |
582 | 2483 // Output: NDL_time |
2484 // | |
2485 static void calc_NDL_time(void) | |
0 | 2486 { |
582 | 2487 overlay unsigned char new_NDL_lead_tissue = 0; |
2488 overlay unsigned char i; | |
2489 | |
2490 | |
2491 // initialize NDL_time to 240 minutes | |
2492 NDL_time = 240; | |
2493 | |
2494 for(i=0; i<NUM_COMP; i++) | |
2495 { | |
2496 overlay float calc_pres_tissue_N2; | |
2497 overlay float calc_pres_tissue_He; | |
2498 overlay float pres_tissue; | |
2499 | |
2500 overlay unsigned char NDL_tissue; | |
2501 overlay unsigned char period = 10; // start with 10 minute periods | |
2502 | |
2503 | |
2504 // check lead tissue from last NDL computation first | |
2505 ci = i + NDL_lead_tissue; | |
2506 | |
2507 // wrap around after the 16th tissue | |
2508 if( ci >= NUM_COMP ) ci -= NUM_COMP; | |
2509 | |
2510 // read Buhlmann a and b coefficients for tissue ci | |
2511 read_Buhlmann_coefficients(); | |
2512 | |
2513 // read the loading factors for 10 minute periods | |
2514 read_Buhlmann_times(2); | |
560 | 2515 |
582 | 2516 // get the tissue pressures for N2 and He |
2517 calc_pres_tissue_N2 = sim_pres_tissue_N2[ci]; | |
2518 calc_pres_tissue_He = sim_pres_tissue_He[ci]; | |
2519 | |
2520 // calculate the total pressure tissue | |
2521 pres_tissue = calc_pres_tissue_N2 + calc_pres_tissue_He; | |
2522 | |
2523 | |
2524 // simulate an increasing bottom time and check when we hit the NDL ------------------------ | |
2525 for( NDL_tissue = 0; NDL_tissue < NDL_time; ) // not needed to simulate for longer than the already found NDL | |
2526 { | |
2527 overlay float var_a; | |
2528 overlay float var_b; | |
2529 overlay float pres_limit; | |
2530 overlay float delta_pres_tissue_N2; | |
2531 overlay float delta_pres_tissue_He; | |
2532 | |
2533 | |
2534 // adopt a and b coefficients to current N2/He ratio inside the tissue | |
2535 var_a = (var_N2_a * calc_pres_tissue_N2 + var_He_a * calc_pres_tissue_He) / pres_tissue; | |
2536 var_b = (var_N2_b * calc_pres_tissue_N2 + var_He_b * calc_pres_tissue_He) / pres_tissue; | |
2537 | |
2538 // compute pressure limit for tissues under surface pressure conditions | |
2539 pres_limit = (var_a + pres_surface / var_b); | |
2540 | |
2541 // adopt pressure limit when using the GF extension | |
2542 if (char_I_deco_model != 0 ) pres_limit = GF_high * (pres_limit - pres_surface) + pres_surface; | |
2543 | |
2544 //---- Check if this tissue is already beyond the NDL | |
2545 if( pres_tissue > pres_limit) | |
2546 { | |
2547 // NO - finish the outer loop, | |
2548 i = NUM_COMP; | |
2549 | |
2550 // and finish the inner loop | |
2551 break; | |
2552 } | |
2553 | |
2554 // compute delta to tissue pressures in 10 or 1 minutes of time ahead | |
2555 delta_pres_tissue_N2 = (ppN2 - calc_pres_tissue_N2) * var_N2_e; | |
2556 delta_pres_tissue_He = (ppHe - calc_pres_tissue_He) * var_He_e; | |
2557 | |
2558 // apply safety factors to the pressure deltas | |
2559 // NDL can be computed while ascending, so we have to check if we are saturating or desaturating | |
2560 if( delta_pres_tissue_N2 > 0.0 ) delta_pres_tissue_N2 *= float_saturation_multiplier; | |
2561 else delta_pres_tissue_N2 *= float_desaturation_multiplier; | |
2562 | |
2563 if( delta_pres_tissue_He > 0.0 ) delta_pres_tissue_He *= float_saturation_multiplier; | |
2564 else delta_pres_tissue_He *= float_saturation_multiplier; | |
2565 | |
2566 // Simulate off-gassing while going to surface | |
2567 // TODO ! | |
2568 // delta_pres_tissue_N2 -= exp( ... ascent time ... ppN2...) | |
2569 // delta_pres_tissue_He -= exp( ... ascent time ... ppHe...) | |
2570 | |
2571 // within NDL now, but still within in 10 or 1 minutes from now? | |
2572 if( pres_tissue + delta_pres_tissue_N2 + delta_pres_tissue_He <= pres_limit ) | |
2573 { | |
2574 // YES - apply the pressure deltas to tissues | |
2575 calc_pres_tissue_N2 += delta_pres_tissue_N2; | |
2576 calc_pres_tissue_He += delta_pres_tissue_He; | |
560 | 2577 |
582 | 2578 // update the overall tissue pressure |
2579 pres_tissue = calc_pres_tissue_N2 + calc_pres_tissue_He; | |
2580 | |
2581 // increment the NDL | |
2582 NDL_tissue += period; | |
2583 | |
2584 // do next loop | |
2585 continue; | |
2586 } | |
2587 | |
2588 // NO - if delta pressures were for 10 minutes of time ahead, try with 1 minute ahead | |
2589 if( period == 10 ) | |
2590 { | |
2591 // reduce period to 1 minute | |
2592 period = 1; | |
2593 | |
2594 // read the loading factors for 1 minute periods | |
2595 read_Buhlmann_times(1); | |
2596 | |
2597 // do next loop | |
2598 continue; | |
2599 } | |
2600 | |
2601 // NO - not even within NDL in just one more minute, so make a linear approx for the last minute | |
2602 // (make a meaningful rounding of NDL, but ONLY if positive: negative casted to unsigned is bad) | |
2603 if( pres_limit > pres_tissue ) | |
2604 NDL_tissue += (unsigned char)(0.5 + (pres_limit - pres_tissue ) | |
2605 / (delta_pres_tissue_N2 + delta_pres_tissue_He) ); | |
2606 | |
2607 // finish the inner loop | |
2608 break; | |
2609 } | |
2610 | |
2611 // is the current NDL short than the shortest so far? | |
2612 if ( NDL_tissue < NDL_time ) | |
2613 { | |
2614 // keep the current's tissue NDL as the new shortest NDL | |
2615 NDL_time = NDL_tissue; | |
2616 | |
2617 // store the causing tissue | |
2618 new_NDL_lead_tissue = ci; | |
2619 } | |
2620 | |
2621 // if NDL is > 0 the outer loop will continues with the next tissue | |
2622 // if NDL found to be overrun, outer loop will be terminated through i = NUM_COMP statement | |
2623 } | |
2624 | |
2625 // store the NDL dominating tissue for to start with in the next NDL calculation | |
2626 NDL_lead_tissue = new_NDL_lead_tissue; | |
0 | 2627 } |
2628 | |
2629 ////////////////////////////////////////////////////////////////////////////// | |
2630 // calc_ascenttime | |
2631 // | |
560 | 2632 // Sum up ascent from bottom to surface at float_ascent_speed, |
2633 // but 1 minute per meter for the final ascent, and all stops. | |
0 | 2634 // |
582 | 2635 // Input: char_I_depth_last_deco |
2636 // pres_respiration | |
2637 // pres_surface | |
2638 // float_ascent_speed | |
2639 // internal_deco_depth[] | |
2640 // | |
2641 // Output: ascent_time | |
560 | 2642 // |
0 | 2643 static void calc_ascenttime(void) |
2644 { | |
582 | 2645 overlay unsigned char x; |
2646 | |
2647 | |
560 | 2648 // preset final ascent |
2649 overlay float final = (float)char_I_depth_last_deco; | |
2650 | |
582 | 2651 // calculate depth |
2652 overlay float ascent = (pres_respiration - pres_surface) * BAR_TO_METER; | |
2653 | |
560 | 2654 // check if we are already in final ascent |
582 | 2655 if (ascent <= final) |
560 | 2656 { |
2657 // yes - all ascent is final ascent | |
2658 final = ascent; | |
2659 ascent = 0.0; | |
2660 } | |
2661 else | |
2662 { | |
2663 // no - subtract final ascent part from overall ascent | |
2664 ascent -= final; | |
582 | 2665 |
560 | 2666 // compute time for ascent part without final ascent |
582 | 2667 ascent /= float_ascent_speed; |
560 | 2668 } |
582 | 2669 |
2670 // add 1 minute for each meter of final ascent | |
560 | 2671 ascent += final; |
582 | 2672 |
560 | 2673 // convert to integer |
582 | 2674 ascent_time = (unsigned short)(ascent + 0.5); |
560 | 2675 |
2676 // add all stop times | |
582 | 2677 for(x=0; x<NUM_STOPS && internal_deco_depth[x]; x++) |
2678 ascent_time += (unsigned short)internal_deco_time[x]; | |
0 | 2679 |
560 | 2680 // limit result to display max. |
582 | 2681 if( ascent_time > 999) ascent_time = 999; |
2682 | |
560 | 2683 // tag result as invalid if there is an overflow in the stops table |
582 | 2684 if( char_O_deco_warnings & DECO_WARNING_STOPTABLE_OVERFLOW ) ascent_time |= INT_FLAG_INVALID; |
0 | 2685 } |
2686 | |
2687 | |
2688 ////////////////////////////////////////////////////////////////////////////// | |
2689 // clear_deco_table | |
2690 // | |
2691 // | |
2692 static void clear_deco_table(void) | |
2693 { | |
582 | 2694 overlay unsigned char x; |
2695 | |
2696 for(x=0; x<NUM_STOPS; ++x) | |
2697 { | |
2698 internal_deco_time [x] = 0; | |
2699 internal_deco_depth[x] = 0; | |
2700 } | |
2701 | |
560 | 2702 // clear stop table overflow warning |
2703 char_O_deco_warnings &= ~DECO_WARNING_STOPTABLE_OVERFLOW; | |
0 | 2704 } |
2705 | |
2706 ////////////////////////////////////////////////////////////////////////////// | |
2707 // update_deco_table | |
2708 // | |
582 | 2709 // Add time to a stop at sim_depth_limit |
560 | 2710 // |
2711 // It is possible to create stops with a duration of 0 minutes, e.g. to | |
2712 // note a gas change "on the fly" while ascending. Therefore the criteria | |
2713 // to have reached the end of the list needs always to be depth == 0. | |
0 | 2714 // |
582 | 2715 // Input: sim_depth_limit : stop's depth, in meters. |
560 | 2716 // sim_gas_last_used : gas used at stop, as index 1..5 or 0 for gas 6 |
582 | 2717 // PARAMETER time_increment : number of minutes to add to the stop |
0 | 2718 // |
560 | 2719 // Updated: internal_deco_depth[] : depth (in meters) of each stop |
2720 // internal_deco_time [] : time (in minutes) of each stop | |
2721 // internal_deco_gas [] : gas used (index 1-5) at each stop | |
2722 // | |
2723 static unsigned char update_deco_table(PARAMETER unsigned char time_increment) | |
0 | 2724 { |
560 | 2725 overlay unsigned char x; |
2726 | |
582 | 2727 assert( sim_depth_limit > 0 ); // No stop at surface... |
560 | 2728 |
2729 // loop through internal deco table | |
2730 for(x=0; x<NUM_STOPS; ++x) | |
2731 { | |
2732 // Make sure deco-stops are recorded in order: | |
582 | 2733 assert( !internal_deco_depth[x] || sim_depth_limit <= internal_deco_depth[x] ); |
560 | 2734 |
2735 // Is there already a stop entry for our current depth? | |
582 | 2736 if( internal_deco_depth[x] == sim_depth_limit ) |
560 | 2737 { |
2738 // Yes - increment stop time if possible | |
2739 // Stop time entries are limited to 99 minutes because of display constraints. | |
2740 // Else a limit of 254 would account because of constrains in calc_CNS_planning(). | |
2741 if( internal_deco_time[x] < (100 - time_increment) ) | |
2742 { | |
2743 internal_deco_time[x] += time_increment; // increment stop time | |
2744 return 1; // return with status 'success' | |
2745 } | |
2746 } | |
2747 | |
2748 // If program flow passes here, there is either no stop entry for the current depth yet, or | |
2749 // the existing entry is saturated with 99 minutes. So we are looking for the next unused | |
2750 // table entry. | |
2751 if( internal_deco_depth[x] == 0 ) | |
2752 { | |
2753 internal_deco_time[x] = time_increment; // initialize entry with first stop's time, | |
582 | 2754 internal_deco_depth[x] = sim_depth_limit; // ... depth, and |
560 | 2755 internal_deco_gas[x] = sim_gas_last_used; // ... gas |
2756 return 1; // return with status 'success' | |
2757 } | |
2758 } | |
2759 | |
2760 // If program flow passes here, all deco table entries are used up. | |
582 | 2761 |
560 | 2762 // set overflow warning |
2763 char_O_deco_warnings |= DECO_WARNING_STOPTABLE_OVERFLOW; | |
582 | 2764 |
560 | 2765 // return with status 'failed'. |
2766 return 0; | |
0 | 2767 } |
2768 | |
2769 | |
2770 ////////////////////////////////////////////////////////////////////////////// | |
560 | 2771 // calc_desaturation_time |
0 | 2772 // |
2773 // Inputs: int_I_pres_surface, ppWater, char_I_desaturation_multiplier | |
560 | 2774 // Outputs: int_O_desaturation_time, int_O_nofly_time |
0 | 2775 // |
560 | 2776 // Helper function |
2777 // | |
2778 void calc_desaturation_time_helper(void) | |
0 | 2779 { |
582 | 2780 if( pres_actual > pres_target ) // check if actual pressure is higher then target pressure |
2781 { // YES - compute remaining time | |
560 | 2782 overlay float pres_ratio; |
582 | 2783 |
560 | 2784 pres_ratio = pres_actual / pres_target; |
2785 | |
2786 // Compute desaturation time with result rounded up to multiples of 10 minutes. | |
582 | 2787 // Main purpose is to avoid confusion, because the times do not clock down in |
2788 // one minute steps any more but get constantly re-computed according to current | |
2789 // ambient pressure and may therefor make steps of several minutes forwards and | |
2790 // backwards as ambient pressure rises and falls. | |
2791 int_time = (unsigned int)( (var_ht * log(pres_ratio) / desat_factor) + 0.9 ); | |
560 | 2792 } |
2793 else | |
582 | 2794 { // NO - desaturation state reached, no remaining time |
2795 int_time = 0; | |
560 | 2796 } |
2797 } | |
2798 | |
2799 ///////////////////////////////////////////////////////////////////////////// | |
2800 // Main function | |
2801 // | |
2802 void calc_desaturation_time(void) | |
2803 { | |
582 | 2804 assert( 800 < int_I_pres_surface && int_I_pres_surface < 1100 ); |
2805 assert( 0 < char_I_desaturation_multiplier && char_I_desaturation_multiplier <= 100 ); | |
2806 | |
2807 // fraction of inert gases in respired air | |
2808 N2_ratio = 0.7902; | |
2809 He_ratio = 0.0; | |
2810 | |
2811 // surface pressure in bar | |
2812 pres_surface = 0.001 * int_I_pres_surface; | |
2813 | |
2814 // partial pressure of N2 in respired air | |
2815 N2_equilibrium = N2_ratio * (pres_surface - ppWater); | |
2816 | |
2817 // pre-computed term for later use: 10 [Min] * 0.01 [%] * 0.6931 [=log(2)] * ... | |
2818 desat_factor = 0.06931 * char_I_desaturation_multiplier * SURFACE_DESAT_FACTOR; | |
2819 | |
2820 // initialize vars | |
560 | 2821 int_O_desaturation_time = 0; |
582 | 2822 int_O_nofly_time = 0; |
2823 | |
2824 | |
2825 for(ci=NUM_COMP; ci>0;) | |
2826 { | |
2827 overlay float pres_tissue_max; | |
2828 overlay float P_ambient_altitude; | |
2829 overlay signed char search_direction; | |
2830 overlay unsigned int nofly_N2 = 0; | |
2831 overlay unsigned int nofly_He = 0; | |
2832 overlay unsigned int nofly_last = ~0; | |
2833 | |
2834 | |
560 | 2835 ci -= 1; |
582 | 2836 |
2837 read_Buhlmann_ht(); | |
560 | 2838 read_Buhlmann_coefficients(); |
582 | 2839 |
560 | 2840 // get selected target altitude |
2841 switch( char_I_altitude_wait ) | |
2842 { | |
2843 case 1: P_ambient_altitude = P_ambient_1000m; break; | |
2844 case 2: P_ambient_altitude = P_ambient_2000m; break; | |
2845 case 3: P_ambient_altitude = P_ambient_3000m; break; | |
2846 default: P_ambient_altitude = P_ambient_fly; break; | |
2847 } | |
582 | 2848 |
560 | 2849 // Target pressure for the tissue is the Buhlmann limit. We use the Buhlmann |
2850 // coefficients for N2 also for He because it is easier to calculate and the | |
2851 // N2 coefficients are more conservative than those for He, so we are on the | |
2852 // safe side, too. | |
582 | 2853 pres_tissue_max = (P_ambient_altitude/var_N2_b + var_N2_a); |
2854 | |
560 | 2855 // Adjust target pressure in case the GF model is in use by GF-high |
2856 if( char_I_deco_model != 0 ) | |
582 | 2857 pres_tissue_max = P_ambient_altitude + |
2858 0.01 * char_I_GF_High_percentage * (pres_tissue_max - P_ambient_altitude); | |
2859 | |
560 | 2860 |
2861 // | |
2862 // Desaturation time | |
2863 // | |
2864 | |
2865 // N2: actual amount of tissue pressure above equilibrium. | |
2866 pres_actual = pres_tissue_N2[ci] - N2_equilibrium; | |
2867 | |
2868 // N2: half-time of the current tissue | |
582 | 2869 var_ht = var_N2_ht; |
560 | 2870 |
2871 // Calculate desaturation time for N2 in tissue. | |
2872 // Desaturated state is defined as residual tissue pressure <= 1.05 x ppN2 respired | |
2873 | |
2874 pres_target = 0.05 * N2_equilibrium; | |
2875 | |
2876 calc_desaturation_time_helper(); | |
2877 | |
582 | 2878 if( int_time > int_O_desaturation_time) int_O_desaturation_time = int_time; |
2879 | |
2880 | |
2881 // He: actual amount of tissue pressure above equilibrium: equilibrium for He is 0 bar | |
2882 pres_actual = pres_tissue_He[ci]; | |
560 | 2883 |
2884 // He: half-time of the current tissue | |
582 | 2885 var_ht = var_He_ht; |
2886 | |
560 | 2887 // Calculate desaturation time for He in the tissue. |
2888 // Desaturated state is defined as residual tissue pressure <= 0.05 x ppN2 respired | |
2889 | |
2890 pres_target = 0.05 * N2_equilibrium; | |
2891 | |
2892 calc_desaturation_time_helper(); | |
2893 | |
582 | 2894 if( int_time > int_O_desaturation_time) int_O_desaturation_time = int_time; |
560 | 2895 |
2896 | |
2897 // | |
2898 // no-fly time | |
2899 // | |
2900 | |
2901 // initialize search direction | |
2902 search_direction = 0; | |
582 | 2903 |
560 | 2904 for(;;) |
2905 { | |
2906 // N2: actual amount of tissue pressure above equilibrium. | |
2907 pres_actual = pres_tissue_N2[ci] - N2_equilibrium; | |
582 | 2908 |
560 | 2909 // N2: half-time of the current tissue |
582 | 2910 var_ht = var_N2_ht; |
2911 | |
560 | 2912 // Calculate no-fly time for N2 in the tissue. |
2913 // Flying is permitted when the N2 pressure fits into the assigned fraction above equilibrium. | |
2914 | |
2915 pres_target = (split_N2_He[ci] * 0.01) * (pres_tissue_max - N2_equilibrium); | |
2916 | |
2917 if( pres_target < 0.0 ) // check if desaturation to fly target is possible | |
2918 { | |
2919 int_O_nofly_time = 288; // NO - set no-fly time to 288 * 10 min = 48 h | |
2920 break; // done for this compartment | |
2921 } | |
2922 else | |
2923 { | |
2924 calc_desaturation_time_helper(); | |
582 | 2925 nofly_N2 = int_time; |
560 | 2926 } |
582 | 2927 |
560 | 2928 // He: actual amount of tissue pressure above equilibrium - equilibrium for He is 0 bar. |
2929 pres_actual = pres_tissue_He[ci]; | |
2930 | |
2931 // He: half-time of the current tissue | |
582 | 2932 var_ht = var_He_ht; |
2933 | |
560 | 2934 // Calculate no-fly time for He in the tissue. |
2935 // Flying is permitted when the He pressure fits into the assigned fraction. | |
2936 | |
582 | 2937 pres_target = (0.01 * (100 - split_N2_He[ci])) * (pres_tissue_max - N2_equilibrium); |
560 | 2938 |
2939 calc_desaturation_time_helper(); | |
582 | 2940 nofly_He = int_time; |
560 | 2941 |
2942 | |
2943 // Because the sum of N2 and He tissue pressures needs to fit into the Buhlmann limit for | |
2944 // no-fly time calculation, each gas gets assigned a fraction of the available total pressure | |
2945 // limit. The optimum split between the two gases can not be computed by a single formular, | |
2946 // because this would require the inversion of a function with two exponential terms, which is | |
2947 // not possible. We do not want to do a computational complex simulation here like it is done | |
2948 // in the deco calculation code (although we tackle the same base problem here), so we just let | |
2949 // the computer try out which split will balance the no-fly times induced by the N2 and the He | |
2950 // at best. | |
582 | 2951 |
560 | 2952 // first of all, skip any optimization in case the current compartment is not the leading one |
2953 if( (nofly_N2 <= int_O_nofly_time) && (nofly_He <= int_O_nofly_time) ) break; | |
2954 | |
2955 // check if the N2 requires more waiting time than the He | |
582 | 2956 if( nofly_N2 >= nofly_He ) |
560 | 2957 { |
2958 // check if the search direction has changed, which means we are beyond the | |
2959 // optimum now, or if we are at the upper stop limit of split_N2_He | |
2960 if( (search_direction < 0) || (split_N2_He[ci] == 99) ) | |
2961 { | |
2962 // Either the just completed iteration was more close to the optimum or the one before | |
2963 // was, so we take the best (i.e. shortest) time of both as the final no-fly time. | |
2964 int_O_nofly_time = (nofly_N2 < nofly_last) ? nofly_N2 : nofly_last; | |
2965 break; | |
2966 } | |
2967 | |
2968 // store the no-fly time found in this iteration | |
582 | 2969 nofly_last = nofly_N2; |
2970 | |
560 | 2971 // increase the N2 fraction of the split and set search direction towards more N2 |
2972 split_N2_He[ci] += 1; | |
2973 search_direction = +1; | |
2974 } | |
2975 else | |
2976 { | |
2977 // check if the search direction has changed, which means we are beyond the | |
2978 // optimum now, or if we are at the lower stop limit of split_N2_He | |
2979 if( (search_direction > 0) || (split_N2_He[ci] == 1) ) | |
582 | 2980 { |
560 | 2981 // Either the just completed iteration was more close to the optimum or the one before |
2982 // was, so we take the best (i.e. shortest) time of both as the final no-fly time. | |
2983 int_O_nofly_time = (nofly_He < nofly_last) ? nofly_He : nofly_last; | |
2984 break; | |
2985 } | |
2986 | |
2987 // store the no-fly time found in this iteration | |
582 | 2988 nofly_last = nofly_He; |
2989 | |
560 | 2990 // decrease the N2 fraction of the split and set search direction towards less N2 |
2991 split_N2_He[ci] -= 1; | |
2992 search_direction = -1; | |
2993 } | |
582 | 2994 |
560 | 2995 } // for(;;) |
2996 | |
2997 } // for(compartments) | |
2998 | |
582 | 2999 |
560 | 3000 // Rescale int_O_desaturation_time and int_O_nofly_time to full minutes for display purpose |
3001 int_O_desaturation_time *= 10; | |
3002 int_O_nofly_time *= 10; | |
582 | 3003 |
560 | 3004 // Limit int_O_desaturation_time and int_O_nofly_time to 5999 = 99 hours + 59 minutes |
3005 // because of display space constraints and rounding done above. | |
3006 if( int_O_desaturation_time > 5999 ) int_O_desaturation_time = 5999; | |
3007 if( int_O_nofly_time > 5999 ) int_O_nofly_time = 5999; | |
3008 | |
3009 | |
582 | 3010 // Clear the microbubbles warning when the current gradient factor is < GF_WARNING_THRESHOLD. |
560 | 3011 // As the locked warning will stay set, this will cause the warning be be displayed in attention |
3012 // color instead of warning color. | |
582 | 3013 if( int_O_gradient_factor < GF_WARNING_THRESHOLD ) |
3014 char_O_deco_warnings &= ~DECO_WARNING_MBUBBLES; | |
3015 | |
560 | 3016 // clear some warnings when the desaturation time has become zero |
582 | 3017 if( int_O_desaturation_time == 0 ) |
3018 char_O_deco_warnings &= ~( DECO_WARNING_IBCD + DECO_WARNING_IBCD_lock | |
3019 + DECO_WARNING_MBUBBLES + DECO_WARNING_MBUBBLES_lock | |
3020 + DECO_WARNING_OUTSIDE + DECO_WARNING_OUTSIDE_lock ); | |
560 | 3021 |
0 | 3022 } |
3023 | |
3024 ////////////////////////////////////////////////////////////////////////////// | |
582 | 3025 // Calculate desaturation of the real tissues for a given time interval |
0 | 3026 // |
582 | 3027 // Caution: Works on the real tissues! |
3028 // If in doubt, use this function only inside a context surrounded with | |
3029 // push_tissues_to_vault() / pull_tissues_from_vault() ! | |
3030 // | |
3031 // Input: int_I_pres_surface : surface pressure in mbar | |
3032 // time_interval : time interval in minutes, must be limited to 254 at max | |
0 | 3033 // |
582 | 3034 // Modified: tissue pressures |
3035 // CNS value | |
3036 // ceiling and current GF | |
560 | 3037 // |
582 | 3038 static void calc_interval(PARAMETER unsigned char time_interval) |
0 | 3039 { |
582 | 3040 overlay unsigned char time; |
3041 | |
3042 | |
3043 assert( 800 < int_I_pres_surface && int_I_pres_surface < 1100 ); | |
3044 assert( 100 <= char_I_saturation_multiplier && char_I_saturation_multiplier < 200 ); | |
3045 assert( 0 < char_I_desaturation_multiplier && char_I_desaturation_multiplier <= 100 ); | |
3046 | |
560 | 3047 |
3048 // setup input data for deco routines | |
582 | 3049 pres_respiration = pres_surface = 0.001 * int_I_pres_surface ; |
3050 | |
3051 N2_ratio = 0.7902; // according to Buhlmann | |
560 | 3052 N2_equilibrium = N2_ratio * (pres_surface - ppWater); // used for N2 tissue graphics scaling |
582 | 3053 ppN2 = N2_ratio * (pres_respiration - ppWater); |
3054 ppHe = 0.0; | |
3055 | |
3056 float_desaturation_multiplier = 0.01 * char_I_desaturation_multiplier * SURFACE_DESAT_FACTOR; | |
3057 float_saturation_multiplier = 0.01 * char_I_saturation_multiplier; | |
3058 | |
3059 | |
3060 // Calculate the tissues: | |
3061 // Because calc_tissues() can calculate for 127 minutes at max, | |
3062 // the tissue updating may need to be done in two chunks. | |
3063 | |
3064 time = time_interval; | |
3065 | |
3066 // first chunk for the part exceeding 127 minutes | |
3067 if( time > 127) | |
560 | 3068 { |
582 | 3069 // do a full 127 minutes on the real tissues |
3070 tissue_increment = 127 | TISSUE_FLAG; | |
3071 calc_tissues(); | |
3072 | |
3073 // determine the remaining part | |
3074 time -= 127; | |
560 | 3075 } |
3076 | |
582 | 3077 // program the remaining part (or full part if not exceeding 127 minutes) |
3078 tissue_increment = time | TISSUE_FLAG; | |
3079 | |
3080 // update the N2 and He pressures in the tissues for the remaining part of the time interval | |
3081 calc_tissues(); | |
3082 | |
560 | 3083 |
3084 // Calculate CNS: | |
3085 // To speed up things and because on most invocations of this code char_I_dive_interval | |
3086 // is a multiple of 10 minutes, we loop the loop-counter down using two speeds. | |
3087 | |
582 | 3088 time = time_interval; |
3089 | |
3090 while ( time ) | |
560 | 3091 { |
582 | 3092 if( time > 9 ) |
560 | 3093 { |
3094 CNS_fraction *= 0.925874712; // Half-time = 90min -> 10 min: (1/2)^(1/9) | |
582 | 3095 time -= 10; // fast speed looping |
560 | 3096 } |
3097 else | |
3098 { | |
3099 CNS_fraction *= 0.992327946; // Half-time = 90min -> 1 min: (1/2)^(1/90) | |
582 | 3100 time -= 1; // slow speed looping |
560 | 3101 } |
582 | 3102 } |
560 | 3103 |
3104 // compute integer copy of CNS value | |
582 | 3105 convert_CNS_for_display(); |
3106 | |
3107 | |
3108 // calculate ceiling (for a GF high of 100%) and gradient factor | |
3109 calc_limit(1.0); | |
0 | 3110 } |
3111 | |
560 | 3112 |
3113 ////////////////////////////////////////////////////////////////////////////// | |
582 | 3114 // calc_CNS_increment |
560 | 3115 // |
582 | 3116 // Input: char_ppO2 : current ppO2 [decibars] |
3117 // tissue_increment : time increment and tissue selector | |
3118 // | |
3119 // Output: CNS_fraction_inc : increment of the CNS value | |
560 | 3120 // |
582 | 3121 void calc_CNS_increment(void) |
560 | 3122 { |
582 | 3123 overlay float time_factor = 1.0; // default is 2sec |
3124 | |
3125 assert( char_ppO2 > 15 ); | |
3126 | |
560 | 3127 // adjust time factor if minute-based stepping is commanded, mask out flag bit |
582 | 3128 if( tissue_increment & TIME_MASK ) time_factor = 30.0 * (float)(tissue_increment & TIME_MASK); |
3129 | |
3130 //------------------------------------------------------------------------ | |
3131 // Don't increase CNS below 0.5 bar, but keep it steady. | |
3132 if (char_ppO2 < 50) CNS_fraction_inc = 0; // no CNS increase below 0.5 bar ppO2 | |
3133 //------------------------------------------------------------------------ | |
3134 // Below (and including) 1.60 bar | |
3135 else if (char_ppO2 < 61) CNS_fraction_inc = time_factor/(-533.07 * char_ppO2 + 54000.0); | |
3136 else if (char_ppO2 < 71) CNS_fraction_inc = time_factor/(-444.22 * char_ppO2 + 48600.0); | |
3137 else if (char_ppO2 < 81) CNS_fraction_inc = time_factor/(-355.38 * char_ppO2 + 42300.0); | |
3138 else if (char_ppO2 < 91) CNS_fraction_inc = time_factor/(-266.53 * char_ppO2 + 35100.0); | |
3139 else if (char_ppO2 < 111) CNS_fraction_inc = time_factor/(-177.69 * char_ppO2 + 27000.0); | |
3140 else if (char_ppO2 < 152) CNS_fraction_inc = time_factor/( -88.84 * char_ppO2 + 17100.0); | |
3141 else if (char_ppO2 < 167) CNS_fraction_inc = time_factor/(-222.11 * char_ppO2 + 37350.0); | |
3142 //------------------------------------------------------------------------ | |
3143 // Arieli et all.(2002): Modeling pulmonary and CNS O2 toxicity: | |
3144 // J Appl Physiol 92: 248--256, 2002, doi:10.1152/japplphysiol.00434.2001 | |
3145 // Formula (A1) based on value for 1.55 and c=20 | |
3146 // example calculation: Sqrt((1.7/1.55)^20)*0.000404 | |
3147 else if (char_ppO2 < 172) CNS_fraction_inc = time_factor*0.00102; | |
3148 else if (char_ppO2 < 177) CNS_fraction_inc = time_factor*0.00136; | |
3149 else if (char_ppO2 < 182) CNS_fraction_inc = time_factor*0.00180; | |
3150 else if (char_ppO2 < 187) CNS_fraction_inc = time_factor*0.00237; | |
3151 else if (char_ppO2 < 192) CNS_fraction_inc = time_factor*0.00310; | |
3152 else if (char_ppO2 < 198) CNS_fraction_inc = time_factor*0.00401; | |
3153 else if (char_ppO2 < 203) CNS_fraction_inc = time_factor*0.00517; | |
3154 else if (char_ppO2 < 233) CNS_fraction_inc = time_factor*0.0209; | |
3155 else CNS_fraction_inc = time_factor*0.0482; // value for 2.5 bar, used for 2.33 bar and above | |
0 | 3156 } |
3157 | |
3158 ////////////////////////////////////////////////////////////////////////////// | |
560 | 3159 // calc_CNS_planning |
0 | 3160 // |
582 | 3161 // Compute CNS increase during predicted ascent |
0 | 3162 // |
582 | 3163 // Input: internal_deco_time[], internal_deco_depth[], internal_deco_gas[] |
3164 // Output: sim_CNS_fraction | |
0 | 3165 // |
560 | 3166 void calc_CNS_planning(void) |
0 | 3167 { |
582 | 3168 // null sim_CNS_fraction |
3169 sim_CNS_fraction = 0.0; | |
3170 | |
3171 //---- CCR mode : do the full TTS at once --------------------------------- | |
560 | 3172 |
3173 if( ((char_O_deco_status & DECO_MODE_MASK) == DECO_MODE_CCR) ) | |
582 | 3174 { |
3175 overlay unsigned short t; // needs 16 bits here ! | |
560 | 3176 |
3177 // get current ppO2 from sensors or setpoint | |
582 | 3178 char_ppO2 = char_I_const_ppO2; |
560 | 3179 |
3180 // calculate CNS% for the period of additional staying at bottom depth (fTTS / delayed ascent) | |
3181 if( char_O_deco_status & DECO_ASCENT_DELAYED) | |
3182 { | |
582 | 3183 tissue_increment = char_I_extra_time; // must be limited to 127, is limited by range of char_I_extra_time |
3184 calc_CNS_increment(); // calculate the CNS increment | |
3185 sim_CNS_fraction += CNS_fraction_inc; // sum up | |
560 | 3186 } |
582 | 3187 |
560 | 3188 // get the ascent time dependent on the current plan |
3189 t = (char_O_deco_status & DECO_PLAN_ALTERNATE) ? int_O_alternate_ascenttime : int_O_ascenttime; | |
582 | 3190 |
560 | 3191 // start simulating CNS% in chunks of 127 minutes |
3192 tissue_increment = 127; | |
3193 | |
3194 while( t > 127 ) | |
3195 { | |
3196 t -= 127; // tissue_increment is limited to 127 minutes because of flag in bit 7 | |
582 | 3197 calc_CNS_increment(); // calculate CNS in chunks of full 127 minutes |
3198 sim_CNS_fraction += CNS_fraction_inc; // sum up | |
560 | 3199 } |
3200 | |
3201 tissue_increment = (char)t; // get the remaining minutes <= 127 | |
582 | 3202 calc_CNS_increment(); // calculate CNS for the remaining minutes |
3203 sim_CNS_fraction += CNS_fraction_inc; // sum up | |
3204 } | |
560 | 3205 else //---- OC mode and pSCR without sensors: have to follow all gas switches... ----- |
582 | 3206 { |
560 | 3207 overlay float float_actual_ppO2; |
3208 overlay float abs_pres; | |
3209 | |
3210 overlay unsigned char stop_depth; | |
3211 overlay unsigned char last_gas; | |
582 | 3212 overlay unsigned char i; // stop table index |
3213 | |
3214 | |
560 | 3215 // retrieve bottom gas: 1-5 for the configured gases or 0 for the manually set gas |
3216 last_gas = sim_gas_last_used = sim_gas_first_used; | |
3217 | |
3218 // get the calc_N2/He/O2_ratios of the bottom gas | |
582 | 3219 gas_set_ratios(); |
560 | 3220 |
3221 // calculate absolute pressure | |
3222 abs_pres = pres_surface + bottom_depth * METER_TO_BAR; | |
582 | 3223 |
3224 // calculate OC ppO2 (ppWater omitted here on purpose) | |
3225 float_actual_ppO2 = abs_pres * sim_O2_ratio; | |
3226 | |
3227 // correct ppO2 in case of pSCR mode by drop | |
3228 if( char_O_deco_status & DECO_MODE_PSCR ) float_actual_ppO2 -= sim_pSCR_drop; | |
3229 | |
3230 // convert ppO2 from float to char | |
3231 if ( float_actual_ppO2 < 0.0 ) char_ppO2 = 0; | |
3232 else if ( float_actual_ppO2 > 2.545 ) char_ppO2 = 255; | |
3233 else char_ppO2 = (unsigned char)(100 * float_actual_ppO2 + 0.5); | |
3234 | |
560 | 3235 |
3236 // simulate extended bottom time (fTTS) / delay before ascent (bailout) if configured | |
3237 if( char_O_deco_status & DECO_ASCENT_DELAYED ) | |
3238 { | |
582 | 3239 tissue_increment = char_I_extra_time; // must be limited to 127, is limited by range of char_I_extra_time |
3240 calc_CNS_increment(); // calculate the CNS increment | |
3241 sim_CNS_fraction += CNS_fraction_inc; // sum up | |
560 | 3242 } |
3243 | |
582 | 3244 |
560 | 3245 // For simplicity reason (non-linearity of the relation between ppO2 and CNS increments), the |
3246 // whole ascent is calculated with bottom ppO2. This errs, but it does so to the safe side. | |
582 | 3247 |
560 | 3248 // calculate ascent time (integer division and generous round-up) |
3249 tissue_increment = bottom_depth / char_I_ascent_speed + 1; | |
582 | 3250 |
3251 // ** commented out - not needed when char_I_ascent_speed is limited to a minimum | |
3252 // ** of 2.something, it is indeed limited to a minimum of 5. | |
560 | 3253 // |
3254 // // limit tissue_increment to 127 minutes | |
582 | 3255 // if( tissue_increment > 127 ) tissue_increment = 127; |
560 | 3256 |
3257 // simulate the CNS increase | |
582 | 3258 calc_CNS_increment(); // calculate the CNS increment |
3259 sim_CNS_fraction += CNS_fraction_inc; // sum up | |
3260 | |
3261 | |
3262 //---- Stops --------------------------------------------------------- | |
560 | 3263 |
582 | 3264 for(i=0; i<NUM_STOPS; ++i) |
3265 { | |
560 | 3266 // get the depth of the stop |
3267 stop_depth = internal_deco_depth[i]; | |
3268 | |
3269 // did we reach the last entry (depth = 0)? if yes, done | |
3270 if (stop_depth == 0) break; | |
3271 | |
3272 // get the duration of the stop and the gas breathed | |
3273 tissue_increment = internal_deco_time[i]; | |
582 | 3274 sim_gas_last_used = internal_deco_gas[i]; |
3275 | |
3276 // do we have a gas switch? | |
3277 if( sim_gas_last_used != last_gas ) | |
3278 { | |
3279 // yes - get new calculation ratios | |
3280 gas_set_ratios(); | |
560 | 3281 |
3282 // remember new gas as last gas | |
3283 last_gas = sim_gas_last_used; | |
3284 } | |
3285 | |
582 | 3286 // calculate absolute pressure at stop depth |
560 | 3287 abs_pres = pres_surface + stop_depth * METER_TO_BAR; |
582 | 3288 |
3289 // calculate OC ppO2 (ppWater omitted here on purpose) | |
3290 float_actual_ppO2 = abs_pres * sim_O2_ratio; | |
3291 | |
3292 // correct ppO2 in case of pSCR mode by drop | |
3293 if( char_O_deco_status & DECO_MODE_PSCR ) float_actual_ppO2 -= sim_pSCR_drop; | |
3294 | |
3295 // convert ppO2 from float to char | |
3296 if ( float_actual_ppO2 < 0.0 ) char_ppO2 = 0; | |
3297 else if ( float_actual_ppO2 > 2.545 ) char_ppO2 = 255; | |
3298 else char_ppO2 = (unsigned char)(100 * float_actual_ppO2 + 0.5); | |
3299 | |
560 | 3300 // ** Currently, stop times per stop entry are limited to 99 minutes in update_deco_table(), |
3301 // ** so the following code block is not needed at times. | |
3302 // | |
582 | 3303 // // tissue_increment is limited to 127 when fed to calc_CNS_increment(), |
560 | 3304 // // so if the stop is longer than 127 minutes (but not longer than 254 minutes!) |
3305 // // we need to calculate the CNS in two chunks. | |
3306 // if( tissue_increment > 127) | |
3307 // { | |
582 | 3308 // tissue_increment -= 127; // subtract full 127 minutes and do the "remaining" minutes first |
3309 // calc_CNS_increment(); // calculate the CNS increment | |
3310 // sim_CNS_fraction += CNS_fraction_inc; // sum up | |
3311 // tissue_increment = 127; // catch up with the previously subtracted full 127 minutes | |
560 | 3312 // } |
3313 | |
582 | 3314 // calculate CNS% for the stop |
3315 calc_CNS_increment(); // calculate the CNS increment | |
3316 sim_CNS_fraction += CNS_fraction_inc; // sum up | |
3317 } | |
3318 } | |
0 | 3319 } |
3320 | |
560 | 3321 |
0 | 3322 ////////////////////////////////////////////////////////////////////////////// |
560 | 3323 // gas_volumes |
3324 // | |
3325 // calculates volumes and required tank fill pressures for each gas. | |
0 | 3326 // |
582 | 3327 // Input: bottom_depth depth of the bottom segment |
3328 // char_I_bottom_time duration of the bottom segment | |
3329 // char_I_extra_time extra bottom time for fTTS / delayed ascent | |
3330 // float_ascent_speed ascent speed, in meters/minute | |
3331 // sim_gas_first_used the bottom gas (1-5 for configured gases, 0 for the manual gas) | |
3332 // internal_deco_depth[] depth of the stops | |
3333 // internal_deco_time[] duration of the stops | |
3334 // internal_deco_gas[] gas breathed at the stops | |
3335 // char_I_bottom_usage gas consumption during bottom part and initial ascent, in liters/minute | |
3336 // char_I_deco_usage gas consumption during stops and following ascents, in liters/minute | |
3337 // char_I_tank_size[] size of the tanks for gas 1-5, in liters | |
3338 // char_I_tank_pres_fill[] fill pressure of the tanks | |
0 | 3339 // |
582 | 3340 // Output: int_O_gas_volumes[] amount of gas needed, in liters |
3341 // int_O_tank_pres_need[] in bar, + flags for fast evaluation by dive mode warnings: | |
3342 // 2^15: pres_need >= pres_fill | |
3343 // 2^14: pres_need >= press_fill * GAS_NEEDS_ATTENTION_THRESHOLD | |
3344 // 2^11: pres_need == 0 | |
3345 // 2^10: pres_need invalid | |
0 | 3346 // |
560 | 3347 void gas_volumes_helper(void) |
3348 { | |
3349 // Calculate the gas volume needed at a given depth, time and usage (SAC rate). | |
3350 // We use 1.0 for the surface pressure to have stable results when used through | |
3351 // the deco calculator (simulation mode). | |
3352 volume = (float_depth * METER_TO_BAR + 1.0) * float_time * usage; | |
582 | 3353 |
560 | 3354 return; |
3355 } | |
3356 | |
3357 void gas_volumes(void) | |
0 | 3358 { |
560 | 3359 overlay float volumes[NUM_GAS]; |
3360 | |
3361 overlay unsigned char stop_gas; | |
3362 overlay unsigned char stop_gas_last; | |
3363 overlay unsigned char stop_time; | |
3364 overlay unsigned char stop_depth; | |
3365 overlay unsigned char stop_depth_last; | |
3366 overlay unsigned char i; | |
3367 | |
582 | 3368 |
3369 //---- initialization ---------------------------------------------------- | |
3370 | |
560 | 3371 // null the volume accumulators |
582 | 3372 for(i=0; i<NUM_GAS; ++i) volumes[i] = 0.0; |
560 | 3373 |
3374 // quit for CCR and pSCR mode | |
3375 if( char_O_deco_status & DECO_MODE_LOOP ) goto done; | |
3376 | |
3377 | |
582 | 3378 //---- bottom demand ----------------------------------------------------- |
3379 | |
560 | 3380 // sim_gas_first_used : gas used during bottom segment (0, 1-5) |
3381 // bottom_depth: depth of the bottom segment | |
582 | 3382 |
560 | 3383 assert(0 <= sim_gas_first_used && sim_gas_first_used <= NUM_GAS); |
3384 | |
3385 // get the gas used during bottom segment | |
3386 stop_gas_last = stop_gas = sim_gas_first_used; | |
582 | 3387 |
560 | 3388 // set the usage (SAC rate) to bottom usage rate for bottom part and initial ascent |
3389 usage = char_I_bottom_usage; | |
582 | 3390 |
560 | 3391 // volumes are only calculated for gases 1-5, but not the manually configured one |
3392 if( stop_gas ) | |
3393 { | |
3394 // set the bottom depth | |
3395 float_depth = (float)bottom_depth; | |
582 | 3396 |
560 | 3397 // calculate either bottom segment or just the fTTS/bailout delayed part |
3398 if( char_O_main_status & DECO_BOTTOM_CALCULATE ) | |
3399 { | |
3400 // duration of bottom segment | |
3401 float_time = (float)char_I_bottom_time; | |
3402 } | |
3403 else | |
3404 { | |
3405 // duration of delayed ascent | |
3406 float_time = (float)char_I_extra_time; | |
3407 } | |
582 | 3408 |
560 | 3409 // calculate gas demand |
3410 gas_volumes_helper(); | |
582 | 3411 |
560 | 3412 // take result |
3413 volumes[stop_gas-1] = volume; | |
3414 } | |
582 | 3415 |
560 | 3416 // initialize stop index with first stop |
3417 i = 0; | |
3418 | |
3419 //---- initial ascent demand --------------------------------------------- | |
582 | 3420 |
560 | 3421 // stop_gas : gas from bottom segment |
582 | 3422 // bottom_depth : depth of the bottom segment |
560 | 3423 // internal_deco_depth[i=0]: depth of the first stop, may be 0 if no stop exists |
582 | 3424 |
560 | 3425 // get the data of the first stop |
3426 stop_depth = internal_deco_depth[i]; | |
3427 stop_time = internal_deco_time[i]; | |
582 | 3428 |
560 | 3429 // volumes are only calculated for gases 1-5, but not the manually configured one |
3430 if( stop_gas ) | |
3431 { | |
3432 // compute distance between bottom and first stop | |
3433 float_depth = (float)bottom_depth - (float)stop_depth; | |
582 | 3434 |
560 | 3435 // initial ascent exists only if ascent distance is > 0 |
3436 if( float_depth > 0.0 ) | |
3437 { | |
3438 // compute ascent time | |
3439 float_time = float_depth / float_ascent_speed; | |
582 | 3440 |
560 | 3441 // compute average depth between bottom and first stop |
3442 float_depth = (float)bottom_depth - float_depth * 0.5; | |
3443 | |
3444 // calculate gas demand | |
3445 gas_volumes_helper(); | |
3446 | |
3447 // add result | |
3448 volumes[stop_gas-1] += volume; | |
3449 } | |
3450 } | |
3451 | |
3452 // switch the usage (SAC rate) to deco usage rate | |
3453 // for stops, intermediate and final ascent | |
3454 usage = char_I_deco_usage; | |
582 | 3455 |
560 | 3456 // is there a (first) stop? if yes, goto stops processing |
3457 if( stop_depth ) goto stops; | |
582 | 3458 |
560 | 3459 // add demand of a 3 minutes safety stop at 5 meters, at least for contingency... |
3460 float_time = 3.0; | |
3461 float_depth = 5.0; | |
3462 | |
3463 // calculate gas demand | |
3464 gas_volumes_helper(); | |
3465 | |
3466 // add result | |
3467 volumes[stop_gas-1] += volume; | |
3468 | |
3469 // proceed to volume conversion and pressure calculations | |
582 | 3470 goto done; |
3471 | |
3472 | |
560 | 3473 //---- intermediate ascent demand --------------------------------------- |
3474 inter_ascents: | |
3475 | |
3476 // store last stop depth and gas | |
3477 stop_depth_last = stop_depth; | |
3478 stop_gas_last = stop_gas; | |
582 | 3479 |
560 | 3480 // check if we are at the end of the stops table |
3481 if( i < NUM_STOPS-1 ) | |
3482 { | |
3483 // there are more entries - get the next stop data | |
3484 i++; | |
3485 | |
3486 // get the next stop depth | |
3487 stop_depth = internal_deco_depth[i]; | |
3488 | |
3489 // check if there is indeed another stop, | |
3490 // if not (depth = 0) treat as end of table | |
3491 if( stop_depth == 0 ) goto end_of_table; | |
3492 | |
3493 // get the next stop duration | |
3494 stop_time = internal_deco_time[i]; | |
3495 } | |
3496 else | |
3497 { | |
3498 end_of_table: | |
3499 | |
3500 // End of the stops table reached or no more stops: Split the remaining | |
3501 // ascent into an intermediate ascent and a final ascent by creating a | |
3502 // dummy stop at the usual last deco stop depth. Stop gas doesn't change. | |
3503 stop_time = 0; | |
3504 stop_depth = char_I_depth_last_deco; | |
3505 } | |
3506 | |
3507 // volumes are only calculated for gases 1-5, but not the manually configured one | |
3508 if( stop_gas_last ) | |
3509 { | |
3510 // compute distance between the two stops: | |
3511 // last stop will always be deeper than current stop | |
3512 float_depth = (float)(stop_depth_last - stop_depth); | |
3513 | |
3514 // compute ascent time | |
3515 float_time = float_depth / float_ascent_speed; | |
582 | 3516 |
560 | 3517 // compute average depth between the two stops |
3518 float_depth = (float)stop_depth_last - float_depth * 0.5; | |
3519 | |
3520 // calculate gas demand | |
3521 gas_volumes_helper(); | |
3522 | |
3523 // add result | |
3524 volumes[stop_gas_last-1] += volume; | |
3525 } | |
3526 | |
3527 | |
3528 //---- next stop demand ------------------------------------------------- | |
3529 stops: | |
582 | 3530 |
560 | 3531 // convert depth of the stop |
3532 float_depth = (float)stop_depth; | |
582 | 3533 |
560 | 3534 // get the next gas |
3535 stop_gas = internal_deco_gas[i]; | |
582 | 3536 |
560 | 3537 // do we we have a gas change? |
3538 if( stop_gas_last && (stop_gas != stop_gas_last) ) | |
3539 { | |
3540 // yes - spend an additional char_I_gas_change_time on the old gas | |
3541 float_time = (float)char_I_gas_change_time; | |
582 | 3542 |
560 | 3543 // calculate gas demand |
3544 gas_volumes_helper(); | |
3545 | |
3546 // add result | |
3547 volumes[stop_gas_last-1] += volume; | |
3548 } | |
582 | 3549 |
560 | 3550 // calculate and add demand on new gas for the full stop duration |
3551 if( stop_gas ) | |
3552 { | |
3553 // get the duration of the stop | |
3554 float_time = (float)stop_time; | |
582 | 3555 |
560 | 3556 // calculate gas demand |
3557 gas_volumes_helper(); | |
3558 | |
3559 // add result to last gas | |
3560 volumes[stop_gas-1] += volume; | |
3561 } | |
3562 | |
3563 // continue with the next intermediate ascent if this was not the last stop | |
3564 if( stop_depth > char_I_depth_last_deco ) goto inter_ascents; | |
3565 | |
3566 | |
3567 //---- final ascent demand ----------------------------------------------- | |
3568 final_ascent: | |
3569 | |
3570 // float_depth: depth of last stop | |
3571 // stop_gas : gas from last stop (0 or 1-5) | |
582 | 3572 |
560 | 3573 // volumes are only calculated for gases 1-5, but not the manually configured one |
3574 if( stop_gas ) | |
3575 { | |
3576 // set ascent time according to an ascent speed of 1 meter per minute | |
3577 float_time = float_depth; | |
582 | 3578 |
560 | 3579 // set half-way depth |
3580 float_depth *= 0.5; | |
582 | 3581 |
560 | 3582 // calculate gas demand |
3583 gas_volumes_helper(); | |
3584 | |
3585 // add result | |
3586 volumes[stop_gas-1] += volume; | |
3587 } | |
3588 | |
3589 | |
582 | 3590 //---- convert results for the assembler interface ----------------------------- |
560 | 3591 done: |
3592 | |
582 | 3593 for(i=0; i<NUM_GAS; ++i) |
560 | 3594 { |
582 | 3595 if( volumes[i] >= 65534.5 ) |
560 | 3596 { |
3597 int_O_gas_volumes[i] = 65535; | |
3598 int_O_tank_pres_need[i] = 999 + INT_FLAG_WARNING; // 999 bar + warning flag for > pres_fill | |
3599 } | |
3600 else | |
3601 { | |
3602 overlay unsigned short tank_pres_fill = 10.0 * (unsigned short)char_I_tank_pres_fill[i]; | |
582 | 3603 |
560 | 3604 // No distinct rounding done here because volumes are not accurate to the single liter anyhow |
582 | 3605 |
560 | 3606 // convert gas volumes to integers |
582 | 3607 int_O_gas_volumes[i] = (unsigned short)volumes[i]; |
3608 | |
560 | 3609 // compute how much pressure in the tank will be needed [in bar] (integer-division) |
3610 int_O_tank_pres_need[i] = (unsigned short)(int_O_gas_volumes[i] / char_I_tank_size[i]); | |
582 | 3611 |
560 | 3612 // limit to 999 bar because of display constraints |
3613 if( int_O_tank_pres_need[i] > 999 ) int_O_tank_pres_need[i] = 999; | |
582 | 3614 |
560 | 3615 // set flags for fast evaluation by divemode check for warnings |
3616 if ( int_O_tank_pres_need[i] == 0 ) | |
3617 { | |
3618 // set flag for 0 bar | |
3619 int_O_tank_pres_need[i] |= INT_FLAG_ZERO; | |
3620 } | |
3621 else if( int_O_tank_pres_need[i] >= tank_pres_fill ) | |
3622 { | |
3623 // set warning flag | |
3624 int_O_tank_pres_need[i] |= INT_FLAG_WARNING; | |
3625 | |
3626 } | |
3627 else if( int_O_tank_pres_need[i] >= tank_pres_fill * GAS_NEEDS_ATTENTION_THRESHOLD ) | |
3628 { | |
3629 // set pre-warning flag | |
582 | 3630 int_O_tank_pres_need[i] |= INT_FLAG_ATTENTION; |
3631 } | |
560 | 3632 |
3633 // set invalid flag if there is an overflow in the stops table | |
3634 if( char_O_deco_warnings & DECO_WARNING_STOPTABLE_OVERFLOW ) | |
3635 int_O_tank_pres_need[i] |= INT_FLAG_INVALID; | |
3636 | |
3637 } // if( volumes[i] ) | |
3638 } // for | |
0 | 3639 } |
3640 | |
3641 ////////////////////////////////////////////////////////////////////////////// | |
560 | 3642 |
582 | 3643 void convert_CNS_for_display(void) |
0 | 3644 { |
560 | 3645 if ( CNS_fraction < 0.01 ) int_O_CNS_fraction = 0; |
3646 else if ( CNS_fraction >= 9.985 ) int_O_CNS_fraction = 999 + INT_FLAG_WARNING; | |
3647 else | |
3648 { | |
3649 // convert float to integer | |
3650 int_O_CNS_fraction = (unsigned short)(100 * CNS_fraction + 0.5); | |
582 | 3651 |
3652 // set warnings | |
3653 if ( int_O_CNS_fraction >= CNS_WARNING_THRESHOLD ) int_O_CNS_fraction |= INT_FLAG_WARNING; | |
3654 else if ( int_O_CNS_fraction >= CNS_ATTENTION_THRESHOLD ) int_O_CNS_fraction |= INT_FLAG_ATTENTION; | |
3655 } | |
3656 } | |
3657 | |
3658 ////////////////////////////////////////////////////////////////////////////// | |
3659 | |
3660 void convert_sim_CNS_for_display(void) | |
3661 { | |
3662 if ( sim_CNS_fraction < 0.01 ) int_sim_CNS_fraction = 0; | |
3663 else if ( sim_CNS_fraction >= 9.985 ) int_sim_CNS_fraction = 999 + INT_FLAG_WARNING; | |
3664 else | |
3665 { | |
3666 // convert float to integer | |
3667 int_sim_CNS_fraction = (unsigned short)(100 * sim_CNS_fraction + 0.5); | |
3668 | |
3669 // set warning flag if CNS is >= 100% | |
3670 if ( int_sim_CNS_fraction >= CNS_WARNING_THRESHOLD ) int_sim_CNS_fraction |= INT_FLAG_WARNING; | |
3671 else if ( int_sim_CNS_fraction >= CNS_ATTENTION_THRESHOLD ) int_sim_CNS_fraction |= INT_FLAG_ATTENTION; | |
3672 | |
3673 // set invalid flag if there is an overflow in the stops table | |
3674 if( char_O_deco_warnings & DECO_WARNING_STOPTABLE_OVERFLOW ) int_sim_CNS_fraction |= INT_FLAG_INVALID; | |
560 | 3675 } |
0 | 3676 } |
3677 | |
3678 ////////////////////////////////////////////////////////////////////////////// | |
582 | 3679 // push_tissues_to_vault & pull_tissues_from_vault |
3680 // | |
3681 // ATTENTION: Do not use from inside the deco engine! | |
3682 // The vault is exclusively reserved to back-up and restore the real | |
3683 // tissues and related data when entering / leaving simulation mode! | |
3684 // | |
3685 | |
3686 void push_tissues_to_vault(void) | |
0 | 3687 { |
582 | 3688 overlay unsigned char x; |
3689 | |
3690 cns_vault_float = CNS_fraction; | |
560 | 3691 deco_warnings_vault = char_O_deco_warnings; |
0 | 3692 |
582 | 3693 for (x=0;x<NUM_COMP;x++) |
3694 { | |
3695 pres_tissue_N2_vault[x] = pres_tissue_N2[x]; | |
3696 pres_tissue_He_vault[x] = pres_tissue_He[x]; | |
3697 } | |
0 | 3698 } |
3699 | |
582 | 3700 void pull_tissues_from_vault(void) |
0 | 3701 { |
582 | 3702 overlay unsigned char x; |
3703 | |
3704 CNS_fraction = cns_vault_float; | |
560 | 3705 char_O_deco_warnings = deco_warnings_vault; |
582 | 3706 |
3707 convert_CNS_for_display(); | |
3708 | |
560 | 3709 locked_GF_step_norm = GF_delta / low_depth_norm; |
3710 locked_GF_step_alt = GF_delta / low_depth_alt; | |
3711 | |
582 | 3712 for (x=0; x<NUM_COMP; x++) |
3713 { | |
3714 pres_tissue_N2[x] = pres_tissue_N2_vault[x]; | |
3715 pres_tissue_He[x] = pres_tissue_He_vault[x]; | |
3716 } | |
0 | 3717 } |
3718 | |
3719 ////////////////////////////////////////////////////////////////////////////// | |
3720 // | |
3721 #ifndef CROSS_COMPILE | |
3722 void main() {} | |
3723 #endif |