Mercurial > public > hwos_code
annotate src/p2_deco.c @ 223:940155e9aefb
PC config, 1.72 release
| author | heinrichsweikamp |
|---|---|
| date | Wed, 14 Jan 2015 11:37:19 +0100 |
| parents | 7dbc1d780ca5 |
| children | 31088352ee32 |
| 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 ------------------------------------ | |
| 483 if( char_I_deco_model != 0 ) | |
| 484 { | |
| 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 | |
| 538 + pres_surface; | |
| 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: | |
| 553 temp_depth_limit = min_depth; | |
| 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 | |
| 653 if( char_I_deco_model == 0 ) | |
| 654 { | |
| 655 if( temp_tissue < 0.0 ) | |
| 656 temp_tissue *= float_desaturation_multiplier; | |
| 657 else | |
| 658 temp_tissue *= float_saturation_multiplier; | |
| 659 } | |
| 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; | |
| 819 calc_He_ratio = He_ratio; | |
| 820 } | |
| 821 else | |
| 822 { | |
| 823 calc_N2_ratio = char_I_deco_N2_ratio[sim_gas_last_used-1] * 0.01; | |
| 824 calc_He_ratio = char_I_deco_He_ratio[sim_gas_last_used-1] * 0.01; | |
| 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 ) | |
| 853 { | |
| 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) | |
| 861 deco_diluent = temp_deco; | |
| 862 } | |
| 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 ------------------------------ | |
| 951 clear_deco_table(); | |
| 952 copy_deco_table(); | |
| 953 int_O_ascenttime = 0; // Reset DTR. | |
| 954 int_O_extra_ascenttime = 0; | |
| 955 char_O_nullzeit = 0; // Reset bottom time. | |
| 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 | |
| 975 calc_nullzeit(); | |
| 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. | |
| 985 break; | |
| 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 | |
| 992 gas_switch_find_current(); // Lookup for current gas & time. | |
| 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 | |
| 998 sim_ascent_to_first_stop(); | |
| 999 | |
| 1000 // Calc stops next time (deco or gas switch). | |
| 1001 char_O_deco_status = 1 | ( char_O_deco_status & 4 ); | |
| 1002 break; | |
| 1003 | |
| 1004 case 1: //---- Simulate stops -------------------------------------------- | |
| 1005 case 5: // @+5 variation. | |
| 1006 calc_hauptroutine_calc_deco(); | |
| 1007 | |
| 1008 // If simulation is finished, restore the GF low reference, so that | |
| 1009 // next ascent simulation is done from the current depth: | |
| 1010 if( (char_O_deco_status & 3) == 0 ) | |
| 1011 { | |
| 1012 sim_gas_last_used = backup_gas_used; | |
| 1013 sim_gas_last_depth = backup_gas_depth; | |
| 1014 } | |
| 1015 break; | |
| 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] ) | |
| 1051 deco_gas_change[g] = char_I_deco_gas_change[g]; | |
| 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 { | |
| 1093 overlay float EAD, END; | |
| 1094 | |
| 1095 ppN2 = N2_ratio * (pres_diluent - ppWater); | |
| 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: | |
| 1160 if( tmr5() & (512*32) ) | |
| 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 if(int_O_ascenttime>999) | |
| 1489 int_O_ascenttime=999; // limit to 999' | |
| 1490 } | |
| 1491 | |
| 1492 ////////////////////////////////////////////////////////////////////////////// | |
| 1493 // update_startvalues | |
| 1494 // | |
| 1495 // updated in v.102 | |
| 1496 // | |
| 1497 void update_startvalues(void) | |
| 1498 { | |
| 1499 overlay unsigned char x; | |
| 1500 | |
| 1501 // Start ascent simulation with current tissue partial pressures. | |
| 1502 for(x=0; x<NUM_COMP; x++) | |
| 1503 { | |
| 1504 sim_pres_tissue_N2[x] = pres_tissue_N2[x]; | |
| 1505 sim_pres_tissue_He[x] = pres_tissue_He[x]; | |
| 1506 } | |
| 1507 | |
| 1508 // No leading tissue (yet) for this ascent simulation. | |
| 1509 sim_lead_tissue_limit = 0.0; | |
| 1510 sim_lead_tissue_no = 255; | |
| 1511 } | |
| 1512 | |
| 1513 ////////////////////////////////////////////////////////////////////////////// | |
| 1514 // sim_tissue | |
| 1515 // | |
| 1516 // optimized in v.101 | |
| 1517 // | |
| 1518 // Function very simular to calc_tissue, but: | |
| 1519 // + Use a 1min or 10min period. | |
| 1520 // + Do it on sim_pres_tissue, instead of pres_tissue. | |
| 1521 static void sim_tissue(PARAMETER unsigned char period) | |
| 1522 { | |
| 1523 assert( 0.00 <= ppN2 && ppN2 < 11.2 ); // 80% N2 at 130m | |
| 1524 assert( 0.00 <= ppHe && ppHe < 12.6 ); // 90% He at 130m | |
| 1525 | |
| 1526 for(ci=0; ci<NUM_COMP; ci++) | |
| 1527 { | |
| 1528 read_buhlmann_times(period); // 1 or 10 minute(s) interval | |
| 1529 | |
| 1530 // N2 | |
| 1531 temp_tissue = (ppN2 - sim_pres_tissue_N2[ci]) * var_N2_e; | |
| 1532 temp_tissue_safety(); | |
| 1533 sim_pres_tissue_N2[ci] += temp_tissue; | |
| 1534 | |
| 1535 // He | |
| 1536 temp_tissue = (ppHe - sim_pres_tissue_He[ci]) * var_He_e; | |
| 1537 temp_tissue_safety(); | |
| 1538 sim_pres_tissue_He[ci] += temp_tissue; | |
| 1539 } | |
| 1540 } | |
| 1541 | |
| 1542 ////////////////////////////////////////////////////////////////////////////// | |
| 1543 // sim_limit() | |
| 1544 // | |
| 1545 // New in v.111 | |
| 1546 // | |
| 1547 // Function separated from sim_tissue() to allow recomputing limit on | |
| 1548 // different depth, because it depends on current gradient factor. | |
| 1549 // | |
| 1550 static void sim_limit(PARAMETER float GF_current) | |
| 1551 { | |
| 1552 assert( 0.0 < GF_current && GF_current <= 1.0f); | |
| 1553 | |
| 1554 sim_lead_tissue_limit = 0.0; | |
| 1555 sim_lead_tissue_no = 0; // If no one is critic, keep first tissue. | |
| 1556 | |
| 1557 for(ci=0; ci<NUM_COMP; ci++) | |
| 1558 { | |
| 1559 overlay float N2 = sim_pres_tissue_N2[ci]; | |
| 1560 overlay float He = sim_pres_tissue_He[ci]; | |
| 1561 overlay float p = N2 + He; | |
| 1562 | |
| 1563 read_buhlmann_coefficients(); | |
| 1564 var_N2_a = (var_N2_a * N2 + var_He_a * He) / p; | |
| 1565 var_N2_b = (var_N2_b * N2 + var_He_b * He) / p; | |
| 1566 | |
| 1567 // Apply the Eric Baker's varying gradient factor correction. | |
| 1568 // Note: the correction factor depends both on GF and b, | |
| 1569 // Actual values are in the 1.5 .. 1.0 range (for a GF=30%), | |
| 1570 // so that can change who is the leading gas... | |
| 1571 // Note: Also depends of the GF_current... | |
| 1572 if( char_I_deco_model != 0 ) | |
| 1573 p = ( p - var_N2_a * GF_current) | |
| 1574 / (GF_current / var_N2_b + 1.0 - GF_current); | |
| 1575 else | |
| 1576 p = (p - var_N2_a) * var_N2_b; | |
| 1577 if( p < 0.0 ) p = 0.0; | |
| 1578 | |
| 1579 if( p > sim_lead_tissue_limit ) | |
| 1580 { | |
| 1581 sim_lead_tissue_no = ci; | |
| 1582 sim_lead_tissue_limit = p; | |
| 1583 } | |
| 1584 } // for ci | |
| 1585 | |
| 1586 assert( sim_lead_tissue_no < NUM_COMP ); | |
| 1587 assert( 0.0 <= sim_lead_tissue_limit && sim_lead_tissue_limit <= 14.0 ); | |
| 1588 } | |
| 1589 | |
| 1590 ////////////////////////////////////////////////////////////////////////////// | |
| 1591 // clear_deco_table | |
| 1592 // | |
| 1593 // unchanged in v.101 | |
| 1594 // | |
| 1595 static void clear_deco_table(void) | |
| 1596 { | |
| 1597 overlay unsigned char x; | |
| 1598 | |
| 1599 for(x=0; x<NUM_STOPS; ++x) | |
| 1600 { | |
| 1601 internal_deco_time [x] = 0; | |
| 1602 internal_deco_depth[x] = 0; | |
| 1603 } | |
| 1604 } | |
| 1605 | |
| 1606 ////////////////////////////////////////////////////////////////////////////// | |
| 1607 // update_deco_table | |
| 1608 // | |
| 1609 // Add 1 min to current stop. | |
| 1610 // | |
| 1611 // Inputs: | |
| 1612 // temp_depth_limit = stop's depth, in meters. | |
| 1613 // In/Out: | |
| 1614 // internal_deco_depth[] : depth (in metres) of each stops. | |
| 1615 // internal_deco_time [] : time (in minutes) of each stops. | |
| 1616 // | |
| 1617 static unsigned char update_deco_table() | |
| 1618 { | |
| 1619 overlay unsigned char x; | |
| 1620 assert( temp_depth_limit < 128 ); // Can't be negativ (overflown). | |
| 1621 assert( temp_depth_limit > 0 ); // No stop at surface... | |
| 1622 | |
| 1623 for(x=0; x<NUM_STOPS; ++x) | |
| 1624 { | |
| 1625 // Make sure deco-stops are recorded in order: | |
| 111 | 1626 assert( !internal_deco_depth[x] || temp_depth_limit <= internal_deco_depth[x] ); |
| 0 | 1627 |
| 111 | 1628 if( internal_deco_depth[x]== temp_depth_limit ) |
| 0 | 1629 { |
| 1630 // Do not overflow (max 255') | |
| 1631 if( internal_deco_time[x] < 255 ) | |
| 1632 { | |
| 1633 internal_deco_time[x]++; | |
| 1634 return 1; | |
| 1635 } | |
| 1636 // But store extra in the next stop... | |
| 1637 } | |
| 1638 | |
| 1639 if( internal_deco_depth[x] == 0 ) | |
| 1640 { | |
| 1641 internal_deco_depth[x] = temp_depth_limit; | |
| 1642 | |
| 1643 internal_deco_time[x] = 1; | |
| 111 | 1644 internal_deco_gas[x] = sim_gas_last_used; |
| 0 | 1645 return 1; |
| 1646 } | |
| 1647 } | |
| 1648 | |
| 1649 // Can't store stops at more than 96m. | |
| 1650 // Or stops at less that 3m too. | |
| 1651 // Just do nothing with that... | |
| 1652 return 0; | |
| 1653 } | |
| 1654 | |
| 1655 ////////////////////////////////////////////////////////////////////////////// | |
| 1656 // calc_gradient_factor | |
| 1657 // | |
| 1658 // optimized in v.101 (var_N2_a) | |
| 1659 // new code in v.102 | |
| 1660 // | |
| 1661 static void calc_gradient_factor(void) | |
| 1662 { | |
| 1663 overlay float gf; | |
| 1664 overlay float N2 = pres_tissue_N2[char_O_gtissue_no]; | |
| 1665 overlay float He = pres_tissue_He[char_O_gtissue_no]; | |
| 1666 | |
| 1667 assert( char_O_gtissue_no < NUM_COMP ); | |
| 1668 assert( 0.800 <= pres_respiration && pres_respiration < 14.0 ); | |
| 1669 | |
| 1670 // tissue > respiration (currently off-gasing) | |
| 1671 // GF = 0% when respiration == tissue, ie. bubbles are at equilibrium. | |
| 1672 // GF = 100% when respiration == limit. | |
| 1673 temp_tissue = N2 + He; | |
| 1674 if( temp_tissue <= pres_respiration ) | |
| 1675 gf = 0.0; | |
| 1676 else | |
| 1677 { | |
| 1678 overlay float limit = calc_lead_tissue_limit; | |
| 1679 // NOTE: in GF model, calc_lead_tissue_limit include already the | |
| 1680 // correction due to gradient factor. To compute the actual | |
| 1681 // current GF, we need to (re-)compute the raw ambiant-pressure | |
| 1682 // limit from the Bühlmann model. | |
| 1683 if( char_I_deco_model != 0 ) | |
| 1684 { | |
| 1685 ci = char_O_gtissue_no; | |
| 1686 read_buhlmann_coefficients(); | |
| 1687 var_N2_a = (var_N2_a * N2 + var_He_a * He) / temp_tissue; | |
| 1688 var_N2_b = (var_N2_b * N2 + var_He_b * He) / temp_tissue; | |
| 1689 limit = (temp_tissue - var_N2_a) * var_N2_b; | |
| 1690 } | |
| 1691 | |
| 1692 gf = (temp_tissue - pres_respiration) | |
| 1693 / (temp_tissue - limit) | |
| 1694 * 100.0; | |
| 1695 if( gf > 254.5 ) gf = 255.0; | |
| 1696 if( gf < 0.0 ) gf = 0.0; | |
| 1697 } | |
| 1698 char_O_gradient_factor = (unsigned char)(gf+0.5f); | |
| 1699 | |
| 1700 if( char_I_deco_model != 0 ) // calculate relative gradient factor | |
| 1701 { | |
| 1702 overlay float rgf; | |
| 1703 | |
| 1704 if( low_depth < 3 ) | |
| 1705 rgf = GF_high; | |
| 1706 else | |
| 1707 { | |
| 1708 overlay float temp1 = low_depth * METER_TO_BAR; | |
| 1709 overlay float temp2 = pres_respiration - pres_surface; | |
| 1710 | |
| 1711 if (temp2 <= 0) | |
| 1712 rgf = GF_high; | |
| 1713 else if (temp2 >= temp1) | |
| 1714 rgf = GF_low; | |
| 1715 else | |
| 1716 rgf = GF_low + (temp1 - temp2)/temp1*GF_delta; | |
| 1717 } | |
| 1718 | |
| 1719 rgf = gf / rgf; // gf is already in percent | |
| 1720 if( rgf < 0.0 ) rgf = 0.0; | |
| 1721 if( rgf > 254.5 ) rgf = 255.0; | |
| 1722 char_O_relative_gradient_GF = (unsigned char)(rgf+0.5f); | |
| 1723 } | |
| 1724 else | |
| 1725 char_O_relative_gradient_GF = char_O_gradient_factor; | |
| 1726 } | |
| 1727 | |
| 1728 ////////////////////////////////////////////////////////////////////////////// | |
| 1729 // deco_calc_desaturation_time | |
| 1730 // | |
| 1731 // FIXED N2_ratio | |
| 1732 // unchanged in v.101 | |
| 1733 // Inputs: int_I_pres_surface, ppWater, char_I_desaturation_multiplier | |
| 1734 // Outputs: int_O_desaturation_time, char_O_tissue_saturation[0..31] | |
| 1735 // | |
| 1736 void deco_calc_desaturation_time(void) | |
| 1737 { | |
| 1738 RESET_C_STACK | |
| 1739 | |
| 1740 assert( 800 < int_I_pres_surface && int_I_pres_surface < 1100 ); | |
| 1741 assert( 0 < char_I_desaturation_multiplier && char_I_desaturation_multiplier <= 100 ); | |
| 1742 | |
| 1743 N2_ratio = 0.7902; // FIXED sum as stated in bühlmann | |
| 1744 pres_surface = int_I_pres_surface * 0.001; | |
| 1745 ppN2 = N2_ratio * (pres_surface - ppWater); | |
| 1746 int_O_desaturation_time = 0; | |
| 1747 float_desaturation_multiplier = char_I_desaturation_multiplier * (0.01 * SURFACE_DESAT_FACTOR); | |
| 1748 | |
| 1749 for(ci=0; ci<NUM_COMP; ci++) | |
| 1750 { | |
| 1751 overlay unsigned short desat_time; // For a particular compartiment, in min. | |
| 1752 overlay float temp1; | |
| 1753 overlay float temp2; | |
| 1754 overlay float temp3; | |
| 1755 overlay float temp4; | |
| 1756 | |
| 1757 read_buhlmann_ht(); | |
| 1758 | |
| 1759 // saturation_time (for flight) and N2_saturation in multiples of halftime | |
| 1760 // version v.100: 1.1 = 10 percent distance to totally clean (totally clean is not possible, would take infinite time ) | |
| 1761 // new in version v.101: 1.07 = 7 percent distance to totally clean (totally clean is not possible, would take infinite time ) | |
| 1762 // changes in v.101: 1.05 = 5 percent dist to totally clean is new desaturation point for display and NoFly calculations | |
| 1763 // N2 | |
| 1764 temp1 = 1.05 * ppN2 - pres_tissue_N2[ci]; | |
| 1765 temp2 = ppN2 - pres_tissue_N2[ci]; | |
| 1766 if (temp2 >= 0.0) | |
| 1767 temp1 = 0.0; | |
| 1768 else | |
| 1769 temp1 = temp1 / temp2; | |
| 1770 | |
| 1771 if( 0.0 < temp1 && temp1 < 1.0 ) | |
| 1772 { | |
| 1773 // 0.6931 is ln(2), because the math function log() calculates with a base of e not 2 as requested. | |
| 1774 // minus because log is negative. | |
| 1775 temp1 = log(1.0 - temp1) / -0.6931; // temp1 is the multiples of half times necessary. | |
| 1776 temp2 = var_N2_ht * temp1 / float_desaturation_multiplier; // time necessary (in minutes ) for complete desaturation (see comment about 5 percent) | |
| 1777 } | |
| 1778 else | |
| 1779 { | |
| 1780 temp1 = 0.0; | |
| 1781 temp2 = 0.0; | |
| 1782 } | |
| 1783 | |
| 1784 // He | |
| 1785 temp3 = 0.1 - pres_tissue_He[ci]; | |
| 1786 if (temp3 >= 0.0) | |
| 1787 temp3 = 0.0; | |
| 1788 else | |
| 1789 temp3 = - temp3 / pres_tissue_He[ci]; | |
| 1790 | |
| 1791 if( 0.0 < temp3 && temp3 < 1.0 ) | |
| 1792 { | |
| 1793 temp3 = log(1.0 - temp3) / -0.6931; // temp1 is the multiples of half times necessary. | |
| 1794 // 0.6931 is ln(2), because the math function log() calculates with a base of e not 2 as requested. | |
| 1795 // minus because log is negative | |
| 1796 temp4 = var_He_ht * temp3 / float_desaturation_multiplier; // time necessary (in minutes ) for "complete" desaturation, new in v.101 float_desaturation_multiplier | |
| 1797 } | |
| 1798 else | |
| 1799 { | |
| 1800 temp3 = 0.0; | |
| 1801 temp4 = 0.0; | |
| 1802 } | |
| 1803 | |
| 1804 // saturation_time (for flight) | |
| 1805 if (temp4 > temp2) | |
| 1806 desat_time = (unsigned short)temp4; | |
| 1807 else | |
| 1808 desat_time = (unsigned short)temp2; | |
| 1809 | |
| 1810 if(desat_time > int_O_desaturation_time) | |
| 1811 int_O_desaturation_time = desat_time; | |
| 1812 | |
| 1813 // N2 saturation in multiples of halftime for display purposes | |
| 1814 temp2 = temp1 * 20.0; // 0 = 1/8, 120 = 0, 249 = 8 | |
| 1815 temp2 = temp2 + 80.0; // set center | |
| 1816 if (temp2 < 0.0) | |
| 1817 temp2 = 0.0; | |
| 1818 if (temp2 > 255.0) | |
| 1819 temp2 = 255.0; | |
| 1820 char_O_tissue_N2_saturation[ci] = (char)temp2; | |
| 1821 | |
| 1822 // He saturation in multiples of halftime for display purposes | |
| 1823 temp4 = temp3 * 20.0; // 0 = 1/8, 120 = 0, 249 = 8 | |
| 1824 temp4 = temp4 + 80.0; // set center | |
| 1825 if (temp4 < 0.0) | |
| 1826 temp4 = 0.0; | |
| 1827 if (temp4 > 255.0) | |
| 1828 temp4 = 255.0; | |
| 1829 char_O_tissue_He_saturation[ci] = (char)temp4; | |
| 1830 } // for | |
| 1831 } | |
| 1832 | |
| 1833 ////////////////////////////////////////////////////////////////////////////// | |
| 1834 // calc_wo_deco_step_1_min | |
| 1835 // | |
| 1836 // FIXED N2 Ratio | |
| 1837 // optimized in v.101 (...saturation_multiplier) | |
| 1838 // desaturation slowed down to 70,42% | |
| 1839 // | |
| 1840 static void calc_wo_deco_step_1_min(void) | |
| 1841 { | |
| 1842 assert( 800 < int_I_pres_surface && int_I_pres_surface < 1100 ); | |
| 1843 assert( 800 < int_I_pres_respiration && int_I_pres_respiration < 1100 ); | |
| 1844 assert( 100 <= char_I_saturation_multiplier && char_I_saturation_multiplier < 200 ); | |
| 1845 assert( 0 < char_I_desaturation_multiplier && char_I_desaturation_multiplier <= 100 ); | |
| 1846 | |
| 1847 N2_ratio = 0.7902; // FIXED, sum lt. buehlmann | |
| 1848 pres_respiration = pres_surface = int_I_pres_surface * 0.001; | |
| 1849 ppN2 = N2_ratio * (pres_respiration - ppWater); | |
| 1850 ppHe = 0.0; | |
| 1851 float_desaturation_multiplier = char_I_desaturation_multiplier * (0.01 * SURFACE_DESAT_FACTOR); | |
| 1852 float_saturation_multiplier = char_I_saturation_multiplier * 0.01; | |
| 1853 | |
| 1854 calc_tissue(1); // update the pressure in the tissues N2/He in accordance with the new ambient pressure | |
| 1855 | |
| 1856 clear_deco_table(); | |
| 1857 char_O_deco_status = 3; // surface new in v.102 : stays in surface state. | |
| 1858 char_O_nullzeit = 0; | |
| 1859 int_O_ascenttime = 0; | |
| 1860 int_O_extra_ascenttime = 0; | |
| 1861 calc_gradient_factor(); | |
| 1862 } | |
| 1863 | |
| 1864 ////////////////////////////////////////////////////////////////////////////// | |
| 1865 // calc_dive_interval | |
| 1866 // | |
| 1867 // Prepare tissue for delay before the next dive simulation. | |
| 1868 // | |
| 1869 // Inputs: char_I_dive_interval == delay before dive (in 10' steps). | |
| 1870 // Outputs: pres_tissue_N2/He[], CNS_fraction | |
| 1871 // | |
| 1872 // Should be protected by deco_push_tissues_to_vault(), | |
| 1873 // deco_pull_tissues_from_vault() | |
| 1874 // | |
| 1875 // desaturation slowed down to 70,42%. | |
| 1876 // | |
| 1877 static void calc_dive_interval(void) | |
| 1878 { | |
| 1879 overlay unsigned char t; | |
| 1880 overlay unsigned char backup_model; | |
| 1881 | |
| 1882 //---- Initialize simulation parameters ---------------------------------- | |
| 1883 N2_ratio = 0.7902; // FIXED, sum lt. buehlmann | |
| 1884 pres_respiration = pres_surface = int_I_pres_surface * 0.001; | |
| 1885 ppN2 = N2_ratio * (pres_respiration - ppWater); | |
| 1886 ppHe = 0.0; | |
| 1887 float_desaturation_multiplier = char_I_desaturation_multiplier * (0.01 * SURFACE_DESAT_FACTOR); | |
| 1888 float_saturation_multiplier = char_I_saturation_multiplier * 0.01; | |
| 1889 | |
| 1890 // Make sure SURFACE_DESAT_FACTOR is applied: | |
| 1891 backup_model = char_I_deco_model; | |
| 1892 char_I_deco_model = 0; | |
| 1893 | |
| 1894 //---- Perform simulation ------------------------------------------------ | |
| 1895 for(t=0; t<char_I_dive_interval; ++t) | |
| 1896 { | |
| 1897 calc_tissue(2); // period = 10min. | |
| 1898 CNS_fraction = 0.92587471 * CNS_fraction; // Half-time = 90min: (1/2)^(1/9) | |
| 1899 } | |
| 1900 assert( 0.0 <= CNS_fraction && CNS_fraction <= 2.56 ); | |
| 1901 int_O_CNS_fraction = (unsigned int)(CNS_fraction * 100.0 + 0.5); | |
| 1902 | |
| 1903 //---- Restore model ----------------------------------------------------- | |
| 1904 char_I_deco_model = backup_model; | |
| 1905 } | |
| 1906 | |
| 1907 ////////////////////////////////////////////////////////////////////////////// | |
| 1908 // deco_clear_CNS_fraction | |
| 1909 // | |
| 1910 // new in v.101 | |
| 1911 // | |
| 1912 void deco_clear_CNS_fraction(void) | |
| 1913 { | |
| 1914 RESET_C_STACK | |
| 1915 | |
| 1916 CNS_fraction = 0.0; | |
| 1917 int_O_CNS_fraction = 0; | |
| 1918 } | |
| 1919 | |
| 1920 ////////////////////////////////////////////////////////////////////////////// | |
| 1921 // deco_calc_CNS_fraction | |
| 1922 // | |
| 1923 // Input: char_I_actual_ppO2 : Current condition (in decibars). | |
| 1924 // char_I_step_is_1min : use 1min or 10min steps instead of 2sec. | |
| 1925 // CNS_fraction : velue before period. | |
| 1926 // Output: CNS_fraction, int_O_CNS_fraction | |
| 1927 // | |
| 1928 void deco_calc_CNS_fraction(void) | |
| 1929 { | |
| 1930 overlay float time_factor = 1.0f; | |
| 1931 RESET_C_STACK | |
| 1932 | |
| 1933 assert( 0.0 <= CNS_fraction && CNS_fraction <= 2.56 ); | |
| 1934 assert( char_I_actual_ppO2 > 15 ); | |
| 1935 | |
| 1936 if( char_I_step_is_1min == 1 ) | |
| 1937 time_factor = 30.0f; | |
| 1938 else if( char_I_step_is_1min == 2 ) | |
| 1939 time_factor = 300.0f; | |
|
33
5d4a4fb0e8a6
Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents:
0
diff
changeset
|
1940 //------------------------------------------------------------------------ |
|
5d4a4fb0e8a6
Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents:
0
diff
changeset
|
1941 // Don't increase CNS below 0.5 bar, but keep it steady. |
| 0 | 1942 if (char_I_actual_ppO2 < 50) |
| 1943 ; // no changes | |
|
33
5d4a4fb0e8a6
Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents:
0
diff
changeset
|
1944 //------------------------------------------------------------------------ |
|
5d4a4fb0e8a6
Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents:
0
diff
changeset
|
1945 // Below (and including) 1.60 bar |
|
5d4a4fb0e8a6
Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents:
0
diff
changeset
|
1946 else if (char_I_actual_ppO2 < 61) |
|
5d4a4fb0e8a6
Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents:
0
diff
changeset
|
1947 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
|
1948 else if (char_I_actual_ppO2 < 71) |
|
5d4a4fb0e8a6
Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents:
0
diff
changeset
|
1949 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
|
1950 else if (char_I_actual_ppO2 < 81) |
|
5d4a4fb0e8a6
Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents:
0
diff
changeset
|
1951 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
|
1952 else if (char_I_actual_ppO2 < 91) |
|
5d4a4fb0e8a6
Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents:
0
diff
changeset
|
1953 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
|
1954 else if (char_I_actual_ppO2 < 111) |
|
5d4a4fb0e8a6
Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents:
0
diff
changeset
|
1955 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
|
1956 else if (char_I_actual_ppO2 < 152) |
|
5d4a4fb0e8a6
Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents:
0
diff
changeset
|
1957 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
|
1958 else if (char_I_actual_ppO2 < 167) |
|
5d4a4fb0e8a6
Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents:
0
diff
changeset
|
1959 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
|
1960 //------------------------------------------------------------------------ |
|
5d4a4fb0e8a6
Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents:
0
diff
changeset
|
1961 // 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
|
1962 // 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
|
1963 // 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
|
1964 // 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
|
1965 else if (char_I_actual_ppO2 < 172) |
|
5d4a4fb0e8a6
Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents:
0
diff
changeset
|
1966 CNS_fraction += time_factor*0.00102; |
|
5d4a4fb0e8a6
Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents:
0
diff
changeset
|
1967 else if (char_I_actual_ppO2 < 177) |
| 0 | 1968 CNS_fraction += time_factor*0.00136; |
|
33
5d4a4fb0e8a6
Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents:
0
diff
changeset
|
1969 else if (char_I_actual_ppO2 < 182) |
| 0 | 1970 CNS_fraction += time_factor*0.00180; |
|
33
5d4a4fb0e8a6
Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents:
0
diff
changeset
|
1971 else if (char_I_actual_ppO2 < 187) |
| 0 | 1972 CNS_fraction += time_factor*0.00237; |
|
33
5d4a4fb0e8a6
Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents:
0
diff
changeset
|
1973 else if (char_I_actual_ppO2 < 192) |
| 0 | 1974 CNS_fraction += time_factor*0.00310; |
|
33
5d4a4fb0e8a6
Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents:
0
diff
changeset
|
1975 else if (char_I_actual_ppO2 < 198) |
| 0 | 1976 CNS_fraction += time_factor*0.00401; |
|
33
5d4a4fb0e8a6
Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents:
0
diff
changeset
|
1977 else if (char_I_actual_ppO2 < 203) |
| 0 | 1978 CNS_fraction += time_factor*0.00517; |
|
33
5d4a4fb0e8a6
Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents:
0
diff
changeset
|
1979 else if (char_I_actual_ppO2 < 233) |
| 0 | 1980 CNS_fraction += time_factor*0.0209; |
| 1981 else | |
| 1982 CNS_fraction += time_factor*0.0482; // value for 2.5 | |
| 1983 | |
| 1984 if( CNS_fraction > 9.99) | |
| 1985 CNS_fraction = 9.99; | |
| 1986 if( CNS_fraction < 0.0 ) | |
| 1987 CNS_fraction = 0.0; | |
| 1988 | |
| 1989 int_O_CNS_fraction = (unsigned int)(100.0 * CNS_fraction + 0.5); | |
| 1990 } | |
| 1991 | |
| 1992 ////////////////////////////////////////////////////////////////////////////// | |
| 1993 // deco_calc_CNS_planning | |
| 1994 // | |
| 1995 // Compute CNS during predicted ascent. | |
| 1996 // | |
| 1997 // Note: Needs a call to deco_push_tissues_to_vault(), | |
| 1998 // deco_pull_tissues_from_vault() to avoid trashing everything... | |
| 1999 // | |
| 2000 // Input: CNS_fraction, char_O_deco_time[], char_O_deco_depth[] | |
| 2001 // Output: CNS_fraction, int_O_CNS_fraction | |
| 2002 // | |
| 2003 void deco_calc_CNS_planning(void) | |
| 2004 { | |
| 2005 overlay unsigned char backup_gas_last_depth; | |
| 2006 overlay unsigned char backup_gas_last_used; | |
| 2007 overlay unsigned short backup_dive_mins; | |
| 2008 overlay unsigned char backup_actual_ppO2; | |
| 2009 | |
| 2010 RESET_C_STACK | |
| 2011 | |
| 2012 // Backup state machine | |
| 2013 backup_gas_last_depth = sim_gas_last_depth; | |
| 2014 backup_gas_last_used = sim_gas_last_used; | |
| 2015 backup_dive_mins = sim_dive_mins; | |
| 2016 backup_actual_ppO2 = char_I_actual_ppO2; | |
| 2017 | |
| 2018 // Uses 1min CNS period: | |
| 2019 char_I_step_is_1min = 1; | |
| 2020 | |
| 2021 //---- Retrieve bottom Gas used, and set variables. | |
| 2022 sim_gas_last_used = char_I_first_gas; | |
| 2023 sim_gas_last_depth = 0; // Surface gas marker. | |
| 2024 gas_switch_set(); // Sets initial calc_N2/He_ratio | |
| 2025 | |
| 2026 //---- CCR mode : do the full TTS at once -------------------------------- | |
| 2027 if( char_I_const_ppO2 != 0 ) | |
| 2028 { | |
| 2029 overlay unsigned short t; // Needs 16bits here ! | |
| 2030 char_I_actual_ppO2 = char_I_const_ppO2; | |
| 2031 for(t=0; t<int_O_ascenttime; ++t) | |
| 2032 deco_calc_CNS_fraction(); | |
| 2033 } | |
| 2034 else //---- OC mode : have to follow all gas switches... ----------------- | |
| 2035 { | |
| 2036 overlay unsigned char i = 0; // Decostop loop counter | |
| 2037 overlay float actual_ppO2; | |
| 2038 overlay unsigned char time, t; | |
| 2039 | |
| 2040 //---- Ascent to surface delay | |
| 2041 // NOTE: count as if time is spent with bottom pressure, | |
| 2042 // AND the bottom gas | |
| 2043 actual_ppO2 = (pres_surface + char_I_bottom_depth * METER_TO_BAR) | |
| 2044 * (1.0 - calc_N2_ratio - calc_He_ratio); | |
| 2045 if( actual_ppO2 < 0.0 ) actual_ppO2 = 0.0; | |
| 2046 if( actual_ppO2 > 2.50 ) actual_ppO2 = 2.55; | |
| 2047 char_I_actual_ppO2 = (unsigned char)(100.0 * actual_ppO2 + 0.5); | |
| 2048 | |
| 2049 // Ascent time (rounded up): | |
| 2050 time = (unsigned char)(0.1 * char_I_bottom_depth + 0.5); | |
| 2051 | |
| 2052 for(t=0; t<time; ++t) | |
| 2053 { | |
| 2054 deco_calc_CNS_fraction(); | |
| 2055 sim_dive_mins++; | |
| 2056 } | |
| 2057 | |
| 2058 //---- Do all further stops ------------------------------------------ | |
| 2059 for(i=0; i<NUM_STOPS; ++i) | |
| 2060 { | |
| 111 | 2061 overlay unsigned char stop_gas; |
| 0 | 2062 |
|
210
7dbc1d780ca5
do not clear char_O_deco_gas in copy_deco_table
heinrichsweikamp
parents:
135
diff
changeset
|
2063 //---- Get next stop --------------------------------------------- |
| 0 | 2064 { |
| 2065 time = char_O_deco_time[(NUM_STOPS-1)-i]; | |
| 2066 temp_depth_limit = char_O_deco_depth[(NUM_STOPS-1)-i]; | |
| 111 | 2067 stop_gas = char_O_deco_gas[(NUM_STOPS-1)-i]; |
| 0 | 2068 } |
| 2069 if( time == 0 ) continue; | |
| 2070 | |
| 2071 //---- Gas Switch ? ---------------------------------------------- | |
| 111 | 2072 if( stop_gas != sim_gas_last_used ) |
| 0 | 2073 { |
| 111 | 2074 sim_gas_last_depth = deco_gas_change[stop_gas-1]; |
| 2075 sim_gas_last_used = stop_gas; | |
| 0 | 2076 gas_switch_set(); |
| 2077 } | |
| 2078 | |
| 2079 //---- Convert Depth and N2_ratio to ppO2 ------------------------ | |
| 2080 actual_ppO2 = (pres_surface + temp_depth_limit * METER_TO_BAR) | |
| 2081 * (1.0 - calc_N2_ratio - calc_He_ratio); | |
| 2082 if( actual_ppO2 < 0.0 ) actual_ppO2 = 0.0; | |
| 2083 if( actual_ppO2 > 2.50 ) actual_ppO2 = 2.55; | |
| 2084 char_I_actual_ppO2 = (unsigned char)(100.0 * actual_ppO2 + 0.5); | |
| 2085 | |
| 2086 //---- Apply the stop | |
| 2087 for(t=0; t<time; ++t) | |
| 2088 { | |
| 2089 deco_calc_CNS_fraction(); | |
| 2090 sim_dive_mins++; | |
| 2091 } | |
| 2092 } | |
| 2093 } | |
| 2094 | |
| 2095 //---- Back to normal mode... -------------------------------------------- | |
| 2096 char_I_step_is_1min = 0; | |
| 2097 sim_gas_last_depth = backup_gas_last_depth; | |
| 2098 sim_gas_last_used = backup_gas_last_used; | |
| 2099 sim_dive_mins = backup_dive_mins; | |
| 2100 char_I_actual_ppO2 = backup_actual_ppO2; | |
| 2101 } | |
| 2102 | |
| 2103 ////////////////////////////////////////////////////////////////////////////// | |
| 2104 // deco_calc_CNS_decrease_15min | |
| 2105 // | |
| 2106 // new in v.101 | |
| 2107 // | |
| 2108 // calculates the half time of 90 minutes in 6 steps of 15 min | |
| 2109 // (Used in sleepmode, for low battery mode). | |
| 2110 // | |
| 2111 // Output: int_O_CNS_fraction | |
| 2112 // Uses and Updates: CNS_fraction | |
| 2113 // | |
| 2114 void deco_calc_CNS_decrease_15min(void) | |
| 2115 { | |
| 2116 RESET_C_STACK | |
| 2117 assert( 0.0 <= CNS_fraction && CNS_fraction <= 2.56 ); | |
| 2118 | |
| 2119 CNS_fraction = 0.890899 * CNS_fraction; | |
| 2120 int_O_CNS_fraction = (unsigned int)(CNS_fraction * 100.0 + 0.5); | |
| 2121 } | |
| 2122 | |
| 2123 ////////////////////////////////////////////////////////////////////////////// | |
| 2124 // deco_calc_percentage | |
| 2125 // | |
| 2126 // new in v.101 | |
| 2127 // | |
| 2128 // calculates int_I_temp * char_I_temp / 100 | |
| 2129 // output is int_I_temp | |
| 2130 // | |
| 2131 // Used to compute NoFly remaining time. | |
| 2132 // | |
| 2133 void deco_calc_percentage(void) | |
| 2134 { | |
| 2135 RESET_C_STACK | |
| 2136 | |
| 2137 assert( 60 <= char_I_temp && char_I_temp <= 100 ); | |
| 2138 assert( int_I_temp < 5760 ); // Less than 4 days = 96h... | |
| 2139 | |
| 2140 int_I_temp = (unsigned short)(((float)int_I_temp * (float)char_I_temp) * 0.01 ); | |
| 2141 | |
| 2142 assert( int_I_temp < 5760 ); // Less than 96h too... | |
| 2143 } | |
| 2144 | |
| 2145 | |
| 2146 ////////////////////////////////////////////////////////////////////////////// | |
| 2147 // deco_gas_volumes | |
| 2148 // | |
| 2149 // new in v.111 | |
| 2150 // | |
| 2151 // calculates volumes for each gas. | |
| 2152 // | |
| 2153 // Input: char_I_bottom_depth, char_I_bottom_time for planned dive. | |
| 2154 // Gas list. | |
| 2155 // char_I_first_gas is the bottom gas. | |
| 2156 // decoplan (char_O_deco_depth, char_O_deco_time). | |
| 2157 // CF#54 == TRUE if shallowest stop first. | |
| 2158 // CF#56 == bottom liters/minutes (5 .. 50) or bar/min. | |
| 2159 // CF#57 == deco liters/minutes (5 .. 50) or bar/min. | |
| 2160 // Output: int_O_gas_volumes[0..4] in litters * 0.1 | |
| 2161 // | |
| 135 | 2162 |
|
133
939f1e83c4c2
BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents:
126
diff
changeset
|
2163 |
| 0 | 2164 void deco_gas_volumes(void) |
| 2165 { | |
| 2166 overlay float volumes[NUM_GAS]; | |
| 2167 overlay float bottom_usage, deco_usage; | |
| 135 | 2168 overlay unsigned char i; |
| 0 | 2169 overlay unsigned char gas, depth; |
|
115
72259a79eac2
FIX: Gas volume computation when using several travel mix.
heinrichsweikamp
parents:
114
diff
changeset
|
2170 overlay unsigned char lastGasStop = 255; |
| 0 | 2171 RESET_C_STACK |
| 2172 | |
| 2173 //---- initialize with bottom consumption -------------------------------- | |
| 2174 for(i=0; i<NUM_GAS; ++i) // Nothing yet... | |
| 2175 volumes[i] = 0.0; | |
| 2176 | |
| 2177 assert(1 <= char_I_first_gas && char_I_first_gas <= NUM_GAS); | |
| 2178 gas = char_I_first_gas - 1; | |
| 2179 | |
|
115
72259a79eac2
FIX: Gas volume computation when using several travel mix.
heinrichsweikamp
parents:
114
diff
changeset
|
2180 bottom_usage = 20; // In liter/minutes. |
| 0 | 2181 if( char_I_const_ppO2 == 0 && bottom_usage > 0.0 ) |
| 2182 volumes[gas] | |
| 2183 = (char_I_bottom_depth*0.1 + 1.0) // Use Psurface = 1.0 bar. | |
| 2184 * char_I_bottom_time // in minutes. | |
| 2185 * bottom_usage; // In liter/minutes. | |
| 2186 | |
| 2187 //---- Ascent usage ------------------------------------------------------ | |
|
115
72259a79eac2
FIX: Gas volume computation when using several travel mix.
heinrichsweikamp
parents:
114
diff
changeset
|
2188 deco_usage = 20; // In liter/minutes. |
| 0 | 2189 |
| 2190 depth = char_I_bottom_depth; | |
| 2191 | |
| 2192 for(i=0; i<NUM_STOPS; ++i) | |
| 2193 { | |
| 2194 overlay unsigned char newDepth, time; | |
| 2195 | |
| 135 | 2196 time = char_O_deco_time[31-i]; |
| 2197 if( time == 0 ) continue; // not yet: still search table. | |
| 2198 newDepth = char_O_deco_depth[31-i]; | |
| 0 | 2199 |
|
115
72259a79eac2
FIX: Gas volume computation when using several travel mix.
heinrichsweikamp
parents:
114
diff
changeset
|
2200 //---- Gas switch during or before this stop -------------------------- |
|
72259a79eac2
FIX: Gas volume computation when using several travel mix.
heinrichsweikamp
parents:
114
diff
changeset
|
2201 for(;;) |
| 0 | 2202 { |
| 2203 overlay unsigned char newGas = 0; | |
| 2204 overlay unsigned char newStop = 0; // NO CHANGE yet | |
| 2205 overlay unsigned char j; | |
| 2206 | |
| 2207 for(j=0; j<NUM_GAS; ++j) | |
| 2208 { | |
| 2209 // Skip gas without changing depth: | |
| 2210 if( ! char_I_deco_gas_change[j] ) | |
| 2211 continue; | |
|
115
72259a79eac2
FIX: Gas volume computation when using several travel mix.
heinrichsweikamp
parents:
114
diff
changeset
|
2212 // Select gas changed between [newDepth .. lastGasStop[ |
|
72259a79eac2
FIX: Gas volume computation when using several travel mix.
heinrichsweikamp
parents:
114
diff
changeset
|
2213 // Note that <= means changing gas at BEGINNING of this stop. |
|
72259a79eac2
FIX: Gas volume computation when using several travel mix.
heinrichsweikamp
parents:
114
diff
changeset
|
2214 // Note that < means we cant use the same gas twice |
| 0 | 2215 if( newDepth <= char_I_deco_gas_change[j] |
|
115
72259a79eac2
FIX: Gas volume computation when using several travel mix.
heinrichsweikamp
parents:
114
diff
changeset
|
2216 && char_I_deco_gas_change[j] < lastGasStop ) |
| 0 | 2217 { |
| 2218 // Keep the DEEPEST gas in that range: | |
| 2219 if( char_I_deco_gas_change[j] >= newStop ) | |
| 2220 { | |
| 2221 newGas = j; | |
| 2222 newStop = char_I_deco_gas_change[j]; | |
| 2223 } | |
| 2224 } | |
| 2225 } | |
| 2226 | |
|
115
72259a79eac2
FIX: Gas volume computation when using several travel mix.
heinrichsweikamp
parents:
114
diff
changeset
|
2227 // Did we find something ? |
|
72259a79eac2
FIX: Gas volume computation when using several travel mix.
heinrichsweikamp
parents:
114
diff
changeset
|
2228 if( !newStop ) |
|
72259a79eac2
FIX: Gas volume computation when using several travel mix.
heinrichsweikamp
parents:
114
diff
changeset
|
2229 break; |
| 0 | 2230 |
|
115
72259a79eac2
FIX: Gas volume computation when using several travel mix.
heinrichsweikamp
parents:
114
diff
changeset
|
2231 //---- usage BEFORE gas switch (if any), at 10m/min : |
|
72259a79eac2
FIX: Gas volume computation when using several travel mix.
heinrichsweikamp
parents:
114
diff
changeset
|
2232 if( deco_usage > 0.0 && depth > newStop ) |
|
72259a79eac2
FIX: Gas volume computation when using several travel mix.
heinrichsweikamp
parents:
114
diff
changeset
|
2233 // Plus usage during ascent to the next stop, at 10m/min. |
|
72259a79eac2
FIX: Gas volume computation when using several travel mix.
heinrichsweikamp
parents:
114
diff
changeset
|
2234 volumes[gas] += ((depth+newStop)*0.05 + 1.0) // average depth --> bar. |
|
72259a79eac2
FIX: Gas volume computation when using several travel mix.
heinrichsweikamp
parents:
114
diff
changeset
|
2235 * (depth-newStop)*0.1 // metre --> min |
|
72259a79eac2
FIX: Gas volume computation when using several travel mix.
heinrichsweikamp
parents:
114
diff
changeset
|
2236 * deco_usage; |
|
72259a79eac2
FIX: Gas volume computation when using several travel mix.
heinrichsweikamp
parents:
114
diff
changeset
|
2237 |
|
72259a79eac2
FIX: Gas volume computation when using several travel mix.
heinrichsweikamp
parents:
114
diff
changeset
|
2238 //---- Do gas switch: |
|
72259a79eac2
FIX: Gas volume computation when using several travel mix.
heinrichsweikamp
parents:
114
diff
changeset
|
2239 gas = newGas; |
|
72259a79eac2
FIX: Gas volume computation when using several travel mix.
heinrichsweikamp
parents:
114
diff
changeset
|
2240 |
|
72259a79eac2
FIX: Gas volume computation when using several travel mix.
heinrichsweikamp
parents:
114
diff
changeset
|
2241 lastGasStop = newStop; // Mark last used gas |
|
72259a79eac2
FIX: Gas volume computation when using several travel mix.
heinrichsweikamp
parents:
114
diff
changeset
|
2242 if( newStop < depth ) // ascent to gas switch, |
| 0 | 2243 depth = newStop; |
| 2244 } | |
| 2245 | |
|
115
72259a79eac2
FIX: Gas volume computation when using several travel mix.
heinrichsweikamp
parents:
114
diff
changeset
|
2246 //---- usage AFTER gas switch (if any), at 10m/min : |
| 0 | 2247 if( depth > newDepth ) |
| 2248 volumes[gas] += ((depth+newDepth)*0.05 + 1.0) // average depth --> bar. | |
| 2249 * (depth-newDepth)*0.1 // metre --> min | |
| 2250 * deco_usage; | |
| 2251 | |
|
115
72259a79eac2
FIX: Gas volume computation when using several travel mix.
heinrichsweikamp
parents:
114
diff
changeset
|
2252 //---- Do stop: |
| 0 | 2253 depth = newDepth; |
| 2254 | |
| 2255 // Usage at stop: | |
| 2256 if( deco_usage > 0.0 ) | |
| 2257 volumes[gas] += (depth*0.1 + 1.0) // depth --> bar. | |
| 2258 * time // in minutes. | |
| 2259 * deco_usage; // in xxx / min @ 1bar. | |
| 2260 else | |
| 2261 volumes[gas] = 65535.0; | |
| 2262 } | |
| 2263 | |
| 2264 // From last stop to surface | |
| 2265 if( deco_usage > 0.0 ) | |
| 2266 volumes[gas] += (depth*0.05 + 1.0) // avg depth --> bar. | |
| 2267 * depth * 0.1 // time to surface, in minutes. | |
| 2268 * deco_usage; // in xxx / min @ 1bar. | |
| 2269 | |
| 2270 //---- convert results for the ASM interface ----------------------------- | |
| 2271 for(i=0; i<NUM_GAS; ++i) | |
| 2272 if( volumes[i] > 65534.0 ) | |
| 2273 int_O_gas_volumes[i] = 65535; | |
| 2274 else | |
| 2275 int_O_gas_volumes[i] = (unsigned short)(volumes[i] + 0.5); | |
| 2276 } | |
| 2277 | |
| 2278 ////////////////////////////////////////////////////////////////////////////// | |
| 2279 | |
| 135 | 2280 |
|
133
939f1e83c4c2
BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents:
126
diff
changeset
|
2281 |
| 0 | 2282 void deco_push_tissues_to_vault(void) |
| 2283 { | |
| 2284 overlay unsigned char x; | |
| 2285 RESET_C_STACK | |
| 2286 | |
| 2287 cns_vault = CNS_fraction; | |
| 2288 low_depth_vault = low_depth; | |
| 2289 | |
| 2290 for (x=0;x<NUM_COMP;x++) | |
| 2291 { | |
| 2292 pres_tissue_N2_vault[x] = pres_tissue_N2[x]; | |
| 2293 pres_tissue_He_vault[x] = pres_tissue_He[x]; | |
| 2294 } | |
| 2295 } | |
| 2296 | |
| 2297 void deco_pull_tissues_from_vault(void) | |
| 2298 { | |
| 2299 overlay unsigned char x; | |
| 2300 RESET_C_STACK | |
| 2301 | |
| 2302 for (x=0; x<NUM_COMP; x++) | |
| 2303 { | |
| 2304 pres_tissue_N2[x] = pres_tissue_N2_vault[x]; | |
| 2305 pres_tissue_He[x] = pres_tissue_He_vault[x]; | |
| 2306 } | |
| 2307 | |
| 2308 // Restore both CNS variable, too. | |
| 2309 CNS_fraction = cns_vault; | |
| 2310 int_O_CNS_fraction = (unsigned int)(CNS_fraction * 100.0 + 0.5); | |
| 2311 | |
| 2312 // GF history too: | |
| 2313 low_depth = low_depth_vault; | |
| 2314 locked_GF_step = GF_delta / low_depth; | |
| 2315 } | |
| 2316 | |
| 2317 ////////////////////////////////////////////////////////////////////////////// | |
| 2318 // | |
| 2319 #ifndef CROSS_COMPILE | |
| 2320 void main() {} | |
| 2321 #endif |
