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