Mercurial > public > hwos_code
annotate src/p2_deco.c @ 295:7027d735ac62
NEW CCR decoplan: 2nd pass to display bailout stops and gas volumes
author | jDG |
---|---|
date | Sun, 31 May 2015 02:14:09 +0200 |
parents | 30edd177016a |
children | 2fe34fc0e2ae |
rev | line source |
---|---|
0 | 1 // ************************************************************** |
2 // p2_deco.c | |
3 // | |
4 // Created on: 12.05.2009 | |
5 // Author: chsw | |
6 // | |
7 // ************************************************************** | |
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 // ***************************** | |
29 // ** I N T R O D U C T I O N ** | |
30 // ***************************** | |
31 // | |
32 // OSTC | |
33 // | |
34 // code: | |
35 // p2_deco_main_c_v101.c | |
36 // part2 of the OSTC code | |
37 // code with constant O2 partial pressure routines | |
38 // under construction !! | |
39 // | |
40 // summary: | |
41 // decompression routines | |
42 // for the OSTC experimental project | |
43 // written by Christian Weikamp | |
44 // last revision __________ | |
45 // comments added _________ | |
46 // | |
47 // additional files: | |
48 // p2_tables_v100.romdata (other files) | |
49 // 18f4685_ostc_v100.lkr (linker script) | |
50 // | |
51 // history: | |
52 // 01/03/08 v100: first release candidate | |
53 // 03/13/08 v101: start of programming ppO2 code | |
54 // 03/13/25 v101a: backup of interrim version with ppO2 calculation | |
55 // 03/13/25 v101: open circuit gas change during deco | |
56 // 03/13/25 v101: CNS_fraction calculation | |
57 // 03/13/26 v101: optimization of tissue calc routines | |
58 // 07/xx/08 v102a: debug of bottom time routine | |
59 // 09/xx/08 v102d: Gradient Factor Model implemenation | |
60 // 10/10/08 v104: renamed to build v103 for v118 stable | |
61 // 10/14/08 v104: integration of char_I_depth_last_deco for Gradient Model | |
62 // 03/31/09 v107: integration of FONT Incon24 | |
63 // 05/23/10 v109: 5 gas changes & 1 min timer | |
64 // 07/13/10 v110: cns vault added | |
65 // 12/25/10 v110: split in three files (deco.c, main.c, definitions.h) | |
66 // 2011/01/20: [jDG] Create a common file included in ASM and C code. | |
67 // 2011/01/24: [jDG] Make ascenttime an short. No more overflow! | |
68 // 2011/01/25: [jDG] Fusion deco array for both models. | |
69 // 2011/01/25: [jDG] Use CF(54) to reverse deco order. | |
70 // 2011/02/11: [jDG] Reworked gradient-factor implementation. | |
71 // 2011/02/15: [jDG] Fixed inconsistencies introduced by gas switch delays. | |
72 // 2011/03/21: [jDG] Added gas consumption (CF56 & CF57) evaluation for OCR mode. | |
73 // 2011/04/15: [jDG] Store low_depth in 32bits (w/o rounding), for a better stability. | |
74 // 2011/04/25: [jDG] Added 1mn mode for CNS calculation, to allow it for decoplanning. | |
75 // 2011/04/27: [jDG] Fixed char_O_gradient_factor calculation when model uses gradient-factor. | |
76 // 2011/05/02: [jDG] Added "Future TTS" function (CF58). | |
77 // 2011/05/17: [jDG] Various cleanups. | |
78 // 2011/08/08: [jDG] Computes CNS during deco planning ascent. | |
79 // 2011/11/24: [jDG] Slightly faster and better NDL computation. | |
80 // 2011/12/17: [mH] Remove of the useless debug stuff | |
81 // 2012/02/24: [jDG] Remove missed stop bug. | |
82 // 2012/02/25: [jDG] Looking for a more stable LOW grad factor reference. | |
83 // 2012/09/10: [mH] Fill char_O_deco_time_for_log for logbook write | |
84 // 2012/10/05: [jDG] Better deco_gas_volumes accuracy (average depth, switch between stop). | |
85 // 2013/03/05: [jDG] Should vault low_depth too. | |
86 // 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
|
87 // 2013/05/08: [jDG] A. Salm remark: NOAA tables for CNS are in ATA, not bar. |
115
72259a79eac2
FIX: Gas volume computation when using several travel mix.
heinrichsweikamp
parents:
114
diff
changeset
|
88 // 2013/12/21: [jDG] Fix CNS calculation in decoplan w/o marked gas switch |
72259a79eac2
FIX: Gas volume computation when using several travel mix.
heinrichsweikamp
parents:
114
diff
changeset
|
89 // 2014/06/16: [jDG] Fix Helium diluant. Fix volumes with many travel mix. |
123 | 90 // 2014/06/29: [mH] Compute int_O_ceiling |
0 | 91 // |
92 // TODO: | |
93 // | |
94 // Literature: | |
95 // Bühlmann, Albert: Tauchmedizin; 4. Auflage [2002]; | |
96 // 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 | |
97 // Morrison, Stuart; 2000; DIY DECOMPRESSION; http://www.lizardland.co.uk/DIYDeco.html | |
98 // Balthasar, Steffen; Dekompressionstheorie I: Neo Haldane Modelle; http://www.txfreak.de/dekompressionstheorie_1.pdf | |
99 // Baker, Erik C.; Clearing Up The Confusion About "Deep Stops" | |
100 // Baker, Erik C.; Understanding M-values; http://www.txfreak.de/understanding_m-values.pdf | |
101 // | |
102 // | |
103 | |
104 // ********************* | |
105 // ** I N C L U D E S ** | |
106 // ********************* | |
107 #include <math.h> | |
108 | |
109 // *********************************************** | |
110 // ** V A R I A B L E S D E F I N I T I O N S ** | |
111 // *********************************************** | |
112 | |
113 #include "p2_definitions.h" | |
114 #define TEST_MAIN | |
115 #include "shared_definitions.h" | |
116 | |
117 // Water vapour partial pressure in the lumb. | |
118 #define ppWater 0.0627 | |
119 #define METER_TO_BAR 0.09985 | |
120 #define BAR_TO_METER 10.0150 // (1.0/METER_TO_BAR) | |
121 | |
122 // Surface security factor | |
123 #define SURFACE_DESAT_FACTOR 0.7042 | |
124 | |
125 // ************************* | |
126 // ** P R O T O T Y P E S ** | |
127 // ************************* | |
128 | |
129 static void calc_hauptroutine(void); | |
130 static void calc_nullzeit(void); | |
131 | |
132 static void calc_tissue(PARAMETER unsigned char period); | |
133 static void calc_limit(void); | |
134 | |
135 static void clear_tissue(void); | |
136 static void calc_ascenttime(void); | |
137 static void update_startvalues(void); | |
138 static void clear_deco_table(void); | |
139 static unsigned char update_deco_table(void); | |
140 | |
141 static void sim_tissue(PARAMETER unsigned char period); | |
142 static void sim_limit(PARAMETER float GF_current); | |
143 static void sim_extra_time(void); | |
144 static void calc_dive_interval(void); | |
145 | |
146 static void calc_gradient_factor(void); | |
147 static void calc_wo_deco_step_1_min(void); | |
148 | |
149 static void calc_hauptroutine_data_input(void); | |
150 static void calc_hauptroutine_update_tissues(void); | |
151 static void calc_hauptroutine_calc_deco(void); | |
152 static void sim_ascent_to_first_stop(void); | |
153 | |
154 static unsigned char gas_switch_deepest(void); | |
155 static void gas_switch_set(void); | |
156 | |
157 static unsigned char calc_nextdecodepth(void); | |
158 | |
159 //---- Bank 5 parameters ----------------------------------------------------- | |
160 #ifndef UNIX | |
161 # pragma udata bank5=0x500 | |
162 #endif | |
163 | |
164 static float GF_low; | |
165 static float GF_high; | |
166 static float GF_delta; | |
167 static float locked_GF_step; // GF_delta / low_depth | |
168 | |
169 static unsigned char temp_depth_limit; | |
170 static unsigned char low_depth; // Depth of deepest stop | |
171 | |
172 // Simulation context: used to predict ascent. | |
173 static unsigned char sim_lead_tissue_no; // Leading compatiment number. | |
174 static float sim_lead_tissue_limit; // Buhlmann tolerated pressure. | |
175 | |
176 // Real context: what we are doing now. | |
177 static float calc_lead_tissue_limit; // | |
178 | |
179 static unsigned char internal_deco_time[NUM_STOPS]; | |
180 static unsigned char internal_deco_depth[NUM_STOPS]; | |
181 | |
182 static float cns_vault; | |
183 static float low_depth_vault; | |
184 static float pres_tissue_N2_vault[NUM_COMP]; | |
185 static float pres_tissue_He_vault[NUM_COMP]; | |
186 | |
187 //---- Bank 6 parameters ----------------------------------------------------- | |
188 #ifndef UNIX | |
189 # pragma udata bank6=0x600 | |
190 #endif | |
191 | |
192 static unsigned char ci; | |
193 static float pres_respiration; | |
194 static float pres_surface; | |
195 static float temp_deco; | |
196 static float ppN2; | |
197 static float ppHe; | |
198 static float temp_tissue; | |
199 static float N2_ratio; // Breathed gas nitrogen ratio. | |
200 static float He_ratio; // Breathed gas helium ratio. | |
201 static float var_N2_a; // Bühlmann a, for current N2 tissue. | |
202 static float var_N2_b; // Bühlmann b, for current N2 tissue. | |
203 static float var_He_a; // Bühlmann a, for current He tissue. | |
204 static float var_He_b; // Bühlmann b, for current He tissue. | |
205 static float var_N2_e; // Exposition, for current N2 tissue. | |
206 static float var_He_e; // Exposition, for current He tissue. | |
207 static float var_N2_ht; // Half-time for current N2 tissue. | |
208 static float var_He_ht; // Half-time for current N2 tissue. | |
209 | |
210 static float pres_diluent; // new in v.101 | |
211 static float const_ppO2; // new in v.101 | |
212 | |
213 static unsigned char sim_gas_last_depth; // Depth of last used gas, to detected a gas switch. | |
214 static unsigned char sim_gas_last_used; // Number of last used gas, to detected a gas switch. | |
215 static unsigned short sim_dive_mins; // Simulated dive time. | |
216 static float calc_N2_ratio; // Simulated (switched) nitrogen ratio. | |
217 static float calc_He_ratio; // Simulated (switched) helium ratio. | |
218 static float CNS_fraction; // new in v.101 | |
219 static float float_saturation_multiplier; // new in v.101 | |
220 static float float_desaturation_multiplier; // new in v.101 | |
221 static float float_deco_distance; // new in v.101 | |
222 | |
223 static unsigned char deco_gas_change[NUM_GAS]; // new in v.109 | |
111 | 224 static unsigned char internal_deco_gas [NUM_STOPS]; |
0 | 225 |
226 //---- Bank 7 parameters ----------------------------------------------------- | |
227 #ifndef UNIX | |
228 # pragma udata bank7=0x700 | |
229 #endif | |
133
939f1e83c4c2
BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents:
126
diff
changeset
|
230 // Keep order of 0x700 variables |
0 | 231 float pres_tissue_N2[NUM_COMP]; |
232 float pres_tissue_He[NUM_COMP]; | |
233 float sim_pres_tissue_N2[NUM_COMP]; // 16 floats = 64 bytes. | |
234 float sim_pres_tissue_He[NUM_COMP]; // 16 floats = 64 bytes. | |
235 | |
236 //---- Bank 8 parameters ----------------------------------------------------- | |
237 #ifndef UNIX | |
238 # pragma udata overlay bank8=0x800 | |
239 static char md_pi_subst[256]; | |
240 # define C_STACK md_pi_subst // Overlay C-code data stack here, too. | |
241 #endif | |
242 | |
243 // Back to bank6 for further tmp data | |
244 #ifndef UNIX | |
245 # pragma udata bank6 | |
246 #endif | |
247 | |
248 ////////////////////////////////////////////////////////////////////////////// | |
249 ////////////////////////////////////////////////////////////////////////////// | |
250 ///////////////////////////// THE LOOKUP TABLES ////////////////////////////// | |
251 ////////////////////////////////////////////////////////////////////////////// | |
252 ////////////////////////////////////////////////////////////////////////////// | |
253 // | |
254 // End of PROM code is 17F00, So push tables on PROM top... | |
255 // | |
256 #ifndef UNIX | |
257 # pragma romdata buhlmann_tables = 0x1DD00 // Needs to be in UPPER bank. | |
258 #endif | |
259 | |
260 #include "p2_tables.romdata" // new table for deco_main_v.101 (var_N2_a modified) | |
261 | |
262 ////////////////////////////////////////////////////////////////////////////// | |
263 ////////////////////////////////////////////////////////////////////////////// | |
264 ////////////////////////////// THE SUBROUTINES /////////////////////////////// | |
265 ////////////////////////////////////////////////////////////////////////////// | |
266 ////////////////////////////////////////////////////////////////////////////// | |
267 // | |
268 // all new in v.102 | |
269 // moved from 0x0D000 to 0x0C000 in v.108 | |
270 #ifndef UNIX | |
271 # pragma code p2_deco = 0x0C000 | |
272 #endif | |
273 | |
274 ////////////////////////////////////////////////////////////////////////////// | |
275 ////////////////////////////////////////////////////////////////////////////// | |
276 /////////////////////// U T I L I T I E S ///////////////////////////////// | |
277 ////////////////////////////////////////////////////////////////////////////// | |
278 ////////////////////////////////////////////////////////////////////////////// | |
279 | |
280 ////////////////////////////////////////////////////////////////////////////// | |
281 // Bump to blue-screen when an assert is wrong | |
282 #ifdef __DEBUG | |
283 void assert_failed(PARAMETER short int line) | |
284 { | |
285 } | |
286 #endif | |
287 | |
288 ////////////////////////////////////////////////////////////////////////////// | |
289 // When calling C code from ASM context, the data stack pointer and | |
290 // frames should be reset. Bank8 is used by stack | |
291 | |
292 #ifdef CROSS_COMPILE | |
293 # define RESET_C_STACK | |
294 #else | |
295 # ifdef __DEBUG | |
296 # define RESET_C_STACK fillDataStack(); | |
297 void fillDataStack(void) | |
298 { | |
299 _asm | |
300 LFSR 1,C_STACK | |
301 MOVLW 0xCC | |
302 loop: MOVWF POSTINC1,0 | |
303 TSTFSZ FSR1L,0 | |
304 BRA loop | |
305 | |
306 LFSR 1,C_STACK | |
307 LFSR 2,C_STACK | |
308 _endasm | |
309 } | |
310 # else | |
311 # define RESET_C_STACK \ | |
312 _asm \ | |
313 LFSR 1, C_STACK \ | |
314 LFSR 2, C_STACK \ | |
315 _endasm | |
316 # endif | |
317 #endif | |
318 | |
319 ////////////////////////////////////////////////////////////////////////////// | |
320 // Fast subroutine to read timer 5. | |
321 // Note: result is in 1/32 of msecs (30,51757813µs/bit to be precise) | |
322 static unsigned short tmr5(void) | |
323 { | |
324 #ifndef CROSS_COMPILE | |
325 _asm | |
326 movff 0xf7c,PRODL // TMR5L | |
327 movff 0xf7d,PRODH // TMR5H | |
328 _endasm // result in PRODH:PRODL. | |
329 #else | |
330 return 0; | |
331 #endif | |
332 } | |
333 | |
334 | |
335 ////////////////////////////////////////////////////////////////////////////// | |
336 // read buhlmann tables A and B for compatriment ci | |
337 // | |
338 static void read_buhlmann_coefficients(void) | |
339 { | |
340 #ifndef CROSS_COMPILE | |
341 // Note: we don't use far rom pointer, because the | |
342 // 24 bits is too complex, hence we have to set | |
343 // the UPPER page ourself... | |
344 // --> Set zero if tables are moved to lower pages ! | |
345 _asm | |
346 movlw 1 | |
347 movwf TBLPTRU,0 | |
348 _endasm | |
349 #endif | |
350 | |
351 assert( ci < NUM_COMP ); | |
352 | |
353 // Use an interleaved array (AoS) to access coefficients with a | |
354 // single addressing. | |
355 { | |
356 overlay rom const float* ptr = &buhlmann_ab[4*ci]; | |
357 var_N2_a = *ptr++; | |
358 var_N2_b = *ptr++; | |
359 var_He_a = *ptr++; | |
360 var_He_b = *ptr++; | |
361 } | |
362 } | |
363 | |
364 ////////////////////////////////////////////////////////////////////////////// | |
365 // read buhlmann tables for compatriment ci | |
366 // If period == 0 : 2sec interval | |
367 // 1 : 1 min interval | |
368 // 2 : 10 min interval. | |
369 static void read_buhlmann_times(PARAMETER char period) | |
370 { | |
371 #ifndef CROSS_COMPILE | |
372 // Note: we don't use far rom pointer, because the | |
373 // 24 bits is to complex, hence we have to set | |
374 // the UPPER page ourself... | |
375 // --> Set zero if tables are moved to lower pages ! | |
376 _asm | |
377 movlw 1 | |
378 movwf TBLPTRU,0 | |
379 _endasm | |
380 #endif | |
381 | |
382 assert( ci < NUM_COMP ); | |
383 | |
384 // Integration intervals. | |
385 switch(period) | |
386 { | |
387 case 0: //---- 2 sec ----------------------------------------------------- | |
388 { | |
389 overlay rom const float* ptr = &e2secs[2*ci]; | |
390 var_N2_e = *ptr++; | |
391 var_He_e = *ptr++; | |
392 } | |
393 break; | |
394 | |
395 case 1: //---- 1 min ----------------------------------------------------- | |
396 { | |
397 overlay rom const float* ptr = &e1min[2*ci]; | |
398 var_N2_e = *ptr++; | |
399 var_He_e = *ptr++; | |
400 } | |
401 break; | |
402 | |
403 case 2: //---- 10 min ---------------------------------------------------- | |
404 { | |
405 overlay rom const float* ptr = &e10min[2*ci]; | |
406 var_N2_e = *ptr++; | |
407 var_He_e = *ptr++; | |
408 } | |
409 break; | |
410 | |
411 default: | |
412 assert(0); // Never go there... | |
413 } | |
414 } | |
415 | |
416 ////////////////////////////////////////////////////////////////////////////// | |
417 // read buhlmann tables for compatriment ci | |
418 // | |
419 static void read_buhlmann_ht(void) | |
420 { | |
421 | |
422 #ifndef CROSS_COMPILE | |
423 // Note: we don't use far rom pointer, because the | |
424 // 24 bits is to complex, hence we have to set | |
425 // the UPPER page ourself... | |
426 // --> Set zero if tables are moved to lower pages ! | |
427 _asm | |
428 movlw 1 | |
429 movwf TBLPTRU,0 | |
430 _endasm | |
431 #endif | |
432 | |
433 assert( ci < NUM_COMP ); | |
434 { | |
435 overlay rom const float* ptr = &buhlmann_ht[2*ci]; | |
436 var_N2_ht = *ptr++; | |
437 var_He_ht = *ptr++; | |
438 } | |
439 | |
440 assert( 4.0 <= var_N2_ht && var_N2_ht <= 635.0 ); | |
441 assert( 1.5099 <= var_He_ht && var_He_ht <= 240.03 ); | |
442 } | |
443 | |
444 ////////////////////////////////////////////////////////////////////////////// | |
445 // calc_nextdecodepth | |
446 // | |
447 // new in v.102 | |
448 // | |
449 // INPUT, changing during dive: | |
450 // temp_deco | |
451 // low_depth | |
452 // | |
453 // INPUT, fixed during dive: | |
454 // pres_surface | |
455 // GF_delta | |
456 // GF_high | |
457 // GF_low | |
458 // char_I_depth_last_deco | |
459 // float_deco_distance | |
460 // | |
461 // RETURN TRUE iff a stop is needed. | |
462 // | |
463 // OUTPUT | |
464 // locked_GF_step | |
465 // temp_depth_limt | |
466 // low_depth | |
467 // | |
468 static unsigned char calc_nextdecodepth(void) | |
469 { | |
470 //--- Max ascent speed --------------------------------------------------- | |
471 // Recompute leading gas limit, at current depth: | |
472 overlay float depth = (temp_deco - pres_surface) * BAR_TO_METER; | |
473 | |
474 // At most, ascent 1 minute, at 10m/min == 10.0 m. | |
475 overlay float min_depth = (depth > 10.0) ? (depth - 10.0) : 0.0; | |
476 | |
477 // Do we need to stop at current depth ? | |
478 overlay unsigned char need_stop = 0; | |
479 | |
480 assert( depth >= -0.2 ); // Allow for 200mbar of weather change. | |
481 | |
482 //---- ZH-L16 + GRADIENT FACTOR model ------------------------------------ | |
287
f342853afcd9
FIX gas_volumes: shall take stops in forward order.
jdg@air
parents:
284
diff
changeset
|
483 if( char_I_deco_model != 0 ) |
f342853afcd9
FIX gas_volumes: shall take stops in forward order.
jdg@air
parents:
284
diff
changeset
|
484 { |
0 | 485 overlay unsigned char first_stop = 0; |
486 overlay float p; | |
487 | |
488 sim_limit( GF_low ); | |
489 p = sim_lead_tissue_limit - pres_surface; | |
490 if( p <= 0.0f ) | |
491 goto no_deco_stop; // We can surface directly... | |
492 | |
493 p *= BAR_TO_METER; | |
494 if( p < min_depth ) | |
495 goto no_deco_stop; // First stop is higher than 1' ascent. | |
496 | |
497 first_stop = 3 * (short)(0.99999 + p*0.333333); | |
498 assert( first_stop < 128 ); | |
499 | |
500 // Apply correction for the shallowest stop. | |
501 if( first_stop == 3 ) // new in v104 | |
502 first_stop = char_I_depth_last_deco; // Use last 3m..6m instead. | |
503 | |
504 // Store the deepest point needing a deco stop as the LOW reference for GF. | |
505 // NOTE: following stops will be validated using this LOW-HIGH gf scale, | |
506 // so if we want to keep coherency, we should not validate this stop | |
507 // yet, but apply the search to it, as for all the following stops afterward. | |
508 if( first_stop > low_depth ) | |
509 { | |
510 low_depth = first_stop; | |
511 locked_GF_step = GF_delta / first_stop; | |
512 } | |
513 | |
514 // We have a stop candidate. | |
515 // But maybe ascending to the next stop will diminish the constraint, | |
516 // because the GF might decrease more than the preassure gradient... | |
517 while(first_stop > 0) | |
518 { | |
519 overlay unsigned char next_stop; // Next depth (0..90m) | |
520 overlay float pres_stop; // Next pressure (bar) | |
521 | |
522 // Check max speed, or reaching surface. | |
523 if( first_stop <= min_depth ) | |
524 goto no_deco_stop; | |
525 | |
526 if( first_stop <= char_I_depth_last_deco ) // new in v104 | |
527 next_stop = 0; | |
528 else if( first_stop == 6 ) | |
529 next_stop = char_I_depth_last_deco; | |
530 else | |
531 next_stop = first_stop - 3; // Index of next (upper) stop. | |
532 | |
533 // Just a check we are indeed above LOW ref. | |
534 assert( next_stop < low_depth ); | |
535 | |
536 // Total preassure at the new stop candidate: | |
537 pres_stop = next_stop * METER_TO_BAR | |
287
f342853afcd9
FIX gas_volumes: shall take stops in forward order.
jdg@air
parents:
284
diff
changeset
|
538 + pres_surface; |
0 | 539 |
540 // Keep GF_low until a first stop depth is found: | |
541 sim_limit( GF_high - next_stop * locked_GF_step ); | |
542 | |
543 // Check upper limit (lowest pressure tolerated): | |
544 if( sim_lead_tissue_limit >= pres_stop ) // check if ascent to next deco stop is ok | |
545 goto deco_stop_found; | |
546 | |
547 // Else, validate that stop and loop... | |
548 first_stop = next_stop; | |
549 } | |
550 assert( first_stop == 0 ); | |
551 | |
552 no_deco_stop: | |
287
f342853afcd9
FIX gas_volumes: shall take stops in forward order.
jdg@air
parents:
284
diff
changeset
|
553 temp_depth_limit = min_depth; |
0 | 554 goto done; |
555 | |
556 // next stop is the last validated depth found, aka first_stop | |
557 deco_stop_found: | |
558 need_stop = 1; // Hit. | |
559 temp_depth_limit = first_stop; // Stop depth, in meter. | |
560 | |
561 done: | |
562 ; | |
563 } | |
564 else //---- ZH-L16 model ------------------------------------------------- | |
565 { | |
566 overlay float pres_gradient; | |
567 | |
568 // Original model | |
569 // optimized in v.101 | |
570 // char_I_depth_last_deco included in v.101 | |
571 | |
572 // Compute sim_lead_tissue_limit too, but just once. | |
573 sim_limit(1.0); | |
574 | |
575 pres_gradient = sim_lead_tissue_limit - pres_surface; | |
576 if (pres_gradient >= 0) | |
577 { | |
578 pres_gradient *= BAR_TO_METER/3; // Bar --> stop number; | |
579 temp_depth_limit = 3 * (short) (pres_gradient + 0.99); // --> metre : depth for deco | |
580 need_stop = 1; // Hit. | |
581 | |
582 // Implement last stop at 4m/5m/6m... | |
583 if( temp_depth_limit == 3 ) | |
584 temp_depth_limit = char_I_depth_last_deco; | |
585 } | |
586 else | |
587 temp_depth_limit = 0; | |
588 } | |
589 | |
590 //---- Check gas change -------------------------------------------------- | |
591 need_stop |= gas_switch_deepest(); // Update temp_depth_limit if there is a change, | |
592 | |
593 return need_stop; | |
594 } | |
595 | |
596 ////////////////////////////////////////////////////////////////////////////// | |
597 // copy_deco_table | |
598 // | |
599 // Buffer the stops, once computed, so we can continue to display them | |
600 // while computing the next set. | |
601 // | |
602 static void copy_deco_table(void) | |
603 { | |
604 // Copy depth of the first (deepest) stop, because when reversing | |
605 // order, it will be hard to find... | |
111 | 606 char_O_first_deco_depth = internal_deco_depth[0]; |
0 | 607 char_O_first_deco_time = internal_deco_time [0]; |
608 | |
609 { | |
610 overlay unsigned char x, y; | |
611 | |
612 for(x=0; x<NUM_STOPS; x++) | |
613 { | |
614 char_O_deco_depth[x] = internal_deco_depth[x]; | |
615 char_O_deco_time [x] = internal_deco_time [x]; | |
111 | 616 char_O_deco_gas [x] = internal_deco_gas [x]; |
0 | 617 } |
618 | |
619 //Now fill the char_O_deco_time_for_log array | |
620 //---- First: search the first non-null depth | |
621 for(x=(NUM_STOPS-1); x != 0; --x) | |
622 if( internal_deco_depth[x] != 0 ) break; | |
623 | |
624 //---- Second: copy to output table (in reverse order) | |
625 for(y=0; y<NUM_STOPS; y++, --x) | |
626 { | |
627 char_O_deco_time_for_log[y] = internal_deco_time [x]; | |
628 | |
629 // Stop only once the last transfer is done. | |
630 if( x == 0 ) break; | |
631 } | |
632 | |
633 //---- Third: fill table end with null | |
634 for(y++; y<NUM_STOPS; y++) | |
635 { | |
636 char_O_deco_time_for_log [y] = 0; | |
637 } | |
638 } | |
639 } | |
640 | |
641 ////////////////////////////////////////////////////////////////////////////// | |
642 // temp_tissue_safety // | |
643 // | |
644 // outsourced in v.102 | |
645 // | |
646 // Apply safety factors for brand ZH-L16 model. | |
647 // | |
648 static void temp_tissue_safety(void) | |
649 { | |
650 assert( 0.0 < float_desaturation_multiplier && float_desaturation_multiplier <= 1.0 ); | |
651 assert( 1.0 <= float_saturation_multiplier && float_saturation_multiplier <= 2.0 ); | |
652 | |
287
f342853afcd9
FIX gas_volumes: shall take stops in forward order.
jdg@air
parents:
284
diff
changeset
|
653 if( char_I_deco_model == 0 ) |
f342853afcd9
FIX gas_volumes: shall take stops in forward order.
jdg@air
parents:
284
diff
changeset
|
654 { |
f342853afcd9
FIX gas_volumes: shall take stops in forward order.
jdg@air
parents:
284
diff
changeset
|
655 if( temp_tissue < 0.0 ) |
f342853afcd9
FIX gas_volumes: shall take stops in forward order.
jdg@air
parents:
284
diff
changeset
|
656 temp_tissue *= float_desaturation_multiplier; |
f342853afcd9
FIX gas_volumes: shall take stops in forward order.
jdg@air
parents:
284
diff
changeset
|
657 else |
f342853afcd9
FIX gas_volumes: shall take stops in forward order.
jdg@air
parents:
284
diff
changeset
|
658 temp_tissue *= float_saturation_multiplier; |
f342853afcd9
FIX gas_volumes: shall take stops in forward order.
jdg@air
parents:
284
diff
changeset
|
659 } |
0 | 660 } |
661 | |
662 ////////////////////////////////////////////////////////////////////////////// | |
663 ////////////////////////////////////////////////////////////////////////////// | |
664 // ** THE JUMP-IN CODE ** | |
665 // ** for the asm code ** | |
666 ////////////////////////////////////////////////////////////////////////////// | |
667 ////////////////////////////////////////////////////////////////////////////// | |
668 | |
669 ////////////////////////////////////////////////////////////////////////////// | |
670 // Called every 2 seconds during diving. | |
671 // update tissues every time. | |
672 // | |
673 // Every 6 seconds (or slower when TTS > 16): | |
674 // - update deco table (char_O_deco_time/depth) with new values. | |
675 // - update ascent time, | |
676 // - set status to zero (so we can check there is new results). | |
677 // | |
678 void deco_calc_hauptroutine(void) | |
679 { | |
680 RESET_C_STACK | |
681 calc_hauptroutine(); | |
682 int_O_desaturation_time = 65535; | |
683 } | |
684 | |
685 ////////////////////////////////////////////////////////////////////////////// | |
686 // Reset decompression model: | |
687 // + Set all tissues to equilibrium with Air at ambient pressure. | |
688 // + Reset last stop to 0m | |
689 // + Reset all model output. | |
690 void deco_clear_tissue(void) | |
691 { | |
692 RESET_C_STACK | |
693 clear_tissue(); | |
694 } | |
695 | |
696 ////////////////////////////////////////////////////////////////////////////// | |
697 // Called every 1 min during decoplanning. | |
698 // Update tissues for 1 min. | |
699 // | |
700 void deco_calc_tissue(void) | |
701 { | |
702 RESET_C_STACK | |
703 calc_hauptroutine_update_tissues(); | |
704 } | |
705 | |
706 ////////////////////////////////////////////////////////////////////////////// | |
707 | |
708 void deco_calc_wo_deco_step_1_min(void) | |
709 { | |
710 RESET_C_STACK | |
711 calc_wo_deco_step_1_min(); | |
712 deco_calc_desaturation_time(); | |
713 } | |
714 | |
715 ////////////////////////////////////////////////////////////////////////////// | |
716 | |
717 void deco_calc_dive_interval(void) | |
718 { | |
719 RESET_C_STACK | |
720 calc_dive_interval(); | |
721 } | |
722 | |
723 ////////////////////////////////////////////////////////////////////////////// | |
724 // Find current gas in the list (if any). | |
725 // | |
726 // Input: char_I_current_gas = 1..6 | |
727 // | |
728 // Output: sim_gas_last_depth = 0..5, temp_depth_limit. | |
729 // | |
730 static void gas_switch_find_current(void) | |
731 { | |
732 assert( 0 < char_I_current_gas && char_I_current_gas <= (NUM_GAS+1) ); | |
733 | |
734 if( char_I_current_gas <= NUM_GAS ) // Gas1..Gas5 | |
735 { | |
736 sim_gas_last_used = char_I_current_gas; | |
737 | |
738 // Note: if current is first gas, we must find it, but not set | |
739 // last depth change to surface. | |
740 if( char_I_deco_gas_change[sim_gas_last_used-1] ) | |
741 sim_gas_last_depth = char_I_deco_gas_change[sim_gas_last_used-1]; | |
742 } | |
743 else | |
744 sim_gas_last_used = 0; // Gas 6 = manual set | |
745 } | |
746 | |
747 ////////////////////////////////////////////////////////////////////////////// | |
748 // Find deepest available gas. | |
749 // | |
750 // Input: temp_depth_limit, | |
751 // deco_gas_change[] | |
752 // sim_gas_depth_used, sim_dive_mins. | |
753 // | |
754 // RETURNS TRUE if a stop is needed for gas switch. | |
755 // | |
756 // Output: temp_depth_limit, sim_gas_depth_used IFF the is a switch. | |
757 // | |
758 // NOTE: might be called from bottom (when sim_gas_delay and sim_gas_depth_used | |
759 // are null), or during the ascent to make sure we are not passing a | |
760 // stop (in which case both can be already set). | |
761 // | |
762 static unsigned char gas_switch_deepest(void) | |
763 { | |
764 overlay unsigned char switch_deco = 0, switch_last = 0; | |
765 | |
766 if (char_I_const_ppO2 == 0) | |
767 { | |
768 overlay unsigned char j; | |
769 | |
770 // Loop over all enabled gas, to find the deepest one, | |
771 // above last used gas, but below temp_depth_limit. | |
772 for(j=0; j<NUM_GAS; ++j) | |
773 { | |
774 // Gas not (yet) allowed ? Skip ! | |
775 if( temp_depth_limit > deco_gas_change[j] ) | |
776 continue; | |
777 | |
778 // Gas deeper (or equal) than the current one ? Skip ! | |
779 if( sim_gas_last_depth && deco_gas_change[j] >= sim_gas_last_depth ) | |
780 continue; | |
781 | |
782 // First, or deeper ? | |
783 if( switch_deco < deco_gas_change[j] ) | |
784 { | |
785 switch_deco = deco_gas_change[j]; | |
786 switch_last = j+1; // 1..5 | |
787 } | |
788 } | |
789 } | |
790 | |
791 // If there is a better gas available | |
792 if( switch_deco ) | |
793 { | |
794 assert( !sim_gas_last_depth || sim_gas_last_depth > switch_deco ); | |
795 | |
796 sim_gas_last_depth = switch_deco; | |
797 sim_gas_last_used = switch_last; | |
798 return 0; | |
799 } | |
800 return 0; | |
801 } | |
802 | |
803 ////////////////////////////////////////////////////////////////////////////// | |
804 // Calculate gas switches | |
805 // | |
806 // | |
807 // Input: N2_ratio, He_ratio. | |
808 // sim_gas_last_used | |
809 // | |
810 // Output: calc_N2_ratio, calc_He_ratio | |
811 // | |
812 static void gas_switch_set(void) | |
813 { | |
814 assert( sim_gas_last_used <= NUM_GAS ); | |
815 | |
816 if( sim_gas_last_used == 0 ) // Gas6 = manualy set gas. | |
817 { | |
818 calc_N2_ratio = N2_ratio; | |
287
f342853afcd9
FIX gas_volumes: shall take stops in forward order.
jdg@air
parents:
284
diff
changeset
|
819 calc_He_ratio = He_ratio; |
0 | 820 } |
821 else | |
822 { | |
823 calc_N2_ratio = char_I_deco_N2_ratio[sim_gas_last_used-1] * 0.01; | |
287
f342853afcd9
FIX gas_volumes: shall take stops in forward order.
jdg@air
parents:
284
diff
changeset
|
824 calc_He_ratio = char_I_deco_He_ratio[sim_gas_last_used-1] * 0.01; |
0 | 825 } |
826 | |
827 assert( 0.0 <= calc_N2_ratio && calc_N2_ratio <= 0.95 ); | |
114
109df032cc54
minor fix: assert should pass for pure helium diluant
heinrichsweikamp
parents:
111
diff
changeset
|
828 assert( 0.0 <= calc_He_ratio && calc_He_ratio <= 1.00 ); |
0 | 829 assert( (calc_N2_ratio + calc_He_ratio) <= 1.00 ); |
830 } | |
831 | |
832 ////////////////////////////////////////////////////////////////////////////// | |
833 // | |
834 // Input: calc_N2_ratio, calc_He_ratio : simulated gas mix. | |
835 // temp_deco : simulated respiration pressure | |
836 // float_deco_distance : security factor. | |
837 // Water-vapor pressure inside limbs (ppWater). | |
838 // | |
839 // Output: ppN2, ppHe. | |
840 // | |
841 static void sim_alveolar_presures(void) | |
842 { | |
843 overlay float deco_diluent = temp_deco; // new in v.101 | |
844 | |
845 // Take deco offset into account, but not at surface. | |
846 // Note: this should be done on ambiant pressure, hence before | |
847 // computing the diluant partial pressure... | |
848 if( deco_diluent > pres_surface ) | |
849 deco_diluent += float_deco_distance; | |
850 | |
851 //---- CCR mode : deco gas switch ? -------------------------------------- | |
852 if( char_I_const_ppO2 != 0 ) | |
287
f342853afcd9
FIX gas_volumes: shall take stops in forward order.
jdg@air
parents:
284
diff
changeset
|
853 { |
0 | 854 // In CCR mode, use calc_XX_ratio instead of XX_ratio. |
855 // Note: PPO2 and ratios are known outside the lumbs, so there is no | |
856 // ppWater in the equations below: | |
857 deco_diluent -= const_ppO2; | |
858 deco_diluent /= calc_N2_ratio + calc_He_ratio; | |
859 | |
860 if (deco_diluent > temp_deco) | |
287
f342853afcd9
FIX gas_volumes: shall take stops in forward order.
jdg@air
parents:
284
diff
changeset
|
861 deco_diluent = temp_deco; |
f342853afcd9
FIX gas_volumes: shall take stops in forward order.
jdg@air
parents:
284
diff
changeset
|
862 } |
0 | 863 |
864 if( deco_diluent > ppWater ) | |
865 { | |
866 ppN2 = calc_N2_ratio * (deco_diluent - ppWater); | |
867 ppHe = calc_He_ratio * (deco_diluent - ppWater); | |
868 } | |
869 else | |
870 { | |
871 ppN2 = 0.0; | |
872 ppHe = 0.0; | |
873 } | |
874 assert( 0.0 <= ppN2 && ppN2 < 14.0 ); | |
875 assert( 0.0 <= ppHe && ppHe < 14.0 ); | |
876 } | |
877 | |
878 ////////////////////////////////////////////////////////////////////////////// | |
879 // clear_tissue | |
880 // | |
881 // optimized in v.101 (var_N2_a) | |
882 // | |
883 // preload tissues with standard pressure for the given ambient pressure. | |
884 // Note: fixed N2_ratio for standard air. | |
885 // | |
886 static void clear_tissue(void) | |
887 { | |
888 overlay float p; | |
889 | |
890 // Kludge: the 0.0002 of 0.7902 are missing with standard air. | |
891 N2_ratio = 0.7902; | |
892 pres_respiration = int_I_pres_respiration * 0.001; | |
893 | |
894 p = N2_ratio * (pres_respiration - ppWater); | |
895 for(ci=0; ci<NUM_COMP; ci++) | |
896 { | |
897 // cycle through the 16 Bühlmann N2 tissues | |
898 pres_tissue_N2[ci] = p; | |
899 | |
900 // cycle through the 16 Bühlmann tissues for Helium | |
901 pres_tissue_He[ci] = 0.0; | |
902 } | |
903 | |
904 clear_deco_table(); | |
905 char_O_deco_status = 0; | |
906 char_O_nullzeit = 0; | |
907 int_O_ascenttime = 0; | |
908 char_O_gradient_factor = 0; | |
909 char_O_relative_gradient_GF = 0; | |
910 | |
911 calc_lead_tissue_limit = 0.0; | |
912 char_O_gtissue_no = 0; | |
913 } | |
914 | |
915 ////////////////////////////////////////////////////////////////////////////// | |
916 // calc_hauptroutine | |
917 // | |
918 // this is the major code in dive mode calculates: | |
919 // the tissues, | |
920 // the bottom time, | |
921 // and simulates the ascend with all deco stops. | |
922 // | |
923 // The deco_state sequence is : | |
924 // 3 (at surface) | |
925 // +---> 0 : calc nullzeit | |
926 // | 2 : simulate ascent to first stop (at 10m/min, less that 16x 1min simu) | |
927 // | +-> 1 : simulate up to 16min of stops. | |
928 // | +------< not finished | |
929 // +--------< finish | |
930 // | |
931 // Added steps 6,5 for @+5 calculation: | |
932 // 6 = ascent to first stop (same as 2), except continue to 7 | |
933 // 7 = same as 1, except loop to 7. | |
934 // | |
935 static void calc_hauptroutine(void) | |
936 { | |
937 static unsigned char backup_gas_used; | |
938 static unsigned char backup_gas_depth; | |
939 | |
940 calc_hauptroutine_data_input(); | |
941 | |
942 calc_hauptroutine_update_tissues(); | |
943 calc_gradient_factor(); | |
944 | |
945 // toggle between calculation for nullzeit (bottom time), | |
946 // deco stops | |
947 // and more deco stops (continue) | |
948 switch( char_O_deco_status ) | |
949 { | |
950 case 3: //---- At surface: start a new dive ------------------------------ | |
287
f342853afcd9
FIX gas_volumes: shall take stops in forward order.
jdg@air
parents:
284
diff
changeset
|
951 clear_deco_table(); |
f342853afcd9
FIX gas_volumes: shall take stops in forward order.
jdg@air
parents:
284
diff
changeset
|
952 copy_deco_table(); |
f342853afcd9
FIX gas_volumes: shall take stops in forward order.
jdg@air
parents:
284
diff
changeset
|
953 int_O_ascenttime = 0; // Reset DTR. |
f342853afcd9
FIX gas_volumes: shall take stops in forward order.
jdg@air
parents:
284
diff
changeset
|
954 int_O_extra_ascenttime = 0; |
f342853afcd9
FIX gas_volumes: shall take stops in forward order.
jdg@air
parents:
284
diff
changeset
|
955 char_O_nullzeit = 0; // Reset bottom time. |
0 | 956 char_O_deco_status = 0; // Calc bottom-time/nullzeit next iteration. |
957 | |
958 // Values that should be reset just once for the full real dive. | |
959 // This is used to record the lowest stop for the whole dive, | |
960 // Including ACCROSS all simulated ascent. | |
961 low_depth = 0; | |
962 locked_GF_step = 0.0; | |
963 | |
964 // Reset gas switch history. | |
965 backup_gas_used = sim_gas_last_used = 0; | |
966 backup_gas_depth = sim_gas_last_depth = 0; | |
967 sim_dive_mins = 0; | |
968 break; | |
969 | |
970 case 0: //---- bottom time ----------------------------------------------- | |
971 default: | |
972 gas_switch_find_current(); // Lookup for current gas & time. | |
973 gas_switch_set(); // setup calc_ratio's | |
974 | |
287
f342853afcd9
FIX gas_volumes: shall take stops in forward order.
jdg@air
parents:
284
diff
changeset
|
975 calc_nullzeit(); |
0 | 976 if( char_O_nullzeit > 0 ) // Some NDL time left ? |
977 { | |
978 char_O_deco_status = 0; // YES: recalc ndl next time. | |
979 clear_deco_table(); // Also clear stops ! | |
980 copy_deco_table(); | |
981 char_O_deco_last_stop = 0; // And last stop (OSTC menu anim) | |
982 } | |
983 else | |
984 char_O_deco_status = 2; // NO: calc ascent next time. | |
287
f342853afcd9
FIX gas_volumes: shall take stops in forward order.
jdg@air
parents:
284
diff
changeset
|
985 break; |
0 | 986 |
987 case 2: //---- Simulate ascent to first stop ----------------------------- | |
988 case 6: // @+5min variation | |
989 // Check proposed gas at begin of ascent simulation | |
990 sim_dive_mins = int_I_divemins; // Init current time. | |
991 | |
287
f342853afcd9
FIX gas_volumes: shall take stops in forward order.
jdg@air
parents:
284
diff
changeset
|
992 gas_switch_find_current(); // Lookup for current gas & time. |
0 | 993 gas_switch_set(); // setup calc_ratio's |
994 | |
995 backup_gas_used = sim_gas_last_used; // And save for later simu steps. | |
996 backup_gas_depth = sim_gas_last_depth; // And save for later simu steps. | |
997 | |
287
f342853afcd9
FIX gas_volumes: shall take stops in forward order.
jdg@air
parents:
284
diff
changeset
|
998 sim_ascent_to_first_stop(); |
0 | 999 |
1000 // Calc stops next time (deco or gas switch). | |
1001 char_O_deco_status = 1 | ( char_O_deco_status & 4 ); | |
287
f342853afcd9
FIX gas_volumes: shall take stops in forward order.
jdg@air
parents:
284
diff
changeset
|
1002 break; |
0 | 1003 |
1004 case 1: //---- Simulate stops -------------------------------------------- | |
1005 case 5: // @+5 variation. | |
287
f342853afcd9
FIX gas_volumes: shall take stops in forward order.
jdg@air
parents:
284
diff
changeset
|
1006 calc_hauptroutine_calc_deco(); |
0 | 1007 |
1008 // If simulation is finished, restore the GF low reference, so that | |
1009 // next ascent simulation is done from the current depth: | |
287
f342853afcd9
FIX gas_volumes: shall take stops in forward order.
jdg@air
parents:
284
diff
changeset
|
1010 if( (char_O_deco_status & 3) == 0 ) |
f342853afcd9
FIX gas_volumes: shall take stops in forward order.
jdg@air
parents:
284
diff
changeset
|
1011 { |
0 | 1012 sim_gas_last_used = backup_gas_used; |
1013 sim_gas_last_depth = backup_gas_depth; | |
1014 } | |
287
f342853afcd9
FIX gas_volumes: shall take stops in forward order.
jdg@air
parents:
284
diff
changeset
|
1015 break; |
0 | 1016 } |
1017 } | |
1018 | |
1019 ////////////////////////////////////////////////////////////////////////////// | |
1020 // calc_hauptroutine_data_input | |
1021 // | |
1022 // Reset all C-code dive parameters from their ASM-code values. | |
1023 // Detect gas change condition. | |
1024 // | |
1025 void calc_hauptroutine_data_input(void) | |
1026 { | |
1027 overlay short int_temp; | |
1028 overlay unsigned char g; | |
1029 | |
1030 pres_respiration = int_I_pres_respiration * 0.001; | |
1031 pres_surface = int_I_pres_surface * 0.001; | |
1032 N2_ratio = char_I_N2_ratio * 0.01; | |
1033 He_ratio = char_I_He_ratio * 0.01; | |
1034 float_deco_distance = char_I_deco_distance * 0.01; // Get offset is in mbar. | |
1035 | |
1036 // ____________________________________________________ | |
1037 // | |
1038 // _____________ G A S _ C H A N G E S ________________ | |
1039 // ____________________________________________________ | |
1040 | |
1041 // Keep a margin of 150mbar = 1.50m | |
1042 int_temp = (int_I_pres_respiration - int_I_pres_surface) | |
1043 + MBAR_REACH_GASCHANGE_AUTO_CHANGE_OFF; | |
1044 | |
1045 // Gas are selectable if we did not pass the change depth by more than 1.50m: | |
1046 for(g=0; g < NUM_GAS; ++g) | |
1047 { | |
1048 deco_gas_change[g] = 0; | |
1049 if(char_I_deco_gas_change[g]) | |
1050 if( int_temp > 100 *(short)char_I_deco_gas_change[g] ) | |
287
f342853afcd9
FIX gas_volumes: shall take stops in forward order.
jdg@air
parents:
284
diff
changeset
|
1051 deco_gas_change[g] = char_I_deco_gas_change[g]; |
0 | 1052 } |
1053 | |
1054 const_ppO2 = char_I_const_ppO2 * 0.01; | |
1055 float_desaturation_multiplier = char_I_desaturation_multiplier * 0.01; | |
1056 float_saturation_multiplier = char_I_saturation_multiplier * 0.01; | |
1057 GF_low = char_I_GF_Low_percentage * 0.01; | |
1058 GF_high = char_I_GF_High_percentage * 0.01; | |
1059 GF_delta = GF_high - GF_low; | |
1060 } | |
1061 | |
1062 ////////////////////////////////////////////////////////////////////////////// | |
1063 // | |
1064 // | |
1065 void calc_hauptroutine_update_tissues(void) | |
1066 { | |
1067 assert( 0.00 <= N2_ratio && N2_ratio <= 1.00 ); | |
1068 assert( 0.00 <= He_ratio && He_ratio <= 1.00 ); | |
114
109df032cc54
minor fix: assert should pass for pure helium diluant
heinrichsweikamp
parents:
111
diff
changeset
|
1069 assert( (N2_ratio + He_ratio) <= 1.00 ); |
0 | 1070 assert( 0.800 < pres_respiration && pres_respiration < 14.0 ); |
1071 | |
1072 pres_diluent = pres_respiration; | |
1073 if( char_I_const_ppO2 != 0 ) | |
1074 { | |
1075 overlay float flush_ppO2 = pres_respiration * (1.0 - N2_ratio - He_ratio); | |
1076 | |
1077 pres_diluent -= const_ppO2; | |
1078 pres_diluent /= N2_ratio + He_ratio; | |
1079 if( pres_diluent < 0.0 ) | |
1080 pres_diluent = 0.0; | |
1081 if( pres_diluent > pres_respiration ) | |
1082 pres_diluent = pres_respiration; | |
1083 | |
1084 char_O_diluent = (unsigned char)(pres_diluent/pres_respiration*100.0 + 0.5); | |
1085 | |
1086 if( flush_ppO2 > 2.545) flush_ppO2 = 2.55; | |
1087 if( flush_ppO2 < 0.0 ) flush_ppO2 = 0.0; | |
1088 char_O_flush_ppO2 = (unsigned char)(flush_ppO2*100.0 + 0.5); | |
1089 } | |
1090 | |
1091 if( pres_diluent > ppWater ) | |
1092 { | |
287
f342853afcd9
FIX gas_volumes: shall take stops in forward order.
jdg@air
parents:
284
diff
changeset
|
1093 overlay float EAD, END; |
0 | 1094 |
287
f342853afcd9
FIX gas_volumes: shall take stops in forward order.
jdg@air
parents:
284
diff
changeset
|
1095 ppN2 = N2_ratio * (pres_diluent - ppWater); |
0 | 1096 ppHe = He_ratio * (pres_diluent - ppWater); |
1097 | |
1098 // EAD : Equivalent Air Dive. Equivalent depth for the same N2 level | |
1099 // with plain air. | |
1100 // ppN2 = 79% * (P_EAD - ppWater) | |
1101 // EAD = (P_EAD - Psurface) * 10 | |
1102 // ie: EAD = (ppN2 / 0.7902 + ppWater -Psurface) * 10 | |
1103 EAD = (ppN2 / 0.7902 + ppWater - pres_surface) * BAR_TO_METER; | |
1104 if( EAD < 0.0 || EAD > 245.5 ) EAD = 0.0; | |
1105 char_O_EAD = (unsigned char)(EAD + 0.5); | |
1106 | |
1107 // END : Equivalent Narcotic Dive. | |
1108 // Here we count O2 as narcotic too. Hence everything but helium (has a narcosis factor of | |
1109 // 0.23 btw). Hence the formula becomes: | |
1110 // END * BarPerMeter * (1.0 - 0.0) - ppWater + Psurface == Pambient - ppHe - ppWater | |
1111 // ie: END = (Pambient - ppHe - Psurface) * BAR_TO_METER | |
1112 // | |
1113 // Source cited: | |
1114 // The Physiology and Medicine of Diving by Peter Bennett and David Elliott, | |
1115 // 4th edition, 1993, W.B.Saunders Company Ltd, London. | |
1116 END = (pres_respiration - ppHe - pres_surface) * BAR_TO_METER; | |
1117 if( END < 0.0 || END > 245.5 ) END = 0.0; | |
1118 char_O_END = (unsigned char)(END + 0.5); | |
1119 } | |
1120 else // new in v.101 | |
1121 { | |
1122 ppN2 = 0.0; | |
1123 ppHe = 0.0; | |
1124 char_O_EAD = char_O_END = 0; | |
1125 } | |
1126 | |
1127 if(!char_I_step_is_1min) | |
1128 calc_tissue(0); | |
1129 else | |
1130 calc_tissue(1); | |
1131 | |
1132 // Calc limit for surface, ie. GF_high. | |
1133 calc_limit(); | |
1134 | |
126 | 1135 // Fill int_O_ceiling if ceiling is below the surface |
1136 if ((calc_lead_tissue_limit-pres_surface)>0) | |
1137 int_O_ceiling = (short)((calc_lead_tissue_limit-pres_surface)*1000); | |
1138 else | |
1139 int_O_ceiling = 0; | |
1140 | |
0 | 1141 int_O_gtissue_press = (short)((pres_tissue_N2[char_O_gtissue_no] + pres_tissue_He[char_O_gtissue_no]) * 1000); |
1142 } | |
1143 | |
1144 | |
1145 ////////////////////////////////////////////////////////////////////////////// | |
1146 // Compute stops. | |
1147 // | |
1148 // Note: because this can be very long, break on 16 iterations, and set state | |
1149 // to 0 when finished, or to 1 when needing to continue. | |
1150 // Note: because each iteration might be very long too (~ 66 ms in 1.84beta), | |
1151 // break the loop when total time > 512msec. | |
1152 // | |
1153 void calc_hauptroutine_calc_deco(void) | |
1154 { | |
1155 overlay unsigned char loop; | |
1156 | |
34 | 1157 for(loop = 0; loop < 16; ++loop) |
0 | 1158 { |
1159 // Limit loops to 512ms, using timer 5: | |
287
f342853afcd9
FIX gas_volumes: shall take stops in forward order.
jdg@air
parents:
284
diff
changeset
|
1160 if( tmr5() & (512*32) ) |
f342853afcd9
FIX gas_volumes: shall take stops in forward order.
jdg@air
parents:
284
diff
changeset
|
1161 break; |
34 | 1162 |
0 | 1163 if( calc_nextdecodepth() ) |
1164 { | |
1165 if( temp_depth_limit == 0 ) | |
1166 goto Surface; | |
1167 | |
1168 //---- We hit a stop at temp_depth_limit --------------------- | |
1169 temp_deco = temp_depth_limit * METER_TO_BAR // Convert to relative bar, | |
1170 + pres_surface; // To absolute. | |
1171 if( !update_deco_table() ) // Adds a one minute stops. | |
1172 goto Surface; // Deco table full: abort... | |
1173 } | |
1174 else | |
1175 { | |
1176 //---- No stop ----------------------------------------------- | |
1177 temp_deco -= (10*METER_TO_BAR); // Ascend 10m, no wait. | |
1178 | |
1179 //---- Finish computations once surface is reached ----------- | |
1180 if( temp_deco <= pres_surface ) | |
1181 { | |
1182 Surface: | |
1183 if( char_O_deco_status == 1 ) // Don't in @+5min variant. | |
1184 copy_deco_table(); | |
1185 | |
1186 calc_ascenttime(); | |
1187 char_O_deco_status = 0; // calc nullzeit next time. | |
1188 char_O_deco_last_stop = 0; // Surface reached (to animate menu) | |
1189 return; | |
1190 } | |
1191 } | |
1192 //---- Then update tissue -------------------------------------------- | |
1193 sim_dive_mins++; // Advance simulated time by 1 minute. | |
1194 gas_switch_set(); // Apply any simulated gas change, once validated. | |
1195 sim_alveolar_presures(); // Updates ppN2 and ppHe. | |
1196 sim_tissue(1); // Simulate compartiments for 1 minute. | |
1197 } | |
1198 | |
1199 // Surface not reached, need more stops... for menu animation. | |
1200 char_O_deco_last_stop = temp_depth_limit; // Reached depth. | |
1201 } | |
1202 | |
1203 | |
1204 ////////////////////////////////////////////////////////////////////////////// | |
1205 // Simulation ascention to first deco stop. | |
1206 // | |
1207 // Note: because we ascent with a constant speed (10m/mn, ie. 1bar/mn), | |
1208 // there is no need to break on more that 16 iterations | |
1209 // (or we are already in deep shit). | |
1210 // | |
1211 // Input: pres_respiration | |
1212 // Output: temp_deco | |
1213 // | |
1214 // if char_O_deco_status indicate @+5 variant, add extra time at current depth, | |
1215 // before ascent. | |
1216 void sim_ascent_to_first_stop(void) | |
1217 { | |
1218 overlay unsigned char fast = 1; // 1min or 2sec steps. | |
1219 | |
1220 update_startvalues(); | |
1221 clear_deco_table(); | |
1222 | |
1223 temp_deco = pres_respiration; // Starts from current real depth. | |
1224 | |
1225 // Are we doing the special @+5min variation ? | |
1226 if(char_O_deco_status & 4) | |
1227 sim_extra_time(); | |
1228 | |
1229 //---- Loop until first stop, gas switch, or surface is reached ---------- | |
1230 for(;;) | |
1231 { | |
1232 overlay float old_deco = temp_deco; // Pamb backup (bars) | |
1233 | |
1234 // Try ascending 1 full minute (fast) or 2sec (!fast): | |
1235 if( fast ) | |
1236 temp_deco -= 10*METER_TO_BAR; // 1 min, at 10m/min. ~ 1bar. | |
1237 else | |
1238 temp_deco -= (10.0/30.0)*METER_TO_BAR; // 2sec at 10m/min. | |
1239 | |
1240 if( temp_deco < pres_surface ) // But don't go over surface. | |
1241 temp_deco = pres_surface; | |
1242 | |
1243 // Recompute sim_lead_tissue_limit at GF_low (deepest stop), because | |
1244 // one minute passed. | |
1245 sim_limit(GF_low); | |
1246 | |
1247 // Did we reach deepest remaining stop ? | |
1248 if( temp_deco < sim_lead_tissue_limit ) | |
1249 { | |
1250 temp_deco = old_deco; // Restore last correct depth, | |
1251 | |
1252 if( fast ) | |
1253 { | |
1254 fast = 0; // Retry with 2sec steps. | |
1255 continue; | |
1256 } | |
1257 else | |
1258 break; // Done... | |
1259 } | |
1260 | |
1261 // Did we reach surface ? | |
1262 // NOTE: we should round BEFORE checking surface is reached. | |
1263 temp_depth_limit = (unsigned char)(0.5 + (temp_deco - pres_surface) * BAR_TO_METER); | |
1264 if( temp_depth_limit == 0 ) | |
1265 { | |
1266 temp_deco = pres_surface; // Yes: finished ! | |
1267 break; | |
1268 } | |
1269 | |
1270 // Check for gas change below new depth ? | |
1271 if( gas_switch_deepest() ) | |
1272 { | |
1273 assert( temp_depth_limit > 0); | |
1274 | |
1275 temp_deco = temp_depth_limit * METER_TO_BAR + pres_surface; | |
1276 break; | |
1277 } | |
1278 | |
1279 if( fast ) | |
1280 sim_dive_mins++; // Advance simulated time by 1 minute. | |
1281 sim_alveolar_presures(); // temp_deco --> ppN2/ppHe | |
1282 sim_tissue(fast); // and update tissues for 1 min. | |
1283 } | |
1284 } | |
1285 | |
1286 ////////////////////////////////////////////////////////////////////////////// | |
1287 // Simulation extra time at the current depth. | |
1288 // | |
1289 // This routine is used for @+5min feature. | |
1290 void sim_extra_time(void) | |
1291 { | |
1292 overlay unsigned char extra = char_I_extra_time; | |
1293 do { | |
1294 sim_dive_mins++; // Advance simulated time by 1 minute. | |
1295 sim_tissue(1); // and update tissues for 1 min. | |
1296 } while( --extra != 0 ); | |
1297 } | |
1298 | |
1299 ////////////////////////////////////////////////////////////////////////////// | |
1300 // calc_tissue | |
1301 // | |
1302 // optimized in v.101 | |
1303 // | |
1304 static void calc_tissue(PARAMETER unsigned char period) | |
1305 { | |
1306 assert( 0.00 <= ppN2 && ppN2 < 11.2 ); // 80% N2 at 130m | |
1307 assert( 0.00 <= ppHe && ppHe < 12.6 ); // 90% He at 130m | |
1308 | |
1309 for (ci=0;ci<NUM_COMP;ci++) | |
1310 { | |
1311 read_buhlmann_times(period); // 2 sec or 1 min period. | |
1312 | |
1313 // N2 | |
1314 temp_tissue = (ppN2 - pres_tissue_N2[ci]) * var_N2_e; | |
1315 temp_tissue_safety(); | |
1316 pres_tissue_N2[ci] += temp_tissue; | |
1317 | |
1318 // He | |
1319 temp_tissue = (ppHe - pres_tissue_He[ci]) * var_He_e; | |
1320 temp_tissue_safety(); | |
1321 pres_tissue_He[ci] += temp_tissue; | |
1322 } | |
1323 } | |
1324 | |
1325 ////////////////////////////////////////////////////////////////////////////// | |
1326 // calc_limit | |
1327 // | |
1328 // New in v.111 : separated from calc_tissue(), and depends on GF value. | |
1329 // | |
1330 static void calc_limit(void) | |
1331 { | |
1332 char_O_gtissue_no = 255; | |
1333 calc_lead_tissue_limit = 0.0; | |
1334 | |
1335 for(ci=0; ci<NUM_COMP;ci++) | |
1336 { | |
1337 overlay float N2 = pres_tissue_N2[ci]; | |
1338 overlay float He = pres_tissue_He[ci]; | |
1339 overlay float p = N2 + He; | |
1340 | |
1341 read_buhlmann_coefficients(); | |
1342 var_N2_a = (var_N2_a * N2 + var_He_a * He) / p; | |
1343 var_N2_b = (var_N2_b * N2 + var_He_b * He) / p; | |
1344 | |
1345 // Apply the Eric Baker's varying gradient factor correction. | |
1346 // Note: the correction factor depends both on GF and b, | |
1347 // Actual values are in the 1.5 .. 1.0 range (for a GF=30%), | |
1348 // so that can change who is the leading gas... | |
1349 // Note: Also depends of the GF. So the calcul is different for | |
1350 // GF_low, current GF, or GF_high... | |
1351 // *BUT* calc_tissue() is used to compute bottom time, | |
1352 // hence what would happend at surface, | |
1353 // hence at GF_high. | |
1354 if( char_I_deco_model != 0 ) | |
1355 p = ( p - var_N2_a * GF_high) * var_N2_b | |
1356 / (GF_high + var_N2_b * (1.0 - GF_high)); | |
1357 else | |
1358 p = (p - var_N2_a) * var_N2_b; | |
1359 if( p < 0.0 ) p = 0.0; | |
1360 | |
1361 if( p > calc_lead_tissue_limit ) | |
1362 { | |
1363 char_O_gtissue_no = ci; | |
1364 calc_lead_tissue_limit = p; | |
1365 } | |
1366 } | |
1367 | |
1368 assert( char_O_gtissue_no < NUM_COMP ); | |
1369 assert( 0.0 <= calc_lead_tissue_limit && calc_lead_tissue_limit <= 14.0); | |
1370 } | |
1371 | |
1372 ////////////////////////////////////////////////////////////////////////////// | |
1373 // calc_nullzeit | |
1374 // | |
1375 // calculates the remaining bottom time | |
1376 // | |
1377 // NOTE: Erik Baker's closed formula works for Nitroxes. Trimix adds a second | |
1378 // exponential term to the M-value equation, making it impossible to | |
1379 // invert... So we have to make a fast-simu until we find a better way. | |
1380 // | |
1381 // Input: pres_respiration | |
1382 // Output: char_O_nullzeit | |
1383 // | |
1384 static void calc_nullzeit(void) | |
1385 { | |
1386 //---- Compute ppN2 and ppHe --------------------------------------------- | |
1387 temp_deco = pres_respiration; | |
1388 sim_alveolar_presures(); | |
1389 | |
1390 char_O_nullzeit = 240; | |
1391 for(ci=0; ci<NUM_COMP; ci++) | |
1392 { | |
1393 //---- Read A/B values and loading factor for N2 and He -------------- | |
1394 overlay float tN2 = pres_tissue_N2[ci]; | |
1395 overlay float tHe = pres_tissue_He[ci]; | |
1396 overlay float t = tN2 + tHe; | |
1397 overlay unsigned char ndl; | |
1398 overlay unsigned char period = 10; | |
1399 | |
1400 read_buhlmann_coefficients(); | |
1401 read_buhlmann_times(2); // Starts with a 10min period. | |
1402 | |
1403 //---- Simulate for that tissue -------------------------------------- | |
1404 // NOTE: No need to simulate for longuer than the already found NDL. | |
1405 for(ndl=0; ndl<char_O_nullzeit;) | |
1406 { | |
1407 //---- Compute updated mix M-value at surface | |
1408 overlay float a = (var_N2_a * tN2 + var_He_a * tHe) / t; | |
1409 overlay float b = (var_N2_b * tN2 + var_He_b * tHe) / t; | |
1410 overlay float M0 = (a + pres_surface/b); | |
1411 | |
1412 //---- Add 10min/1min to N2/He tissues | |
1413 overlay float dTN2 = (ppN2 - tN2) * var_N2_e; | |
1414 overlay float dTHe = (ppHe - tHe) * var_He_e; | |
1415 | |
1416 //---- Apply security margin when using the non-GF model | |
1417 if( char_I_deco_model == 0 ) | |
1418 { | |
1419 dTN2 *= float_saturation_multiplier; | |
1420 dTHe *= float_saturation_multiplier; | |
1421 } | |
1422 else // Or GF-based model | |
1423 M0 = GF_high * (M0 - pres_surface) + pres_surface; | |
1424 | |
1425 //---- Simulate off-gasing while going to surface | |
1426 // TODO ! | |
1427 // dTN2 -= exp( ... ascent time ... ppN2...) | |
1428 // dTHe -= exp( ... ascent time ... ppHe...) | |
1429 | |
1430 //---- Ok now, and still ok to surface after 1 or 10 minutes ? | |
1431 if( (t <= M0) && (t + dTN2 + dTHe <= M0) ) | |
1432 { | |
1433 tN2 += dTN2; // YES: apply gas loadings, | |
1434 tHe += dTHe; | |
1435 t = tN2 + tHe; | |
1436 ndl += period; // increment NDL, | |
1437 continue; // and loop. | |
1438 } | |
1439 | |
1440 //---- Should we retry with smaller steps ? | |
1441 if( period == 10 ) | |
1442 { | |
1443 read_buhlmann_times(1); // 1min coefs. | |
1444 period = 1; | |
1445 continue; | |
1446 } | |
1447 | |
1448 //---- ELSE make a linear approx for the last minute | |
1449 // Usefull to have a meaningfull rounding of NDL. | |
1450 // But ONLY it positive (negativ casted to unsigned is bad). | |
1451 if( M0 > t ) | |
1452 ndl += (unsigned char)(0.5f + (M0-t)/(dTN2+dTHe)); | |
1453 break; | |
1454 } | |
1455 | |
1456 // Keep the shortest NDL found | |
1457 if( ndl < char_O_nullzeit ) | |
1458 char_O_nullzeit = ndl; | |
1459 } | |
1460 } | |
1461 | |
1462 ////////////////////////////////////////////////////////////////////////////// | |
1463 // calc_ascenttime | |
1464 // | |
1465 // Summup ascent from bottom to surface, at 1 bar/min, 1min for last 3 meters, | |
1466 // and all stops. | |
1467 // | |
1468 // Result in int_O_ascenttime, or int_O_extra_ascenttime if in @+5min variant. | |
1469 static void calc_ascenttime(void) | |
1470 { | |
1471 overlay unsigned char x; | |
1472 overlay unsigned short sum; | |
1473 | |
1474 // + 0.7 to count 1 minute ascent time from 3 metre to surface | |
1475 overlay float ascent = pres_respiration - pres_surface + 0.7; | |
1476 if (ascent < 0.0) | |
1477 ascent = 0.0; | |
1478 sum = (unsigned short)(ascent + 0.99); | |
1479 | |
1480 for(x=0; x<NUM_STOPS && internal_deco_depth[x]; x++) | |
1481 sum += (unsigned short)internal_deco_time[x]; | |
1482 | |
1483 if( char_O_deco_status == 1 ) | |
1484 int_O_ascenttime = sum; | |
1485 else | |
1486 int_O_extra_ascenttime = sum; | |
1487 | |
1488 } | |
1489 | |
1490 ////////////////////////////////////////////////////////////////////////////// | |
1491 // update_startvalues | |
1492 // | |
1493 // updated in v.102 | |
1494 // | |
1495 void update_startvalues(void) | |
1496 { | |
1497 overlay unsigned char x; | |
1498 | |
1499 // Start ascent simulation with current tissue partial pressures. | |
1500 for(x=0; x<NUM_COMP; x++) | |
1501 { | |
1502 sim_pres_tissue_N2[x] = pres_tissue_N2[x]; | |
1503 sim_pres_tissue_He[x] = pres_tissue_He[x]; | |
1504 } | |
1505 | |
1506 // No leading tissue (yet) for this ascent simulation. | |
1507 sim_lead_tissue_limit = 0.0; | |
1508 sim_lead_tissue_no = 255; | |
1509 } | |
1510 | |
1511 ////////////////////////////////////////////////////////////////////////////// | |
1512 // sim_tissue | |
1513 // | |
1514 // optimized in v.101 | |
1515 // | |
1516 // Function very simular to calc_tissue, but: | |
1517 // + Use a 1min or 10min period. | |
1518 // + Do it on sim_pres_tissue, instead of pres_tissue. | |
1519 static void sim_tissue(PARAMETER unsigned char period) | |
1520 { | |
1521 assert( 0.00 <= ppN2 && ppN2 < 11.2 ); // 80% N2 at 130m | |
1522 assert( 0.00 <= ppHe && ppHe < 12.6 ); // 90% He at 130m | |
1523 | |
1524 for(ci=0; ci<NUM_COMP; ci++) | |
1525 { | |
1526 read_buhlmann_times(period); // 1 or 10 minute(s) interval | |
1527 | |
1528 // N2 | |
1529 temp_tissue = (ppN2 - sim_pres_tissue_N2[ci]) * var_N2_e; | |
1530 temp_tissue_safety(); | |
1531 sim_pres_tissue_N2[ci] += temp_tissue; | |
1532 | |
1533 // He | |
1534 temp_tissue = (ppHe - sim_pres_tissue_He[ci]) * var_He_e; | |
1535 temp_tissue_safety(); | |
1536 sim_pres_tissue_He[ci] += temp_tissue; | |
1537 } | |
1538 } | |
1539 | |
1540 ////////////////////////////////////////////////////////////////////////////// | |
1541 // sim_limit() | |
1542 // | |
1543 // New in v.111 | |
1544 // | |
1545 // Function separated from sim_tissue() to allow recomputing limit on | |
1546 // different depth, because it depends on current gradient factor. | |
1547 // | |
1548 static void sim_limit(PARAMETER float GF_current) | |
1549 { | |
1550 assert( 0.0 < GF_current && GF_current <= 1.0f); | |
1551 | |
1552 sim_lead_tissue_limit = 0.0; | |
1553 sim_lead_tissue_no = 0; // If no one is critic, keep first tissue. | |
1554 | |
1555 for(ci=0; ci<NUM_COMP; ci++) | |
1556 { | |
1557 overlay float N2 = sim_pres_tissue_N2[ci]; | |
1558 overlay float He = sim_pres_tissue_He[ci]; | |
1559 overlay float p = N2 + He; | |
1560 | |
1561 read_buhlmann_coefficients(); | |
1562 var_N2_a = (var_N2_a * N2 + var_He_a * He) / p; | |
1563 var_N2_b = (var_N2_b * N2 + var_He_b * He) / p; | |
1564 | |
1565 // Apply the Eric Baker's varying gradient factor correction. | |
1566 // Note: the correction factor depends both on GF and b, | |
1567 // Actual values are in the 1.5 .. 1.0 range (for a GF=30%), | |
1568 // so that can change who is the leading gas... | |
1569 // Note: Also depends of the GF_current... | |
1570 if( char_I_deco_model != 0 ) | |
1571 p = ( p - var_N2_a * GF_current) | |
1572 / (GF_current / var_N2_b + 1.0 - GF_current); | |
1573 else | |
1574 p = (p - var_N2_a) * var_N2_b; | |
1575 if( p < 0.0 ) p = 0.0; | |
1576 | |
1577 if( p > sim_lead_tissue_limit ) | |
1578 { | |
1579 sim_lead_tissue_no = ci; | |
1580 sim_lead_tissue_limit = p; | |
1581 } | |
1582 } // for ci | |
1583 | |
1584 assert( sim_lead_tissue_no < NUM_COMP ); | |
1585 assert( 0.0 <= sim_lead_tissue_limit && sim_lead_tissue_limit <= 14.0 ); | |
1586 } | |
1587 | |
1588 ////////////////////////////////////////////////////////////////////////////// | |
1589 // clear_deco_table | |
1590 // | |
1591 // unchanged in v.101 | |
1592 // | |
1593 static void clear_deco_table(void) | |
1594 { | |
1595 overlay unsigned char x; | |
1596 | |
1597 for(x=0; x<NUM_STOPS; ++x) | |
1598 { | |
1599 internal_deco_time [x] = 0; | |
1600 internal_deco_depth[x] = 0; | |
1601 } | |
1602 } | |
1603 | |
1604 ////////////////////////////////////////////////////////////////////////////// | |
1605 // update_deco_table | |
1606 // | |
1607 // Add 1 min to current stop. | |
1608 // | |
1609 // Inputs: | |
1610 // temp_depth_limit = stop's depth, in meters. | |
1611 // In/Out: | |
1612 // internal_deco_depth[] : depth (in metres) of each stops. | |
1613 // internal_deco_time [] : time (in minutes) of each stops. | |
1614 // | |
1615 static unsigned char update_deco_table() | |
1616 { | |
1617 overlay unsigned char x; | |
1618 assert( temp_depth_limit < 128 ); // Can't be negativ (overflown). | |
1619 assert( temp_depth_limit > 0 ); // No stop at surface... | |
1620 | |
1621 for(x=0; x<NUM_STOPS; ++x) | |
1622 { | |
1623 // Make sure deco-stops are recorded in order: | |
111 | 1624 assert( !internal_deco_depth[x] || temp_depth_limit <= internal_deco_depth[x] ); |
0 | 1625 |
111 | 1626 if( internal_deco_depth[x]== temp_depth_limit ) |
0 | 1627 { |
1628 // Do not overflow (max 255') | |
1629 if( internal_deco_time[x] < 255 ) | |
1630 { | |
1631 internal_deco_time[x]++; | |
1632 return 1; | |
1633 } | |
1634 // But store extra in the next stop... | |
1635 } | |
1636 | |
1637 if( internal_deco_depth[x] == 0 ) | |
1638 { | |
1639 internal_deco_depth[x] = temp_depth_limit; | |
1640 | |
1641 internal_deco_time[x] = 1; | |
111 | 1642 internal_deco_gas[x] = sim_gas_last_used; |
0 | 1643 return 1; |
1644 } | |
1645 } | |
1646 | |
1647 // Can't store stops at more than 96m. | |
1648 // Or stops at less that 3m too. | |
1649 // Just do nothing with that... | |
1650 return 0; | |
1651 } | |
1652 | |
1653 ////////////////////////////////////////////////////////////////////////////// | |
1654 // calc_gradient_factor | |
1655 // | |
1656 // optimized in v.101 (var_N2_a) | |
1657 // new code in v.102 | |
1658 // | |
1659 static void calc_gradient_factor(void) | |
1660 { | |
1661 overlay float gf; | |
1662 overlay float N2 = pres_tissue_N2[char_O_gtissue_no]; | |
1663 overlay float He = pres_tissue_He[char_O_gtissue_no]; | |
1664 | |
1665 assert( char_O_gtissue_no < NUM_COMP ); | |
1666 assert( 0.800 <= pres_respiration && pres_respiration < 14.0 ); | |
1667 | |
1668 // tissue > respiration (currently off-gasing) | |
1669 // GF = 0% when respiration == tissue, ie. bubbles are at equilibrium. | |
1670 // GF = 100% when respiration == limit. | |
1671 temp_tissue = N2 + He; | |
1672 if( temp_tissue <= pres_respiration ) | |
1673 gf = 0.0; | |
1674 else | |
1675 { | |
1676 overlay float limit = calc_lead_tissue_limit; | |
1677 // NOTE: in GF model, calc_lead_tissue_limit include already the | |
1678 // correction due to gradient factor. To compute the actual | |
1679 // current GF, we need to (re-)compute the raw ambiant-pressure | |
1680 // limit from the Bühlmann model. | |
1681 if( char_I_deco_model != 0 ) | |
1682 { | |
1683 ci = char_O_gtissue_no; | |
1684 read_buhlmann_coefficients(); | |
1685 var_N2_a = (var_N2_a * N2 + var_He_a * He) / temp_tissue; | |
1686 var_N2_b = (var_N2_b * N2 + var_He_b * He) / temp_tissue; | |
1687 limit = (temp_tissue - var_N2_a) * var_N2_b; | |
1688 } | |
1689 | |
1690 gf = (temp_tissue - pres_respiration) | |
1691 / (temp_tissue - limit) | |
1692 * 100.0; | |
1693 if( gf > 254.5 ) gf = 255.0; | |
1694 if( gf < 0.0 ) gf = 0.0; | |
1695 } | |
1696 char_O_gradient_factor = (unsigned char)(gf+0.5f); | |
1697 | |
1698 if( char_I_deco_model != 0 ) // calculate relative gradient factor | |
1699 { | |
1700 overlay float rgf; | |
1701 | |
1702 if( low_depth < 3 ) | |
1703 rgf = GF_high; | |
1704 else | |
1705 { | |
1706 overlay float temp1 = low_depth * METER_TO_BAR; | |
1707 overlay float temp2 = pres_respiration - pres_surface; | |
1708 | |
1709 if (temp2 <= 0) | |
1710 rgf = GF_high; | |
1711 else if (temp2 >= temp1) | |
1712 rgf = GF_low; | |
1713 else | |
1714 rgf = GF_low + (temp1 - temp2)/temp1*GF_delta; | |
1715 } | |
1716 | |
1717 rgf = gf / rgf; // gf is already in percent | |
1718 if( rgf < 0.0 ) rgf = 0.0; | |
1719 if( rgf > 254.5 ) rgf = 255.0; | |
1720 char_O_relative_gradient_GF = (unsigned char)(rgf+0.5f); | |
1721 } | |
1722 else | |
1723 char_O_relative_gradient_GF = char_O_gradient_factor; | |
1724 } | |
1725 | |
1726 ////////////////////////////////////////////////////////////////////////////// | |
1727 // deco_calc_desaturation_time | |
1728 // | |
1729 // FIXED N2_ratio | |
1730 // unchanged in v.101 | |
1731 // Inputs: int_I_pres_surface, ppWater, char_I_desaturation_multiplier | |
1732 // Outputs: int_O_desaturation_time, char_O_tissue_saturation[0..31] | |
1733 // | |
1734 void deco_calc_desaturation_time(void) | |
1735 { | |
1736 RESET_C_STACK | |
1737 | |
1738 assert( 800 < int_I_pres_surface && int_I_pres_surface < 1100 ); | |
1739 assert( 0 < char_I_desaturation_multiplier && char_I_desaturation_multiplier <= 100 ); | |
1740 | |
1741 N2_ratio = 0.7902; // FIXED sum as stated in bühlmann | |
1742 pres_surface = int_I_pres_surface * 0.001; | |
1743 ppN2 = N2_ratio * (pres_surface - ppWater); | |
1744 int_O_desaturation_time = 0; | |
1745 float_desaturation_multiplier = char_I_desaturation_multiplier * (0.01 * SURFACE_DESAT_FACTOR); | |
1746 | |
1747 for(ci=0; ci<NUM_COMP; ci++) | |
1748 { | |
1749 overlay unsigned short desat_time; // For a particular compartiment, in min. | |
1750 overlay float temp1; | |
1751 overlay float temp2; | |
1752 overlay float temp3; | |
1753 overlay float temp4; | |
1754 | |
1755 read_buhlmann_ht(); | |
1756 | |
1757 // saturation_time (for flight) and N2_saturation in multiples of halftime | |
1758 // version v.100: 1.1 = 10 percent distance to totally clean (totally clean is not possible, would take infinite time ) | |
1759 // new in version v.101: 1.07 = 7 percent distance to totally clean (totally clean is not possible, would take infinite time ) | |
1760 // changes in v.101: 1.05 = 5 percent dist to totally clean is new desaturation point for display and NoFly calculations | |
1761 // N2 | |
1762 temp1 = 1.05 * ppN2 - pres_tissue_N2[ci]; | |
1763 temp2 = ppN2 - pres_tissue_N2[ci]; | |
1764 if (temp2 >= 0.0) | |
1765 temp1 = 0.0; | |
1766 else | |
1767 temp1 = temp1 / temp2; | |
1768 | |
1769 if( 0.0 < temp1 && temp1 < 1.0 ) | |
1770 { | |
1771 // 0.6931 is ln(2), because the math function log() calculates with a base of e not 2 as requested. | |
1772 // minus because log is negative. | |
1773 temp1 = log(1.0 - temp1) / -0.6931; // temp1 is the multiples of half times necessary. | |
1774 temp2 = var_N2_ht * temp1 / float_desaturation_multiplier; // time necessary (in minutes ) for complete desaturation (see comment about 5 percent) | |
1775 } | |
1776 else | |
1777 { | |
1778 temp1 = 0.0; | |
1779 temp2 = 0.0; | |
1780 } | |
1781 | |
1782 // He | |
1783 temp3 = 0.1 - pres_tissue_He[ci]; | |
1784 if (temp3 >= 0.0) | |
1785 temp3 = 0.0; | |
1786 else | |
1787 temp3 = - temp3 / pres_tissue_He[ci]; | |
1788 | |
1789 if( 0.0 < temp3 && temp3 < 1.0 ) | |
287
f342853afcd9
FIX gas_volumes: shall take stops in forward order.
jdg@air
parents:
284
diff
changeset
|
1790 { |
0 | 1791 temp3 = log(1.0 - temp3) / -0.6931; // temp1 is the multiples of half times necessary. |
1792 // 0.6931 is ln(2), because the math function log() calculates with a base of e not 2 as requested. | |
1793 // minus because log is negative | |
1794 temp4 = var_He_ht * temp3 / float_desaturation_multiplier; // time necessary (in minutes ) for "complete" desaturation, new in v.101 float_desaturation_multiplier | |
287
f342853afcd9
FIX gas_volumes: shall take stops in forward order.
jdg@air
parents:
284
diff
changeset
|
1795 } |
0 | 1796 else |
287
f342853afcd9
FIX gas_volumes: shall take stops in forward order.
jdg@air
parents:
284
diff
changeset
|
1797 { |
f342853afcd9
FIX gas_volumes: shall take stops in forward order.
jdg@air
parents:
284
diff
changeset
|
1798 temp3 = 0.0; |
f342853afcd9
FIX gas_volumes: shall take stops in forward order.
jdg@air
parents:
284
diff
changeset
|
1799 temp4 = 0.0; |
f342853afcd9
FIX gas_volumes: shall take stops in forward order.
jdg@air
parents:
284
diff
changeset
|
1800 } |
0 | 1801 |
1802 // saturation_time (for flight) | |
1803 if (temp4 > temp2) | |
1804 desat_time = (unsigned short)temp4; | |
1805 else | |
1806 desat_time = (unsigned short)temp2; | |
1807 | |
1808 if(desat_time > int_O_desaturation_time) | |
1809 int_O_desaturation_time = desat_time; | |
1810 | |
1811 // N2 saturation in multiples of halftime for display purposes | |
1812 temp2 = temp1 * 20.0; // 0 = 1/8, 120 = 0, 249 = 8 | |
1813 temp2 = temp2 + 80.0; // set center | |
1814 if (temp2 < 0.0) | |
1815 temp2 = 0.0; | |
1816 if (temp2 > 255.0) | |
1817 temp2 = 255.0; | |
1818 char_O_tissue_N2_saturation[ci] = (char)temp2; | |
1819 | |
1820 // He saturation in multiples of halftime for display purposes | |
1821 temp4 = temp3 * 20.0; // 0 = 1/8, 120 = 0, 249 = 8 | |
1822 temp4 = temp4 + 80.0; // set center | |
1823 if (temp4 < 0.0) | |
1824 temp4 = 0.0; | |
1825 if (temp4 > 255.0) | |
1826 temp4 = 255.0; | |
1827 char_O_tissue_He_saturation[ci] = (char)temp4; | |
1828 } // for | |
1829 } | |
1830 | |
1831 ////////////////////////////////////////////////////////////////////////////// | |
1832 // calc_wo_deco_step_1_min | |
1833 // | |
1834 // FIXED N2 Ratio | |
1835 // optimized in v.101 (...saturation_multiplier) | |
1836 // desaturation slowed down to 70,42% | |
1837 // | |
1838 static void calc_wo_deco_step_1_min(void) | |
1839 { | |
1840 assert( 800 < int_I_pres_surface && int_I_pres_surface < 1100 ); | |
1841 assert( 800 < int_I_pres_respiration && int_I_pres_respiration < 1100 ); | |
1842 assert( 100 <= char_I_saturation_multiplier && char_I_saturation_multiplier < 200 ); | |
1843 assert( 0 < char_I_desaturation_multiplier && char_I_desaturation_multiplier <= 100 ); | |
1844 | |
1845 N2_ratio = 0.7902; // FIXED, sum lt. buehlmann | |
1846 pres_respiration = pres_surface = int_I_pres_surface * 0.001; | |
1847 ppN2 = N2_ratio * (pres_respiration - ppWater); | |
1848 ppHe = 0.0; | |
1849 float_desaturation_multiplier = char_I_desaturation_multiplier * (0.01 * SURFACE_DESAT_FACTOR); | |
1850 float_saturation_multiplier = char_I_saturation_multiplier * 0.01; | |
1851 | |
1852 calc_tissue(1); // update the pressure in the tissues N2/He in accordance with the new ambient pressure | |
1853 | |
1854 clear_deco_table(); | |
1855 char_O_deco_status = 3; // surface new in v.102 : stays in surface state. | |
1856 char_O_nullzeit = 0; | |
1857 int_O_ascenttime = 0; | |
1858 int_O_extra_ascenttime = 0; | |
1859 calc_gradient_factor(); | |
1860 } | |
1861 | |
1862 ////////////////////////////////////////////////////////////////////////////// | |
1863 // calc_dive_interval | |
1864 // | |
1865 // Prepare tissue for delay before the next dive simulation. | |
1866 // | |
1867 // Inputs: char_I_dive_interval == delay before dive (in 10' steps). | |
1868 // Outputs: pres_tissue_N2/He[], CNS_fraction | |
1869 // | |
1870 // Should be protected by deco_push_tissues_to_vault(), | |
1871 // deco_pull_tissues_from_vault() | |
1872 // | |
1873 // desaturation slowed down to 70,42%. | |
1874 // | |
1875 static void calc_dive_interval(void) | |
1876 { | |
1877 overlay unsigned char t; | |
1878 overlay unsigned char backup_model; | |
1879 | |
1880 //---- Initialize simulation parameters ---------------------------------- | |
1881 N2_ratio = 0.7902; // FIXED, sum lt. buehlmann | |
1882 pres_respiration = pres_surface = int_I_pres_surface * 0.001; | |
1883 ppN2 = N2_ratio * (pres_respiration - ppWater); | |
1884 ppHe = 0.0; | |
1885 float_desaturation_multiplier = char_I_desaturation_multiplier * (0.01 * SURFACE_DESAT_FACTOR); | |
1886 float_saturation_multiplier = char_I_saturation_multiplier * 0.01; | |
1887 | |
1888 // Make sure SURFACE_DESAT_FACTOR is applied: | |
1889 backup_model = char_I_deco_model; | |
1890 char_I_deco_model = 0; | |
1891 | |
1892 //---- Perform simulation ------------------------------------------------ | |
1893 for(t=0; t<char_I_dive_interval; ++t) | |
1894 { | |
1895 calc_tissue(2); // period = 10min. | |
1896 CNS_fraction = 0.92587471 * CNS_fraction; // Half-time = 90min: (1/2)^(1/9) | |
1897 } | |
1898 assert( 0.0 <= CNS_fraction && CNS_fraction <= 2.56 ); | |
1899 int_O_CNS_fraction = (unsigned int)(CNS_fraction * 100.0 + 0.5); | |
1900 | |
1901 //---- Restore model ----------------------------------------------------- | |
1902 char_I_deco_model = backup_model; | |
1903 } | |
1904 | |
1905 ////////////////////////////////////////////////////////////////////////////// | |
1906 // deco_clear_CNS_fraction | |
1907 // | |
1908 // new in v.101 | |
1909 // | |
1910 void deco_clear_CNS_fraction(void) | |
1911 { | |
1912 RESET_C_STACK | |
1913 | |
1914 CNS_fraction = 0.0; | |
1915 int_O_CNS_fraction = 0; | |
1916 } | |
1917 | |
1918 ////////////////////////////////////////////////////////////////////////////// | |
1919 // deco_calc_CNS_fraction | |
1920 // | |
1921 // Input: char_I_actual_ppO2 : Current condition (in decibars). | |
1922 // char_I_step_is_1min : use 1min or 10min steps instead of 2sec. | |
1923 // CNS_fraction : velue before period. | |
1924 // Output: CNS_fraction, int_O_CNS_fraction | |
1925 // | |
1926 void deco_calc_CNS_fraction(void) | |
1927 { | |
1928 overlay float time_factor = 1.0f; | |
1929 RESET_C_STACK | |
1930 | |
1931 assert( 0.0 <= CNS_fraction && CNS_fraction <= 2.56 ); | |
1932 assert( char_I_actual_ppO2 > 15 ); | |
1933 | |
1934 if( char_I_step_is_1min == 1 ) | |
1935 time_factor = 30.0f; | |
1936 else if( char_I_step_is_1min == 2 ) | |
1937 time_factor = 300.0f; | |
33
5d4a4fb0e8a6
Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents:
0
diff
changeset
|
1938 //------------------------------------------------------------------------ |
5d4a4fb0e8a6
Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents:
0
diff
changeset
|
1939 // Don't increase CNS below 0.5 bar, but keep it steady. |
0 | 1940 if (char_I_actual_ppO2 < 50) |
1941 ; // no changes | |
33
5d4a4fb0e8a6
Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents:
0
diff
changeset
|
1942 //------------------------------------------------------------------------ |
5d4a4fb0e8a6
Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents:
0
diff
changeset
|
1943 // Below (and including) 1.60 bar |
5d4a4fb0e8a6
Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents:
0
diff
changeset
|
1944 else if (char_I_actual_ppO2 < 61) |
5d4a4fb0e8a6
Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents:
0
diff
changeset
|
1945 CNS_fraction += time_factor/(-533.07 * char_I_actual_ppO2 + 54000.0); |
5d4a4fb0e8a6
Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents:
0
diff
changeset
|
1946 else if (char_I_actual_ppO2 < 71) |
5d4a4fb0e8a6
Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents:
0
diff
changeset
|
1947 CNS_fraction += time_factor/(-444.22 * char_I_actual_ppO2 + 48600.0); |
5d4a4fb0e8a6
Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents:
0
diff
changeset
|
1948 else if (char_I_actual_ppO2 < 81) |
5d4a4fb0e8a6
Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents:
0
diff
changeset
|
1949 CNS_fraction += time_factor/(-355.38 * char_I_actual_ppO2 + 42300.0); |
5d4a4fb0e8a6
Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents:
0
diff
changeset
|
1950 else if (char_I_actual_ppO2 < 91) |
5d4a4fb0e8a6
Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents:
0
diff
changeset
|
1951 CNS_fraction += time_factor/(-266.53 * char_I_actual_ppO2 + 35100.0); |
5d4a4fb0e8a6
Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents:
0
diff
changeset
|
1952 else if (char_I_actual_ppO2 < 111) |
5d4a4fb0e8a6
Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents:
0
diff
changeset
|
1953 CNS_fraction += time_factor/(-177.69 * char_I_actual_ppO2 + 27000.0); |
5d4a4fb0e8a6
Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents:
0
diff
changeset
|
1954 else if (char_I_actual_ppO2 < 152) |
5d4a4fb0e8a6
Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents:
0
diff
changeset
|
1955 CNS_fraction += time_factor/( -88.84 * char_I_actual_ppO2 + 17100.0); |
5d4a4fb0e8a6
Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents:
0
diff
changeset
|
1956 else if (char_I_actual_ppO2 < 167) |
5d4a4fb0e8a6
Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents:
0
diff
changeset
|
1957 CNS_fraction += time_factor/(-222.11 * char_I_actual_ppO2 + 37350.0); |
5d4a4fb0e8a6
Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents:
0
diff
changeset
|
1958 //------------------------------------------------------------------------ |
5d4a4fb0e8a6
Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents:
0
diff
changeset
|
1959 // Arieli et all.(2002): Modeling pulmonary and CNS O2 toxicity: |
5d4a4fb0e8a6
Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents:
0
diff
changeset
|
1960 // J Appl Physiol 92: 248256, 2002, doi:10.1152/japplphysiol.00434.2001 |
5d4a4fb0e8a6
Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents:
0
diff
changeset
|
1961 // Formula (A1) based on value for 1.55 and c=20 |
5d4a4fb0e8a6
Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents:
0
diff
changeset
|
1962 // example calculation: Sqrt((1.7/1.55)^20)*0.000404 |
5d4a4fb0e8a6
Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents:
0
diff
changeset
|
1963 else if (char_I_actual_ppO2 < 172) |
5d4a4fb0e8a6
Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents:
0
diff
changeset
|
1964 CNS_fraction += time_factor*0.00102; |
5d4a4fb0e8a6
Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents:
0
diff
changeset
|
1965 else if (char_I_actual_ppO2 < 177) |
0 | 1966 CNS_fraction += time_factor*0.00136; |
33
5d4a4fb0e8a6
Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents:
0
diff
changeset
|
1967 else if (char_I_actual_ppO2 < 182) |
0 | 1968 CNS_fraction += time_factor*0.00180; |
33
5d4a4fb0e8a6
Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents:
0
diff
changeset
|
1969 else if (char_I_actual_ppO2 < 187) |
0 | 1970 CNS_fraction += time_factor*0.00237; |
33
5d4a4fb0e8a6
Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents:
0
diff
changeset
|
1971 else if (char_I_actual_ppO2 < 192) |
0 | 1972 CNS_fraction += time_factor*0.00310; |
33
5d4a4fb0e8a6
Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents:
0
diff
changeset
|
1973 else if (char_I_actual_ppO2 < 198) |
0 | 1974 CNS_fraction += time_factor*0.00401; |
33
5d4a4fb0e8a6
Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents:
0
diff
changeset
|
1975 else if (char_I_actual_ppO2 < 203) |
0 | 1976 CNS_fraction += time_factor*0.00517; |
33
5d4a4fb0e8a6
Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents:
0
diff
changeset
|
1977 else if (char_I_actual_ppO2 < 233) |
0 | 1978 CNS_fraction += time_factor*0.0209; |
1979 else | |
1980 CNS_fraction += time_factor*0.0482; // value for 2.5 | |
1981 | |
1982 if( CNS_fraction > 9.99) | |
1983 CNS_fraction = 9.99; | |
1984 if( CNS_fraction < 0.0 ) | |
1985 CNS_fraction = 0.0; | |
1986 | |
1987 int_O_CNS_fraction = (unsigned int)(100.0 * CNS_fraction + 0.5); | |
1988 } | |
1989 | |
1990 ////////////////////////////////////////////////////////////////////////////// | |
1991 // deco_calc_CNS_planning | |
1992 // | |
1993 // Compute CNS during predicted ascent. | |
1994 // | |
1995 // Note: Needs a call to deco_push_tissues_to_vault(), | |
1996 // deco_pull_tissues_from_vault() to avoid trashing everything... | |
1997 // | |
1998 // Input: CNS_fraction, char_O_deco_time[], char_O_deco_depth[] | |
1999 // Output: CNS_fraction, int_O_CNS_fraction | |
2000 // | |
2001 void deco_calc_CNS_planning(void) | |
2002 { | |
2003 overlay unsigned char backup_gas_last_depth; | |
2004 overlay unsigned char backup_gas_last_used; | |
2005 overlay unsigned short backup_dive_mins; | |
2006 overlay unsigned char backup_actual_ppO2; | |
2007 | |
2008 RESET_C_STACK | |
2009 | |
2010 // Backup state machine | |
2011 backup_gas_last_depth = sim_gas_last_depth; | |
2012 backup_gas_last_used = sim_gas_last_used; | |
2013 backup_dive_mins = sim_dive_mins; | |
2014 backup_actual_ppO2 = char_I_actual_ppO2; | |
2015 | |
2016 // Uses 1min CNS period: | |
2017 char_I_step_is_1min = 1; | |
2018 | |
2019 //---- Retrieve bottom Gas used, and set variables. | |
2020 sim_gas_last_used = char_I_first_gas; | |
2021 sim_gas_last_depth = 0; // Surface gas marker. | |
2022 gas_switch_set(); // Sets initial calc_N2/He_ratio | |
2023 | |
2024 //---- CCR mode : do the full TTS at once -------------------------------- | |
2025 if( char_I_const_ppO2 != 0 ) | |
2026 { | |
2027 overlay unsigned short t; // Needs 16bits here ! | |
2028 char_I_actual_ppO2 = char_I_const_ppO2; | |
2029 for(t=0; t<int_O_ascenttime; ++t) | |
2030 deco_calc_CNS_fraction(); | |
2031 } | |
2032 else //---- OC mode : have to follow all gas switches... ----------------- | |
2033 { | |
2034 overlay unsigned char i = 0; // Decostop loop counter | |
2035 overlay float actual_ppO2; | |
2036 overlay unsigned char time, t; | |
2037 | |
2038 //---- Ascent to surface delay | |
2039 // NOTE: count as if time is spent with bottom pressure, | |
2040 // AND the bottom gas | |
2041 actual_ppO2 = (pres_surface + char_I_bottom_depth * METER_TO_BAR) | |
2042 * (1.0 - calc_N2_ratio - calc_He_ratio); | |
2043 if( actual_ppO2 < 0.0 ) actual_ppO2 = 0.0; | |
2044 if( actual_ppO2 > 2.50 ) actual_ppO2 = 2.55; | |
2045 char_I_actual_ppO2 = (unsigned char)(100.0 * actual_ppO2 + 0.5); | |
2046 | |
2047 // Ascent time (rounded up): | |
2048 time = (unsigned char)(0.1 * char_I_bottom_depth + 0.5); | |
2049 | |
2050 for(t=0; t<time; ++t) | |
2051 { | |
2052 deco_calc_CNS_fraction(); | |
2053 sim_dive_mins++; | |
2054 } | |
2055 | |
2056 //---- Do all further stops ------------------------------------------ | |
2057 for(i=0; i<NUM_STOPS; ++i) | |
2058 { | |
111 | 2059 overlay unsigned char stop_gas; |
0 | 2060 |
210
7dbc1d780ca5
do not clear char_O_deco_gas in copy_deco_table
heinrichsweikamp
parents:
135
diff
changeset
|
2061 //---- Get next stop --------------------------------------------- |
0 | 2062 { |
2063 time = char_O_deco_time[(NUM_STOPS-1)-i]; | |
2064 temp_depth_limit = char_O_deco_depth[(NUM_STOPS-1)-i]; | |
111 | 2065 stop_gas = char_O_deco_gas[(NUM_STOPS-1)-i]; |
0 | 2066 } |
2067 if( time == 0 ) continue; | |
2068 | |
2069 //---- Gas Switch ? ---------------------------------------------- | |
111 | 2070 if( stop_gas != sim_gas_last_used ) |
0 | 2071 { |
111 | 2072 sim_gas_last_depth = deco_gas_change[stop_gas-1]; |
2073 sim_gas_last_used = stop_gas; | |
0 | 2074 gas_switch_set(); |
2075 } | |
2076 | |
2077 //---- Convert Depth and N2_ratio to ppO2 ------------------------ | |
2078 actual_ppO2 = (pres_surface + temp_depth_limit * METER_TO_BAR) | |
2079 * (1.0 - calc_N2_ratio - calc_He_ratio); | |
2080 if( actual_ppO2 < 0.0 ) actual_ppO2 = 0.0; | |
2081 if( actual_ppO2 > 2.50 ) actual_ppO2 = 2.55; | |
2082 char_I_actual_ppO2 = (unsigned char)(100.0 * actual_ppO2 + 0.5); | |
2083 | |
2084 //---- Apply the stop | |
2085 for(t=0; t<time; ++t) | |
2086 { | |
2087 deco_calc_CNS_fraction(); | |
2088 sim_dive_mins++; | |
2089 } | |
2090 } | |
2091 } | |
2092 | |
2093 //---- Back to normal mode... -------------------------------------------- | |
2094 char_I_step_is_1min = 0; | |
2095 sim_gas_last_depth = backup_gas_last_depth; | |
2096 sim_gas_last_used = backup_gas_last_used; | |
2097 sim_dive_mins = backup_dive_mins; | |
2098 char_I_actual_ppO2 = backup_actual_ppO2; | |
2099 } | |
2100 | |
2101 ////////////////////////////////////////////////////////////////////////////// | |
2102 // deco_calc_CNS_decrease_15min | |
2103 // | |
2104 // new in v.101 | |
2105 // | |
2106 // calculates the half time of 90 minutes in 6 steps of 15 min | |
2107 // (Used in sleepmode, for low battery mode). | |
2108 // | |
2109 // Output: int_O_CNS_fraction | |
2110 // Uses and Updates: CNS_fraction | |
2111 // | |
2112 void deco_calc_CNS_decrease_15min(void) | |
2113 { | |
2114 RESET_C_STACK | |
2115 assert( 0.0 <= CNS_fraction && CNS_fraction <= 2.56 ); | |
2116 | |
2117 CNS_fraction = 0.890899 * CNS_fraction; | |
2118 int_O_CNS_fraction = (unsigned int)(CNS_fraction * 100.0 + 0.5); | |
2119 } | |
2120 | |
2121 ////////////////////////////////////////////////////////////////////////////// | |
2122 // deco_calc_percentage | |
2123 // | |
2124 // new in v.101 | |
2125 // | |
2126 // calculates int_I_temp * char_I_temp / 100 | |
2127 // output is int_I_temp | |
2128 // | |
2129 // Used to compute NoFly remaining time. | |
2130 // | |
2131 void deco_calc_percentage(void) | |
2132 { | |
2133 RESET_C_STACK | |
2134 | |
2135 assert( 60 <= char_I_temp && char_I_temp <= 100 ); | |
2136 assert( int_I_temp < 5760 ); // Less than 4 days = 96h... | |
2137 | |
2138 int_I_temp = (unsigned short)(((float)int_I_temp * (float)char_I_temp) * 0.01 ); | |
2139 | |
2140 assert( int_I_temp < 5760 ); // Less than 96h too... | |
2141 } | |
2142 | |
2143 ////////////////////////////////////////////////////////////////////////////// | |
2144 // deco_gas_volumes | |
2145 // | |
2146 // new in v.111 | |
2147 // | |
2148 // calculates volumes for each gas. | |
2149 // | |
2150 // Input: char_I_bottom_depth, char_I_bottom_time for planned dive. | |
2151 // Gas list. | |
2152 // char_I_first_gas is the bottom gas. | |
2153 // decoplan (char_O_deco_depth, char_O_deco_time). | |
2154 // CF#54 == TRUE if shallowest stop first. | |
2155 // CF#56 == bottom liters/minutes (5 .. 50) or bar/min. | |
2156 // CF#57 == deco liters/minutes (5 .. 50) or bar/min. | |
2157 // Output: int_O_gas_volumes[0..4] in litters * 0.1 | |
2158 // | |
2159 void deco_gas_volumes(void) | |
2160 { | |
2161 overlay float volumes[NUM_GAS]; | |
2162 overlay float bottom_usage, deco_usage; | |
135 | 2163 overlay unsigned char i; |
0 | 2164 overlay unsigned char gas, depth; |
2165 RESET_C_STACK | |
2166 | |
289 | 2167 //---- initialize -------------------------------------------------------- |
0 | 2168 for(i=0; i<NUM_GAS; ++i) // Nothing yet... |
2169 volumes[i] = 0.0; | |
2170 | |
289 | 2171 // TODO: get conso from settings: |
2172 bottom_usage = 20; // In liter/minutes. | |
2173 deco_usage = 20; // In liter/minutes. | |
2174 | |
2175 // Early return if not defined: | |
2176 if( deco_usage <= 0.0 || bottom_usage <= 0.0 ) | |
2177 goto done; | |
2178 | |
2179 //---- Bottom usage ----------------------------------------------------- | |
0 | 2180 assert(1 <= char_I_first_gas && char_I_first_gas <= NUM_GAS); |
2181 gas = char_I_first_gas - 1; | |
2182 | |
289 | 2183 if( char_I_const_ppO2 == 0 ) |
0 | 2184 volumes[gas] |
2185 = (char_I_bottom_depth*0.1 + 1.0) // Use Psurface = 1.0 bar. | |
2186 * char_I_bottom_time // in minutes. | |
2187 * bottom_usage; // In liter/minutes. | |
2188 | |
2189 //---- Ascent usage ------------------------------------------------------ | |
2190 depth = char_I_bottom_depth; | |
2191 | |
2192 for(i=0; i<NUM_STOPS; ++i) | |
2193 { | |
288
08986d479b94
FIX gas_volume shall read gas switches from char_O_deco_gas
jdg@air
parents:
287
diff
changeset
|
2194 overlay unsigned char newDepth, time, newGas; |
0 | 2195 |
287
f342853afcd9
FIX gas_volumes: shall take stops in forward order.
jdg@air
parents:
284
diff
changeset
|
2196 time = char_O_deco_time[i]; |
288
08986d479b94
FIX gas_volume shall read gas switches from char_O_deco_gas
jdg@air
parents:
287
diff
changeset
|
2197 if( time == 0 ) break; // End of stops. |
0 | 2198 |
288
08986d479b94
FIX gas_volume shall read gas switches from char_O_deco_gas
jdg@air
parents:
287
diff
changeset
|
2199 newDepth = char_O_deco_depth[i]; |
08986d479b94
FIX gas_volume shall read gas switches from char_O_deco_gas
jdg@air
parents:
287
diff
changeset
|
2200 newGas = char_O_deco_gas [i]-1; |
08986d479b94
FIX gas_volume shall read gas switches from char_O_deco_gas
jdg@air
parents:
287
diff
changeset
|
2201 |
08986d479b94
FIX gas_volume shall read gas switches from char_O_deco_gas
jdg@air
parents:
287
diff
changeset
|
2202 assert(0 < newDepth && newDepth <= depth); |
08986d479b94
FIX gas_volume shall read gas switches from char_O_deco_gas
jdg@air
parents:
287
diff
changeset
|
2203 assert(0 <= newGas && newGas < NUM_GAS); |
0 | 2204 |
289 | 2205 //---- usage BEFORE gas switch (if any), at 10m/min: |
288
08986d479b94
FIX gas_volume shall read gas switches from char_O_deco_gas
jdg@air
parents:
287
diff
changeset
|
2206 volumes[gas] += ((depth+newDepth)*0.05 + 1.0) // average depth --> bar. |
08986d479b94
FIX gas_volume shall read gas switches from char_O_deco_gas
jdg@air
parents:
287
diff
changeset
|
2207 * (depth-newDepth)*0.1 // metre --> min |
08986d479b94
FIX gas_volume shall read gas switches from char_O_deco_gas
jdg@air
parents:
287
diff
changeset
|
2208 * deco_usage; |
0 | 2209 |
289 | 2210 //---- Do gas switch, at new depth: |
288
08986d479b94
FIX gas_volume shall read gas switches from char_O_deco_gas
jdg@air
parents:
287
diff
changeset
|
2211 gas = newGas; |
0 | 2212 depth = newDepth; |
2213 | |
289 | 2214 //---- Usage at stop: |
2215 volumes[gas] += (depth*0.1 + 1.0) // depth --> bar. | |
2216 * time // in minutes. | |
2217 * deco_usage; // in xxx / min @ 1bar. | |
0 | 2218 } |
2219 | |
2220 // From last stop to surface | |
289 | 2221 volumes[gas] += (depth*0.05 + 1.0) // avg depth --> bar. |
2222 * depth * 0.1 // time to surface, in minutes. | |
2223 * deco_usage; // in xxx / min @ 1bar. | |
0 | 2224 |
2225 //---- convert results for the ASM interface ----------------------------- | |
289 | 2226 done: |
0 | 2227 for(i=0; i<NUM_GAS; ++i) |
2228 if( volumes[i] > 65534.0 ) | |
2229 int_O_gas_volumes[i] = 65535; | |
2230 else | |
2231 int_O_gas_volumes[i] = (unsigned short)(volumes[i] + 0.5); | |
2232 } | |
2233 | |
2234 ////////////////////////////////////////////////////////////////////////////// | |
2235 | |
2236 void deco_push_tissues_to_vault(void) | |
2237 { | |
2238 overlay unsigned char x; | |
2239 RESET_C_STACK | |
2240 | |
2241 cns_vault = CNS_fraction; | |
2242 low_depth_vault = low_depth; | |
2243 | |
2244 for (x=0;x<NUM_COMP;x++) | |
2245 { | |
2246 pres_tissue_N2_vault[x] = pres_tissue_N2[x]; | |
2247 pres_tissue_He_vault[x] = pres_tissue_He[x]; | |
2248 } | |
2249 } | |
2250 | |
2251 void deco_pull_tissues_from_vault(void) | |
2252 { | |
2253 overlay unsigned char x; | |
2254 RESET_C_STACK | |
2255 | |
2256 for (x=0; x<NUM_COMP; x++) | |
2257 { | |
2258 pres_tissue_N2[x] = pres_tissue_N2_vault[x]; | |
2259 pres_tissue_He[x] = pres_tissue_He_vault[x]; | |
2260 } | |
2261 | |
2262 // Restore both CNS variable, too. | |
2263 CNS_fraction = cns_vault; | |
2264 int_O_CNS_fraction = (unsigned int)(CNS_fraction * 100.0 + 0.5); | |
2265 | |
2266 // GF history too: | |
2267 low_depth = low_depth_vault; | |
2268 locked_GF_step = GF_delta / low_depth; | |
2269 } | |
2270 | |
2271 ////////////////////////////////////////////////////////////////////////////// | |
2272 // | |
2273 #ifndef CROSS_COMPILE | |
2274 void main() {} | |
2275 #endif |