Mercurial > public > mk2
annotate code_part1/OSTC_code_c_part2/p2_deco.c @ 200:0a3ca358c684
BUGFIX clear decotable at begin of simulator mode.
+ minor P2_deco cleanups and comments.
author | JeanDo |
---|---|
date | Mon, 14 Feb 2011 23:15:40 +0100 |
parents | f15e804ff67f |
children | e5c484d59a91 |
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(). |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
68 // 2011/01/24: [jDG] Make ascenttime an int. No more overflow! |
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. |
116 | 73 // |
167 | 74 // TODO: |
75 // + Allow to abort MD2 calculation (have to restart next time). | |
76 // | |
77 // Literature: | |
200 | 78 // Bühlmann, Albert: Tauchmedizin; 4. Auflage [2002]; |
116 | 79 // 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 |
80 // Morrison, Stuart; 2000; DIY DECOMPRESSION; http://www.lizardland.co.uk/DIYDeco.html | |
81 // Balthasar, Steffen; Dekompressionstheorie I: Neo Haldane Modelle; http://www.txfreak.de/dekompressionstheorie_1.pdf | |
82 // Baker, Erik C.; Clearing Up The Confusion About "Deep Stops" | |
83 // Baker, Erik C.; Understanding M-values; http://www.txfreak.de/understanding_m-values.pdf | |
167 | 84 // |
85 // | |
116 | 86 |
87 // ********************* | |
88 // ** I N C L U D E S ** | |
89 // ********************* | |
90 #include <math.h> | |
167 | 91 |
192 | 92 // *********************************************** |
93 // ** V A R I A B L E S D E F I N I T I O N S ** | |
94 // *********************************************** | |
95 | |
96 #include "p2_definitions.h" | |
97 #include "shared_definitions.h" | |
98 | |
200 | 99 // Water vapour partial pressure in the lumb. |
100 static const float ppWVapour = 0.0627; | |
101 | |
167 | 102 // ************************* |
103 // ** P R O T O T Y P E S ** | |
104 // ************************* | |
105 | |
106 static void calc_hauptroutine(void); | |
107 static void calc_nullzeit(void); | |
108 | |
192 | 109 static void calc_tissue(PARAMETER unsigned char period); |
110 static void calc_limit(PARAMETER float GF_current); | |
111 | |
167 | 112 static void clear_tissue(void); |
113 static void calc_ascenttime(void); | |
114 static void update_startvalues(void); | |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
115 static void clear_deco_table(void); |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
116 static void update_deco_table(void); |
192 | 117 |
118 static void backup_sim_pres_tissue(void); | |
119 static void restore_sim_pres_tissue(void); | |
120 static void sim_tissue(PARAMETER unsigned char period); | |
121 static void sim_limit(PARAMETER float GF_current); | |
167 | 122 static void calc_gradient_factor(void); |
123 static void calc_wo_deco_step_1_min(void); | |
124 | |
125 static void calc_hauptroutine_data_input(void); | |
126 static void calc_hauptroutine_update_tissues(void); | |
127 static void calc_hauptroutine_calc_deco(void); | |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
128 static void sim_ascent_to_first_stop(void); |
167 | 129 |
171 | 130 static void calc_nextdecodepth(void); |
116 | 131 |
200 | 132 //---- Bank 4 parameters ----------------------------------------------------- |
163 | 133 #pragma udata bank4=0x400 |
116 | 134 |
192 | 135 static unsigned char low_depth; |
116 | 136 static float temp_limit; |
137 static float GF_low; | |
138 static float GF_high; | |
139 static float GF_delta; | |
192 | 140 static unsigned char low_depth; // Depth of deepest stop |
141 static float locked_GF_step; // GF_delta / low_depth | |
142 | |
143 static unsigned char temp_depth_limit; | |
171 | 144 |
192 | 145 // Simulation context: used to predict ascent. |
146 static unsigned char sim_lead_tissue_no; // Leading compatiment number. | |
147 static float sim_lead_tissue_limit; // Buhlmann tolerated pressure. | |
116 | 148 |
192 | 149 // Real context: what we are doing now. |
150 static float calc_lead_tissue_limit; // | |
116 | 151 |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
152 static unsigned char internal_deco_time[32]; |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
153 static unsigned char internal_deco_depth[32]; |
116 | 154 |
155 static float cns_vault; | |
156 static float pres_tissue_vault[32]; | |
157 | |
163 | 158 //---- Bank 5 parameters ----------------------------------------------------- |
159 #pragma udata bank5=0x500 | |
160 | |
167 | 161 static unsigned char ci; |
116 | 162 static float pres_respiration; |
163 static float pres_surface; | |
164 static float temp_deco; | |
200 | 165 static float ppO2; |
166 static float ppHe; | |
116 | 167 static float temp_tissue; |
200 | 168 static float N2_ratio; // Breathed gas nitrogen ratio. |
169 static float He_ratio; // Breathed gas helium ratio. | |
170 static float var_N2_a; // Bühlmann a, for current N2 tissue. | |
171 static float var_N2_b; // Bühlmann b, for current N2 tissue. | |
172 static float var_He_a; // Bühlmann a, for current He tissue. | |
173 static float var_He_b; // Bühlmann b, for current He tissue. | |
174 static float var_N2_e; // Exposition, for current N2 tissue. | |
175 static float var_He_e; // Exposition, for current He tissue. | |
116 | 176 |
164 | 177 static float pres_diluent; // new in v.101 |
178 static float deco_diluent; // new in v.101 | |
179 static float const_ppO2; // new in v.101 | |
180 static float deco_ppO2_change; // new in v.101 | |
181 static float deco_ppO2; // new in v.101 | |
116 | 182 |
200 | 183 static unsigned char sim_gas_last_used; // Last used gas, to detected a gas switch. |
184 static unsigned char sim_gas_delay; // Delay added for gas switch (count down) [min]. | |
185 static float calc_N2_ratio; // Simulated (switched) nitrogen ratio. | |
186 static float calc_He_ratio; // Simulated (switched) helium ratio. | |
187 static float CNS_fraction; // new in v.101 | |
188 static float float_saturation_multiplier; // new in v.101 | |
189 static float float_desaturation_multiplier; // new in v.101 | |
167 | 190 static float float_deco_distance; // new in v.101 |
191 static char flag_in_divemode; // new in v.108 | |
192 | |
193 static float deco_gas_change1; // new in v.101 | |
194 static float deco_gas_change2; // new in v.109 | |
195 static float deco_gas_change3; // new in v.109 | |
196 static float deco_gas_change4; // new in v.109 | |
197 static float deco_gas_change5; // new in v.109 | |
198 | |
199 static float deco_N2_ratio1; // new in v.101 | |
200 static float deco_He_ratio1; // new in v.101 | |
201 | |
202 | |
163 | 203 //---- Bank 6 parameters ----------------------------------------------------- |
204 #pragma udata bank6=0x600 | |
116 | 205 |
197 | 206 float pres_tissue[32]; |
207 float pres_tissue_limit[16]; | |
208 float sim_pres_tissue_limit[16]; | |
116 | 209 |
163 | 210 //---- Bank 7 parameters ----------------------------------------------------- |
211 #pragma udata bank7=0x700 | |
212 | |
197 | 213 float sim_pres_tissue[32]; // 32 floats = 128 bytes. |
116 | 214 static float sim_pres_tissue_backup[32]; |
215 | |
163 | 216 //---- Bank 8 parameters ----------------------------------------------------- |
116 | 217 #pragma udata bank8=0x800 |
163 | 218 |
116 | 219 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
|
220 #define C_STACK md_pi_subst // Overlay C-code data stack here, too. |
116 | 221 |
163 | 222 //---- Bank 9 parameters ----------------------------------------------------- |
167 | 223 #pragma udata bank9=0x900 |
116 | 224 |
163 | 225 static char md_state[48]; // DONT MOVE !! // has to be at the beginning of bank 9 for the asm code!!! |
116 | 226 |
164 | 227 // internal, dbg: |
167 | 228 static unsigned char DBG_char_I_deco_model; // new in v.108. |
164 | 229 static unsigned char DBG_char_I_depth_last_deco; // new in v.108 |
230 static float DBG_pres_surface; // new in v.108 | |
231 static float DBG_GF_low; // new in v.108 | |
232 static float DBG_GF_high; // new in v.108 | |
233 static float DBG_const_ppO2; // new in v.108 | |
234 static float DBG_deco_ppO2_change; // new in v.108 | |
235 static float DBG_deco_ppO2; // new in v.108 | |
236 static float DBG_deco_N2_ratio; // new in v.108 | |
237 static float DBG_deco_He_ratio; // new in v.108 | |
238 static float DBG_deco_gas_change; // new in v.108 | |
239 static float DBG_float_saturation_multiplier; // new in v.108 | |
240 static float DBG_float_desaturation_multiplier; // new in v.108 | |
241 static float DBG_float_deco_distance; // new in v.108 | |
242 static float DBG_deco_N2_ratio; // new in v.108 | |
243 static float DBG_deco_He_ratio; // new in v.108 | |
244 static float DBG_N2_ratio; // new in v.108 | |
245 static float DBG_He_ratio; // new in v.108 | |
246 | |
167 | 247 ////////////////////////////////////////////////////////////////////////////// |
248 ////////////////////////////////////////////////////////////////////////////// | |
249 ///////////////////////////// THE LOOKUP TABLES ////////////////////////////// | |
250 ////////////////////////////////////////////////////////////////////////////// | |
251 ////////////////////////////////////////////////////////////////////////////// | |
252 // | |
253 // End of PROM code is 17F00, So push tables on PROM top... | |
254 // | |
255 #pragma romdata buhlmann_tables = 0x017B00 // Needs to be in UPPER bank. | |
256 #include "p2_tables.romdata" // new table for deco_main_v.101 (var_N2_a modified) | |
116 | 257 |
167 | 258 // Magic table to compute the MD2 HASH |
259 // | |
260 #pragma romdata hash_tables = 0x017E00 // Address fixed by ASM access... | |
116 | 261 rom const rom unsigned int md_pi[] = |
262 { | |
263 0x292E, 0x43C9, 0xA2D8, 0x7C01, 0x3D36, 0x54A1, 0xECF0, 0x0613 | |
264 , 0x62A7, 0x05F3, 0xC0C7, 0x738C, 0x9893, 0x2BD9, 0xBC4C, 0x82CA | |
265 , 0x1E9B, 0x573C, 0xFDD4, 0xE016, 0x6742, 0x6F18, 0x8A17, 0xE512 | |
266 , 0xBE4E, 0xC4D6, 0xDA9E, 0xDE49, 0xA0FB, 0xF58E, 0xBB2F, 0xEE7A | |
267 , 0xA968, 0x7991, 0x15B2, 0x073F, 0x94C2, 0x1089, 0x0B22, 0x5F21 | |
268 , 0x807F, 0x5D9A, 0x5A90, 0x3227, 0x353E, 0xCCE7, 0xBFF7, 0x9703 | |
269 , 0xFF19, 0x30B3, 0x48A5, 0xB5D1, 0xD75E, 0x922A, 0xAC56, 0xAAC6 | |
270 , 0x4FB8, 0x38D2, 0x96A4, 0x7DB6, 0x76FC, 0x6BE2, 0x9C74, 0x04F1 | |
271 , 0x459D, 0x7059, 0x6471, 0x8720, 0x865B, 0xCF65, 0xE62D, 0xA802 | |
272 , 0x1B60, 0x25AD, 0xAEB0, 0xB9F6, 0x1C46, 0x6169, 0x3440, 0x7E0F | |
273 , 0x5547, 0xA323, 0xDD51, 0xAF3A, 0xC35C, 0xF9CE, 0xBAC5, 0xEA26 | |
274 , 0x2C53, 0x0D6E, 0x8528, 0x8409, 0xD3DF, 0xCDF4, 0x4181, 0x4D52 | |
275 , 0x6ADC, 0x37C8, 0x6CC1, 0xABFA, 0x24E1, 0x7B08, 0x0CBD, 0xB14A | |
276 , 0x7888, 0x958B, 0xE363, 0xE86D, 0xE9CB, 0xD5FE, 0x3B00, 0x1D39 | |
277 , 0xF2EF, 0xB70E, 0x6658, 0xD0E4, 0xA677, 0x72F8, 0xEB75, 0x4B0A | |
278 , 0x3144, 0x50B4, 0x8FED, 0x1F1A, 0xDB99, 0x8D33, 0x9F11, 0x8314 | |
279 }; | |
280 | |
167 | 281 ////////////////////////////////////////////////////////////////////////////// |
282 ////////////////////////////////////////////////////////////////////////////// | |
283 ////////////////////////////// THE SUBROUTINES /////////////////////////////// | |
284 ////////////////////////////////////////////////////////////////////////////// | |
285 ////////////////////////////////////////////////////////////////////////////// | |
286 // | |
116 | 287 // all new in v.102 |
288 // moved from 0x0D000 to 0x0C000 in v.108 | |
289 | |
290 #pragma code p2_deco = 0x0C000 | |
291 | |
167 | 292 ////////////////////////////////////////////////////////////////////////////// |
293 // DBS - debug on start of dive | |
294 // | |
295 static void create_dbs_set_dbg_and_ndl20mtr(void) | |
116 | 296 { |
167 | 297 overlay char i; // Local loop index. |
298 | |
299 //---- Reset DEBUG bit fields -------------------------------------------- | |
116 | 300 int_O_DBS_bitfield = 0; |
301 int_O_DBS2_bitfield = 0; | |
302 if(int_O_DBG_pre_bitfield & DBG_RUN) | |
303 int_O_DBG_pre_bitfield = DBG_RESTART; | |
304 else | |
305 int_O_DBG_pre_bitfield = DBG_RUN; | |
306 int_O_DBG_post_bitfield = 0; | |
167 | 307 |
308 //---- Set 20meters ND limit --------------------------------------------- | |
116 | 309 char_O_NDL_at_20mtr = 255; |
310 | |
167 | 311 //---- Copy all dive parameters ------------------------------------------ |
116 | 312 DBG_N2_ratio = N2_ratio; |
313 DBG_He_ratio = He_ratio; | |
314 DBG_char_I_deco_model = char_I_deco_model; | |
315 DBG_char_I_depth_last_deco = char_I_depth_last_deco; | |
316 DBG_pres_surface = pres_surface; | |
317 DBG_GF_low = GF_low; | |
318 DBG_GF_high = GF_high; | |
319 DBG_const_ppO2 = const_ppO2; | |
320 DBG_deco_ppO2_change = deco_ppO2_change; | |
321 DBG_deco_ppO2 = deco_ppO2; | |
167 | 322 DBG_deco_N2_ratio = deco_N2_ratio1; |
323 DBG_deco_He_ratio = deco_He_ratio1; | |
324 DBG_deco_gas_change = deco_gas_change1; | |
116 | 325 DBG_float_saturation_multiplier = float_saturation_multiplier; |
326 DBG_float_desaturation_multiplier = float_desaturation_multiplier; | |
327 DBG_float_deco_distance = float_deco_distance; | |
328 | |
167 | 329 //---- Setup some error (?) conditions ----------------------------------- |
116 | 330 if(char_I_deco_model) |
331 int_O_DBS_bitfield |= DBS_mode; | |
332 if(const_ppO2) | |
333 int_O_DBS_bitfield |= DBS_ppO2; | |
167 | 334 for(i = 16; i < 32; i++) |
335 if(pres_tissue[i]) | |
116 | 336 int_O_DBS_bitfield |= DBS_HE_sat; |
337 if(deco_ppO2_change) | |
338 int_O_DBS_bitfield |= DBS_ppO2chg; | |
339 if(float_saturation_multiplier < 0.99) | |
340 int_O_DBS_bitfield |= DBS_SAT2l; | |
341 if(float_saturation_multiplier > 1.3) | |
342 int_O_DBS_bitfield |= DBS_SAT2h; | |
343 if(GF_low < 0.19) | |
344 int_O_DBS_bitfield |= DBS_GFLOW2l; | |
345 if(GF_low > 1.01) | |
346 int_O_DBS_bitfield |= DBS_GFLOW2h; | |
347 if(GF_high < 0.6) | |
348 int_O_DBS_bitfield |= DBS_GFHGH2l; | |
349 if(GF_high > 1.01) | |
350 int_O_DBS_bitfield |= DBS_GFHGH2h; | |
351 if((N2_ratio + He_ratio) > 0.95) | |
352 int_O_DBS_bitfield |= DBS_GASO22l; | |
353 if((N2_ratio + He_ratio) < 0.05) | |
354 int_O_DBS_bitfield |= DBS_GASO22h; | |
355 if(float_deco_distance > 0.25) | |
356 int_O_DBS_bitfield |= DBS_DIST2h; | |
357 if(char_I_depth_last_deco > 8) | |
358 int_O_DBS_bitfield |= DBS_LAST2h; | |
167 | 359 if(DBG_deco_gas_change && ((deco_N2_ratio1 + deco_He_ratio1) > 0.95)) |
116 | 360 int_O_DBS_bitfield |= DBS_DECOO2l; |
167 | 361 if(DBG_deco_gas_change && ((deco_N2_ratio1 + deco_He_ratio1) < 0.05)) |
116 | 362 int_O_DBS_bitfield |= DBS_DECOO2h; |
363 if(pres_respiration > 3.0) | |
364 int_O_DBS2_bitfield |= DBS2_PRES2h; | |
365 if(pres_surface - pres_respiration > 0.2) | |
366 int_O_DBS2_bitfield |= DBS2_PRES2l; | |
367 if(pres_surface < 0.75) | |
368 int_O_DBS2_bitfield |= DBS2_SURF2l; | |
369 if(pres_surface > 1.11) | |
370 int_O_DBS2_bitfield |= DBS2_SURF2h; | |
371 if(float_desaturation_multiplier < 0.70) | |
372 int_O_DBS2_bitfield |= DBS2_DESAT2l; | |
373 if(float_desaturation_multiplier > 1.01) | |
374 int_O_DBS2_bitfield |= DBS2_DESAT2h; | |
375 if(GF_low > GF_high) | |
376 int_O_DBS2_bitfield |= DBS2_GFDneg; | |
377 } | |
378 | |
167 | 379 ////////////////////////////////////////////////////////////////////////////// |
380 // DBG - set DBG to end_of_dive | |
381 // | |
382 static void set_dbg_end_of_dive(void) | |
116 | 383 { |
384 int_O_DBG_pre_bitfield &= (~DBG_RUN); | |
385 int_O_DBG_post_bitfield &= (~DBG_RUN); | |
386 } | |
387 | |
167 | 388 ////////////////////////////////////////////////////////////////////////////// |
389 // DBG - NDL at first 20 m. hit | |
390 // | |
391 static void check_ndl(void) | |
116 | 392 { |
167 | 393 if( char_O_NDL_at_20mtr == 255 // Still in NDL mode ? |
394 && int_I_pres_respiration > 3000 // And we hit the 20m limit ? | |
395 ) | |
116 | 396 { |
167 | 397 char_O_NDL_at_20mtr = char_O_nullzeit; // change to max bottom time. |
398 if( char_O_NDL_at_20mtr == 255) // and avoid confusion. | |
184 | 399 char_O_NDL_at_20mtr = 254; |
116 | 400 } |
401 } | |
402 | |
167 | 403 ////////////////////////////////////////////////////////////////////////////// |
404 // DBG - multi main during dive | |
405 // | |
184 | 406 static void check_dbg(PARAMETER char is_post_check) |
116 | 407 { |
167 | 408 overlay unsigned int temp_DBS = 0; |
200 | 409 overlay unsigned char i; // Local loop index. |
167 | 410 |
116 | 411 if( (DBG_N2_ratio != N2_ratio) || (DBG_He_ratio != He_ratio) ) |
412 temp_DBS |= DBG_c_gas; | |
413 if(DBG_const_ppO2 != const_ppO2) | |
414 temp_DBS |= DBG_c_ppO2; | |
167 | 415 if( DBG_float_saturation_multiplier != float_saturation_multiplier |
416 || DBG_float_desaturation_multiplier != float_desaturation_multiplier | |
417 ) | |
116 | 418 temp_DBS |= DBG_CdeSAT; |
419 if(DBG_char_I_deco_model != char_I_deco_model) | |
420 temp_DBS |= DBG_C_MODE; | |
421 if(DBG_pres_surface != pres_surface) | |
422 temp_DBS |= DBG_C_SURF; | |
167 | 423 |
424 if( !DBS_HE_sat && !He_ratio) | |
425 for(i = 16; i < 32; i++) | |
426 if(pres_tissue[i]) | |
116 | 427 temp_DBS |= DBG_HEwoHE; |
167 | 428 |
116 | 429 if(DBG_deco_ppO2 != deco_ppO2) |
430 temp_DBS |= DBG_C_DPPO2; | |
167 | 431 |
432 if( DBG_deco_gas_change != deco_gas_change1 | |
433 || DBG_deco_N2_ratio != deco_N2_ratio1 | |
434 || DBG_deco_He_ratio != deco_He_ratio1 ) | |
116 | 435 temp_DBS |= DBG_C_DGAS; |
167 | 436 |
116 | 437 if(DBG_float_deco_distance != float_deco_distance) |
438 temp_DBS |= DBG_C_DIST; | |
439 if(DBG_char_I_depth_last_deco != char_I_depth_last_deco) | |
440 temp_DBS |= DBG_C_LAST; | |
167 | 441 if( DBG_GF_low != GF_low |
442 || DBG_GF_high != GF_high ) | |
116 | 443 temp_DBS |= DBG_C_GF; |
444 if(pres_respiration > 13.0) | |
445 temp_DBS |= DBG_PHIGH; | |
446 if(pres_surface - pres_respiration > 0.2) | |
447 temp_DBS |= DBG_PLOW; | |
448 if(is_post_check) | |
449 int_O_DBG_post_bitfield |= temp_DBS; | |
450 else | |
451 int_O_DBG_pre_bitfield |= temp_DBS; | |
452 } | |
453 | |
167 | 454 ////////////////////////////////////////////////////////////////////////////// |
455 // DBG - prior to calc. of dive | |
456 // | |
457 static void check_pre_dbg(void) | |
116 | 458 { |
459 check_dbg(0); | |
460 } | |
461 | |
167 | 462 ////////////////////////////////////////////////////////////////////////////// |
463 // DBG - after decocalc of dive | |
464 // | |
465 static void check_post_dbg(void) | |
116 | 466 { |
467 check_dbg(1); | |
468 } | |
469 | |
165 | 470 ////////////////////////////////////////////////////////////////////////////// |
167 | 471 ////////////////////////////////////////////////////////////////////////////// |
472 /////////////////////// U T I L I T I E S ///////////////////////////////// | |
473 ////////////////////////////////////////////////////////////////////////////// | |
474 ////////////////////////////////////////////////////////////////////////////// | |
475 | |
184 | 476 static int read_custom_function(PARAMETER unsigned char cf) |
167 | 477 { |
184 | 478 #ifdef CROSS_COMPILE |
479 extern unsigned short custom_functions[]; | |
480 return custom_functions[cf]; | |
481 #else | |
167 | 482 extern unsigned char hi, lo; |
483 extern void getcustom15(); | |
484 _asm | |
485 movff cf,WREG | |
486 call getcustom15,0 | |
487 movff lo,PRODL | |
488 movff hi,PRODH | |
489 _endasm | |
184 | 490 #endif |
167 | 491 } |
492 | |
493 ////////////////////////////////////////////////////////////////////////////// | |
165 | 494 // read buhlmann tables for compatriment ci |
167 | 495 // If period == 0 : 2sec interval |
496 // 1 : 1 min interval | |
497 // 2 : 10 min interval. | |
184 | 498 static void read_buhlmann_coefficients(PARAMETER char period) |
165 | 499 { |
184 | 500 #ifndef CROSS_COMPILE |
167 | 501 // Note: we don't use far rom pointer, because the |
502 // 24 bits is to complex, hence we have to set | |
503 // the UPPER page ourself... | |
504 // --> Set zero if tables are moved to lower pages ! | |
505 _asm | |
506 movlw 1 | |
507 movwf TBLPTRU,0 | |
508 _endasm | |
184 | 509 #endif |
197 | 510 assert( 0 <= ci && ci < 16 ); |
167 | 511 |
165 | 512 var_N2_a = buhlmann_a[ci]; |
513 var_N2_b = buhlmann_b[ci]; | |
167 | 514 var_He_a = (buhlmann_a+16)[ci]; |
515 var_He_b = (buhlmann_b+16)[ci]; | |
516 | |
165 | 517 // Check reading consistency: |
518 if( (var_N2_a < 0.231) | |
519 || (var_N2_a > 1.27) | |
520 || (var_N2_b < 0.504) | |
521 || (var_N2_b > 0.966) | |
522 || (var_He_a < 0.510) | |
523 || (var_He_a > 1.75) | |
524 || (var_He_b < 0.423) | |
525 || (var_He_b > 0.927) | |
526 ) | |
527 int_O_DBG_pre_bitfield |= DBG_ZH16ERR; | |
167 | 528 |
165 | 529 // Integration intervals. |
167 | 530 switch(period) |
165 | 531 { |
167 | 532 case -1://---- no interval ----------------------------------------------- |
533 var_N2_e = var_He_e = 0.0; | |
534 break; | |
535 | |
165 | 536 case 0: //---- 2 sec ----------------------------------------------------- |
537 var_N2_e = e2secs[ci]; | |
167 | 538 var_He_e = (e2secs+16)[ci]; |
165 | 539 |
540 // Check reading consistency: | |
541 if( (var_N2_e < 0.0000363) | |
542 || (var_N2_e > 0.00577) | |
543 || (var_He_e < 0.0000961) | |
544 || (var_He_e > 0.150) | |
545 ) | |
546 int_O_DBG_pre_bitfield |= DBG_ZH16ERR; | |
547 | |
548 break; | |
549 | |
550 case 1: //---- 1 min ----------------------------------------------------- | |
551 var_N2_e = e1min[ci]; | |
167 | 552 var_He_e = (e1min+16)[ci]; |
165 | 553 |
554 // Check reading consistency: | |
555 if( (var_N2_e < 1.09E-3) | |
556 || (var_N2_e > 0.1592) | |
557 || (var_He_e < 0.00288) | |
558 || (var_He_e > 0.3682) | |
559 ) | |
560 int_O_DBG_pre_bitfield |= DBG_ZH16ERR; | |
561 | |
562 break; | |
563 | |
564 case 2: //---- 10 min ---------------------------------------------------- | |
565 var_N2_e = e10min[ci]; | |
167 | 566 var_He_e = (e10min+16)[ci]; |
165 | 567 |
568 // Check reading consistency: | |
569 if( (var_N2_e < 0.01085) | |
570 || (var_N2_e > 0.82323) | |
571 || (var_He_e < 0.02846) | |
572 || (var_He_e > 0.98986) | |
573 ) | |
574 int_O_DBG_pre_bitfield |= DBG_ZH16ERR; | |
575 | |
576 break; | |
197 | 577 |
578 default: | |
579 assert(0); // Never go there... | |
165 | 580 } |
581 } | |
582 | |
583 ////////////////////////////////////////////////////////////////////////////// | |
167 | 584 // calc_next_decodepth_GF |
165 | 585 // |
116 | 586 // new in v.102 |
165 | 587 // |
116 | 588 // INPUT, changing during dive: |
192 | 589 // low_depth |
167 | 590 // |
116 | 591 // INPUT, fixed during dive: |
167 | 592 // pres_surface |
593 // GF_delta | |
594 // GF_high | |
595 // GF_low | |
171 | 596 // char_I_depth_last_deco |
167 | 597 // float_deco_distance |
598 // | |
116 | 599 // OUTPUT |
171 | 600 // locked_GF_step |
167 | 601 // temp_deco |
602 // temp_depth_limt | |
192 | 603 // low_depth |
167 | 604 // |
171 | 605 static void calc_nextdecodepth(void) |
167 | 606 { |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
607 //---- ZH-L16 + GRADIENT FACTOR model ------------------------------------ |
116 | 608 if (char_I_deco_model == 1) |
609 { | |
192 | 610 // Recompute leading gas limit, at current depth: |
611 overlay float depth = (temp_deco - pres_surface) / 0.09995; | |
612 assert( depth >= 0.0 ); | |
167 | 613 |
192 | 614 if( depth > low_depth ) |
615 sim_limit( GF_low ); | |
616 else | |
617 sim_limit( GF_high - depth * locked_GF_step ); | |
618 | |
619 // Stops are needed ? | |
620 if( sim_lead_tissue_limit > pres_surface ) | |
621 { | |
622 // Deepest stop, in meter. | |
623 overlay unsigned char first_stop = 3 * (int)(0.99 + (sim_lead_tissue_limit - pres_surface) / 0.29985); | |
624 assert( first_stop < 128 ); | |
171 | 625 |
192 | 626 // Apply correction for the first stop. |
627 if( first_stop == 3 ) // new in v104 | |
628 first_stop = char_I_depth_last_deco; // Use last 3m..6m instead. | |
171 | 629 |
192 | 630 // Is it a new deepest first stop ? If yes this is the reference for |
631 // the varying gradient factor. So reset that: | |
632 if( first_stop > low_depth ) | |
633 { | |
634 // Store the deepest stop depth, as reference for GF_low. | |
635 low_depth = first_stop; | |
636 locked_GF_step = GF_delta / low_depth; | |
637 } | |
171 | 638 |
192 | 639 // Check all stops until one is higher than tolerated presure |
640 while(first_stop > 0) | |
641 { | |
642 overlay unsigned char next_stop; // Next index (0..30) | |
643 overlay float pres_stop; // Next depth (0m..90m) | |
171 | 644 |
192 | 645 if( first_stop <= char_I_depth_last_deco ) // new in v104 |
646 next_stop = 0; | |
647 else | |
648 next_stop = first_stop - 3; // Index of next (upper) stop. | |
649 if( first_stop == 3 ) | |
650 first_stop = char_I_depth_last_deco; | |
167 | 651 |
192 | 652 pres_stop = next_stop * 0.09995 // Meters to bar |
653 + pres_surface; | |
654 | |
655 // current GF is GF_high - alpha (GF_high - GF_low) | |
656 // With alpha = currentDepth / maxDepth, hence in [0..1] | |
657 sim_limit( GF_high - next_stop * locked_GF_step ); | |
171 | 658 |
192 | 659 // upper limit (lowest pressure tolerated): |
660 if( sim_lead_tissue_limit >= pres_stop ) // check if ascent to next deco stop is ok | |
661 break; | |
662 | |
663 // Else, validate that stop and loop... | |
664 first_stop = next_stop; | |
665 } | |
171 | 666 |
192 | 667 // first_stop is the last validated depth found: |
668 temp_depth_limit = first_stop; // Stop depth, in meter. | |
669 temp_deco = first_stop * 0.09995 // Convert to bars, too. | |
670 + pres_surface; | |
671 if (first_stop > 0) | |
672 temp_deco += float_deco_distance; // Add security distance (bars too) | |
673 } | |
171 | 674 else |
192 | 675 { |
676 temp_deco = pres_surface; // surface ambient presure | |
677 temp_depth_limit = 0; // stop depth, in meter. | |
678 } | |
116 | 679 } |
167 | 680 else //---- ZH-L16 model ------------------------------------------------- |
116 | 681 { |
192 | 682 overlay float pres_gradient; |
683 | |
684 // Original model | |
116 | 685 // optimized in v.101 |
171 | 686 // char_I_depth_last_deco included in v.101 |
116 | 687 |
192 | 688 // Compute sim_lead_tissue_limit too, but just once. |
689 sim_limit(1.0); | |
690 | |
691 pres_gradient = sim_lead_tissue_limit - pres_surface; | |
167 | 692 if (pres_gradient >= 0) |
116 | 693 { |
192 | 694 pres_gradient /= 0.29985; // Bar --> stop number; |
695 temp_depth_limit = 3 * (int) (pres_gradient + 0.99); // --> meter : depth for deco | |
171 | 696 if (temp_depth_limit == 0) // At surface ? |
116 | 697 temp_deco = pres_surface; |
698 else | |
699 { | |
171 | 700 if (temp_depth_limit < char_I_depth_last_deco) // Implement last stop at 4m/5m/6m... |
701 temp_depth_limit = char_I_depth_last_deco; | |
702 temp_deco = (temp_depth_limit * 0.09995) // depth for deco [bar] = depth | |
703 + float_deco_distance // + security margin | |
704 + pres_surface; // + surface ambient presure | |
705 } | |
706 } | |
116 | 707 else |
708 { | |
171 | 709 temp_deco = pres_surface; // surface ambient presure |
192 | 710 temp_depth_limit = 0; // stop depth, in meter. |
171 | 711 } |
712 } | |
167 | 713 } |
116 | 714 |
167 | 715 ////////////////////////////////////////////////////////////////////////////// |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
716 // copy_deco_table |
167 | 717 // |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
718 // 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
|
719 // while computing the next set. |
167 | 720 // |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
721 static void copy_deco_table(void) |
116 | 722 { |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
723 // 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
|
724 // order, it will be hard to find... |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
725 char_O_first_deco_depth = internal_deco_depth[0]; |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
726 char_O_first_deco_time = internal_deco_time [0]; |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
727 |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
728 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
|
729 { |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
730 overlay unsigned char x, y; |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
731 |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
732 //---- First: search the first non-null depth |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
733 for(x=31; x != 0; --x) |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
734 if( internal_deco_depth[x] != 0 ) break; |
116 | 735 |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
736 //---- Second: copy to output table (in reverse order) |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
737 for(y=0; y<32; y++, --x) |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
738 { |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
739 char_O_deco_depth[y] = internal_deco_depth[x]; |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
740 char_O_deco_time [y] = internal_deco_time [x]; |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
741 |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
742 // Stop only once the last transfer is done. |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
743 if( x == 0 ) break; |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
744 } |
116 | 745 |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
746 //---- Third: fill table end with null |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
747 for(y++; y<32; y++) |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
748 { |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
749 char_O_deco_time [y] = 0; |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
750 char_O_deco_depth[y] = 0; |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
751 } |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
752 } |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
753 else //---- Straight copy ------------------------------------------------ |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
754 { |
167 | 755 overlay unsigned char x; |
756 | |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
757 for(x=0; x<32; x++) |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
758 { |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
759 char_O_deco_depth[x] = internal_deco_depth[x]; |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
760 char_O_deco_time [x] = internal_deco_time [x]; |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
761 } |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
762 } |
167 | 763 } |
116 | 764 |
167 | 765 ////////////////////////////////////////////////////////////////////////////// |
116 | 766 // temp_tissue_safety // |
167 | 767 // |
116 | 768 // outsourced in v.102 |
167 | 769 // |
770 // Apply safety factors for brand ZH-L16 model. | |
771 // | |
772 static void temp_tissue_safety(void) | |
116 | 773 { |
197 | 774 assert( 0.0 < float_desaturation_multiplier && float_desaturation_multiplier <= 1.0 ); |
775 assert( 1.0 <= float_saturation_multiplier && float_saturation_multiplier <= 2.0 ); | |
776 | |
167 | 777 if( char_I_deco_model == 0 ) |
116 | 778 { |
779 if (temp_tissue < 0.0) | |
126 | 780 temp_tissue *= float_desaturation_multiplier; |
116 | 781 else |
126 | 782 temp_tissue *= float_saturation_multiplier; |
116 | 783 } |
167 | 784 } |
116 | 785 |
167 | 786 ////////////////////////////////////////////////////////////////////////////// |
787 ////////////////////////////////////////////////////////////////////////////// | |
116 | 788 // ** THE JUMP-IN CODE ** |
789 // ** for the asm code ** | |
167 | 790 ////////////////////////////////////////////////////////////////////////////// |
791 ////////////////////////////////////////////////////////////////////////////// | |
122
3003a8040b78
FIX again reset C data stack and frame pointer when entering C code.
JeanDo
parents:
116
diff
changeset
|
792 |
3003a8040b78
FIX again reset C data stack and frame pointer when entering C code.
JeanDo
parents:
116
diff
changeset
|
793 void fillDataStack(void) |
3003a8040b78
FIX again reset C data stack and frame pointer when entering C code.
JeanDo
parents:
116
diff
changeset
|
794 { |
184 | 795 #ifndef CROSS_COMPILE |
122
3003a8040b78
FIX again reset C data stack and frame pointer when entering C code.
JeanDo
parents:
116
diff
changeset
|
796 _asm |
3003a8040b78
FIX again reset C data stack and frame pointer when entering C code.
JeanDo
parents:
116
diff
changeset
|
797 LFSR 1,C_STACK |
3003a8040b78
FIX again reset C data stack and frame pointer when entering C code.
JeanDo
parents:
116
diff
changeset
|
798 MOVLW 0xCC |
3003a8040b78
FIX again reset C data stack and frame pointer when entering C code.
JeanDo
parents:
116
diff
changeset
|
799 loop: MOVWF POSTINC1,0 |
3003a8040b78
FIX again reset C data stack and frame pointer when entering C code.
JeanDo
parents:
116
diff
changeset
|
800 TSTFSZ FSR1L,0 |
3003a8040b78
FIX again reset C data stack and frame pointer when entering C code.
JeanDo
parents:
116
diff
changeset
|
801 BRA loop |
3003a8040b78
FIX again reset C data stack and frame pointer when entering C code.
JeanDo
parents:
116
diff
changeset
|
802 |
3003a8040b78
FIX again reset C data stack and frame pointer when entering C code.
JeanDo
parents:
116
diff
changeset
|
803 LFSR 1,C_STACK |
3003a8040b78
FIX again reset C data stack and frame pointer when entering C code.
JeanDo
parents:
116
diff
changeset
|
804 LFSR 2,C_STACK |
3003a8040b78
FIX again reset C data stack and frame pointer when entering C code.
JeanDo
parents:
116
diff
changeset
|
805 _endasm |
184 | 806 #endif |
122
3003a8040b78
FIX again reset C data stack and frame pointer when entering C code.
JeanDo
parents:
116
diff
changeset
|
807 } |
3003a8040b78
FIX again reset C data stack and frame pointer when entering C code.
JeanDo
parents:
116
diff
changeset
|
808 |
167 | 809 ////////////////////////////////////////////////////////////////////////////// |
122
3003a8040b78
FIX again reset C data stack and frame pointer when entering C code.
JeanDo
parents:
116
diff
changeset
|
810 // When calling C code from ASM context, the data stack pointer and |
3003a8040b78
FIX again reset C data stack and frame pointer when entering C code.
JeanDo
parents:
116
diff
changeset
|
811 // frames should be reset. Bank3 is dedicated to the stack (see the |
3003a8040b78
FIX again reset C data stack and frame pointer when entering C code.
JeanDo
parents:
116
diff
changeset
|
812 // .lkr script). |
184 | 813 #ifdef CROSS_COMPILE |
814 # define RESET_C_STACK | |
122
3003a8040b78
FIX again reset C data stack and frame pointer when entering C code.
JeanDo
parents:
116
diff
changeset
|
815 #else |
184 | 816 # ifdef __DEBUG |
817 # define RESET_C_STACK fillDataStack(); | |
818 # else | |
819 # define RESET_C_STACK \ | |
820 _asm \ | |
821 LFSR 1, C_STACK \ | |
822 LFSR 2, C_STACK \ | |
823 _endasm | |
824 # endif | |
122
3003a8040b78
FIX again reset C data stack and frame pointer when entering C code.
JeanDo
parents:
116
diff
changeset
|
825 #endif |
3003a8040b78
FIX again reset C data stack and frame pointer when entering C code.
JeanDo
parents:
116
diff
changeset
|
826 |
167 | 827 ////////////////////////////////////////////////////////////////////////////// |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
828 // Called every 2 seconds during diving. |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
829 // update tissues every time. |
184 | 830 // |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
831 // Every 6 seconds (or slower when TTS > 16): |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
832 // - 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
|
833 // - update ascent time, |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
834 // - 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
|
835 // |
116 | 836 void deco_calc_hauptroutine(void) |
837 { | |
122
3003a8040b78
FIX again reset C data stack and frame pointer when entering C code.
JeanDo
parents:
116
diff
changeset
|
838 RESET_C_STACK |
116 | 839 calc_hauptroutine(); |
840 int_O_desaturation_time = 65535; | |
841 } | |
842 | |
167 | 843 ////////////////////////////////////////////////////////////////////////////// |
184 | 844 // Reset decompression model: |
845 // + Set all tissues to equilibrium with Air at ambient pressure. | |
846 // + Reset last stop to 0m | |
847 // + Reset all model output. | |
116 | 848 void deco_clear_tissue(void) |
849 { | |
122
3003a8040b78
FIX again reset C data stack and frame pointer when entering C code.
JeanDo
parents:
116
diff
changeset
|
850 RESET_C_STACK |
116 | 851 clear_tissue(); |
852 } | |
853 | |
167 | 854 ////////////////////////////////////////////////////////////////////////////// |
855 | |
116 | 856 void deco_calc_wo_deco_step_1_min(void) |
857 { | |
122
3003a8040b78
FIX again reset C data stack and frame pointer when entering C code.
JeanDo
parents:
116
diff
changeset
|
858 RESET_C_STACK |
116 | 859 calc_wo_deco_step_1_min(); |
860 deco_calc_desaturation_time(); | |
861 } | |
862 | |
167 | 863 ////////////////////////////////////////////////////////////////////////////// |
864 | |
116 | 865 void deco_debug(void) |
866 { | |
122
3003a8040b78
FIX again reset C data stack and frame pointer when entering C code.
JeanDo
parents:
116
diff
changeset
|
867 RESET_C_STACK |
116 | 868 } |
869 | |
167 | 870 ////////////////////////////////////////////////////////////////////////////// |
871 // clear_tissue | |
872 // | |
165 | 873 // optimized in v.101 (var_N2_a) |
167 | 874 // |
875 // preload tissues with standard pressure for the given ambient pressure. | |
876 // Note: fixed N2_ratio for standard air. | |
116 | 877 |
167 | 878 static void clear_tissue(void) |
116 | 879 { |
880 flag_in_divemode = 0; | |
881 int_O_DBS_bitfield = 0; | |
882 int_O_DBS2_bitfield = 0; | |
883 int_O_DBG_pre_bitfield = 0; | |
884 int_O_DBG_post_bitfield = 0; | |
885 char_O_NDL_at_20mtr = 255; | |
886 | |
167 | 887 // Kludge: the 0.0002 of 0.7902 are missing with standard air. |
888 N2_ratio = 0.7902; | |
126 | 889 pres_respiration = (float)int_I_pres_respiration / 1000.0; |
164 | 890 |
167 | 891 for(ci=0; ci<16; ci++) |
126 | 892 { |
197 | 893 // cycle through the 16 Bühlmann tissues |
200 | 894 overlay float p = N2_ratio * (pres_respiration - ppWVapour); |
164 | 895 pres_tissue[ci] = p; |
197 | 896 |
184 | 897 read_buhlmann_coefficients(-1); |
165 | 898 |
899 p = (p - var_N2_a) * var_N2_b ; | |
164 | 900 if( p < 0.0 ) |
901 p = 0.0; | |
902 pres_tissue_limit[ci] = p; | |
903 | |
197 | 904 // cycle through the 16 Bühlmann tissues for Helium |
167 | 905 (pres_tissue+16)[ci] = 0.0; |
126 | 906 } // for 0 to 16 |
116 | 907 |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
908 clear_deco_table(); |
126 | 909 char_O_deco_status = 0; |
910 char_O_nullzeit = 0; | |
168 | 911 int_O_ascenttime = 0; |
126 | 912 char_O_gradient_factor = 0; |
913 char_O_relative_gradient_GF = 0; | |
197 | 914 char_I_depth_last_deco = 0; // for compatibility with v.101pre_no_last_deco |
167 | 915 } |
116 | 916 |
167 | 917 ////////////////////////////////////////////////////////////////////////////// |
918 // calc_hauptroutine | |
919 // | |
920 // this is the major code in dive mode calculates: | |
116 | 921 // the tissues, |
167 | 922 // the bottom time, |
923 // and simulates the ascend with all deco stops. | |
171 | 924 // |
925 // The deco_state sequence is : | |
926 // 3 (at surface) | |
927 // +---> 0 : calc nullzeit | |
928 // | 2 : simulate ascent to first stop (at 10m/min, less that 16x 1min simu) | |
929 // | +-> 1 : simulate up to 16min of stops. | |
930 // | +------< not finished | |
931 // +--------< finish | |
932 // | |
167 | 933 static void calc_hauptroutine(void) |
116 | 934 { |
186 | 935 static float backup_GF_step; |
192 | 936 static unsigned char backup_low_depth; |
186 | 937 |
116 | 938 calc_hauptroutine_data_input(); |
939 | |
940 if(!flag_in_divemode) | |
941 { | |
942 flag_in_divemode = 1; | |
943 create_dbs_set_dbg_and_ndl20mtr(); | |
944 } | |
945 else | |
946 check_pre_dbg(); | |
947 | |
948 calc_hauptroutine_update_tissues(); | |
949 calc_gradient_factor(); | |
950 | |
167 | 951 // toggle between calculation for nullzeit (bottom time), |
952 // deco stops | |
953 // and more deco stops (continue) | |
954 switch( char_O_deco_status ) | |
116 | 955 { |
186 | 956 case 3: //---- At surface: start a new dive ------------------------------ |
957 clear_deco_table(); | |
958 copy_deco_table(); | |
200 | 959 low_depth = 0; // Reset GF history. |
960 int_O_ascenttime = 0; // Reset DTR. | |
961 char_O_nullzeit = 0; // Reset bottom time. | |
962 char_O_deco_status = 0; // Calc bottom-time/nullzeit next iteration. | |
192 | 963 backup_low_depth = 255; // backup is empty... |
186 | 964 break; |
965 | |
167 | 966 case 0: //---- bottom time ----------------------------------------------- |
967 calc_nullzeit(); | |
968 check_ndl(); | |
186 | 969 char_O_deco_status = 2; // calc ascent next time. |
970 break; | |
971 | |
972 case 2: //---- Simulate ascent to first stop ----------------------------- | |
973 // Backup ascention state, ie if we already fixed the low GF reference, | |
974 // and its value. | |
975 backup_GF_step = locked_GF_step; | |
192 | 976 backup_low_depth = low_depth; |
186 | 977 |
978 sim_ascent_to_first_stop(); | |
979 char_O_deco_status = 1; // Cacl stops next time. | |
167 | 980 break; |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
981 |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
982 case 1: //---- Simulate stops -------------------------------------------- |
167 | 983 calc_hauptroutine_calc_deco(); |
186 | 984 |
985 // If simulation is finished, restore the GF low reference, so that | |
986 // next ascent simulation is done from the current depth: | |
192 | 987 if( char_O_deco_status == 0 && backup_low_depth != 255) |
186 | 988 { |
989 locked_GF_step = backup_GF_step; | |
192 | 990 low_depth = backup_low_depth; |
991 backup_low_depth = 255; | |
186 | 992 } |
167 | 993 break; |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
994 |
116 | 995 } |
167 | 996 |
116 | 997 check_post_dbg(); |
998 } | |
999 | |
167 | 1000 ////////////////////////////////////////////////////////////////////////////// |
1001 // calc_hauptroutine_data_input | |
1002 // | |
1003 // Reset all C-code dive parameters from their ASM-code values. | |
1004 // Detect gas change condition. | |
1005 // | |
116 | 1006 void calc_hauptroutine_data_input(void) |
1007 { | |
167 | 1008 overlay int int_temp; |
126 | 1009 |
197 | 1010 pres_respiration = int_I_pres_respiration * 0.001; |
1011 pres_surface = int_I_pres_surface * 0.001; | |
1012 N2_ratio = char_I_N2_ratio * 0.01; | |
1013 He_ratio = char_I_He_ratio * 0.01; | |
1014 deco_N2_ratio1 = char_I_deco_N2_ratio1 * 0.01; | |
1015 deco_He_ratio1 = char_I_deco_He_ratio1 * 0.01; | |
1016 float_deco_distance = char_I_deco_distance * 0.01; // Get offset is in mbar. | |
116 | 1017 |
126 | 1018 // ____________________________________________________ |
1019 // | |
1020 // _____________ G A S _ C H A N G E S ________________ | |
1021 // ____________________________________________________ | |
1022 | |
1023 int_temp = (int_I_pres_respiration - int_I_pres_surface) + MBAR_REACH_GASCHANGE_AUTO_CHANGE_OFF; | |
1024 | |
200 | 1025 deco_gas_change1 = 0.0; |
1026 deco_gas_change2 = 0.0; | |
1027 deco_gas_change3 = 0.0; | |
1028 deco_gas_change4 = 0.0; | |
1029 deco_gas_change5 = 0.0; | |
116 | 1030 |
167 | 1031 if(char_I_deco_gas_change1) |
126 | 1032 { |
167 | 1033 overlay int int_temp2 = ((int)char_I_deco_gas_change1) * 100; |
126 | 1034 if(int_temp > int_temp2) |
1035 { | |
167 | 1036 deco_gas_change1 = (float)char_I_deco_gas_change1 / 9.995 + pres_surface; |
1037 deco_gas_change1 += float_deco_distance; | |
126 | 1038 } |
1039 } | |
1040 if(char_I_deco_gas_change2) | |
1041 { | |
167 | 1042 overlay int int_temp2 = ((int)char_I_deco_gas_change2) * 100; |
126 | 1043 if(int_temp > int_temp2) |
1044 { | |
1045 deco_gas_change2 = (float)char_I_deco_gas_change2 / 9.995 + pres_surface; | |
1046 deco_gas_change2 += float_deco_distance; | |
1047 } | |
1048 } | |
1049 if(char_I_deco_gas_change3) | |
1050 { | |
167 | 1051 overlay int int_temp2 = ((int)char_I_deco_gas_change3) * 100; |
126 | 1052 if(int_temp > int_temp2) |
1053 { | |
1054 deco_gas_change3 = (float)char_I_deco_gas_change3 / 9.995 + pres_surface; | |
1055 deco_gas_change3 += float_deco_distance; | |
1056 } | |
1057 } | |
1058 if(char_I_deco_gas_change4) | |
1059 { | |
167 | 1060 overlay int int_temp2 = ((int)char_I_deco_gas_change4) * 100; |
126 | 1061 if(int_temp > int_temp2) |
1062 { | |
1063 deco_gas_change4 = (float)char_I_deco_gas_change4 / 9.995 + pres_surface; | |
1064 deco_gas_change4 += float_deco_distance; | |
1065 } | |
1066 } | |
1067 if(char_I_deco_gas_change5) | |
1068 { | |
167 | 1069 overlay int int_temp2 = ((int)char_I_deco_gas_change5) * 100; |
126 | 1070 if(int_temp > int_temp2) |
1071 { | |
1072 deco_gas_change5 = (float)char_I_deco_gas_change5 / 9.995 + pres_surface; | |
1073 deco_gas_change5 += float_deco_distance; | |
1074 } | |
1075 } | |
116 | 1076 |
197 | 1077 const_ppO2 = char_I_const_ppO2 * 0.01; |
1078 deco_ppO2_change = char_I_deco_ppO2_change / 99.95 | |
1079 + pres_surface | |
1080 + float_deco_distance; | |
1081 deco_ppO2 = char_I_deco_ppO2 * 0.01; | |
1082 float_desaturation_multiplier = char_I_desaturation_multiplier * 0.01; | |
1083 float_saturation_multiplier = char_I_saturation_multiplier * 0.01; | |
1084 GF_low = char_I_GF_Low_percentage * 0.01; | |
1085 GF_high = char_I_GF_High_percentage * 0.01; | |
126 | 1086 GF_delta = GF_high - GF_low; |
116 | 1087 } |
1088 | |
167 | 1089 ////////////////////////////////////////////////////////////////////////////// |
171 | 1090 // |
1091 // | |
116 | 1092 void calc_hauptroutine_update_tissues(void) |
1093 { | |
197 | 1094 assert( 0.00 <= N2_ratio && N2_ratio <= 1.00 ); |
1095 assert( 0.00 <= He_ratio && He_ratio <= 1.00 ); | |
1096 assert( (N2_ratio + He_ratio) <= 0.95 ); | |
1097 | |
1098 if (char_I_const_ppO2 == 0) // new in v.101 | |
167 | 1099 pres_diluent = pres_respiration; // new in v.101 |
186 | 1100 else |
1101 { | |
167 | 1102 pres_diluent = ((pres_respiration - const_ppO2)/(N2_ratio + He_ratio)); // new in v.101 |
186 | 1103 if (pres_diluent > pres_respiration) // new in v.101 |
1104 pres_diluent = pres_respiration; // new in v.101 | |
1105 } | |
200 | 1106 if (pres_diluent > ppWVapour) // new in v.101 |
116 | 1107 { |
200 | 1108 ppO2 = N2_ratio * (pres_diluent - ppWVapour); // changed in v.101 |
1109 ppHe = He_ratio * (pres_diluent - ppWVapour); // changed in v.101 | |
116 | 1110 char_O_diluent = (char)(pres_diluent/pres_respiration*100.0); |
1111 } | |
167 | 1112 else // new in v.101 |
116 | 1113 { |
200 | 1114 ppO2 = 0.0; // new in v.101 |
1115 ppHe = 0.0; // new in v.101 | |
116 | 1116 char_O_diluent = 0; |
1117 } | |
1118 | |
1119 if(!char_I_step_is_1min) | |
192 | 1120 calc_tissue(0); |
116 | 1121 else |
192 | 1122 calc_tissue(1); |
186 | 1123 |
192 | 1124 // Calc limit for surface, ie. GF_high. |
1125 calc_limit(GF_high); | |
186 | 1126 |
192 | 1127 int_O_gtissue_limit = (int)(calc_lead_tissue_limit * 1000); |
1128 int_O_gtissue_press = (int)((pres_tissue[char_O_gtissue_no] + (pres_tissue+16)[char_O_gtissue_no]) * 1000); | |
1129 | |
1130 // if guiding tissue can not be exposed to surface pressure immediately | |
1131 if( calc_lead_tissue_limit > pres_surface && char_O_deco_status == 0) | |
116 | 1132 { |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1133 char_O_nullzeit = 0; // deco necessary |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1134 char_O_deco_status = 2; // calculate ascent on next iteration. |
116 | 1135 } |
171 | 1136 } |
1137 | |
1138 ////////////////////////////////////////////////////////////////////////////// | |
1139 // Calculate gas switches | |
1140 // | |
1141 // | |
1142 void check_gas_switch(void) | |
1143 { | |
197 | 1144 overlay unsigned char temp_gas_switch = sim_gas_last_used; |
1145 | |
171 | 1146 calc_N2_ratio = N2_ratio; |
1147 calc_He_ratio = He_ratio; | |
1148 | |
1149 if (char_I_const_ppO2 == 0) | |
1150 { | |
1151 deco_diluent = temp_deco; | |
1152 | |
197 | 1153 if( deco_gas_change1 && (temp_deco < deco_gas_change1) ) |
171 | 1154 { |
1155 calc_N2_ratio = deco_N2_ratio1; | |
1156 calc_He_ratio = deco_He_ratio1; | |
197 | 1157 temp_gas_switch = 1; |
171 | 1158 } |
197 | 1159 if(deco_gas_change2 && (temp_deco < deco_gas_change2) ) |
171 | 1160 { |
197 | 1161 calc_N2_ratio = char_I_deco_N2_ratio2 * 0.01; |
1162 calc_He_ratio = char_I_deco_He_ratio2 * 0.01; | |
1163 temp_gas_switch = 2; | |
171 | 1164 } |
1165 if(deco_gas_change3 && (temp_deco < deco_gas_change3)) | |
1166 { | |
197 | 1167 calc_N2_ratio = char_I_deco_N2_ratio3 * 0.01; |
1168 calc_He_ratio = char_I_deco_He_ratio3 * 0.01; | |
1169 temp_gas_switch = 3; | |
171 | 1170 } |
1171 if(deco_gas_change4 && (temp_deco < deco_gas_change4)) | |
1172 { | |
197 | 1173 calc_N2_ratio = char_I_deco_N2_ratio4 * 0.01; |
1174 calc_He_ratio = char_I_deco_He_ratio4 * 0.01; | |
1175 temp_gas_switch = 4; | |
171 | 1176 } |
1177 if(deco_gas_change5 && (temp_deco < deco_gas_change5)) | |
1178 { | |
197 | 1179 calc_N2_ratio = char_I_deco_N2_ratio5 * 0.01; |
1180 calc_He_ratio = char_I_deco_He_ratio5 * 0.01; | |
1181 temp_gas_switch = 5; | |
171 | 1182 } |
1183 } | |
197 | 1184 |
1185 // Should detect gas switch just once. | |
1186 if( temp_gas_switch != sim_gas_last_used ) | |
1187 { | |
1188 sim_gas_last_used = temp_gas_switch; | |
1189 sim_gas_delay = read_custom_function(55); | |
1190 } | |
1191 | |
1192 assert( 0.0 <= calc_N2_ratio && calc_N2_ratio <= 0.95 ); | |
1193 assert( 0.0 <= calc_He_ratio && calc_He_ratio <= 0.95 ); | |
1194 assert( (calc_N2_ratio + calc_He_ratio) <= 1.00 ); | |
1195 } | |
1196 | |
1197 ////////////////////////////////////////////////////////////////////////////// | |
1198 | |
1199 static void alveolar_presures(void) | |
1200 { | |
1201 if (char_I_const_ppO2 != 0) | |
171 | 1202 { |
1203 if (temp_deco > deco_ppO2_change) | |
1204 { | |
1205 deco_diluent = ((temp_deco - const_ppO2)/(N2_ratio + He_ratio)); | |
1206 } | |
1207 else | |
1208 { | |
1209 deco_diluent = ((temp_deco - deco_ppO2)/(N2_ratio + He_ratio)); | |
1210 } | |
1211 } | |
1212 | |
1213 if (deco_diluent > temp_deco) | |
1214 deco_diluent = temp_deco; | |
200 | 1215 if (deco_diluent > ppWVapour) |
171 | 1216 { |
200 | 1217 ppO2 = calc_N2_ratio * (deco_diluent - ppWVapour); |
1218 ppHe = calc_He_ratio * (deco_diluent - ppWVapour); | |
171 | 1219 } |
1220 else | |
1221 { | |
200 | 1222 ppO2 = 0.0; |
1223 ppHe = 0.0; | |
171 | 1224 } |
200 | 1225 assert( 0.0 <= ppO2 && ppO2 < 14.0 ); |
1226 assert( 0.0 <= ppHe && ppHe < 14.0 ); | |
171 | 1227 } |
116 | 1228 |
167 | 1229 ////////////////////////////////////////////////////////////////////////////// |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1230 // Compute stops. |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1231 // |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1232 // 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
|
1233 // to 0 when finished, or to 1 when needing to continue. |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1234 // |
116 | 1235 void calc_hauptroutine_calc_deco(void) |
1236 { | |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1237 overlay unsigned char loop; |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1238 |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1239 for(loop = 0; loop < 16; ++loop) |
116 | 1240 { |
197 | 1241 // Do not ascent while doing a gas switch. |
1242 if( sim_gas_delay == 0 ) | |
1243 calc_nextdecodepth(); | |
116 | 1244 |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1245 //---- Finish computations once surface is reached ------------------- |
200 | 1246 if( temp_depth_limit == 0 ) |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1247 { |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1248 copy_deco_table(); |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1249 calc_ascenttime(); |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1250 char_O_deco_status = 0; // calc nullzeit next time. |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1251 return; |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1252 } |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1253 |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1254 //---- Else, continue simulating the stops --------------------------- |
197 | 1255 if( sim_gas_delay == 0 ) |
1256 check_gas_switch(); // Calculate N2_ratio and He_ratio. | |
1257 else | |
1258 sim_gas_delay--; | |
1259 | |
1260 alveolar_presures(); // Updates ppN2 and ppHe. | |
186 | 1261 |
192 | 1262 sim_tissue(1); // Simulate compartiments for 1 minute. |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1263 update_deco_table(); // Add one minute stops. |
116 | 1264 } |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1265 |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1266 // Surface not reached, need more stops... |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1267 char_O_deco_status = 1; // calc more stops next time. |
116 | 1268 } |
1269 | |
167 | 1270 ////////////////////////////////////////////////////////////////////////////// |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1271 // Simulation ascention to first deco stop. |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1272 // |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1273 // 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
|
1274 // 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
|
1275 // (or we are already in deep shit). |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1276 // |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1277 void sim_ascent_to_first_stop(void) |
116 | 1278 { |
171 | 1279 update_startvalues(); |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1280 clear_deco_table(); |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1281 |
200 | 1282 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
|
1283 |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1284 // Loop until first top or surface is reached. |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1285 for(;;) |
116 | 1286 { |
197 | 1287 // Do not ascent while doing a gas switch. |
1288 if( sim_gas_delay == 0 ) | |
1289 temp_deco -= 1.0; // Ascent 1 min, at 10m/min. == 1bar/min. | |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1290 |
192 | 1291 // Compute sim_lead_tissue_limit at GF_low (deepest stop). |
1292 sim_limit(GF_low); | |
116 | 1293 |
192 | 1294 // Did we reach first stop ? |
1295 if( temp_deco <= sim_lead_tissue_limit ) | |
197 | 1296 break; // Yes: finished ! |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1297 |
171 | 1298 // Next stop is surface ? |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1299 if( temp_deco <= pres_surface ) |
171 | 1300 break; // Yes: finished too. |
1301 | |
197 | 1302 //---- Simulat gas switches |
1303 if( sim_gas_delay > 0 ) | |
1304 { | |
1305 sim_gas_delay--; // Decrement switch delay | |
1306 temp_depth_limit = (temp_deco - pres_surface) / 0.09985; | |
1307 update_deco_table(); // And mark stop in table | |
1308 } | |
1309 else | |
1310 { | |
1311 temp_deco += 0.5; // Check gas change 5 meter below new depth. | |
171 | 1312 check_gas_switch(); |
197 | 1313 temp_deco -= 0.5; // Back to new depth. |
1314 } | |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1315 |
192 | 1316 // Then simulate with the new gas pressures... (1min) |
197 | 1317 alveolar_presures(); // Calculated at true depth ! |
192 | 1318 sim_tissue(1); |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1319 } |
192 | 1320 temp_deco += 1.0; // Restore last correct depth. |
167 | 1321 } |
116 | 1322 |
167 | 1323 ////////////////////////////////////////////////////////////////////////////// |
1324 // calc_tissue | |
1325 // | |
116 | 1326 // optimized in v.101 |
167 | 1327 // |
184 | 1328 static void calc_tissue(PARAMETER unsigned char period) |
116 | 1329 { |
126 | 1330 for (ci=0;ci<16;ci++) |
1331 { | |
184 | 1332 read_buhlmann_coefficients(period); // 2 sec or 1 min period. |
116 | 1333 |
126 | 1334 // N2 |
200 | 1335 temp_tissue = (ppO2 - pres_tissue[ci]) * var_N2_e; |
126 | 1336 temp_tissue_safety(); |
167 | 1337 pres_tissue[ci] += temp_tissue; |
165 | 1338 |
126 | 1339 // He |
200 | 1340 temp_tissue = (ppHe - (pres_tissue+16)[ci]) * var_He_e; |
126 | 1341 temp_tissue_safety(); |
167 | 1342 (pres_tissue+16)[ci] += temp_tissue; |
192 | 1343 } |
167 | 1344 } |
116 | 1345 |
167 | 1346 ////////////////////////////////////////////////////////////////////////////// |
192 | 1347 // calc_limit |
167 | 1348 // |
192 | 1349 // New in v.111 : separated from calc_tissue(), and depends on GF value. |
167 | 1350 // |
192 | 1351 static void calc_limit(PARAMETER float GF_current) |
167 | 1352 { |
192 | 1353 char_O_gtissue_no = 255; |
1354 calc_lead_tissue_limit = 0.0; | |
1355 | |
1356 for (ci=0;ci<16;ci++) | |
1357 { | |
1358 overlay float p = pres_tissue[ci] + (pres_tissue+16)[ci]; | |
1359 | |
1360 read_buhlmann_coefficients(-1); // 2 sec or 1 min period. | |
1361 var_N2_a = (var_N2_a * pres_tissue[ci] + var_He_a * (pres_tissue+16)[ci]) / p; | |
1362 var_N2_b = (var_N2_b * pres_tissue[ci] + var_He_b * (pres_tissue+16)[ci]) / p; | |
116 | 1363 |
192 | 1364 // Apply the Eric Baker's varying gradient factor correction. |
1365 // Note: the correction factor depends both on GF and b, | |
1366 // Actual values are in the 1.5 .. 1.0 range (for a GF=30%), | |
1367 // so that can change who is the leading gas... | |
1368 // Note: Also depends of the GF. So the calcul is different for | |
1369 // GF_low, current GF, or GF_high... | |
1370 // *BUT* calc_tissue() is used to compute bottom time, | |
1371 // hence what would happend at surface, | |
1372 // hence at GF_high. | |
1373 if( char_I_deco_model == 1 ) | |
1374 p = ( p - var_N2_a * GF_current) * var_N2_b | |
1375 / (GF_current + var_N2_b * (1.0 - GF_current)); | |
1376 else | |
1377 p = (p - var_N2_a) * var_N2_b; | |
1378 if( p < 0 ) p = 0; | |
1379 | |
1380 pres_tissue_limit[ci] = p; | |
1381 if( p > calc_lead_tissue_limit ) | |
1382 { | |
1383 char_O_gtissue_no = ci; | |
1384 calc_lead_tissue_limit = p; | |
1385 } | |
1386 } | |
197 | 1387 |
1388 assert( char_O_gtissue_no < 16 ); | |
1389 assert( 0.0 <= calc_lead_tissue_limit && calc_lead_tissue_limit <= 14.0); | |
167 | 1390 } |
1391 | |
1392 ////////////////////////////////////////////////////////////////////////////// | |
1393 // calc_nullzeit | |
1394 // | |
1395 // calculates the remaining bottom time | |
1396 // | |
1397 // unchanged in v.101 | |
1398 // | |
1399 static void calc_nullzeit(void) | |
1400 { | |
1401 overlay int loop; | |
200 | 1402 update_startvalues(); |
167 | 1403 |
116 | 1404 char_O_nullzeit = 0; |
167 | 1405 for(loop = 1; loop <= 17; loop++) |
116 | 1406 { |
1407 backup_sim_pres_tissue(); | |
197 | 1408 sim_tissue(2); // 10 min. |
192 | 1409 sim_limit(GF_high); |
167 | 1410 |
192 | 1411 if( sim_lead_tissue_limit > pres_surface ) // changed in v.102 , if guiding tissue can not be exposed to surface pressure immediately |
185 | 1412 { |
1413 restore_sim_pres_tissue(); | |
1414 break; | |
1415 } | |
1416 // Validate once we know its good. | |
1417 char_O_nullzeit += 10; | |
167 | 1418 } |
1419 | |
116 | 1420 if (char_O_nullzeit < 60) |
1421 { | |
167 | 1422 for(loop=1; loop <= 10; loop++) |
116 | 1423 { |
197 | 1424 sim_tissue(1); // 1 min |
192 | 1425 sim_limit(GF_high); |
1426 | |
1427 if( sim_lead_tissue_limit > pres_surface) // changed in v.102 , if guiding tissue can not be exposed to surface pressure immediately | |
185 | 1428 break; |
1429 char_O_nullzeit++; | |
167 | 1430 } |
185 | 1431 } |
1432 } | |
116 | 1433 |
167 | 1434 ////////////////////////////////////////////////////////////////////////////// |
1435 // backup_sim_pres_tissue | |
1436 // | |
116 | 1437 void backup_sim_pres_tissue(void) |
1438 { | |
167 | 1439 overlay unsigned char x; |
1440 | |
1441 for(x = 0; x<32; x++) | |
126 | 1442 sim_pres_tissue_backup[x] = sim_pres_tissue[x]; |
167 | 1443 } |
116 | 1444 |
167 | 1445 ////////////////////////////////////////////////////////////////////////////// |
1446 // restore_sim_pres_tissue | |
1447 // | |
116 | 1448 void restore_sim_pres_tissue(void) |
1449 { | |
167 | 1450 overlay unsigned char x; |
1451 | |
1452 for(x = 0; x<32; x++) | |
126 | 1453 sim_pres_tissue[x] = sim_pres_tissue_backup[x]; |
167 | 1454 } |
116 | 1455 |
167 | 1456 ////////////////////////////////////////////////////////////////////////////// |
1457 // calc_ascenttime | |
1458 // | |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1459 static void calc_ascenttime(void) |
116 | 1460 { |
126 | 1461 if (pres_respiration > pres_surface) |
1462 { | |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1463 overlay unsigned char x; |
168 | 1464 |
192 | 1465 // + 0.7 to count 1 minute ascent time from 3 meter to surface |
1466 overlay float ascent = pres_respiration - pres_surface + 0.7; | |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1467 if (ascent < 0.0) |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1468 ascent = 0.0; |
192 | 1469 int_O_ascenttime = (unsigned int)(ascent + 0.99); |
168 | 1470 |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1471 for(x=0; x<32 && internal_deco_depth[x]; x++) |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1472 int_O_ascenttime += (unsigned int)internal_deco_time[x]; |
126 | 1473 } |
1474 else | |
168 | 1475 int_O_ascenttime = 0; |
167 | 1476 } |
116 | 1477 |
167 | 1478 ////////////////////////////////////////////////////////////////////////////// |
1479 // update_startvalues | |
1480 // | |
116 | 1481 // updated in v.102 |
167 | 1482 // |
116 | 1483 void update_startvalues(void) |
1484 { | |
167 | 1485 overlay unsigned char x; |
116 | 1486 |
1487 for (x = 0;x<16;x++) | |
1488 { | |
1489 sim_pres_tissue[x] = pres_tissue[x]; | |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1490 (sim_pres_tissue+16)[x] = (pres_tissue+16)[x]; |
116 | 1491 sim_pres_tissue_limit[x] = pres_tissue_limit[x]; |
1492 } | |
197 | 1493 |
1494 sim_gas_last_used = -1; // No switch yet. | |
1495 sim_lead_tissue_limit = 0.0; | |
1496 sim_lead_tissue_no = 255; | |
167 | 1497 } |
116 | 1498 |
167 | 1499 ////////////////////////////////////////////////////////////////////////////// |
192 | 1500 // sim_tissue |
167 | 1501 // |
116 | 1502 // optimized in v.101 |
167 | 1503 // |
1504 // Function very simular to calc_tissue, but: | |
1505 // + Use a 1min or 10min period. | |
1506 // + Do it on sim_pres_tissue, instead of pres_tissue. | |
184 | 1507 static void sim_tissue(PARAMETER unsigned char period) |
116 | 1508 { |
192 | 1509 for(ci=0; ci<16; ci++) |
126 | 1510 { |
184 | 1511 read_buhlmann_coefficients(period); // 1 or 10 minute(s) interval |
165 | 1512 |
126 | 1513 // N2 |
200 | 1514 temp_tissue = (ppO2 - sim_pres_tissue[ci]) * var_N2_e; |
126 | 1515 temp_tissue_safety(); |
167 | 1516 sim_pres_tissue[ci] += temp_tissue; |
126 | 1517 |
1518 // He | |
200 | 1519 temp_tissue = (ppHe - (sim_pres_tissue+16)[ci]) * var_He_e; |
126 | 1520 temp_tissue_safety(); |
167 | 1521 (sim_pres_tissue+16)[ci] += temp_tissue; |
192 | 1522 } |
167 | 1523 } |
116 | 1524 |
167 | 1525 ////////////////////////////////////////////////////////////////////////////// |
192 | 1526 // sim_limit() |
1527 // | |
1528 // New in v.111 | |
1529 // | |
1530 // Function separated from sim_tissue() to allow recomputing limit on | |
1531 // different depth, because it depends on current gradient factor. | |
167 | 1532 // |
192 | 1533 static void sim_limit(PARAMETER float GF_current) |
116 | 1534 { |
192 | 1535 sim_lead_tissue_limit = 0.0; |
1536 sim_lead_tissue_no = 255; | |
1537 | |
1538 for(ci=0; ci<16; ci++) | |
1539 { | |
1540 overlay float p = sim_pres_tissue[ci] + (sim_pres_tissue+16)[ci]; | |
1541 | |
1542 read_buhlmann_coefficients(-1); | |
1543 var_N2_a = (var_N2_a * sim_pres_tissue[ci] + var_He_a * (sim_pres_tissue+16)[ci]) / p; | |
1544 var_N2_b = (var_N2_b * sim_pres_tissue[ci] + var_He_b * (sim_pres_tissue+16)[ci]) / p; | |
1545 | |
1546 // Apply the Eric Baker's varying gradient factor correction. | |
1547 // Note: the correction factor depends both on GF and b, | |
1548 // Actual values are in the 1.5 .. 1.0 range (for a GF=30%), | |
1549 // so that can change who is the leading gas... | |
1550 // Note: Also depends of the GF_current... | |
1551 // *BUT* calc_tissue() is used to compute bottom time, | |
1552 // hence what would happend at surface, | |
1553 // hence at GF_high. | |
1554 if( char_I_deco_model == 1 ) | |
1555 p = ( p - var_N2_a * GF_current) * var_N2_b | |
1556 / (GF_current + var_N2_b * (1.0 - GF_current)); | |
1557 else | |
1558 p = (p - var_N2_a) * var_N2_b; | |
1559 if( p < 0 ) p = 0; | |
1560 | |
1561 sim_pres_tissue_limit[ci] = p; | |
1562 if( p > sim_lead_tissue_limit ) | |
1563 { | |
1564 sim_lead_tissue_no = ci; | |
1565 sim_lead_tissue_limit = p; | |
1566 } | |
1567 } // for ci | |
197 | 1568 |
1569 assert( sim_lead_tissue_no < 16 ); | |
1570 assert( 0.0 <= sim_lead_tissue_limit && sim_lead_tissue_limit <= 14.0); | |
167 | 1571 } |
116 | 1572 |
167 | 1573 ////////////////////////////////////////////////////////////////////////////// |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1574 // clear_deco_table |
167 | 1575 // |
1576 // unchanged in v.101 | |
1577 // | |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1578 static void clear_deco_table(void) |
116 | 1579 { |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1580 overlay unsigned char x; |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1581 |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1582 for(x=0; x<32; ++x) |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1583 { |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1584 internal_deco_time [x] = 0; |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1585 internal_deco_depth[x] = 0; |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1586 } |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1587 } |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1588 |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1589 ////////////////////////////////////////////////////////////////////////////// |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1590 // update_deco_table |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1591 // |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1592 // Add 1 min to current stop. |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1593 // |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1594 // Inputs: |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1595 // temp_depth_limit = stop's depth, in meters. |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1596 // In/Out: |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1597 // internal_deco_depth[] : depth (in meters) of each stops. |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1598 // internal_deco_time [] : time (in minutes) of each stops. |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1599 // |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1600 static void update_deco_table() |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1601 { |
192 | 1602 overlay unsigned char x; |
200 | 1603 assert( temp_depth_limit < 128 ); // Can't be negativ (overflown). |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1604 |
192 | 1605 for(x=0; x<32; ++x) |
1606 { | |
200 | 1607 if( internal_deco_depth[x] == temp_depth_limit ) |
192 | 1608 { |
1609 // Do not overflow (max 255') | |
1610 if( internal_deco_time[x] < 255 ) | |
1611 { | |
1612 internal_deco_time[x]++; | |
1613 return; | |
1614 } | |
1615 // But store extra in the next stop... | |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1616 } |
192 | 1617 |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1618 if( internal_deco_depth[x] == 0 ) |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1619 { |
192 | 1620 internal_deco_depth[x] = temp_depth_limit; |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1621 internal_deco_time[x] = 1; |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1622 return; |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1623 } |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1624 } |
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1625 |
192 | 1626 // Can't store stops at more than 96m. |
1627 // Or stops at less that 3m too. | |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1628 // Just do nothing with that... |
167 | 1629 } |
116 | 1630 |
167 | 1631 ////////////////////////////////////////////////////////////////////////////// |
1632 // calc_gradient_factor | |
1633 // | |
165 | 1634 // optimized in v.101 (var_N2_a) |
116 | 1635 // new code in v.102 |
167 | 1636 // |
1637 static void calc_gradient_factor(void) | |
116 | 1638 { |
197 | 1639 overlay float gf; |
1640 assert( char_O_gtissue_no < 16 ); | |
1641 | |
116 | 1642 // tissue > respiration (entsaettigungsvorgang) |
1643 // gradient ist wieviel prozent an limit mit basis tissue | |
1644 // dh. 0% = respiration == tissue | |
1645 // dh. 100% = respiration == limit | |
197 | 1646 temp_tissue = pres_tissue[char_O_gtissue_no] + (pres_tissue+16)[char_O_gtissue_no]; |
1647 if( temp_tissue < pres_respiration ) | |
1648 gf = 0.0; | |
1649 else | |
1650 { | |
1651 gf = (temp_tissue - pres_respiration) | |
1652 / (temp_tissue - pres_tissue_limit[char_O_gtissue_no]) | |
1653 * 100.0; | |
1654 if( gf > 255.0 ) gf = 255.0; | |
1655 if( gf < 0.0 ) gf = 0.0; | |
1656 } | |
1657 char_O_gradient_factor = (unsigned char)gf; | |
116 | 1658 |
1659 if (char_I_deco_model == 1) // calculate relative gradient factor | |
1660 { | |
197 | 1661 overlay float rgf; |
1662 | |
1663 if( low_depth == 0 ) | |
1664 rgf = GF_high; | |
1665 else | |
1666 { | |
1667 overlay float temp1 = low_depth * 0.09995; | |
1668 overlay float temp2 = pres_respiration - pres_surface; | |
186 | 1669 |
197 | 1670 if (temp2 <= 0) |
1671 rgf = GF_high; | |
1672 else if (temp2 >= temp1) | |
1673 rgf = GF_low; | |
1674 else | |
1675 rgf = GF_low + (temp1 - temp2)/temp1*GF_delta; | |
1676 } | |
186 | 1677 |
197 | 1678 rgf = gf / rgf; // gf is already in percent |
1679 if( rgf < 0.0 ) rgf = 0.0; | |
1680 if( rgf > 255.0 ) rgf = 255.0; | |
1681 char_O_relative_gradient_GF = (unsigned char)rgf; | |
116 | 1682 } // calc relative gradient factor |
1683 else | |
1684 { | |
186 | 1685 char_O_relative_gradient_GF = char_O_gradient_factor; |
116 | 1686 } |
167 | 1687 } |
116 | 1688 |
167 | 1689 ////////////////////////////////////////////////////////////////////////////// |
1690 // deco_calc_desaturation_time | |
1691 // | |
116 | 1692 // FIXED N2_ratio |
1693 // unchanged in v.101 | |
167 | 1694 // |
116 | 1695 void deco_calc_desaturation_time(void) |
1696 { | |
184 | 1697 overlay unsigned int desat_time; // For a particular compartiment, in min. |
200 | 1698 overlay float temp1; |
197 | 1699 overlay float temp2; |
1700 overlay float temp3; | |
1701 overlay float temp4; | |
122
3003a8040b78
FIX again reset C data stack and frame pointer when entering C code.
JeanDo
parents:
116
diff
changeset
|
1702 RESET_C_STACK |
3003a8040b78
FIX again reset C data stack and frame pointer when entering C code.
JeanDo
parents:
116
diff
changeset
|
1703 |
126 | 1704 N2_ratio = 0.7902; // FIXED sum as stated in b"uhlmann |
1705 pres_surface = (float)int_I_pres_surface / 1000.0; | |
200 | 1706 ppO2 = N2_ratio * (pres_surface - ppWVapour); |
126 | 1707 int_O_desaturation_time = 0; |
1708 float_desaturation_multiplier = char_I_desaturation_multiplier / 142.0; // new in v.101 (70,42%/100.=142) | |
1709 | |
1710 for (ci=0;ci<16;ci++) | |
1711 { | |
200 | 1712 overlay float var_N2_halftime = buhlmann_ht[ci]; |
1713 overlay float var_He_halftime = (buhlmann_ht+16)[ci]; | |
116 | 1714 |
126 | 1715 // saturation_time (for flight) and N2_saturation in multiples of halftime |
1716 // version v.100: 1.1 = 10 percent distance to totally clean (totally clean is not possible, would take infinite time ) | |
1717 // new in version v.101: 1.07 = 7 percent distance to totally clean (totally clean is not possible, would take infinite time ) | |
1718 // changes in v.101: 1.05 = 5 percent dist to totally clean is new desaturation point for display and noFly calculations | |
1719 // N2 | |
200 | 1720 temp1 = 1.05 * ppO2; |
126 | 1721 temp1 = temp1 - pres_tissue[ci]; |
200 | 1722 temp2 = ppO2 - pres_tissue[ci]; |
126 | 1723 if (temp2 >= 0.0) |
1724 { | |
1725 temp1 = 0; | |
1726 temp2 = 0; | |
1727 } | |
1728 else | |
1729 temp1 = temp1 / temp2; | |
1730 if (temp1 > 0.0) | |
1731 { | |
1732 temp1 = log(1.0 - temp1); | |
1733 temp1 = temp1 / -0.6931; // temp1 is the multiples of half times necessary. | |
1734 // 0.6931 is ln(2), because the math function log() calculates with a base of e not 2 as requested. | |
1735 // minus because log is negative | |
165 | 1736 temp2 = var_N2_halftime * temp1 / float_desaturation_multiplier; // time necessary (in minutes ) for complete desaturation (see comment about 10 percent) , new in v.101: float_desaturation_multiplier |
126 | 1737 } |
1738 else | |
1739 { | |
1740 temp1 = 0; | |
1741 temp2 = 0; | |
1742 } | |
116 | 1743 |
126 | 1744 // He |
167 | 1745 temp3 = 0.1 - (pres_tissue+16)[ci]; |
126 | 1746 if (temp3 >= 0.0) |
1747 { | |
1748 temp3 = 0; | |
1749 temp4 = 0; | |
1750 } | |
1751 else | |
167 | 1752 temp3 = -1.0 * temp3 / (pres_tissue+16)[ci]; |
126 | 1753 if (temp3 > 0.0) |
1754 { | |
1755 temp3 = log(1.0 - temp3); | |
1756 temp3 = temp3 / -0.6931; // temp1 is the multiples of half times necessary. | |
1757 // 0.6931 is ln(2), because the math function log() calculates with a base of e not 2 as requested. | |
1758 // minus because log is negative | |
165 | 1759 temp4 = var_He_halftime * temp3 / float_desaturation_multiplier; // time necessary (in minutes ) for "complete" desaturation, new in v.101 float_desaturation_multiplier |
126 | 1760 } |
1761 else | |
1762 { | |
1763 temp3 = 0; | |
1764 temp4 = 0; | |
1765 } | |
116 | 1766 |
126 | 1767 // saturation_time (for flight) |
1768 if (temp4 > temp2) | |
184 | 1769 desat_time = (unsigned int)temp4; |
126 | 1770 else |
184 | 1771 desat_time = (unsigned int)temp2; |
167 | 1772 if(desat_time > int_O_desaturation_time) |
1773 int_O_desaturation_time = desat_time; | |
116 | 1774 |
126 | 1775 // N2 saturation in multiples of halftime for display purposes |
1776 temp2 = temp1 * 20.0; // 0 = 1/8, 120 = 0, 249 = 8 | |
1777 temp2 = temp2 + 80.0; // set center | |
1778 if (temp2 < 0.0) | |
1779 temp2 = 0.0; | |
1780 if (temp2 > 255.0) | |
1781 temp2 = 255.0; | |
1782 char_O_tissue_saturation[ci] = (char)temp2; | |
1783 // He saturation in multiples of halftime for display purposes | |
1784 temp4 = temp3 * 20.0; // 0 = 1/8, 120 = 0, 249 = 8 | |
1785 temp4 = temp4 + 80.0; // set center | |
1786 if (temp4 < 0.0) | |
1787 temp4 = 0.0; | |
1788 if (temp4 > 255.0) | |
1789 temp4 = 255.0; | |
167 | 1790 (char_O_tissue_saturation+16)[ci] = (char)temp4; |
126 | 1791 } // for |
167 | 1792 } |
116 | 1793 |
167 | 1794 ////////////////////////////////////////////////////////////////////////////// |
1795 // calc_wo_deco_step_1_min | |
1796 // | |
116 | 1797 // FIXED N2 Ratio |
1798 // optimized in v.101 (...saturation_multiplier) | |
1799 // desaturation slowed down to 70,42% | |
167 | 1800 // |
1801 static void calc_wo_deco_step_1_min(void) | |
116 | 1802 { |
1803 if(flag_in_divemode) | |
1804 { | |
1805 flag_in_divemode = 0; | |
1806 set_dbg_end_of_dive(); | |
1807 } | |
122
3003a8040b78
FIX again reset C data stack and frame pointer when entering C code.
JeanDo
parents:
116
diff
changeset
|
1808 |
126 | 1809 N2_ratio = 0.7902; // FIXED, sum lt. buehlmann |
1810 pres_respiration = (float)int_I_pres_respiration / 1000.0; // assembler code uses different digit system | |
192 | 1811 pres_surface = (float)int_I_pres_surface / 1000.0; // the b"uhlmann formula using pres_surface does not use the N2_ratio |
200 | 1812 ppO2 = N2_ratio * (pres_respiration - ppWVapour); // ppWVapour is the extra pressure in the body |
1813 ppHe = 0.0; | |
126 | 1814 float_desaturation_multiplier = char_I_desaturation_multiplier / 142.0; // new in v.101 (70,42%/100.=142) |
197 | 1815 float_saturation_multiplier = char_I_saturation_multiplier * 0.01; |
126 | 1816 |
192 | 1817 calc_tissue(1); // update the pressure in the 32 tissues in accordance with the new ambient pressure |
167 | 1818 |
169
e26f49674956
Merge decoplan display for both GF and Buhlmann models.
JeanDo
parents:
168
diff
changeset
|
1819 clear_deco_table(); |
200 | 1820 char_O_deco_status = 3; // surface new in v.102 : stays in surface state. |
126 | 1821 char_O_nullzeit = 0; |
168 | 1822 int_O_ascenttime = 0; |
126 | 1823 calc_gradient_factor(); |
167 | 1824 } |
126 | 1825 |
167 | 1826 ////////////////////////////////////////////////////////////////////////////// |
1827 ////////////////////////////////////////////////////////////////////////////// | |
1828 ////////////////////////////////// deco_hash ///////////////////////////////// | |
1829 ////////////////////////////////////////////////////////////////////////////// | |
1830 ////////////////////////////////////////////////////////////////////////////// | |
126 | 1831 |
184 | 1832 #ifndef CROSS_COMPILE |
116 | 1833 void deco_hash(void) |
1834 { | |
167 | 1835 overlay unsigned char md_i, md_j; // Loop index. |
1836 overlay unsigned char md_t; | |
1837 overlay unsigned char md_buffer[16]; | |
1838 overlay unsigned char md_temp; | |
1839 overlay unsigned int md_pointer; | |
1840 | |
122
3003a8040b78
FIX again reset C data stack and frame pointer when entering C code.
JeanDo
parents:
116
diff
changeset
|
1841 RESET_C_STACK |
126 | 1842 |
1843 // init | |
164 | 1844 for(md_i=0;md_i<16;md_i++) |
126 | 1845 { |
1846 md_state[md_i] = 0; | |
164 | 1847 char_O_hash[md_i] = 0; |
126 | 1848 } // for md_i 16 |
116 | 1849 |
126 | 1850 _asm |
167 | 1851 movlw 0x01 // md_pi address. |
1852 movwf TBLPTRU,0 | |
1853 movlw 0x7E | |
1854 movwf TBLPTRH,0 | |
1855 movlw 0x00 | |
1856 movwf TBLPTRL,0 | |
126 | 1857 _endasm; |
165 | 1858 md_i = 0; |
1859 do { | |
126 | 1860 _asm |
1861 TBLRDPOSTINC | |
1862 movff TABLAT,md_temp | |
1863 _endasm | |
165 | 1864 md_pi_subst[md_i++] = md_temp; |
1865 } while( md_i != 0 ); | |
1866 | |
126 | 1867 _asm |
167 | 1868 movlw 0x00 |
1869 movwf TBLPTRU,0 | |
1870 movlw 0x00 | |
1871 movwf TBLPTRH,0 | |
1872 movlw 0x00 | |
1873 movwf TBLPTRL,0 | |
126 | 1874 _endasm |
167 | 1875 |
126 | 1876 // cycle buffers |
1877 for (md_pointer=0x0000;md_pointer<0x17f3;md_pointer++) | |
1878 { | |
1879 md_t = 0; | |
1880 for (md_i=0;md_i<16;md_i++) | |
1881 { | |
1882 if(md_pointer == 9) | |
164 | 1883 md_temp = char_O_hash[md_i]; |
126 | 1884 else |
1885 { | |
1886 _asm | |
167 | 1887 TBLRDPOSTINC |
1888 movff TABLAT,md_temp | |
126 | 1889 _endasm |
1890 } // else | |
167 | 1891 |
1892 md_buffer[md_i] = md_temp; | |
186 | 1893 md_state[md_i+16] = md_temp; |
1894 md_state[md_i+32] = (unsigned char)(md_temp ^ md_state[md_i]); | |
126 | 1895 } // for md_i 16 |
1896 | |
1897 for (md_i=0;md_i<18;md_i++) | |
1898 { | |
1899 for (md_j=0;md_j<48;md_j++) | |
1900 { | |
167 | 1901 md_state[md_j] ^= md_pi_subst[md_t]; |
126 | 1902 md_t = md_state[md_j]; |
1903 } // for md_j 48 | |
1904 md_t = (unsigned char)(md_t+1); | |
1905 } // for md_i 18 | |
164 | 1906 md_t = char_O_hash[15]; |
126 | 1907 |
1908 for (md_i=0;md_i<16;md_i++) | |
1909 { | |
167 | 1910 char_O_hash[md_i] ^= md_pi_subst[(md_buffer[md_i] ^ md_t)]; |
164 | 1911 md_t = char_O_hash[md_i]; |
126 | 1912 } // for md_i 16 |
1913 } // for md_pointer | |
116 | 1914 } // void deco_hash(void) |
184 | 1915 #endif |
116 | 1916 |
167 | 1917 ////////////////////////////////////////////////////////////////////////////// |
1918 // deco_clear_CNS_fraction | |
1919 // | |
116 | 1920 // new in v.101 |
167 | 1921 // |
116 | 1922 void deco_clear_CNS_fraction(void) |
1923 { | |
122
3003a8040b78
FIX again reset C data stack and frame pointer when entering C code.
JeanDo
parents:
116
diff
changeset
|
1924 RESET_C_STACK |
126 | 1925 CNS_fraction = 0.0; |
1926 char_O_CNS_fraction = 0; | |
167 | 1927 } |
116 | 1928 |
167 | 1929 ////////////////////////////////////////////////////////////////////////////// |
1930 // deco_calc_CNS_fraction | |
1931 // | |
116 | 1932 // new in v.101 |
1933 // optimized in v.102 : with new variables char_I_actual_ppO2 and actual_ppO2 | |
167 | 1934 // |
116 | 1935 // Input: char_I_actual_ppO2 |
1936 // Output: char_O_CNS_fraction | |
1937 // Uses and Updates: CNS_fraction | |
1938 // Uses: acutal_ppO2 | |
167 | 1939 // |
116 | 1940 void deco_calc_CNS_fraction(void) |
1941 { | |
167 | 1942 overlay float actual_ppO2; |
126 | 1943 RESET_C_STACK |
167 | 1944 |
126 | 1945 actual_ppO2 = (float)char_I_actual_ppO2 / 100.0; |
116 | 1946 |
126 | 1947 if (char_I_actual_ppO2 < 50) |
1948 CNS_fraction = CNS_fraction;// no changes | |
1949 else if (char_I_actual_ppO2 < 60) | |
1950 CNS_fraction = 1/(-54000.0 * actual_ppO2 + 54000.0) + CNS_fraction; | |
1951 else if (char_I_actual_ppO2 < 70) | |
1952 CNS_fraction = 1/(-45000.0 * actual_ppO2 + 48600.0) + CNS_fraction; | |
1953 else if (char_I_actual_ppO2 < 80) | |
1954 CNS_fraction = 1/(-36000.0 * actual_ppO2 + 42300.0) + CNS_fraction; | |
1955 else if (char_I_actual_ppO2 < 90) | |
1956 CNS_fraction = 1/(-27000.0 * actual_ppO2 + 35100.0) + CNS_fraction; | |
1957 else if (char_I_actual_ppO2 < 110) | |
1958 CNS_fraction = 1/(-18000.0 * actual_ppO2 + 27000.0) + CNS_fraction; | |
1959 else if (char_I_actual_ppO2 < 150) | |
1960 CNS_fraction = 1/(-9000.0 * actual_ppO2 + 17100.0) + CNS_fraction; | |
1961 else if (char_I_actual_ppO2 < 160) | |
1962 CNS_fraction = 1/(-22500.0 * actual_ppO2 + 37350.0) + CNS_fraction; | |
1963 else if (char_I_actual_ppO2 < 165) | |
1964 CNS_fraction = 0.000755 + CNS_fraction; // Arieli et all.(2002): Modeling pulmonary and CNS O2 toxicity... Formula (A1) based on value for 1.55 and c=20 | |
1965 else if (char_I_actual_ppO2 < 170) | |
1966 CNS_fraction = 0.00102 + CNS_fraction; // example calculation: Sqrt((1.7/1.55)^20)*0.000404 | |
1967 else if (char_I_actual_ppO2 < 175) | |
1968 CNS_fraction = 0.00136 + CNS_fraction; | |
1969 else if (char_I_actual_ppO2 < 180) | |
1970 CNS_fraction = 0.00180 + CNS_fraction; | |
1971 else if (char_I_actual_ppO2 < 185) | |
1972 CNS_fraction = 0.00237 + CNS_fraction; | |
1973 else if (char_I_actual_ppO2 < 190) | |
1974 CNS_fraction = 0.00310 + CNS_fraction; | |
1975 else if (char_I_actual_ppO2 < 195) | |
1976 CNS_fraction = 0.00401 + CNS_fraction; | |
1977 else if (char_I_actual_ppO2 < 200) | |
1978 CNS_fraction = 0.00517 + CNS_fraction; | |
1979 else if (char_I_actual_ppO2 < 230) | |
1980 CNS_fraction = 0.0209 + CNS_fraction; | |
1981 else | |
1982 CNS_fraction = 0.0482 + CNS_fraction; // value for 2.5 | |
116 | 1983 |
126 | 1984 if (CNS_fraction > 2.5) |
1985 CNS_fraction = 2.5; | |
1986 if (CNS_fraction < 0.0) | |
1987 CNS_fraction = 0.0; | |
1988 | |
1989 char_O_CNS_fraction = (char)((CNS_fraction + 0.005)* 100.0); | |
167 | 1990 } |
116 | 1991 |
167 | 1992 ////////////////////////////////////////////////////////////////////////////// |
1993 // deco_calc_CNS_decrease_15min | |
1994 // | |
116 | 1995 // new in v.101 |
167 | 1996 // |
116 | 1997 // calculates the half time of 90 minutes in 6 steps of 15 min |
200 | 1998 // (Used in sleepmode, for low battery mode). |
167 | 1999 // |
116 | 2000 // Output: char_O_CNS_fraction |
2001 // Uses and Updates: CNS_fraction | |
167 | 2002 // |
116 | 2003 void deco_calc_CNS_decrease_15min(void) |
2004 { | |
122
3003a8040b78
FIX again reset C data stack and frame pointer when entering C code.
JeanDo
parents:
116
diff
changeset
|
2005 RESET_C_STACK |
126 | 2006 CNS_fraction = 0.890899 * CNS_fraction; |
167 | 2007 char_O_CNS_fraction = (char)(CNS_fraction * 100.0 + 0.5); |
2008 } | |
116 | 2009 |
167 | 2010 ////////////////////////////////////////////////////////////////////////////// |
2011 // deco_calc_percentage | |
2012 // | |
116 | 2013 // new in v.101 |
167 | 2014 // |
116 | 2015 // calculates int_I_temp * char_I_temp / 100 |
2016 // output is int_I_temp | |
200 | 2017 // |
2018 // Used to compute NoFly remaining time. | |
116 | 2019 |
2020 void deco_calc_percentage(void) | |
2021 { | |
122
3003a8040b78
FIX again reset C data stack and frame pointer when entering C code.
JeanDo
parents:
116
diff
changeset
|
2022 RESET_C_STACK |
197 | 2023 int_I_temp = (int)(int_I_temp * (char_I_temp / 100.0)); |
116 | 2024 } |
2025 | |
167 | 2026 ////////////////////////////////////////////////////////////////////////////// |
2027 | |
116 | 2028 void deco_push_tissues_to_vault(void) |
2029 { | |
167 | 2030 overlay unsigned char x; |
122
3003a8040b78
FIX again reset C data stack and frame pointer when entering C code.
JeanDo
parents:
116
diff
changeset
|
2031 RESET_C_STACK |
167 | 2032 |
116 | 2033 cns_vault = CNS_fraction; |
167 | 2034 for (x=0;x<32;x++) |
2035 pres_tissue_vault[x] = pres_tissue[x]; | |
116 | 2036 } |
167 | 2037 |
116 | 2038 void deco_pull_tissues_from_vault(void) |
2039 { | |
167 | 2040 overlay unsigned char x; |
122
3003a8040b78
FIX again reset C data stack and frame pointer when entering C code.
JeanDo
parents:
116
diff
changeset
|
2041 RESET_C_STACK |
167 | 2042 |
116 | 2043 CNS_fraction = cns_vault; |
167 | 2044 for (x=0;x<32;x++) |
2045 pres_tissue[x] = pres_tissue_vault[x]; | |
116 | 2046 } |
2047 | |
167 | 2048 ////////////////////////////////////////////////////////////////////////////// |
2049 // | |
184 | 2050 #ifndef CROSS_COMPILE |
2051 void main() {} | |
2052 #endif |