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