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