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