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