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