Mercurial > public > hwos_code
annotate src/p2_deco.c @ 638:a3b21497d17e
Merge
author | heinrichsweikamp |
---|---|
date | Mon, 25 May 2020 17:36:50 +0200 |
parents | 9a64914a8fca |
children | 8c1f1f334275 |
rev | line source |
---|---|
582 | 1 // *************************************************************************** |
634 | 2 // p2_deco.c combined next generation V3.09.4 |
0 | 3 // |
4 // Created on: 12.05.2009 | |
560 | 5 // Author: heinrichs weikamp, contributions by Ralph Lembcke and others |
0 | 6 // |
582 | 7 // *************************************************************************** |
0 | 8 |
9 ////////////////////////////////////////////////////////////////////////////// | |
10 // OSTC - diving computer code | |
604 | 11 // Copyright (C) 2018 HeinrichsWeikamp GmbH |
0 | 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 | |
623 | 15 // the Free Software Foundation, either version 3 of the License, or |
0 | 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 | |
623 | 20 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
0 | 21 // GNU General Public License for more details. |
22 // | |
23 // You should have received a copy of the GNU General Public License | |
623 | 24 // along with this program. If not, see <http://www.gnu.org/licenses/>. |
0 | 25 // |
26 ////////////////////////////////////////////////////////////////////////////// | |
27 | |
623 | 28 // History: |
0 | 29 // 01/03/08 v100: first release candidate |
30 // 03/13/08 v101: start of programming ppO2 code | |
560 | 31 // 03/13/25 v101a: backup of interim version with ppO2 calculation |
0 | 32 // 03/13/25 v101: open circuit gas change during deco |
623 | 33 // 03/13/25 v101: CNS_fraction_real calculation |
0 | 34 // 03/13/26 v101: optimization of tissue calc routines |
623 | 35 // 07/xx/2008 v102a: debug of bottom time routine |
36 // 09/xx/2008 v102d: Gradient Factor Model implementation | |
37 // 10/10/2008 v104: renamed to build v103 for v118 stable | |
631 | 38 // 10/14/2008 v104: integration of char_I_last_stop_depth for Gradient Model |
623 | 39 // 03/31/2009 v107: integration of FONT Incon24 |
40 // 05/23/2010 v109: 5 gas changes & 1 min timer | |
41 // 07/13/2010 v110: cns vault added | |
42 // 12/25/2010 v110: split in three files (deco.c, main.c, definitions.h) | |
0 | 43 // 2011/01/20: [jDG] Create a common file included in ASM and C code. |
623 | 44 // 2011/01/24: [jDG] Make ascent time an short. No more overflow! |
0 | 45 // 2011/01/25: [jDG] Fusion deco array for both models. |
46 // 2011/01/25: [jDG] Use CF(54) to reverse deco order. | |
47 // 2011/02/11: [jDG] Reworked gradient-factor implementation. | |
48 // 2011/02/15: [jDG] Fixed inconsistencies introduced by gas switch delays. | |
49 // 2011/03/21: [jDG] Added gas consumption (CF56 & CF57) evaluation for OCR mode. | |
631 | 50 // 2011/04/15: [jDG] Store GF_depth in 32 bits (w/o rounding), for a better stability. |
560 | 51 // 2011/04/25: [jDG] Added 1mn mode for CNS calculation, to allow it for deco planning. |
0 | 52 // 2011/04/27: [jDG] Fixed char_O_gradient_factor calculation when model uses gradient-factor. |
53 // 2011/05/02: [jDG] Added "Future TTS" function (CF58). | |
54 // 2011/05/17: [jDG] Various cleanups. | |
55 // 2011/08/08: [jDG] Computes CNS during deco planning ascent. | |
56 // 2011/11/24: [jDG] Slightly faster and better NDL computation. | |
57 // 2011/12/17: [mH] Remove of the useless debug stuff | |
58 // 2012/02/24: [jDG] Remove missed stop bug. | |
59 // 2012/02/25: [jDG] Looking for a more stable LOW grad factor reference. | |
60 // 2012/09/10: [mH] Fill char_O_deco_time_for_log for logbook write | |
623 | 61 // 2012/10/05: [jDG] Better calc_gas_needs_ascent accuracy (average depth, switch between stop). |
631 | 62 // 2013/03/05: [jDG] Should vault GF_depth too. |
0 | 63 // 2013/03/05: [jDG] Wrobell remark: ascent_to_first_stop works better with finer steps (2sec). |
33
5d4a4fb0e8a6
Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents:
0
diff
changeset
|
64 // 2013/05/08: [jDG] A. Salm remark: NOAA tables for CNS are in ATA, not bar. |
560 | 65 // 2013/12/21: [jDG] Fix CNS calculation in deco plan w/o marked gas switch |
66 // 2014/06/16: [jDG] Fix Helium diluent. Fix volumes with many travel mix. | |
324
0e9dcdcf03c1
FIX NDL prediction error with Buhlmann model: might be desaturating too fast.
jdg@air
parents:
323
diff
changeset
|
67 // 2014/06/29: [mH] Compute int_O_ceiling |
0e9dcdcf03c1
FIX NDL prediction error with Buhlmann model: might be desaturating too fast.
jdg@air
parents:
323
diff
changeset
|
68 // 2015/06/12: [jDG] Fix NDL prediction while desaturating with the Buhlmann model. |
560 | 69 // 2017/08/04: [mH] Switch to absolute GF everywhere and apply safety margin parameters to both models (GF and non-GF), fixes from Ralph Lembcke |
70 // 2017/10/31: [rl] enhancements for pSCR mode and introduction of 2nd deco plan computation | |
71 // 2017/12/31: [rl] completion of 2nd deco plan computation and various up-fixes | |
584 | 72 // 2018/02/17: [rl] switch-over to new ceiling rounding (V2.98a) |
0 | 73 // |
74 // | |
75 // Literature: | |
313 | 76 // Buhlmann, Albert: Tauchmedizin; 4. Auflage [2002]; |
604 | 77 // Schroeder, Kai & Reith, Steffen; 2000; Saettigungsvorgaenge beim Tauchen, das Modell ZH-L16, Funktionsweise von Tauchcomputern; http://www.achim-und-kai.de/kai/tausim/saett_faq |
0 | 78 // Morrison, Stuart; 2000; DIY DECOMPRESSION; http://www.lizardland.co.uk/DIYDeco.html |
79 // Balthasar, Steffen; Dekompressionstheorie I: Neo Haldane Modelle; http://www.txfreak.de/dekompressionstheorie_1.pdf | |
80 // Baker, Erik C.; Clearing Up The Confusion About "Deep Stops" | |
81 // Baker, Erik C.; Understanding M-values; http://www.txfreak.de/understanding_m-values.pdf | |
604 | 82 |
83 | |
84 // ********************************************************************************************************************************* | |
0 | 85 // |
604 | 86 // I N C L U D E S |
87 // | |
88 // ********************************************************************************************************************************* | |
89 | |
623 | 90 |
604 | 91 #include <math.h> |
582 | 92 #include "p2_definitions.h" |
93 #define TEST_MAIN | |
94 #include "shared_definitions.h" | |
623 | 95 #include "configuration.inc" |
0 | 96 |
560 | 97 |
604 | 98 // ********************************************************************************************************************************* |
99 // | |
100 // C O N S T A N T S D E F I N I T I O N S | |
101 // | |
102 // ********************************************************************************************************************************* | |
103 | |
623 | 104 |
105 // deco engine scheduling | |
106 #define INVOKES_PER_SECOND 2 // number of invocations of the deco engine per second (use powers of 2 only: 1, 2, 4, ...) | |
628 | 107 |
108 #ifdef _hwos_sport | |
109 #define BUDGET_PER_SECOND 320 // [ms] total time budget per second for the deco engine, each invocation will preempt after BUDGET_PER_SECOND / INVOKES_PER_SECOND | |
110 #else | |
623 | 111 #define BUDGET_PER_SECOND 640 // [ms] total time budget per second for the deco engine, each invocation will preempt after BUDGET_PER_SECOND / INVOKES_PER_SECOND |
628 | 112 #endif |
604 | 113 |
560 | 114 // ambient pressure at different mountain heights |
115 #define P_ambient_1000m 0.880 // [bar] based on 990 hPa and 20°C at sea level, 15°C at altitude | |
116 #define P_ambient_2000m 0.782 // [bar] | |
117 #define P_ambient_3000m 0.695 // [bar] | |
118 | |
119 // ambient pressure in aircraft cabin during flying - worst case according to Buhlmann | |
120 #define P_ambient_fly 0.600 // [bar], 0.600 bar is the value used by Buhlmann for his flying-after-diving calculations | |
582 | 121 // 0.735 bar is a typical cabin pressure for nowadays commercial jet aircrafts |
560 | 122 // ----- |
123 // 0.135 bar safety margin | |
124 | |
125 // constants and factors | |
631 | 126 #define ppWater 0.06270 // water vapor partial pressure in the lungs |
127 #define METER_TO_BAR 0.09807 // conversion factor (1 m water column = 0.09807 bar) | |
128 #define BAR_TO_METER 10.19716 // conversion factor (1 bar = 10.19716 m ) | |
129 #define SURFACE_DESAT_FACTOR 0.70420 // surface desaturation safety factor | |
130 #define HYST 1.0E-06 // threshold for tissue graphics on-gassing / off-gassing visualization | |
560 | 131 |
132 // thresholds | |
628 | 133 #define CNS_LIMIT_WARNING 100 // threshold for CNS warning |
134 #define CNS_LIMIT_ATTENTION 70 // threshold for CNS attention | |
604 | 135 #define PRESSURE_LIMIT_WARNING 200 // threshold for pressure reading warning : 20.0 bar |
136 #define PRESSURE_LIMIT_ATTENTION 500 // threshold for pressure reading attention: 50.0 bar | |
631 | 137 #define GAS_NEEDS_ATTENTION 0.7 // threshold for gas needs attention [1 = 100%] |
604 | 138 #define O2_CONSUMPTION_LIMIT_ATTENTION 20 // threshold for O2 "SAC" attention: 2.0 l/min |
628 | 139 #define ppO2_GAP_TO_SETPOINT 10 // gap between setpoint and max. ppO2 of the pure diluent [cbar] |
623 | 140 #define ppO2_MARGIN_ON_MAX 3 // [cbar] margin on ppO2 max to compensate for surface pressures > 1.000 mbar |
631 | 141 #define STOP_CHAINING_LIMIT 3 // max. number of chained stop table entries before deco calculation is aborted |
628 | 142 |
623 | 143 |
144 // deco engine states and modes - (char_O_)main_status: controls current tissue and deco status calculation (as-is situation) | |
145 #define CALC_VOLUME 0x01 // =1: calculate gas needs | |
146 #define CALCULATE_BOTTOM 0x02 // =1: calculate gas needs in deco calculator mode, =0: in dive mode | |
631 | 147 #define CAVE_MODE 0x04 // =1: calculate return path and gas needs using backtracking data |
148 #define GAS_CONTINGENCY 0x08 // =1: use a second best gas if best gas is all used up | |
623 | 149 #define TR_FUNCTIONS 0x10 // =1: calculate TR functions (pressure reading) processing |
150 #define EXTENDED_STOPS 0x20 // =1: allow placement of gas switches below the depth of the 1st stop | |
151 | |
152 #define MODE_MASK 0xC0 // mask for real tissues mode selection | |
153 #define MODE_LOOP 0x40 // =1: CCR (MODE_PSCR needs to be cleared) or pSCR mode | |
154 #define MODE_CCR 0x40 // to be used with == operator in combination with MODE_MASK only! | |
155 #define MODE_PSCR 0x80 // =1: pSCR mode (MODE_LOOP needs to be set, too) | |
156 | |
157 // deco engine states and modes - (char_O_)deco_status: controls deco plan calculation (to-be scenario) | |
158 #define PLAN_MASK 0x03 // bit mask covering normal & alternative plan flag | |
159 #define COMMAND_MASK 0x07 // bit mask covering all command flags | |
160 #define CALCULATING 0x00 // calculations are ongoing | |
161 #define START_NORM 0x01 // input: start calculation of a normal deco plan | |
162 #define CALC_NORM 0x01 // internal: calculating a normal deco plan | |
163 #define COMPLETED_NORM 0x01 // output: calculation of a normal deco plan has completed | |
164 #define START_ALT 0x02 // input: start calculation of an alternative deco plan | |
165 #define CALC_ALT 0x02 // internal: calculating an alternative deco plan | |
166 #define COMPLETED_ALT 0x02 // output: calculation of an alternative deco plan has completed | |
167 #define INITIALIZE 0x04 // input: initialize deco engine | |
631 | 168 #define INITIALIZE_START_NORM 0x05 // input: initialize deco engine and start calculation of a normal deco plan |
623 | 169 #define INITIALIZE_START_ALT 0x06 // input: initialize deco engine and start calculation of an alternative deco plan |
628 | 170 #define DECO_CALCULATOR_MODE 0x08 // input: deco engine is run from deco calculator |
623 | 171 |
172 #define BAILOUT_MODE 0x10 // =1: allow gas switches before first deco stop | |
631 | 173 #define DELAYED_ASCENT 0x20 // =1: figure in a delayed ascent / delayed turn of the dive (fTTS) |
623 | 174 |
175 // MODE_MASK 0xC0 // mask for simulated tissues mode selection | |
176 // MODE_LOOP 0x40 // =1: CCR (MODE_PSCR needs to be cleared) or pSCR mode | |
177 // MODE_CCR 0x40 // to be used with == operator in combination with MODE_MASK only! | |
178 // MODE_PSCR 0x80 // =1: pSCR mode (MODE_LOOP needs to be set, too) | |
179 | |
180 | |
181 // deco engine warnings - (char_O_)deco_warnings | |
604 | 182 #define DECO_WARNING_IBCD 0x01 // IBCD occurring now |
183 #define DECO_WARNING_IBCD_lock 0x02 // IBCD has occurred during the dive | |
184 #define DECO_WARNING_MBUBBLES 0x04 // micro bubbles likely to develop now | |
185 #define DECO_WARNING_MBUBBLES_lock 0x08 // ditto, but sometime during the dive | |
186 #define DECO_WARNING_OUTSIDE 0x10 // tissue pressures outside the Buhlmann model now | |
187 #define DECO_WARNING_OUTSIDE_lock 0x20 // tissue pressures outside the model sometime during the dive | |
188 #define DECO_ATTENTION_OUTSIDE 0x40 // tissue pressures are very close to the Buhlmann limit | |
631 | 189 #define DECO_WARNING_INCOMPLETE 0x80 // deco calculation incomplete due to too long compute time |
604 | 190 |
623 | 191 // deco engine status (char_O_)deco_info |
628 | 192 #define DECO_MODE 0x01 // =1: deco ppO2 levels are permitted |
604 | 193 #define IND_DOUBLE_SWITCH_FLAG 0x02 // =1: switch to other tank advice active |
631 | 194 #define GAS_NEEDS_fTTS 0x04 // =1: gas needs are calculated in fTTS mode |
623 | 195 #define DECO_ZONE 0x08 // =1: fTTS < TTS (not updated when in bailout mode) |
631 | 196 #define DECO_CEILING 0x10 // =1: deco obligation (ceiling > 0) |
197 #define DECO_STOPS_NORM 0x20 // =1: deco stops found in normal plan | |
198 #define DECO_STOPS_ALT 0x40 // =1: deco stops found in alternative plan | |
199 #define GAS_NEEDS_CAVE 0x80 // =1: indicated gas needs are calculated in cave mode | |
623 | 200 |
604 | 201 |
202 // deco engine control - tissue_increment | |
631 | 203 #define TIME_MASK 0x7F // =0: time increment is 2 or 6 seconds, 1..127: time increments is 1..127 minutes |
204 #define TISSUE_SELECTOR 0x80 // =0: calculate on simulated tissues, 1 : calculate on real tissues | |
623 | 205 |
206 | |
207 // deco engine control - next_planning_phase | |
208 #define PHASE_00_DONE 0x00 // calculation cycle finished | |
209 #define PHASE_10_DIVE_INIT 0x10 // once-per-dive initialization of the deco engine | |
628 | 210 #define PHASE_20_CYCLIC_INIT 0x20 // once-every-cycle initialization of the deco engine |
211 #define PHASE_30_EXTENDED_BOTTOM_TIME 0x30 // calculate extended bottom time | |
212 #define PHASE_40_BOTTOM_GAS_NEED 0x40 // calculate gas needs for bottom segment | |
213 #define PHASE_50_NDL_TIME 0x50 // calculate NDL time | |
631 | 214 #define PHASE_70_ASCENT_OR_RETURN 0x70 // calculate open water ascent or cave return |
628 | 215 #define PHASE_80_RESULTS 0x80 // results - initialization |
216 #define PHASE_81_RESULTS_STOPS_TABLE 0x81 // results - publish stops table | |
217 #define PHASE_82_RESULTS_NDL 0x82 // results - publish data / within NDL | |
218 #define PHASE_83_RESULTS_DECO 0x83 // results - publish data / in deco | |
219 #define PHASE_84_GAS_NEEDS_PRESSURES 0x84 // results - convert gas needs from volumes to pressures | |
631 | 220 #define PHASE_85_GAS_NEEDS_CAVE 0x85 // results - tag gas needs as calculated in cave or open water mode |
623 | 221 #define PHASE_90_FINISH 0x90 // finish calculation cycle |
222 | |
223 | |
631 | 224 // gas & diluent - type and availability state |
225 // 0x01 // | 0: disabled, 1: first, 2: normal/work, 3: deco | |
226 // 0x02 // | | |
227 #define GAS_TYPE_MASK 0x03 // bit mask covering the type enumerator | |
228 #define GAS_AVAIL_LOST 0x04 // =1: gas/diluent lost flag (permanently unavailable) | |
229 #define GAS_AVAIL_STAGED 0x08 // =1: gas/diluent staged flag (temporary unavailable) | |
230 #define GAS_AVAIL_MASK 0x0C // bit mask covering the availability flags | |
231 #define GAS_NEED_ATTENTION 0x10 // =1: gas need >= attention threshold | |
232 #define GAS_NEED_WARNING 0x20 // =1: gas need >= warning threshold | |
233 #define GAS_NEED_MASK 0x30 // bit mask covering the need flags | |
234 #define GAS_NEARLY_USED_UP 0x40 // =1: the gas is nearly used up (= at attention threshold) | |
235 #define GAS_FULLY_USED_UP 0x80 // =1: the gas is fully used up (= at warning threshold) | |
236 | |
237 | |
560 | 238 // flags used with integer numbers |
604 | 239 #define INT_FLAG_INVALID 0x0400 // =1: value not valid |
623 | 240 #define INT_FLAG_NOT_COMPUTED_YET 0x0800 // =1: value not computed yet |
604 | 241 #define INT_FLAG_ZERO 0x0800 // =1: value is zero |
242 #define INT_FLAG_LOW 0x1000 // =1: value is below a lower warning threshold | |
243 #define INT_FLAG_NOT_AVAIL 0x1000 // =1: value is not available (not computed) | |
244 #define INT_FLAG_HIGH 0x2000 // =1: value is above an upper warning threshold | |
245 #define INT_FLAG_OUTDATED 0x2000 // =1: value has not been updated for too long | |
246 #define INT_FLAG_ATTENTION 0x4000 // =1: value exceeds the attention threshold | |
247 #define INT_FLAG_WARNING 0x8000 // =1: value exceeds the warning threshold | |
248 #define INT_FLAG_OUT_OF_RANGE 0x8000 // =1: value exceeds presentable range | |
249 | |
250 | |
251 | |
252 // ********************************************************************************************************************************* | |
253 // | |
254 // ** P R O T O T Y P E S ** | |
255 // | |
256 // The Functions are listed in sequence of intended usage / application. | |
257 // | |
258 // ********************************************************************************************************************************* | |
259 | |
623 | 260 // Functions used in Surface Mode |
604 | 261 static void calc_interval(PARAMETER unsigned char time_increment); |
262 // Calculates the tissue off-gassing under surface conditions. | |
263 static void calc_desaturation_time(void); // Calculates the desaturation and no-fly times. | |
264 static void clear_tissue(void); // Resets all tissues to surface pressure equilibrium state. | |
623 | 265 static void init_output_vars(void); // Initializes all deco engine output variables to defaults |
266 | |
267 // Main entry point in Dive Mode | |
604 | 268 static void calc_hauptroutine(void); // Sequences all calculations for the real tissues and the deco calculation. |
269 | |
623 | 270 // Functions dedicated to the real Tissues |
604 | 271 static void calc_hauptroutine_data_input(void);// Initializes environment data and sets gas ratios for the real tissues. |
272 | |
623 | 273 // Functions combined for real Tissues & Deco Calculations |
604 | 274 static void calc_alveolar_pressures(void); // Computes the partial pressures from the gas ratios and many more parameters, |
275 // needs either calc_hauptroutine_data_input() be called beforehand or | |
628 | 276 // gas_take_current() or gas_find_best()/gas_take_best() and gas_set_ratios(). |
604 | 277 static void calc_tissues(void); // Updates the tissues dependent on the partial pressures of N2 and He. |
278 static void calc_CNS(void); // Updates the CNS value dependent on the partial pressure of the O2. | |
279 static void calc_limit(PARAMETER float GF_current); | |
631 | 280 // Calculates ceiling, current supersaturation factor and some more data. |
604 | 281 |
623 | 282 // Functions for TR |
283 #ifdef _rx_functions | |
284 static void calc_TR_functions(void); // Calculates SAC etc. | |
285 #endif | |
286 | |
631 | 287 // Functions for Cave Mode |
288 #ifdef _cave_mode | |
289 static void read_backtrack_data(void); // Gets the data of the next backtracking data set | |
290 #endif | |
291 | |
623 | 292 // Functions dedicated to Deco Calculations |
604 | 293 static void clear_deco_table(void); // Clears the deco stops table, invoked at the start of each calculation cycle. |
631 | 294 static void gas_take_current(void); // Take the actual currently used gas for ascent & deco calculation |
628 | 295 static unsigned char gas_find_best(void); // Searches for the best gas available. |
296 static void gas_take_best(void); // Switches to the best gas that has been found found before by gas_find_best(). | |
604 | 297 static void gas_set_ratios(void); // Sets the gas ratios for use in deco calculation (simulated tissues), |
628 | 298 // needs to be called after each gas change (gas_take_current/_better). |
623 | 299 static void calc_NDL_time_tissue(void); // Calculates the remaining NDL time for a given tissue. |
300 static unsigned char find_next_stop(void); // Finds the next stop when in a deco ascent. | |
631 | 301 static void update_deco_table(PARAMETER unsigned char time_increment); |
604 | 302 // Enters a new stop or extends an existing stop in the deco stops table. |
631 | 303 static void calc_required_volume(void); // Calculates gas volume required for a given depth, time and usage (SAC rate). |
304 static void convert_volume_to_pressure(void); // Converts gas volumes into pressures and sets respective flags. | |
623 | 305 |
306 // Functions for Results Reporting | |
604 | 307 static void publish_deco_table(void); // Copies the internal deco stops table to the export interface. |
623 | 308 static void convert_cur_CNS_for_display(void); // Converts the current CNS value from float to integer. |
604 | 309 static void convert_sim_CNS_for_display(void); // Converts the end-of-dive CNS value from float to integer. |
623 | 310 static void convert_sat_for_display(void); // Converts leading tissue saturation value from float to integer, 1.0 = 100%. |
604 | 311 static void convert_ceiling_for_display(void); // Converts ceiling from float to integer in mbar relative pressure. |
312 | |
313 | |
623 | 314 // internal helper Functions |
315 static void load_tmr5(void); // Loads a hardware timer which is used for preemptive scheduling. | |
316 static void read_tmr5(void); // Reads a hardware timer which is used for preemptive scheduling. | |
317 static void read_CNS_ab_coefficient(void); // Reads the CNS a and b coefficients from a ROM table. | |
318 static void read_CNS_c_coefficient(void); // Reads the CNS c coefficient from a ROM table. | |
319 static void read_Buhlmann_coefficients(void); // Reads the Buhlmann a and b coefficients from a ROM table. | |
604 | 320 static void read_Buhlmann_times(PARAMETER char period); |
321 // Reads pre-computed tissue increment factors from a ROM table. | |
322 static void read_Buhlmann_ht(void); // Reads the half-times from a ROM table. | |
323 static void adopt_Buhlmann_coefficients(void); // Computes average a and b coefficient by the N2/He tissue ratio. | |
324 static void push_tissues_to_vault(void); // Stores the state of the real tissues during simulator runs. | |
325 static void pull_tissues_from_vault(void); // Restores the state of the real tissues after a simulator run. | |
628 | 326 static void calc_N2_equilibrium(void); // Calculate partial pressure of N2 in respired air at surface pressure. |
327 static void get_saturation_factors(void); // Get, safeguard and convert the saturation and desaturation factors. | |
328 static void apply_saturation_factors(void); // Applies saturation and desaturation factors. | |
604 | 329 |
330 | |
331 // ********************************************************************************************************************************* | |
332 // | |
333 // V A R I A B L E S D E F I N I T I O N S | |
334 // | |
335 // ********************************************************************************************************************************* | |
0 | 336 |
337 //---- Bank 5 parameters ----------------------------------------------------- | |
338 #ifndef UNIX | |
339 # pragma udata bank5=0x500 | |
340 #endif | |
341 | |
631 | 342 // Data that go into the deco data vault (4 byte) |
343 | |
344 static float CNS_fraction_real; // || current real CNS (1.00 = 100%) | |
345 | |
346 | |
347 // Environmental and Gas Data (51 byte) | |
560 | 348 |
582 | 349 static float pres_surface; // absolute pressure at the surface |
560 | 350 |
628 | 351 static float float_depth_real; // current real depth in meters, float |
352 static unsigned char char_depth_real; // current real depth in meters, integer | |
631 | 353 static unsigned char char_depth_start; // start value of simulated depth in meters, integer |
628 | 354 static unsigned char char_depth_sim; // current value of simulated depth in meters, integer |
604 | 355 |
356 static float real_pres_respiration; // current real depth in absolute pressure | |
357 static float real_O2_ratio; // real breathed gas oxygen ratio | |
358 static float real_N2_ratio; // real breathed gas nitrogen ratio | |
359 static float real_He_ratio; // real breathed gas helium ratio | |
360 static float real_pSCR_drop; // real ppO2 drop in pSCR loop | |
582 | 361 |
362 static float sim_pres_respiration; // simulated current depth in abs.pressure, used for deco calculations | |
363 static float sim_O2_ratio; // simulated breathed gas oxygen ratio | |
364 static float sim_N2_ratio; // simulated breathed gas nitrogen ratio | |
365 static float sim_He_ratio; // simulated breathed gas helium ratio | |
366 static float sim_pSCR_drop; // simulated ppO2 drop in pSCR loop | |
560 | 367 |
604 | 368 |
631 | 369 // general Deco Parameters (64 byte) |
623 | 370 |
371 static float GF_low; // gradient factor to determine 1st stop | |
372 static float GF_high; // gradient factor to determine surfacing | |
373 | |
631 | 374 static unsigned char GF_low_last; // last GF low, used to detect a GF change |
375 static unsigned char GF_high_last; // last GF high, used to detect a GF change | |
376 | |
377 static unsigned char GF_depth; // GF low reference depth in current calculation cycle | |
378 static unsigned char GF_depth_norm; // GF low reference depth in normal plan | |
379 static unsigned char GF_depth_alt; // GF low reference depth in alternative plan | |
380 | |
381 static float GF_slope; // (GF_high - GF_low) / GF_depth in current calculation cycle | |
382 static float GF_slope_norm; // (GF_high - GF_low) / GF_depth_norm in normal plan | |
383 static float GF_slope_alt; // (GF_high - GF_low) / GF_depth_alt in alternative plan | |
384 | |
623 | 385 static float float_saturation_multiplier; // safety factor for on-gassing rates |
386 static float float_desaturation_multiplier; // safety factor for off-gassing rates | |
387 | |
388 static unsigned char split_N2_He[NUM_COMP]; // used for calculating the desaturation time | |
631 | 389 static unsigned char deco_gas_type[NUM_GAS]; // type and state of the deco gases |
390 static unsigned char peer_tank[NUM_GAS]; // bit flag vector indicating peer tanks holding same gas | |
391 | |
392 | |
393 // real Context: what we are doing now (12 byte) | |
394 | |
623 | 395 static unsigned short IBCD_tissue_vector; // 16 bit vector to memorize all tissues that experience IBCD |
396 | |
397 static float pres_respiration_sac; // used in SAC calculation: current depth in absolute pressure | |
398 static float float_sac; // used in SAC calculation: SAC value in float | |
399 static unsigned short max_sac_rate; // used in SAC calculation: threshold for SAC rate attention | |
400 | |
401 | |
402 // simulated Context: used to calculate Ascent (11 byte) | |
403 | |
404 static float CNS_fraction_sim; // CNS after predicted ascent, 0.01 = 1%, as float | |
405 static unsigned short int_sim_CNS_fraction; // CNS after predicted ascent, 1 = 1%, as integer | |
406 static unsigned char NDL_tissue_start_norm; // tissue to start with when calculating the normal NDL time | |
407 static unsigned char NDL_tissue_start_alt; // tissue to start with when calculating the alternative NDL time | |
408 static unsigned char NDL_tissue_start; // tissue to start with in current cycle | |
409 static unsigned char NDL_tissue_lead; // tissue with the shortest NDL time found in current cycle | |
410 static unsigned char NDL_tissue; // tissue for which the NDL is calculated right now | |
411 | |
628 | 412 |
623 | 413 // Result Values from Calculation Functions (9 byte) |
414 | |
415 static float ceiling; // minimum tolerated relative pressure (i.e. without surface pressure) | |
416 static float lead_supersat; // supersaturation of the leading tissue, 1.0 = 100% | |
631 | 417 static unsigned char lead_tissue; // number of the leading tissue (0-15) |
623 | 418 |
419 | |
420 // Transfer Variables between calc_desaturation_time() and calc_desaturation_time_helper() (18 byte) | |
421 | |
422 static float desat_factor; // used to cache a pre-computed factor | |
631 | 423 static float var_ht; // half-time factor for the compartment |
424 static float pres_target; // target pressure for the compartment | |
425 static float pres_actual; // current pressure of the compartment | |
623 | 426 static unsigned short int_time; // time it takes for the compartment to reach the target pressure |
427 | |
428 | |
631 | 429 // Gas in Use and Gas Needs (67 byte) |
430 | |
431 static unsigned char start_gas_num; // number of the gas/dil to start with | |
628 | 432 |
433 static unsigned char sim_gas_last_num; // number of the last used gas | |
623 | 434 static unsigned char sim_gas_current_num; // number of the currently used gas |
435 static unsigned char sim_gas_current_depth; // change depth of the currently used gas | |
436 | |
631 | 437 static unsigned char sim_gas_best_num; // number of the best gas available |
438 static unsigned char sim_gas_best_depth; // change depth of the best gas available | |
628 | 439 |
623 | 440 static unsigned char gas_needs_gas_index; // index to the gas and tank data arrays |
631 | 441 static float gas_volume_need[NUM_GAS]; // gas volumes required for ascent / cave return in liters |
442 static float gas_volume_avail[NUM_GAS]; // gas volumes available for ascent / cave return in liters | |
443 static float gas_volume_atten[NUM_GAS]; // attention threshold for gas volumes available | |
444 | |
445 | |
446 // Transfer Variables for calc_required_volume() (7 byte) | |
628 | 447 |
448 static unsigned char gas_needs_depth; // depth of the stop or half-way point | |
631 | 449 static unsigned char gas_needs_time; // duration of the stop, ascent or travel phase |
628 | 450 static unsigned char gas_needs_usage_rate; // gas usage in l/min |
631 | 451 static float gas_needs_volume_due; // computed amount of required gas volume |
452 | |
453 | |
454 // 243 byte used, 13 byte left in this bank (4 bytes per float, 2 bytes per short, 1 byte per char) | |
455 | |
456 | |
457 //---- Bank 6 parameters ----------------------------------------------------- | |
458 #ifndef UNIX | |
459 # pragma udata bank6=0x600 | |
460 #endif | |
461 | |
462 // Timer5 Interface (3 byte) - Attention: keep order and keep at beginning of bank 6, i.e. at address 0x600 ! | |
463 | |
464 static volatile unsigned short tmr5_value; // | timer 5 value buffer MUST be at address 0x600 | |
465 static volatile unsigned char tmr5_overflow; // | timer 5 overflow flag MUST be at address 0x602 | |
466 | |
467 | |
468 // Modes, Sequencing and Indexing (14 byte) | |
469 | |
470 static unsigned char main_status; // shadow register for char_O_main_status | |
471 static unsigned char deco_status; // shadow register for char_O_deco_status | |
472 static unsigned char deco_info; // shadow register for char_O_deco_info | |
473 static unsigned char deco_warnings; // shadow register for char_O_deco_warnings | |
474 static unsigned char next_planning_phase; // next calculation phase to be executed | |
475 static unsigned char tissue_increment; // selector for real/simulated tissues and time increment | |
476 static unsigned char sequence_timer; // timer to sequence deco engine tasks | |
477 static unsigned char ci; // index to the Buhlmann tables (compartment index) | |
478 static unsigned char cns_i; // index to the CNS tables (ppO2 range index) | |
479 static unsigned char i; // general purpose loop counter and index | |
480 static unsigned char j; // general purpose loop counter and index | |
481 static unsigned char stop_index; // current stop table position | |
482 static unsigned char chained_stops; // counter for chained stop entries | |
483 static unsigned char backtrack_index; // index into the depth backtracking array char_I_backtrack_storage | |
484 static unsigned char backtrack_target_depth; // current backtracking target depth | |
485 static unsigned char backtrack_step_counter; // counter for number of 1/10 minute steps done | |
486 | |
487 | |
488 // Result Values from Calculation Functions (28 byte) | |
489 | |
490 static float ppO2_O2; // ppO2 calculated for breathing pure oxygen in OC mode | |
491 static float ppO2_OC; // ppO2 calculated for breathing current gas in OC mode | |
492 static float ppO2_pSCR; // ppO2 calculated for breathing current gas in pSCR mode | |
493 | |
494 static float ppO2; // partial pressure of breathed oxygen | |
495 static float ppN2; // partial pressure of breathed nitrogen | |
496 static float ppHe; // partial pressure of breathed helium | |
497 | |
498 static unsigned char char_ppO2; // partial pressure of breathed oxygen, 100 = 1.00 bar | |
499 static unsigned char NDL_time; // time in full minutes until reaching no-deco limit (NDL) | |
500 static unsigned short TTS_time; // time in 1/10 minutes until finishing ascent / cave return | |
501 static unsigned short TST_time; // time in full minutes of all stops in ascent / cave return | |
502 | |
503 | |
504 // Buhlmann Model Parameters (40 byte) | |
505 | |
506 static float var_N2_a; // Buhlmann a for current N2 tissue | |
507 static float var_N2_b; // Buhlmann b for current N2 tissue | |
508 static float var_He_a; // Buhlmann a for current He tissue | |
509 static float var_He_b; // Buhlmann b for current He tissue | |
510 static float var_a; // Buhlmann a adopted to current N2/He ratio | |
511 static float var_b; // Buhlmann b adopted to current N2/He ratio | |
512 static float var_N2_e; // exposition for current N2 tissue | |
513 static float var_He_e; // exposition for current He tissue | |
514 static float var_N2_ht; // half-time for current N2 tissue | |
515 static float var_He_ht; // half-time for current He tissue | |
516 | |
517 | |
518 // CNS Coefficients (10 byte) | |
519 | |
520 static float var_cns_gain; // two coefficients approximation, gain | |
521 static float var_cns_offset; // two coefficients approximation, offset | |
522 static unsigned short var_cns_value; // one coefficient approximation, value | |
623 | 523 |
524 | |
525 // Auxiliary Variables for Data Buffering (28 byte) | |
526 | |
527 static float N2_equilibrium; // used for N2 tissue graphics scaling | |
528 static float temp_tissue; // auxiliary variable to buffer tissue pressures | |
529 static float float_pSCR_factor; // pre-computed factor for pSCR ppO2 drop calculation | |
530 static float calc_pres_tissue_N2; // auxiliary variable to buffer tissue N2 pressure | |
531 static float calc_pres_tissue_He; // auxiliary variable to buffer tissue He pressure | |
532 static float pres_tissue; // auxiliary variable to buffer total tissue pressure | |
533 static float old_pres_respiration; // auxiliary variable to buffer sim_pres_respiration | |
534 | |
535 | |
631 | 536 // Transfer Values for convert_float_to_int() (6 byte) |
628 | 537 |
538 static float float_value; // input value, float | |
539 static unsigned short int_value; // output value, 16 bit | |
540 | |
541 | |
542 // Performance Profiling (4 byte) | |
543 | |
544 static unsigned short profiling_runtime; // performance measurement: runtime of current invocation | |
545 static unsigned char profiling_runs; // performance measurement: invocations per deco calculation cycle | |
546 static unsigned char profiling_phase; // performance measurement: current calculation phase | |
547 | |
548 | |
623 | 549 // 7 byte occupied by compiler-placed vars |
550 | |
551 | |
631 | 552 // 139 byte used, 117 byte left in this bank (4 bytes per float, 2 bytes per short, 1 byte per char) |
623 | 553 |
554 | |
555 | |
556 //---- Bank 12 parameters ----------------------------------------------------- | |
557 #ifndef UNIX | |
558 # pragma udata bank12=0xc00 | |
559 #endif | |
560 | |
561 // stops table (96 byte) | |
562 | |
563 static unsigned char internal_deco_depth[NUM_STOPS]; // depths of the stops in meters | |
564 static unsigned char internal_deco_time[NUM_STOPS]; // durations of the stops in minutes | |
565 static unsigned char internal_deco_gas[NUM_STOPS]; // gases used on the stops (0 / 1-5) | |
566 | |
567 | |
631 | 568 // Vault to back-up & restore Tissue related Data (134 byte) |
569 | |
570 static float vault_pres_tissue_N2[NUM_COMP]; // stores the nitrogen tissue pressures | |
571 static float vault_pres_tissue_He[NUM_COMP]; // stores the helium tissue pressures | |
572 static float vault_CNS_fraction_real; // stores CNS percentage (1.0 = 100%) | |
573 static unsigned char vault_deco_warnings; // stores warnings status | |
574 static unsigned char vault_deco_info; // stores info status | |
575 | |
576 // 230 byte used, 26 byte left in this bank (4 bytes per float, 2 bytes per short, 1 byte per char) | |
560 | 577 |
0 | 578 |
579 //---- Bank 7 parameters ----------------------------------------------------- | |
580 #ifndef UNIX | |
581 # pragma udata bank7=0x700 | |
582 #endif | |
560 | 583 |
623 | 584 // Keep order and position of the variables in bank 7 as they are backed-up to & restored from EEPROM |
585 | |
586 static float real_pres_tissue_N2[NUM_COMP]; // 16 floats = 64 bytes | |
587 static float real_pres_tissue_He[NUM_COMP]; // 16 floats = 64 bytes | |
588 | |
589 static float sim_pres_tissue_N2[NUM_COMP]; // 16 floats = 64 bytes | |
590 static float sim_pres_tissue_He[NUM_COMP]; // 16 floats = 64 bytes | |
591 | |
592 // 256 byte used, bank is full | |
582 | 593 |
0 | 594 |
595 //---- Bank 8 parameters ----------------------------------------------------- | |
596 #ifndef UNIX | |
597 # pragma udata overlay bank8=0x800 | |
560 | 598 |
604 | 599 static char md_pi_subst[256]; // overlay C-code data stack here, too |
560 | 600 |
601 # define C_STACK md_pi_subst | |
0 | 602 #endif |
603 | |
582 | 604 |
0 | 605 // Back to bank6 for further tmp data |
582 | 606 // Do not delete this assignment, it is needed by the compiler/linker. |
0 | 607 #ifndef UNIX |
608 # pragma udata bank6 | |
609 #endif | |
610 | |
582 | 611 |
604 | 612 // ********************************************************************************************************************************* |
613 // | |
614 // L O O K - U P T A B L E S | |
615 // | |
616 // ********************************************************************************************************************************* | |
582 | 617 |
0 | 618 #ifndef UNIX |
631 | 619 # pragma romdata Buhlmann_ht = 0x1DC00 // needs to be in the UPPER bank |
620 #endif | |
621 | |
622 rom const float Buhlmann_ht[2*16] = { | |
623 // Compartment half-times, in minutes | |
624 //--- N2 ---- He ---------------------- | |
625 4.0, 1.51, | |
626 8.0, 3.02, | |
627 12.5, 4.72, | |
628 18.5, 6.99, | |
629 27.0, 10.21, | |
630 38.3, 14.48, | |
631 54.3, 20.53, | |
632 77.0, 29.11, | |
633 109.0, 41.20, | |
634 146.0, 55.19, | |
635 187.0, 70.69, | |
636 239.0, 90.34, | |
637 305.0, 115.29, | |
638 390.0, 147.42, | |
639 498.0, 188.24, | |
640 635.0, 240.03 | |
641 }; | |
642 | |
643 | |
644 #ifndef UNIX | |
623 | 645 # pragma romdata CNS_tables = 0x1DC80 // needs to be in the UPPER bank |
646 #endif | |
647 | |
631 | 648 rom const float CNS_2_approx[2*11] = { |
649 // 2 coefficient approximation for ppO2 = 51 ... 160 cbar | |
650 // CNS increment per 2 sec = 1 / (gain*ppO2 + offset) with ppO2 in [cbar] | |
651 // gain offset for ppO2 cbar range | |
623 | 652 -533.07, 54000, // 51 - 60 (index 0) |
653 -444.22, 48600, // 61 - 70 (index 1) | |
654 -355.38, 42300, // 71 - 80 (index 2) | |
655 -266.53, 35100, // 81 - 90 (index 3) | |
656 -177.69, 27000, // 91 - 100 (index 4) | |
657 -177.69, 27000, // 101 - 110 (index 5) | |
658 -88.84, 17100, // 111 - 120 (index 6) | |
659 -88.84, 17100, // 121 - 130 (index 7) | |
660 -88.84, 17100, // 131 - 140 (index 8) | |
661 -88.84, 17100, // 141 - 150 (index 9) | |
662 -222.11, 37350 // 151 - 160 (index 10) | |
663 }; | |
664 | |
631 | 665 rom const unsigned short CNS_1_approx[1*18] = { |
666 // 1 coefficient approximation for ppO2 = 161 ... 250 cbar | |
667 // CNS increment per 2 sec = c / 100000.0 | |
668 // value in [1/100000] for ppO2 cbar range | |
623 | 669 75, // 161 - 165 (index 0) |
670 102, // 166 - 170 (index 1) | |
671 136, // 171 - 175 (index 2) | |
672 180, // 176 - 180 (index 3) | |
673 237, // 181 - 185 (index 4) | |
674 310, // 186 - 190 (index 5) | |
675 401, // 191 - 195 (index 6) | |
676 517, // 196 - 200 (index 7) | |
677 760, // 201 - 205 (index 8) | |
678 1100, // 206 - 210 (index 9) | |
679 1500, // 211 - 215 (index 10) | |
680 2090, // 216 - 220 (index 11) | |
681 2900, // 221 - 225 (index 12) | |
682 3900, // 226 - 230 (index 13) | |
683 4820, // 231 - 235 (index 14) | |
684 4820, // 236 - 240 (index 15) | |
685 4820, // 241 - 245 (index 16) | |
628 | 686 4820 // 246 - 250 (index 17) |
623 | 687 }; |
688 | |
689 | |
690 #ifndef UNIX | |
631 | 691 # pragma romdata Buhlmann_ab = 0x1DD00 // needs to be in the UPPER bank |
0 | 692 #endif |
693 | |
560 | 694 rom const float Buhlmann_ab[4*16] = { |
631 | 695 // Compartment a and b factors |
521
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
696 // Data ZH-L16C, from Bühlmann Tauchmedizin 2002, option 1a (4mn) |
631 | 697 // a for N2 b for N2 a for He b for He |
521
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
698 1.2599, 0.5050, 1.7424, 0.4245, |
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
699 1.0000, 0.6514, 1.3830, 0.5747, |
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
700 0.8618, 0.7222, 1.1919, 0.6527, |
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
701 0.7562, 0.7825, 1.0458, 0.7223, |
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
702 0.6200, 0.8126, 0.9220, 0.7582, |
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
703 0.5043, 0.8434, 0.8205, 0.7957, |
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
704 0.4410, 0.8693, 0.7305, 0.8279, |
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
705 0.4000, 0.8910, 0.6502, 0.8553, |
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
706 0.3750, 0.9092, 0.5950, 0.8757, |
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
707 0.3500, 0.9222, 0.5545, 0.8903, |
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
708 0.3295, 0.9319, 0.5333, 0.8997, |
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
709 0.3065, 0.9403, 0.5189, 0.9073, |
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
710 0.2835, 0.9477, 0.5181, 0.9122, |
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
711 0.2610, 0.9544, 0.5176, 0.9171, |
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
712 0.2480, 0.9602, 0.5172, 0.9217, |
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
713 0.2327, 0.9653, 0.5119, 0.9267 |
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
714 }; |
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
715 |
631 | 716 |
717 #ifndef UNIX | |
718 # pragma romdata e_tables = 0x1DE00 // needs to be in the UPPER bank | |
719 #endif | |
720 | |
721 rom const float e2sec[2*16] = { | |
722 // Integration constants for 2 seconds, | |
723 // result of 1 - 2^(-(2sec/60sec / HT)) | |
521
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
724 //---- N2 ------------- He ------------ |
623 | 725 5.75958E-03, 1.51848E-02, |
521
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
726 2.88395E-03, 7.62144E-03, |
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
727 1.84669E-03, 4.88315E-03, |
582 | 728 1.24813E-03, 3.29997E-03, |
729 8.55371E-04, 2.26041E-03, | |
730 6.03079E-04, 1.59437E-03, | |
731 4.25414E-04, 1.12479E-03, | |
732 3.00019E-04, 7.93395E-04, | |
733 2.11949E-04, 5.60641E-04, | |
734 1.58240E-04, 4.18555E-04, | |
735 1.23548E-04, 3.26795E-04, | |
736 9.66686E-05, 2.55722E-04, | |
737 7.57509E-05, 2.00387E-04, | |
738 5.92416E-05, 1.56716E-04, | |
739 4.63943E-05, 1.22734E-04, | |
740 3.63850E-05, 9.62538E-05 | |
521
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
741 //------------------------------------- |
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
742 }; |
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
743 |
631 | 744 rom const float e6sec[2*16] = { |
745 // Integration constants for 6 seconds, | |
746 // result of 1 - 2^(-(6sec/60sec / HT)) | |
747 //---- N2 ------------- He ------------ | |
748 1.71794E-02, 4.48661E-02, | |
749 8.62691E-03, 2.26905E-02, | |
750 5.52983E-03, 1.45780E-02, | |
751 3.73973E-03, 9.86726E-03, | |
752 2.56392E-03, 6.76591E-03, | |
753 1.80815E-03, 4.77549E-03, | |
754 1.27570E-03, 3.37057E-03, | |
755 8.99786E-04, 2.37830E-03, | |
756 6.35713E-04, 1.68098E-03, | |
757 4.74646E-04, 1.25514E-03, | |
758 3.70598E-04, 9.80064E-04, | |
759 2.89978E-04, 7.66971E-04, | |
760 2.27236E-04, 6.01040E-04, | |
761 1.77714E-04, 4.70075E-04, | |
762 1.39176E-04, 3.68157E-04, | |
763 1.09151E-04, 2.88734E-04 | |
764 //------------------------------------- | |
765 }; | |
766 | |
521
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
767 rom const float e1min[2*16] = { |
631 | 768 // Integration constants for 1 minute, |
769 // result of 1 - 2^(-(1min / HT)) | |
521
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
770 //----- N2 --------- e 1min He -------- |
582 | 771 1.59104E-01, 3.68109E-01, |
772 8.29960E-02, 2.05084E-01, | |
773 5.39424E-02, 1.36579E-01, | |
774 3.67742E-02, 9.44046E-02, | |
775 2.53454E-02, 6.56359E-02, | |
776 1.79351E-02, 4.67416E-02, | |
777 1.26840E-02, 3.31991E-02, | |
778 8.96152E-03, 2.35301E-02, | |
779 6.33897E-03, 1.66832E-02, | |
780 4.73633E-03, 1.24808E-02, | |
781 3.69981E-03, 9.75753E-03, | |
782 2.89600E-03, 7.64329E-03, | |
783 2.27003E-03, 5.99417E-03, | |
784 1.77572E-03, 4.69082E-03, | |
785 1.39089E-03, 3.67548E-03, | |
786 1.09097E-03, 2.88359E-03 | |
521
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
787 //------------------------------------- |
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
788 }; |
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
789 |
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
790 rom const float e10min[2*16] = { |
631 | 791 // Integration constants for 10 minutes, |
792 // result of 1 - 2^(-(10min / HT)) | |
521
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
793 //---- N2 -------------- He ----------- |
582 | 794 8.23223E-01, 9.89851E-01, |
795 5.79552E-01, 8.99258E-01, | |
796 4.25651E-01, 7.69737E-01, | |
797 3.12487E-01, 6.29027E-01, | |
798 2.26416E-01, 4.92821E-01, | |
799 1.65547E-01, 3.80407E-01, | |
800 1.19840E-01, 2.86538E-01, | |
801 8.60863E-02, 2.11886E-01, | |
802 6.16117E-02, 1.54849E-01, | |
803 4.63665E-02, 1.18026E-01, | |
804 3.63881E-02, 9.34005E-02, | |
805 2.85855E-02, 7.38569E-02, | |
806 2.24698E-02, 5.83504E-02, | |
807 1.76160E-02, 4.59303E-02, | |
808 1.38222E-02, 3.61528E-02, | |
809 1.08563E-02, 2.84646E-02 | |
521
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
810 //------------------------------------- |
06e9370c6d75
CHANGE: Apply safety margin parameters to both models (GF and non-GF)
heinrichsweikamp
parents:
519
diff
changeset
|
811 }; |
0 | 812 |
604 | 813 |
814 // ********************************************************************************************************************************* | |
0 | 815 // |
604 | 816 // H E L P E R F U N C T I O N S |
817 // | |
818 // ********************************************************************************************************************************* | |
819 | |
820 | |
628 | 821 // p2deco code moved from 0x0D000 to 0x0C000 in v.108 |
634 | 822 // moved from 0x0C000 to 0x0B000 in v3.09 |
0 | 823 #ifndef UNIX |
634 | 824 # pragma code p2_deco = 0x0B000 |
0 | 825 #endif |
826 | |
827 | |
828 ////////////////////////////////////////////////////////////////////////////// | |
829 // Bump to blue-screen when an assert is wrong | |
623 | 830 #ifdef _DEBUG |
0 | 831 void assert_failed(PARAMETER short int line) |
832 { | |
833 } | |
834 #endif | |
835 | |
604 | 836 |
0 | 837 ////////////////////////////////////////////////////////////////////////////// |
628 | 838 // When calling C code from ASM context, the C data stack pointer need to be |
839 // reset. The C stack is located in bank 8. | |
0 | 840 |
841 #ifdef CROSS_COMPILE | |
584 | 842 # define RESET_C_STACK |
0 | 843 #else |
623 | 844 # ifdef _DEBUG |
584 | 845 # define RESET_C_STACK fillDataStack(); |
846 void fillDataStack(void) | |
847 { | |
848 _asm | |
604 | 849 LFSR 1,C_STACK |
850 MOVLW 0xCC | |
851 loop: MOVWF POSTINC1,0 | |
852 TSTFSZ FSR1L,0 | |
853 BRA loop | |
854 | |
855 LFSR 1,C_STACK | |
856 LFSR 2,C_STACK | |
584 | 857 _endasm |
858 } | |
859 # else | |
860 # define RESET_C_STACK \ | |
861 _asm \ | |
604 | 862 LFSR 1,C_STACK \ |
863 LFSR 2,C_STACK \ | |
584 | 864 _endasm |
865 # endif | |
0 | 866 #endif |
867 | |
604 | 868 |
0 | 869 ////////////////////////////////////////////////////////////////////////////// |
623 | 870 // Reset timer 5 |
871 // | |
872 // Note: TMR5 is configured in 16 bit mode: a value written to TMR5H is buffered | |
873 // and will be written to TMR5 together with a successive write to TMR5L. | |
874 // As we don't know in which bank the code will be executed, we use either | |
875 // the bank-save "movff" command, or address mapping via access bank (",0"). | |
876 // | |
877 static void load_tmr5(void) | |
0 | 878 { |
879 #ifndef CROSS_COMPILE | |
584 | 880 _asm |
623 | 881 movff 0x601,0xF7D // bank-safe load TMR5H from C variable tmr5_value first |
882 movff 0x600,0xF7C // bank-safe load TMR5L from c variable tmr5_value thereafter | |
883 bcf 0xFBA,1,0 // clear timer 5 overrun flag (0xFBA = PIR5, bit 1 = TMR5IF) | |
884 _endasm | |
0 | 885 #else |
623 | 886 return; |
887 #endif | |
888 } | |
889 | |
890 | |
891 ////////////////////////////////////////////////////////////////////////////// | |
892 // Read timer 5 | |
893 // | |
894 // Note: TMR5 reads in multiples of 1/32 ms, 30.51757813 us/bit to be precise. | |
895 // TMR5 is configured in 16 bit mode: on reading of TMR5L the contents of | |
896 // TMR5H is latched and can be read afterwards without potential rollover. | |
897 // As we don't know in which bank the code will be executed, we use either | |
898 // the bank-save "movff" command, or address mapping via access bank (",0"). | |
899 // | |
900 static void read_tmr5(void) | |
901 { | |
902 #ifndef CROSS_COMPILE | |
903 _asm | |
904 movff 0xF7C,0x600 // copy TMR5L to C variable tmr5_value, low byte first | |
905 movff 0xF7D,0x601 // copy TMR5H to C variable tmr5_value, high byte thereafter | |
906 clrf WREG,0 // clear WREG to 0x00 = no overrun by default | |
907 btfsc 0xFBA,1,0 // did timer 5 overrun? (0xFBA = PIR5, bit 1 = TMR5IF) | |
908 setf WREG,0 // YES - set WREG to 0xff = overrun detected | |
909 movff WREG,0x602 // copy WREG to C variable tmr5_overflow | |
910 _endasm | |
911 #else | |
912 return; | |
0 | 913 #endif |
914 } | |
915 | |
604 | 916 |
0 | 917 ////////////////////////////////////////////////////////////////////////////// |
631 | 918 // Read CNS coefficients gain and offset |
623 | 919 // |
920 static void read_CNS_ab_coefficient(void) | |
921 { | |
922 #ifndef CROSS_COMPILE | |
923 // Note: We don't use far ROM pointer, because handling | |
924 // 24 bit is to complex, hence we have to set the | |
925 // UPPER page ourself... | |
926 // -> set to zero if tables are moved to lower pages! | |
927 _asm | |
928 movlw 1 | |
929 movwf TBLPTRU,0 | |
930 _endasm | |
931 #endif | |
932 | |
933 { | |
631 | 934 overlay rom const float* ptr = &CNS_2_approx[2*cns_i]; |
935 var_cns_gain = *ptr++; | |
936 var_cns_offset = *ptr++; | |
623 | 937 } |
938 } | |
939 | |
940 | |
941 ////////////////////////////////////////////////////////////////////////////// | |
942 // Read CNS coefficient c | |
943 // | |
944 static void read_CNS_c_coefficient(void) | |
945 { | |
946 #ifndef CROSS_COMPILE | |
947 // Note: We don't use far ROM pointer, because handling | |
948 // 24 bit is to complex, hence we have to set the | |
949 // UPPER page ourself... | |
950 // -> set to zero if tables are moved to lower pages! | |
951 _asm | |
952 movlw 1 | |
953 movwf TBLPTRU,0 | |
954 _endasm | |
955 #endif | |
956 | |
957 { | |
631 | 958 overlay rom const unsigned short* ptr = &CNS_1_approx[cns_i]; |
959 var_cns_value = *ptr++; | |
623 | 960 } |
961 } | |
962 | |
963 ////////////////////////////////////////////////////////////////////////////// | |
964 // Read Buhlmann coefficients a and b for compartment ci | |
0 | 965 // |
560 | 966 static void read_Buhlmann_coefficients(void) |
0 | 967 { |
968 #ifndef CROSS_COMPILE | |
604 | 969 // Note: We don't use far ROM pointer, because handling |
970 // 24 bit is too complex, hence we have to set the | |
971 // UPPER page ourself... | |
628 | 972 // -> set to zero if tables are moved to lower pages! |
584 | 973 _asm |
604 | 974 movlw 1 |
975 movwf TBLPTRU,0 | |
584 | 976 _endasm |
0 | 977 #endif |
978 | |
584 | 979 assert( ci < NUM_COMP ); |
980 | |
604 | 981 // use an interleaved array (AoS) to access coefficients with a single addressing |
584 | 982 { |
983 overlay rom const float* ptr = &Buhlmann_ab[4*ci]; | |
984 var_N2_a = *ptr++; | |
985 var_N2_b = *ptr++; | |
986 var_He_a = *ptr++; | |
987 var_He_b = *ptr++; | |
988 } | |
0 | 989 } |
990 | |
604 | 991 |
0 | 992 ////////////////////////////////////////////////////////////////////////////// |
623 | 993 // Read Buhlmann increments for compartment ci |
604 | 994 // If period == 0 : 2 sec interval |
995 // 1 : 1 min interval | |
996 // 2 : 10 min interval | |
560 | 997 static void read_Buhlmann_times(PARAMETER char period) |
0 | 998 { |
999 #ifndef CROSS_COMPILE | |
604 | 1000 // Note: We don't use far ROM pointer, because handling |
1001 // 24 bit is to complex, hence we have to set the | |
631 | 1002 // UPPER page by hand... |
604 | 1003 // -> set to zero if tables are moved to lower pages! |
584 | 1004 _asm |
604 | 1005 movlw 1 |
1006 movwf TBLPTRU,0 | |
584 | 1007 _endasm |
0 | 1008 #endif |
1009 | |
584 | 1010 assert( ci < NUM_COMP ); |
1011 | |
623 | 1012 // Integration Intervals |
584 | 1013 switch(period) |
1014 { | |
631 | 1015 case 0: //---- 2 or 6 seconds -------------------------------------------- |
584 | 1016 { |
631 | 1017 // check which tissues are selected |
1018 if(tissue_increment & TISSUE_SELECTOR) | |
1019 { | |
1020 // real tissues - 2 seconds | |
1021 overlay rom const float* ptr = &e2sec[2*ci]; | |
1022 var_N2_e = *ptr++; | |
1023 var_He_e = *ptr++; | |
1024 } | |
1025 else | |
1026 { | |
1027 // simulated tissues - 6 seconds | |
1028 overlay rom const float* ptr = &e6sec[2*ci]; | |
1029 var_N2_e = *ptr++; | |
1030 var_He_e = *ptr++; | |
1031 } | |
584 | 1032 } |
1033 break; | |
1034 | |
631 | 1035 case 1: //---- 1 minutes ------------------------------------------------- |
584 | 1036 { |
1037 overlay rom const float* ptr = &e1min[2*ci]; | |
1038 var_N2_e = *ptr++; | |
1039 var_He_e = *ptr++; | |
1040 } | |
1041 break; | |
1042 | |
631 | 1043 case 2: //---- 10 minutes ------------------------------------------------ |
584 | 1044 { |
1045 overlay rom const float* ptr = &e10min[2*ci]; | |
1046 var_N2_e = *ptr++; | |
1047 var_He_e = *ptr++; | |
1048 } | |
623 | 1049 break; |
584 | 1050 |
1051 default: | |
623 | 1052 assert(0); // code execution shall never pass along here! |
584 | 1053 } |
0 | 1054 } |
1055 | |
604 | 1056 |
0 | 1057 ////////////////////////////////////////////////////////////////////////////// |
623 | 1058 // Read Buhlmann half-times for compartment ci |
0 | 1059 // |
560 | 1060 static void read_Buhlmann_ht(void) |
0 | 1061 { |
1062 | |
1063 #ifndef CROSS_COMPILE | |
604 | 1064 // Note: We don't use far ROM pointer, because handling |
1065 // 24 bit is to complex, hence we have to set the | |
1066 // UPPER page ourself... | |
1067 // -> Set to zero if tables are moved to lower pages! | |
584 | 1068 _asm |
604 | 1069 movlw 1 |
1070 movwf TBLPTRU,0 | |
584 | 1071 _endasm |
0 | 1072 #endif |
1073 | |
584 | 1074 assert( ci < NUM_COMP ); |
1075 { | |
1076 overlay rom const float* ptr = &Buhlmann_ht[2*ci]; | |
1077 var_N2_ht = *ptr++; | |
1078 var_He_ht = *ptr++; | |
1079 } | |
1080 | |
604 | 1081 assert( 4.0 <= var_N2_ht && var_N2_ht <= 635.0 ); |
584 | 1082 assert( 1.5099 <= var_He_ht && var_He_ht <= 240.03 ); |
0 | 1083 } |
1084 | |
604 | 1085 |
0 | 1086 ////////////////////////////////////////////////////////////////////////////// |
623 | 1087 // Calculate adopted Buhlmann coefficients |
1088 // | |
1089 // Input: var_N2_a, var_N2_b coefficients for N2 | |
1090 // var_He_a, var_He_b coefficients for He | |
1091 // calc_pres_tissue_N2 partial pressure of N2 in tissue | |
1092 // calc_pres_tissue_He partial pressure of He in tissue | |
1093 // pres_tissue total pressure in tissue | |
1094 // | |
1095 // Output: var_a, var_b coefficients adopted by N2/He ratio | |
604 | 1096 // |
1097 static void adopt_Buhlmann_coefficients(void) | |
1098 { | |
1099 // adopt a and b coefficients to current N2/He ratio inside the tissue | |
623 | 1100 |
1101 #ifdef _helium | |
1102 | |
1103 var_a = (var_N2_a * calc_pres_tissue_N2 + var_He_a * calc_pres_tissue_He) / pres_tissue; | |
1104 var_b = (var_N2_b * calc_pres_tissue_N2 + var_He_b * calc_pres_tissue_He) / pres_tissue; | |
1105 | |
1106 #else | |
1107 | |
1108 var_a = var_N2_a; | |
1109 var_b = var_N2_b; | |
1110 | |
1111 #endif | |
1112 | |
1113 } | |
1114 | |
1115 | |
1116 ////////////////////////////////////////////////////////////////////////////// | |
1117 // Calculate partial pressure of N2 in respired air at surface pressure | |
1118 // | |
1119 // Input: pres_surface surface pressure | |
1120 // | |
1121 // Output: N2_equilibrium partial pressure of N2 in surface air | |
1122 // | |
1123 static void calc_N2_equilibrium(void) | |
1124 { | |
1125 N2_equilibrium = 0.7902 * (pres_surface - ppWater); | |
1126 } | |
1127 | |
1128 | |
1129 ////////////////////////////////////////////////////////////////////////////// | |
1130 // Get, safeguard and convert the saturation and desaturation factors | |
1131 // | |
1132 // Input: char_I_saturation_multiplier saturation factor (integer) | |
1133 // char_I_desaturation_multiplier desaturation factor (integer) | |
1134 // | |
1135 // Output: float_saturation_multiplier saturation factor (float) | |
1136 // float_desaturation_multiplier desaturation factor (float) | |
1137 // | |
1138 static void get_saturation_factors(void) | |
1139 { | |
1140 // safeguard input parameters that are constant during the course of the dive | |
1141 if( char_I_saturation_multiplier < 100 ) char_I_saturation_multiplier = 100; | |
1142 if( char_I_saturation_multiplier > 140 ) char_I_saturation_multiplier = 140; | |
1143 | |
1144 if( char_I_desaturation_multiplier < 60 ) char_I_desaturation_multiplier = 60; | |
1145 if( char_I_desaturation_multiplier > 100 ) char_I_desaturation_multiplier = 100; | |
1146 | |
1147 // convert input parameters to float numbers | |
1148 float_saturation_multiplier = 0.01 * char_I_saturation_multiplier; | |
1149 float_desaturation_multiplier = 0.01 * char_I_desaturation_multiplier; | |
1150 } | |
1151 | |
1152 | |
1153 ////////////////////////////////////////////////////////////////////////////// | |
1154 // apply_saturation_factors | |
1155 // | |
1156 // Apply safety factors for both ZH-L16 models. | |
1157 // | |
1158 // Modified: temp_tissue safeguarded tissue increment/decrement | |
1159 // | |
1160 static void apply_saturation_factors(void) | |
1161 { | |
1162 assert( 0.0 < float_desaturation_multiplier && float_desaturation_multiplier <= 1.0 ); | |
1163 assert( 1.0 <= float_saturation_multiplier && float_saturation_multiplier <= 2.0 ); | |
1164 | |
1165 if ( temp_tissue < 0.0 ) temp_tissue *= float_desaturation_multiplier; | |
1166 else temp_tissue *= float_saturation_multiplier; | |
1167 } | |
1168 | |
1169 | |
1170 ////////////////////////////////////////////////////////////////////////////// | |
1171 // convert_float_to_int | |
1172 // | |
1173 // Converts a float within range 0.0 - 9.99 into 16 bit integer scaled in 1/100. | |
1174 // | |
1175 static void convert_float_to_int(void) | |
1176 { | |
1177 if ( float_value < 0.005 ) int_value = 0; | |
1178 else if ( float_value >= 9.985 ) int_value = 999; | |
1179 else int_value = (unsigned short)(100 * float_value + 0.5); | |
1180 } | |
1181 | |
1182 | |
604 | 1183 |
1184 // ********************************************************************************************************************************* | |
1185 // | |
1186 // J U M P I N F U N C T I O N S | |
1187 // | |
1188 // ********************************************************************************************************************************* | |
1189 | |
582 | 1190 |
1191 ////////////////////////////////////////////////////////////////////////////// | |
1192 // deco_calc_hauptroutine | |
1193 // | |
1194 // called from: divemode.asm | |
1195 // | |
628 | 1196 // Called two times per second during diving, updates the |
1197 // tissues every second (i.e. on every second invocation). | |
582 | 1198 // |
628 | 1199 // On each computation cycle: |
582 | 1200 // - Updates deco table (char_O_deco_time/depth) with new values, |
1201 // - updates ascent time, and | |
628 | 1202 // - sets status to zero (so we can check a cycle has finished). |
582 | 1203 // |
1204 void deco_calc_hauptroutine(void) | |
1205 { | |
1206 RESET_C_STACK | |
1207 calc_hauptroutine(); | |
1208 } | |
1209 | |
623 | 1210 |
1211 ////////////////////////////////////////////////////////////////////////////// | |
1212 // deco_init_output_vars | |
1213 // | |
1214 // called from divemode.asm | |
1215 // | |
1216 // Initializes all output variables to their default values. | |
1217 // | |
1218 void deco_init_output_vars(void) | |
1219 { | |
1220 RESET_C_STACK | |
1221 init_output_vars(); | |
1222 } | |
1223 | |
628 | 1224 |
582 | 1225 ////////////////////////////////////////////////////////////////////////////// |
1226 // deco_clear_tissue | |
1227 // | |
1228 // called from: start.asm | |
1229 // menu_tree.asm | |
1230 // simulator.asm | |
1231 // | |
628 | 1232 // Sets all tissues to equilibrium with air at ambient pressure, |
582 | 1233 // resets all CNS values, any warnings and resets all model output. |
1234 // | |
1235 void deco_clear_tissue(void) | |
1236 { | |
1237 RESET_C_STACK | |
1238 clear_tissue(); | |
1239 } | |
1240 | |
623 | 1241 |
582 | 1242 ////////////////////////////////////////////////////////////////////////////// |
1243 // deco_calc_dive_interval | |
1244 // | |
1245 // called from: simulator.asm | |
1246 // | |
628 | 1247 // Updates tissues and CNS value for char_I_dive_interval minutes on air at |
1248 // ambient pressure and calculates resulting saturation and ceiling for a | |
1249 // GF-high of 100% (ceiling and saturation not used by simulator.asm) | |
582 | 1250 // |
1251 void deco_calc_dive_interval(void) | |
1252 { | |
1253 RESET_C_STACK | |
1254 calc_interval(char_I_dive_interval); | |
1255 } | |
1256 | |
623 | 1257 |
582 | 1258 ////////////////////////////////////////////////////////////////////////////// |
1259 // deco_calc_dive_interval_1min | |
1260 // | |
1261 // called from: start.asm | |
1262 // sleepmode.asm | |
1263 // surfmode.asm | |
1264 // menu_tree.asm | |
1265 // ghostwriter.asm | |
1266 // | |
604 | 1267 // Updates tissues and CNS value for 1 minute on air at ambient pressure and |
628 | 1268 // calculates resulting saturation and ceiling for a GF-high of 100%. |
582 | 1269 // |
1270 void deco_calc_dive_interval_1min(void) | |
1271 { | |
1272 RESET_C_STACK | |
1273 calc_interval(1); | |
1274 } | |
1275 | |
1276 | |
1277 ////////////////////////////////////////////////////////////////////////////// | |
604 | 1278 // deco_calc_dive_interval_10min |
582 | 1279 // |
1280 // called from: sleepmode.asm | |
1281 // | |
604 | 1282 // Updates tissues and CNS value for 10 minutes on air at ambient pressure and |
628 | 1283 // calculates resulting saturation and ceiling for a GF-high of 100%. |
582 | 1284 // |
1285 void deco_calc_dive_interval_10min(void) | |
1286 { | |
1287 RESET_C_STACK | |
1288 calc_interval(10); | |
1289 } | |
1290 | |
1291 | |
1292 ////////////////////////////////////////////////////////////////////////////// | |
1293 // deco_calc_desaturation_time | |
1294 // | |
1295 // called from: start.asm | |
1296 // surfmode.asm | |
1297 // menu_tree.asm | |
1298 // ghostwriter.asm | |
1299 // | |
1300 // Computes desaturation and no-fly times. | |
1301 // | |
1302 void deco_calc_desaturation_time(void) | |
1303 { | |
1304 RESET_C_STACK | |
1305 calc_desaturation_time(); | |
1306 } | |
1307 | |
623 | 1308 |
582 | 1309 ////////////////////////////////////////////////////////////////////////////// |
1310 // deco_push_tissues_to_vault | |
1311 // | |
1312 // called from: simulator.asm | |
1313 // | |
1314 // Makes a backup of the state of the real tissues and the deco engine. | |
1315 // | |
1316 void deco_push_tissues_to_vault(void) | |
1317 { | |
1318 RESET_C_STACK | |
1319 push_tissues_to_vault(); | |
1320 } | |
1321 | |
623 | 1322 |
582 | 1323 ////////////////////////////////////////////////////////////////////////////// |
1324 // deco_pull_tissues_from_vault | |
1325 // | |
1326 // called from: simulator.asm | |
1327 // ghostwriter.asm | |
1328 // | |
1329 // Restores the state of the real tissues and the deco engine from the backup. | |
1330 // | |
1331 void deco_pull_tissues_from_vault(void) | |
1332 { | |
1333 RESET_C_STACK | |
1334 pull_tissues_from_vault(); | |
1335 } | |
1336 | |
604 | 1337 |
1338 // ********************************************************************************************************************************* | |
1339 // | |
1340 // M A I N F U N C T I O N S | |
1341 // | |
1342 // ********************************************************************************************************************************* | |
582 | 1343 |
1344 | |
1345 ////////////////////////////////////////////////////////////////////////////// | |
628 | 1346 // Calculate the next deco stop |
0 | 1347 // |
1348 // INPUT, fixed during dive: | |
623 | 1349 // pres_surface : surface pressure (as absolute pressure) |
631 | 1350 // char_I_last_stop_depth : depth of the last deco stop |
623 | 1351 // |
628 | 1352 // INPUT, may change during dive: |
623 | 1353 // GF_high : GF high factor |
1354 // GF_low : GF low factor | |
631 | 1355 // GF_depth : GF low reference depth |
1356 // GF_slope : GF slope | |
1357 // | |
1358 // MODIFIED | |
623 | 1359 // char_depth_sim : simulated depth in meters |
0 | 1360 // |
1361 // OUTPUT | |
631 | 1362 // GF_depth_norm/_alt : updated GF low depth reference |
1363 // GF_slope_norm/_alt : updated GF slope | |
623 | 1364 // |
1365 // RETURN | |
631 | 1366 // TRUE: a deco stop is required, FALSE: no deco stop required |
623 | 1367 // |
1368 static unsigned char find_next_stop(void) | |
0 | 1369 { |
623 | 1370 overlay unsigned char depth_1min; |
1371 overlay unsigned char depth_limit; | |
628 | 1372 overlay unsigned char stop_depth; |
1373 overlay unsigned char next_stop; | |
631 | 1374 |
1375 | |
1376 // calculate the current deco ceiling (minimum relative pressure) | |
1377 if( char_I_model == 0 ) calc_limit(1.0); // straight Buhlmann | |
1378 else if( NDL_time ) calc_limit(GF_high); // with GF: not in deco | |
1379 else if( char_depth_sim >= GF_depth ) calc_limit(GF_low); // in deco, below or at low depth reference | |
1380 else calc_limit(GF_high - GF_slope * (float)char_depth_sim); // in deco, above low depth reference | |
1381 | |
1382 // convert the deco ceiling from relative pressure to meters, | |
1383 // rounded up (i.e. made deeper) to the next full meter | |
1384 depth_limit = (unsigned char)(ceiling * BAR_TO_METER + 0.99); | |
1385 | |
1386 | |
1387 #ifdef _cave_mode | |
1388 // in cave or open water mode? | |
1389 if( main_status & CAVE_MODE ) | |
623 | 1390 { |
631 | 1391 // cave mode |
1392 | |
1393 // does backtracking require descent or keeping depth? | |
1394 if( backtrack_target_depth >= char_depth_sim ) | |
1395 { | |
1396 // YES - decent to target depth or stay at current depth | |
1397 char_depth_sim = backtrack_target_depth; | |
1398 | |
1399 // - done, no stop required | |
1400 return(0); | |
1401 } | |
1402 else | |
1403 { | |
1404 // NO | |
1405 | |
1406 // target depth requires an ascent - determine ascent limit due to deco obligation | |
1407 stop_depth = depth_limit; | |
1408 | |
1409 // apply correction for the shallowest stop | |
1410 if( stop_depth && (stop_depth < char_I_last_stop_depth) ) stop_depth = char_I_last_stop_depth; | |
1411 } | |
623 | 1412 } |
1413 else | |
631 | 1414 #endif |
623 | 1415 { |
631 | 1416 // open water vertical ascent mode - determine the stop depth |
1417 | |
1418 // stop depth is depth limit rounded up (made deeper) to the next multiple of 3 meters | |
1419 stop_depth = 3 * ( (depth_limit + 2) / 3 ); | |
1420 | |
1421 // apply correction for the shallowest stop | |
1422 if( stop_depth == 3 ) stop_depth = char_I_last_stop_depth; | |
623 | 1423 } |
1424 | |
631 | 1425 // is the stop depth shallower than the current depth (can we ascent)? |
1426 if( stop_depth < char_depth_sim ) | |
623 | 1427 { |
631 | 1428 // YES - ascent by 1 meter |
1429 char_depth_sim--; | |
1430 | |
1431 // done, no stop needed | |
1432 return(0); | |
623 | 1433 } |
1434 | |
1435 // ----------------------------------------------------------------------- | |
631 | 1436 // we need to make a stop because we are not allowed to ascent any further |
623 | 1437 // ----------------------------------------------------------------------- |
1438 | |
631 | 1439 // set depth to stop depth |
628 | 1440 char_depth_sim = stop_depth; |
1441 | |
1442 // Apply correction in case the stop is to be placed deeper than a | |
1443 // previously recorded stop for a gas change. This may happen because | |
1444 // the deco stops are placed at the next deeper multiple of 3 meters | |
1445 // instead of the real stop's depth. Correction is to relocate the | |
1446 // deco stop to the depth of the last gas change. The resulting combined | |
1447 // stop's duration will be the sum of the configured gas change time plus | |
1448 // the duration of the deco stop itself. | |
1449 if( 0 < internal_deco_depth[stop_index] ) | |
1450 if( char_depth_sim > internal_deco_depth[stop_index] ) | |
631 | 1451 char_depth_sim = internal_deco_depth[stop_index]; |
1452 | |
1453 // if using straight Buhlmann: done, stop needed | |
1454 if( char_I_model == 0 ) return(1); | |
623 | 1455 |
1456 // ----------------------------------------------------------------------- | |
628 | 1457 // we need to make or hold a stop and we are using the GF extension |
623 | 1458 // ----------------------------------------------------------------------- |
1459 | |
631 | 1460 // is the stop_depth deeper than the GF low depth reference used up to now? |
1461 if( stop_depth > GF_depth ) | |
623 | 1462 { |
631 | 1463 // YES - update the GF low depth reference |
1464 GF_depth = stop_depth; | |
1465 GF_slope = (GF_high - GF_low) / (float)GF_depth; | |
623 | 1466 |
1467 // store for use in next cycles | |
1468 if( deco_status & CALC_NORM ) | |
560 | 1469 { |
631 | 1470 GF_depth_norm = GF_depth; |
1471 GF_slope_norm = GF_slope; | |
582 | 1472 } |
560 | 1473 else |
1474 { | |
631 | 1475 GF_depth_alt = GF_depth; |
1476 GF_slope_alt = GF_slope; | |
560 | 1477 } |
623 | 1478 } |
1479 | |
631 | 1480 #ifdef _cave_mode |
1481 // if in cave mode: done, stop needed | |
1482 if( main_status & CAVE_MODE ) return(1); | |
1483 #endif | |
1484 | |
1485 // We have a stop depth candidate. But with a steep GF slope, the stop(s) after | |
1486 // this first stop may be allowed to ascent to, too. This is because the gradient | |
623 | 1487 // factor that will be used at the next depth(s) will allow more tissue super- |
631 | 1488 // saturation, maybe so much more that the next stop(s) will be allowed to ascent |
1489 // to. So we have to probe the next stops that are within the reach of 1 minute | |
1490 // of ascent as well. | |
1491 | |
1492 // compute depth in meters that is reachable within 1 minute of ascent at 10 m/min | |
1493 depth_1min = ( char_depth_sim > 10 ) ? char_depth_sim - 10 : 0; | |
623 | 1494 |
628 | 1495 // probe all stop depths that are in reach of 1 minute of ascent |
631 | 1496 next_stop = stop_depth; |
628 | 1497 |
1498 while(next_stop > 0) | |
623 | 1499 { |
631 | 1500 // compute the depth of the next stop to probe |
1501 if ( next_stop <= char_I_last_stop_depth ) next_stop = 0; | |
1502 else if ( next_stop == 6 ) next_stop = char_I_last_stop_depth; | |
628 | 1503 else next_stop -= 3; |
1504 | |
631 | 1505 // done if the next stop would be above the 1 minute limit |
1506 if( next_stop < depth_1min ) return(1); | |
1507 | |
1508 // compute the ceiling for the next stop depth | |
1509 calc_limit(GF_high - GF_slope * (float)next_stop); | |
1510 | |
1511 // done if the next stop would be above the ceiling | |
1512 if( next_stop < (unsigned char)(ceiling * BAR_TO_METER + 0.99) ) return(1); | |
1513 | |
1514 // the next stop depth is allowed, ascent to it and redo trying further stop | |
1515 char_depth_sim = next_stop; | |
582 | 1516 } |
1517 | |
631 | 1518 // reached the surface, done with no further stop |
1519 return(0); | |
0 | 1520 } |
1521 | |
604 | 1522 |
0 | 1523 ////////////////////////////////////////////////////////////////////////////// |
631 | 1524 // Take the actual currently used gas for ascent & deco calculation |
1525 // | |
1526 // Input: start_gas_num number of the gas/dil to start with (1..5 or 6) | |
623 | 1527 // |
1528 // Output: sim_gas_current_num 1..6 or 0 for the manually configured gas/dil | |
1529 // sim_gas_current_depth change depth (MOD) of the gas/dil in meters | |
560 | 1530 // |
628 | 1531 static void gas_take_current(void) |
560 | 1532 { |
631 | 1533 assert( 1 <= start_gas_num && start_gas_num <= 6 ); |
1534 | |
1535 | |
1536 // check origin of the gas/diluent to start with | |
1537 if( start_gas_num <= NUM_GAS ) | |
582 | 1538 { |
631 | 1539 // pre-configured gas/diluent |
1540 | |
1541 // set gas number | |
1542 sim_gas_current_num = sim_gas_last_num = start_gas_num; | |
1543 | |
1544 // set change depth | |
1545 sim_gas_current_depth = char_I_deco_gas_change[start_gas_num-1]; | |
628 | 1546 |
1547 // capture case of non-configured change depth | |
1548 if( sim_gas_current_depth == 0 ) sim_gas_current_depth = 255; | |
582 | 1549 } |
1550 else | |
560 | 1551 { |
631 | 1552 // on-the-fly configured gas/diluent ("gas 6") |
1553 | |
1554 // set gas number | |
1555 sim_gas_current_num = sim_gas_last_num = 0; | |
1556 | |
1557 // set change depth | |
604 | 1558 sim_gas_current_depth = char_I_gas6_depth; |
560 | 1559 } |
1560 } | |
1561 | |
1562 | |
1563 ////////////////////////////////////////////////////////////////////////////// | |
628 | 1564 // Find the gas with the shallowest change depth below or at the current depth |
560 | 1565 // |
623 | 1566 // Input: char_depth_sim simulated depth in meters |
1567 // sim_gas_current_num number of the currently used gas/dil | |
631 | 1568 // deco_gas_type[] types and state of the gases/dils |
1569 // char_I_deco_gas_change[] change depths of the gases/dils | |
623 | 1570 // |
628 | 1571 // Modified: sim_gas_best_num index of the gas (1..5) - only if return value is true |
1572 // sim_gas_best_depth switch depth - only if return value is true | |
623 | 1573 // |
1574 // Return value is TRUE if a better gas is available | |
560 | 1575 // |
628 | 1576 static unsigned char gas_find_best(void) |
560 | 1577 { |
1578 overlay unsigned char switch_depth = 255; | |
604 | 1579 overlay unsigned char switch_gas = 0; |
631 | 1580 |
582 | 1581 |
628 | 1582 // loop over all gases to find the shallowest one below or at current depth |
604 | 1583 for( j = 0; j < NUM_GAS; ++j ) |
560 | 1584 { |
631 | 1585 // is this gas available? |
1586 if( ( deco_gas_type[j] & GAS_TYPE_MASK ) // gas enabled (type > 0) ? | |
1587 && !( deco_gas_type[j] & GAS_AVAIL_MASK ) // neither lost nor staged ? | |
1588 ) | |
1589 | |
1590 // is it not a deco gas unless: | |
1591 // extended stops are activated | |
1592 // OR we are on a deco stop | |
1593 // OR we are in bailout but not in cave mode | |
1594 if( ( ( deco_gas_type[j] & GAS_TYPE_MASK ) < 3 ) | |
1595 || ( ( main_status & EXTENDED_STOPS ) ) | |
1596 || ( ( deco_status & CALC_NORM ) && ( deco_info & DECO_STOPS_NORM ) ) | |
1597 || ( ( deco_status & CALC_ALT ) && ( deco_info & DECO_STOPS_ALT ) ) | |
1598 || ( ( deco_status & BAILOUT_MODE ) && !( main_status & CAVE_MODE ) ) | |
1599 ) | |
1600 | |
1601 // is the change depth of the this gas deeper than or | |
604 | 1602 // at least equal to the current depth? |
623 | 1603 if( char_I_deco_gas_change[j] >= char_depth_sim ) |
604 | 1604 |
631 | 1605 // is the change depth of this gas shallower than |
1606 // the change depth of the best gas found so far, | |
1607 // or is it the first better gas found? | |
1608 if( char_I_deco_gas_change[j] < switch_depth ) | |
628 | 1609 |
1610 #ifdef _gas_contingency | |
631 | 1611 // is there still enough of this gas or shall we don't care? |
1612 if( !(deco_gas_type[j] & GAS_FULLY_USED_UP ) | |
1613 || !( main_status & GAS_CONTINGENCY ) | |
1614 || !( main_status & CALC_VOLUME ) | |
1615 ) | |
628 | 1616 #endif |
604 | 1617 |
631 | 1618 // if there is a yes to all these questions, we have a better gas! |
560 | 1619 { |
628 | 1620 // memorize this gas (1..5) and its change depth |
1621 switch_gas = j+1; | |
1622 switch_depth = char_I_deco_gas_change[j]; | |
560 | 1623 } |
631 | 1624 |
560 | 1625 } // continue looping through all gases to eventually find an even better gas |
1626 | |
628 | 1627 // has a best gas been found? |
560 | 1628 if( switch_gas ) |
1629 { | |
628 | 1630 // YES - export the best gas and its change depth |
1631 sim_gas_best_num = switch_gas; | |
1632 sim_gas_best_depth = switch_depth; | |
1633 | |
1634 // is the best gas different from the current gas? | |
1635 if( sim_gas_best_num != sim_gas_current_num ) | |
1636 { | |
1637 // YES - signal advice for a gas change | |
1638 return 1; | |
1639 } | |
560 | 1640 } |
628 | 1641 |
1642 // no best gas found or current gas is the best gas | |
1643 return 0; | |
1644 } | |
1645 | |
1646 | |
1647 ////////////////////////////////////////////////////////////////////////////// | |
1648 // Switch to the best gas | |
1649 // | |
1650 // Input: sim_gas_best_num index of the best gas (1..5) | |
1651 // sim_gas_best_depth switch depth of the best gas | |
1652 // | |
1653 // Modified: sim_gas_current_num index of the new gas (1..5) | |
1654 // sim_gas_current_depth switch depth of the new gas | |
1655 // | |
1656 static void gas_take_best(void) | |
1657 { | |
631 | 1658 // memorize current gas as last gas used |
1659 sim_gas_last_num = sim_gas_current_num; | |
1660 | |
628 | 1661 // set new gas |
1662 sim_gas_current_num = sim_gas_best_num; | |
1663 sim_gas_current_depth = sim_gas_best_depth; | |
0 | 1664 } |
1665 | |
604 | 1666 |
0 | 1667 ////////////////////////////////////////////////////////////////////////////// |
623 | 1668 // Set calc_N2/He/O2_ratios by sim_gas_current_num |
1669 // | |
1670 // Input: sim_gas_current_num index of gas to use | |
1671 // real_O2_ratio, real_He_ratio if gas = 0 (the manually set gas) | |
1672 // char_I_deco_O2/He_ratio[] if gas = 1..5 (the configured gases) | |
1673 // | |
1674 // Output: sim_N2_ratio, sim_He_ratio ratios of the inert gases | |
1675 // sim_pSCR_drop ppO2 drop in pSCR loop | |
0 | 1676 // |
582 | 1677 static void gas_set_ratios(void) |
0 | 1678 { |
582 | 1679 overlay float sim_IG_ratio; |
1680 | |
623 | 1681 assert( 0 <= sim_gas_current_num <= NUM_GAS ); |
1682 | |
1683 | |
1684 #ifdef _helium | |
582 | 1685 // get gas ratios |
623 | 1686 if( sim_gas_current_num == 0 ) |
560 | 1687 { |
604 | 1688 sim_O2_ratio = real_O2_ratio; |
1689 sim_He_ratio = real_He_ratio; | |
560 | 1690 } |
1691 else | |
1692 { | |
623 | 1693 sim_O2_ratio = 0.01 * char_I_deco_O2_ratio[sim_gas_current_num-1]; |
1694 sim_He_ratio = 0.01 * char_I_deco_He_ratio[sim_gas_current_num-1]; | |
560 | 1695 } |
1696 | |
582 | 1697 // inert gas ratio (local helper variable) |
604 | 1698 sim_IG_ratio = 1.00 - sim_O2_ratio; |
582 | 1699 |
1700 // N2 ratio | |
604 | 1701 sim_N2_ratio = sim_IG_ratio - sim_He_ratio; |
623 | 1702 #else |
1703 // get O2 ratio | |
1704 sim_O2_ratio = ( sim_gas_current_num == 0 ) ? real_O2_ratio : 0.01 * char_I_deco_O2_ratio[sim_gas_current_num-1]; | |
1705 | |
1706 // set H2 ratio to zero | |
1707 sim_He_ratio = 0.0; | |
1708 | |
1709 // inert gas ratio (local helper variable) | |
1710 sim_IG_ratio = 1.00 - sim_O2_ratio; | |
1711 | |
1712 // N2 ratio | |
1713 sim_N2_ratio = sim_IG_ratio; | |
1714 #endif | |
1715 | |
1716 #ifdef _ccr_pscr | |
582 | 1717 // ppO2 drop in pSCR loop |
604 | 1718 sim_pSCR_drop = sim_IG_ratio * float_pSCR_factor; |
623 | 1719 #endif |
582 | 1720 |
1721 | |
1722 assert( 0.0 <= sim_N2_ratio && sim_N2_ratio <= 0.95 ); | |
1723 assert( 0.0 <= sim_He_ratio && sim_He_ratio <= 0.95 ); | |
1724 assert( (sim_N2_ratio + sim_He_ratio) <= 0.95 ); | |
0 | 1725 } |
1726 | |
604 | 1727 |
0 | 1728 ////////////////////////////////////////////////////////////////////////////// |
604 | 1729 // Compute respired ppO2, ppN2 and ppHe |
0 | 1730 // |
631 | 1731 // Input: tissue_increment : selector for simulated/real tissues and gases |
623 | 1732 // main_status : breathing mode for real tissues |
1733 // deco_status : breathing mode for simulated tissues | |
604 | 1734 // sim_/real_O2_ratio : (simulated) O2 ratio breathed |
1735 // sim_/real_N2_ratio : (simulated) N2 ratio breathed | |
1736 // sim_/real_He_ratio : (simulated) He ratio breathed | |
1737 // sim_/real_pres_respiration : (simulated) respiration pressure [bar] | |
1738 // sim_/real_pSCR_drop : (simulated) pSCR O2 drop | |
1739 // pres_surface : surface pressure [bar] | |
1740 // char_I_const_ppO2 : ppO2 reported from sensors or setpoint [cbar] | |
1741 // ppWater : water-vapor pressure inside respiratory tract [bar] | |
0 | 1742 // |
604 | 1743 // Output: ppN2 : respired N2 partial pressure |
1744 // ppHe : respired He partial pressure | |
623 | 1745 // char_ppO2 : breathed ppO2 in %, used for CNS calculation |
0 | 1746 // |
582 | 1747 void calc_alveolar_pressures(void) |
0 | 1748 { |
604 | 1749 overlay float calc_pres_respiration; |
582 | 1750 overlay float calc_O2_ratio; |
1751 overlay float calc_N2_ratio; | |
623 | 1752 |
1753 #ifdef _helium | |
582 | 1754 overlay float calc_He_ratio; |
623 | 1755 #endif |
1756 | |
1757 #ifdef _ccr_pscr | |
582 | 1758 overlay float calc_pSCR_drop; |
623 | 1759 #endif |
582 | 1760 |
1761 overlay unsigned char status; | |
1762 | |
1763 | |
623 | 1764 assert( 0.00 <= real_N2_ratio && real_N2_ratio <= 1.00 ); |
1765 assert( 0.00 <= real_He_ratio && real_He_ratio <= 1.00 ); | |
1766 assert( (real_N2_ratio + real_He_ratio) <= 1.00 ); | |
604 | 1767 assert( 0.800 < real_pres_respiration && real_pres_respiration < 14.0 ); |
1768 | |
623 | 1769 assert( 0.00 <= sim_N2_ratio && real_N2_ratio <= 1.00 ); |
1770 assert( 0.00 <= sim_He_ratio && real_He_ratio <= 1.00 ); | |
1771 assert( (sim_N2_ratio + sim_He_ratio) <= 1.00 ); | |
582 | 1772 assert( 0.800 < sim_pres_respiration && sim_pres_respiration < 14.0 ); |
1773 | |
1774 | |
1775 // get input data according to context | |
623 | 1776 if( tissue_increment & TISSUE_SELECTOR ) |
582 | 1777 { |
1778 //---- real tissues ----------------------------------------------------------- | |
604 | 1779 calc_pres_respiration = real_pres_respiration; |
623 | 1780 |
1781 status = main_status; | |
604 | 1782 calc_O2_ratio = real_O2_ratio; |
1783 calc_N2_ratio = real_N2_ratio; | |
623 | 1784 |
1785 #ifdef _helium | |
604 | 1786 calc_He_ratio = real_He_ratio; |
623 | 1787 #endif |
1788 | |
1789 #ifdef _ccr_pscr | |
1790 calc_pSCR_drop = real_pSCR_drop; | |
1791 #endif | |
582 | 1792 } |
1793 else | |
1794 { | |
1795 //---- simulated tissues ------------------------------------------------------ | |
623 | 1796 |
1797 // correct sim_pres_respiration if shallower than calculated stop depth | |
1798 calc_pres_respiration = ( real_pres_respiration < sim_pres_respiration ) ? real_pres_respiration : sim_pres_respiration; | |
1799 | |
628 | 1800 // +++ pressure surcharge if outside deco stops area yet ??? |
1801 | |
623 | 1802 status = deco_status; |
604 | 1803 calc_O2_ratio = sim_O2_ratio; |
1804 calc_N2_ratio = sim_N2_ratio; | |
623 | 1805 |
1806 #ifdef _helium | |
604 | 1807 calc_He_ratio = sim_He_ratio; |
623 | 1808 #endif |
1809 | |
1810 #ifdef _ccr_pscr | |
1811 calc_pSCR_drop = sim_pSCR_drop; | |
1812 #endif | |
582 | 1813 } |
1814 | |
1815 //---- OC, CCR and Bailout Mode Gas Calculations ----------------------------------- | |
1816 | |
1817 // calculate ppO2 of pure oxygen | |
631 | 1818 ppO2_O2 = calc_pres_respiration - ppWater; |
604 | 1819 |
1820 // capture failure condition in case real_pres_respiration is < ppWater (should never happen...) | |
631 | 1821 if( ppO2_O2 < 0.0 ) ppO2_O2 = 0.0; |
582 | 1822 |
602 | 1823 // calculate ppO2 of the pure gas (OC, diluent) |
631 | 1824 ppO2_OC = ppO2_O2 * calc_O2_ratio; |
582 | 1825 |
623 | 1826 #ifdef _ccr_pscr |
1827 | |
582 | 1828 // calculate pSCR ppO2 |
631 | 1829 ppO2_pSCR = ppO2_OC - calc_pSCR_drop; |
1830 | |
1831 // capture failure condition in case ppO2_pSCR becomes negative | |
1832 if( ppO2_pSCR < 0.0 ) ppO2_pSCR = 0.0; | |
582 | 1833 |
1834 | |
1835 //---- Loop modes : adjust ppN2 and ppHe for change in ppO2 due to setpoint (CCR) or drop (pSCR) --- | |
623 | 1836 if( status & MODE_LOOP ) |
582 | 1837 { |
1838 overlay float const_ppO2; | |
604 | 1839 overlay float max_ppO2; |
582 | 1840 |
1841 // get the current sensor reading (CCR / pSCR if fitted) or the fixed setpoint (CCR) / a zero (pSCR) | |
1842 const_ppO2 = 0.01 * char_I_const_ppO2; | |
1843 | |
1844 // Limit the setpoint to the maximum physically possible ppO2. This prevents for | |
1845 // example calculating with a setpoint of 1.3 bar in only 2 meters of depth. | |
604 | 1846 // Additionally, the ppO2 can be further reduced to account for exhaled inert gases |
623 | 1847 // accumulating in the loop by the user-adjustable setting char_I_CC_max_frac_O2. |
604 | 1848 // (ppWater is neglected here) |
623 | 1849 max_ppO2 = 0.01 * char_I_CC_max_frac_O2 * calc_pres_respiration; |
604 | 1850 |
1851 if( const_ppO2 > max_ppO2 ) const_ppO2 = max_ppO2; | |
582 | 1852 |
1853 // check which kind of loop we are on | |
623 | 1854 if( status & MODE_PSCR ) |
560 | 1855 { |
582 | 1856 //---- pSCR Mode -------------------------------------------------------------------------- |
1857 | |
631 | 1858 // Use the sensor value if available and in real tissue context, else use calculated ppO2. |
1859 ppO2 = ( char_I_const_ppO2 && (tissue_increment & TISSUE_SELECTOR)) ? const_ppO2 : ppO2_pSCR; | |
582 | 1860 } |
560 | 1861 else |
1862 { | |
582 | 1863 //---- CCR Mode --------------------------------------------------------------------------- |
1864 | |
604 | 1865 // derive breathed ppO2 from (char_I_)const_ppO2, which holds sensor reading or selected setpoint |
582 | 1866 ppO2 = const_ppO2; |
560 | 1867 } |
1868 | |
604 | 1869 // adjust overall gas pressure for change in ppO2 due to setpoint (CCR) or drop (pSCR), |
1870 // capture potential failure conditions first: | |
1871 if( ( calc_pres_respiration < ppO2 ) // sensor reading or selected setpoint is higher than ambient pressure | |
623 | 1872 || ( calc_O2_ratio > 0.995 ) ) // diluent is pure O2, i.e. calc_N2_ratio + calc_He_ratio = 0 would give a div/0 |
560 | 1873 { |
604 | 1874 // failure condition present, set predetermined result |
1875 calc_pres_respiration = 0.0; | |
1876 } | |
1877 else | |
1878 { | |
1879 // no failure conditions present, equation can be executed | |
1880 calc_pres_respiration -= ppO2; | |
623 | 1881 #ifdef _helium |
604 | 1882 calc_pres_respiration /= calc_N2_ratio + calc_He_ratio; |
623 | 1883 #else |
1884 calc_pres_respiration /= calc_N2_ratio; | |
1885 #endif | |
560 | 1886 } |
582 | 1887 } |
1888 else | |
623 | 1889 #endif // _ccr_pscr |
604 | 1890 { |
1891 //---- OC mode --------------------------------------------------------------------------------- | |
582 | 1892 |
1893 // breathed ppO2 is ppO2 of pure gas | |
631 | 1894 ppO2 = ppO2_OC; |
560 | 1895 } |
1896 | |
582 | 1897 |
604 | 1898 //---- derive char_ppO2 in [cbar], used for calculating CNS% --------------------------------------- |
1899 | |
582 | 1900 if ( ppO2 < 0.01 ) char_ppO2 = 0; |
1901 else if ( ppO2 >= 2.545 ) char_ppO2 = 255; | |
1902 else char_ppO2 = (unsigned char)(100 * ppO2 + 0.5); | |
1903 | |
1904 | |
1905 //---- calculate ppN2 and ppHe --------------------------------------------------------------------- | |
1906 | |
604 | 1907 // compute ppN2 and ppHe, capture potential failure conditions first: |
1908 if( calc_pres_respiration > ppWater ) | |
582 | 1909 { |
604 | 1910 // subtract water vapor pressure |
1911 calc_pres_respiration -= ppWater; | |
1912 | |
1913 // calculate partial pressures | |
1914 ppN2 = calc_N2_ratio * calc_pres_respiration; | |
623 | 1915 |
1916 #ifdef _helium | |
604 | 1917 ppHe = calc_He_ratio * calc_pres_respiration; |
623 | 1918 #else |
1919 ppHe = 0.0; | |
1920 #endif | |
1921 | |
582 | 1922 } |
1923 else | |
1924 { | |
604 | 1925 // calculated respired pressure is < water vapor pressure, thus set ppN2 and ppHe to 0 |
582 | 1926 ppN2 = 0.0; |
1927 ppHe = 0.0; | |
1928 } | |
628 | 1929 |
634 | 1930 #ifdef _ccr_pscr |
628 | 1931 // calculating real tissues? |
1932 if( tissue_increment & TISSUE_SELECTOR ) | |
1933 { | |
1934 overlay unsigned char temp; | |
1935 | |
1936 // compute gas density of current mix in multiples of 0.01 grams per liter | |
1937 int_O_gas_density = (unsigned int)( 17.9 * ppHe + 125.1 * ppN2 + 142.8 * ppO2 ); | |
1938 | |
634 | 1939 // convert gas density into an 8 bit integer, scaling 0.1 grams per liter |
628 | 1940 temp = (unsigned char)( (int_O_gas_density + 9) / 10 ); |
1941 | |
1942 // limit to display max and set warning or attention flag | |
634 | 1943 if( temp > 99 ) int_O_gas_density = 999 | INT_FLAG_WARNING; |
1944 else if( temp >= char_I_gas_density_warn ) int_O_gas_density |= INT_FLAG_WARNING; | |
1945 else if( temp >= char_I_gas_density_att ) int_O_gas_density |= INT_FLAG_ATTENTION; | |
628 | 1946 } |
1947 #endif | |
0 | 1948 } |
1949 | |
604 | 1950 |
0 | 1951 ////////////////////////////////////////////////////////////////////////////// |
623 | 1952 // Initializes all output variables to their default values |
1953 // | |
1954 static void init_output_vars(void) | |
1955 { | |
1956 // clear the internal stops table from remains lasting from the previous dive or deco calculator run | |
1957 clear_deco_table(); | |
1958 | |
1959 // publish the cleared stops table to the display functions | |
1960 publish_deco_table(); | |
1961 | |
1962 // clear the published gas needs in volume and pressure | |
1963 for( i = 0; i < NUM_GAS; ++i ) | |
1964 { | |
1965 int_O_gas_need_vol[i] = 0; | |
1966 int_O_gas_need_pres[i] = 0 + INT_FLAG_ZERO + INT_FLAG_INVALID; | |
1967 } | |
1968 | |
1969 // values initially to be set to zero | |
1970 int_O_ceiling = 0; // ceiling depth in mbar | |
1971 char_O_deco_info = 0; // clear all deco information flags | |
1972 char_O_deco_warnings = 0; // clear all deco warning flags | |
1973 | |
1974 // default desaturation time to 24 hours (it will not be computed during a dive) | |
1975 int_O_desaturation_time = 1440; | |
1976 | |
1977 // initialize CNS values | |
1978 int_O_CNS_norm = 0 + INT_FLAG_INVALID; | |
1979 int_O_CNS_alt = 0 + INT_FLAG_INVALID; | |
1980 | |
1981 // initialize NDL times | |
631 | 1982 int_O_NDL_norm = 240; |
1983 int_O_NDL_alt = 240; | |
1984 | |
1985 // initialize stop times | |
1986 int_O_TST_norm = 0; | |
1987 int_O_TST_alt = 0 + INT_FLAG_INVALID + INT_FLAG_NOT_COMPUTED_YET + INT_FLAG_ZERO; | |
1988 | |
1989 | |
1990 // initialize ascent / return times | |
623 | 1991 int_O_TTS_norm = 0; |
1992 int_O_TTS_alt = 0 + INT_FLAG_INVALID + INT_FLAG_NOT_COMPUTED_YET; | |
1993 | |
1994 #ifdef _rx_functions | |
1995 // clear TR values | |
1996 int_O_SAC_measured = 0 + INT_FLAG_NOT_AVAIL; // SAC rate | |
1997 int_O_pressure_need[0] = 0 + INT_FLAG_NOT_AVAIL; // pressure need to reading 1 | |
1998 int_O_pressure_need[1] = 0 + INT_FLAG_NOT_AVAIL; // pressure need to reading 2 | |
628 | 1999 int_O_tank_pressure = 0; // tank pressure for logging |
623 | 2000 #endif |
2001 | |
628 | 2002 #ifdef _helium |
2003 int_O_gas_density = 0; | |
2004 #endif | |
2005 | |
2006 // also clear any time++ request | |
2007 char_I_sim_advance_time = 0; | |
623 | 2008 } |
2009 | |
2010 | |
2011 ////////////////////////////////////////////////////////////////////////////// | |
2012 // Reset all tissues to surface pressure equilibrium state | |
2013 // | |
2014 // Input: int_I_pres_surface current surface pressure in hPa (mbar) | |
2015 // | |
2016 // Output: real_pres_tissue_N2[] partial pressure of N2 in real tissues | |
2017 // real_pres_tissue_He[] partial pressure of He in real tissues | |
2018 // char_O_tissue_pres_N2[] partial pressure of N2 for tissue graphics | |
2019 // char_O_tissue_pres_He[] partial pressure of He for tissue graphics | |
2020 // char_O_tissue_pressure[] total pressure for tissue graphics | |
2021 // CNS_fraction_real internal CNS value | |
2022 // int_O_CNS_current current CNS value | |
2023 // int_O_CNS_norm CNS value at end of normal dive plan | |
2024 // int_O_CNS_alt CNS value at end of alternative dive plan | |
2025 // char_O_deco_warnings deco warnings vector | |
631 | 2026 // int_O_NDL_norm remaining NDL time in normal dive plan |
2027 // int_O_NDL_alt remaining NDL time in alternative dive plan | |
623 | 2028 // int_O_TTS_norm ascent time (TTS) in normal dive plan |
2029 // int_O_TTS_alt ascent time (TTS) in alternative dive plan | |
2030 // int_O_lead_supersat supersaturation of the leading tissue | |
0 | 2031 // |
2032 static void clear_tissue(void) | |
2033 { | |
623 | 2034 // safeguard and convert the surface pressure (mbar -> bar) (*) |
2035 if( int_I_pres_surface < 500 ) pres_surface = 0.500; | |
2036 else pres_surface = 0.001 * int_I_pres_surface; | |
2037 | |
2038 // calculate partial pressure of N2 in respired air at surface pressure | |
2039 calc_N2_equilibrium(); | |
2040 | |
2041 // cycle through the 16 Buhlmann tissues | |
604 | 2042 for( ci = 0; ci < NUM_COMP; ci++ ) |
582 | 2043 { |
623 | 2044 // reset tissue pressures |
2045 real_pres_tissue_He[ci] = 0.0; // He | |
2046 real_pres_tissue_N2[ci] = N2_equilibrium; // N2 | |
2047 | |
629 | 2048 // reset tissue pressures for scaled tissue graphics |
631 | 2049 char_O_tissue_pres_He[ci] = 0; // He |
623 | 2050 char_O_tissue_pres_N2[ci] = 10; // N2 |
2051 char_O_tissue_pressure[ci] = 10; // combined | |
582 | 2052 } |
2053 | |
2054 // reset CNS values | |
623 | 2055 CNS_fraction_real = 0.0; |
2056 int_O_CNS_current = int_O_CNS_norm = int_O_CNS_alt = 0; | |
582 | 2057 |
2058 // reset some more vars to their defaults | |
631 | 2059 int_O_NDL_norm = 240; |
2060 int_O_NDL_alt = 240; | |
2061 int_O_TST_norm = 0; | |
2062 int_O_TST_alt = 0 + INT_FLAG_ZERO; | |
2063 int_O_TTS_norm = 0; | |
2064 int_O_TTS_alt = 0; | |
2065 int_O_lead_supersat = 0; | |
623 | 2066 |
2067 // reset all warning and info flags | |
631 | 2068 char_O_deco_warnings = 0; |
2069 char_O_deco_info = 0; | |
0 | 2070 } |
2071 | |
582 | 2072 |
0 | 2073 ////////////////////////////////////////////////////////////////////////////// |
628 | 2074 // Deco engine main code |
0 | 2075 // |
623 | 2076 // This is the major code in dive mode, it calculates the tissue pressures, |
2077 // the bottom time, and it calculates the ascend with all deco stops, etc. | |
2078 // | |
2079 // Input: char_O_main_status deco engine control and real tissues mode | |
2080 // char_O_deco_status deco engine control and simulated tissues mode | |
2081 // char_I_sim_advance_time mailbox for bottom time incrementing | |
2082 // | |
2083 // char_I_SAC_work gas usage rate during working phase in l/min | |
2084 // char_I_SAC_deco gas usage rate during deco stops phase in l/min | |
2085 // | |
631 | 2086 // char_I_model selector for GF extension |
623 | 2087 // char_I_saturation_multiplier safety factor for tissue saturation |
2088 // char_I_desaturation_multiplier safety factor for tissue desaturation | |
2089 // | |
631 | 2090 // char_I_pressure_gas[] amount of gas available for ascent / cave return in bar |
623 | 2091 // int_I_pressure_drop[] pressure drop used to calculate SAC rate |
2092 // char_I_gas_avail_size[] size of the tanks in liters | |
2093 // | |
2094 // Output: int_O_O2_ppO2 partial pressure of pure O2 at current depth | |
2095 // int_O_pure_ppO2 partial pressure of O2 in gas at current depth | |
2096 // int_O_pSCR_ppO2 partial pressure of O2 in gas at current depth, corrected for pSCR mode | |
2097 // int_O_breathed_ppO2 partial pressure of O2 currently breathed | |
2098 // | |
2099 // char_O_deco_status deco engine computations status | |
2100 // char_O_deco_info deco engine information vector | |
2101 // char_O_deco_warnings deco engine warnings vector | |
2102 // | |
631 | 2103 // int_O_NDL_norm remaining NDL time in normal dive plan |
2104 // int_O_NDL_alt remaining NDL time in alternative dive plan | |
623 | 2105 // int_O_TTS_norm ascent time (TTS) in normal dive plan |
2106 // int_O_TTS_alt ascent time (TTS) in alternative dive plan | |
2107 // int_O_CNS_norm CNS value at end of normal dive plan | |
2108 // int_O_CNS_alt CNS value at end of alternative dive plan | |
2109 // | |
631 | 2110 // int_O_gas_need_vol[] calculated gas volumes needed for ascent / cave return |
2111 // int_O_gas_need_pres[] calculated gas pressures needed for ascent / cave return | |
623 | 2112 // |
2113 // int_O_SAC_measured measured surface air consumption (SAC) rate in l/min | |
2114 // | |
2115 // Modified: int_IO_pressure_value[] warning flags added to pressure reading 1 & 2 | |
2116 // int_IO_pressure_need[] pressure needs to pressure reading 1 & 2 | |
0 | 2117 // |
2118 static void calc_hauptroutine(void) | |
2119 { | |
623 | 2120 overlay unsigned short int_ppO2_min; |
628 | 2121 overlay unsigned short int_ppO2_max_warn; |
2122 overlay unsigned short int_ppO2_max_att; | |
623 | 2123 overlay unsigned short int_ppO2_max_dil; |
631 | 2124 overlay float EAD_pres; |
2125 overlay float END_pres; | |
623 | 2126 |
2127 //============================================================================================= | |
2128 | |
2129 // | |
2130 //--- Setup Part --------------------------------------------------------------------------------- | |
2131 // | |
2132 | |
2133 // set time limit for preempting deco calculations, timer is 16 bit and increments every 1/32 ms | |
2134 tmr5_value = 65535 - (32 * BUDGET_PER_SECOND / INVOKES_PER_SECOND); | |
2135 | |
2136 // load timer | |
2137 load_tmr5(); | |
2138 | |
2139 // read command flags and set up what to do | |
2140 switch( char_O_deco_status & COMMAND_MASK ) | |
560 | 2141 { |
623 | 2142 |
2143 case INITIALIZE: | |
2144 case INITIALIZE_START_NORM: | |
2145 case INITIALIZE_START_ALT: | |
2146 | |
2147 // copy master modes to shadow registers | |
2148 main_status = char_O_main_status; | |
2149 deco_status = char_O_deco_status; | |
2150 | |
2151 // clear all command flags on the master mode to signal that the command is read | |
2152 char_O_deco_status &= ~COMMAND_MASK; | |
2153 | |
2154 // clear the initialization flag on the shadow copy | |
2155 deco_status &= ~INITIALIZE; | |
2156 | |
2157 // initialize the sequence timer | |
2158 sequence_timer = 0; | |
2159 | |
2160 // set the calculation phase to start with to doing the once-per-dive initialization | |
2161 next_planning_phase = PHASE_10_DIVE_INIT; | |
2162 | |
2163 break; | |
2164 | |
2165 | |
2166 case START_NORM: | |
2167 case START_ALT: | |
2168 | |
2169 // copy master modes to shadow registers | |
2170 main_status = char_O_main_status; | |
2171 deco_status = char_O_deco_status; | |
2172 | |
2173 // clear all command flags on the master mode to signal that the command is read | |
2174 char_O_deco_status &= ~COMMAND_MASK; | |
2175 | |
2176 // set the calculation phase to start with to doing the cyclic initialization | |
628 | 2177 next_planning_phase = PHASE_20_CYCLIC_INIT; |
623 | 2178 |
2179 // continue in CALCULATING | |
2180 | |
2181 | |
2182 case CALCULATING: | |
2183 | |
2184 // keep current calculation phase | |
2185 | |
2186 // step the sequence timer | |
2187 sequence_timer = (sequence_timer < INVOKES_PER_SECOND * 2 - 1) ? sequence_timer + 1 : 0; | |
2188 | |
2189 break; | |
560 | 2190 } |
2191 | |
582 | 2192 |
623 | 2193 // |
2194 //--- End of Setup Part ----------------------------------------------------------------------- | |
2195 // | |
2196 | |
2197 //============================================================================================= | |
2198 | |
2199 // | |
2200 //---- Calculations Part (real Tissues) ------------------------------------------------------- | |
2201 // | |
2202 | |
582 | 2203 |
604 | 2204 // target the real tissues with 2 second increments by default |
623 | 2205 tissue_increment = TISSUE_SELECTOR | 0; |
2206 | |
2207 | |
2208 // Tasks every second, if more than 1 invocation per second: on the first section of the second. | |
2209 // Requests for tissue "fast forward" are executed immediately. | |
2210 #if (INVOKES_PER_SECOND > 1) | |
2211 if( ( sequence_timer == 0 ) | |
2212 || ( sequence_timer == INVOKES_PER_SECOND ) | |
2213 || ( char_I_sim_advance_time > 0 ) | |
2214 ) | |
2215 #endif | |
584 | 2216 { |
623 | 2217 // acquire current environmental data |
2218 calc_hauptroutine_data_input(); | |
2219 | |
628 | 2220 // calculate ppO2, ppN2 and ppHe for real tissues |
623 | 2221 calc_alveolar_pressures(); |
2222 | |
2223 // add decent calculation here and include trigger in above if-statement | |
2224 // TODO | |
2225 | |
2226 } // tasks every second, on the first section of the second | |
2227 | |
2228 | |
2229 // Tasks every 2 seconds, on the first section of the respective second. | |
2230 // Requests for tissue "fast forward" are executed immediately. | |
2231 if( ( sequence_timer == 0 ) | |
2232 || ( char_I_sim_advance_time > 0 ) | |
2233 ) | |
2234 { | |
2235 // Tissue and CNS updates are based on 2 seconds periods! | |
2236 | |
604 | 2237 // Set up normal tissue updating or "fast forward" updating for simulator |
2238 // sim+5' function and deco calculator bottom time calculation. | |
2239 if( char_I_sim_advance_time > 0 ) | |
2240 { | |
2241 // configure "fast forward" tissue updating | |
623 | 2242 tissue_increment = TISSUE_SELECTOR | char_I_sim_advance_time; |
2243 | |
2244 // clear the request | |
604 | 2245 char_I_sim_advance_time = 0; |
2246 } | |
2247 | |
584 | 2248 // calculate the real tissues |
2249 calc_tissues(); | |
2250 | |
604 | 2251 // update the CNS value for the real tissues |
2252 calc_CNS(); | |
2253 | |
2254 // calculate ceiling (at GF_high or 100%) and leading tissue supersaturation | |
631 | 2255 if ( char_I_model ) calc_limit(GF_high); // GF factors enabled |
2256 else calc_limit( 1.0 ); // classic Buhlmann | |
623 | 2257 |
2258 // convert the ceiling value to integer | |
604 | 2259 convert_ceiling_for_display(); |
2260 | |
623 | 2261 // convert the saturation value of the leading tissue to integer |
2262 convert_sat_for_display(); | |
2263 | |
2264 // convert the CNS value to integer | |
2265 convert_cur_CNS_for_display(); | |
2266 | |
2267 } // tasks every 2 seconds | |
2268 | |
2269 | |
2270 // Tasks every second, if more than 1 invocation per second: on the first section of the second. | |
2271 #if (INVOKES_PER_SECOND > 1) | |
2272 if( ( sequence_timer == 0 ) | |
2273 || ( sequence_timer == INVOKES_PER_SECOND ) | |
2274 ) | |
2275 #endif | |
582 | 2276 { |
623 | 2277 //---- Calculate and Export EAD and END ------------------------------------------------------ |
2278 | |
631 | 2279 // calculate EAD (Equivalent Air Depth) as pressure in [bar]: |
2280 // equivalent depth for the same N2 level with plain air | |
2281 EAD_pres = ppN2 / 0.7902 + ppWater - pres_surface; | |
2282 | |
2283 // calculate END (Equivalent Narcotic Depth) as pressure in [bar]: | |
2284 // as before, but with O2 treated as narcotic, too | |
2285 // Source: The Physiology and Medicine of Diving by Peter Bennett and David Elliott, | |
2286 // 4th edition, 1993, W.B.Saunders Company Ltd, London. | |
2287 END_pres = real_pres_respiration - ppHe - pres_surface; | |
2288 | |
2289 | |
2290 // export EAD, factor 10 is because conversion delivers in [cbar] but we need [mbar] | |
2291 float_value = EAD_pres; convert_float_to_int(); int_O_EAD_pres = int_value * 10; | |
2292 | |
2293 // export END, factor 10 is because conversion delivers in [cbar] but we need [mbar] | |
2294 float_value = END_pres; convert_float_to_int(); int_O_END_pres = int_value * 10; | |
623 | 2295 |
2296 | |
2297 //---- Compute ppO2 Values in [cbar] --------------------------------------------------------- | |
2298 | |
2299 float_value = ppO2; convert_float_to_int(); int_O_breathed_ppO2 = int_value; // breathed gas | |
2300 #ifdef _ccr_pscr | |
631 | 2301 float_value = ppO2_O2; convert_float_to_int(); int_O_O2_ppO2 = int_value; // pure oxygen |
2302 float_value = ppO2_OC; convert_float_to_int(); int_O_pure_ppO2 = int_value; // pure gas | |
2303 float_value = ppO2_pSCR; convert_float_to_int(); int_O_pSCR_ppO2 = int_value; // pSCR calculated | |
623 | 2304 #endif |
2305 | |
2306 | |
628 | 2307 //---- Set/Clear Deco Mode ------------------------------------------------------------------ |
2308 | |
2309 // Clear the deco mode flag if: | |
2310 // deco mode is set | |
2311 // AND we are deeper than 7 meters below the deepest deco stop | |
2312 // (7 meters chosen as to be 2 stop depth intervals plus 1 additional meter below) | |
2313 if ( ( deco_info & DECO_MODE ) > 0 ) | |
2314 if ( ( char_depth_real ) > char_O_deco_depth[0] + 7 ) | |
631 | 2315 deco_info &= ~DECO_MODE; |
623 | 2316 |
2317 // Set the deco mode flag if: | |
2318 // deco mode is not set | |
2319 // AND breathing an OC deco gas (gas type 3) | |
2320 // OR breathing a gas or diluent that officially is disabled (type 0) | |
628 | 2321 // OR there is a deco stop |
631 | 2322 // |
2323 // Remark: when breathing a gas, its lost & staged flags are cleared | |
2324 // | |
628 | 2325 if ( ( deco_info & DECO_MODE ) == 0 ) |
2326 if ( ( char_I_current_gas_type == 3 ) | |
2327 || ( char_I_current_gas_type == 0 ) | |
2328 || ( char_O_deco_depth[0] > 0 ) | |
623 | 2329 ) |
631 | 2330 deco_info |= DECO_MODE; |
623 | 2331 |
2332 | |
2333 //---- Compute ppO2 Warnings ------------------------------------------------------------------ | |
2334 | |
628 | 2335 // compute conditional min value |
623 | 2336 #ifdef _ccr_pscr |
2337 int_ppO2_min = ( main_status & MODE_LOOP ) ? (unsigned short)char_I_ppO2_min_loop : (unsigned short)char_I_ppO2_min; | |
2338 #else | |
2339 int_ppO2_min = (unsigned short)char_I_ppO2_min; | |
2340 #endif | |
2341 | |
628 | 2342 // determine the absolute max value (should be the deco one, but who knows...) |
2343 int_ppO2_max_warn = ( char_I_ppO2_max_work > char_I_ppO2_max_deco) ? char_I_ppO2_max_work : char_I_ppO2_max_deco; | |
2344 | |
2345 // add some margin to compensate for surface pressures > 1.000 mbar | |
2346 int_ppO2_max_warn += ppO2_MARGIN_ON_MAX; | |
2347 | |
2348 // determine the normal max value | |
2349 int_ppO2_max_att = ( deco_info & DECO_MODE ) ? (unsigned short)char_I_ppO2_max_deco : (unsigned short)char_I_ppO2_max_work; | |
2350 | |
2351 // add some margin to compensate for surface pressures > 1.000 mbar | |
2352 int_ppO2_max_att += ppO2_MARGIN_ON_MAX; | |
623 | 2353 |
2354 #ifdef _ccr_pscr | |
628 | 2355 // default value for the upper diluent ppO2 warning threshold is the upper warning threshold |
2356 int_ppO2_max_dil = int_ppO2_max_warn; | |
2357 | |
2358 // when enabled and in CCR mode, the upper diluent warning threshold gets adjust according to the current setpoint | |
631 | 2359 if( char_I_dil_check ) |
623 | 2360 if( (main_status & MODE_MASK) == MODE_CCR ) |
2361 { | |
2362 overlay unsigned short max_dil; | |
2363 | |
2364 // The upper diluent ppO2 threshold is ppO2_GAP_TO_SETPOINT below the setpoint... | |
2365 // (the condition protects from negative numbers which would cause a wrap-around in unsigned integers) | |
2366 max_dil = (char_I_const_ppO2 > ppO2_GAP_TO_SETPOINT) ? (unsigned short)(char_I_const_ppO2 - ppO2_GAP_TO_SETPOINT) : 0; | |
2367 | |
628 | 2368 // ...but never above int_ppO2_max_warn |
2369 if( max_dil < int_ppO2_max_warn ) int_ppO2_max_dil = max_dil; | |
623 | 2370 |
2371 // We do not need to guard int_ppO2_max_dil against becoming lower than char_I_ppO2_min because the check | |
2372 // against char_I_ppO2_min is done first and will then raise a low warning and inhibit further checks. | |
2373 } | |
2374 #endif | |
2375 | |
2376 // check for safe range of breathed gas | |
628 | 2377 if ( int_O_breathed_ppO2 <= int_ppO2_min ) int_O_breathed_ppO2 |= INT_FLAG_WARNING + INT_FLAG_LOW; |
2378 else if ( int_O_breathed_ppO2 >= int_ppO2_max_warn ) int_O_breathed_ppO2 |= INT_FLAG_WARNING + INT_FLAG_HIGH; | |
2379 else if ( deco_info & DECO_MODE ) ; // no attention generated in deco mode | |
2380 else if ( main_status & MODE_LOOP ) ; // no attention generated in loop modes | |
2381 else if ( int_O_breathed_ppO2 >= int_ppO2_max_att ) int_O_breathed_ppO2 |= INT_FLAG_ATTENTION; | |
623 | 2382 |
2383 #ifdef _ccr_pscr | |
2384 // check for safe range of pure oxygen | |
628 | 2385 if ( int_O_O2_ppO2 >= int_ppO2_max_warn ) int_O_O2_ppO2 |= INT_FLAG_WARNING + INT_FLAG_HIGH; |
623 | 2386 |
2387 // check for safe range of pure diluent | |
628 | 2388 if ( int_O_pure_ppO2 <= (unsigned short)char_I_ppO2_min ) int_O_pure_ppO2 |= INT_FLAG_WARNING + INT_FLAG_LOW; |
2389 else if ( int_O_pure_ppO2 >= int_ppO2_max_warn ) int_O_pure_ppO2 |= INT_FLAG_WARNING + INT_FLAG_HIGH; | |
2390 else if ( int_O_pure_ppO2 >= int_ppO2_max_dil ) int_O_pure_ppO2 |= INT_FLAG_ATTENTION; | |
623 | 2391 |
2392 // check for safe range of calculated pSCR loop gas | |
628 | 2393 if ( int_O_pSCR_ppO2 <= int_ppO2_min ) int_O_pSCR_ppO2 |= INT_FLAG_WARNING + INT_FLAG_LOW; |
2394 else if ( int_O_pSCR_ppO2 >= int_ppO2_max_warn ) int_O_pSCR_ppO2 |= INT_FLAG_WARNING + INT_FLAG_HIGH; | |
623 | 2395 #endif |
2396 | |
2397 } // tasks every second / on the first section of the second | |
604 | 2398 |
2399 | |
2400 #ifdef _rx_functions | |
2401 | |
623 | 2402 // only when TR functions are enabled |
2403 if( main_status & TR_FUNCTIONS ) | |
2404 | |
2405 // Tasks every second, if more than 1 invocation per second: on the second section of the second. | |
2406 #if (INVOKES_PER_SECOND > 1) | |
2407 if( ( sequence_timer == 1 ) | |
2408 || ( sequence_timer == INVOKES_PER_SECOND + 1 ) | |
2409 ) | |
2410 #endif | |
604 | 2411 { |
623 | 2412 calc_TR_functions(); |
2413 } | |
2414 | |
2415 #endif // _rx_functions | |
2416 | |
2417 | |
2418 // | |
604 | 2419 //---- End of Computations for the real Tissues ----------------------------------------------- |
2420 // | |
623 | 2421 |
604 | 2422 //============================================================================================= |
623 | 2423 |
604 | 2424 // |
623 | 2425 //---- Begin of Computations for Ascent and Decompression (simulated Tissues) ----------------- |
2426 // | |
2427 | |
2428 // Dispatcher: select what to do based on the current calculation phase | |
2429 do | |
582 | 2430 { |
623 | 2431 |
2432 #ifdef _profiling | |
2433 profiling_phase = next_planning_phase; | |
2434 #endif | |
2435 | |
2436 switch( next_planning_phase ) | |
560 | 2437 { |
623 | 2438 |
2439 // | |
2440 //---- once-per-dive Initialization of the Deco Engine ------------------------------------ | |
2441 // | |
2442 case PHASE_10_DIVE_INIT: | |
2443 | |
2444 // initialize all output variables to defaults | |
2445 init_output_vars(); | |
2446 | |
582 | 2447 // initialize values that will be recalculated later on periodically |
631 | 2448 deco_warnings = 0; // reset all deco warnings |
2449 deco_info = 0; // reset all deco infos | |
2450 IBCD_tissue_vector = 0; // reset tissue IBCD vector | |
2451 NDL_tissue_start_norm = 0; // initialize the tissue to start with when calculating normal NDL time | |
2452 NDL_tissue_start_alt = 0; // initialize the tissue to start with when calculating alternative NDL time | |
623 | 2453 |
2454 // enforce initialization of GF data on first cyclic initialization | |
631 | 2455 GF_high_last = 255; |
2456 GF_low_last = 255; | |
2457 | |
2458 | |
2459 // calculate volumes available for each gas | |
2460 for( i = 0; i < NUM_GAS; i++ ) | |
628 | 2461 { |
631 | 2462 // total available volume = tank size * fill press, char_I_gas_avail_pres is in multiples of 10 bar |
2463 gas_volume_avail[i] = (float)char_I_gas_avail_size[i] * (float)char_I_gas_avail_pres[i] * 10.0; | |
2464 | |
2465 // attention threshold | |
2466 gas_volume_atten[i] = gas_volume_avail[i] * GAS_NEEDS_ATTENTION; | |
628 | 2467 } |
631 | 2468 |
623 | 2469 |
2470 #ifdef _profiling | |
2471 int_O_profiling_overrun_max = 0; | |
2472 char_O_profiling_runs_norm = 0; | |
2473 char_O_profiling_runs_alt = 0; | |
2474 #endif | |
2475 | |
2476 | |
2477 // the next calculation phase will do the cyclic initialization of the deco engine if a | |
2478 // normal or alternative plan shall be calculated, else the calculation cycle is done. | |
628 | 2479 if( deco_status & PLAN_MASK ) next_planning_phase = PHASE_20_CYCLIC_INIT; |
623 | 2480 else next_planning_phase = PHASE_00_DONE; |
2481 | |
2482 break; | |
2483 | |
582 | 2484 |
2485 // | |
628 | 2486 //---- once-per-cycle Initialization of the Deco Engine ----------------------------------- |
582 | 2487 // |
628 | 2488 case PHASE_20_CYCLIC_INIT: |
623 | 2489 |
2490 // target the simulated tissues (flag bit 7 = 0) | |
2491 tissue_increment = 0; | |
2492 | |
2493 // clear the internal stops table | |
582 | 2494 clear_deco_table(); |
604 | 2495 |
631 | 2496 // clear deco stops info |
2497 if( deco_status & CALC_NORM ) deco_info &= ~DECO_STOPS_NORM; | |
2498 else deco_info &= ~DECO_STOPS_ALT; | |
2499 | |
560 | 2500 // initialize the simulated tissues with the current state of the real tissues |
604 | 2501 for( i = 0; i < NUM_COMP; i++ ) |
560 | 2502 { |
623 | 2503 sim_pres_tissue_N2[i] = real_pres_tissue_N2[i]; |
2504 sim_pres_tissue_He[i] = real_pres_tissue_He[i]; | |
582 | 2505 } |
2506 | |
631 | 2507 // initialize the gas types |
2508 for( i = 0; i < NUM_GAS; i++ ) | |
2509 { | |
2510 deco_gas_type[i] = char_I_deco_gas_type[i]; | |
2511 } | |
2512 | |
2513 #ifdef _gas_contingency | |
2514 // if in gas contingency mode, | |
2515 // check if there are multiple tanks with the same gas | |
2516 // (or at least with the same change depth...) | |
2517 if( main_status & GAS_CONTINGENCY ) | |
2518 { | |
2519 for( i = 0; i < NUM_GAS; i++ ) | |
2520 { | |
2521 // default to no peer tanks existing | |
2522 peer_tank[i] = 0; | |
2523 | |
2524 // tank enabled? | |
2525 if( char_I_deco_gas_type[i] ) | |
2526 { | |
2527 // YES - check for peer tanks | |
2528 for( j = 0; j < NUM_GAS; j++ ) | |
2529 { | |
2530 // do not check a tank against itself | |
2531 if( i == j ) continue; | |
2532 | |
2533 // is the other tank also enabled and does it have the same change depth? | |
2534 if( char_I_deco_gas_type[j] & GAS_TYPE_MASK ) | |
2535 if( char_I_deco_gas_change[i] == char_I_deco_gas_change[j] ) | |
2536 { | |
2537 // YES - memorize it as a peer tank | |
2538 peer_tank[i] |= (1 << j); | |
2539 } | |
2540 } | |
2541 } | |
2542 } | |
2543 } | |
2544 #endif | |
2545 | |
623 | 2546 // initialize GF parameters if using GF model |
631 | 2547 if( char_I_model != 0 ) |
604 | 2548 { |
623 | 2549 // update GF parameters (GFs may have been switched between GF and aGF) |
628 | 2550 if( (char_I_GF_Low_percentage != GF_low_last) || (char_I_GF_High_percentage != GF_high_last) ) |
604 | 2551 { |
623 | 2552 // store new values in integer format |
628 | 2553 GF_low_last = char_I_GF_Low_percentage; |
623 | 2554 GF_high_last = char_I_GF_High_percentage; |
628 | 2555 |
2556 // safeguard and store new values in float format | |
2557 GF_low = ( GF_low_last > 10 ) ? 0.01 * GF_low_last : 0.10 ; | |
2558 GF_high = ( GF_high_last > GF_low_last ) ? 0.01 * GF_high_last : GF_low; | |
2559 | |
623 | 2560 |
2561 // reset low depth references and slopes | |
631 | 2562 GF_depth_norm = 0; |
2563 GF_depth_alt = 0; | |
2564 GF_slope_norm = 0.0; | |
2565 GF_slope_alt = 0.0; | |
604 | 2566 } |
623 | 2567 |
2568 // retrieve GF parameters for current calculation cycle | |
2569 if( deco_status & CALC_NORM ) | |
560 | 2570 { |
631 | 2571 GF_depth = GF_depth_norm; |
2572 GF_slope = GF_slope_norm; | |
560 | 2573 } |
2574 else | |
2575 { | |
631 | 2576 GF_depth = GF_depth_alt; |
2577 GF_slope = GF_slope_alt; | |
560 | 2578 } |
604 | 2579 } |
2580 | |
623 | 2581 // initialize the simulated CNS value with the current CNS value of the real tissues |
2582 CNS_fraction_sim = CNS_fraction_real; | |
2583 | |
631 | 2584 // initialize the simulated pressure with the current real pressure |
623 | 2585 sim_pres_respiration = real_pres_respiration; |
631 | 2586 |
2587 // initialize the simulated depth with the current real depth | |
2588 char_depth_sim = char_depth_start = char_depth_real; | |
2589 | |
2590 // cache the gas/dil to start calculations with | |
2591 start_gas_num = char_I_current_gas_num; | |
2592 | |
623 | 2593 |
2594 // Lookup the gas that is currently breathed with the real tissues and set it as | |
2595 // the gas to be used with the simulated tissues, too. This gas will be used until | |
628 | 2596 // gas_find_best()/gas_take_best() is invoked and switches to a better gas. |
2597 gas_take_current(); | |
2598 | |
2599 // Setup the calculation ratio's for N2, He and O2 (sim_N2/He/_O2_ratio). | |
2600 // These ratios can be kept until a gas switch is done. Thus, if a call to | |
2601 // gas_find_best() has found a better gas and this gas is taken by a call | |
2602 // to gas_take_best(), gas_set_ratios() needs to be called again. | |
623 | 2603 gas_set_ratios(); |
2604 | |
2605 // compute ppO2, ppN2 and ppHe for current depth from sim_pres_respiration | |
2606 calc_alveolar_pressures(); | |
2607 | |
2608 // initialize the no decompression limit (NDL) time to 240 minutes | |
2609 NDL_time = 240; | |
2610 | |
631 | 2611 // clear the Total Time to Surface (TTS) and the Total Stops Time (TST) |
2612 TTS_time = 0; | |
2613 TST_time = 0; | |
628 | 2614 |
623 | 2615 // retrieve the tissue that had the shortest NDL time during last calculation |
2616 NDL_tissue_start = ( deco_status & CALC_NORM ) ? NDL_tissue_start_norm : NDL_tissue_start_alt; | |
2617 | |
2618 // start calculating NDL time with the tissue that had the shortest NDL last time | |
2619 NDL_tissue = NDL_tissue_start; | |
2620 NDL_tissue_lead = NDL_tissue_start; | |
2621 | |
631 | 2622 // initialization for convert_volume_to_pressure() |
2623 gas_needs_gas_index = 0; | |
2624 | |
2625 // tag gas needs as not calculated in fTTS mode by default | |
2626 deco_info &= ~GAS_NEEDS_fTTS; | |
623 | 2627 |
628 | 2628 // shall calculate gas needs? |
2629 if( main_status & CALC_VOLUME ) | |
2630 { | |
2631 // set the usage rate (SAC rate), starting with working part of the dive | |
2632 gas_needs_usage_rate = char_I_SAC_work; | |
2633 | |
2634 // clear the gas volume needs for gases 1-5 | |
2635 for( i = 0; i < NUM_GAS; ++i ) gas_volume_need[i] = 0.0; | |
2636 | |
2637 #ifdef _rx_functions | |
2638 // only for OSTC TR model with TR functions enabled | |
2639 if( main_status & TR_FUNCTIONS ) | |
2640 { | |
2641 // invalidate pressure needs to pressure readings | |
2642 int_O_pressure_need[0] = 0 + INT_FLAG_NOT_AVAIL; | |
2643 int_O_pressure_need[1] = 0 + INT_FLAG_NOT_AVAIL; | |
2644 } | |
2645 #endif | |
2646 } | |
623 | 2647 |
631 | 2648 |
2649 #ifdef _cave_mode | |
2650 if( main_status & CAVE_MODE ) | |
2651 { | |
2652 // get the position of the first data set to start the backtracking from | |
2653 backtrack_index = char_I_backtrack_index; | |
2654 | |
2655 // get the first backtracking data set | |
2656 read_backtrack_data(); | |
2657 } | |
2658 #endif | |
2659 | |
2660 | |
623 | 2661 #ifdef _profiling |
2662 profiling_runs = 0; | |
2663 #endif | |
2664 | |
2665 // The next calculation phase will | |
628 | 2666 // - calculate the extended bottom segment if extended bottom time is configured (fTTS), |
2667 // - calculate the bottom segment gas need if gas needs calculation is configured, | |
623 | 2668 // - proceed with calculating the NDL time else. |
628 | 2669 if ( deco_status & DELAYED_ASCENT ) next_planning_phase = PHASE_30_EXTENDED_BOTTOM_TIME; |
2670 else if ( main_status & CALC_VOLUME ) next_planning_phase = PHASE_40_BOTTOM_GAS_NEED; | |
2671 else next_planning_phase = PHASE_50_NDL_TIME; | |
623 | 2672 |
2673 break; | |
2674 | |
2675 | |
2676 // | |
2677 //---- extended Bottom Time --------------------------------------------------------------- | |
2678 // | |
628 | 2679 case PHASE_30_EXTENDED_BOTTOM_TIME: |
623 | 2680 |
631 | 2681 // tag gas needs as calculated in fTTS mode |
2682 deco_info |= GAS_NEEDS_fTTS; | |
2683 | |
623 | 2684 // program interval on simulated tissues (flag bit 7 = 0) |
2685 tissue_increment = char_I_extra_time; | |
2686 | |
628 | 2687 // update the simulated tissues for tissue_increment (char_I_extra_time) minutes at depth, |
2688 // calc_alveolar_pressures() has already been called in cyclic initialization | |
623 | 2689 calc_tissues(); |
2690 | |
628 | 2691 // update the CNS value for tissue_increment (char_I_extra_time) minutes at depth |
623 | 2692 calc_CNS(); |
2693 | |
628 | 2694 // the next calculation phase will |
2695 // - calculate the extended bottom segment gas needs if gas needs calculation is configured, | |
2696 // - proceed with calculating the NDL time else. | |
2697 if ( main_status & CALC_VOLUME ) next_planning_phase = PHASE_40_BOTTOM_GAS_NEED; | |
2698 else next_planning_phase = PHASE_50_NDL_TIME; | |
2699 | |
2700 break; | |
2701 | |
2702 | |
2703 // | |
2704 //---- Bottom Segment Gas Need ------------------------------------------------------------ | |
2705 // | |
2706 case PHASE_40_BOTTOM_GAS_NEED: | |
2707 | |
2708 // on gas 1-5 ? | |
2709 if( sim_gas_current_num ) | |
2710 { | |
631 | 2711 // YES - take either the whole bottom time or just the fTTS/bailout extra time |
628 | 2712 gas_needs_time = ( main_status & CALCULATE_BOTTOM ) ? char_I_bottom_time : char_I_extra_time; |
2713 | |
631 | 2714 // any time to do? |
2715 if( gas_needs_time ) | |
2716 { | |
2717 // YES - set the bottom depth | |
2718 gas_needs_depth = char_depth_start; | |
2719 | |
2720 // calculate required gas volume | |
2721 calc_required_volume(); | |
2722 | |
2723 // take the result | |
2724 gas_volume_need[sim_gas_current_num-1] = gas_needs_volume_due; | |
2725 } | |
628 | 2726 } |
2727 | |
2728 | |
623 | 2729 // the next calculation phase will calculate the NDL time |
628 | 2730 next_planning_phase = PHASE_50_NDL_TIME; |
604 | 2731 |
582 | 2732 break; |
2733 | |
623 | 2734 |
2735 // | |
2736 //---- NDL Time --------------------------------------------------------------------------- | |
2737 // | |
628 | 2738 case PHASE_50_NDL_TIME: |
623 | 2739 |
2740 // Calculate the remaining no decompression limit (NDL) time for the tissue NDL_tissue. | |
2741 // NDL_time will be updated if the NDL time found is shorter than the current NDL_time. | |
2742 // | |
2743 // In the initialization phase of the calculation cycle: | |
2744 // - NDL_time had been initialized to 240 (minutes), | |
2745 // - NDL_tissue had been initialized to the tissue with | |
2746 // the shortest NDL time in the last cycle. | |
2747 // | |
2748 calc_NDL_time_tissue(); | |
2749 | |
2750 // advance to next tissue, wrapping around after last tissue | |
2751 NDL_tissue = (NDL_tissue + 1) & (NUM_COMP - 1); | |
2752 | |
2753 // did we run out of NDL time or did we have probed all tissues? | |
2754 if( (NDL_time == 0) || (NDL_tissue == NDL_tissue_start) ) | |
2755 { | |
2756 // YES | |
2757 | |
2758 // set the tissue with the shortest NDL time found as | |
2759 // the one to start with in the next calculation cycle | |
2760 if( deco_status & CALC_NORM ) NDL_tissue_start_norm = NDL_tissue_lead; | |
2761 else NDL_tissue_start_alt = NDL_tissue_lead; | |
2762 | |
631 | 2763 // done with calculating NDL time, next phase will calculate the ascent / cave return |
2764 next_planning_phase = PHASE_70_ASCENT_OR_RETURN; | |
623 | 2765 } |
2766 | |
2767 break; | |
2768 | |
2769 | |
560 | 2770 // |
631 | 2771 //---- Ascent or Return (cave mode) ------------------------------------------------------- |
560 | 2772 // |
631 | 2773 case PHASE_70_ASCENT_OR_RETURN: |
2774 | |
560 | 2775 { |
631 | 2776 overlay unsigned char doing_deco_stop = 0; |
2777 overlay unsigned char doing_gas_change = 0; | |
2778 | |
2779 | |
2780 // target simulated tissues, default is 1 minute interval | |
2781 tissue_increment = 1; | |
2782 | |
2783 // check if a deco stop is required: | |
2784 // - stays at the current depth if a stop is required, | |
2785 // - ascents to the next stop if possible, else | |
2786 // - ascents by 1 meter | |
2787 if( find_next_stop() ) | |
2788 { | |
2789 //---- stop required -------------------- | |
2790 | |
2791 // memorize doing a deco stop | |
2792 doing_deco_stop = 1; | |
2793 | |
2794 // set flag for deco stops found | |
2795 if( deco_status & CALC_NORM ) deco_info |= DECO_STOPS_NORM; | |
2796 else deco_info |= DECO_STOPS_ALT; | |
2797 | |
2798 // encountered a deco stop, so switch to deco usage rate (SAC deco) | |
2799 gas_needs_usage_rate = char_I_SAC_deco; | |
2800 | |
2801 // check if there is a better gas to switch to | |
2802 if( gas_find_best() ) | |
2803 { | |
2804 // YES - memorize doing a gas change | |
2805 doing_gas_change = 1; | |
2806 | |
2807 // take the gas | |
2808 gas_take_best(); | |
2809 | |
2810 // set the new calculation ratios for N2, He and O2 | |
2811 gas_set_ratios(); | |
2812 | |
2813 // add the gas change time to the stop time | |
2814 tissue_increment += char_I_gas_change_time; | |
2815 } | |
2816 | |
2817 // add the stop to an existing stop or add a new stop | |
2818 update_deco_table(tissue_increment); | |
2819 } | |
2820 else | |
623 | 2821 { |
631 | 2822 //---- no stop required ----------------- |
2823 | |
2824 // switch to 1/10 minute interval | |
2825 tissue_increment = 0; | |
2826 | |
2827 // memorize not doing a deco stop | |
2828 doing_deco_stop = 0; | |
2829 | |
2830 // check if there is a better gas to switch to, but only: | |
2831 // | |
2832 // if extended stops are activated OR if cave mode is enabled OR if in bailout | |
2833 // AND if the actual depth (char_depth_start) is deeper or at the change | |
2834 // depth of the better gas (change depth has not been passed yet) *) | |
2835 // AND if the depth of the last stop is above (shallower) or at the change | |
2836 // depth of the better gas (do not switch on final ascent) *) | |
2837 // | |
2838 // *) skipped when calculating in cave mode | |
2839 // | |
2840 // Attention: do not use a && formula over all 'if' terms, the | |
2841 // conditions need to be evaluated in the given order! | |
2842 // | |
2843 if( ( main_status & EXTENDED_STOPS ) | |
2844 || ( main_status & CAVE_MODE ) | |
2845 || ( deco_status & BAILOUT_MODE ) | |
2846 ) | |
2847 if( gas_find_best() ) | |
2848 #ifdef _cave_mode | |
2849 if( ( char_depth_start >= sim_gas_best_depth ) || ( main_status & CAVE_MODE ) ) | |
2850 if( ( char_I_last_stop_depth <= sim_gas_best_depth ) || ( main_status & CAVE_MODE ) ) | |
2851 #else | |
2852 if( ( char_depth_start >= sim_gas_best_depth ) ) | |
2853 if( ( char_I_last_stop_depth <= sim_gas_best_depth ) ) | |
2854 #endif | |
623 | 2855 { |
631 | 2856 // YES - memorize doing a gas change |
2857 doing_gas_change = 1; | |
2858 | |
2859 // take the gas | |
2860 gas_take_best(); | |
2861 | |
2862 // set the new calculation values for N2, He and O2 | |
2863 gas_set_ratios(); | |
2864 | |
2865 // create a stop lasting the gas change time | |
628 | 2866 tissue_increment = char_I_gas_change_time; |
2867 | |
631 | 2868 // if in deco and run from the deco calculator: |
2869 // create a stop for the gas change in the stops table | |
2870 if( !NDL_time && (deco_status & DECO_CALCULATOR_MODE) ) | |
2871 update_deco_table(tissue_increment); | |
2872 } | |
2873 | |
2874 } // stop / no stop | |
2875 | |
2876 | |
2877 #ifdef _cave_mode | |
2878 // cave mode actions | |
2879 if( main_status & CAVE_MODE ) | |
2880 { | |
2881 // doing a deco stop? | |
2882 if( doing_deco_stop ) | |
2883 { | |
2884 // YES - not moving, reset the 1/10 minute steps counter | |
2885 backtrack_step_counter = 10; | |
623 | 2886 } |
631 | 2887 else |
2888 { | |
2889 // NO - on the move, switch back to SAC work | |
2890 gas_needs_usage_rate = char_I_SAC_work; | |
2891 | |
2892 // - decrement the 1/10 minute steps counter if not already zero | |
2893 if( backtrack_step_counter ) backtrack_step_counter--; | |
2894 | |
2895 // - target backtracking depth reached? | |
2896 if( char_depth_sim == backtrack_target_depth ) | |
2897 { | |
2898 // YES - on target depth | |
2899 | |
2900 // target depth reached within first 1/10 minute? | |
2901 if( backtrack_step_counter == 9 ) | |
2902 { | |
2903 // YES - will not change depth any more while remaining 9/10 of | |
2904 // the minute, so can do the full full minute in one step | |
2905 tissue_increment = 1; | |
2906 backtrack_step_counter = 0; | |
2907 } | |
2908 | |
2909 // on the move for a minute or more now? | |
2910 // (incl. doing full minute in one step) | |
2911 if( backtrack_step_counter == 0 ) | |
2912 { | |
2913 // YES - get the data of the next backtracking data set | |
2914 read_backtrack_data(); | |
2915 } | |
2916 } | |
2917 } | |
2918 } // cave mode | |
2919 #endif | |
628 | 2920 |
2921 // shall calculate gas needs? | |
2922 if( main_status & CALC_VOLUME ) | |
2923 { | |
631 | 2924 overlay unsigned char index_last_gas = sim_gas_last_num-1; |
2925 overlay unsigned char index_curr_gas = sim_gas_current_num-1; | |
2926 | |
2927 #ifdef _cave_mode | |
2928 // in cave mode? | |
2929 if( main_status & CAVE_MODE ) | |
2930 { | |
2931 // YES - set the depth for the gas needs calculation to the | |
2932 // simulated stop / on-the-move depth | |
2933 gas_needs_depth = char_depth_sim; | |
2934 } | |
2935 else | |
2936 #endif | |
2937 { | |
2938 // NO - set the depth for the gas needs calculation to the shallower | |
2939 // one of the actual depth (char_depth_start, current real depth) | |
2940 // and the simulated (stop) depth, as we may on purpose dive | |
2941 // shallower than we should to conserve on a low running gas supply | |
2942 gas_needs_depth = ( char_depth_start < char_depth_sim ) ? | |
2943 char_depth_start : char_depth_sim; | |
2944 } | |
2945 | |
2946 // doing a gas change and a gas change time is set? | |
2947 if( doing_gas_change && char_I_gas_change_time ) | |
628 | 2948 { |
2949 // YES - set time it takes for switching the gas | |
2950 gas_needs_time = char_I_gas_change_time; | |
2951 | |
631 | 2952 // - calculate required gas volume for the gas change |
2953 calc_required_volume(); | |
2954 | |
2955 // - add gas change demand to overall demand on the last gas | |
2956 if( sim_gas_last_num ) gas_volume_need[index_last_gas] += gas_needs_volume_due; | |
2957 | |
2958 // - add gas change demand to overall demand on the current gas | |
2959 if( sim_gas_current_num ) gas_volume_need[index_curr_gas] += gas_needs_volume_due; | |
628 | 2960 } |
2961 | |
631 | 2962 // current gas is 1-5 ? (i.e. not 0 aka gas 6) |
628 | 2963 if( sim_gas_current_num ) |
2964 { | |
631 | 2965 // set time: doing a deco stop -> 1 minute, encoded by tissue_increment = 1 |
2966 // no deco stop -> 1/10 minute, encoded by tissue_increment = 0 | |
628 | 2967 gas_needs_time = tissue_increment; |
2968 | |
631 | 2969 // calculate required gas volume for the stop, ascent or travel |
2970 calc_required_volume(); | |
628 | 2971 |
2972 // add the demand to the overall demand on the current gas | |
631 | 2973 gas_volume_need[index_curr_gas] += gas_needs_volume_due; |
628 | 2974 } |
631 | 2975 |
2976 #ifdef _gas_contingency | |
2977 // in gas contingency mode? | |
2978 if( main_status & GAS_CONTINGENCY ) | |
628 | 2979 { |
631 | 2980 overlay unsigned char all_peer_tanks_used_up = 1; |
2981 | |
2982 | |
2983 // when doing a gas change and the there is an overdraw on the last gas, | |
2984 // then transfer the overdraw to the current gas if the current gas has | |
2985 // an equal or deeper change depth than the overdrawn gas | |
2986 if( doing_gas_change ) | |
2987 if( gas_volume_need[index_last_gas] >= gas_volume_avail[index_last_gas] ) | |
2988 if( char_I_deco_gas_change[index_last_gas] <= char_I_deco_gas_change[index_curr_gas] ) | |
2989 { | |
2990 overlay float overdraw; | |
2991 | |
2992 // calculate overdraw | |
2993 overdraw = gas_volume_need[index_last_gas] - gas_volume_avail[index_last_gas]; | |
2994 | |
2995 // transfer overdraw | |
2996 gas_volume_need[index_last_gas] -= overdraw; | |
2997 gas_volume_need[index_curr_gas] += overdraw; | |
2998 | |
2999 // tag last gas as fully used up | |
3000 deco_gas_type[index_last_gas] |= GAS_FULLY_USED_UP; | |
3001 } | |
3002 | |
3003 // if there are peer tanks with the current gas (i.e. other tanks that have the same | |
3004 // change depth), check if there is at least one tank that is not yet fully used up | |
3005 if( peer_tank[index_curr_gas] ) | |
628 | 3006 { |
631 | 3007 // scan all tanks |
3008 for( i = 0; i < NUM_GAS; i++ ) | |
3009 { | |
3010 // check if | |
3011 // - tank is a peer tank | |
3012 // - tank is currently neither staged nor lost | |
3013 // - tank is not fully used up yet | |
3014 if( (peer_tank[index_curr_gas] & (1 << i) ) ) | |
3015 if( !(deco_gas_type[i] & GAS_AVAIL_MASK ) ) | |
3016 if( !(deco_gas_type[i] & GAS_FULLY_USED_UP) ) | |
3017 { | |
3018 // found a peer tank that is available and not fully used up yet | |
3019 all_peer_tanks_used_up = 0; | |
3020 } | |
3021 } | |
3022 } | |
3023 | |
3024 // select which threshold is sensible to check for | |
3025 if ( deco_gas_type[index_curr_gas] & GAS_FULLY_USED_UP ) | |
3026 { | |
3027 // already found as fully used up, nothing to do any more | |
628 | 3028 } |
631 | 3029 else if( deco_gas_type[index_curr_gas] & GAS_NEARLY_USED_UP ) |
3030 { | |
3031 // check for fully used up threshold | |
3032 if( gas_volume_need[index_curr_gas] >= gas_volume_avail[index_curr_gas] ) | |
3033 { | |
3034 // tag the gas as fully used up | |
3035 deco_gas_type[index_curr_gas] |= GAS_FULLY_USED_UP; | |
3036 | |
3037 // set warning if all peer tanks are fully used up, too | |
3038 if( all_peer_tanks_used_up ) deco_gas_type[index_curr_gas] |= GAS_NEED_WARNING; | |
3039 } | |
3040 } | |
3041 else | |
3042 { | |
3043 // check for nearly used up threshold | |
3044 if( gas_volume_need[index_curr_gas] >= gas_volume_atten[index_curr_gas] ) | |
3045 { | |
3046 // tag the gas as nearly used up | |
3047 deco_gas_type[index_curr_gas] |= GAS_NEARLY_USED_UP; | |
3048 | |
3049 // set attention if all peer tanks are already fully used up | |
3050 if( all_peer_tanks_used_up ) deco_gas_type[index_curr_gas] |= GAS_NEED_ATTENTION; | |
3051 } | |
3052 } | |
3053 } | |
3054 #endif // _gas_contingency | |
3055 | |
3056 } // gas needs | |
3057 | |
3058 // update the total stops time | |
3059 if( doing_deco_stop ) | |
628 | 3060 { |
631 | 3061 // total stops time is counted in full minutes, add 1 minute |
3062 TST_time += 1; | |
3063 } | |
3064 | |
3065 // update the total ascent / cave return time | |
3066 if( tissue_increment ) | |
3067 { | |
3068 // total time to surface is counted in 1/10 minutes, add 1 minute | |
3069 TTS_time += 10 * tissue_increment; | |
3070 } | |
3071 else | |
3072 { | |
3073 // total time to surface is counted in 1/10 minutes, add 1/10 minute | |
3074 TTS_time += 1; | |
3075 } | |
3076 | |
3077 } // overlay | |
3078 | |
3079 // calculate absolute pressure at the current depth | |
3080 sim_pres_respiration = (float)char_depth_sim * METER_TO_BAR + pres_surface; | |
582 | 3081 |
604 | 3082 // compute current ppO2, ppN2 and ppHe |
582 | 3083 calc_alveolar_pressures(); |
3084 | |
560 | 3085 // update the tissues |
582 | 3086 calc_tissues(); |
604 | 3087 |
631 | 3088 // update the CNS |
604 | 3089 calc_CNS(); |
623 | 3090 |
631 | 3091 // finish stops calculation if the surface is reached or |
3092 // if the deco table is full / calculations took too long | |
3093 if( (char_depth_sim == 0) || (deco_warnings & DECO_WARNING_INCOMPLETE) ) | |
3094 next_planning_phase = PHASE_80_RESULTS; | |
623 | 3095 |
3096 break; | |
3097 | |
3098 | |
3099 /// | |
3100 //--- Results - Initialization ------------------------------------------------------------ | |
3101 // | |
628 | 3102 case PHASE_80_RESULTS: |
3103 | |
3104 // convert the CNS value to integer | |
3105 convert_sim_CNS_for_display(); | |
3106 | |
631 | 3107 // normal or alternative plan? |
628 | 3108 if( deco_status & CALC_NORM ) |
3109 { | |
631 | 3110 // normal plan - export the integer CNS value |
628 | 3111 int_O_CNS_norm = int_sim_CNS_fraction; |
3112 } | |
3113 else | |
3114 { | |
631 | 3115 // alternative plan - export the integer CNS value |
628 | 3116 int_O_CNS_alt = int_sim_CNS_fraction; |
3117 } | |
623 | 3118 |
631 | 3119 // limit total time to surface to display max. and rescale to full minutes |
3120 if( TTS_time < 9995 ) TTS_time = (TTS_time + 5) / 10; | |
3121 else TTS_time = 999 | INT_FLAG_INVALID; | |
3122 | |
623 | 3123 // The next calculation phase will |
3124 // - publish the stops table if in normal plan mode, | |
3125 // - proceed with remaining results dependent on if within NDL, or | |
3126 // - in deco | |
628 | 3127 if ( deco_status & CALC_NORM ) next_planning_phase = PHASE_81_RESULTS_STOPS_TABLE; |
3128 else if ( NDL_time ) next_planning_phase = PHASE_82_RESULTS_NDL; | |
3129 else next_planning_phase = PHASE_83_RESULTS_DECO; | |
623 | 3130 |
3131 break; | |
3132 | |
3133 | |
3134 /// | |
3135 //--- Publish Stops Table ----------------------------------------------------------------- | |
3136 // | |
628 | 3137 case PHASE_81_RESULTS_STOPS_TABLE: |
623 | 3138 |
3139 // publish the stops table to the display functions | |
3140 publish_deco_table(); | |
3141 | |
3142 // When entering deco and the ceiling depth becomes > 0 but the | |
3143 // deco calculation reveals no distinct deco stop yet because | |
3144 // the deco obligation will vanish during the ascent, create an | |
3145 // artificial stop to signal that expedite surfacing ("popping | |
3146 // up") is not allowed anymore. | |
631 | 3147 if( char_O_deco_depth[0] == 0 ) // simulated ascent reveals no required stops |
3148 if( int_O_ceiling > 0 ) // real tissues have a ceiling | |
623 | 3149 { |
3150 // set a pro forma stop at the configured last stop depth | |
631 | 3151 char_O_deco_depth[0] = char_I_last_stop_depth; |
623 | 3152 |
3153 // set a stop time of 0 minutes, this will be displayed as "..'" | |
3154 char_O_deco_time[0] = 0; | |
3155 } | |
3156 | |
3157 // The next calculation phase will publish the main results dependent on being | |
3158 // - within NDL, | |
3159 // - in deco. | |
628 | 3160 if ( NDL_time ) next_planning_phase = PHASE_82_RESULTS_NDL; |
3161 else next_planning_phase = PHASE_83_RESULTS_DECO; | |
623 | 3162 |
3163 break; | |
3164 | |
3165 | |
3166 /// | |
3167 //--- Results - within NDL ---------------------------------------------------------------- | |
3168 // | |
628 | 3169 case PHASE_82_RESULTS_NDL: |
623 | 3170 |
631 | 3171 // normal or alternative plan? |
623 | 3172 if( deco_status & CALC_NORM ) |
3173 { | |
631 | 3174 // normal plan - output the NDL and TTS time |
3175 int_O_NDL_norm = NDL_time; | |
3176 int_O_TTS_norm = TTS_time; | |
3177 | |
3178 // clear the stops time | |
3179 int_O_TST_norm = 0; | |
623 | 3180 } |
3181 else | |
3182 { | |
631 | 3183 // alternative plan - output the NDL time |
3184 int_O_NDL_alt = NDL_time; | |
3185 int_O_TTS_alt = TTS_time; | |
3186 | |
3187 // clear the alternative TTS and stops time | |
3188 int_O_TST_alt = 0 + INT_FLAG_ZERO; | |
623 | 3189 } |
3190 | |
3191 // The next calculation phase will | |
631 | 3192 // - convert the gas needs from volume to pressure if gas needs calculation is configured |
3193 // - else finish the calculation cycle | |
3194 if ( main_status & CALC_VOLUME ) next_planning_phase = PHASE_84_GAS_NEEDS_PRESSURES; | |
3195 else next_planning_phase = PHASE_90_FINISH; | |
623 | 3196 |
3197 break; | |
3198 | |
3199 | |
3200 /// | |
3201 //--- Results - in Deco ------------------------------------------------------------------- | |
3202 // | |
628 | 3203 case PHASE_83_RESULTS_DECO: |
3204 | |
631 | 3205 // limit total stops time to display max. |
3206 if( TST_time > 999 ) TST_time = 999 | INT_FLAG_INVALID; | |
3207 | |
3208 | |
3209 // normal or alternative plan? | |
623 | 3210 if( deco_status & CALC_NORM ) |
3211 { | |
631 | 3212 // normal plan - clear the normal NDL time |
3213 int_O_NDL_norm = 0; | |
3214 | |
3215 // export the TTS and total stops time | |
3216 int_O_TTS_norm = TTS_time; | |
3217 int_O_TST_norm = TST_time; | |
623 | 3218 } |
3219 else | |
3220 { | |
631 | 3221 // alternative plan - clear the alternative NDL time |
3222 int_O_NDL_alt = 0; | |
3223 | |
3224 // export the TTS and total stops time | |
3225 int_O_TTS_alt = TTS_time; | |
3226 int_O_TST_alt = TST_time; | |
623 | 3227 } |
3228 | |
3229 // The next calculation phase will | |
631 | 3230 // - convert the gas needs from volume to pressure if gas needs calculation is configured |
3231 // - else finish the calculation cycle | |
3232 if ( main_status & CALC_VOLUME ) next_planning_phase = PHASE_84_GAS_NEEDS_PRESSURES; | |
3233 else next_planning_phase = PHASE_90_FINISH; | |
623 | 3234 |
3235 break; | |
3236 | |
3237 | |
3238 // | |
628 | 3239 //--- Results - convert Gas Needs Volumes to Pressures ------------------------------------ |
623 | 3240 // |
628 | 3241 case PHASE_84_GAS_NEEDS_PRESSURES: |
623 | 3242 |
3243 // convert required volume of the gas pointed to by gas_needs_gas_index | |
3244 // into the respective pressure and set the flags | |
631 | 3245 convert_volume_to_pressure(); |
623 | 3246 |
3247 // increment index to address next gas | |
3248 gas_needs_gas_index++; | |
3249 | |
3250 // if all gases have been converted, advance to next calculation phase | |
631 | 3251 #ifdef _cave_mode |
3252 if( gas_needs_gas_index == NUM_GAS ) next_planning_phase = PHASE_85_GAS_NEEDS_CAVE; | |
3253 #else | |
623 | 3254 if( gas_needs_gas_index == NUM_GAS ) next_planning_phase = PHASE_90_FINISH; |
631 | 3255 #endif |
623 | 3256 |
3257 break; | |
3258 | |
3259 | |
631 | 3260 #ifdef _cave_mode |
3261 // | |
3262 //--- Results - tag Gas Needs as Cave or Open Water Mode ---------------------------------- | |
3263 // | |
3264 case PHASE_85_GAS_NEEDS_CAVE: | |
3265 | |
3266 // in cave mode? | |
3267 if( main_status & CAVE_MODE ) | |
3268 { | |
3269 // YES - tag gas needs as calculated in cave mode (return along recorded depth profile) | |
3270 deco_info |= GAS_NEEDS_CAVE; | |
3271 } | |
3272 else | |
3273 { | |
3274 // NO - tag gas needs as calculated in open water mode (vertical ascent) | |
3275 deco_info &= ~GAS_NEEDS_CAVE; | |
3276 } | |
3277 | |
3278 // advance to next calculation phase | |
3279 next_planning_phase = PHASE_90_FINISH; | |
3280 | |
3281 break; | |
3282 #endif | |
3283 | |
3284 | |
623 | 3285 // |
3286 //--- finish Calculation Cycle ------------------------------------------------------------ | |
3287 // | |
3288 case PHASE_90_FINISH: | |
3289 | |
3290 // Check if deco obligation is steady state or decreasing. | |
631 | 3291 // Update the result only: |
3292 // - if an alternative plan is enabled, and | |
3293 // - if a valid alternative plan TTS exists, and | |
3294 // - if it is not a bailout plan | |
3295 if( (deco_status & CALC_ALT ) ) | |
635
9a64914a8fca
3.10 re-release addressing some minor issues and language fixes
heinrichsweikamp
parents:
634
diff
changeset
|
3296 if( !(int_O_TTS_alt & INT_FLAG_INVALID) ) |
631 | 3297 if( !(deco_status & BAILOUT_MODE ) ) |
623 | 3298 { |
628 | 3299 if( int_O_TTS_alt < int_O_TTS_norm ) deco_info |= DECO_ZONE; |
3300 if( int_O_TTS_alt > int_O_TTS_norm ) deco_info &= ~DECO_ZONE; | |
623 | 3301 } |
3302 | |
3303 // export updated deco infos and warnings | |
3304 char_O_deco_info = deco_info; | |
3305 char_O_deco_warnings = deco_warnings; | |
3306 | |
3307 // restore command flag to indicate that deco calculation cycle has finished | |
3308 char_O_deco_status = deco_status; | |
3309 | |
3310 // signal end of deco calculation | |
3311 next_planning_phase = PHASE_00_DONE; | |
3312 | |
3313 break; | |
3314 | |
3315 } // switch | |
3316 | |
3317 // read timer 5, result will be stored in tmr5_value (in 1/32 ms) and tmr5_overflow | |
3318 read_tmr5(); | |
3319 | |
3320 } // sequence calculation phases while not timed out and calculation cycle is not finished | |
3321 while( (tmr5_overflow == 0) && ( next_planning_phase != PHASE_00_DONE ) ); | |
3322 | |
3323 // report where we are in terms of depth reached, used in deco calculator to show deco calculation progress | |
3324 char_O_depth_sim = char_depth_sim; | |
3325 | |
3326 | |
3327 #ifdef _profiling | |
3328 | |
3329 //---- Performance Measurement ------------------------------------------- | |
3330 | |
3331 // convert timer 5 readout into ms | |
3332 profiling_runtime = tmr5_value / 32; | |
3333 | |
3334 // actual runtime longer than target runtime? | |
3335 if( tmr5_overflow ) | |
3336 { | |
3337 // YES - report excess | |
3338 int_O_profiling_overrun = profiling_runtime; | |
3339 | |
3340 // - excess > max we had so far? | |
3341 if( int_O_profiling_overrun > int_O_profiling_overrun_max ) | |
3342 { | |
3343 // YES - update max | |
3344 int_O_profiling_overrun_max = int_O_profiling_overrun; | |
3345 | |
3346 // - store the causing phase | |
3347 char_O_profiling_overrun_phase = profiling_phase; | |
3348 } | |
560 | 3349 } |
623 | 3350 else |
3351 { | |
3352 // NO - calculate unused budget and flag it to be under-run time | |
3353 int_O_profiling_overrun = (2048 - profiling_runtime) | 0x8000; | |
3354 } | |
3355 | |
3356 // increment number of runs in current cycle | |
3357 profiling_runs += 1; | |
3358 | |
3359 // planning cycle completed? | |
3360 if( next_planning_phase == PHASE_00_DONE ) | |
3361 { | |
3362 // YES - export number of runs it took | |
3363 if( deco_status & COMPLETED_NORM ) char_O_profiling_runs_norm = profiling_runs; | |
3364 else char_O_profiling_runs_alt = profiling_runs; | |
3365 } | |
3366 | |
3367 #endif | |
3368 | |
3369 } | |
3370 | |
3371 | |
3372 ////////////////////////////////////////////////////////////////////////////// | |
3373 // calc_hauptroutine_data_input | |
3374 // | |
3375 // Set all C-code dive parameters from their ASM-code values. | |
3376 // | |
3377 void calc_hauptroutine_data_input(void) | |
3378 { | |
3379 overlay float IG_ratio; | |
3380 | |
3381 // safeguard and convert the surface pressure (mbar -> bar) (*) | |
3382 if( int_I_pres_surface < 500 ) pres_surface = 0.500; | |
3383 else pres_surface = 0.001 * int_I_pres_surface; | |
3384 | |
3385 // safeguard and convert the current real pressure | |
3386 if( int_I_pres_respiration < 500 ) real_pres_respiration = 0.500; | |
3387 else real_pres_respiration = 0.001 * int_I_pres_respiration; | |
3388 | |
3389 // safeguard further parameters to protect the tissue-flag and the stop table | |
3390 if( char_I_sim_advance_time > 127 ) char_I_sim_advance_time = 127; | |
3391 if( char_I_extra_time > 127 ) char_I_extra_time = 127; | |
3392 if( char_I_gas_change_time > 99 ) char_I_gas_change_time = 99; | |
3393 | |
628 | 3394 |
3395 // compute the depth in meters where we are now | |
3396 float_depth_real = (real_pres_respiration - pres_surface) * BAR_TO_METER; | |
3397 | |
3398 // convert to integer and round up to next full meter | |
3399 char_depth_real = (unsigned char)(float_depth_real + 0.99); | |
3400 | |
3401 | |
623 | 3402 // calculate partial pressure of N2 in respired air at surface pressure |
3403 calc_N2_equilibrium(); | |
3404 | |
3405 // get, safeguard and convert the saturation and desaturation factors | |
3406 get_saturation_factors(); | |
3407 | |
3408 #ifdef _ccr_pscr | |
3409 // compute a factor that will be used later on for pSCR ppO2 drop calculation (*) | |
3410 float_pSCR_factor = 0.01 * char_I_PSCR_drop * char_I_PSCR_lungratio; | |
3411 #endif | |
3412 | |
3413 #ifdef _helium | |
3414 // get the currently breathed gas ratios | |
3415 real_O2_ratio = 0.01 * char_I_O2_ratio; | |
3416 real_He_ratio = 0.01 * char_I_He_ratio; | |
3417 | |
3418 // calculate the inert gas ratio (local helper variable) | |
3419 IG_ratio = 1.00 - real_O2_ratio; | |
3420 | |
3421 // calculate the N2 ratio | |
3422 real_N2_ratio = IG_ratio - real_He_ratio; | |
3423 #else | |
3424 // get the currently breathed O2 ratio | |
3425 real_O2_ratio = 0.01 * char_I_O2_ratio; | |
3426 | |
3427 // set the He ratio to zero | |
3428 real_He_ratio = 0.0; | |
3429 | |
3430 // calculate the N2 / inert gas ratio | |
3431 real_N2_ratio = IG_ratio = 1.00 - real_O2_ratio; | |
3432 #endif // _helium | |
3433 | |
3434 #ifdef _ccr_pscr | |
3435 // calculate ppO2 drop in pSCR loop for real tissues | |
3436 real_pSCR_drop = IG_ratio * float_pSCR_factor; | |
3437 #endif | |
3438 | |
0 | 3439 } |
3440 | |
3441 | |
3442 ////////////////////////////////////////////////////////////////////////////// | |
582 | 3443 // calc_tissues |
0 | 3444 // |
623 | 3445 // INPUT: ppN2 partial pressure of inspired N2 |
3446 // ppHe partial pressure of inspired He | |
631 | 3447 // tissue_increment tissue selector (real or simulated) and interval time |
623 | 3448 // |
3449 // MODIFIED: real_pres_tissue_N2[] tissue N2 pressures (in real tissues context) | |
3450 // real_pres_tissue_He[] tissue He pressures (in real tissues context) | |
3451 // sim_pres_tissue_N2[] tissue N2 pressures (in simulated tissues context) | |
3452 // sim_pres_tissue_He[] tissue He pressures (in simulated tissues context) | |
3453 // | |
3454 // OUTPUT: char_O_tissue_pres_N2[] tissue N2 pressures scaled for display purpose (in real tissues context) | |
3455 // char_O_tissue_pres_He[] tissue He pressures scaled for display purpose (in real tissues context) | |
3456 // char_O_tissue_pressure[] combined tissue pressures scaled for display purpose (in real tissue context) | |
582 | 3457 // |
3458 static void calc_tissues() | |
0 | 3459 { |
623 | 3460 overlay unsigned char period; |
560 | 3461 overlay float temp_tissue_N2; |
623 | 3462 |
3463 #ifdef _helium | |
560 | 3464 overlay float temp_tissue_He; |
623 | 3465 #endif |
582 | 3466 |
3467 | |
3468 assert( 0.00 <= ppN2 && ppN2 < 11.2 ); // 80% N2 at 130m | |
3469 assert( 0.00 <= ppHe && ppHe < 12.6 ); // 90% He at 130m | |
3470 | |
3471 | |
604 | 3472 for( ci=0; ci < NUM_COMP; ci++ ) // iterate through all compartments |
582 | 3473 { |
631 | 3474 i = tissue_increment & TIME_MASK; // i > 0: do a number of i full minutes |
3475 // I = 0: do 2 (real tissues) or 6 (simulated tissues) seconds | |
3476 | |
3477 if( i == 0 ) // check if we shall do one 2 or 6 seconds interval | |
560 | 3478 { |
631 | 3479 read_Buhlmann_times(0); // YES - program coefficients for a 2 or 6 seconds period |
623 | 3480 period = 1; // - set period length (in cycles) |
3481 i = 1; // - and one cycle to do | |
560 | 3482 } |
582 | 3483 else if( i > 9 ) // check if we can start with 10 minutes periods |
560 | 3484 { |
623 | 3485 read_Buhlmann_times(2); // YES - program coefficients for 10 minutes periods |
3486 period = 10; // set period length (in cycles) to ten | |
560 | 3487 } |
623 | 3488 else // last but not lease, do 1 to 9 minutes |
560 | 3489 { |
623 | 3490 read_Buhlmann_times(1); // NO - program coefficients for 1 minute periods |
3491 period = 1; // - set period length (in cycles) to one | |
560 | 3492 } |
3493 | |
3494 do | |
3495 { | |
623 | 3496 //---- N2 -------------------------------------------------------- |
3497 | |
3498 temp_tissue = (tissue_increment & TISSUE_SELECTOR) ? real_pres_tissue_N2[ci] : sim_pres_tissue_N2[ci]; | |
560 | 3499 |
3500 temp_tissue = (ppN2 - temp_tissue) * var_N2_e; | |
3501 | |
623 | 3502 apply_saturation_factors(); |
3503 | |
3504 if( tissue_increment & TISSUE_SELECTOR ) | |
560 | 3505 { |
623 | 3506 temp_tissue_N2 = temp_tissue; |
3507 real_pres_tissue_N2[ci] += temp_tissue; | |
560 | 3508 } |
3509 else | |
3510 { | |
623 | 3511 sim_pres_tissue_N2[ci] += temp_tissue; |
560 | 3512 } |
3513 | |
623 | 3514 #ifdef _helium |
3515 //---- He -------------------------------------------------------- | |
3516 | |
3517 temp_tissue = (tissue_increment & TISSUE_SELECTOR) ? real_pres_tissue_He[ci] : sim_pres_tissue_He[ci]; | |
560 | 3518 |
3519 temp_tissue = (ppHe - temp_tissue) * var_He_e; | |
3520 | |
623 | 3521 apply_saturation_factors(); |
3522 | |
3523 if( tissue_increment & TISSUE_SELECTOR ) | |
560 | 3524 { |
623 | 3525 temp_tissue_He = temp_tissue; |
3526 real_pres_tissue_He[ci] += temp_tissue; | |
560 | 3527 } |
3528 else | |
3529 { | |
623 | 3530 sim_pres_tissue_He[ci] += temp_tissue; |
560 | 3531 } |
623 | 3532 #endif |
3533 | |
3534 //---- decrement loop counter and adjust step size --------------- | |
560 | 3535 |
3536 // decrement loop counter | |
3537 i -= period; | |
582 | 3538 |
560 | 3539 // check if we need to switch from 10 minute periods to 1 minute periods |
3540 if( (i > 0) && (period = 10) && (i < 10) ) | |
3541 { | |
582 | 3542 read_Buhlmann_times(1); // program coefficients for 1 minute periods |
560 | 3543 period = 1; // set period length (in cycles) to one |
3544 } | |
3545 } | |
3546 while( i ); | |
582 | 3547 |
3548 | |
560 | 3549 // have the computations been done for the "real" tissues? |
623 | 3550 if( tissue_increment & TISSUE_SELECTOR ) |
560 | 3551 { |
623 | 3552 |
3553 #ifdef _helium | |
3554 | |
560 | 3555 // net tissue balance |
3556 temp_tissue = temp_tissue_N2 + temp_tissue_He; | |
582 | 3557 |
623 | 3558 |
560 | 3559 // check tissue on-/off-gassing and IBCD with applying a threshold of +/-HYST |
3560 // | |
584 | 3561 if ( temp_tissue < -HYST ) // check if the tissue is off-gassing |
560 | 3562 { |
623 | 3563 // tag tissue as not experiencing mentionable IBCD |
3564 IBCD_tissue_vector &= ~(1 << ci); | |
560 | 3565 } |
3566 else if ( temp_tissue > +HYST ) // check if the tissue in on-gassing | |
3567 { | |
623 | 3568 // check for counter diffusion |
3569 if( ((temp_tissue_N2 > 0.0) && (temp_tissue_He < 0.0)) | |
604 | 3570 || ((temp_tissue_N2 < 0.0) && (temp_tissue_He > 0.0)) ) |
560 | 3571 { |
623 | 3572 // tag tissue as experiencing mentionable IBCD |
3573 IBCD_tissue_vector |= (1 << ci); | |
560 | 3574 } |
3575 } | |
3576 | |
623 | 3577 #endif |
3578 | |
3579 // For N2 tissue pressure display purpose: | |
3580 | |
3581 // basically keep the on-gassing / off-gassing flag from last invocation, but flip | |
3582 // it in case the rate exceeds a set hysteresis (actual value: see #define of HYST) | |
3583 char_O_tissue_pres_N2[ci] &= 128; | |
3584 if ( temp_tissue_N2 > +HYST ) char_O_tissue_pres_N2[ci] = 128; // set flag for tissue pressure is increasing | |
3585 else if ( temp_tissue_N2 < -HYST ) char_O_tissue_pres_N2[ci] = 0; // clear flag (-> tissue pressure is decreasing) | |
3586 | |
3587 // scale N2 tissue pressure such that the surface steady-state tissue loading | |
3588 // of [0.7902 * (1013 hPa - ppWater)] bar will give a 8, which aligns with | |
3589 // the 2nd scale line. | |
3590 temp_tissue_N2 = (8 / (0.7902 * (1.013 - ppWater))) * real_pres_tissue_N2[ci]; | |
3591 | |
3592 // limit to 127 to protect the uppermost bit which holds the sat/desat flag | |
3593 if (temp_tissue_N2 > 127) temp_tissue_N2 = 127; | |
3594 | |
3595 // convert to integer and combine with sat/desat flag | |
3596 char_O_tissue_pres_N2[ci] += (unsigned char)temp_tissue_N2; | |
3597 | |
3598 #ifdef _helium | |
3599 | |
3600 // For He tissue pressure display purpose: | |
3601 | |
3602 // basically keep the on-gassing / off-gassing flag from last invocation, but flip | |
3603 // it in case the rate exceeds a set hysteresis (actual value: see #define of HYST) | |
3604 char_O_tissue_pres_He[ci] &= 128; | |
3605 if ( temp_tissue_He > +HYST ) char_O_tissue_pres_He[ci] = 128; // set flag for tissue pressure is increasing | |
3606 else if ( temp_tissue_He < -HYST ) char_O_tissue_pres_He[ci] = 0; // clear flag (-> tissue pressure is decreasing) | |
3607 | |
3608 // scale He tissue pressure alike it is done for N2. | |
3609 // With no He in a tissue, the result will be 0. | |
3610 temp_tissue_He = (8 / (0.7902 * (1.013 - ppWater))) * real_pres_tissue_He[ci]; | |
3611 | |
3612 // limit to 127 to protect the uppermost bit which holds the sat/desat flag | |
3613 if (temp_tissue_He > 127) temp_tissue_He = 127; | |
3614 | |
3615 // convert to integer and combine with sat/desat flag | |
3616 char_O_tissue_pres_He[ci] += (unsigned char)temp_tissue_He; | |
3617 | |
3618 | |
3619 // For combined tissue pressure display purpose: | |
3620 | |
3621 // basically keep the on-gassing / off-gassing flag from last invocation, but flip | |
3622 // it in case the rate exceeds a set hysteresis (actual value: see #define of HYST) | |
3623 char_O_tissue_pressure[ci] &= 128; | |
3624 if ( temp_tissue > +HYST ) char_O_tissue_pressure[ci] = 128; // set flag for tissue pressure is increasing | |
3625 else if ( temp_tissue < -HYST ) char_O_tissue_pressure[ci] = 0; // clear flag (-> tissue pressure is decreasing) | |
3626 | |
3627 // add the two scaled pressures. | |
3628 temp_tissue = temp_tissue_N2 + temp_tissue_He; | |
3629 | |
3630 // limit to 127 to protect the uppermost bit which holds the sat/desat flag | |
560 | 3631 if (temp_tissue > 127) temp_tissue = 127; |
3632 | |
623 | 3633 // convert to integer and combine with sat/desat flag |
3634 char_O_tissue_pressure[ci] += (unsigned char)temp_tissue; | |
3635 | |
3636 #else | |
3637 | |
3638 // He tissue pressure is zero | |
3639 char_O_tissue_pres_He[ci] = 0; | |
3640 | |
3641 // combined tissue pressure equals N2 tissue pressure | |
3642 char_O_tissue_pressure[ci] = char_O_tissue_pres_N2[ci]; | |
3643 | |
3644 #endif | |
3645 | |
582 | 3646 } //if |
3647 | |
3648 } // for | |
0 | 3649 } |
3650 | |
623 | 3651 |
0 | 3652 ////////////////////////////////////////////////////////////////////////////// |
3653 // calc_limit | |
3654 // | |
623 | 3655 // Input: GF_parameter gradient factor to be used, negative values activate surface mode |
3656 // tissue_increment selector for context: real or simulated tissues | |
3657 // sim_pres_tissue_N2/_He tissue pressures (used in simulated tissues context) | |
3658 // real_pres_tissue_N2/_He tissue pressures (used in real tissues context) | |
3659 // | |
3660 // Output: lead_supersat highest supersaturation found among all tissues, 1.0 = 100% | |
3661 // lead_tissue number of the leading tissue (0-15) | |
3662 // ceiling ceiling in bar relative pressure | |
3663 // | |
3664 // Modified: deco_warnings for IBCD, micro bubbles and outside warning (only in real tissues context) | |
582 | 3665 // |
3666 static void calc_limit(PARAMETER float GF_parameter) | |
0 | 3667 { |
631 | 3668 overlay float pres_ambient_min_overall = 0.0; |
3669 overlay unsigned char surface_mode = 0; // 0: off, 1: on | |
623 | 3670 |
3671 | |
3672 // check mode | |
3673 if( GF_parameter < 0 ) | |
3674 { | |
3675 // activate surface mode | |
3676 surface_mode = 1; | |
3677 | |
3678 // normalize parameter | |
3679 GF_parameter = -GF_parameter; | |
3680 } | |
3681 | |
3682 // set leading tissue number to tissue 1 (it has the index 0) | |
3683 lead_tissue = 0; | |
604 | 3684 |
3685 // initialize leading tissue supersaturation value to null | |
623 | 3686 lead_supersat = 0.0; |
3687 | |
3688 // next code section is relevant only when invoked on the real tissues | |
3689 if( tissue_increment & TISSUE_SELECTOR ) | |
582 | 3690 { |
623 | 3691 // clear IBCD, micro-bubbles and outside warning flags (locked warnings will be preserved) |
3692 deco_warnings &= ~( DECO_WARNING_IBCD + DECO_WARNING_MBUBBLES + DECO_WARNING_OUTSIDE + DECO_ATTENTION_OUTSIDE ); | |
582 | 3693 } |
3694 | |
3695 // loop over all tissues | |
604 | 3696 for( ci = 0; ci < NUM_COMP; ci++ ) |
582 | 3697 { |
631 | 3698 overlay float pres_ambient_min_tissue; |
623 | 3699 |
3700 | |
3701 // get the coefficients for tissue ci | |
3702 read_Buhlmann_coefficients(); | |
3703 | |
3704 #ifdef _helium | |
582 | 3705 |
3706 // get the tissue pressures | |
623 | 3707 // adopt_Buhlmann_coefficients needs calc_pres_tissue_N2/He when compiled for helium |
3708 if( tissue_increment & TISSUE_SELECTOR ) | |
560 | 3709 { |
582 | 3710 // context is real tissues |
623 | 3711 calc_pres_tissue_N2 = real_pres_tissue_N2[ci]; |
3712 calc_pres_tissue_He = real_pres_tissue_He[ci]; | |
560 | 3713 } |
3714 else | |
3715 { | |
582 | 3716 // context is simulated tissues |
3717 calc_pres_tissue_N2 = sim_pres_tissue_N2[ci]; | |
3718 calc_pres_tissue_He = sim_pres_tissue_He[ci]; | |
3719 } | |
3720 | |
3721 // overall tissue pressure | |
3722 pres_tissue = calc_pres_tissue_N2 + calc_pres_tissue_He; | |
3723 | |
623 | 3724 #else |
3725 | |
3726 // get the tissue pressure | |
3727 pres_tissue = ( tissue_increment & TISSUE_SELECTOR ) ? real_pres_tissue_N2[ci] : sim_pres_tissue_N2[ci]; | |
3728 | |
3729 #endif | |
582 | 3730 |
604 | 3731 // adopt a and b coefficients to current N2/He ratio inside the tissue |
3732 adopt_Buhlmann_coefficients(); | |
582 | 3733 |
3734 // next calculations are only relevant when invoked on the real tissues | |
623 | 3735 if( tissue_increment & TISSUE_SELECTOR ) |
582 | 3736 { |
618 | 3737 overlay float pres_tissue_max; |
582 | 3738 overlay float supersat; |
608 | 3739 overlay float baseline_threshold; |
604 | 3740 |
623 | 3741 |
582 | 3742 // check if tissue is in supersaturation |
618 | 3743 if( pres_tissue > real_pres_respiration ) |
582 | 3744 { |
618 | 3745 // calculate maximum allowed tissue pressure at current ambient pressure |
623 | 3746 pres_tissue_max = real_pres_respiration / var_b + var_a; |
618 | 3747 |
3748 // calculate current supersaturation value (1.0 = 100%) of this tissue according to straight Buhlmann | |
3749 supersat = ( pres_tissue - real_pres_respiration ) | |
3750 / ( pres_tissue_max - real_pres_respiration ); | |
3751 | |
623 | 3752 // calculate supersaturation value for display purpose: 1.35 = 135% = 86 pixel |
3753 if( supersat <= 1.35 ) char_O_tissue_saturation[ci] = (unsigned char)(supersat * 64); | |
3754 else char_O_tissue_saturation[ci] = 86; | |
3755 | |
582 | 3756 // memorize highest supersaturation found |
3757 if( supersat > lead_supersat ) lead_supersat = supersat; | |
3758 | |
608 | 3759 // tissue-dependent baseline threshold for micro bubbles and outside warnings |
3760 baseline_threshold = 0.02 * ci + 1.0; | |
3761 | |
3762 // micro bubbles warning: supersaturation > baseline threshold | |
3763 if( supersat > baseline_threshold ) | |
623 | 3764 deco_warnings |= (DECO_WARNING_MBUBBLES + DECO_WARNING_MBUBBLES_lock); |
604 | 3765 |
608 | 3766 // outside warning: supersaturation > baseline threshold + additional 5% margin |
623 | 3767 if( supersat > (baseline_threshold + 0.05) ) |
3768 deco_warnings |= (DECO_WARNING_OUTSIDE + DECO_WARNING_OUTSIDE_lock ); | |
3769 } | |
3770 else | |
3771 { | |
3772 // supersaturation is defined as zero while tissue pressure <= ambient pressure | |
3773 supersat = 0.0; | |
3774 char_O_tissue_saturation[ci] = 0; | |
560 | 3775 } |
623 | 3776 |
3777 // next only when in surface mode | |
3778 if( surface_mode ) | |
3779 { | |
3780 // tag tissue whether it is beyond the M-line limit or not | |
3781 if( supersat > 1.0 ) | |
3782 { | |
3783 char_O_tissue_pres_N2[ci] |= 128; | |
3784 #ifdef _helium | |
3785 char_O_tissue_pres_He[ci] |= 128; | |
3786 #endif | |
3787 char_O_tissue_pressure[ci] |= 128; | |
3788 } | |
3789 else | |
3790 { | |
3791 char_O_tissue_pres_N2[ci] &= ~128; | |
3792 #ifdef _helium | |
3793 char_O_tissue_pres_He[ci] &= ~128; | |
3794 #endif | |
3795 char_O_tissue_pressure[ci] &= ~128; | |
3796 } | |
3797 } | |
3798 } // real tissues | |
582 | 3799 |
618 | 3800 // calculate the minimum ambient pressure that the tissue can withstand |
631 | 3801 if( char_I_model == 0 ) |
618 | 3802 { |
3803 // straight Buhlmann | |
631 | 3804 pres_ambient_min_tissue = (pres_tissue - var_a) * var_b; |
618 | 3805 } |
3806 else | |
3807 { | |
3808 // Buhlmann with Eric Baker's varying gradient factor correction | |
3809 // note: this equation [1] is the inverse of equation [2] | |
631 | 3810 pres_ambient_min_tissue = ( pres_tissue - (var_a * GF_parameter) ) |
3811 / ( 1.0 - GF_parameter + (GF_parameter / var_b ) ); | |
618 | 3812 } |
560 | 3813 |
3814 // check if this tissue requires a higher ambient pressure than was found to be needed up to now | |
631 | 3815 if( pres_ambient_min_tissue > pres_ambient_min_overall ) |
582 | 3816 { |
631 | 3817 pres_ambient_min_overall = pres_ambient_min_tissue; |
3818 lead_tissue = ci; | |
582 | 3819 } |
3820 } // for | |
3821 | |
631 | 3822 // compute ceiling in bar relative pressure |
3823 ceiling = pres_ambient_min_overall - pres_surface; | |
3824 | |
3825 // limit ceiling to positive values | |
3826 if( ceiling < 0.0 ) ceiling = 0.0; | |
623 | 3827 |
3828 #ifdef _helium | |
3829 // IBCD is checked for real tissues only | |
3830 if( tissue_increment & TISSUE_SELECTOR ) | |
560 | 3831 { |
604 | 3832 // check if the leading tissue is in IBCD condition |
623 | 3833 if( (IBCD_tissue_vector & (1 << lead_tissue)) |
3834 && ((real_pres_tissue_N2[lead_tissue] + real_pres_tissue_He[lead_tissue]) > real_pres_respiration) ) | |
582 | 3835 { |
623 | 3836 // leading tissue is in IBCD condition and in super-saturation, so issue a warning. |
3837 deco_warnings |= (DECO_WARNING_IBCD + DECO_WARNING_IBCD_lock); | |
582 | 3838 } |
560 | 3839 } |
623 | 3840 #endif |
3841 | |
0 | 3842 } |
623 | 3843 |
3844 | |
0 | 3845 ////////////////////////////////////////////////////////////////////////////// |
623 | 3846 // calc_NDL_time_tissue |
3847 // | |
3848 // calculation of the remaining no decompression limit (NDL) time for a tissue | |
0 | 3849 // |
604 | 3850 // NOTE: Erik Baker's closed formula works for Nitrox. Trimix adds a second |
0 | 3851 // exponential term to the M-value equation, making it impossible to |
623 | 3852 // invert. So we have to solve the problem with a search approach. |
3853 // | |
3854 // Input: NDL_tissue tissue for which to calculate remaining NDL time | |
3855 // GF_high gradient factor used when GF factors are enabled | |
3856 // ppN2, ppHe partial pressures of N2 and He breathed | |
3857 // | |
3858 // Modified: NDL_time shortest NDL time found so far | |
3859 // NDL_tissue_lead leading tissue, i.e. tissue with the shortest NDL | |
3860 // | |
3861 static void calc_NDL_time_tissue(void) | |
0 | 3862 { |
623 | 3863 overlay unsigned char NDL_time_tissue = 0; // NDL time of this tissue, starting with 0 minutes |
3864 overlay unsigned char step_size = 10; // step size in searching, starting with 10 minutes | |
3865 overlay float pres_limit; // max. tissue pressure allowed | |
3866 | |
3867 #ifdef _helium | |
3868 overlay float last_pres_tissue_N2; // last tissue pressure for N2 | |
3869 overlay float last_pres_tissue_He; // last tissue pressure for He | |
3870 #else | |
3871 overlay float last_pres_tissue; // last tissue pressure | |
3872 #endif | |
3873 | |
3874 | |
3875 // set the compartment index ci for reading the Buhlmann increments and coefficients | |
3876 ci = NDL_tissue; | |
3877 | |
3878 // read the tissue increments for a step size of 10 minutes | |
3879 read_Buhlmann_times(2); | |
3880 | |
3881 // read Buhlmann a and b coefficients for tissue ci | |
3882 read_Buhlmann_coefficients(); | |
3883 | |
3884 #ifdef _helium | |
3885 | |
3886 // get the current simulated tissue pressures | |
3887 calc_pres_tissue_N2 = last_pres_tissue_N2 = sim_pres_tissue_N2[ci]; | |
3888 calc_pres_tissue_He = last_pres_tissue_He = sim_pres_tissue_He[ci]; | |
3889 | |
3890 #else | |
3891 | |
3892 // get the current simulated tissue pressure | |
3893 pres_tissue = last_pres_tissue = sim_pres_tissue_N2[ci]; | |
3894 | |
3895 // set the a and b coefficients | |
3896 adopt_Buhlmann_coefficients(); | |
3897 | |
3898 #endif | |
3899 | |
3900 // simulate an increasing bottom time and check when the NDL is hit | |
3901 for(;;) | |
582 | 3902 { |
623 | 3903 |
3904 #ifdef _helium | |
3905 | |
3906 // calculate the total tissue pressure | |
582 | 3907 pres_tissue = calc_pres_tissue_N2 + calc_pres_tissue_He; |
3908 | |
623 | 3909 // adopt a and b coefficients to current N2/He ratio inside the tissue |
3910 adopt_Buhlmann_coefficients(); | |
3911 | |
3912 #endif | |
3913 | |
3914 // compute the maximum tissue pressure allowed to be exposed to an | |
3915 // ambient pressure equaling the surface pressure | |
631 | 3916 if( char_I_model != 0 ) |
623 | 3917 { |
3918 // GF model enabled, this equation [2] is the inverse of equation [1] | |
3919 pres_limit = (1.0 - GF_high + GF_high / var_b) * pres_surface + GF_high * var_a; | |
3920 } | |
3921 else | |
582 | 3922 { |
623 | 3923 // straight Buhlmann |
3924 pres_limit = pres_surface / var_b + var_a; | |
3925 } | |
3926 | |
3927 // is the tissue pressure higher than the maximum tissue pressure allowed? | |
3928 if( pres_tissue > pres_limit) | |
3929 { | |
3930 // YES - tissue is outside NDL | |
3931 | |
3932 // was the tissue outside NDL right from the start? | |
3933 if( NDL_time_tissue == 0 ) | |
582 | 3934 { |
623 | 3935 // YES - search can be aborted |
3936 | |
3937 // at least one tissue is outside NDL, so overall NDL time is zero | |
3938 NDL_time = 0; | |
3939 | |
3940 // store the number of this tissue as being the leading one | |
3941 NDL_tissue_lead = NDL_tissue; | |
3942 | |
3943 // done | |
582 | 3944 break; |
3945 } | |
3946 | |
623 | 3947 // when code execution passes here, the tissue has become |
3948 // being outside NDL after doing one or more search steps | |
3949 | |
3950 // still searching with a step size of 10 minutes? | |
3951 if( step_size == 10 ) | |
582 | 3952 { |
623 | 3953 // YES - retry with smaller step size |
3954 | |
3955 // go back to last NDL time | |
3956 NDL_time_tissue -= 10; | |
3957 | |
3958 #ifdef _helium | |
3959 | |
3960 // go back to last pressures | |
3961 calc_pres_tissue_N2 = last_pres_tissue_N2; | |
3962 calc_pres_tissue_He = last_pres_tissue_He; | |
3963 | |
3964 #else | |
3965 | |
3966 // go back to last pressure | |
3967 pres_tissue = last_pres_tissue; | |
3968 | |
3969 #endif | |
3970 | |
3971 // reduce step size to 1 minute | |
3972 step_size = 1; | |
3973 | |
3974 // read the tissue increments for a step size of 1 minute | |
3975 read_Buhlmann_times(1); | |
3976 | |
3977 // redo search from last pressure & time within NDL with smaller step size | |
582 | 3978 continue; |
3979 } | |
623 | 3980 else |
582 | 3981 { |
623 | 3982 // NO - already tried with a step size of 1 minute |
3983 | |
3984 // go back to last NDL time that was within NDL | |
3985 NDL_time_tissue -= 1; | |
3986 | |
3987 // is the NDL time of this tissue shorter than the overall NDL time found so far? | |
3988 if( NDL_time_tissue < NDL_time ) | |
3989 { | |
3990 // YES - set this tissue's NDL time as the new overall NDL time | |
3991 NDL_time = NDL_time_tissue; | |
3992 | |
3993 // - store the number of this tissue as being the leading one | |
3994 NDL_tissue_lead = NDL_tissue; | |
3995 } | |
3996 | |
3997 // done | |
3998 break; | |
582 | 3999 } |
623 | 4000 } |
4001 else | |
582 | 4002 { |
623 | 4003 // NO - tissue is still within NDL |
4004 | |
4005 // The search can be terminated when the NDL time of this tissue | |
4006 // exceeds the overall NDL time, thus when a shorter NDL time has | |
4007 // already been found with another tissue. | |
4008 if( NDL_time_tissue >= NDL_time ) break; | |
4009 | |
4010 #ifdef _helium | |
4011 | |
4012 // back-up current tissue pressures | |
4013 last_pres_tissue_N2 = calc_pres_tissue_N2; | |
4014 last_pres_tissue_He = calc_pres_tissue_He; | |
4015 | |
4016 #else | |
4017 | |
4018 // back-up current tissue pressure | |
4019 last_pres_tissue = pres_tissue; | |
4020 | |
4021 #endif | |
4022 | |
4023 // step forward NDL time of current tissue | |
4024 NDL_time_tissue += step_size; | |
4025 | |
4026 #ifdef _helium | |
4027 | |
4028 // step forward tissue pressure - N2 | |
4029 temp_tissue = (ppN2 - calc_pres_tissue_N2) * var_N2_e; // pressure delta breathed - tissue | |
4030 apply_saturation_factors(); // apply safety factor | |
4031 calc_pres_tissue_N2 += temp_tissue; // add pressure delta to tissue | |
4032 | |
4033 // step forward tissue pressure - He | |
4034 temp_tissue = (ppHe - calc_pres_tissue_He) * var_He_e; // pressure delta breathed - tissue | |
4035 apply_saturation_factors(); // apply safety factor | |
4036 calc_pres_tissue_He += temp_tissue; // add pressure delta to tissue | |
4037 | |
4038 #else | |
4039 | |
4040 // step forward tissue pressure | |
4041 temp_tissue = (ppN2 - pres_tissue ) * var_N2_e; // pressure delta breathed - tissue | |
4042 apply_saturation_factors(); // apply safety factor | |
4043 pres_tissue += temp_tissue; // add pressure delta to tissue | |
4044 | |
4045 #endif | |
4046 | |
582 | 4047 } |
623 | 4048 } |
0 | 4049 } |
4050 | |
604 | 4051 |
0 | 4052 ////////////////////////////////////////////////////////////////////////////// |
4053 // clear_deco_table | |
4054 // | |
623 | 4055 // Modified: internal_deco_time[] stop durations |
4056 // internal_deco_depth[] stop depths | |
4057 // internal_deco_gas[] gases used at stops | |
0 | 4058 // |
4059 static void clear_deco_table(void) | |
4060 { | |
623 | 4061 for( i = 0; i < NUM_STOPS; ++i ) |
582 | 4062 { |
623 | 4063 internal_deco_time [i] = 0; |
4064 internal_deco_depth[i] = 0; | |
4065 internal_deco_gas[i] = 0; | |
582 | 4066 } |
4067 | |
628 | 4068 // reset stop table index and chained stops counter |
4069 stop_index = 0; | |
4070 chained_stops = 0; | |
4071 | |
560 | 4072 // clear stop table overflow warning |
628 | 4073 deco_warnings &= ~DECO_WARNING_INCOMPLETE; |
0 | 4074 } |
4075 | |
623 | 4076 |
0 | 4077 ////////////////////////////////////////////////////////////////////////////// |
4078 // update_deco_table | |
4079 // | |
623 | 4080 // Add time to a stop at char_depth_sim |
560 | 4081 // |
4082 // It is possible to create stops with a duration of 0 minutes, e.g. to | |
4083 // note a gas change "on the fly" while ascending. Therefore the criteria | |
604 | 4084 // to have reached the end of the list is depth == 0. |
0 | 4085 // |
623 | 4086 // Input: char_depth_sim stop's depth, in meters |
4087 // sim_gas_current_num gas used at stop, as index 1..5 or 0 for gas 6 | |
4088 // time_increment number of minutes to add to the stop | |
4089 // | |
4090 // Updated: internal_deco_depth[] depth (in meters) of each stop | |
4091 // internal_deco_time [] time (in minutes) of each stop | |
4092 // internal_deco_gas [] gas used (index 1-5) at each stop | |
560 | 4093 // |
631 | 4094 static void update_deco_table(PARAMETER unsigned char time_increment) |
0 | 4095 { |
623 | 4096 assert( char_depth_sim > 0 ); // no stop at surface |
560 | 4097 |
628 | 4098 |
4099 // is there already a stop entry matching with the current depth and gas? | |
4100 if( internal_deco_depth[stop_index] == char_depth_sim ) | |
4101 if( internal_deco_gas [stop_index] == sim_gas_current_num ) | |
560 | 4102 { |
628 | 4103 // YES - increment stop time if possible, stop time entries are |
4104 // limited to 99 minutes because of display constraints | |
4105 if( internal_deco_time[stop_index] < (100 - time_increment) ) | |
560 | 4106 { |
628 | 4107 // YES - time increment fits into current stop entry, |
631 | 4108 // increment stop time |
628 | 4109 internal_deco_time[stop_index] += time_increment; |
631 | 4110 |
4111 // done | |
4112 return; | |
628 | 4113 } |
4114 else | |
4115 { | |
4116 // NO - A chained stop entry will be created further down in the | |
4117 // code to continue the stop, but we will limit the number | |
4118 // of chained stop table entries in order to abort an ever- | |
4119 // running deco calculation. Too many chained entries? | |
4120 if( ++chained_stops >= STOP_CHAINING_LIMIT ) | |
560 | 4121 { |
631 | 4122 // YES - set warning that calculations took too long |
628 | 4123 deco_warnings |= DECO_WARNING_INCOMPLETE; |
631 | 4124 |
4125 // done | |
4126 return; | |
560 | 4127 } |
4128 } | |
628 | 4129 } |
4130 | |
4131 // the current stop entry does not match the current depth and gas, | |
4132 // or hasn't enough room left for the time increment | |
4133 | |
4134 // is the current stop entry in use? | |
4135 if( internal_deco_depth[stop_index] > 0 ) | |
4136 { | |
4137 // YES - current entry is in use, need to move on | |
4138 // to next entry position if possible | |
4139 | |
4140 // have all entry positions been used up? | |
4141 if( stop_index < (NUM_STOPS - 1) ) | |
560 | 4142 { |
628 | 4143 // NO - move on to next entry position |
4144 stop_index += 1; | |
4145 } | |
4146 else | |
4147 { | |
631 | 4148 // YES - if run in deco calculator mode, set a warning that there is an overflow in the stops table |
4149 if( main_status & CALCULATE_BOTTOM ) deco_warnings |= DECO_WARNING_INCOMPLETE; | |
4150 | |
4151 // limit runtime via reached TTS (scaled in 1/10 minutes here) | |
4152 if( TTS_time > 9999 ) deco_warnings |= DECO_WARNING_INCOMPLETE; | |
4153 | |
4154 // done | |
4155 return; | |
560 | 4156 } |
4157 } | |
4158 | |
631 | 4159 // initial use of a new (or the very first) stop entry, store all stop data |
628 | 4160 internal_deco_time [stop_index] = time_increment; |
4161 internal_deco_depth[stop_index] = char_depth_sim; | |
4162 internal_deco_gas [stop_index] = sim_gas_current_num; | |
631 | 4163 |
4164 // done | |
4165 return; | |
628 | 4166 } |
4167 | |
4168 | |
4169 ////////////////////////////////////////////////////////////////////////////// | |
4170 // publish_deco_table | |
4171 // | |
4172 // Input: internal_deco_depth[] depth in internal stops table | |
4173 // internal_deco_time[] times ... | |
4174 // internal_deco_gas[] gases ... | |
4175 // | |
4176 // Output: char_O_deco_depth[] depth in the external stops table | |
4177 // char_O_deco_time[] times ... | |
4178 // char_O_deco_gas[] gases ... | |
4179 // char_O_deco_time_for_log times in reverse order | |
4180 // | |
4181 static void publish_deco_table(void) | |
4182 { | |
4183 overlay unsigned char x = stop_index; | |
4184 overlay unsigned char y; | |
4185 | |
4186 | |
4187 // copy depth, time and gas from internal to external stops table | |
4188 for( y = 0; y < NUM_STOPS; y++ ) | |
4189 { | |
4190 char_O_deco_depth[y] = internal_deco_depth[y]; | |
4191 char_O_deco_time [y] = internal_deco_time [y]; | |
4192 char_O_deco_gas [y] = internal_deco_gas [y]; | |
4193 } | |
4194 | |
4195 // copy times of shallowest stops to logging table | |
4196 for(y = 0; y < NUM_STOPS_LOG; x-- ) | |
4197 { | |
4198 // copy all stops that have a non-null stop time | |
4199 if( internal_deco_time[x] ) | |
4200 char_O_deco_time_for_log[y++] = internal_deco_time[x]; | |
4201 | |
4202 // abort if all stops are copied | |
4203 if( x == 0) break; | |
4204 } | |
4205 | |
4206 // fill the remainder of the logging table with null | |
4207 // if it is not completely filled already | |
4208 while( y < NUM_STOPS_LOG ) | |
4209 { | |
4210 char_O_deco_time_for_log[y++] = 0; | |
4211 } | |
0 | 4212 } |
4213 | |
4214 | |
4215 ////////////////////////////////////////////////////////////////////////////// | |
623 | 4216 // calc_desaturation_time_helper |
0 | 4217 // |
560 | 4218 // Helper function |
4219 // | |
623 | 4220 // Input: pres_actual current tissue pressure |
4221 // pres_target target tissue pressure | |
4222 // var_ht half-time of the tissue | |
4223 // desat_factor desaturation factor | |
4224 // | |
4225 // Output: int_time time needed by tissue to reach target pressure | |
4226 // | |
604 | 4227 static void calc_desaturation_time_helper(void) |
0 | 4228 { |
623 | 4229 // check if actual pressure is higher then target pressure |
4230 if( pres_actual > pres_target ) | |
4231 { | |
4232 // YES - compute remaining time | |
4233 | |
604 | 4234 overlay float pres_ratio; |
582 | 4235 |
623 | 4236 // compute pressure ratio to archive |
560 | 4237 pres_ratio = pres_actual / pres_target; |
4238 | |
4239 // Compute desaturation time with result rounded up to multiples of 10 minutes. | |
582 | 4240 // Main purpose is to avoid confusion, because the times do not clock down in |
4241 // one minute steps any more but get constantly re-computed according to current | |
4242 // ambient pressure and may therefor make steps of several minutes forwards and | |
604 | 4243 // backwards as ambient pressure rises/falls and N2/He ratio is being adjusted. |
623 | 4244 int_time = (unsigned short)( (var_ht * log(pres_ratio) / desat_factor) + 0.9 ); |
560 | 4245 } |
4246 else | |
623 | 4247 { |
4248 // NO - desaturation state reached, no remaining time | |
582 | 4249 int_time = 0; |
560 | 4250 } |
4251 } | |
4252 | |
623 | 4253 |
560 | 4254 ///////////////////////////////////////////////////////////////////////////// |
604 | 4255 // calc_desaturation_time |
4256 // | |
623 | 4257 // Calculates the time needed for the tissues to equilibrate with |
4258 // surface pressure and the no-fly / no-altitude time. | |
4259 // | |
4260 // Input: int_I_pres_surface | |
4261 // char_I_desaturation_multiplier | |
4262 // | |
4263 // Output: int_O_desaturation_time | |
4264 // int_O_nofly_time | |
560 | 4265 // |
4266 void calc_desaturation_time(void) | |
4267 { | |
623 | 4268 overlay float P_ambient_altitude; |
4269 | |
604 | 4270 assert( 800 < int_I_pres_surface && int_I_pres_surface < 1100 ); |
4271 assert( 0 < char_I_desaturation_multiplier && char_I_desaturation_multiplier <= 100 ); | |
4272 | |
4273 | |
623 | 4274 // safeguard and convert surface pressure |
4275 if( int_I_pres_surface < 500) pres_surface = 0.5; | |
4276 else pres_surface = 0.001 * int_I_pres_surface; | |
4277 | |
4278 // calculate partial pressure of N2 in respired air at surface pressure | |
4279 calc_N2_equilibrium(); | |
4280 | |
4281 // get, safeguard and convert the saturation and desaturation factors | |
4282 get_saturation_factors(); | |
4283 | |
4284 // pre-computed term for later use: 10 [Min] * 0.6931 [=log(2)] * 1 [Desat Factor] * ... | |
4285 desat_factor = (6.931 * SURFACE_DESAT_FACTOR) * float_desaturation_multiplier; | |
582 | 4286 |
4287 // initialize vars | |
560 | 4288 int_O_desaturation_time = 0; |
582 | 4289 int_O_nofly_time = 0; |
4290 | |
623 | 4291 // get selected target altitude |
4292 switch( char_I_altitude_wait ) | |
4293 { | |
4294 case 1: P_ambient_altitude = P_ambient_1000m; break; | |
4295 case 2: P_ambient_altitude = P_ambient_2000m; break; | |
4296 case 3: P_ambient_altitude = P_ambient_3000m; break; | |
4297 default: P_ambient_altitude = P_ambient_fly; break; | |
4298 } | |
4299 | |
4300 // loop over all compartments in order slowest to fastest | |
604 | 4301 for( ci = NUM_COMP; ci > 0; ) |
582 | 4302 { |
623 | 4303 overlay float pres_tissue_max; |
4304 overlay unsigned short nofly_last = ~0; | |
4305 overlay unsigned short nofly_N2 = 0; | |
4306 | |
4307 #ifdef _helium | |
4308 overlay signed char search_direction; | |
4309 overlay unsigned short nofly_He = 0; | |
4310 #endif | |
4311 | |
4312 | |
4313 // decrement compartment index | |
560 | 4314 ci -= 1; |
582 | 4315 |
623 | 4316 // get the Buhlmann halftimes and coefficients |
582 | 4317 read_Buhlmann_ht(); |
560 | 4318 read_Buhlmann_coefficients(); |
582 | 4319 |
623 | 4320 |
4321 // | |
4322 // Desaturation time | |
4323 // | |
4324 | |
4325 // calculate desaturation time for N2 in tissue, | |
4326 // desaturated state is defined as residual tissue pressure <= 1.05 x ppN2 respired | |
4327 | |
4328 // current tissue pressure above equilibrium pressure | |
4329 pres_actual = real_pres_tissue_N2[ci] - N2_equilibrium; | |
4330 | |
4331 // target pressure above equilibrium pressure | |
4332 pres_target = 0.05 * N2_equilibrium; | |
4333 | |
4334 // half-time of the current tissue | |
4335 var_ht = var_N2_ht; | |
4336 | |
4337 // calculate desaturation time | |
4338 calc_desaturation_time_helper(); | |
4339 | |
4340 // store desaturation time if it is longer than longest found so far | |
4341 if( int_time > int_O_desaturation_time) int_O_desaturation_time = int_time; | |
4342 | |
4343 | |
4344 #ifdef _helium | |
4345 | |
4346 // calculate desaturation time for He in the tissue, | |
4347 // desaturated state is defined as residual tissue pressure <= 0.05 x ppN2 respired | |
4348 | |
4349 // actual tissue pressure above equilibrium: equilibrium for He is 0 bar | |
4350 pres_actual = real_pres_tissue_He[ci]; | |
4351 | |
4352 // target pressure above equilibrium pressure: use same target pressure as for N2 | |
4353 pres_target = 0.05 * N2_equilibrium; | |
4354 | |
4355 // half-time of the current tissue | |
4356 var_ht = var_He_ht; | |
4357 | |
4358 // calculate desaturation time | |
4359 calc_desaturation_time_helper(); | |
4360 | |
4361 // store desaturation time if it is longer than longest found so far | |
4362 if( int_time > int_O_desaturation_time) int_O_desaturation_time = int_time; | |
4363 | |
4364 #endif | |
4365 | |
4366 // | |
4367 // no-fly time | |
4368 // | |
582 | 4369 |
560 | 4370 // Target pressure for the tissue is the Buhlmann limit. We use the Buhlmann |
4371 // coefficients for N2 also for He because it is easier to calculate and the | |
4372 // N2 coefficients are more conservative than those for He, so we are on the | |
4373 // safe side, too. | |
582 | 4374 pres_tissue_max = (P_ambient_altitude/var_N2_b + var_N2_a); |
4375 | |
623 | 4376 // adjust target pressure by GF-high in case the GF model is in use, but not |
4377 // for the no-fly time as it's target pressure is hard to reach anyhow | |
631 | 4378 if( char_I_model && char_I_altitude_wait ) |
623 | 4379 pres_tissue_max = P_ambient_altitude + |
4380 0.01 * char_I_GF_High_percentage * (pres_tissue_max - P_ambient_altitude); | |
4381 | |
4382 | |
4383 #ifdef _helium | |
4384 | |
4385 //---- Variant with Helium ------------------------------------------- | |
4386 | |
4387 // initialize split_N2_He in case there was a hard reboot / memory clear | |
604 | 4388 if( split_N2_He[ci] == 0 ) split_N2_He[ci] = 90; |
4389 | |
560 | 4390 // initialize search direction |
4391 search_direction = 0; | |
582 | 4392 |
560 | 4393 for(;;) |
4394 { | |
4395 // Calculate no-fly time for N2 in the tissue. | |
4396 // Flying is permitted when the N2 pressure fits into the assigned fraction above equilibrium. | |
4397 | |
623 | 4398 // current tissue pressure above equilibrium |
4399 pres_actual = real_pres_tissue_N2[ci] - N2_equilibrium; | |
4400 | |
4401 // target pressure above equilibrium pressure, weighted by N2/He split | |
560 | 4402 pres_target = (split_N2_He[ci] * 0.01) * (pres_tissue_max - N2_equilibrium); |
4403 | |
623 | 4404 // half-time of the current tissue |
4405 var_ht = var_N2_ht; | |
4406 | |
4407 // check if desaturation to target pressure is possible at all | |
4408 if( pres_target < 0.0 ) | |
560 | 4409 { |
623 | 4410 // NO - set no-fly time to 288 * 10 min = 48 h |
4411 int_O_nofly_time = 288; | |
4412 break; | |
560 | 4413 } |
604 | 4414 else |
560 | 4415 { |
623 | 4416 // YES - calculate desaturation time |
560 | 4417 calc_desaturation_time_helper(); |
623 | 4418 |
4419 // store time found | |
582 | 4420 nofly_N2 = int_time; |
560 | 4421 } |
582 | 4422 |
623 | 4423 // calculate no-fly time for He in the tissue, |
4424 // flying is permitted when the He pressure fits into the assigned fraction | |
4425 | |
4426 // current tissue pressure above equilibrium: equilibrium for He is 0 bar | |
4427 pres_actual = real_pres_tissue_He[ci]; | |
4428 | |
4429 // target pressure above equilibrium pressure, weighted by N2/He split | |
4430 pres_target = ((100 - split_N2_He[ci]) * 0.01) * (pres_tissue_max - N2_equilibrium); | |
4431 | |
4432 // half-time of the current tissue | |
582 | 4433 var_ht = var_He_ht; |
4434 | |
623 | 4435 // calculate desaturation time |
560 | 4436 calc_desaturation_time_helper(); |
623 | 4437 |
4438 // store time found | |
582 | 4439 nofly_He = int_time; |
560 | 4440 |
4441 | |
4442 // Because the sum of N2 and He tissue pressures needs to fit into the Buhlmann limit for | |
4443 // no-fly time calculation, each gas gets assigned a fraction of the available total pressure | |
623 | 4444 // limit. The optimum split between the two gases can not be computed by a single formula, |
560 | 4445 // because this would require the inversion of a function with two exponential terms, which is |
4446 // not possible. We do not want to do a computational complex simulation here like it is done | |
4447 // in the deco calculation code (although we tackle the same base problem here), so we just let | |
4448 // the computer try out which split will balance the no-fly times induced by the N2 and the He | |
4449 // at best. | |
582 | 4450 |
560 | 4451 // first of all, skip any optimization in case the current compartment is not the leading one |
4452 if( (nofly_N2 <= int_O_nofly_time) && (nofly_He <= int_O_nofly_time) ) break; | |
4453 | |
4454 // check if the N2 requires more waiting time than the He | |
582 | 4455 if( nofly_N2 >= nofly_He ) |
560 | 4456 { |
4457 // check if the search direction has changed, which means we are beyond the | |
4458 // optimum now, or if we are at the upper stop limit of split_N2_He | |
4459 if( (search_direction < 0) || (split_N2_He[ci] == 99) ) | |
604 | 4460 { |
623 | 4461 // either the just completed iteration was more close to the optimum or the one before |
4462 // was, so we take the best (i.e. shortest) time of both as the final no-fly time | |
560 | 4463 int_O_nofly_time = (nofly_N2 < nofly_last) ? nofly_N2 : nofly_last; |
623 | 4464 |
4465 // done | |
560 | 4466 break; |
4467 } | |
4468 | |
4469 // store the no-fly time found in this iteration | |
582 | 4470 nofly_last = nofly_N2; |
4471 | |
623 | 4472 // increase the N2 fraction of the split |
560 | 4473 split_N2_He[ci] += 1; |
623 | 4474 |
4475 // set search direction towards more N2 | |
560 | 4476 search_direction = +1; |
4477 } | |
4478 else | |
4479 { | |
4480 // check if the search direction has changed, which means we are beyond the | |
4481 // optimum now, or if we are at the lower stop limit of split_N2_He | |
4482 if( (search_direction > 0) || (split_N2_He[ci] == 1) ) | |
582 | 4483 { |
623 | 4484 // either the just completed iteration was more close to the optimum or the one before |
4485 // was, so we take the best (i.e. shortest) time of both as the final no-fly time | |
560 | 4486 int_O_nofly_time = (nofly_He < nofly_last) ? nofly_He : nofly_last; |
623 | 4487 |
4488 // done | |
560 | 4489 break; |
4490 } | |
4491 | |
4492 // store the no-fly time found in this iteration | |
582 | 4493 nofly_last = nofly_He; |
4494 | |
623 | 4495 // decrease the N2 fraction of the split |
560 | 4496 split_N2_He[ci] -= 1; |
623 | 4497 |
4498 // set search direction towards less N2 | |
604 | 4499 search_direction = -1; |
560 | 4500 } |
582 | 4501 |
560 | 4502 } // for(;;) |
4503 | |
623 | 4504 #else |
4505 | |
4506 //---- Variant without Helium ---------------------------------------- | |
4507 | |
4508 // current tissue pressure above equilibrium | |
4509 pres_actual = real_pres_tissue_N2[ci] - N2_equilibrium; | |
4510 | |
4511 // target pressure above equilibrium pressure | |
4512 pres_target = pres_tissue_max - N2_equilibrium; | |
4513 | |
4514 // half-time of the current tissue | |
4515 var_ht = var_N2_ht; | |
4516 | |
4517 // check if desaturation to target pressure is possible at all | |
4518 if( pres_target < 0.0 ) | |
4519 { | |
4520 // NO - set no-fly time to 288 * 10 min = 48 h | |
4521 int_O_nofly_time = 288; | |
4522 } | |
4523 else | |
4524 { | |
4525 // YES - calculate desaturation time | |
4526 calc_desaturation_time_helper(); | |
4527 | |
4528 // - extend desaturation time if this tissue needs | |
4529 // more time than already found to be needed | |
4530 if( int_time > int_O_nofly_time ) int_O_nofly_time = int_time; | |
4531 } | |
4532 | |
4533 #endif | |
4534 | |
560 | 4535 } // for(compartments) |
4536 | |
582 | 4537 |
623 | 4538 // rescale int_O_desaturation_time and int_O_nofly_time to full minutes for display purpose |
560 | 4539 int_O_desaturation_time *= 10; |
4540 int_O_nofly_time *= 10; | |
582 | 4541 |
623 | 4542 // limit int_O_desaturation_time and int_O_nofly_time to 5999 = 99 hours + 59 minutes |
4543 // because of display space constraints and rounding done above | |
560 | 4544 if( int_O_desaturation_time > 5999 ) int_O_desaturation_time = 5999; |
4545 if( int_O_nofly_time > 5999 ) int_O_nofly_time = 5999; | |
4546 | |
4547 | |
623 | 4548 // Clear the micro bubbles warning when the current gradient factor is < 100%. |
604 | 4549 // The current gradient factor is calculated by calc_interval() while not in diving mode. |
4550 // As the locked warning will stay set, this will cause the warning be be displayed in | |
4551 // attention color instead of warning color. | |
623 | 4552 if( int_O_lead_supersat < 100 ) |
4553 deco_warnings &= ~DECO_WARNING_MBUBBLES; | |
582 | 4554 |
560 | 4555 // clear some warnings when the desaturation time has become zero |
582 | 4556 if( int_O_desaturation_time == 0 ) |
623 | 4557 deco_warnings &= ~( DECO_WARNING_IBCD + DECO_WARNING_IBCD_lock |
4558 + DECO_WARNING_MBUBBLES + DECO_WARNING_MBUBBLES_lock | |
4559 + DECO_WARNING_OUTSIDE + DECO_WARNING_OUTSIDE_lock | |
4560 + DECO_ATTENTION_OUTSIDE ); | |
0 | 4561 } |
4562 | |
623 | 4563 |
0 | 4564 ////////////////////////////////////////////////////////////////////////////// |
582 | 4565 // Calculate desaturation of the real tissues for a given time interval |
0 | 4566 // |
582 | 4567 // Caution: Works on the real tissues! |
4568 // If in doubt, use this function only inside a context surrounded with | |
4569 // push_tissues_to_vault() / pull_tissues_from_vault() ! | |
4570 // | |
623 | 4571 // Input: int_I_pres_surface surface pressure in mbar |
4572 // time_interval time interval in minutes, must be limited to 254 at max | |
4573 // | |
4574 // Modified: tissue pressures N2 and He pressures of the tissues | |
4575 // CNS_fraction_real current real CNS value | |
631 | 4576 // ceiling minimum allowed depth in bar relative pressure |
623 | 4577 // lead_supersat supersaturation of the leading tissue (float) |
4578 // int_O_lead_supersat supersaturation of the leading tissue (integer) | |
631 | 4579 // char_O_lead_tissue number of the leading tissue |
560 | 4580 // |
582 | 4581 static void calc_interval(PARAMETER unsigned char time_interval) |
0 | 4582 { |
582 | 4583 overlay unsigned char time; |
4584 | |
4585 assert( 800 < int_I_pres_surface && int_I_pres_surface < 1100 ); | |
604 | 4586 assert( 100 <= char_I_saturation_multiplier && char_I_saturation_multiplier < 200 ); |
4587 assert( 0 < char_I_desaturation_multiplier && char_I_desaturation_multiplier <= 100 ); | |
4588 | |
4589 | |
623 | 4590 // safeguard and convert surface pressure |
4591 if( int_I_pres_surface < 500) pres_surface = 0.500; | |
4592 else pres_surface = 0.001 * int_I_pres_surface; | |
4593 | |
631 | 4594 // safeguard time interval |
4595 if( time_interval > 254 ) time_interval = 254; | |
4596 | |
623 | 4597 // set breathed pressure to surface pressure |
4598 real_pres_respiration = pres_surface; | |
4599 | |
4600 // calculate partial pressure of N2 in respired air at surface pressure | |
4601 calc_N2_equilibrium(); | |
4602 | |
4603 // calculate partial pressures (0.7902 is fraction of N2 in atmosphere as of Buhlmann) | |
4604 ppN2 = N2_equilibrium; | |
4605 ppHe = 0.0; | |
4606 | |
4607 // get, safeguard and convert the saturation and desaturation factors | |
4608 get_saturation_factors(); | |
4609 | |
4610 // adjust desaturation factor to surface mode | |
4611 float_desaturation_multiplier *= SURFACE_DESAT_FACTOR; | |
582 | 4612 |
4613 // Calculate the tissues: | |
4614 // Because calc_tissues() can calculate for 127 minutes at max, | |
4615 // the tissue updating may need to be done in two chunks. | |
4616 | |
4617 time = time_interval; | |
4618 | |
4619 // first chunk for the part exceeding 127 minutes | |
4620 if( time > 127) | |
560 | 4621 { |
582 | 4622 // do a full 127 minutes on the real tissues |
623 | 4623 tissue_increment = TISSUE_SELECTOR | 127; |
582 | 4624 calc_tissues(); |
4625 | |
623 | 4626 // determine the remaining time |
582 | 4627 time -= 127; |
560 | 4628 } |
4629 | |
623 | 4630 // program the remaining time (or full time if not exceeding 127 minutes) on the real tissues |
4631 tissue_increment = TISSUE_SELECTOR | time; | |
604 | 4632 |
4633 // update the N2 and He pressures in the tissues | |
582 | 4634 calc_tissues(); |
4635 | |
560 | 4636 |
4637 // Calculate CNS: | |
4638 // To speed up things and because on most invocations of this code char_I_dive_interval | |
4639 // is a multiple of 10 minutes, we loop the loop-counter down using two speeds. | |
4640 | |
582 | 4641 time = time_interval; |
4642 | |
604 | 4643 while( time ) |
560 | 4644 { |
582 | 4645 if( time > 9 ) |
560 | 4646 { |
623 | 4647 CNS_fraction_real *= 0.925874712; // half-time = 90 min -> 10 min: (1/2)^(1/9) |
4648 time -= 10; // fast speed looping | |
560 | 4649 } |
4650 else | |
4651 { | |
623 | 4652 CNS_fraction_real *= 0.992327946; // half-time = 90 min -> 1 min: (1/2)^(1/90) |
4653 time -= 1; // slow speed looping | |
560 | 4654 } |
582 | 4655 } |
560 | 4656 |
623 | 4657 // convert the CNS value to integer |
4658 convert_cur_CNS_for_display(); | |
4659 | |
4660 // calculate the supersaturation of the leading tissue, the | |
4661 // negative argument puts calc_limit() into surface mode | |
4662 // Attention: do not pass char_I_GF_High_percentage as an argument | |
4663 // here because it is not configured outside dive mode | |
4664 calc_limit(-1.0); | |
4665 | |
4666 // convert the saturation value of the leading tissue to integer | |
4667 convert_sat_for_display(); | |
0 | 4668 } |
4669 | |
560 | 4670 |
4671 ////////////////////////////////////////////////////////////////////////////// | |
604 | 4672 // calc_CNS |
560 | 4673 // |
623 | 4674 // Input: char_ppO2 current ppO2 [in 0.1 bars] |
631 | 4675 // tissue_increment tissue selector and time interval |
623 | 4676 // |
4677 // Modified: CNS_fraction_real accumulated CNS (real tissue context) | |
4678 // CNS_fraction_sim accumulated CNS (simulated tissue context) | |
560 | 4679 // |
604 | 4680 static void calc_CNS(void) |
560 | 4681 { |
604 | 4682 overlay float CNS_fraction_inc; // increment of CNS load, 0.01 = 1% |
623 | 4683 |
4684 | |
631 | 4685 // calculate CNS increment for a 2 seconds interval |
623 | 4686 if( char_ppO2 > 160 ) |
4687 { | |
4688 // step-wise CNS increment | |
4689 | |
631 | 4690 // calculate index for increment look-up (uses integer division) |
4691 cns_i = (char_ppO2 - 161) / 5; | |
623 | 4692 |
628 | 4693 // indexes > 17 use increment of index 17 |
4694 if( cns_i > 17 ) cns_i = 17; | |
4695 | |
623 | 4696 // read coefficient (increment) |
4697 read_CNS_c_coefficient(); | |
4698 | |
4699 // re-scale coefficient from storage format in [1/100000] to productive value | |
631 | 4700 CNS_fraction_inc = (float)var_cns_value / 100000.0; |
623 | 4701 } |
4702 else if( char_ppO2 > 50 ) | |
4703 { | |
4704 // range wise CNS increment approximation | |
4705 | |
631 | 4706 // calculate index for approximation coefficients look-up (uses integer division) |
4707 cns_i = (char_ppO2 - 51) / 10; | |
623 | 4708 |
4709 // read coefficients | |
4710 read_CNS_ab_coefficient(); | |
4711 | |
4712 // calculate the CNS increment | |
631 | 4713 CNS_fraction_inc = 1.0 / (var_cns_gain * char_ppO2 + var_cns_offset ); |
623 | 4714 } |
4715 else | |
631 | 4716 { // no increment for a ppO2 of up to 0.5 bar |
623 | 4717 CNS_fraction_inc = 0.0; |
4718 } | |
4719 | |
631 | 4720 // apply a time factor in case of: |
4721 // - simulated tissues and interval = 0 (i.e. 6 seconds to do) -> factor 3 | |
4722 // - any tissues and interval > 0 (i.e. i minutes to do) -> factor 30 * i | |
4723 if( tissue_increment == 0 ) CNS_fraction_inc *= 3.0; | |
4724 else if( tissue_increment & TIME_MASK ) CNS_fraction_inc *= 30.0 * (float)(tissue_increment & TIME_MASK); | |
4725 | |
604 | 4726 |
4727 // update the CNS accumulator | |
623 | 4728 if ( tissue_increment & TISSUE_SELECTOR ) CNS_fraction_real += CNS_fraction_inc; // real tissues |
4729 else CNS_fraction_sim += CNS_fraction_inc; // simulated tissues | |
4730 } | |
4731 | |
4732 | |
4733 ////////////////////////////////////////////////////////////////////////////// | |
631 | 4734 // calc_required_volume |
623 | 4735 // |
4736 // Calculates the gas volume required for a given depth, time and usage (SAC) | |
4737 // rate. It uses a fixed surface pressure of 1.0 bar to deliver stable results | |
4738 // when used through the deco calculator. | |
4739 // | |
628 | 4740 // Input: gas_needs_depth depth in meters |
631 | 4741 // gas_needs_time time in minutes (0 encodes 1/10 minute) |
628 | 4742 // gas_needs_usage_rate gas usage in liters per minute at surface pressure |
623 | 4743 // |
628 | 4744 // Output: gas_needs_volume_due required gas volume in liters |
623 | 4745 // |
631 | 4746 static void calc_required_volume(void) |
623 | 4747 { |
631 | 4748 // calculate volume for 1 minute |
4749 gas_needs_volume_due = ((float)gas_needs_depth * METER_TO_BAR + pres_surface) * gas_needs_usage_rate; | |
4750 | |
4751 // multiply 1-minute-volume with time factor if time factor <> 1 | |
4752 if ( gas_needs_time == 0 ) gas_needs_volume_due *= 0.1; // 1/10 minute | |
4753 else if ( gas_needs_time > 1 ) gas_needs_volume_due *= gas_needs_time; // multiple minutes | |
0 | 4754 } |
4755 | |
560 | 4756 |
631 | 4757 |
4758 #ifdef _rx_functions | |
4759 | |
0 | 4760 ////////////////////////////////////////////////////////////////////////////// |
623 | 4761 // calc_TR_functions |
4762 // | |
4763 // Process Pressure Readings (OSTC TR only) | |
4764 // | |
4765 // Input: todo | |
4766 // | |
4767 // Output: todo | |
4768 // | |
4769 static void calc_TR_functions(void) | |
560 | 4770 { |
623 | 4771 // pressure warnings for reading 1, but only if enabled and pressure value available |
4772 if( (char_I_pressure_gas[0] > 0) && !(int_IO_pressure_value[0] & INT_FLAG_NOT_AVAIL) ) | |
604 | 4773 { |
623 | 4774 overlay unsigned short pressure_value = int_IO_pressure_value[0] & ~INT_FLAG_OUTDATED; |
4775 | |
4776 if( (char_I_pressure_gas[0] < 6 ) && !(int_O_pressure_need[0] & INT_FLAG_NOT_AVAIL) ) | |
4777 { | |
4778 // not a diluent and need available: warning & attention by need | |
4779 if ( pressure_value <= int_O_pressure_need[0]) | |
4780 int_IO_pressure_value[0] |= INT_FLAG_WARNING; | |
4781 else if( pressure_value <= int_O_pressure_need[0] + int_O_pressure_need[0] / 2 ) | |
4782 int_IO_pressure_value[0] |= INT_FLAG_ATTENTION; | |
4783 } | |
4784 else | |
4785 { | |
4786 // a diluent or need not available: warning & attention by fixed thresholds | |
4787 if ( pressure_value <= PRESSURE_LIMIT_WARNING ) int_IO_pressure_value[0] |= INT_FLAG_WARNING; | |
4788 else if ( pressure_value <= PRESSURE_LIMIT_ATTENTION ) int_IO_pressure_value[0] |= INT_FLAG_ATTENTION; | |
4789 } | |
604 | 4790 } |
4791 | |
623 | 4792 // pressure warnings for reading 2, but only if enabled and pressure value available |
4793 if( (char_I_pressure_gas[1] > 0) && !(int_IO_pressure_value[1] & INT_FLAG_NOT_AVAIL) ) | |
560 | 4794 { |
623 | 4795 overlay unsigned short pressure_value = int_IO_pressure_value[1] & ~INT_FLAG_OUTDATED; |
4796 | |
4797 if( (char_I_pressure_gas[1] < 6 ) && !(int_O_pressure_need[1] & INT_FLAG_NOT_AVAIL) ) | |
560 | 4798 { |
623 | 4799 // not a diluent and need available: warning & attention by need |
4800 if ( pressure_value <= int_O_pressure_need[1]) | |
4801 int_IO_pressure_value[1] |= INT_FLAG_WARNING; | |
4802 else if ( pressure_value <= int_O_pressure_need[1] + int_O_pressure_need[1] / 2 ) | |
4803 int_IO_pressure_value[1] |= INT_FLAG_ATTENTION; | |
560 | 4804 } |
4805 else | |
4806 { | |
623 | 4807 // a diluent or need not available: warning & attention by fixed thresholds |
4808 if ( pressure_value <= PRESSURE_LIMIT_WARNING ) int_IO_pressure_value[1] |= INT_FLAG_WARNING; | |
4809 else if ( pressure_value <= PRESSURE_LIMIT_ATTENTION ) int_IO_pressure_value[1] |= INT_FLAG_ATTENTION; | |
560 | 4810 } |
4811 } | |
582 | 4812 |
623 | 4813 //--- SAC Calculation --------------------------------------------------------------------- |
4814 // | |
4815 // char_I_SAC_mode =0: disabled | |
4816 // =1: SAC from 1st reading | |
4817 // =2: SAC from 2nd reading | |
4818 // =3: SAC from higher one of both pressure drops (independent double mode) | |
4819 // =4: SAC (O2 usage) from 2nd reading without real_pres_respiration term | |
4820 | |
4821 // set SAC rate to not available by default | |
4822 int_O_SAC_measured = 0 + INT_FLAG_NOT_AVAIL; | |
4823 | |
4824 // get a copy of the current absolute pressure | |
4825 pres_respiration_sac = real_pres_respiration; | |
4826 | |
4827 // set threshold for SAC rate attention | |
628 | 4828 max_sac_rate = (deco_info & DECO_MODE) ? char_I_SAC_deco : char_I_SAC_work; |
623 | 4829 |
4830 // char_I_SAC_deco / char_I_SAC_work are in l/min, max_sac_rate is in 0.1 l/min | |
4831 max_sac_rate *= 10; | |
4832 | |
4833 | |
4834 // pre-process SAC mode 3 (independent double) | |
4835 if( char_I_SAC_mode == 3 ) | |
560 | 4836 { |
623 | 4837 overlay unsigned char reading1_gas; |
4838 overlay unsigned char reading2_gas; | |
4839 overlay unsigned char reading1_tanksize; | |
4840 overlay unsigned char reading2_tanksize; | |
4841 overlay unsigned short reading1_press; | |
4842 overlay unsigned short reading2_press; | |
4843 overlay unsigned short reading1_drop; | |
4844 overlay unsigned short reading2_drop; | |
4845 | |
4846 // get gas numbers (1-10) of both readings | |
4847 reading1_gas = char_I_pressure_gas[0]; | |
4848 reading2_gas = char_I_pressure_gas[1]; | |
4849 | |
4850 // default to no SAC calculation | |
4851 char_I_SAC_mode = 0; | |
4852 | |
4853 // clear switch advice by default | |
4854 deco_info &= ~IND_DOUBLE_SWITCH_FLAG; | |
4855 | |
4856 // check if both readings are configured and available | |
4857 if( reading1_gas ) | |
4858 if( reading2_gas ) | |
4859 if( !(int_IO_pressure_value[0] & INT_FLAG_NOT_AVAIL) ) | |
4860 if( !(int_IO_pressure_value[1] & INT_FLAG_NOT_AVAIL) ) | |
4861 if( !(int_I_pressure_drop[0] & INT_FLAG_NOT_AVAIL) ) | |
4862 if( !(int_I_pressure_drop[1] & INT_FLAG_NOT_AVAIL) ) | |
560 | 4863 { |
623 | 4864 // get tank pressures, stripping flags |
4865 reading1_press = int_IO_pressure_value[0] & 0x0FFF; // in 0.1 bar | |
4866 reading2_press = int_IO_pressure_value[1] & 0x0FFF; // in 0.1 bar | |
4867 | |
4868 // get pressure drops as integers, stripping flags and shifting right | |
4869 // to avoid an overflow when multiplying with the tank size later on | |
4870 reading1_drop = (int_I_pressure_drop[0] & 0x0FFF) >> 2; | |
4871 reading2_drop = (int_I_pressure_drop[1] & 0x0FFF) >> 2; | |
4872 | |
4873 // get tank sizes | |
4874 reading1_tanksize = char_I_gas_avail_size[reading1_gas-1]; | |
4875 reading2_tanksize = char_I_gas_avail_size[reading2_gas-1]; | |
4876 | |
4877 // set mode to calculate SAC on the reading with the higher absolute drop | |
4878 char_I_SAC_mode = (reading1_drop * reading1_tanksize > reading2_drop * reading2_tanksize) ? 1 : 2; | |
4879 | |
4880 // compute switch advice if pressure (in 0.1 bar) of tank breathed from is | |
4881 // more than char_I_max_pres_diff (in bar) below pressure of the other tank. | |
4882 if( char_I_SAC_mode == 1 ) | |
4883 { | |
4884 // breathing from reading 1, switch advice if pressure on reading 1 lower than on 2 | |
4885 if( (reading1_press + 10*char_I_max_pres_diff) <= reading2_press ) | |
4886 deco_info |= IND_DOUBLE_SWITCH_FLAG; | |
4887 } | |
4888 else | |
4889 { | |
4890 // breathing from reading 2, switch advice if pressure on reading 2 lower than on 1 | |
4891 if( (reading2_press + 10*char_I_max_pres_diff) <= reading1_press ) | |
4892 deco_info |= IND_DOUBLE_SWITCH_FLAG; | |
4893 } | |
560 | 4894 } |
4895 } | |
4896 | |
623 | 4897 |
4898 // pre-process SAC mode 4 (O2 usage by reading 2) | |
4899 if( char_I_SAC_mode == 4 ) | |
4900 { | |
4901 // O2 usage on CCR is independent from absolute pressure | |
4902 pres_respiration_sac = 1.0; | |
4903 | |
4904 // O2 pressure drop is measured via reading 2 | |
4905 char_I_SAC_mode = 2; | |
4906 | |
4907 // reconfigure max SAC rate to O2 consumption attention threshold | |
4908 max_sac_rate = O2_CONSUMPTION_LIMIT_ATTENTION; | |
4909 } | |
4910 | |
4911 | |
628 | 4912 // select which pressure reading to log |
4913 if( char_I_SAC_mode == 1 ) int_O_tank_pressure = int_IO_pressure_value[0]; | |
4914 else if( char_I_SAC_mode == 2 ) int_O_tank_pressure = int_IO_pressure_value[1]; | |
4915 else int_O_tank_pressure = 0; | |
4916 | |
4917 // strip flags | |
4918 int_O_tank_pressure &= 0x0FFF; | |
4919 | |
631 | 4920 // scale to recording format of full bar only |
628 | 4921 int_O_tank_pressure /= 10; |
4922 | |
4923 | |
623 | 4924 // calculate SAC - modes 1 & 2 |
4925 if( (char_I_SAC_mode == 1) || (char_I_SAC_mode == 2) ) | |
560 | 4926 { |
623 | 4927 overlay unsigned char reading_index; |
4928 overlay unsigned char reading_gas; | |
4929 overlay unsigned char reading_tanksize; | |
4930 overlay float reading_drop; | |
4931 | |
4932 // set index: char_I_SAC_mode = 1 -> reading one, index 0 | |
4933 // = 2 -> two, 1 | |
4934 reading_index = char_I_SAC_mode - 1; | |
4935 | |
4936 // get gas number (1-10) | |
4937 reading_gas = char_I_pressure_gas[reading_index]; | |
4938 | |
4939 // check if reading is configured and available | |
4940 if( reading_gas ) | |
4941 if( !(int_I_pressure_drop[reading_index] & INT_FLAG_NOT_AVAIL) ) | |
4942 { | |
4943 // get tank size (in liter) | |
4944 reading_tanksize = char_I_gas_avail_size[reading_gas-1]; | |
4945 | |
4946 // get pressure drop as float, stripping flags (in 1/5120 bar/sec) | |
4947 reading_drop = (float)(int_I_pressure_drop[reading_index] & 0x0FFF); | |
4948 | |
4949 // check if pressure drop is within range | |
4950 if( !(int_I_pressure_drop[reading_index] & INT_FLAG_OUT_OF_RANGE) ) | |
4951 { | |
4952 // calculate SAC, 10 is factor to have result in 0.1 liter/min | |
4953 // 60 is factor for 60 seconds per 1 minute, | |
4954 // 5120 accounts for reading_drop being in 1/5120 bar/sec | |
4955 // 10*60/5120 = 60/512 = 15/128 | |
4956 float_sac = reading_drop * 15/128 * reading_tanksize / pres_respiration_sac; | |
4957 | |
4958 // limit result to 999 (99.9 liter/min) | |
4959 if ( float_sac >= 998.5 ) | |
4960 { | |
4961 int_O_SAC_measured = 999 + INT_FLAG_ATTENTION; | |
4962 } | |
4963 else | |
4964 { | |
4965 // convert float to integer | |
4966 int_O_SAC_measured = (unsigned short)(float_sac + 0.5); | |
4967 | |
4968 // set attention flag if exceeding SAC threshold, but only if pressure drop is not outdated | |
4969 if( !(int_I_pressure_drop[reading_index] & INT_FLAG_OUTDATED) ) | |
4970 if( int_O_SAC_measured >= max_sac_rate ) | |
4971 { | |
4972 int_O_SAC_measured |= INT_FLAG_ATTENTION; | |
4973 } | |
4974 } | |
4975 } | |
4976 else | |
4977 { | |
4978 // pressure drop is out of range, so SAC will be set out of range, too | |
4979 int_O_SAC_measured = 999 + INT_FLAG_ATTENTION; | |
4980 } | |
4981 | |
4982 // copy outdated flag from int_I_pressure_drop to int_O_SAC_measured | |
4983 if( int_I_pressure_drop[reading_index] & INT_FLAG_OUTDATED ) | |
4984 { | |
4985 int_O_SAC_measured |= INT_FLAG_OUTDATED; | |
4986 } | |
4987 } | |
4988 } | |
4989 } | |
631 | 4990 #endif // _rx_functions |
4991 | |
4992 | |
4993 #ifdef _cave_mode | |
4994 | |
4995 ////////////////////////////////////////////////////////////////////////////// | |
4996 // read_backtrack_data | |
4997 // | |
4998 // Gets the data of the next backtracking data set | |
4999 // | |
5000 // Modified: backtrack_index last current position in backtracking storage | |
5001 // | |
5002 // Output: backtrack_step_counter number of 1/10 min calculation steps to do on next target depth | |
5003 // backtrack_target_depth next target depth | |
5004 // | |
5005 static void read_backtrack_data(void) | |
5006 { | |
5007 overlay unsigned char firstround = 1; | |
5008 | |
5009 | |
5010 // load the step counter with the default of ten 1/10 minute steps to go between two depth samples | |
5011 backtrack_step_counter = 10; | |
5012 | |
5013 // repeat until having read the whole data set or having reached the first storage position | |
5014 while(backtrack_index) | |
5015 { | |
5016 // backtracking data recording format: | |
5017 // --------------------------------------------------------------------------- | |
5018 // 0ddddddd -> datum is a depth recording with d = 0..127 depth in meters | |
5019 // 10tttttt -> delta time with t = 0.. 59 time in seconds | |
5020 // 110ggggg -> gas staging status with g = 1 gas staged | |
5021 // 111nnnnn -> waypoint marker with n = 1.. 31 waypoint number | |
5022 // | |
5023 // gas availability vector: LSB : gas 1 (and so on) | |
5024 // waypoint marker : 1 - 30: user waypoints, last waypoint is turn point | |
5025 // : 31: spare for turn point if all 30 waypoints used up | |
5026 // : 0: reserved | |
5027 | |
5028 // read recording entry and then advance (backward direction!) the reading index | |
5029 overlay unsigned char datum = char_I_backtrack_storage[backtrack_index--]; | |
5030 | |
5031 // is it a target depth? | |
5032 if( datum < 128 ) | |
5033 { | |
5034 // YES - assign the target depth | |
5035 backtrack_target_depth = datum; | |
5036 | |
5037 // a depth entry closes a data set, so done with this data set | |
5038 return; | |
5039 } | |
5040 | |
5041 // is it a delta time entry? | |
5042 else if( datum < 128 + 64 ) | |
5043 { | |
5044 // YES - When a delta time entry is contained in a data set, the time | |
5045 // stored in the delta time entry is the time that has elapsed | |
5046 // between storage of the depth that is part of this data set | |
5047 // and the previous depth recording. | |
5048 // This entry is stored whenever the delta time is shorter than | |
5049 // the default 1 minute depth sampling interval time. | |
5050 | |
5051 // assign the delta time to the step counter: remove entry tag and | |
5052 // convert datum from 0..59 seconds to 0..9 steps by integer division | |
5053 backtrack_step_counter = (datum - 128) / 6; | |
5054 } | |
5055 | |
5056 // is it a gas staging status entry? | |
5057 else if( datum < 128 + 64 + 32 ) | |
5058 { | |
5059 // YES - extract gas staging status | |
5060 overlay unsigned char gas_status = datum - (128 + 64); | |
5061 | |
5062 // decode and update gas staging status | |
5063 // | |
5064 // bit set : gas is staged (not available) during next section of backtracking, | |
5065 // bit cleared: gas is not staged ( available) during next section of backtracking. | |
5066 // | |
5067 // bit 0 corresponds to gas 1, ..., bit 4 corresponds to gas 5 | |
5068 // | |
5069 for( i = 0; i < NUM_GAS; i++ ) | |
5070 { | |
5071 if ( gas_status & (1 << i) ) deco_gas_type[i] |= GAS_AVAIL_STAGED; // staged | |
5072 else deco_gas_type[i] &= ~GAS_AVAIL_STAGED; // not staged | |
5073 } | |
5074 } | |
5075 | |
5076 // must be waypoint marker entry then | |
5077 else | |
5078 { | |
5079 // set step counter to zero if first entry read is a waypoint entry | |
5080 if( firstround ) backtrack_step_counter = 0; | |
5081 } | |
5082 | |
5083 // first round done | |
5084 firstround = 0; | |
5085 | |
5086 } // while | |
5087 | |
5088 // first storage position reached, by convention it contains | |
5089 // the final target depth which is zero meters aka the surface | |
5090 backtrack_target_depth = 0; | |
5091 } | |
5092 | |
5093 #endif // _cave_mode | |
5094 | |
623 | 5095 |
5096 | |
5097 ////////////////////////////////////////////////////////////////////////////// | |
631 | 5098 // convert_volume_to_pressure |
623 | 5099 // |
5100 // Converts gas volumes into pressures and sets respective flags | |
5101 // | |
5102 // Input: gas_needs_gas_index index of the gas to convert (0-4) | |
5103 // gas_volume_need[] needed gas volume in liters | |
5104 // char_I_gas_avail_pres[] available gas volume in bar | |
5105 // char_I_gas_avail_size[] size of the tanks in liters | |
5106 // char_I_pressure_gas[] gas configured on reading 1/2 (TR only) | |
5107 // | |
631 | 5108 // Output: int_O_gas_need_vol[] required gas amount in liters |
5109 // int_O_gas_need_pres[] required gas amount in bar, including flags | |
623 | 5110 // int_O_pressure_need[] required gas amount for reading 1/2 (TR only) |
5111 // | |
631 | 5112 static void convert_volume_to_pressure(void) |
623 | 5113 { |
5114 // just to make the code more readable... | |
5115 i = gas_needs_gas_index; | |
5116 | |
5117 if( gas_volume_need[i] >= 65534.5 ) | |
5118 { | |
5119 int_O_gas_need_vol[i] = 65535; // clip at 65535 liters | |
5120 int_O_gas_need_pres[i] = 999 | INT_FLAG_WARNING | INT_FLAG_HIGH; // 999 bar + warning flag + >999 flag | |
560 | 5121 } |
5122 else | |
5123 { | |
631 | 5124 // convert gas volume need from float to integer [in liter] |
5125 int_O_gas_need_vol[i] = (unsigned short)( gas_volume_need[i] + 0.5 ); | |
623 | 5126 |
5127 // compute how much pressure in the tank will be needed [in bar] | |
631 | 5128 int_O_gas_need_pres[i] = (unsigned short)( gas_volume_need[i] / char_I_gas_avail_size[i] + 0.5 ); |
623 | 5129 |
5130 // limit result to 999 bar because of display constraints | |
5131 if( int_O_gas_need_pres[i] > 999 ) int_O_gas_need_pres[i] = 999 | INT_FLAG_HIGH; | |
5132 | |
631 | 5133 // set flags for fast evaluation by output routine |
5134 if( int_O_gas_need_pres[i] == 0 ) int_O_gas_need_pres[i] |= INT_FLAG_ZERO; | |
5135 else | |
5136 #ifdef _gas_contingency | |
5137 if( main_status & GAS_CONTINGENCY ) | |
5138 { | |
5139 // take warning and attention computed en-route | |
5140 if ( deco_gas_type[i] & GAS_NEED_WARNING ) | |
5141 { | |
5142 // tag the tank with a warning | |
5143 int_O_gas_need_pres[i] |= INT_FLAG_WARNING; | |
5144 | |
5145 // tag the peer tanks with a warning, too | |
5146 for( j = 0; j < NUM_GAS; j++ ) | |
5147 { | |
5148 if( peer_tank[i] & (1 << j) ) int_O_gas_need_pres[j] |= INT_FLAG_WARNING; | |
5149 } | |
5150 } | |
5151 else if( deco_gas_type[i] & GAS_NEED_ATTENTION ) | |
5152 { | |
5153 // tag the tank with an attention | |
5154 int_O_gas_need_pres[i] |= INT_FLAG_ATTENTION; | |
5155 | |
5156 // tag the peer tanks with an attention, too | |
5157 for( j = 0; j < NUM_GAS; j++ ) | |
5158 { | |
5159 if( peer_tank[i] & (1 << j) ) int_O_gas_need_pres[j] |= INT_FLAG_ATTENTION; | |
5160 } | |
5161 } | |
5162 } | |
5163 else | |
5164 #endif | |
5165 { | |
5166 // compute warning and attention now | |
5167 if ( gas_volume_need[i] >= gas_volume_avail[i] ) int_O_gas_need_pres[i] |= INT_FLAG_WARNING; | |
5168 else if( gas_volume_need[i] >= gas_volume_atten[i] ) int_O_gas_need_pres[i] |= INT_FLAG_ATTENTION; | |
5169 } | |
560 | 5170 } |
5171 | |
631 | 5172 // set invalid flag if there is an overflow in the stops table or calculation took too long |
628 | 5173 if( deco_warnings & DECO_WARNING_INCOMPLETE ) int_O_gas_need_pres[i] |= INT_FLAG_INVALID; |
560 | 5174 |
604 | 5175 #ifdef _rx_functions |
5176 // only for OSTC TR model with TR functions enabled | |
623 | 5177 if( main_status & TR_FUNCTIONS ) |
560 | 5178 { |
623 | 5179 // char_I_pressure_gas[] uses gas indexes from 1-10, loop variable i runs from 0 to 4 |
631 | 5180 j = i+1; |
623 | 5181 |
5182 // check if the current gas is configured on pressure reading 1 or 2 | |
5183 if( (char_I_pressure_gas[0] == j) || (char_I_pressure_gas[1] == j) ) | |
560 | 5184 { |
623 | 5185 // get a copy of the required pressure in full bar |
5186 overlay unsigned short int_pres_need = int_O_gas_need_pres[i]; | |
5187 | |
5188 // strip all flags | |
5189 int_pres_need &= 1023; | |
5190 | |
5191 // limit to 400 bar and multiply by 10 to get required pressure in 0.1 bar | |
5192 int_pres_need = (int_pres_need > 400) ? 4000 | INT_FLAG_OUT_OF_RANGE : 10 * int_pres_need; | |
5193 | |
631 | 5194 // tag as not available if there is an overflow in the stops table or calculation took too long |
628 | 5195 if( deco_warnings & DECO_WARNING_INCOMPLETE ) int_pres_need |= INT_FLAG_NOT_AVAIL; |
623 | 5196 |
5197 // copy to reading data (in both readings the same gas could be configured) | |
5198 if( char_I_pressure_gas[0] == j ) int_O_pressure_need[0] = int_pres_need; | |
5199 if( char_I_pressure_gas[1] == j ) int_O_pressure_need[1] = int_pres_need; | |
5200 } | |
5201 } // TR functions | |
604 | 5202 #endif |
0 | 5203 } |
5204 | |
623 | 5205 |
5206 ////////////////////////////////////////////////////////////////////////////// | |
5207 // convert the real CNS value to integer | |
5208 // | |
5209 // Input CNS_fraction_real current CNS value as float | |
5210 // | |
5211 // Output: int_O_CNS_current current CNS value as integer including flags | |
5212 // | |
5213 static void convert_cur_CNS_for_display(void) | |
5214 { | |
5215 // convert to integer | |
5216 float_value = CNS_fraction_real; convert_float_to_int(); int_O_CNS_current = int_value; | |
5217 | |
5218 // set warning & attention flags | |
628 | 5219 if ( int_O_CNS_current >= CNS_LIMIT_WARNING ) int_O_CNS_current |= INT_FLAG_WARNING; |
5220 else if ( int_O_CNS_current >= CNS_LIMIT_ATTENTION ) int_O_CNS_current |= INT_FLAG_ATTENTION; | |
623 | 5221 } |
5222 | |
5223 | |
0 | 5224 ////////////////////////////////////////////////////////////////////////////// |
623 | 5225 // convert the simulated CNS value to integer |
5226 // | |
5227 // Input: CNS_fraction_sim CNS value after predicted ascent in float | |
5228 // | |
5229 // Output: int_sim_CNS_fraction CNS value after predicted ascent in integer | |
5230 // including flags, will be routed to | |
5231 // int_O_{normal,alternative}_CNS_fraction | |
5232 // | |
604 | 5233 static void convert_sim_CNS_for_display(void) |
582 | 5234 { |
623 | 5235 // convert to integer |
5236 float_value = CNS_fraction_sim; convert_float_to_int(); int_sim_CNS_fraction = int_value; | |
5237 | |
5238 // set warning & attention flags | |
628 | 5239 if ( int_sim_CNS_fraction >= CNS_LIMIT_WARNING ) int_sim_CNS_fraction |= INT_FLAG_WARNING; |
5240 else if ( int_sim_CNS_fraction >= CNS_LIMIT_ATTENTION ) int_sim_CNS_fraction |= INT_FLAG_ATTENTION; | |
604 | 5241 |
631 | 5242 // set invalid flag if there is an overflow in the stops table or calculation took too long |
628 | 5243 if ( deco_warnings & DECO_WARNING_INCOMPLETE ) int_sim_CNS_fraction |= INT_FLAG_INVALID; |
604 | 5244 } |
5245 | |
623 | 5246 |
604 | 5247 ////////////////////////////////////////////////////////////////////////////// |
623 | 5248 // convert the saturation value of the leading tissue to integer |
5249 // | |
5250 // Input lead_supersat saturation of the leading tissue | |
5251 // lead_tissue number of the leading tissue | |
5252 // char_I_GF_High_percentage GF high factor | |
5253 // | |
5254 // Output: int_O_lead_supersat saturation of the leading tissue | |
5255 // char_O_lead_tissue number of the leading tissue | |
5256 // | |
5257 // Modified: deco_warnings deco engine warnings vector | |
5258 // | |
5259 static void convert_sat_for_display(void) | |
604 | 5260 { |
623 | 5261 // convert supersaturation of the leading tissue to int_O_lead_supersat in % (1.0 = 100%) |
604 | 5262 // limit to 255 because of constraints in ghostwriter code |
623 | 5263 if ( lead_supersat <= 0.000 ) int_O_lead_supersat = 0; |
5264 else if ( lead_supersat > 2.545 ) int_O_lead_supersat = 255; | |
5265 else int_O_lead_supersat = (unsigned short)(100 * lead_supersat + 0.5); | |
5266 | |
5267 // set warning & attention flags | |
5268 if( int_O_lead_supersat > 100 ) | |
604 | 5269 { |
623 | 5270 int_O_lead_supersat |= INT_FLAG_WARNING; // make GF factor shown in red |
5271 deco_warnings |= DECO_WARNING_OUTSIDE; // make depth shown in red | |
5272 } | |
631 | 5273 else if( (char_I_model != 0) && (int_O_lead_supersat > char_I_GF_High_percentage) |
5274 || (char_I_model == 0) && (int_O_lead_supersat > 99 ) ) | |
623 | 5275 { |
5276 int_O_lead_supersat |= INT_FLAG_ATTENTION; // make GF factor shown in yellow | |
5277 deco_warnings |= DECO_ATTENTION_OUTSIDE; // make depth shown in yellow | |
604 | 5278 } |
5279 | |
5280 // export also the number of the leading tissue | |
623 | 5281 char_O_lead_tissue = lead_tissue; |
604 | 5282 } |
5283 | |
623 | 5284 |
604 | 5285 ////////////////////////////////////////////////////////////////////////////// |
623 | 5286 // convert the ceiling value to integer |
5287 // | |
5288 // Input: ceiling minimum depth permitted in float | |
5289 // | |
628 | 5290 // Output: int_O_ceiling minimum depth permitted in mbar (cm) |
623 | 5291 // |
5292 // Modified: deco_info deco engine information vector | |
5293 // | |
604 | 5294 static void convert_ceiling_for_display(void) |
5295 { | |
5296 // Convert ceiling to int_O_ceiling in mbar relative pressure. | |
5297 // Round up to next 10 cm so that the ceiling disappears only | |
5298 // when the ceiling limit is really zero. This will coincident | |
5299 // with TTS switching back to NDL time. | |
628 | 5300 // The +1.5 term figures in the conversion factor of 10.015 m/bar |
5301 // which is used inside the deco engine but not outside of it. | |
623 | 5302 if ( ceiling <= 0.0 ) int_O_ceiling = 0; |
5303 else if ( ceiling > 16.0 ) int_O_ceiling = 16000; | |
628 | 5304 else int_O_ceiling = (unsigned short)(ceiling * (1000+1.5) + 9); |
604 | 5305 |
5306 // set/reset ceiling flag | |
623 | 5307 if ( int_O_ceiling ) deco_info |= DECO_CEILING; |
5308 else deco_info &= ~DECO_CEILING; | |
0 | 5309 } |
5310 | |
623 | 5311 |
0 | 5312 ////////////////////////////////////////////////////////////////////////////// |
582 | 5313 // push_tissues_to_vault & pull_tissues_from_vault |
5314 // | |
5315 // ATTENTION: Do not use from inside the deco engine! | |
5316 // The vault is exclusively reserved to back-up and restore the real | |
5317 // tissues and related data when entering / leaving simulation mode! | |
5318 // | |
623 | 5319 // Input/Output: CNS_fraction_real current real CNS value |
5320 // char_O_deco_warnings deco engine warnings vector | |
5321 // real_pres_tissue_N2[] partial pressure of N2 in real tissues | |
5322 // real_pres_tissue_He[] partial pressure of He in real tissues | |
5323 // | |
5324 // Output: int_O_CNS_current current CNS value as integer including flags | |
5325 // | |
604 | 5326 static void push_tissues_to_vault(void) |
0 | 5327 { |
623 | 5328 // store the current CNS value and deco warnings |
5329 vault_CNS_fraction_real = CNS_fraction_real; | |
5330 vault_deco_warnings = char_O_deco_warnings; | |
5331 vault_deco_info = char_O_deco_info; | |
5332 | |
5333 // store the tissue pressures | |
5334 for( i = 0; i < NUM_COMP; i++ ) | |
582 | 5335 { |
623 | 5336 vault_pres_tissue_N2[i] = real_pres_tissue_N2[i]; |
5337 #ifdef _helium | |
5338 vault_pres_tissue_He[i] = real_pres_tissue_He[i]; | |
5339 #else | |
5340 vault_pres_tissue_He[i] = 0; | |
5341 #endif | |
582 | 5342 } |
0 | 5343 } |
5344 | |
604 | 5345 static void pull_tissues_from_vault(void) |
0 | 5346 { |
623 | 5347 // restore the CNS value and deco warnings |
5348 CNS_fraction_real = vault_CNS_fraction_real; | |
5349 char_O_deco_warnings = vault_deco_warnings; | |
5350 char_O_deco_info = vault_deco_info; | |
5351 | |
5352 // convert the CNS value to integer | |
5353 convert_cur_CNS_for_display(); | |
5354 | |
5355 // restore the tissue pressures | |
5356 for( i = 0; i < NUM_COMP; i++ ) | |
582 | 5357 { |
623 | 5358 real_pres_tissue_N2[i] = vault_pres_tissue_N2[i]; |
5359 #ifdef _helium | |
5360 real_pres_tissue_He[i] = vault_pres_tissue_He[i]; | |
5361 #else | |
5362 real_pres_tissue_He[i] = 0; | |
5363 #endif | |
582 | 5364 } |
0 | 5365 } |
5366 | |
623 | 5367 |
0 | 5368 ////////////////////////////////////////////////////////////////////////////// |
5369 // | |
5370 #ifndef CROSS_COMPILE | |
5371 void main() {} | |
5372 #endif |