annotate src/p2_deco.c @ 518:72f6cb65ca4a

BUGFIX: Do not check ppO2 for disabled gases
author heinrichsweikamp
date Thu, 03 Aug 2017 17:17:25 +0200
parents 6ec79c5384f5
children ff1e6adf55ad
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
heinrichsweikamp
parents:
diff changeset
1 // **************************************************************
heinrichsweikamp
parents:
diff changeset
2 // p2_deco.c
heinrichsweikamp
parents:
diff changeset
3 //
heinrichsweikamp
parents:
diff changeset
4 // Created on: 12.05.2009
heinrichsweikamp
parents:
diff changeset
5 // Author: chsw
heinrichsweikamp
parents:
diff changeset
6 //
heinrichsweikamp
parents:
diff changeset
7 // **************************************************************
heinrichsweikamp
parents:
diff changeset
8
heinrichsweikamp
parents:
diff changeset
9 //////////////////////////////////////////////////////////////////////////////
heinrichsweikamp
parents:
diff changeset
10 // OSTC - diving computer code
heinrichsweikamp
parents:
diff changeset
11 // Copyright (C) 2011 HeinrichsWeikamp GbR
heinrichsweikamp
parents:
diff changeset
12 //
heinrichsweikamp
parents:
diff changeset
13 // This program is free software: you can redistribute it and/or modify
heinrichsweikamp
parents:
diff changeset
14 // it under the terms of the GNU General Public License as published by
heinrichsweikamp
parents:
diff changeset
15 // the Free Software Foundation, either version 3 of the License, or
heinrichsweikamp
parents:
diff changeset
16 // (at your option) any later version.
heinrichsweikamp
parents:
diff changeset
17 //
heinrichsweikamp
parents:
diff changeset
18 // This program is distributed in the hope that it will be useful,
heinrichsweikamp
parents:
diff changeset
19 // but WITHOUT ANY WARRANTY; without even the implied warranty of
heinrichsweikamp
parents:
diff changeset
20 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
heinrichsweikamp
parents:
diff changeset
21 // GNU General Public License for more details.
heinrichsweikamp
parents:
diff changeset
22 //
heinrichsweikamp
parents:
diff changeset
23 // You should have received a copy of the GNU General Public License
heinrichsweikamp
parents:
diff changeset
24 // along with this program. If not, see <http://www.gnu.org/licenses/>.
heinrichsweikamp
parents:
diff changeset
25 //
heinrichsweikamp
parents:
diff changeset
26 //////////////////////////////////////////////////////////////////////////////
heinrichsweikamp
parents:
diff changeset
27
heinrichsweikamp
parents:
diff changeset
28 // *****************************
heinrichsweikamp
parents:
diff changeset
29 // ** I N T R O D U C T I O N **
heinrichsweikamp
parents:
diff changeset
30 // *****************************
heinrichsweikamp
parents:
diff changeset
31 //
heinrichsweikamp
parents:
diff changeset
32 // OSTC
heinrichsweikamp
parents:
diff changeset
33 //
heinrichsweikamp
parents:
diff changeset
34 // code:
heinrichsweikamp
parents:
diff changeset
35 // p2_deco_main_c_v101.c
heinrichsweikamp
parents:
diff changeset
36 // part2 of the OSTC code
heinrichsweikamp
parents:
diff changeset
37 // code with constant O2 partial pressure routines
heinrichsweikamp
parents:
diff changeset
38 // under construction !!
heinrichsweikamp
parents:
diff changeset
39 //
heinrichsweikamp
parents:
diff changeset
40 // summary:
heinrichsweikamp
parents:
diff changeset
41 // decompression routines
heinrichsweikamp
parents:
diff changeset
42 // for the OSTC experimental project
heinrichsweikamp
parents:
diff changeset
43 // written by Christian Weikamp
heinrichsweikamp
parents:
diff changeset
44 // last revision __________
heinrichsweikamp
parents:
diff changeset
45 // comments added _________
heinrichsweikamp
parents:
diff changeset
46 //
heinrichsweikamp
parents:
diff changeset
47 // additional files:
heinrichsweikamp
parents:
diff changeset
48 // p2_tables_v100.romdata (other files)
heinrichsweikamp
parents:
diff changeset
49 // 18f4685_ostc_v100.lkr (linker script)
heinrichsweikamp
parents:
diff changeset
50 //
heinrichsweikamp
parents:
diff changeset
51 // history:
heinrichsweikamp
parents:
diff changeset
52 // 01/03/08 v100: first release candidate
heinrichsweikamp
parents:
diff changeset
53 // 03/13/08 v101: start of programming ppO2 code
heinrichsweikamp
parents:
diff changeset
54 // 03/13/25 v101a: backup of interrim version with ppO2 calculation
heinrichsweikamp
parents:
diff changeset
55 // 03/13/25 v101: open circuit gas change during deco
heinrichsweikamp
parents:
diff changeset
56 // 03/13/25 v101: CNS_fraction calculation
heinrichsweikamp
parents:
diff changeset
57 // 03/13/26 v101: optimization of tissue calc routines
heinrichsweikamp
parents:
diff changeset
58 // 07/xx/08 v102a: debug of bottom time routine
heinrichsweikamp
parents:
diff changeset
59 // 09/xx/08 v102d: Gradient Factor Model implemenation
heinrichsweikamp
parents:
diff changeset
60 // 10/10/08 v104: renamed to build v103 for v118 stable
heinrichsweikamp
parents:
diff changeset
61 // 10/14/08 v104: integration of char_I_depth_last_deco for Gradient Model
heinrichsweikamp
parents:
diff changeset
62 // 03/31/09 v107: integration of FONT Incon24
heinrichsweikamp
parents:
diff changeset
63 // 05/23/10 v109: 5 gas changes & 1 min timer
heinrichsweikamp
parents:
diff changeset
64 // 07/13/10 v110: cns vault added
heinrichsweikamp
parents:
diff changeset
65 // 12/25/10 v110: split in three files (deco.c, main.c, definitions.h)
heinrichsweikamp
parents:
diff changeset
66 // 2011/01/20: [jDG] Create a common file included in ASM and C code.
heinrichsweikamp
parents:
diff changeset
67 // 2011/01/24: [jDG] Make ascenttime an short. No more overflow!
heinrichsweikamp
parents:
diff changeset
68 // 2011/01/25: [jDG] Fusion deco array for both models.
heinrichsweikamp
parents:
diff changeset
69 // 2011/01/25: [jDG] Use CF(54) to reverse deco order.
heinrichsweikamp
parents:
diff changeset
70 // 2011/02/11: [jDG] Reworked gradient-factor implementation.
heinrichsweikamp
parents:
diff changeset
71 // 2011/02/15: [jDG] Fixed inconsistencies introduced by gas switch delays.
heinrichsweikamp
parents:
diff changeset
72 // 2011/03/21: [jDG] Added gas consumption (CF56 & CF57) evaluation for OCR mode.
heinrichsweikamp
parents:
diff changeset
73 // 2011/04/15: [jDG] Store low_depth in 32bits (w/o rounding), for a better stability.
heinrichsweikamp
parents:
diff changeset
74 // 2011/04/25: [jDG] Added 1mn mode for CNS calculation, to allow it for decoplanning.
heinrichsweikamp
parents:
diff changeset
75 // 2011/04/27: [jDG] Fixed char_O_gradient_factor calculation when model uses gradient-factor.
heinrichsweikamp
parents:
diff changeset
76 // 2011/05/02: [jDG] Added "Future TTS" function (CF58).
heinrichsweikamp
parents:
diff changeset
77 // 2011/05/17: [jDG] Various cleanups.
heinrichsweikamp
parents:
diff changeset
78 // 2011/08/08: [jDG] Computes CNS during deco planning ascent.
heinrichsweikamp
parents:
diff changeset
79 // 2011/11/24: [jDG] Slightly faster and better NDL computation.
heinrichsweikamp
parents:
diff changeset
80 // 2011/12/17: [mH] Remove of the useless debug stuff
heinrichsweikamp
parents:
diff changeset
81 // 2012/02/24: [jDG] Remove missed stop bug.
heinrichsweikamp
parents:
diff changeset
82 // 2012/02/25: [jDG] Looking for a more stable LOW grad factor reference.
heinrichsweikamp
parents:
diff changeset
83 // 2012/09/10: [mH] Fill char_O_deco_time_for_log for logbook write
heinrichsweikamp
parents:
diff changeset
84 // 2012/10/05: [jDG] Better deco_gas_volumes accuracy (average depth, switch between stop).
heinrichsweikamp
parents:
diff changeset
85 // 2013/03/05: [jDG] Should vault low_depth too.
heinrichsweikamp
parents:
diff changeset
86 // 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
87 // 2013/05/08: [jDG] A. Salm remark: NOAA tables for CNS are in ATA, not bar.
115
72259a79eac2 FIX: Gas volume computation when using several travel mix.
heinrichsweikamp
parents: 114
diff changeset
88 // 2013/12/21: [jDG] Fix CNS calculation in decoplan w/o marked gas switch
72259a79eac2 FIX: Gas volume computation when using several travel mix.
heinrichsweikamp
parents: 114
diff changeset
89 // 2014/06/16: [jDG] Fix Helium diluant. 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
90 // 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
91 // 2015/06/12: [jDG] Fix NDL prediction while desaturating with the Buhlmann model.
0
heinrichsweikamp
parents:
diff changeset
92 //
heinrichsweikamp
parents:
diff changeset
93 // TODO:
heinrichsweikamp
parents:
diff changeset
94 //
heinrichsweikamp
parents:
diff changeset
95 // Literature:
313
0ce5fa241b8e FIX minor comment about deco offset unit...
jDG
parents: 298
diff changeset
96 // Buhlmann, Albert: Tauchmedizin; 4. Auflage [2002];
0
heinrichsweikamp
parents:
diff changeset
97 // Schr"oder, Kai & Reith, Steffen; 2000; S"attigungsvorg"ange beim Tauchen, das Modell ZH-L16, Funktionsweise von Tauchcomputern; http://www.achim-und-kai.de/kai/tausim/saett_faq
heinrichsweikamp
parents:
diff changeset
98 // Morrison, Stuart; 2000; DIY DECOMPRESSION; http://www.lizardland.co.uk/DIYDeco.html
heinrichsweikamp
parents:
diff changeset
99 // Balthasar, Steffen; Dekompressionstheorie I: Neo Haldane Modelle; http://www.txfreak.de/dekompressionstheorie_1.pdf
heinrichsweikamp
parents:
diff changeset
100 // Baker, Erik C.; Clearing Up The Confusion About "Deep Stops"
heinrichsweikamp
parents:
diff changeset
101 // Baker, Erik C.; Understanding M-values; http://www.txfreak.de/understanding_m-values.pdf
heinrichsweikamp
parents:
diff changeset
102 //
heinrichsweikamp
parents:
diff changeset
103 //
heinrichsweikamp
parents:
diff changeset
104
heinrichsweikamp
parents:
diff changeset
105 // *********************
heinrichsweikamp
parents:
diff changeset
106 // ** I N C L U D E S **
heinrichsweikamp
parents:
diff changeset
107 // *********************
heinrichsweikamp
parents:
diff changeset
108 #include <math.h>
heinrichsweikamp
parents:
diff changeset
109
heinrichsweikamp
parents:
diff changeset
110 // ***********************************************
heinrichsweikamp
parents:
diff changeset
111 // ** V A R I A B L E S D E F I N I T I O N S **
heinrichsweikamp
parents:
diff changeset
112 // ***********************************************
heinrichsweikamp
parents:
diff changeset
113
heinrichsweikamp
parents:
diff changeset
114 #include "p2_definitions.h"
heinrichsweikamp
parents:
diff changeset
115 #define TEST_MAIN
heinrichsweikamp
parents:
diff changeset
116 #include "shared_definitions.h"
heinrichsweikamp
parents:
diff changeset
117
heinrichsweikamp
parents:
diff changeset
118 // Water vapour partial pressure in the lumb.
heinrichsweikamp
parents:
diff changeset
119 #define ppWater 0.0627
heinrichsweikamp
parents:
diff changeset
120 #define METER_TO_BAR 0.09985
heinrichsweikamp
parents:
diff changeset
121 #define BAR_TO_METER 10.0150 // (1.0/METER_TO_BAR)
heinrichsweikamp
parents:
diff changeset
122
heinrichsweikamp
parents:
diff changeset
123 // Surface security factor
heinrichsweikamp
parents:
diff changeset
124 #define SURFACE_DESAT_FACTOR 0.7042
heinrichsweikamp
parents:
diff changeset
125
heinrichsweikamp
parents:
diff changeset
126 // *************************
heinrichsweikamp
parents:
diff changeset
127 // ** P R O T O T Y P E S **
heinrichsweikamp
parents:
diff changeset
128 // *************************
heinrichsweikamp
parents:
diff changeset
129
heinrichsweikamp
parents:
diff changeset
130 static void calc_hauptroutine(void);
heinrichsweikamp
parents:
diff changeset
131 static void calc_nullzeit(void);
heinrichsweikamp
parents:
diff changeset
132
heinrichsweikamp
parents:
diff changeset
133 static void calc_tissue(PARAMETER unsigned char period);
heinrichsweikamp
parents:
diff changeset
134 static void calc_limit(void);
heinrichsweikamp
parents:
diff changeset
135
heinrichsweikamp
parents:
diff changeset
136 static void clear_tissue(void);
heinrichsweikamp
parents:
diff changeset
137 static void calc_ascenttime(void);
heinrichsweikamp
parents:
diff changeset
138 static void update_startvalues(void);
heinrichsweikamp
parents:
diff changeset
139 static void clear_deco_table(void);
heinrichsweikamp
parents:
diff changeset
140 static unsigned char update_deco_table(void);
heinrichsweikamp
parents:
diff changeset
141
heinrichsweikamp
parents:
diff changeset
142 static void sim_tissue(PARAMETER unsigned char period);
heinrichsweikamp
parents:
diff changeset
143 static void sim_limit(PARAMETER float GF_current);
heinrichsweikamp
parents:
diff changeset
144 static void sim_extra_time(void);
heinrichsweikamp
parents:
diff changeset
145 static void calc_dive_interval(void);
heinrichsweikamp
parents:
diff changeset
146
heinrichsweikamp
parents:
diff changeset
147 static void calc_gradient_factor(void);
heinrichsweikamp
parents:
diff changeset
148 static void calc_wo_deco_step_1_min(void);
heinrichsweikamp
parents:
diff changeset
149
heinrichsweikamp
parents:
diff changeset
150 static void calc_hauptroutine_data_input(void);
heinrichsweikamp
parents:
diff changeset
151 static void calc_hauptroutine_update_tissues(void);
heinrichsweikamp
parents:
diff changeset
152 static void calc_hauptroutine_calc_deco(void);
heinrichsweikamp
parents:
diff changeset
153 static void sim_ascent_to_first_stop(void);
heinrichsweikamp
parents:
diff changeset
154
heinrichsweikamp
parents:
diff changeset
155 static unsigned char gas_switch_deepest(void);
heinrichsweikamp
parents:
diff changeset
156 static void gas_switch_set(void);
heinrichsweikamp
parents:
diff changeset
157
heinrichsweikamp
parents:
diff changeset
158 static unsigned char calc_nextdecodepth(void);
heinrichsweikamp
parents:
diff changeset
159
heinrichsweikamp
parents:
diff changeset
160 //---- Bank 5 parameters -----------------------------------------------------
heinrichsweikamp
parents:
diff changeset
161 #ifndef UNIX
heinrichsweikamp
parents:
diff changeset
162 # pragma udata bank5=0x500
heinrichsweikamp
parents:
diff changeset
163 #endif
heinrichsweikamp
parents:
diff changeset
164
heinrichsweikamp
parents:
diff changeset
165 static float GF_low;
heinrichsweikamp
parents:
diff changeset
166 static float GF_high;
heinrichsweikamp
parents:
diff changeset
167 static float GF_delta;
heinrichsweikamp
parents:
diff changeset
168 static float locked_GF_step; // GF_delta / low_depth
heinrichsweikamp
parents:
diff changeset
169
heinrichsweikamp
parents:
diff changeset
170 static unsigned char temp_depth_limit;
342
7812ec7ef694 Fix low_depth shall be stored as a float (no rounding).
jDG
parents: 324
diff changeset
171 float low_depth; // Depth of deepest stop
0
heinrichsweikamp
parents:
diff changeset
172
heinrichsweikamp
parents:
diff changeset
173 // Simulation context: used to predict ascent.
heinrichsweikamp
parents:
diff changeset
174 static unsigned char sim_lead_tissue_no; // Leading compatiment number.
heinrichsweikamp
parents:
diff changeset
175 static float sim_lead_tissue_limit; // Buhlmann tolerated pressure.
heinrichsweikamp
parents:
diff changeset
176
heinrichsweikamp
parents:
diff changeset
177 // Real context: what we are doing now.
heinrichsweikamp
parents:
diff changeset
178 static float calc_lead_tissue_limit; //
heinrichsweikamp
parents:
diff changeset
179
heinrichsweikamp
parents:
diff changeset
180 static unsigned char internal_deco_time[NUM_STOPS];
heinrichsweikamp
parents:
diff changeset
181 static unsigned char internal_deco_depth[NUM_STOPS];
heinrichsweikamp
parents:
diff changeset
182
heinrichsweikamp
parents:
diff changeset
183 static float cns_vault;
heinrichsweikamp
parents:
diff changeset
184 static float low_depth_vault;
heinrichsweikamp
parents:
diff changeset
185 static float pres_tissue_N2_vault[NUM_COMP];
heinrichsweikamp
parents:
diff changeset
186 static float pres_tissue_He_vault[NUM_COMP];
heinrichsweikamp
parents:
diff changeset
187
heinrichsweikamp
parents:
diff changeset
188 //---- Bank 6 parameters -----------------------------------------------------
heinrichsweikamp
parents:
diff changeset
189 #ifndef UNIX
heinrichsweikamp
parents:
diff changeset
190 # pragma udata bank6=0x600
heinrichsweikamp
parents:
diff changeset
191 #endif
heinrichsweikamp
parents:
diff changeset
192
heinrichsweikamp
parents:
diff changeset
193 static unsigned char ci;
324
0e9dcdcf03c1 FIX NDL prediction error with Buhlmann model: might be desaturating too fast.
jdg@air
parents: 323
diff changeset
194 static float pres_respiration;
0e9dcdcf03c1 FIX NDL prediction error with Buhlmann model: might be desaturating too fast.
jdg@air
parents: 323
diff changeset
195 static float pres_surface;
0e9dcdcf03c1 FIX NDL prediction error with Buhlmann model: might be desaturating too fast.
jdg@air
parents: 323
diff changeset
196 static float temp_deco;
0e9dcdcf03c1 FIX NDL prediction error with Buhlmann model: might be desaturating too fast.
jdg@air
parents: 323
diff changeset
197 static float ppN2;
0e9dcdcf03c1 FIX NDL prediction error with Buhlmann model: might be desaturating too fast.
jdg@air
parents: 323
diff changeset
198 static float ppHe;
0e9dcdcf03c1 FIX NDL prediction error with Buhlmann model: might be desaturating too fast.
jdg@air
parents: 323
diff changeset
199 static float temp_tissue;
0e9dcdcf03c1 FIX NDL prediction error with Buhlmann model: might be desaturating too fast.
jdg@air
parents: 323
diff changeset
200 static float N2_ratio; // Breathed gas nitrogen ratio.
0e9dcdcf03c1 FIX NDL prediction error with Buhlmann model: might be desaturating too fast.
jdg@air
parents: 323
diff changeset
201 static float He_ratio; // Breathed gas helium ratio.
0e9dcdcf03c1 FIX NDL prediction error with Buhlmann model: might be desaturating too fast.
jdg@air
parents: 323
diff changeset
202 static float var_N2_a; // Buhlmann a, for current N2 tissue.
0e9dcdcf03c1 FIX NDL prediction error with Buhlmann model: might be desaturating too fast.
jdg@air
parents: 323
diff changeset
203 static float var_N2_b; // Buhlmann b, for current N2 tissue.
0e9dcdcf03c1 FIX NDL prediction error with Buhlmann model: might be desaturating too fast.
jdg@air
parents: 323
diff changeset
204 static float var_He_a; // Buhlmann a, for current He tissue.
0e9dcdcf03c1 FIX NDL prediction error with Buhlmann model: might be desaturating too fast.
jdg@air
parents: 323
diff changeset
205 static float var_He_b; // Buhlmann b, for current He tissue.
0e9dcdcf03c1 FIX NDL prediction error with Buhlmann model: might be desaturating too fast.
jdg@air
parents: 323
diff changeset
206 static float var_N2_e; // Exposition, for current N2 tissue.
0e9dcdcf03c1 FIX NDL prediction error with Buhlmann model: might be desaturating too fast.
jdg@air
parents: 323
diff changeset
207 static float var_He_e; // Exposition, for current He tissue.
0e9dcdcf03c1 FIX NDL prediction error with Buhlmann model: might be desaturating too fast.
jdg@air
parents: 323
diff changeset
208 static float var_N2_ht; // Half-time for current N2 tissue.
0e9dcdcf03c1 FIX NDL prediction error with Buhlmann model: might be desaturating too fast.
jdg@air
parents: 323
diff changeset
209 static float var_He_ht; // Half-time for current N2 tissue.
0
heinrichsweikamp
parents:
diff changeset
210
heinrichsweikamp
parents:
diff changeset
211 static float pres_diluent; // new in v.101
heinrichsweikamp
parents:
diff changeset
212 static float const_ppO2; // new in v.101
heinrichsweikamp
parents:
diff changeset
213
heinrichsweikamp
parents:
diff changeset
214 static unsigned char sim_gas_last_depth; // Depth of last used gas, to detected a gas switch.
heinrichsweikamp
parents:
diff changeset
215 static unsigned char sim_gas_last_used; // Number of last used gas, to detected a gas switch.
heinrichsweikamp
parents:
diff changeset
216 static unsigned short sim_dive_mins; // Simulated dive time.
324
0e9dcdcf03c1 FIX NDL prediction error with Buhlmann model: might be desaturating too fast.
jdg@air
parents: 323
diff changeset
217 static float calc_N2_ratio; // Simulated (switched) nitrogen ratio.
0e9dcdcf03c1 FIX NDL prediction error with Buhlmann model: might be desaturating too fast.
jdg@air
parents: 323
diff changeset
218 static float calc_He_ratio; // Simulated (switched) helium ratio.
0e9dcdcf03c1 FIX NDL prediction error with Buhlmann model: might be desaturating too fast.
jdg@air
parents: 323
diff changeset
219 static float CNS_fraction; // new in v.101
0e9dcdcf03c1 FIX NDL prediction error with Buhlmann model: might be desaturating too fast.
jdg@air
parents: 323
diff changeset
220 static float float_saturation_multiplier; // new in v.101
0e9dcdcf03c1 FIX NDL prediction error with Buhlmann model: might be desaturating too fast.
jdg@air
parents: 323
diff changeset
221 static float float_desaturation_multiplier; // new in v.101
0e9dcdcf03c1 FIX NDL prediction error with Buhlmann model: might be desaturating too fast.
jdg@air
parents: 323
diff changeset
222 static float float_deco_distance; // new in v.101
0
heinrichsweikamp
parents:
diff changeset
223
heinrichsweikamp
parents:
diff changeset
224 static unsigned char deco_gas_change[NUM_GAS]; // new in v.109
111
c61b7a4e317c Bugfix: CNS in planner
heinrichsweikamp
parents: 34
diff changeset
225 static unsigned char internal_deco_gas [NUM_STOPS];
0
heinrichsweikamp
parents:
diff changeset
226
heinrichsweikamp
parents:
diff changeset
227 //---- Bank 7 parameters -----------------------------------------------------
heinrichsweikamp
parents:
diff changeset
228 #ifndef UNIX
heinrichsweikamp
parents:
diff changeset
229 # pragma udata bank7=0x700
heinrichsweikamp
parents:
diff changeset
230 #endif
133
939f1e83c4c2 BUGFIX: Surface interval was not displayed correctly in some cases
heinrichsweikamp
parents: 126
diff changeset
231 // Keep order of 0x700 variables
0
heinrichsweikamp
parents:
diff changeset
232 float pres_tissue_N2[NUM_COMP];
heinrichsweikamp
parents:
diff changeset
233 float pres_tissue_He[NUM_COMP];
heinrichsweikamp
parents:
diff changeset
234 float sim_pres_tissue_N2[NUM_COMP]; // 16 floats = 64 bytes.
heinrichsweikamp
parents:
diff changeset
235 float sim_pres_tissue_He[NUM_COMP]; // 16 floats = 64 bytes.
heinrichsweikamp
parents:
diff changeset
236
heinrichsweikamp
parents:
diff changeset
237 //---- Bank 8 parameters -----------------------------------------------------
heinrichsweikamp
parents:
diff changeset
238 #ifndef UNIX
heinrichsweikamp
parents:
diff changeset
239 # pragma udata overlay bank8=0x800
heinrichsweikamp
parents:
diff changeset
240 static char md_pi_subst[256];
heinrichsweikamp
parents:
diff changeset
241 # define C_STACK md_pi_subst // Overlay C-code data stack here, too.
heinrichsweikamp
parents:
diff changeset
242 #endif
heinrichsweikamp
parents:
diff changeset
243
heinrichsweikamp
parents:
diff changeset
244 // Back to bank6 for further tmp data
heinrichsweikamp
parents:
diff changeset
245 #ifndef UNIX
heinrichsweikamp
parents:
diff changeset
246 # pragma udata bank6
heinrichsweikamp
parents:
diff changeset
247 #endif
heinrichsweikamp
parents:
diff changeset
248
heinrichsweikamp
parents:
diff changeset
249 //////////////////////////////////////////////////////////////////////////////
heinrichsweikamp
parents:
diff changeset
250 //////////////////////////////////////////////////////////////////////////////
heinrichsweikamp
parents:
diff changeset
251 ///////////////////////////// THE LOOKUP TABLES //////////////////////////////
heinrichsweikamp
parents:
diff changeset
252 //////////////////////////////////////////////////////////////////////////////
heinrichsweikamp
parents:
diff changeset
253 //////////////////////////////////////////////////////////////////////////////
heinrichsweikamp
parents:
diff changeset
254 //
heinrichsweikamp
parents:
diff changeset
255 // End of PROM code is 17F00, So push tables on PROM top...
heinrichsweikamp
parents:
diff changeset
256 //
heinrichsweikamp
parents:
diff changeset
257 #ifndef UNIX
heinrichsweikamp
parents:
diff changeset
258 # pragma romdata buhlmann_tables = 0x1DD00 // Needs to be in UPPER bank.
heinrichsweikamp
parents:
diff changeset
259 #endif
heinrichsweikamp
parents:
diff changeset
260
heinrichsweikamp
parents:
diff changeset
261 #include "p2_tables.romdata" // new table for deco_main_v.101 (var_N2_a modified)
heinrichsweikamp
parents:
diff changeset
262
heinrichsweikamp
parents:
diff changeset
263 //////////////////////////////////////////////////////////////////////////////
heinrichsweikamp
parents:
diff changeset
264 //////////////////////////////////////////////////////////////////////////////
heinrichsweikamp
parents:
diff changeset
265 ////////////////////////////// THE SUBROUTINES ///////////////////////////////
heinrichsweikamp
parents:
diff changeset
266 //////////////////////////////////////////////////////////////////////////////
heinrichsweikamp
parents:
diff changeset
267 //////////////////////////////////////////////////////////////////////////////
heinrichsweikamp
parents:
diff changeset
268 //
heinrichsweikamp
parents:
diff changeset
269 // all new in v.102
heinrichsweikamp
parents:
diff changeset
270 // moved from 0x0D000 to 0x0C000 in v.108
heinrichsweikamp
parents:
diff changeset
271 #ifndef UNIX
heinrichsweikamp
parents:
diff changeset
272 # pragma code p2_deco = 0x0C000
heinrichsweikamp
parents:
diff changeset
273 #endif
heinrichsweikamp
parents:
diff changeset
274
heinrichsweikamp
parents:
diff changeset
275 //////////////////////////////////////////////////////////////////////////////
heinrichsweikamp
parents:
diff changeset
276 //////////////////////////////////////////////////////////////////////////////
heinrichsweikamp
parents:
diff changeset
277 /////////////////////// U T I L I T I E S /////////////////////////////////
heinrichsweikamp
parents:
diff changeset
278 //////////////////////////////////////////////////////////////////////////////
heinrichsweikamp
parents:
diff changeset
279 //////////////////////////////////////////////////////////////////////////////
heinrichsweikamp
parents:
diff changeset
280
heinrichsweikamp
parents:
diff changeset
281 //////////////////////////////////////////////////////////////////////////////
heinrichsweikamp
parents:
diff changeset
282 // Bump to blue-screen when an assert is wrong
heinrichsweikamp
parents:
diff changeset
283 #ifdef __DEBUG
heinrichsweikamp
parents:
diff changeset
284 void assert_failed(PARAMETER short int line)
heinrichsweikamp
parents:
diff changeset
285 {
heinrichsweikamp
parents:
diff changeset
286 }
heinrichsweikamp
parents:
diff changeset
287 #endif
heinrichsweikamp
parents:
diff changeset
288
heinrichsweikamp
parents:
diff changeset
289 //////////////////////////////////////////////////////////////////////////////
heinrichsweikamp
parents:
diff changeset
290 // When calling C code from ASM context, the data stack pointer and
heinrichsweikamp
parents:
diff changeset
291 // frames should be reset. Bank8 is used by stack
heinrichsweikamp
parents:
diff changeset
292
heinrichsweikamp
parents:
diff changeset
293 #ifdef CROSS_COMPILE
heinrichsweikamp
parents:
diff changeset
294 # define RESET_C_STACK
heinrichsweikamp
parents:
diff changeset
295 #else
heinrichsweikamp
parents:
diff changeset
296 # ifdef __DEBUG
heinrichsweikamp
parents:
diff changeset
297 # define RESET_C_STACK fillDataStack();
heinrichsweikamp
parents:
diff changeset
298 void fillDataStack(void)
heinrichsweikamp
parents:
diff changeset
299 {
heinrichsweikamp
parents:
diff changeset
300 _asm
heinrichsweikamp
parents:
diff changeset
301 LFSR 1,C_STACK
heinrichsweikamp
parents:
diff changeset
302 MOVLW 0xCC
heinrichsweikamp
parents:
diff changeset
303 loop: MOVWF POSTINC1,0
heinrichsweikamp
parents:
diff changeset
304 TSTFSZ FSR1L,0
heinrichsweikamp
parents:
diff changeset
305 BRA loop
heinrichsweikamp
parents:
diff changeset
306
heinrichsweikamp
parents:
diff changeset
307 LFSR 1,C_STACK
heinrichsweikamp
parents:
diff changeset
308 LFSR 2,C_STACK
heinrichsweikamp
parents:
diff changeset
309 _endasm
heinrichsweikamp
parents:
diff changeset
310 }
heinrichsweikamp
parents:
diff changeset
311 # else
heinrichsweikamp
parents:
diff changeset
312 # define RESET_C_STACK \
heinrichsweikamp
parents:
diff changeset
313 _asm \
heinrichsweikamp
parents:
diff changeset
314 LFSR 1, C_STACK \
heinrichsweikamp
parents:
diff changeset
315 LFSR 2, C_STACK \
heinrichsweikamp
parents:
diff changeset
316 _endasm
heinrichsweikamp
parents:
diff changeset
317 # endif
heinrichsweikamp
parents:
diff changeset
318 #endif
heinrichsweikamp
parents:
diff changeset
319
heinrichsweikamp
parents:
diff changeset
320 //////////////////////////////////////////////////////////////////////////////
heinrichsweikamp
parents:
diff changeset
321 // Fast subroutine to read timer 5.
313
0ce5fa241b8e FIX minor comment about deco offset unit...
jDG
parents: 298
diff changeset
322 // Note: result is in 1/32 of msecs (30,51757813 us/bit to be precise)
0
heinrichsweikamp
parents:
diff changeset
323 static unsigned short tmr5(void)
heinrichsweikamp
parents:
diff changeset
324 {
heinrichsweikamp
parents:
diff changeset
325 #ifndef CROSS_COMPILE
heinrichsweikamp
parents:
diff changeset
326 _asm
heinrichsweikamp
parents:
diff changeset
327 movff 0xf7c,PRODL // TMR5L
heinrichsweikamp
parents:
diff changeset
328 movff 0xf7d,PRODH // TMR5H
heinrichsweikamp
parents:
diff changeset
329 _endasm // result in PRODH:PRODL.
heinrichsweikamp
parents:
diff changeset
330 #else
heinrichsweikamp
parents:
diff changeset
331 return 0;
heinrichsweikamp
parents:
diff changeset
332 #endif
heinrichsweikamp
parents:
diff changeset
333 }
heinrichsweikamp
parents:
diff changeset
334
heinrichsweikamp
parents:
diff changeset
335
heinrichsweikamp
parents:
diff changeset
336 //////////////////////////////////////////////////////////////////////////////
heinrichsweikamp
parents:
diff changeset
337 // read buhlmann tables A and B for compatriment ci
heinrichsweikamp
parents:
diff changeset
338 //
heinrichsweikamp
parents:
diff changeset
339 static void read_buhlmann_coefficients(void)
heinrichsweikamp
parents:
diff changeset
340 {
heinrichsweikamp
parents:
diff changeset
341 #ifndef CROSS_COMPILE
heinrichsweikamp
parents:
diff changeset
342 // Note: we don't use far rom pointer, because the
heinrichsweikamp
parents:
diff changeset
343 // 24 bits is too complex, hence we have to set
heinrichsweikamp
parents:
diff changeset
344 // the UPPER page ourself...
heinrichsweikamp
parents:
diff changeset
345 // --> Set zero if tables are moved to lower pages !
heinrichsweikamp
parents:
diff changeset
346 _asm
heinrichsweikamp
parents:
diff changeset
347 movlw 1
heinrichsweikamp
parents:
diff changeset
348 movwf TBLPTRU,0
heinrichsweikamp
parents:
diff changeset
349 _endasm
heinrichsweikamp
parents:
diff changeset
350 #endif
heinrichsweikamp
parents:
diff changeset
351
heinrichsweikamp
parents:
diff changeset
352 assert( ci < NUM_COMP );
heinrichsweikamp
parents:
diff changeset
353
heinrichsweikamp
parents:
diff changeset
354 // Use an interleaved array (AoS) to access coefficients with a
heinrichsweikamp
parents:
diff changeset
355 // single addressing.
heinrichsweikamp
parents:
diff changeset
356 {
heinrichsweikamp
parents:
diff changeset
357 overlay rom const float* ptr = &buhlmann_ab[4*ci];
heinrichsweikamp
parents:
diff changeset
358 var_N2_a = *ptr++;
heinrichsweikamp
parents:
diff changeset
359 var_N2_b = *ptr++;
heinrichsweikamp
parents:
diff changeset
360 var_He_a = *ptr++;
heinrichsweikamp
parents:
diff changeset
361 var_He_b = *ptr++;
heinrichsweikamp
parents:
diff changeset
362 }
heinrichsweikamp
parents:
diff changeset
363 }
heinrichsweikamp
parents:
diff changeset
364
heinrichsweikamp
parents:
diff changeset
365 //////////////////////////////////////////////////////////////////////////////
heinrichsweikamp
parents:
diff changeset
366 // read buhlmann tables for compatriment ci
heinrichsweikamp
parents:
diff changeset
367 // If period == 0 : 2sec interval
heinrichsweikamp
parents:
diff changeset
368 // 1 : 1 min interval
heinrichsweikamp
parents:
diff changeset
369 // 2 : 10 min interval.
heinrichsweikamp
parents:
diff changeset
370 static void read_buhlmann_times(PARAMETER char period)
heinrichsweikamp
parents:
diff changeset
371 {
heinrichsweikamp
parents:
diff changeset
372 #ifndef CROSS_COMPILE
heinrichsweikamp
parents:
diff changeset
373 // Note: we don't use far rom pointer, because the
heinrichsweikamp
parents:
diff changeset
374 // 24 bits is to complex, hence we have to set
heinrichsweikamp
parents:
diff changeset
375 // the UPPER page ourself...
heinrichsweikamp
parents:
diff changeset
376 // --> Set zero if tables are moved to lower pages !
heinrichsweikamp
parents:
diff changeset
377 _asm
heinrichsweikamp
parents:
diff changeset
378 movlw 1
heinrichsweikamp
parents:
diff changeset
379 movwf TBLPTRU,0
heinrichsweikamp
parents:
diff changeset
380 _endasm
heinrichsweikamp
parents:
diff changeset
381 #endif
heinrichsweikamp
parents:
diff changeset
382
heinrichsweikamp
parents:
diff changeset
383 assert( ci < NUM_COMP );
heinrichsweikamp
parents:
diff changeset
384
heinrichsweikamp
parents:
diff changeset
385 // Integration intervals.
heinrichsweikamp
parents:
diff changeset
386 switch(period)
heinrichsweikamp
parents:
diff changeset
387 {
heinrichsweikamp
parents:
diff changeset
388 case 0: //---- 2 sec -----------------------------------------------------
heinrichsweikamp
parents:
diff changeset
389 {
heinrichsweikamp
parents:
diff changeset
390 overlay rom const float* ptr = &e2secs[2*ci];
heinrichsweikamp
parents:
diff changeset
391 var_N2_e = *ptr++;
heinrichsweikamp
parents:
diff changeset
392 var_He_e = *ptr++;
heinrichsweikamp
parents:
diff changeset
393 }
heinrichsweikamp
parents:
diff changeset
394 break;
heinrichsweikamp
parents:
diff changeset
395
heinrichsweikamp
parents:
diff changeset
396 case 1: //---- 1 min -----------------------------------------------------
heinrichsweikamp
parents:
diff changeset
397 {
heinrichsweikamp
parents:
diff changeset
398 overlay rom const float* ptr = &e1min[2*ci];
heinrichsweikamp
parents:
diff changeset
399 var_N2_e = *ptr++;
heinrichsweikamp
parents:
diff changeset
400 var_He_e = *ptr++;
heinrichsweikamp
parents:
diff changeset
401 }
heinrichsweikamp
parents:
diff changeset
402 break;
heinrichsweikamp
parents:
diff changeset
403
heinrichsweikamp
parents:
diff changeset
404 case 2: //---- 10 min ----------------------------------------------------
heinrichsweikamp
parents:
diff changeset
405 {
heinrichsweikamp
parents:
diff changeset
406 overlay rom const float* ptr = &e10min[2*ci];
heinrichsweikamp
parents:
diff changeset
407 var_N2_e = *ptr++;
heinrichsweikamp
parents:
diff changeset
408 var_He_e = *ptr++;
heinrichsweikamp
parents:
diff changeset
409 }
heinrichsweikamp
parents:
diff changeset
410 break;
heinrichsweikamp
parents:
diff changeset
411
heinrichsweikamp
parents:
diff changeset
412 default:
heinrichsweikamp
parents:
diff changeset
413 assert(0); // Never go there...
heinrichsweikamp
parents:
diff changeset
414 }
heinrichsweikamp
parents:
diff changeset
415 }
heinrichsweikamp
parents:
diff changeset
416
heinrichsweikamp
parents:
diff changeset
417 //////////////////////////////////////////////////////////////////////////////
heinrichsweikamp
parents:
diff changeset
418 // read buhlmann tables for compatriment ci
heinrichsweikamp
parents:
diff changeset
419 //
heinrichsweikamp
parents:
diff changeset
420 static void read_buhlmann_ht(void)
heinrichsweikamp
parents:
diff changeset
421 {
heinrichsweikamp
parents:
diff changeset
422
heinrichsweikamp
parents:
diff changeset
423 #ifndef CROSS_COMPILE
heinrichsweikamp
parents:
diff changeset
424 // Note: we don't use far rom pointer, because the
heinrichsweikamp
parents:
diff changeset
425 // 24 bits is to complex, hence we have to set
heinrichsweikamp
parents:
diff changeset
426 // the UPPER page ourself...
heinrichsweikamp
parents:
diff changeset
427 // --> Set zero if tables are moved to lower pages !
heinrichsweikamp
parents:
diff changeset
428 _asm
heinrichsweikamp
parents:
diff changeset
429 movlw 1
heinrichsweikamp
parents:
diff changeset
430 movwf TBLPTRU,0
heinrichsweikamp
parents:
diff changeset
431 _endasm
heinrichsweikamp
parents:
diff changeset
432 #endif
heinrichsweikamp
parents:
diff changeset
433
heinrichsweikamp
parents:
diff changeset
434 assert( ci < NUM_COMP );
heinrichsweikamp
parents:
diff changeset
435 {
heinrichsweikamp
parents:
diff changeset
436 overlay rom const float* ptr = &buhlmann_ht[2*ci];
heinrichsweikamp
parents:
diff changeset
437 var_N2_ht = *ptr++;
heinrichsweikamp
parents:
diff changeset
438 var_He_ht = *ptr++;
heinrichsweikamp
parents:
diff changeset
439 }
heinrichsweikamp
parents:
diff changeset
440
heinrichsweikamp
parents:
diff changeset
441 assert( 4.0 <= var_N2_ht && var_N2_ht <= 635.0 );
heinrichsweikamp
parents:
diff changeset
442 assert( 1.5099 <= var_He_ht && var_He_ht <= 240.03 );
heinrichsweikamp
parents:
diff changeset
443 }
heinrichsweikamp
parents:
diff changeset
444
heinrichsweikamp
parents:
diff changeset
445 //////////////////////////////////////////////////////////////////////////////
heinrichsweikamp
parents:
diff changeset
446 // calc_nextdecodepth
heinrichsweikamp
parents:
diff changeset
447 //
heinrichsweikamp
parents:
diff changeset
448 // new in v.102
heinrichsweikamp
parents:
diff changeset
449 //
heinrichsweikamp
parents:
diff changeset
450 // INPUT, changing during dive:
heinrichsweikamp
parents:
diff changeset
451 // temp_deco
heinrichsweikamp
parents:
diff changeset
452 // low_depth
heinrichsweikamp
parents:
diff changeset
453 //
heinrichsweikamp
parents:
diff changeset
454 // INPUT, fixed during dive:
heinrichsweikamp
parents:
diff changeset
455 // pres_surface
heinrichsweikamp
parents:
diff changeset
456 // GF_delta
heinrichsweikamp
parents:
diff changeset
457 // GF_high
heinrichsweikamp
parents:
diff changeset
458 // GF_low
heinrichsweikamp
parents:
diff changeset
459 // char_I_depth_last_deco
heinrichsweikamp
parents:
diff changeset
460 // float_deco_distance
heinrichsweikamp
parents:
diff changeset
461 //
heinrichsweikamp
parents:
diff changeset
462 // RETURN TRUE iff a stop is needed.
heinrichsweikamp
parents:
diff changeset
463 //
heinrichsweikamp
parents:
diff changeset
464 // OUTPUT
heinrichsweikamp
parents:
diff changeset
465 // locked_GF_step
heinrichsweikamp
parents:
diff changeset
466 // temp_depth_limt
heinrichsweikamp
parents:
diff changeset
467 // low_depth
heinrichsweikamp
parents:
diff changeset
468 //
heinrichsweikamp
parents:
diff changeset
469 static unsigned char calc_nextdecodepth(void)
heinrichsweikamp
parents:
diff changeset
470 {
heinrichsweikamp
parents:
diff changeset
471 //--- Max ascent speed ---------------------------------------------------
heinrichsweikamp
parents:
diff changeset
472 // Recompute leading gas limit, at current depth:
heinrichsweikamp
parents:
diff changeset
473 overlay float depth = (temp_deco - pres_surface) * BAR_TO_METER;
heinrichsweikamp
parents:
diff changeset
474
heinrichsweikamp
parents:
diff changeset
475 // At most, ascent 1 minute, at 10m/min == 10.0 m.
heinrichsweikamp
parents:
diff changeset
476 overlay float min_depth = (depth > 10.0) ? (depth - 10.0) : 0.0;
heinrichsweikamp
parents:
diff changeset
477
heinrichsweikamp
parents:
diff changeset
478 // Do we need to stop at current depth ?
heinrichsweikamp
parents:
diff changeset
479 overlay unsigned char need_stop = 0;
heinrichsweikamp
parents:
diff changeset
480
heinrichsweikamp
parents:
diff changeset
481 assert( depth >= -0.2 ); // Allow for 200mbar of weather change.
heinrichsweikamp
parents:
diff changeset
482
heinrichsweikamp
parents:
diff changeset
483 //---- ZH-L16 + GRADIENT FACTOR model ------------------------------------
287
f342853afcd9 FIX gas_volumes: shall take stops in forward order.
jdg@air
parents: 284
diff changeset
484 if( char_I_deco_model != 0 )
f342853afcd9 FIX gas_volumes: shall take stops in forward order.
jdg@air
parents: 284
diff changeset
485 {
0
heinrichsweikamp
parents:
diff changeset
486 overlay unsigned char first_stop = 0;
heinrichsweikamp
parents:
diff changeset
487 overlay float p;
heinrichsweikamp
parents:
diff changeset
488
heinrichsweikamp
parents:
diff changeset
489 sim_limit( GF_low );
heinrichsweikamp
parents:
diff changeset
490 p = sim_lead_tissue_limit - pres_surface;
heinrichsweikamp
parents:
diff changeset
491 if( p <= 0.0f )
heinrichsweikamp
parents:
diff changeset
492 goto no_deco_stop; // We can surface directly...
heinrichsweikamp
parents:
diff changeset
493
heinrichsweikamp
parents:
diff changeset
494 p *= BAR_TO_METER;
342
7812ec7ef694 Fix low_depth shall be stored as a float (no rounding).
jDG
parents: 324
diff changeset
495
7812ec7ef694 Fix low_depth shall be stored as a float (no rounding).
jDG
parents: 324
diff changeset
496 // Store the deepest point needing a deco stop as the LOW reference for GF.
7812ec7ef694 Fix low_depth shall be stored as a float (no rounding).
jDG
parents: 324
diff changeset
497 // NOTE: following stops will be validated using this LOW-HIGH gf scale,
7812ec7ef694 Fix low_depth shall be stored as a float (no rounding).
jDG
parents: 324
diff changeset
498 // so if we want to keep coherency, we should not validate this stop
7812ec7ef694 Fix low_depth shall be stored as a float (no rounding).
jDG
parents: 324
diff changeset
499 // yet, but apply the search to it, as for all the following stops afterward.
7812ec7ef694 Fix low_depth shall be stored as a float (no rounding).
jDG
parents: 324
diff changeset
500 if( p > low_depth )
7812ec7ef694 Fix low_depth shall be stored as a float (no rounding).
jDG
parents: 324
diff changeset
501 {
7812ec7ef694 Fix low_depth shall be stored as a float (no rounding).
jDG
parents: 324
diff changeset
502 low_depth = p;
7812ec7ef694 Fix low_depth shall be stored as a float (no rounding).
jDG
parents: 324
diff changeset
503 locked_GF_step = GF_delta / low_depth;
7812ec7ef694 Fix low_depth shall be stored as a float (no rounding).
jDG
parents: 324
diff changeset
504 }
7812ec7ef694 Fix low_depth shall be stored as a float (no rounding).
jDG
parents: 324
diff changeset
505
0
heinrichsweikamp
parents:
diff changeset
506 if( p < min_depth )
heinrichsweikamp
parents:
diff changeset
507 goto no_deco_stop; // First stop is higher than 1' ascent.
heinrichsweikamp
parents:
diff changeset
508
342
7812ec7ef694 Fix low_depth shall be stored as a float (no rounding).
jDG
parents: 324
diff changeset
509 // Round to multiple of 3m.
7812ec7ef694 Fix low_depth shall be stored as a float (no rounding).
jDG
parents: 324
diff changeset
510 first_stop = 3 * (short)(0.9995f + p*0.333333f);
0
heinrichsweikamp
parents:
diff changeset
511 assert( first_stop < 128 );
heinrichsweikamp
parents:
diff changeset
512
heinrichsweikamp
parents:
diff changeset
513 // Apply correction for the shallowest stop.
heinrichsweikamp
parents:
diff changeset
514 if( first_stop == 3 ) // new in v104
heinrichsweikamp
parents:
diff changeset
515 first_stop = char_I_depth_last_deco; // Use last 3m..6m instead.
heinrichsweikamp
parents:
diff changeset
516
heinrichsweikamp
parents:
diff changeset
517 // We have a stop candidate.
heinrichsweikamp
parents:
diff changeset
518 // But maybe ascending to the next stop will diminish the constraint,
heinrichsweikamp
parents:
diff changeset
519 // because the GF might decrease more than the preassure gradient...
heinrichsweikamp
parents:
diff changeset
520 while(first_stop > 0)
heinrichsweikamp
parents:
diff changeset
521 {
heinrichsweikamp
parents:
diff changeset
522 overlay unsigned char next_stop; // Next depth (0..90m)
heinrichsweikamp
parents:
diff changeset
523
heinrichsweikamp
parents:
diff changeset
524 // Check max speed, or reaching surface.
heinrichsweikamp
parents:
diff changeset
525 if( first_stop <= min_depth )
heinrichsweikamp
parents:
diff changeset
526 goto no_deco_stop;
heinrichsweikamp
parents:
diff changeset
527
heinrichsweikamp
parents:
diff changeset
528 if( first_stop <= char_I_depth_last_deco ) // new in v104
heinrichsweikamp
parents:
diff changeset
529 next_stop = 0;
heinrichsweikamp
parents:
diff changeset
530 else if( first_stop == 6 )
heinrichsweikamp
parents:
diff changeset
531 next_stop = char_I_depth_last_deco;
heinrichsweikamp
parents:
diff changeset
532 else
heinrichsweikamp
parents:
diff changeset
533 next_stop = first_stop - 3; // Index of next (upper) stop.
heinrichsweikamp
parents:
diff changeset
534
heinrichsweikamp
parents:
diff changeset
535 // Total preassure at the new stop candidate:
342
7812ec7ef694 Fix low_depth shall be stored as a float (no rounding).
jDG
parents: 324
diff changeset
536 p = next_stop * METER_TO_BAR
7812ec7ef694 Fix low_depth shall be stored as a float (no rounding).
jDG
parents: 324
diff changeset
537 + pres_surface;
0
heinrichsweikamp
parents:
diff changeset
538
342
7812ec7ef694 Fix low_depth shall be stored as a float (no rounding).
jDG
parents: 324
diff changeset
539 // Recompute limit for this new stop:
7812ec7ef694 Fix low_depth shall be stored as a float (no rounding).
jDG
parents: 324
diff changeset
540 if( !low_depth || next_stop > low_depth )
7812ec7ef694 Fix low_depth shall be stored as a float (no rounding).
jDG
parents: 324
diff changeset
541 sim_limit( GF_low );
7812ec7ef694 Fix low_depth shall be stored as a float (no rounding).
jDG
parents: 324
diff changeset
542 else
7812ec7ef694 Fix low_depth shall be stored as a float (no rounding).
jDG
parents: 324
diff changeset
543 sim_limit( GF_high - next_stop * locked_GF_step );
0
heinrichsweikamp
parents:
diff changeset
544
342
7812ec7ef694 Fix low_depth shall be stored as a float (no rounding).
jDG
parents: 324
diff changeset
545 // Check upper limit (lowest ambiant pressure tolerated):
7812ec7ef694 Fix low_depth shall be stored as a float (no rounding).
jDG
parents: 324
diff changeset
546 if( sim_lead_tissue_limit >= p )
7812ec7ef694 Fix low_depth shall be stored as a float (no rounding).
jDG
parents: 324
diff changeset
547 goto deco_stop_found; // Ascent to next_stop forbiden.
0
heinrichsweikamp
parents:
diff changeset
548
heinrichsweikamp
parents:
diff changeset
549 // Else, validate that stop and loop...
heinrichsweikamp
parents:
diff changeset
550 first_stop = next_stop;
heinrichsweikamp
parents:
diff changeset
551 }
heinrichsweikamp
parents:
diff changeset
552
heinrichsweikamp
parents:
diff changeset
553 no_deco_stop:
287
f342853afcd9 FIX gas_volumes: shall take stops in forward order.
jdg@air
parents: 284
diff changeset
554 temp_depth_limit = min_depth;
0
heinrichsweikamp
parents:
diff changeset
555 goto done;
heinrichsweikamp
parents:
diff changeset
556
342
7812ec7ef694 Fix low_depth shall be stored as a float (no rounding).
jDG
parents: 324
diff changeset
557 deco_stop_found:
0
heinrichsweikamp
parents:
diff changeset
558 // next stop is the last validated depth found, aka first_stop
heinrichsweikamp
parents:
diff changeset
559 need_stop = 1; // Hit.
heinrichsweikamp
parents:
diff changeset
560 temp_depth_limit = first_stop; // Stop depth, in meter.
heinrichsweikamp
parents:
diff changeset
561
heinrichsweikamp
parents:
diff changeset
562 done:
heinrichsweikamp
parents:
diff changeset
563 ;
heinrichsweikamp
parents:
diff changeset
564 }
heinrichsweikamp
parents:
diff changeset
565 else //---- ZH-L16 model -------------------------------------------------
heinrichsweikamp
parents:
diff changeset
566 {
heinrichsweikamp
parents:
diff changeset
567 overlay float pres_gradient;
heinrichsweikamp
parents:
diff changeset
568
heinrichsweikamp
parents:
diff changeset
569 // Original model
heinrichsweikamp
parents:
diff changeset
570 // optimized in v.101
heinrichsweikamp
parents:
diff changeset
571 // char_I_depth_last_deco included in v.101
heinrichsweikamp
parents:
diff changeset
572
heinrichsweikamp
parents:
diff changeset
573 // Compute sim_lead_tissue_limit too, but just once.
heinrichsweikamp
parents:
diff changeset
574 sim_limit(1.0);
heinrichsweikamp
parents:
diff changeset
575
heinrichsweikamp
parents:
diff changeset
576 pres_gradient = sim_lead_tissue_limit - pres_surface;
heinrichsweikamp
parents:
diff changeset
577 if (pres_gradient >= 0)
heinrichsweikamp
parents:
diff changeset
578 {
379
heinrichsweikamp
parents: 351
diff changeset
579 pres_gradient *= BAR_TO_METER/3; // bar --> stop number;
0
heinrichsweikamp
parents:
diff changeset
580 temp_depth_limit = 3 * (short) (pres_gradient + 0.99); // --> metre : depth for deco
heinrichsweikamp
parents:
diff changeset
581 need_stop = 1; // Hit.
heinrichsweikamp
parents:
diff changeset
582
heinrichsweikamp
parents:
diff changeset
583 // Implement last stop at 4m/5m/6m...
heinrichsweikamp
parents:
diff changeset
584 if( temp_depth_limit == 3 )
heinrichsweikamp
parents:
diff changeset
585 temp_depth_limit = char_I_depth_last_deco;
heinrichsweikamp
parents:
diff changeset
586 }
heinrichsweikamp
parents:
diff changeset
587 else
heinrichsweikamp
parents:
diff changeset
588 temp_depth_limit = 0;
heinrichsweikamp
parents:
diff changeset
589 }
heinrichsweikamp
parents:
diff changeset
590
heinrichsweikamp
parents:
diff changeset
591 //---- Check gas change --------------------------------------------------
heinrichsweikamp
parents:
diff changeset
592 need_stop |= gas_switch_deepest(); // Update temp_depth_limit if there is a change,
heinrichsweikamp
parents:
diff changeset
593
heinrichsweikamp
parents:
diff changeset
594 return need_stop;
heinrichsweikamp
parents:
diff changeset
595 }
heinrichsweikamp
parents:
diff changeset
596
heinrichsweikamp
parents:
diff changeset
597 //////////////////////////////////////////////////////////////////////////////
heinrichsweikamp
parents:
diff changeset
598 // copy_deco_table
heinrichsweikamp
parents:
diff changeset
599 //
heinrichsweikamp
parents:
diff changeset
600 // Buffer the stops, once computed, so we can continue to display them
heinrichsweikamp
parents:
diff changeset
601 // while computing the next set.
heinrichsweikamp
parents:
diff changeset
602 //
heinrichsweikamp
parents:
diff changeset
603 static void copy_deco_table(void)
heinrichsweikamp
parents:
diff changeset
604 {
heinrichsweikamp
parents:
diff changeset
605 // Copy depth of the first (deepest) stop, because when reversing
heinrichsweikamp
parents:
diff changeset
606 // order, it will be hard to find...
111
c61b7a4e317c Bugfix: CNS in planner
heinrichsweikamp
parents: 34
diff changeset
607 char_O_first_deco_depth = internal_deco_depth[0];
0
heinrichsweikamp
parents:
diff changeset
608 char_O_first_deco_time = internal_deco_time [0];
heinrichsweikamp
parents:
diff changeset
609
heinrichsweikamp
parents:
diff changeset
610 {
heinrichsweikamp
parents:
diff changeset
611 overlay unsigned char x, y;
heinrichsweikamp
parents:
diff changeset
612
heinrichsweikamp
parents:
diff changeset
613 for(x=0; x<NUM_STOPS; x++)
heinrichsweikamp
parents:
diff changeset
614 {
heinrichsweikamp
parents:
diff changeset
615 char_O_deco_depth[x] = internal_deco_depth[x];
heinrichsweikamp
parents:
diff changeset
616 char_O_deco_time [x] = internal_deco_time [x];
111
c61b7a4e317c Bugfix: CNS in planner
heinrichsweikamp
parents: 34
diff changeset
617 char_O_deco_gas [x] = internal_deco_gas [x];
0
heinrichsweikamp
parents:
diff changeset
618 }
heinrichsweikamp
parents:
diff changeset
619
heinrichsweikamp
parents:
diff changeset
620 //Now fill the char_O_deco_time_for_log array
heinrichsweikamp
parents:
diff changeset
621 //---- First: search the first non-null depth
heinrichsweikamp
parents:
diff changeset
622 for(x=(NUM_STOPS-1); x != 0; --x)
heinrichsweikamp
parents:
diff changeset
623 if( internal_deco_depth[x] != 0 ) break;
heinrichsweikamp
parents:
diff changeset
624
heinrichsweikamp
parents:
diff changeset
625 //---- Second: copy to output table (in reverse order)
heinrichsweikamp
parents:
diff changeset
626 for(y=0; y<NUM_STOPS; y++, --x)
heinrichsweikamp
parents:
diff changeset
627 {
heinrichsweikamp
parents:
diff changeset
628 char_O_deco_time_for_log[y] = internal_deco_time [x];
heinrichsweikamp
parents:
diff changeset
629
heinrichsweikamp
parents:
diff changeset
630 // Stop only once the last transfer is done.
heinrichsweikamp
parents:
diff changeset
631 if( x == 0 ) break;
heinrichsweikamp
parents:
diff changeset
632 }
heinrichsweikamp
parents:
diff changeset
633
heinrichsweikamp
parents:
diff changeset
634 //---- Third: fill table end with null
heinrichsweikamp
parents:
diff changeset
635 for(y++; y<NUM_STOPS; y++)
heinrichsweikamp
parents:
diff changeset
636 {
heinrichsweikamp
parents:
diff changeset
637 char_O_deco_time_for_log [y] = 0;
heinrichsweikamp
parents:
diff changeset
638 }
heinrichsweikamp
parents:
diff changeset
639 }
heinrichsweikamp
parents:
diff changeset
640 }
heinrichsweikamp
parents:
diff changeset
641
heinrichsweikamp
parents:
diff changeset
642 //////////////////////////////////////////////////////////////////////////////
heinrichsweikamp
parents:
diff changeset
643 // temp_tissue_safety //
heinrichsweikamp
parents:
diff changeset
644 //
heinrichsweikamp
parents:
diff changeset
645 // outsourced in v.102
heinrichsweikamp
parents:
diff changeset
646 //
heinrichsweikamp
parents:
diff changeset
647 // Apply safety factors for brand ZH-L16 model.
heinrichsweikamp
parents:
diff changeset
648 //
heinrichsweikamp
parents:
diff changeset
649 static void temp_tissue_safety(void)
heinrichsweikamp
parents:
diff changeset
650 {
heinrichsweikamp
parents:
diff changeset
651 assert( 0.0 < float_desaturation_multiplier && float_desaturation_multiplier <= 1.0 );
heinrichsweikamp
parents:
diff changeset
652 assert( 1.0 <= float_saturation_multiplier && float_saturation_multiplier <= 2.0 );
heinrichsweikamp
parents:
diff changeset
653
287
f342853afcd9 FIX gas_volumes: shall take stops in forward order.
jdg@air
parents: 284
diff changeset
654 if( char_I_deco_model == 0 )
f342853afcd9 FIX gas_volumes: shall take stops in forward order.
jdg@air
parents: 284
diff changeset
655 {
f342853afcd9 FIX gas_volumes: shall take stops in forward order.
jdg@air
parents: 284
diff changeset
656 if( temp_tissue < 0.0 )
f342853afcd9 FIX gas_volumes: shall take stops in forward order.
jdg@air
parents: 284
diff changeset
657 temp_tissue *= float_desaturation_multiplier;
f342853afcd9 FIX gas_volumes: shall take stops in forward order.
jdg@air
parents: 284
diff changeset
658 else
f342853afcd9 FIX gas_volumes: shall take stops in forward order.
jdg@air
parents: 284
diff changeset
659 temp_tissue *= float_saturation_multiplier;
f342853afcd9 FIX gas_volumes: shall take stops in forward order.
jdg@air
parents: 284
diff changeset
660 }
0
heinrichsweikamp
parents:
diff changeset
661 }
heinrichsweikamp
parents:
diff changeset
662
heinrichsweikamp
parents:
diff changeset
663 //////////////////////////////////////////////////////////////////////////////
heinrichsweikamp
parents:
diff changeset
664 //////////////////////////////////////////////////////////////////////////////
heinrichsweikamp
parents:
diff changeset
665 // ** THE JUMP-IN CODE **
heinrichsweikamp
parents:
diff changeset
666 // ** for the asm code **
heinrichsweikamp
parents:
diff changeset
667 //////////////////////////////////////////////////////////////////////////////
heinrichsweikamp
parents:
diff changeset
668 //////////////////////////////////////////////////////////////////////////////
heinrichsweikamp
parents:
diff changeset
669
heinrichsweikamp
parents:
diff changeset
670 //////////////////////////////////////////////////////////////////////////////
heinrichsweikamp
parents:
diff changeset
671 // Called every 2 seconds during diving.
heinrichsweikamp
parents:
diff changeset
672 // update tissues every time.
heinrichsweikamp
parents:
diff changeset
673 //
heinrichsweikamp
parents:
diff changeset
674 // Every 6 seconds (or slower when TTS > 16):
heinrichsweikamp
parents:
diff changeset
675 // - update deco table (char_O_deco_time/depth) with new values.
heinrichsweikamp
parents:
diff changeset
676 // - update ascent time,
heinrichsweikamp
parents:
diff changeset
677 // - set status to zero (so we can check there is new results).
heinrichsweikamp
parents:
diff changeset
678 //
heinrichsweikamp
parents:
diff changeset
679 void deco_calc_hauptroutine(void)
heinrichsweikamp
parents:
diff changeset
680 {
heinrichsweikamp
parents:
diff changeset
681 RESET_C_STACK
heinrichsweikamp
parents:
diff changeset
682 calc_hauptroutine();
heinrichsweikamp
parents:
diff changeset
683 int_O_desaturation_time = 65535;
heinrichsweikamp
parents:
diff changeset
684 }
heinrichsweikamp
parents:
diff changeset
685
heinrichsweikamp
parents:
diff changeset
686 //////////////////////////////////////////////////////////////////////////////
heinrichsweikamp
parents:
diff changeset
687 // Reset decompression model:
heinrichsweikamp
parents:
diff changeset
688 // + Set all tissues to equilibrium with Air at ambient pressure.
heinrichsweikamp
parents:
diff changeset
689 // + Reset last stop to 0m
heinrichsweikamp
parents:
diff changeset
690 // + Reset all model output.
heinrichsweikamp
parents:
diff changeset
691 void deco_clear_tissue(void)
heinrichsweikamp
parents:
diff changeset
692 {
heinrichsweikamp
parents:
diff changeset
693 RESET_C_STACK
heinrichsweikamp
parents:
diff changeset
694 clear_tissue();
heinrichsweikamp
parents:
diff changeset
695 }
heinrichsweikamp
parents:
diff changeset
696
heinrichsweikamp
parents:
diff changeset
697 //////////////////////////////////////////////////////////////////////////////
heinrichsweikamp
parents:
diff changeset
698 // Called every 1 min during decoplanning.
heinrichsweikamp
parents:
diff changeset
699 // Update tissues for 1 min.
heinrichsweikamp
parents:
diff changeset
700 //
heinrichsweikamp
parents:
diff changeset
701 void deco_calc_tissue(void)
heinrichsweikamp
parents:
diff changeset
702 {
heinrichsweikamp
parents:
diff changeset
703 RESET_C_STACK
heinrichsweikamp
parents:
diff changeset
704 calc_hauptroutine_update_tissues();
heinrichsweikamp
parents:
diff changeset
705 }
heinrichsweikamp
parents:
diff changeset
706
heinrichsweikamp
parents:
diff changeset
707 //////////////////////////////////////////////////////////////////////////////
heinrichsweikamp
parents:
diff changeset
708
heinrichsweikamp
parents:
diff changeset
709 void deco_calc_wo_deco_step_1_min(void)
heinrichsweikamp
parents:
diff changeset
710 {
heinrichsweikamp
parents:
diff changeset
711 RESET_C_STACK
heinrichsweikamp
parents:
diff changeset
712 calc_wo_deco_step_1_min();
heinrichsweikamp
parents:
diff changeset
713 deco_calc_desaturation_time();
heinrichsweikamp
parents:
diff changeset
714 }
heinrichsweikamp
parents:
diff changeset
715
heinrichsweikamp
parents:
diff changeset
716 //////////////////////////////////////////////////////////////////////////////
heinrichsweikamp
parents:
diff changeset
717
heinrichsweikamp
parents:
diff changeset
718 void deco_calc_dive_interval(void)
heinrichsweikamp
parents:
diff changeset
719 {
heinrichsweikamp
parents:
diff changeset
720 RESET_C_STACK
heinrichsweikamp
parents:
diff changeset
721 calc_dive_interval();
heinrichsweikamp
parents:
diff changeset
722 }
heinrichsweikamp
parents:
diff changeset
723
heinrichsweikamp
parents:
diff changeset
724 //////////////////////////////////////////////////////////////////////////////
heinrichsweikamp
parents:
diff changeset
725 // Find current gas in the list (if any).
heinrichsweikamp
parents:
diff changeset
726 //
heinrichsweikamp
parents:
diff changeset
727 // Input: char_I_current_gas = 1..6
heinrichsweikamp
parents:
diff changeset
728 //
heinrichsweikamp
parents:
diff changeset
729 // Output: sim_gas_last_depth = 0..5, temp_depth_limit.
heinrichsweikamp
parents:
diff changeset
730 //
heinrichsweikamp
parents:
diff changeset
731 static void gas_switch_find_current(void)
heinrichsweikamp
parents:
diff changeset
732 {
323
19f7dc2b12d6 FIX minor assert: separate diluant list means current gas can go up to 10.
jDG
parents: 322
diff changeset
733 assert( 0 < char_I_current_gas && char_I_current_gas <= (2*NUM_GAS) );
0
heinrichsweikamp
parents:
diff changeset
734
heinrichsweikamp
parents:
diff changeset
735 if( char_I_current_gas <= NUM_GAS ) // Gas1..Gas5
heinrichsweikamp
parents:
diff changeset
736 {
heinrichsweikamp
parents:
diff changeset
737 sim_gas_last_used = char_I_current_gas;
heinrichsweikamp
parents:
diff changeset
738
heinrichsweikamp
parents:
diff changeset
739 // Note: if current is first gas, we must find it, but not set
heinrichsweikamp
parents:
diff changeset
740 // last depth change to surface.
heinrichsweikamp
parents:
diff changeset
741 if( char_I_deco_gas_change[sim_gas_last_used-1] )
heinrichsweikamp
parents:
diff changeset
742 sim_gas_last_depth = char_I_deco_gas_change[sim_gas_last_used-1];
heinrichsweikamp
parents:
diff changeset
743 }
heinrichsweikamp
parents:
diff changeset
744 else
heinrichsweikamp
parents:
diff changeset
745 sim_gas_last_used = 0; // Gas 6 = manual set
heinrichsweikamp
parents:
diff changeset
746 }
heinrichsweikamp
parents:
diff changeset
747
heinrichsweikamp
parents:
diff changeset
748 //////////////////////////////////////////////////////////////////////////////
heinrichsweikamp
parents:
diff changeset
749 // Find deepest available gas.
heinrichsweikamp
parents:
diff changeset
750 //
heinrichsweikamp
parents:
diff changeset
751 // Input: temp_depth_limit,
heinrichsweikamp
parents:
diff changeset
752 // deco_gas_change[]
heinrichsweikamp
parents:
diff changeset
753 // sim_gas_depth_used, sim_dive_mins.
heinrichsweikamp
parents:
diff changeset
754 //
heinrichsweikamp
parents:
diff changeset
755 // RETURNS TRUE if a stop is needed for gas switch.
heinrichsweikamp
parents:
diff changeset
756 //
heinrichsweikamp
parents:
diff changeset
757 // Output: temp_depth_limit, sim_gas_depth_used IFF the is a switch.
heinrichsweikamp
parents:
diff changeset
758 //
heinrichsweikamp
parents:
diff changeset
759 // NOTE: might be called from bottom (when sim_gas_delay and sim_gas_depth_used
heinrichsweikamp
parents:
diff changeset
760 // are null), or during the ascent to make sure we are not passing a
heinrichsweikamp
parents:
diff changeset
761 // stop (in which case both can be already set).
heinrichsweikamp
parents:
diff changeset
762 //
heinrichsweikamp
parents:
diff changeset
763 static unsigned char gas_switch_deepest(void)
heinrichsweikamp
parents:
diff changeset
764 {
heinrichsweikamp
parents:
diff changeset
765 overlay unsigned char switch_deco = 0, switch_last = 0;
heinrichsweikamp
parents:
diff changeset
766
heinrichsweikamp
parents:
diff changeset
767 if (char_I_const_ppO2 == 0)
heinrichsweikamp
parents:
diff changeset
768 {
heinrichsweikamp
parents:
diff changeset
769 overlay unsigned char j;
heinrichsweikamp
parents:
diff changeset
770
heinrichsweikamp
parents:
diff changeset
771 // Loop over all enabled gas, to find the deepest one,
heinrichsweikamp
parents:
diff changeset
772 // above last used gas, but below temp_depth_limit.
heinrichsweikamp
parents:
diff changeset
773 for(j=0; j<NUM_GAS; ++j)
heinrichsweikamp
parents:
diff changeset
774 {
heinrichsweikamp
parents:
diff changeset
775 // Gas not (yet) allowed ? Skip !
heinrichsweikamp
parents:
diff changeset
776 if( temp_depth_limit > deco_gas_change[j] )
heinrichsweikamp
parents:
diff changeset
777 continue;
heinrichsweikamp
parents:
diff changeset
778
heinrichsweikamp
parents:
diff changeset
779 // Gas deeper (or equal) than the current one ? Skip !
heinrichsweikamp
parents:
diff changeset
780 if( sim_gas_last_depth && deco_gas_change[j] >= sim_gas_last_depth )
heinrichsweikamp
parents:
diff changeset
781 continue;
heinrichsweikamp
parents:
diff changeset
782
heinrichsweikamp
parents:
diff changeset
783 // First, or deeper ?
heinrichsweikamp
parents:
diff changeset
784 if( switch_deco < deco_gas_change[j] )
heinrichsweikamp
parents:
diff changeset
785 {
heinrichsweikamp
parents:
diff changeset
786 switch_deco = deco_gas_change[j];
heinrichsweikamp
parents:
diff changeset
787 switch_last = j+1; // 1..5
heinrichsweikamp
parents:
diff changeset
788 }
heinrichsweikamp
parents:
diff changeset
789 }
heinrichsweikamp
parents:
diff changeset
790 }
heinrichsweikamp
parents:
diff changeset
791
heinrichsweikamp
parents:
diff changeset
792 // If there is a better gas available
heinrichsweikamp
parents:
diff changeset
793 if( switch_deco )
heinrichsweikamp
parents:
diff changeset
794 {
heinrichsweikamp
parents:
diff changeset
795 assert( !sim_gas_last_depth || sim_gas_last_depth > switch_deco );
heinrichsweikamp
parents:
diff changeset
796
heinrichsweikamp
parents:
diff changeset
797 sim_gas_last_depth = switch_deco;
heinrichsweikamp
parents:
diff changeset
798 sim_gas_last_used = switch_last;
heinrichsweikamp
parents:
diff changeset
799 return 0;
heinrichsweikamp
parents:
diff changeset
800 }
heinrichsweikamp
parents:
diff changeset
801 return 0;
heinrichsweikamp
parents:
diff changeset
802 }
heinrichsweikamp
parents:
diff changeset
803
heinrichsweikamp
parents:
diff changeset
804 //////////////////////////////////////////////////////////////////////////////
heinrichsweikamp
parents:
diff changeset
805 // Calculate gas switches
heinrichsweikamp
parents:
diff changeset
806 //
heinrichsweikamp
parents:
diff changeset
807 //
heinrichsweikamp
parents:
diff changeset
808 // Input: N2_ratio, He_ratio.
heinrichsweikamp
parents:
diff changeset
809 // sim_gas_last_used
heinrichsweikamp
parents:
diff changeset
810 //
heinrichsweikamp
parents:
diff changeset
811 // Output: calc_N2_ratio, calc_He_ratio
heinrichsweikamp
parents:
diff changeset
812 //
heinrichsweikamp
parents:
diff changeset
813 static void gas_switch_set(void)
heinrichsweikamp
parents:
diff changeset
814 {
heinrichsweikamp
parents:
diff changeset
815 assert( sim_gas_last_used <= NUM_GAS );
heinrichsweikamp
parents:
diff changeset
816
heinrichsweikamp
parents:
diff changeset
817 if( sim_gas_last_used == 0 ) // Gas6 = manualy set gas.
heinrichsweikamp
parents:
diff changeset
818 {
heinrichsweikamp
parents:
diff changeset
819 calc_N2_ratio = N2_ratio;
287
f342853afcd9 FIX gas_volumes: shall take stops in forward order.
jdg@air
parents: 284
diff changeset
820 calc_He_ratio = He_ratio;
0
heinrichsweikamp
parents:
diff changeset
821 }
heinrichsweikamp
parents:
diff changeset
822 else
heinrichsweikamp
parents:
diff changeset
823 {
heinrichsweikamp
parents:
diff changeset
824 calc_N2_ratio = char_I_deco_N2_ratio[sim_gas_last_used-1] * 0.01;
287
f342853afcd9 FIX gas_volumes: shall take stops in forward order.
jdg@air
parents: 284
diff changeset
825 calc_He_ratio = char_I_deco_He_ratio[sim_gas_last_used-1] * 0.01;
0
heinrichsweikamp
parents:
diff changeset
826 }
heinrichsweikamp
parents:
diff changeset
827
heinrichsweikamp
parents:
diff changeset
828 assert( 0.0 <= calc_N2_ratio && calc_N2_ratio <= 0.95 );
114
109df032cc54 minor fix: assert should pass for pure helium diluant
heinrichsweikamp
parents: 111
diff changeset
829 assert( 0.0 <= calc_He_ratio && calc_He_ratio <= 1.00 );
0
heinrichsweikamp
parents:
diff changeset
830 assert( (calc_N2_ratio + calc_He_ratio) <= 1.00 );
heinrichsweikamp
parents:
diff changeset
831 }
heinrichsweikamp
parents:
diff changeset
832
heinrichsweikamp
parents:
diff changeset
833 //////////////////////////////////////////////////////////////////////////////
heinrichsweikamp
parents:
diff changeset
834 //
heinrichsweikamp
parents:
diff changeset
835 // Input: calc_N2_ratio, calc_He_ratio : simulated gas mix.
heinrichsweikamp
parents:
diff changeset
836 // temp_deco : simulated respiration pressure
heinrichsweikamp
parents:
diff changeset
837 // float_deco_distance : security factor.
heinrichsweikamp
parents:
diff changeset
838 // Water-vapor pressure inside limbs (ppWater).
heinrichsweikamp
parents:
diff changeset
839 //
heinrichsweikamp
parents:
diff changeset
840 // Output: ppN2, ppHe.
heinrichsweikamp
parents:
diff changeset
841 //
heinrichsweikamp
parents:
diff changeset
842 static void sim_alveolar_presures(void)
heinrichsweikamp
parents:
diff changeset
843 {
heinrichsweikamp
parents:
diff changeset
844 overlay float deco_diluent = temp_deco; // new in v.101
heinrichsweikamp
parents:
diff changeset
845
heinrichsweikamp
parents:
diff changeset
846 // Take deco offset into account, but not at surface.
heinrichsweikamp
parents:
diff changeset
847 // Note: this should be done on ambiant pressure, hence before
heinrichsweikamp
parents:
diff changeset
848 // computing the diluant partial pressure...
heinrichsweikamp
parents:
diff changeset
849 if( deco_diluent > pres_surface )
heinrichsweikamp
parents:
diff changeset
850 deco_diluent += float_deco_distance;
heinrichsweikamp
parents:
diff changeset
851
heinrichsweikamp
parents:
diff changeset
852 //---- CCR mode : deco gas switch ? --------------------------------------
heinrichsweikamp
parents:
diff changeset
853 if( char_I_const_ppO2 != 0 )
287
f342853afcd9 FIX gas_volumes: shall take stops in forward order.
jdg@air
parents: 284
diff changeset
854 {
0
heinrichsweikamp
parents:
diff changeset
855 // In CCR mode, use calc_XX_ratio instead of XX_ratio.
heinrichsweikamp
parents:
diff changeset
856 // Note: PPO2 and ratios are known outside the lumbs, so there is no
heinrichsweikamp
parents:
diff changeset
857 // ppWater in the equations below:
heinrichsweikamp
parents:
diff changeset
858 deco_diluent -= const_ppO2;
heinrichsweikamp
parents:
diff changeset
859 deco_diluent /= calc_N2_ratio + calc_He_ratio;
heinrichsweikamp
parents:
diff changeset
860
heinrichsweikamp
parents:
diff changeset
861 if (deco_diluent > temp_deco)
287
f342853afcd9 FIX gas_volumes: shall take stops in forward order.
jdg@air
parents: 284
diff changeset
862 deco_diluent = temp_deco;
f342853afcd9 FIX gas_volumes: shall take stops in forward order.
jdg@air
parents: 284
diff changeset
863 }
0
heinrichsweikamp
parents:
diff changeset
864
heinrichsweikamp
parents:
diff changeset
865 if( deco_diluent > ppWater )
heinrichsweikamp
parents:
diff changeset
866 {
heinrichsweikamp
parents:
diff changeset
867 ppN2 = calc_N2_ratio * (deco_diluent - ppWater);
heinrichsweikamp
parents:
diff changeset
868 ppHe = calc_He_ratio * (deco_diluent - ppWater);
heinrichsweikamp
parents:
diff changeset
869 }
heinrichsweikamp
parents:
diff changeset
870 else
heinrichsweikamp
parents:
diff changeset
871 {
heinrichsweikamp
parents:
diff changeset
872 ppN2 = 0.0;
heinrichsweikamp
parents:
diff changeset
873 ppHe = 0.0;
heinrichsweikamp
parents:
diff changeset
874 }
heinrichsweikamp
parents:
diff changeset
875 assert( 0.0 <= ppN2 && ppN2 < 14.0 );
heinrichsweikamp
parents:
diff changeset
876 assert( 0.0 <= ppHe && ppHe < 14.0 );
heinrichsweikamp
parents:
diff changeset
877 }
heinrichsweikamp
parents:
diff changeset
878
heinrichsweikamp
parents:
diff changeset
879 //////////////////////////////////////////////////////////////////////////////
heinrichsweikamp
parents:
diff changeset
880 // clear_tissue
heinrichsweikamp
parents:
diff changeset
881 //
heinrichsweikamp
parents:
diff changeset
882 // optimized in v.101 (var_N2_a)
heinrichsweikamp
parents:
diff changeset
883 //
heinrichsweikamp
parents:
diff changeset
884 // preload tissues with standard pressure for the given ambient pressure.
heinrichsweikamp
parents:
diff changeset
885 // Note: fixed N2_ratio for standard air.
heinrichsweikamp
parents:
diff changeset
886 //
heinrichsweikamp
parents:
diff changeset
887 static void clear_tissue(void)
heinrichsweikamp
parents:
diff changeset
888 {
heinrichsweikamp
parents:
diff changeset
889 overlay float p;
heinrichsweikamp
parents:
diff changeset
890
heinrichsweikamp
parents:
diff changeset
891 // Kludge: the 0.0002 of 0.7902 are missing with standard air.
heinrichsweikamp
parents:
diff changeset
892 N2_ratio = 0.7902;
heinrichsweikamp
parents:
diff changeset
893 pres_respiration = int_I_pres_respiration * 0.001;
heinrichsweikamp
parents:
diff changeset
894
heinrichsweikamp
parents:
diff changeset
895 p = N2_ratio * (pres_respiration - ppWater);
heinrichsweikamp
parents:
diff changeset
896 for(ci=0; ci<NUM_COMP; ci++)
heinrichsweikamp
parents:
diff changeset
897 {
313
0ce5fa241b8e FIX minor comment about deco offset unit...
jDG
parents: 298
diff changeset
898 // cycle through the 16 Buhlmann N2 tissues
0
heinrichsweikamp
parents:
diff changeset
899 pres_tissue_N2[ci] = p;
heinrichsweikamp
parents:
diff changeset
900
313
0ce5fa241b8e FIX minor comment about deco offset unit...
jDG
parents: 298
diff changeset
901 // cycle through the 16 Buhlmann tissues for Helium
0
heinrichsweikamp
parents:
diff changeset
902 pres_tissue_He[ci] = 0.0;
heinrichsweikamp
parents:
diff changeset
903 }
heinrichsweikamp
parents:
diff changeset
904
heinrichsweikamp
parents:
diff changeset
905 clear_deco_table();
heinrichsweikamp
parents:
diff changeset
906 char_O_deco_status = 0;
heinrichsweikamp
parents:
diff changeset
907 char_O_nullzeit = 0;
heinrichsweikamp
parents:
diff changeset
908 int_O_ascenttime = 0;
heinrichsweikamp
parents:
diff changeset
909 char_O_gradient_factor = 0;
heinrichsweikamp
parents:
diff changeset
910 char_O_relative_gradient_GF = 0;
heinrichsweikamp
parents:
diff changeset
911
heinrichsweikamp
parents:
diff changeset
912 calc_lead_tissue_limit = 0.0;
heinrichsweikamp
parents:
diff changeset
913 char_O_gtissue_no = 0;
heinrichsweikamp
parents:
diff changeset
914 }
heinrichsweikamp
parents:
diff changeset
915
heinrichsweikamp
parents:
diff changeset
916 //////////////////////////////////////////////////////////////////////////////
heinrichsweikamp
parents:
diff changeset
917 // calc_hauptroutine
heinrichsweikamp
parents:
diff changeset
918 //
heinrichsweikamp
parents:
diff changeset
919 // this is the major code in dive mode calculates:
heinrichsweikamp
parents:
diff changeset
920 // the tissues,
heinrichsweikamp
parents:
diff changeset
921 // the bottom time,
heinrichsweikamp
parents:
diff changeset
922 // and simulates the ascend with all deco stops.
heinrichsweikamp
parents:
diff changeset
923 //
heinrichsweikamp
parents:
diff changeset
924 // The deco_state sequence is :
heinrichsweikamp
parents:
diff changeset
925 // 3 (at surface)
heinrichsweikamp
parents:
diff changeset
926 // +---> 0 : calc nullzeit
heinrichsweikamp
parents:
diff changeset
927 // | 2 : simulate ascent to first stop (at 10m/min, less that 16x 1min simu)
heinrichsweikamp
parents:
diff changeset
928 // | +-> 1 : simulate up to 16min of stops.
heinrichsweikamp
parents:
diff changeset
929 // | +------< not finished
heinrichsweikamp
parents:
diff changeset
930 // +--------< finish
heinrichsweikamp
parents:
diff changeset
931 //
heinrichsweikamp
parents:
diff changeset
932 // Added steps 6,5 for @+5 calculation:
heinrichsweikamp
parents:
diff changeset
933 // 6 = ascent to first stop (same as 2), except continue to 7
heinrichsweikamp
parents:
diff changeset
934 // 7 = same as 1, except loop to 7.
heinrichsweikamp
parents:
diff changeset
935 //
heinrichsweikamp
parents:
diff changeset
936 static void calc_hauptroutine(void)
heinrichsweikamp
parents:
diff changeset
937 {
342
7812ec7ef694 Fix low_depth shall be stored as a float (no rounding).
jDG
parents: 324
diff changeset
938 static unsigned char backup_gas_used = 0;
7812ec7ef694 Fix low_depth shall be stored as a float (no rounding).
jDG
parents: 324
diff changeset
939 static unsigned char backup_gas_depth = 0;
0
heinrichsweikamp
parents:
diff changeset
940
heinrichsweikamp
parents:
diff changeset
941 calc_hauptroutine_data_input();
heinrichsweikamp
parents:
diff changeset
942
heinrichsweikamp
parents:
diff changeset
943 calc_hauptroutine_update_tissues();
heinrichsweikamp
parents:
diff changeset
944 calc_gradient_factor();
heinrichsweikamp
parents:
diff changeset
945
heinrichsweikamp
parents:
diff changeset
946 // toggle between calculation for nullzeit (bottom time),
heinrichsweikamp
parents:
diff changeset
947 // deco stops
heinrichsweikamp
parents:
diff changeset
948 // and more deco stops (continue)
heinrichsweikamp
parents:
diff changeset
949 switch( char_O_deco_status )
heinrichsweikamp
parents:
diff changeset
950 {
heinrichsweikamp
parents:
diff changeset
951 case 3: //---- At surface: start a new dive ------------------------------
287
f342853afcd9 FIX gas_volumes: shall take stops in forward order.
jdg@air
parents: 284
diff changeset
952 clear_deco_table();
f342853afcd9 FIX gas_volumes: shall take stops in forward order.
jdg@air
parents: 284
diff changeset
953 copy_deco_table();
f342853afcd9 FIX gas_volumes: shall take stops in forward order.
jdg@air
parents: 284
diff changeset
954 int_O_ascenttime = 0; // Reset DTR.
f342853afcd9 FIX gas_volumes: shall take stops in forward order.
jdg@air
parents: 284
diff changeset
955 int_O_extra_ascenttime = 0;
f342853afcd9 FIX gas_volumes: shall take stops in forward order.
jdg@air
parents: 284
diff changeset
956 char_O_nullzeit = 0; // Reset bottom time.
0
heinrichsweikamp
parents:
diff changeset
957 char_O_deco_status = 0; // Calc bottom-time/nullzeit next iteration.
heinrichsweikamp
parents:
diff changeset
958
heinrichsweikamp
parents:
diff changeset
959 // Values that should be reset just once for the full real dive.
heinrichsweikamp
parents:
diff changeset
960 // This is used to record the lowest stop for the whole dive,
heinrichsweikamp
parents:
diff changeset
961 // Including ACCROSS all simulated ascent.
342
7812ec7ef694 Fix low_depth shall be stored as a float (no rounding).
jDG
parents: 324
diff changeset
962 low_depth = 0.0;
0
heinrichsweikamp
parents:
diff changeset
963 locked_GF_step = 0.0;
heinrichsweikamp
parents:
diff changeset
964
heinrichsweikamp
parents:
diff changeset
965 // Reset gas switch history.
heinrichsweikamp
parents:
diff changeset
966 backup_gas_used = sim_gas_last_used = 0;
heinrichsweikamp
parents:
diff changeset
967 backup_gas_depth = sim_gas_last_depth = 0;
heinrichsweikamp
parents:
diff changeset
968 sim_dive_mins = 0;
heinrichsweikamp
parents:
diff changeset
969 break;
heinrichsweikamp
parents:
diff changeset
970
heinrichsweikamp
parents:
diff changeset
971 case 0: //---- bottom time -----------------------------------------------
heinrichsweikamp
parents:
diff changeset
972 default:
heinrichsweikamp
parents:
diff changeset
973 gas_switch_find_current(); // Lookup for current gas & time.
heinrichsweikamp
parents:
diff changeset
974 gas_switch_set(); // setup calc_ratio's
heinrichsweikamp
parents:
diff changeset
975
287
f342853afcd9 FIX gas_volumes: shall take stops in forward order.
jdg@air
parents: 284
diff changeset
976 calc_nullzeit();
0
heinrichsweikamp
parents:
diff changeset
977 if( char_O_nullzeit > 0 ) // Some NDL time left ?
heinrichsweikamp
parents:
diff changeset
978 {
heinrichsweikamp
parents:
diff changeset
979 char_O_deco_status = 0; // YES: recalc ndl next time.
heinrichsweikamp
parents:
diff changeset
980 clear_deco_table(); // Also clear stops !
heinrichsweikamp
parents:
diff changeset
981 copy_deco_table();
heinrichsweikamp
parents:
diff changeset
982 char_O_deco_last_stop = 0; // And last stop (OSTC menu anim)
heinrichsweikamp
parents:
diff changeset
983 }
heinrichsweikamp
parents:
diff changeset
984 else
heinrichsweikamp
parents:
diff changeset
985 char_O_deco_status = 2; // NO: calc ascent next time.
287
f342853afcd9 FIX gas_volumes: shall take stops in forward order.
jdg@air
parents: 284
diff changeset
986 break;
0
heinrichsweikamp
parents:
diff changeset
987
heinrichsweikamp
parents:
diff changeset
988 case 2: //---- Simulate ascent to first stop -----------------------------
heinrichsweikamp
parents:
diff changeset
989 case 6: // @+5min variation
heinrichsweikamp
parents:
diff changeset
990 // Check proposed gas at begin of ascent simulation
heinrichsweikamp
parents:
diff changeset
991 sim_dive_mins = int_I_divemins; // Init current time.
heinrichsweikamp
parents:
diff changeset
992
287
f342853afcd9 FIX gas_volumes: shall take stops in forward order.
jdg@air
parents: 284
diff changeset
993 gas_switch_find_current(); // Lookup for current gas & time.
0
heinrichsweikamp
parents:
diff changeset
994 gas_switch_set(); // setup calc_ratio's
heinrichsweikamp
parents:
diff changeset
995
heinrichsweikamp
parents:
diff changeset
996 backup_gas_used = sim_gas_last_used; // And save for later simu steps.
heinrichsweikamp
parents:
diff changeset
997 backup_gas_depth = sim_gas_last_depth; // And save for later simu steps.
heinrichsweikamp
parents:
diff changeset
998
287
f342853afcd9 FIX gas_volumes: shall take stops in forward order.
jdg@air
parents: 284
diff changeset
999 sim_ascent_to_first_stop();
0
heinrichsweikamp
parents:
diff changeset
1000
heinrichsweikamp
parents:
diff changeset
1001 // Calc stops next time (deco or gas switch).
heinrichsweikamp
parents:
diff changeset
1002 char_O_deco_status = 1 | ( char_O_deco_status & 4 );
287
f342853afcd9 FIX gas_volumes: shall take stops in forward order.
jdg@air
parents: 284
diff changeset
1003 break;
0
heinrichsweikamp
parents:
diff changeset
1004
heinrichsweikamp
parents:
diff changeset
1005 case 1: //---- Simulate stops --------------------------------------------
heinrichsweikamp
parents:
diff changeset
1006 case 5: // @+5 variation.
287
f342853afcd9 FIX gas_volumes: shall take stops in forward order.
jdg@air
parents: 284
diff changeset
1007 calc_hauptroutine_calc_deco();
0
heinrichsweikamp
parents:
diff changeset
1008
heinrichsweikamp
parents:
diff changeset
1009 // If simulation is finished, restore the GF low reference, so that
heinrichsweikamp
parents:
diff changeset
1010 // next ascent simulation is done from the current depth:
287
f342853afcd9 FIX gas_volumes: shall take stops in forward order.
jdg@air
parents: 284
diff changeset
1011 if( (char_O_deco_status & 3) == 0 )
f342853afcd9 FIX gas_volumes: shall take stops in forward order.
jdg@air
parents: 284
diff changeset
1012 {
0
heinrichsweikamp
parents:
diff changeset
1013 sim_gas_last_used = backup_gas_used;
heinrichsweikamp
parents:
diff changeset
1014 sim_gas_last_depth = backup_gas_depth;
heinrichsweikamp
parents:
diff changeset
1015 }
287
f342853afcd9 FIX gas_volumes: shall take stops in forward order.
jdg@air
parents: 284
diff changeset
1016 break;
0
heinrichsweikamp
parents:
diff changeset
1017 }
heinrichsweikamp
parents:
diff changeset
1018 }
heinrichsweikamp
parents:
diff changeset
1019
heinrichsweikamp
parents:
diff changeset
1020 //////////////////////////////////////////////////////////////////////////////
heinrichsweikamp
parents:
diff changeset
1021 // calc_hauptroutine_data_input
heinrichsweikamp
parents:
diff changeset
1022 //
heinrichsweikamp
parents:
diff changeset
1023 // Reset all C-code dive parameters from their ASM-code values.
heinrichsweikamp
parents:
diff changeset
1024 // Detect gas change condition.
heinrichsweikamp
parents:
diff changeset
1025 //
heinrichsweikamp
parents:
diff changeset
1026 void calc_hauptroutine_data_input(void)
heinrichsweikamp
parents:
diff changeset
1027 {
heinrichsweikamp
parents:
diff changeset
1028 overlay short int_temp;
heinrichsweikamp
parents:
diff changeset
1029 overlay unsigned char g;
heinrichsweikamp
parents:
diff changeset
1030
heinrichsweikamp
parents:
diff changeset
1031 pres_respiration = int_I_pres_respiration * 0.001;
heinrichsweikamp
parents:
diff changeset
1032 pres_surface = int_I_pres_surface * 0.001;
heinrichsweikamp
parents:
diff changeset
1033 N2_ratio = char_I_N2_ratio * 0.01;
heinrichsweikamp
parents:
diff changeset
1034 He_ratio = char_I_He_ratio * 0.01;
379
heinrichsweikamp
parents: 351
diff changeset
1035 float_deco_distance = char_I_deco_distance * 0.01; // Get offset in mbar
0
heinrichsweikamp
parents:
diff changeset
1036
heinrichsweikamp
parents:
diff changeset
1037 // ____________________________________________________
heinrichsweikamp
parents:
diff changeset
1038 //
heinrichsweikamp
parents:
diff changeset
1039 // _____________ G A S _ C H A N G E S ________________
heinrichsweikamp
parents:
diff changeset
1040 // ____________________________________________________
heinrichsweikamp
parents:
diff changeset
1041
heinrichsweikamp
parents:
diff changeset
1042 // Keep a margin of 150mbar = 1.50m
heinrichsweikamp
parents:
diff changeset
1043 int_temp = (int_I_pres_respiration - int_I_pres_surface)
heinrichsweikamp
parents:
diff changeset
1044 + MBAR_REACH_GASCHANGE_AUTO_CHANGE_OFF;
heinrichsweikamp
parents:
diff changeset
1045
heinrichsweikamp
parents:
diff changeset
1046 // Gas are selectable if we did not pass the change depth by more than 1.50m:
heinrichsweikamp
parents:
diff changeset
1047 for(g=0; g < NUM_GAS; ++g)
heinrichsweikamp
parents:
diff changeset
1048 {
heinrichsweikamp
parents:
diff changeset
1049 deco_gas_change[g] = 0;
heinrichsweikamp
parents:
diff changeset
1050 if(char_I_deco_gas_change[g])
heinrichsweikamp
parents:
diff changeset
1051 if( int_temp > 100 *(short)char_I_deco_gas_change[g] )
287
f342853afcd9 FIX gas_volumes: shall take stops in forward order.
jdg@air
parents: 284
diff changeset
1052 deco_gas_change[g] = char_I_deco_gas_change[g];
0
heinrichsweikamp
parents:
diff changeset
1053 }
heinrichsweikamp
parents:
diff changeset
1054
heinrichsweikamp
parents:
diff changeset
1055 const_ppO2 = char_I_const_ppO2 * 0.01;
heinrichsweikamp
parents:
diff changeset
1056 float_desaturation_multiplier = char_I_desaturation_multiplier * 0.01;
heinrichsweikamp
parents:
diff changeset
1057 float_saturation_multiplier = char_I_saturation_multiplier * 0.01;
heinrichsweikamp
parents:
diff changeset
1058 GF_low = char_I_GF_Low_percentage * 0.01;
heinrichsweikamp
parents:
diff changeset
1059 GF_high = char_I_GF_High_percentage * 0.01;
heinrichsweikamp
parents:
diff changeset
1060 GF_delta = GF_high - GF_low;
heinrichsweikamp
parents:
diff changeset
1061 }
heinrichsweikamp
parents:
diff changeset
1062
heinrichsweikamp
parents:
diff changeset
1063 //////////////////////////////////////////////////////////////////////////////
heinrichsweikamp
parents:
diff changeset
1064 //
heinrichsweikamp
parents:
diff changeset
1065 //
heinrichsweikamp
parents:
diff changeset
1066 void calc_hauptroutine_update_tissues(void)
heinrichsweikamp
parents:
diff changeset
1067 {
heinrichsweikamp
parents:
diff changeset
1068 assert( 0.00 <= N2_ratio && N2_ratio <= 1.00 );
heinrichsweikamp
parents:
diff changeset
1069 assert( 0.00 <= He_ratio && He_ratio <= 1.00 );
114
109df032cc54 minor fix: assert should pass for pure helium diluant
heinrichsweikamp
parents: 111
diff changeset
1070 assert( (N2_ratio + He_ratio) <= 1.00 );
0
heinrichsweikamp
parents:
diff changeset
1071 assert( 0.800 < pres_respiration && pres_respiration < 14.0 );
heinrichsweikamp
parents:
diff changeset
1072
heinrichsweikamp
parents:
diff changeset
1073 pres_diluent = pres_respiration;
heinrichsweikamp
parents:
diff changeset
1074 if( char_I_const_ppO2 != 0 )
heinrichsweikamp
parents:
diff changeset
1075 {
heinrichsweikamp
parents:
diff changeset
1076 overlay float flush_ppO2 = pres_respiration * (1.0 - N2_ratio - He_ratio);
heinrichsweikamp
parents:
diff changeset
1077
heinrichsweikamp
parents:
diff changeset
1078 pres_diluent -= const_ppO2;
heinrichsweikamp
parents:
diff changeset
1079 pres_diluent /= N2_ratio + He_ratio;
heinrichsweikamp
parents:
diff changeset
1080 if( pres_diluent < 0.0 )
heinrichsweikamp
parents:
diff changeset
1081 pres_diluent = 0.0;
heinrichsweikamp
parents:
diff changeset
1082 if( pres_diluent > pres_respiration )
heinrichsweikamp
parents:
diff changeset
1083 pres_diluent = pres_respiration;
heinrichsweikamp
parents:
diff changeset
1084
heinrichsweikamp
parents:
diff changeset
1085 char_O_diluent = (unsigned char)(pres_diluent/pres_respiration*100.0 + 0.5);
heinrichsweikamp
parents:
diff changeset
1086
heinrichsweikamp
parents:
diff changeset
1087 if( flush_ppO2 > 2.545) flush_ppO2 = 2.55;
heinrichsweikamp
parents:
diff changeset
1088 if( flush_ppO2 < 0.0 ) flush_ppO2 = 0.0;
heinrichsweikamp
parents:
diff changeset
1089 char_O_flush_ppO2 = (unsigned char)(flush_ppO2*100.0 + 0.5);
heinrichsweikamp
parents:
diff changeset
1090 }
heinrichsweikamp
parents:
diff changeset
1091
heinrichsweikamp
parents:
diff changeset
1092 if( pres_diluent > ppWater )
heinrichsweikamp
parents:
diff changeset
1093 {
287
f342853afcd9 FIX gas_volumes: shall take stops in forward order.
jdg@air
parents: 284
diff changeset
1094 overlay float EAD, END;
0
heinrichsweikamp
parents:
diff changeset
1095
287
f342853afcd9 FIX gas_volumes: shall take stops in forward order.
jdg@air
parents: 284
diff changeset
1096 ppN2 = N2_ratio * (pres_diluent - ppWater);
0
heinrichsweikamp
parents:
diff changeset
1097 ppHe = He_ratio * (pres_diluent - ppWater);
heinrichsweikamp
parents:
diff changeset
1098
heinrichsweikamp
parents:
diff changeset
1099 // EAD : Equivalent Air Dive. Equivalent depth for the same N2 level
heinrichsweikamp
parents:
diff changeset
1100 // with plain air.
heinrichsweikamp
parents:
diff changeset
1101 // ppN2 = 79% * (P_EAD - ppWater)
heinrichsweikamp
parents:
diff changeset
1102 // EAD = (P_EAD - Psurface) * 10
heinrichsweikamp
parents:
diff changeset
1103 // ie: EAD = (ppN2 / 0.7902 + ppWater -Psurface) * 10
heinrichsweikamp
parents:
diff changeset
1104 EAD = (ppN2 / 0.7902 + ppWater - pres_surface) * BAR_TO_METER;
heinrichsweikamp
parents:
diff changeset
1105 if( EAD < 0.0 || EAD > 245.5 ) EAD = 0.0;
heinrichsweikamp
parents:
diff changeset
1106 char_O_EAD = (unsigned char)(EAD + 0.5);
heinrichsweikamp
parents:
diff changeset
1107
heinrichsweikamp
parents:
diff changeset
1108 // END : Equivalent Narcotic Dive.
heinrichsweikamp
parents:
diff changeset
1109 // Here we count O2 as narcotic too. Hence everything but helium (has a narcosis factor of
heinrichsweikamp
parents:
diff changeset
1110 // 0.23 btw). Hence the formula becomes:
heinrichsweikamp
parents:
diff changeset
1111 // END * BarPerMeter * (1.0 - 0.0) - ppWater + Psurface == Pambient - ppHe - ppWater
heinrichsweikamp
parents:
diff changeset
1112 // ie: END = (Pambient - ppHe - Psurface) * BAR_TO_METER
heinrichsweikamp
parents:
diff changeset
1113 //
heinrichsweikamp
parents:
diff changeset
1114 // Source cited:
heinrichsweikamp
parents:
diff changeset
1115 // The Physiology and Medicine of Diving by Peter Bennett and David Elliott,
heinrichsweikamp
parents:
diff changeset
1116 // 4th edition, 1993, W.B.Saunders Company Ltd, London.
heinrichsweikamp
parents:
diff changeset
1117 END = (pres_respiration - ppHe - pres_surface) * BAR_TO_METER;
heinrichsweikamp
parents:
diff changeset
1118 if( END < 0.0 || END > 245.5 ) END = 0.0;
heinrichsweikamp
parents:
diff changeset
1119 char_O_END = (unsigned char)(END + 0.5);
heinrichsweikamp
parents:
diff changeset
1120 }
heinrichsweikamp
parents:
diff changeset
1121 else // new in v.101
heinrichsweikamp
parents:
diff changeset
1122 {
heinrichsweikamp
parents:
diff changeset
1123 ppN2 = 0.0;
heinrichsweikamp
parents:
diff changeset
1124 ppHe = 0.0;
heinrichsweikamp
parents:
diff changeset
1125 char_O_EAD = char_O_END = 0;
heinrichsweikamp
parents:
diff changeset
1126 }
heinrichsweikamp
parents:
diff changeset
1127
heinrichsweikamp
parents:
diff changeset
1128 if(!char_I_step_is_1min)
heinrichsweikamp
parents:
diff changeset
1129 calc_tissue(0);
heinrichsweikamp
parents:
diff changeset
1130 else
heinrichsweikamp
parents:
diff changeset
1131 calc_tissue(1);
heinrichsweikamp
parents:
diff changeset
1132
heinrichsweikamp
parents:
diff changeset
1133 // Calc limit for surface, ie. GF_high.
heinrichsweikamp
parents:
diff changeset
1134 calc_limit();
heinrichsweikamp
parents:
diff changeset
1135
126
9e856337b225 fix depth<0m display, ceiling
heinrichsweikamp
parents: 123
diff changeset
1136 // Fill int_O_ceiling if ceiling is below the surface
9e856337b225 fix depth<0m display, ceiling
heinrichsweikamp
parents: 123
diff changeset
1137 if ((calc_lead_tissue_limit-pres_surface)>0)
9e856337b225 fix depth<0m display, ceiling
heinrichsweikamp
parents: 123
diff changeset
1138 int_O_ceiling = (short)((calc_lead_tissue_limit-pres_surface)*1000);
9e856337b225 fix depth<0m display, ceiling
heinrichsweikamp
parents: 123
diff changeset
1139 else
9e856337b225 fix depth<0m display, ceiling
heinrichsweikamp
parents: 123
diff changeset
1140 int_O_ceiling = 0;
9e856337b225 fix depth<0m display, ceiling
heinrichsweikamp
parents: 123
diff changeset
1141
0
heinrichsweikamp
parents:
diff changeset
1142 int_O_gtissue_press = (short)((pres_tissue_N2[char_O_gtissue_no] + pres_tissue_He[char_O_gtissue_no]) * 1000);
heinrichsweikamp
parents:
diff changeset
1143 }
heinrichsweikamp
parents:
diff changeset
1144
heinrichsweikamp
parents:
diff changeset
1145
heinrichsweikamp
parents:
diff changeset
1146 //////////////////////////////////////////////////////////////////////////////
heinrichsweikamp
parents:
diff changeset
1147 // Compute stops.
heinrichsweikamp
parents:
diff changeset
1148 //
heinrichsweikamp
parents:
diff changeset
1149 // Note: because this can be very long, break on 16 iterations, and set state
heinrichsweikamp
parents:
diff changeset
1150 // to 0 when finished, or to 1 when needing to continue.
heinrichsweikamp
parents:
diff changeset
1151 // Note: because each iteration might be very long too (~ 66 ms in 1.84beta),
heinrichsweikamp
parents:
diff changeset
1152 // break the loop when total time > 512msec.
heinrichsweikamp
parents:
diff changeset
1153 //
heinrichsweikamp
parents:
diff changeset
1154 void calc_hauptroutine_calc_deco(void)
heinrichsweikamp
parents:
diff changeset
1155 {
heinrichsweikamp
parents:
diff changeset
1156 overlay unsigned char loop;
heinrichsweikamp
parents:
diff changeset
1157
34
d7e6dfd5b498 small cleanup
heinrichsweikamp
parents: 33
diff changeset
1158 for(loop = 0; loop < 16; ++loop)
0
heinrichsweikamp
parents:
diff changeset
1159 {
heinrichsweikamp
parents:
diff changeset
1160 // Limit loops to 512ms, using timer 5:
287
f342853afcd9 FIX gas_volumes: shall take stops in forward order.
jdg@air
parents: 284
diff changeset
1161 if( tmr5() & (512*32) )
f342853afcd9 FIX gas_volumes: shall take stops in forward order.
jdg@air
parents: 284
diff changeset
1162 break;
34
d7e6dfd5b498 small cleanup
heinrichsweikamp
parents: 33
diff changeset
1163
0
heinrichsweikamp
parents:
diff changeset
1164 if( calc_nextdecodepth() )
heinrichsweikamp
parents:
diff changeset
1165 {
heinrichsweikamp
parents:
diff changeset
1166 if( temp_depth_limit == 0 )
heinrichsweikamp
parents:
diff changeset
1167 goto Surface;
heinrichsweikamp
parents:
diff changeset
1168
heinrichsweikamp
parents:
diff changeset
1169 //---- We hit a stop at temp_depth_limit ---------------------
heinrichsweikamp
parents:
diff changeset
1170 temp_deco = temp_depth_limit * METER_TO_BAR // Convert to relative bar,
342
7812ec7ef694 Fix low_depth shall be stored as a float (no rounding).
jDG
parents: 324
diff changeset
1171 + pres_surface; // To absolute.
0
heinrichsweikamp
parents:
diff changeset
1172 if( !update_deco_table() ) // Adds a one minute stops.
heinrichsweikamp
parents:
diff changeset
1173 goto Surface; // Deco table full: abort...
heinrichsweikamp
parents:
diff changeset
1174 }
heinrichsweikamp
parents:
diff changeset
1175 else
heinrichsweikamp
parents:
diff changeset
1176 {
heinrichsweikamp
parents:
diff changeset
1177 //---- No stop -----------------------------------------------
heinrichsweikamp
parents:
diff changeset
1178 temp_deco -= (10*METER_TO_BAR); // Ascend 10m, no wait.
heinrichsweikamp
parents:
diff changeset
1179
heinrichsweikamp
parents:
diff changeset
1180 //---- Finish computations once surface is reached -----------
heinrichsweikamp
parents:
diff changeset
1181 if( temp_deco <= pres_surface )
heinrichsweikamp
parents:
diff changeset
1182 {
heinrichsweikamp
parents:
diff changeset
1183 Surface:
heinrichsweikamp
parents:
diff changeset
1184 if( char_O_deco_status == 1 ) // Don't in @+5min variant.
heinrichsweikamp
parents:
diff changeset
1185 copy_deco_table();
heinrichsweikamp
parents:
diff changeset
1186
heinrichsweikamp
parents:
diff changeset
1187 calc_ascenttime();
heinrichsweikamp
parents:
diff changeset
1188 char_O_deco_status = 0; // calc nullzeit next time.
heinrichsweikamp
parents:
diff changeset
1189 char_O_deco_last_stop = 0; // Surface reached (to animate menu)
351
de8c45fb2ab9 BUGFIX gas volume: do not forget deco gas with switch >= dive's bottom depth.
jdg@air
parents: 348
diff changeset
1190 return;
0
heinrichsweikamp
parents:
diff changeset
1191 }
heinrichsweikamp
parents:
diff changeset
1192 }
heinrichsweikamp
parents:
diff changeset
1193 //---- Then update tissue --------------------------------------------
heinrichsweikamp
parents:
diff changeset
1194 sim_dive_mins++; // Advance simulated time by 1 minute.
heinrichsweikamp
parents:
diff changeset
1195 gas_switch_set(); // Apply any simulated gas change, once validated.
heinrichsweikamp
parents:
diff changeset
1196 sim_alveolar_presures(); // Updates ppN2 and ppHe.
heinrichsweikamp
parents:
diff changeset
1197 sim_tissue(1); // Simulate compartiments for 1 minute.
heinrichsweikamp
parents:
diff changeset
1198 }
heinrichsweikamp
parents:
diff changeset
1199
heinrichsweikamp
parents:
diff changeset
1200 // Surface not reached, need more stops... for menu animation.
heinrichsweikamp
parents:
diff changeset
1201 char_O_deco_last_stop = temp_depth_limit; // Reached depth.
heinrichsweikamp
parents:
diff changeset
1202 }
heinrichsweikamp
parents:
diff changeset
1203
heinrichsweikamp
parents:
diff changeset
1204
heinrichsweikamp
parents:
diff changeset
1205 //////////////////////////////////////////////////////////////////////////////
heinrichsweikamp
parents:
diff changeset
1206 // Simulation ascention to first deco stop.
heinrichsweikamp
parents:
diff changeset
1207 //
heinrichsweikamp
parents:
diff changeset
1208 // Note: because we ascent with a constant speed (10m/mn, ie. 1bar/mn),
heinrichsweikamp
parents:
diff changeset
1209 // there is no need to break on more that 16 iterations
heinrichsweikamp
parents:
diff changeset
1210 // (or we are already in deep shit).
heinrichsweikamp
parents:
diff changeset
1211 //
heinrichsweikamp
parents:
diff changeset
1212 // Input: pres_respiration
heinrichsweikamp
parents:
diff changeset
1213 // Output: temp_deco
heinrichsweikamp
parents:
diff changeset
1214 //
heinrichsweikamp
parents:
diff changeset
1215 // if char_O_deco_status indicate @+5 variant, add extra time at current depth,
heinrichsweikamp
parents:
diff changeset
1216 // before ascent.
heinrichsweikamp
parents:
diff changeset
1217 void sim_ascent_to_first_stop(void)
heinrichsweikamp
parents:
diff changeset
1218 {
heinrichsweikamp
parents:
diff changeset
1219 overlay unsigned char fast = 1; // 1min or 2sec steps.
heinrichsweikamp
parents:
diff changeset
1220
heinrichsweikamp
parents:
diff changeset
1221 update_startvalues();
heinrichsweikamp
parents:
diff changeset
1222 clear_deco_table();
heinrichsweikamp
parents:
diff changeset
1223
heinrichsweikamp
parents:
diff changeset
1224 temp_deco = pres_respiration; // Starts from current real depth.
heinrichsweikamp
parents:
diff changeset
1225
heinrichsweikamp
parents:
diff changeset
1226 // Are we doing the special @+5min variation ?
heinrichsweikamp
parents:
diff changeset
1227 if(char_O_deco_status & 4)
heinrichsweikamp
parents:
diff changeset
1228 sim_extra_time();
heinrichsweikamp
parents:
diff changeset
1229
heinrichsweikamp
parents:
diff changeset
1230 //---- Loop until first stop, gas switch, or surface is reached ----------
heinrichsweikamp
parents:
diff changeset
1231 for(;;)
heinrichsweikamp
parents:
diff changeset
1232 {
heinrichsweikamp
parents:
diff changeset
1233 overlay float old_deco = temp_deco; // Pamb backup (bars)
heinrichsweikamp
parents:
diff changeset
1234
heinrichsweikamp
parents:
diff changeset
1235 // Try ascending 1 full minute (fast) or 2sec (!fast):
heinrichsweikamp
parents:
diff changeset
1236 if( fast )
heinrichsweikamp
parents:
diff changeset
1237 temp_deco -= 10*METER_TO_BAR; // 1 min, at 10m/min. ~ 1bar.
heinrichsweikamp
parents:
diff changeset
1238 else
heinrichsweikamp
parents:
diff changeset
1239 temp_deco -= (10.0/30.0)*METER_TO_BAR; // 2sec at 10m/min.
heinrichsweikamp
parents:
diff changeset
1240
heinrichsweikamp
parents:
diff changeset
1241 if( temp_deco < pres_surface ) // But don't go over surface.
heinrichsweikamp
parents:
diff changeset
1242 temp_deco = pres_surface;
heinrichsweikamp
parents:
diff changeset
1243
heinrichsweikamp
parents:
diff changeset
1244 // Recompute sim_lead_tissue_limit at GF_low (deepest stop), because
heinrichsweikamp
parents:
diff changeset
1245 // one minute passed.
heinrichsweikamp
parents:
diff changeset
1246 sim_limit(GF_low);
heinrichsweikamp
parents:
diff changeset
1247
heinrichsweikamp
parents:
diff changeset
1248 // Did we reach deepest remaining stop ?
heinrichsweikamp
parents:
diff changeset
1249 if( temp_deco < sim_lead_tissue_limit )
heinrichsweikamp
parents:
diff changeset
1250 {
heinrichsweikamp
parents:
diff changeset
1251 temp_deco = old_deco; // Restore last correct depth,
heinrichsweikamp
parents:
diff changeset
1252
heinrichsweikamp
parents:
diff changeset
1253 if( fast )
heinrichsweikamp
parents:
diff changeset
1254 {
heinrichsweikamp
parents:
diff changeset
1255 fast = 0; // Retry with 2sec steps.
heinrichsweikamp
parents:
diff changeset
1256 continue;
heinrichsweikamp
parents:
diff changeset
1257 }
heinrichsweikamp
parents:
diff changeset
1258 else
heinrichsweikamp
parents:
diff changeset
1259 break; // Done...
heinrichsweikamp
parents:
diff changeset
1260 }
heinrichsweikamp
parents:
diff changeset
1261
heinrichsweikamp
parents:
diff changeset
1262 // Did we reach surface ?
heinrichsweikamp
parents:
diff changeset
1263 // NOTE: we should round BEFORE checking surface is reached.
heinrichsweikamp
parents:
diff changeset
1264 temp_depth_limit = (unsigned char)(0.5 + (temp_deco - pres_surface) * BAR_TO_METER);
heinrichsweikamp
parents:
diff changeset
1265 if( temp_depth_limit == 0 )
heinrichsweikamp
parents:
diff changeset
1266 {
heinrichsweikamp
parents:
diff changeset
1267 temp_deco = pres_surface; // Yes: finished !
heinrichsweikamp
parents:
diff changeset
1268 break;
heinrichsweikamp
parents:
diff changeset
1269 }
heinrichsweikamp
parents:
diff changeset
1270
heinrichsweikamp
parents:
diff changeset
1271 // Check for gas change below new depth ?
heinrichsweikamp
parents:
diff changeset
1272 if( gas_switch_deepest() )
heinrichsweikamp
parents:
diff changeset
1273 {
heinrichsweikamp
parents:
diff changeset
1274 assert( temp_depth_limit > 0);
heinrichsweikamp
parents:
diff changeset
1275
heinrichsweikamp
parents:
diff changeset
1276 temp_deco = temp_depth_limit * METER_TO_BAR + pres_surface;
heinrichsweikamp
parents:
diff changeset
1277 break;
heinrichsweikamp
parents:
diff changeset
1278 }
heinrichsweikamp
parents:
diff changeset
1279
heinrichsweikamp
parents:
diff changeset
1280 if( fast )
heinrichsweikamp
parents:
diff changeset
1281 sim_dive_mins++; // Advance simulated time by 1 minute.
heinrichsweikamp
parents:
diff changeset
1282 sim_alveolar_presures(); // temp_deco --> ppN2/ppHe
heinrichsweikamp
parents:
diff changeset
1283 sim_tissue(fast); // and update tissues for 1 min.
heinrichsweikamp
parents:
diff changeset
1284 }
heinrichsweikamp
parents:
diff changeset
1285 }
heinrichsweikamp
parents:
diff changeset
1286
heinrichsweikamp
parents:
diff changeset
1287 //////////////////////////////////////////////////////////////////////////////
heinrichsweikamp
parents:
diff changeset
1288 // Simulation extra time at the current depth.
heinrichsweikamp
parents:
diff changeset
1289 //
heinrichsweikamp
parents:
diff changeset
1290 // This routine is used for @+5min feature.
heinrichsweikamp
parents:
diff changeset
1291 void sim_extra_time(void)
heinrichsweikamp
parents:
diff changeset
1292 {
heinrichsweikamp
parents:
diff changeset
1293 overlay unsigned char extra = char_I_extra_time;
heinrichsweikamp
parents:
diff changeset
1294 do {
heinrichsweikamp
parents:
diff changeset
1295 sim_dive_mins++; // Advance simulated time by 1 minute.
heinrichsweikamp
parents:
diff changeset
1296 sim_tissue(1); // and update tissues for 1 min.
heinrichsweikamp
parents:
diff changeset
1297 } while( --extra != 0 );
heinrichsweikamp
parents:
diff changeset
1298 }
heinrichsweikamp
parents:
diff changeset
1299
heinrichsweikamp
parents:
diff changeset
1300 //////////////////////////////////////////////////////////////////////////////
heinrichsweikamp
parents:
diff changeset
1301 // calc_tissue
heinrichsweikamp
parents:
diff changeset
1302 //
heinrichsweikamp
parents:
diff changeset
1303 // optimized in v.101
heinrichsweikamp
parents:
diff changeset
1304 //
heinrichsweikamp
parents:
diff changeset
1305 static void calc_tissue(PARAMETER unsigned char period)
heinrichsweikamp
parents:
diff changeset
1306 {
heinrichsweikamp
parents:
diff changeset
1307 assert( 0.00 <= ppN2 && ppN2 < 11.2 ); // 80% N2 at 130m
heinrichsweikamp
parents:
diff changeset
1308 assert( 0.00 <= ppHe && ppHe < 12.6 ); // 90% He at 130m
heinrichsweikamp
parents:
diff changeset
1309
heinrichsweikamp
parents:
diff changeset
1310 for (ci=0;ci<NUM_COMP;ci++)
heinrichsweikamp
parents:
diff changeset
1311 {
heinrichsweikamp
parents:
diff changeset
1312 read_buhlmann_times(period); // 2 sec or 1 min period.
heinrichsweikamp
parents:
diff changeset
1313
heinrichsweikamp
parents:
diff changeset
1314 // N2
heinrichsweikamp
parents:
diff changeset
1315 temp_tissue = (ppN2 - pres_tissue_N2[ci]) * var_N2_e;
heinrichsweikamp
parents:
diff changeset
1316 temp_tissue_safety();
heinrichsweikamp
parents:
diff changeset
1317 pres_tissue_N2[ci] += temp_tissue;
heinrichsweikamp
parents:
diff changeset
1318
heinrichsweikamp
parents:
diff changeset
1319 // He
heinrichsweikamp
parents:
diff changeset
1320 temp_tissue = (ppHe - pres_tissue_He[ci]) * var_He_e;
heinrichsweikamp
parents:
diff changeset
1321 temp_tissue_safety();
heinrichsweikamp
parents:
diff changeset
1322 pres_tissue_He[ci] += temp_tissue;
heinrichsweikamp
parents:
diff changeset
1323 }
heinrichsweikamp
parents:
diff changeset
1324 }
heinrichsweikamp
parents:
diff changeset
1325
heinrichsweikamp
parents:
diff changeset
1326 //////////////////////////////////////////////////////////////////////////////
heinrichsweikamp
parents:
diff changeset
1327 // calc_limit
heinrichsweikamp
parents:
diff changeset
1328 //
heinrichsweikamp
parents:
diff changeset
1329 // New in v.111 : separated from calc_tissue(), and depends on GF value.
heinrichsweikamp
parents:
diff changeset
1330 //
heinrichsweikamp
parents:
diff changeset
1331 static void calc_limit(void)
heinrichsweikamp
parents:
diff changeset
1332 {
heinrichsweikamp
parents:
diff changeset
1333 char_O_gtissue_no = 255;
heinrichsweikamp
parents:
diff changeset
1334 calc_lead_tissue_limit = 0.0;
heinrichsweikamp
parents:
diff changeset
1335
heinrichsweikamp
parents:
diff changeset
1336 for(ci=0; ci<NUM_COMP;ci++)
heinrichsweikamp
parents:
diff changeset
1337 {
heinrichsweikamp
parents:
diff changeset
1338 overlay float N2 = pres_tissue_N2[ci];
heinrichsweikamp
parents:
diff changeset
1339 overlay float He = pres_tissue_He[ci];
heinrichsweikamp
parents:
diff changeset
1340 overlay float p = N2 + He;
heinrichsweikamp
parents:
diff changeset
1341
heinrichsweikamp
parents:
diff changeset
1342 read_buhlmann_coefficients();
heinrichsweikamp
parents:
diff changeset
1343 var_N2_a = (var_N2_a * N2 + var_He_a * He) / p;
heinrichsweikamp
parents:
diff changeset
1344 var_N2_b = (var_N2_b * N2 + var_He_b * He) / p;
heinrichsweikamp
parents:
diff changeset
1345
heinrichsweikamp
parents:
diff changeset
1346 // Apply the Eric Baker's varying gradient factor correction.
heinrichsweikamp
parents:
diff changeset
1347 // Note: the correction factor depends both on GF and b,
heinrichsweikamp
parents:
diff changeset
1348 // Actual values are in the 1.5 .. 1.0 range (for a GF=30%),
heinrichsweikamp
parents:
diff changeset
1349 // so that can change who is the leading gas...
heinrichsweikamp
parents:
diff changeset
1350 // Note: Also depends of the GF. So the calcul is different for
heinrichsweikamp
parents:
diff changeset
1351 // GF_low, current GF, or GF_high...
heinrichsweikamp
parents:
diff changeset
1352 // *BUT* calc_tissue() is used to compute bottom time,
heinrichsweikamp
parents:
diff changeset
1353 // hence what would happend at surface,
heinrichsweikamp
parents:
diff changeset
1354 // hence at GF_high.
heinrichsweikamp
parents:
diff changeset
1355 if( char_I_deco_model != 0 )
heinrichsweikamp
parents:
diff changeset
1356 p = ( p - var_N2_a * GF_high) * var_N2_b
heinrichsweikamp
parents:
diff changeset
1357 / (GF_high + var_N2_b * (1.0 - GF_high));
heinrichsweikamp
parents:
diff changeset
1358 else
heinrichsweikamp
parents:
diff changeset
1359 p = (p - var_N2_a) * var_N2_b;
heinrichsweikamp
parents:
diff changeset
1360 if( p < 0.0 ) p = 0.0;
heinrichsweikamp
parents:
diff changeset
1361
heinrichsweikamp
parents:
diff changeset
1362 if( p > calc_lead_tissue_limit )
heinrichsweikamp
parents:
diff changeset
1363 {
heinrichsweikamp
parents:
diff changeset
1364 char_O_gtissue_no = ci;
heinrichsweikamp
parents:
diff changeset
1365 calc_lead_tissue_limit = p;
heinrichsweikamp
parents:
diff changeset
1366 }
heinrichsweikamp
parents:
diff changeset
1367 }
heinrichsweikamp
parents:
diff changeset
1368
heinrichsweikamp
parents:
diff changeset
1369 assert( char_O_gtissue_no < NUM_COMP );
heinrichsweikamp
parents:
diff changeset
1370 assert( 0.0 <= calc_lead_tissue_limit && calc_lead_tissue_limit <= 14.0);
heinrichsweikamp
parents:
diff changeset
1371 }
heinrichsweikamp
parents:
diff changeset
1372
heinrichsweikamp
parents:
diff changeset
1373 //////////////////////////////////////////////////////////////////////////////
heinrichsweikamp
parents:
diff changeset
1374 // calc_nullzeit
heinrichsweikamp
parents:
diff changeset
1375 //
heinrichsweikamp
parents:
diff changeset
1376 // calculates the remaining bottom time
heinrichsweikamp
parents:
diff changeset
1377 //
heinrichsweikamp
parents:
diff changeset
1378 // NOTE: Erik Baker's closed formula works for Nitroxes. Trimix adds a second
heinrichsweikamp
parents:
diff changeset
1379 // exponential term to the M-value equation, making it impossible to
heinrichsweikamp
parents:
diff changeset
1380 // invert... So we have to make a fast-simu until we find a better way.
heinrichsweikamp
parents:
diff changeset
1381 //
heinrichsweikamp
parents:
diff changeset
1382 // Input: pres_respiration
heinrichsweikamp
parents:
diff changeset
1383 // Output: char_O_nullzeit
heinrichsweikamp
parents:
diff changeset
1384 //
heinrichsweikamp
parents:
diff changeset
1385 static void calc_nullzeit(void)
heinrichsweikamp
parents:
diff changeset
1386 {
heinrichsweikamp
parents:
diff changeset
1387 //---- Compute ppN2 and ppHe ---------------------------------------------
heinrichsweikamp
parents:
diff changeset
1388 temp_deco = pres_respiration;
heinrichsweikamp
parents:
diff changeset
1389 sim_alveolar_presures();
heinrichsweikamp
parents:
diff changeset
1390
heinrichsweikamp
parents:
diff changeset
1391 char_O_nullzeit = 240;
heinrichsweikamp
parents:
diff changeset
1392 for(ci=0; ci<NUM_COMP; ci++)
heinrichsweikamp
parents:
diff changeset
1393 {
heinrichsweikamp
parents:
diff changeset
1394 //---- Read A/B values and loading factor for N2 and He --------------
heinrichsweikamp
parents:
diff changeset
1395 overlay float tN2 = pres_tissue_N2[ci];
heinrichsweikamp
parents:
diff changeset
1396 overlay float tHe = pres_tissue_He[ci];
heinrichsweikamp
parents:
diff changeset
1397 overlay float t = tN2 + tHe;
heinrichsweikamp
parents:
diff changeset
1398 overlay unsigned char ndl;
heinrichsweikamp
parents:
diff changeset
1399 overlay unsigned char period = 10;
heinrichsweikamp
parents:
diff changeset
1400
heinrichsweikamp
parents:
diff changeset
1401 read_buhlmann_coefficients();
heinrichsweikamp
parents:
diff changeset
1402 read_buhlmann_times(2); // Starts with a 10min period.
heinrichsweikamp
parents:
diff changeset
1403
heinrichsweikamp
parents:
diff changeset
1404 //---- Simulate for that tissue --------------------------------------
heinrichsweikamp
parents:
diff changeset
1405 // NOTE: No need to simulate for longuer than the already found NDL.
heinrichsweikamp
parents:
diff changeset
1406 for(ndl=0; ndl<char_O_nullzeit;)
heinrichsweikamp
parents:
diff changeset
1407 {
heinrichsweikamp
parents:
diff changeset
1408 //---- Compute updated mix M-value at surface
heinrichsweikamp
parents:
diff changeset
1409 overlay float a = (var_N2_a * tN2 + var_He_a * tHe) / t;
heinrichsweikamp
parents:
diff changeset
1410 overlay float b = (var_N2_b * tN2 + var_He_b * tHe) / t;
heinrichsweikamp
parents:
diff changeset
1411 overlay float M0 = (a + pres_surface/b);
heinrichsweikamp
parents:
diff changeset
1412
heinrichsweikamp
parents:
diff changeset
1413 //---- Add 10min/1min to N2/He tissues
heinrichsweikamp
parents:
diff changeset
1414 overlay float dTN2 = (ppN2 - tN2) * var_N2_e;
heinrichsweikamp
parents:
diff changeset
1415 overlay float dTHe = (ppHe - tHe) * var_He_e;
heinrichsweikamp
parents:
diff changeset
1416
heinrichsweikamp
parents:
diff changeset
1417 //---- Apply security margin when using the non-GF model
heinrichsweikamp
parents:
diff changeset
1418 if( char_I_deco_model == 0 )
heinrichsweikamp
parents:
diff changeset
1419 {
324
0e9dcdcf03c1 FIX NDL prediction error with Buhlmann model: might be desaturating too fast.
jdg@air
parents: 323
diff changeset
1420 // NDL can be computed while ascending... SO we have
0e9dcdcf03c1 FIX NDL prediction error with Buhlmann model: might be desaturating too fast.
jdg@air
parents: 323
diff changeset
1421 // to check wether we are saturating or desaturating.
0e9dcdcf03c1 FIX NDL prediction error with Buhlmann model: might be desaturating too fast.
jdg@air
parents: 323
diff changeset
1422 if( dTN2 > 0.0 ) dTN2 *= float_saturation_multiplier;
0e9dcdcf03c1 FIX NDL prediction error with Buhlmann model: might be desaturating too fast.
jdg@air
parents: 323
diff changeset
1423 else dTN2 *= float_desaturation_multiplier;
0e9dcdcf03c1 FIX NDL prediction error with Buhlmann model: might be desaturating too fast.
jdg@air
parents: 323
diff changeset
1424
0e9dcdcf03c1 FIX NDL prediction error with Buhlmann model: might be desaturating too fast.
jdg@air
parents: 323
diff changeset
1425 if( dTHe > 0.0 ) dTHe *= float_saturation_multiplier;
0e9dcdcf03c1 FIX NDL prediction error with Buhlmann model: might be desaturating too fast.
jdg@air
parents: 323
diff changeset
1426 else dTHe *= float_saturation_multiplier;
0
heinrichsweikamp
parents:
diff changeset
1427 }
heinrichsweikamp
parents:
diff changeset
1428 else // Or GF-based model
heinrichsweikamp
parents:
diff changeset
1429 M0 = GF_high * (M0 - pres_surface) + pres_surface;
heinrichsweikamp
parents:
diff changeset
1430
heinrichsweikamp
parents:
diff changeset
1431 //---- Simulate off-gasing while going to surface
heinrichsweikamp
parents:
diff changeset
1432 // TODO !
heinrichsweikamp
parents:
diff changeset
1433 // dTN2 -= exp( ... ascent time ... ppN2...)
heinrichsweikamp
parents:
diff changeset
1434 // dTHe -= exp( ... ascent time ... ppHe...)
heinrichsweikamp
parents:
diff changeset
1435
heinrichsweikamp
parents:
diff changeset
1436 //---- Ok now, and still ok to surface after 1 or 10 minutes ?
heinrichsweikamp
parents:
diff changeset
1437 if( (t <= M0) && (t + dTN2 + dTHe <= M0) )
heinrichsweikamp
parents:
diff changeset
1438 {
heinrichsweikamp
parents:
diff changeset
1439 tN2 += dTN2; // YES: apply gas loadings,
heinrichsweikamp
parents:
diff changeset
1440 tHe += dTHe;
heinrichsweikamp
parents:
diff changeset
1441 t = tN2 + tHe;
heinrichsweikamp
parents:
diff changeset
1442 ndl += period; // increment NDL,
heinrichsweikamp
parents:
diff changeset
1443 continue; // and loop.
heinrichsweikamp
parents:
diff changeset
1444 }
heinrichsweikamp
parents:
diff changeset
1445
heinrichsweikamp
parents:
diff changeset
1446 //---- Should we retry with smaller steps ?
heinrichsweikamp
parents:
diff changeset
1447 if( period == 10 )
heinrichsweikamp
parents:
diff changeset
1448 {
heinrichsweikamp
parents:
diff changeset
1449 read_buhlmann_times(1); // 1min coefs.
heinrichsweikamp
parents:
diff changeset
1450 period = 1;
heinrichsweikamp
parents:
diff changeset
1451 continue;
heinrichsweikamp
parents:
diff changeset
1452 }
heinrichsweikamp
parents:
diff changeset
1453
heinrichsweikamp
parents:
diff changeset
1454 //---- ELSE make a linear approx for the last minute
heinrichsweikamp
parents:
diff changeset
1455 // Usefull to have a meaningfull rounding of NDL.
heinrichsweikamp
parents:
diff changeset
1456 // But ONLY it positive (negativ casted to unsigned is bad).
heinrichsweikamp
parents:
diff changeset
1457 if( M0 > t )
heinrichsweikamp
parents:
diff changeset
1458 ndl += (unsigned char)(0.5f + (M0-t)/(dTN2+dTHe));
heinrichsweikamp
parents:
diff changeset
1459 break;
heinrichsweikamp
parents:
diff changeset
1460 }
heinrichsweikamp
parents:
diff changeset
1461
heinrichsweikamp
parents:
diff changeset
1462 // Keep the shortest NDL found
heinrichsweikamp
parents:
diff changeset
1463 if( ndl < char_O_nullzeit )
heinrichsweikamp
parents:
diff changeset
1464 char_O_nullzeit = ndl;
heinrichsweikamp
parents:
diff changeset
1465 }
heinrichsweikamp
parents:
diff changeset
1466 }
heinrichsweikamp
parents:
diff changeset
1467
heinrichsweikamp
parents:
diff changeset
1468 //////////////////////////////////////////////////////////////////////////////
heinrichsweikamp
parents:
diff changeset
1469 // calc_ascenttime
heinrichsweikamp
parents:
diff changeset
1470 //
heinrichsweikamp
parents:
diff changeset
1471 // Summup ascent from bottom to surface, at 1 bar/min, 1min for last 3 meters,
heinrichsweikamp
parents:
diff changeset
1472 // and all stops.
heinrichsweikamp
parents:
diff changeset
1473 //
heinrichsweikamp
parents:
diff changeset
1474 // Result in int_O_ascenttime, or int_O_extra_ascenttime if in @+5min variant.
heinrichsweikamp
parents:
diff changeset
1475 static void calc_ascenttime(void)
heinrichsweikamp
parents:
diff changeset
1476 {
heinrichsweikamp
parents:
diff changeset
1477 overlay unsigned char x;
heinrichsweikamp
parents:
diff changeset
1478 overlay unsigned short sum;
heinrichsweikamp
parents:
diff changeset
1479
heinrichsweikamp
parents:
diff changeset
1480 // + 0.7 to count 1 minute ascent time from 3 metre to surface
heinrichsweikamp
parents:
diff changeset
1481 overlay float ascent = pres_respiration - pres_surface + 0.7;
heinrichsweikamp
parents:
diff changeset
1482 if (ascent < 0.0)
heinrichsweikamp
parents:
diff changeset
1483 ascent = 0.0;
heinrichsweikamp
parents:
diff changeset
1484 sum = (unsigned short)(ascent + 0.99);
heinrichsweikamp
parents:
diff changeset
1485
heinrichsweikamp
parents:
diff changeset
1486 for(x=0; x<NUM_STOPS && internal_deco_depth[x]; x++)
heinrichsweikamp
parents:
diff changeset
1487 sum += (unsigned short)internal_deco_time[x];
heinrichsweikamp
parents:
diff changeset
1488
heinrichsweikamp
parents:
diff changeset
1489 if( char_O_deco_status == 1 )
heinrichsweikamp
parents:
diff changeset
1490 int_O_ascenttime = sum;
heinrichsweikamp
parents:
diff changeset
1491 else
heinrichsweikamp
parents:
diff changeset
1492 int_O_extra_ascenttime = sum;
heinrichsweikamp
parents:
diff changeset
1493
heinrichsweikamp
parents:
diff changeset
1494 }
heinrichsweikamp
parents:
diff changeset
1495
heinrichsweikamp
parents:
diff changeset
1496 //////////////////////////////////////////////////////////////////////////////
heinrichsweikamp
parents:
diff changeset
1497 // update_startvalues
heinrichsweikamp
parents:
diff changeset
1498 //
heinrichsweikamp
parents:
diff changeset
1499 // updated in v.102
heinrichsweikamp
parents:
diff changeset
1500 //
heinrichsweikamp
parents:
diff changeset
1501 void update_startvalues(void)
heinrichsweikamp
parents:
diff changeset
1502 {
heinrichsweikamp
parents:
diff changeset
1503 overlay unsigned char x;
heinrichsweikamp
parents:
diff changeset
1504
heinrichsweikamp
parents:
diff changeset
1505 // Start ascent simulation with current tissue partial pressures.
heinrichsweikamp
parents:
diff changeset
1506 for(x=0; x<NUM_COMP; x++)
heinrichsweikamp
parents:
diff changeset
1507 {
heinrichsweikamp
parents:
diff changeset
1508 sim_pres_tissue_N2[x] = pres_tissue_N2[x];
heinrichsweikamp
parents:
diff changeset
1509 sim_pres_tissue_He[x] = pres_tissue_He[x];
heinrichsweikamp
parents:
diff changeset
1510 }
heinrichsweikamp
parents:
diff changeset
1511
heinrichsweikamp
parents:
diff changeset
1512 // No leading tissue (yet) for this ascent simulation.
heinrichsweikamp
parents:
diff changeset
1513 sim_lead_tissue_limit = 0.0;
heinrichsweikamp
parents:
diff changeset
1514 sim_lead_tissue_no = 255;
heinrichsweikamp
parents:
diff changeset
1515 }
heinrichsweikamp
parents:
diff changeset
1516
heinrichsweikamp
parents:
diff changeset
1517 //////////////////////////////////////////////////////////////////////////////
heinrichsweikamp
parents:
diff changeset
1518 // sim_tissue
heinrichsweikamp
parents:
diff changeset
1519 //
heinrichsweikamp
parents:
diff changeset
1520 // optimized in v.101
heinrichsweikamp
parents:
diff changeset
1521 //
heinrichsweikamp
parents:
diff changeset
1522 // Function very simular to calc_tissue, but:
heinrichsweikamp
parents:
diff changeset
1523 // + Use a 1min or 10min period.
heinrichsweikamp
parents:
diff changeset
1524 // + Do it on sim_pres_tissue, instead of pres_tissue.
heinrichsweikamp
parents:
diff changeset
1525 static void sim_tissue(PARAMETER unsigned char period)
heinrichsweikamp
parents:
diff changeset
1526 {
heinrichsweikamp
parents:
diff changeset
1527 assert( 0.00 <= ppN2 && ppN2 < 11.2 ); // 80% N2 at 130m
heinrichsweikamp
parents:
diff changeset
1528 assert( 0.00 <= ppHe && ppHe < 12.6 ); // 90% He at 130m
heinrichsweikamp
parents:
diff changeset
1529
heinrichsweikamp
parents:
diff changeset
1530 for(ci=0; ci<NUM_COMP; ci++)
heinrichsweikamp
parents:
diff changeset
1531 {
heinrichsweikamp
parents:
diff changeset
1532 read_buhlmann_times(period); // 1 or 10 minute(s) interval
heinrichsweikamp
parents:
diff changeset
1533
heinrichsweikamp
parents:
diff changeset
1534 // N2
heinrichsweikamp
parents:
diff changeset
1535 temp_tissue = (ppN2 - sim_pres_tissue_N2[ci]) * var_N2_e;
heinrichsweikamp
parents:
diff changeset
1536 temp_tissue_safety();
heinrichsweikamp
parents:
diff changeset
1537 sim_pres_tissue_N2[ci] += temp_tissue;
heinrichsweikamp
parents:
diff changeset
1538
heinrichsweikamp
parents:
diff changeset
1539 // He
heinrichsweikamp
parents:
diff changeset
1540 temp_tissue = (ppHe - sim_pres_tissue_He[ci]) * var_He_e;
heinrichsweikamp
parents:
diff changeset
1541 temp_tissue_safety();
heinrichsweikamp
parents:
diff changeset
1542 sim_pres_tissue_He[ci] += temp_tissue;
heinrichsweikamp
parents:
diff changeset
1543 }
heinrichsweikamp
parents:
diff changeset
1544 }
heinrichsweikamp
parents:
diff changeset
1545
heinrichsweikamp
parents:
diff changeset
1546 //////////////////////////////////////////////////////////////////////////////
heinrichsweikamp
parents:
diff changeset
1547 // sim_limit()
heinrichsweikamp
parents:
diff changeset
1548 //
heinrichsweikamp
parents:
diff changeset
1549 // New in v.111
heinrichsweikamp
parents:
diff changeset
1550 //
heinrichsweikamp
parents:
diff changeset
1551 // Function separated from sim_tissue() to allow recomputing limit on
heinrichsweikamp
parents:
diff changeset
1552 // different depth, because it depends on current gradient factor.
heinrichsweikamp
parents:
diff changeset
1553 //
heinrichsweikamp
parents:
diff changeset
1554 static void sim_limit(PARAMETER float GF_current)
heinrichsweikamp
parents:
diff changeset
1555 {
heinrichsweikamp
parents:
diff changeset
1556 assert( 0.0 < GF_current && GF_current <= 1.0f);
heinrichsweikamp
parents:
diff changeset
1557
heinrichsweikamp
parents:
diff changeset
1558 sim_lead_tissue_limit = 0.0;
heinrichsweikamp
parents:
diff changeset
1559 sim_lead_tissue_no = 0; // If no one is critic, keep first tissue.
heinrichsweikamp
parents:
diff changeset
1560
heinrichsweikamp
parents:
diff changeset
1561 for(ci=0; ci<NUM_COMP; ci++)
heinrichsweikamp
parents:
diff changeset
1562 {
heinrichsweikamp
parents:
diff changeset
1563 overlay float N2 = sim_pres_tissue_N2[ci];
heinrichsweikamp
parents:
diff changeset
1564 overlay float He = sim_pres_tissue_He[ci];
heinrichsweikamp
parents:
diff changeset
1565 overlay float p = N2 + He;
heinrichsweikamp
parents:
diff changeset
1566
heinrichsweikamp
parents:
diff changeset
1567 read_buhlmann_coefficients();
heinrichsweikamp
parents:
diff changeset
1568 var_N2_a = (var_N2_a * N2 + var_He_a * He) / p;
heinrichsweikamp
parents:
diff changeset
1569 var_N2_b = (var_N2_b * N2 + var_He_b * He) / p;
heinrichsweikamp
parents:
diff changeset
1570
heinrichsweikamp
parents:
diff changeset
1571 // Apply the Eric Baker's varying gradient factor correction.
heinrichsweikamp
parents:
diff changeset
1572 // Note: the correction factor depends both on GF and b,
heinrichsweikamp
parents:
diff changeset
1573 // Actual values are in the 1.5 .. 1.0 range (for a GF=30%),
heinrichsweikamp
parents:
diff changeset
1574 // so that can change who is the leading gas...
heinrichsweikamp
parents:
diff changeset
1575 // Note: Also depends of the GF_current...
heinrichsweikamp
parents:
diff changeset
1576 if( char_I_deco_model != 0 )
heinrichsweikamp
parents:
diff changeset
1577 p = ( p - var_N2_a * GF_current)
heinrichsweikamp
parents:
diff changeset
1578 / (GF_current / var_N2_b + 1.0 - GF_current);
heinrichsweikamp
parents:
diff changeset
1579 else
heinrichsweikamp
parents:
diff changeset
1580 p = (p - var_N2_a) * var_N2_b;
heinrichsweikamp
parents:
diff changeset
1581
heinrichsweikamp
parents:
diff changeset
1582 if( p > sim_lead_tissue_limit )
heinrichsweikamp
parents:
diff changeset
1583 {
heinrichsweikamp
parents:
diff changeset
1584 sim_lead_tissue_no = ci;
heinrichsweikamp
parents:
diff changeset
1585 sim_lead_tissue_limit = p;
heinrichsweikamp
parents:
diff changeset
1586 }
heinrichsweikamp
parents:
diff changeset
1587 } // for ci
heinrichsweikamp
parents:
diff changeset
1588
heinrichsweikamp
parents:
diff changeset
1589 assert( sim_lead_tissue_no < NUM_COMP );
heinrichsweikamp
parents:
diff changeset
1590 assert( 0.0 <= sim_lead_tissue_limit && sim_lead_tissue_limit <= 14.0 );
heinrichsweikamp
parents:
diff changeset
1591 }
heinrichsweikamp
parents:
diff changeset
1592
heinrichsweikamp
parents:
diff changeset
1593 //////////////////////////////////////////////////////////////////////////////
heinrichsweikamp
parents:
diff changeset
1594 // clear_deco_table
heinrichsweikamp
parents:
diff changeset
1595 //
heinrichsweikamp
parents:
diff changeset
1596 // unchanged in v.101
heinrichsweikamp
parents:
diff changeset
1597 //
heinrichsweikamp
parents:
diff changeset
1598 static void clear_deco_table(void)
heinrichsweikamp
parents:
diff changeset
1599 {
heinrichsweikamp
parents:
diff changeset
1600 overlay unsigned char x;
heinrichsweikamp
parents:
diff changeset
1601
heinrichsweikamp
parents:
diff changeset
1602 for(x=0; x<NUM_STOPS; ++x)
heinrichsweikamp
parents:
diff changeset
1603 {
heinrichsweikamp
parents:
diff changeset
1604 internal_deco_time [x] = 0;
heinrichsweikamp
parents:
diff changeset
1605 internal_deco_depth[x] = 0;
heinrichsweikamp
parents:
diff changeset
1606 }
heinrichsweikamp
parents:
diff changeset
1607 }
heinrichsweikamp
parents:
diff changeset
1608
heinrichsweikamp
parents:
diff changeset
1609 //////////////////////////////////////////////////////////////////////////////
heinrichsweikamp
parents:
diff changeset
1610 // update_deco_table
heinrichsweikamp
parents:
diff changeset
1611 //
heinrichsweikamp
parents:
diff changeset
1612 // Add 1 min to current stop.
heinrichsweikamp
parents:
diff changeset
1613 //
heinrichsweikamp
parents:
diff changeset
1614 // Inputs:
heinrichsweikamp
parents:
diff changeset
1615 // temp_depth_limit = stop's depth, in meters.
heinrichsweikamp
parents:
diff changeset
1616 // In/Out:
heinrichsweikamp
parents:
diff changeset
1617 // internal_deco_depth[] : depth (in metres) of each stops.
heinrichsweikamp
parents:
diff changeset
1618 // internal_deco_time [] : time (in minutes) of each stops.
heinrichsweikamp
parents:
diff changeset
1619 //
heinrichsweikamp
parents:
diff changeset
1620 static unsigned char update_deco_table()
heinrichsweikamp
parents:
diff changeset
1621 {
heinrichsweikamp
parents:
diff changeset
1622 overlay unsigned char x;
heinrichsweikamp
parents:
diff changeset
1623 assert( temp_depth_limit < 128 ); // Can't be negativ (overflown).
heinrichsweikamp
parents:
diff changeset
1624 assert( temp_depth_limit > 0 ); // No stop at surface...
heinrichsweikamp
parents:
diff changeset
1625
heinrichsweikamp
parents:
diff changeset
1626 for(x=0; x<NUM_STOPS; ++x)
heinrichsweikamp
parents:
diff changeset
1627 {
heinrichsweikamp
parents:
diff changeset
1628 // Make sure deco-stops are recorded in order:
111
c61b7a4e317c Bugfix: CNS in planner
heinrichsweikamp
parents: 34
diff changeset
1629 assert( !internal_deco_depth[x] || temp_depth_limit <= internal_deco_depth[x] );
0
heinrichsweikamp
parents:
diff changeset
1630
111
c61b7a4e317c Bugfix: CNS in planner
heinrichsweikamp
parents: 34
diff changeset
1631 if( internal_deco_depth[x]== temp_depth_limit )
0
heinrichsweikamp
parents:
diff changeset
1632 {
heinrichsweikamp
parents:
diff changeset
1633 // Do not overflow (max 255')
heinrichsweikamp
parents:
diff changeset
1634 if( internal_deco_time[x] < 255 )
heinrichsweikamp
parents:
diff changeset
1635 {
heinrichsweikamp
parents:
diff changeset
1636 internal_deco_time[x]++;
heinrichsweikamp
parents:
diff changeset
1637 return 1;
heinrichsweikamp
parents:
diff changeset
1638 }
heinrichsweikamp
parents:
diff changeset
1639 // But store extra in the next stop...
heinrichsweikamp
parents:
diff changeset
1640 }
heinrichsweikamp
parents:
diff changeset
1641
heinrichsweikamp
parents:
diff changeset
1642 if( internal_deco_depth[x] == 0 )
heinrichsweikamp
parents:
diff changeset
1643 {
heinrichsweikamp
parents:
diff changeset
1644 internal_deco_depth[x] = temp_depth_limit;
heinrichsweikamp
parents:
diff changeset
1645
heinrichsweikamp
parents:
diff changeset
1646 internal_deco_time[x] = 1;
111
c61b7a4e317c Bugfix: CNS in planner
heinrichsweikamp
parents: 34
diff changeset
1647 internal_deco_gas[x] = sim_gas_last_used;
0
heinrichsweikamp
parents:
diff changeset
1648 return 1;
heinrichsweikamp
parents:
diff changeset
1649 }
heinrichsweikamp
parents:
diff changeset
1650 }
heinrichsweikamp
parents:
diff changeset
1651
heinrichsweikamp
parents:
diff changeset
1652 // Can't store stops at more than 96m.
heinrichsweikamp
parents:
diff changeset
1653 // Or stops at less that 3m too.
heinrichsweikamp
parents:
diff changeset
1654 // Just do nothing with that...
heinrichsweikamp
parents:
diff changeset
1655 return 0;
heinrichsweikamp
parents:
diff changeset
1656 }
heinrichsweikamp
parents:
diff changeset
1657
heinrichsweikamp
parents:
diff changeset
1658 //////////////////////////////////////////////////////////////////////////////
heinrichsweikamp
parents:
diff changeset
1659 // calc_gradient_factor
heinrichsweikamp
parents:
diff changeset
1660 //
heinrichsweikamp
parents:
diff changeset
1661 // optimized in v.101 (var_N2_a)
heinrichsweikamp
parents:
diff changeset
1662 // new code in v.102
heinrichsweikamp
parents:
diff changeset
1663 //
heinrichsweikamp
parents:
diff changeset
1664 static void calc_gradient_factor(void)
heinrichsweikamp
parents:
diff changeset
1665 {
heinrichsweikamp
parents:
diff changeset
1666 overlay float gf;
heinrichsweikamp
parents:
diff changeset
1667 overlay float N2 = pres_tissue_N2[char_O_gtissue_no];
heinrichsweikamp
parents:
diff changeset
1668 overlay float He = pres_tissue_He[char_O_gtissue_no];
heinrichsweikamp
parents:
diff changeset
1669
heinrichsweikamp
parents:
diff changeset
1670 assert( char_O_gtissue_no < NUM_COMP );
heinrichsweikamp
parents:
diff changeset
1671 assert( 0.800 <= pres_respiration && pres_respiration < 14.0 );
heinrichsweikamp
parents:
diff changeset
1672
heinrichsweikamp
parents:
diff changeset
1673 // tissue > respiration (currently off-gasing)
heinrichsweikamp
parents:
diff changeset
1674 // GF = 0% when respiration == tissue, ie. bubbles are at equilibrium.
heinrichsweikamp
parents:
diff changeset
1675 // GF = 100% when respiration == limit.
heinrichsweikamp
parents:
diff changeset
1676 temp_tissue = N2 + He;
heinrichsweikamp
parents:
diff changeset
1677 if( temp_tissue <= pres_respiration )
heinrichsweikamp
parents:
diff changeset
1678 gf = 0.0;
heinrichsweikamp
parents:
diff changeset
1679 else
heinrichsweikamp
parents:
diff changeset
1680 {
heinrichsweikamp
parents:
diff changeset
1681 overlay float limit = calc_lead_tissue_limit;
heinrichsweikamp
parents:
diff changeset
1682 // NOTE: in GF model, calc_lead_tissue_limit include already the
heinrichsweikamp
parents:
diff changeset
1683 // correction due to gradient factor. To compute the actual
heinrichsweikamp
parents:
diff changeset
1684 // current GF, we need to (re-)compute the raw ambiant-pressure
313
0ce5fa241b8e FIX minor comment about deco offset unit...
jDG
parents: 298
diff changeset
1685 // limit from the Buhlmann model.
0
heinrichsweikamp
parents:
diff changeset
1686 if( char_I_deco_model != 0 )
heinrichsweikamp
parents:
diff changeset
1687 {
heinrichsweikamp
parents:
diff changeset
1688 ci = char_O_gtissue_no;
heinrichsweikamp
parents:
diff changeset
1689 read_buhlmann_coefficients();
heinrichsweikamp
parents:
diff changeset
1690 var_N2_a = (var_N2_a * N2 + var_He_a * He) / temp_tissue;
heinrichsweikamp
parents:
diff changeset
1691 var_N2_b = (var_N2_b * N2 + var_He_b * He) / temp_tissue;
heinrichsweikamp
parents:
diff changeset
1692 limit = (temp_tissue - var_N2_a) * var_N2_b;
heinrichsweikamp
parents:
diff changeset
1693 }
heinrichsweikamp
parents:
diff changeset
1694
heinrichsweikamp
parents:
diff changeset
1695 gf = (temp_tissue - pres_respiration)
heinrichsweikamp
parents:
diff changeset
1696 / (temp_tissue - limit)
heinrichsweikamp
parents:
diff changeset
1697 * 100.0;
heinrichsweikamp
parents:
diff changeset
1698 if( gf > 254.5 ) gf = 255.0;
heinrichsweikamp
parents:
diff changeset
1699 if( gf < 0.0 ) gf = 0.0;
heinrichsweikamp
parents:
diff changeset
1700 }
heinrichsweikamp
parents:
diff changeset
1701 char_O_gradient_factor = (unsigned char)(gf+0.5f);
heinrichsweikamp
parents:
diff changeset
1702
heinrichsweikamp
parents:
diff changeset
1703 if( char_I_deco_model != 0 ) // calculate relative gradient factor
heinrichsweikamp
parents:
diff changeset
1704 {
heinrichsweikamp
parents:
diff changeset
1705 overlay float rgf;
heinrichsweikamp
parents:
diff changeset
1706
heinrichsweikamp
parents:
diff changeset
1707 if( low_depth < 3 )
heinrichsweikamp
parents:
diff changeset
1708 rgf = GF_high;
heinrichsweikamp
parents:
diff changeset
1709 else
heinrichsweikamp
parents:
diff changeset
1710 {
heinrichsweikamp
parents:
diff changeset
1711 overlay float temp1 = low_depth * METER_TO_BAR;
heinrichsweikamp
parents:
diff changeset
1712 overlay float temp2 = pres_respiration - pres_surface;
heinrichsweikamp
parents:
diff changeset
1713
heinrichsweikamp
parents:
diff changeset
1714 if (temp2 <= 0)
heinrichsweikamp
parents:
diff changeset
1715 rgf = GF_high;
heinrichsweikamp
parents:
diff changeset
1716 else if (temp2 >= temp1)
heinrichsweikamp
parents:
diff changeset
1717 rgf = GF_low;
heinrichsweikamp
parents:
diff changeset
1718 else
heinrichsweikamp
parents:
diff changeset
1719 rgf = GF_low + (temp1 - temp2)/temp1*GF_delta;
heinrichsweikamp
parents:
diff changeset
1720 }
heinrichsweikamp
parents:
diff changeset
1721
heinrichsweikamp
parents:
diff changeset
1722 rgf = gf / rgf; // gf is already in percent
heinrichsweikamp
parents:
diff changeset
1723 if( rgf < 0.0 ) rgf = 0.0;
heinrichsweikamp
parents:
diff changeset
1724 if( rgf > 254.5 ) rgf = 255.0;
342
7812ec7ef694 Fix low_depth shall be stored as a float (no rounding).
jDG
parents: 324
diff changeset
1725 char_O_relative_gradient_GF = (unsigned char)(rgf+0.5f);
0
heinrichsweikamp
parents:
diff changeset
1726 }
heinrichsweikamp
parents:
diff changeset
1727 else
342
7812ec7ef694 Fix low_depth shall be stored as a float (no rounding).
jDG
parents: 324
diff changeset
1728 {
7812ec7ef694 Fix low_depth shall be stored as a float (no rounding).
jDG
parents: 324
diff changeset
1729 // calc relative gradient factor
0
heinrichsweikamp
parents:
diff changeset
1730 char_O_relative_gradient_GF = char_O_gradient_factor;
342
7812ec7ef694 Fix low_depth shall be stored as a float (no rounding).
jDG
parents: 324
diff changeset
1731 }
0
heinrichsweikamp
parents:
diff changeset
1732 }
heinrichsweikamp
parents:
diff changeset
1733
heinrichsweikamp
parents:
diff changeset
1734 //////////////////////////////////////////////////////////////////////////////
heinrichsweikamp
parents:
diff changeset
1735 // deco_calc_desaturation_time
heinrichsweikamp
parents:
diff changeset
1736 //
heinrichsweikamp
parents:
diff changeset
1737 // FIXED N2_ratio
heinrichsweikamp
parents:
diff changeset
1738 // unchanged in v.101
heinrichsweikamp
parents:
diff changeset
1739 // Inputs: int_I_pres_surface, ppWater, char_I_desaturation_multiplier
heinrichsweikamp
parents:
diff changeset
1740 // Outputs: int_O_desaturation_time, char_O_tissue_saturation[0..31]
heinrichsweikamp
parents:
diff changeset
1741 //
heinrichsweikamp
parents:
diff changeset
1742 void deco_calc_desaturation_time(void)
heinrichsweikamp
parents:
diff changeset
1743 {
heinrichsweikamp
parents:
diff changeset
1744 RESET_C_STACK
heinrichsweikamp
parents:
diff changeset
1745
heinrichsweikamp
parents:
diff changeset
1746 assert( 800 < int_I_pres_surface && int_I_pres_surface < 1100 );
heinrichsweikamp
parents:
diff changeset
1747 assert( 0 < char_I_desaturation_multiplier && char_I_desaturation_multiplier <= 100 );
heinrichsweikamp
parents:
diff changeset
1748
313
0ce5fa241b8e FIX minor comment about deco offset unit...
jDG
parents: 298
diff changeset
1749 N2_ratio = 0.7902; // FIXED sum as stated in buhlmann
0
heinrichsweikamp
parents:
diff changeset
1750 pres_surface = int_I_pres_surface * 0.001;
heinrichsweikamp
parents:
diff changeset
1751 ppN2 = N2_ratio * (pres_surface - ppWater);
heinrichsweikamp
parents:
diff changeset
1752 int_O_desaturation_time = 0;
heinrichsweikamp
parents:
diff changeset
1753 float_desaturation_multiplier = char_I_desaturation_multiplier * (0.01 * SURFACE_DESAT_FACTOR);
heinrichsweikamp
parents:
diff changeset
1754
heinrichsweikamp
parents:
diff changeset
1755 for(ci=0; ci<NUM_COMP; ci++)
heinrichsweikamp
parents:
diff changeset
1756 {
heinrichsweikamp
parents:
diff changeset
1757 overlay unsigned short desat_time; // For a particular compartiment, in min.
heinrichsweikamp
parents:
diff changeset
1758 overlay float temp1;
heinrichsweikamp
parents:
diff changeset
1759 overlay float temp2;
heinrichsweikamp
parents:
diff changeset
1760 overlay float temp3;
heinrichsweikamp
parents:
diff changeset
1761 overlay float temp4;
heinrichsweikamp
parents:
diff changeset
1762
heinrichsweikamp
parents:
diff changeset
1763 read_buhlmann_ht();
heinrichsweikamp
parents:
diff changeset
1764
heinrichsweikamp
parents:
diff changeset
1765 // saturation_time (for flight) and N2_saturation in multiples of halftime
heinrichsweikamp
parents:
diff changeset
1766 // version v.100: 1.1 = 10 percent distance to totally clean (totally clean is not possible, would take infinite time )
heinrichsweikamp
parents:
diff changeset
1767 // new in version v.101: 1.07 = 7 percent distance to totally clean (totally clean is not possible, would take infinite time )
heinrichsweikamp
parents:
diff changeset
1768 // changes in v.101: 1.05 = 5 percent dist to totally clean is new desaturation point for display and NoFly calculations
heinrichsweikamp
parents:
diff changeset
1769 // N2
heinrichsweikamp
parents:
diff changeset
1770 temp1 = 1.05 * ppN2 - pres_tissue_N2[ci];
heinrichsweikamp
parents:
diff changeset
1771 temp2 = ppN2 - pres_tissue_N2[ci];
heinrichsweikamp
parents:
diff changeset
1772 if (temp2 >= 0.0)
heinrichsweikamp
parents:
diff changeset
1773 temp1 = 0.0;
heinrichsweikamp
parents:
diff changeset
1774 else
heinrichsweikamp
parents:
diff changeset
1775 temp1 = temp1 / temp2;
heinrichsweikamp
parents:
diff changeset
1776
heinrichsweikamp
parents:
diff changeset
1777 if( 0.0 < temp1 && temp1 < 1.0 )
heinrichsweikamp
parents:
diff changeset
1778 {
heinrichsweikamp
parents:
diff changeset
1779 // 0.6931 is ln(2), because the math function log() calculates with a base of e not 2 as requested.
heinrichsweikamp
parents:
diff changeset
1780 // minus because log is negative.
heinrichsweikamp
parents:
diff changeset
1781 temp1 = log(1.0 - temp1) / -0.6931; // temp1 is the multiples of half times necessary.
heinrichsweikamp
parents:
diff changeset
1782 temp2 = var_N2_ht * temp1 / float_desaturation_multiplier; // time necessary (in minutes ) for complete desaturation (see comment about 5 percent)
heinrichsweikamp
parents:
diff changeset
1783 }
heinrichsweikamp
parents:
diff changeset
1784 else
heinrichsweikamp
parents:
diff changeset
1785 {
heinrichsweikamp
parents:
diff changeset
1786 temp1 = 0.0;
heinrichsweikamp
parents:
diff changeset
1787 temp2 = 0.0;
heinrichsweikamp
parents:
diff changeset
1788 }
heinrichsweikamp
parents:
diff changeset
1789
heinrichsweikamp
parents:
diff changeset
1790 // He
heinrichsweikamp
parents:
diff changeset
1791 temp3 = 0.1 - pres_tissue_He[ci];
heinrichsweikamp
parents:
diff changeset
1792 if (temp3 >= 0.0)
heinrichsweikamp
parents:
diff changeset
1793 temp3 = 0.0;
heinrichsweikamp
parents:
diff changeset
1794 else
heinrichsweikamp
parents:
diff changeset
1795 temp3 = - temp3 / pres_tissue_He[ci];
heinrichsweikamp
parents:
diff changeset
1796
heinrichsweikamp
parents:
diff changeset
1797 if( 0.0 < temp3 && temp3 < 1.0 )
287
f342853afcd9 FIX gas_volumes: shall take stops in forward order.
jdg@air
parents: 284
diff changeset
1798 {
0
heinrichsweikamp
parents:
diff changeset
1799 temp3 = log(1.0 - temp3) / -0.6931; // temp1 is the multiples of half times necessary.
heinrichsweikamp
parents:
diff changeset
1800 // 0.6931 is ln(2), because the math function log() calculates with a base of e not 2 as requested.
heinrichsweikamp
parents:
diff changeset
1801 // minus because log is negative
heinrichsweikamp
parents:
diff changeset
1802 temp4 = var_He_ht * temp3 / float_desaturation_multiplier; // time necessary (in minutes ) for "complete" desaturation, new in v.101 float_desaturation_multiplier
287
f342853afcd9 FIX gas_volumes: shall take stops in forward order.
jdg@air
parents: 284
diff changeset
1803 }
0
heinrichsweikamp
parents:
diff changeset
1804 else
287
f342853afcd9 FIX gas_volumes: shall take stops in forward order.
jdg@air
parents: 284
diff changeset
1805 {
f342853afcd9 FIX gas_volumes: shall take stops in forward order.
jdg@air
parents: 284
diff changeset
1806 temp3 = 0.0;
f342853afcd9 FIX gas_volumes: shall take stops in forward order.
jdg@air
parents: 284
diff changeset
1807 temp4 = 0.0;
f342853afcd9 FIX gas_volumes: shall take stops in forward order.
jdg@air
parents: 284
diff changeset
1808 }
0
heinrichsweikamp
parents:
diff changeset
1809
heinrichsweikamp
parents:
diff changeset
1810 // saturation_time (for flight)
heinrichsweikamp
parents:
diff changeset
1811 if (temp4 > temp2)
heinrichsweikamp
parents:
diff changeset
1812 desat_time = (unsigned short)temp4;
heinrichsweikamp
parents:
diff changeset
1813 else
heinrichsweikamp
parents:
diff changeset
1814 desat_time = (unsigned short)temp2;
heinrichsweikamp
parents:
diff changeset
1815
heinrichsweikamp
parents:
diff changeset
1816 if(desat_time > int_O_desaturation_time)
heinrichsweikamp
parents:
diff changeset
1817 int_O_desaturation_time = desat_time;
heinrichsweikamp
parents:
diff changeset
1818
heinrichsweikamp
parents:
diff changeset
1819 // N2 saturation in multiples of halftime for display purposes
heinrichsweikamp
parents:
diff changeset
1820 temp2 = temp1 * 20.0; // 0 = 1/8, 120 = 0, 249 = 8
heinrichsweikamp
parents:
diff changeset
1821 temp2 = temp2 + 80.0; // set center
heinrichsweikamp
parents:
diff changeset
1822 if (temp2 < 0.0)
heinrichsweikamp
parents:
diff changeset
1823 temp2 = 0.0;
heinrichsweikamp
parents:
diff changeset
1824 if (temp2 > 255.0)
heinrichsweikamp
parents:
diff changeset
1825 temp2 = 255.0;
heinrichsweikamp
parents:
diff changeset
1826 char_O_tissue_N2_saturation[ci] = (char)temp2;
heinrichsweikamp
parents:
diff changeset
1827
heinrichsweikamp
parents:
diff changeset
1828 // He saturation in multiples of halftime for display purposes
heinrichsweikamp
parents:
diff changeset
1829 temp4 = temp3 * 20.0; // 0 = 1/8, 120 = 0, 249 = 8
heinrichsweikamp
parents:
diff changeset
1830 temp4 = temp4 + 80.0; // set center
heinrichsweikamp
parents:
diff changeset
1831 if (temp4 < 0.0)
heinrichsweikamp
parents:
diff changeset
1832 temp4 = 0.0;
heinrichsweikamp
parents:
diff changeset
1833 if (temp4 > 255.0)
heinrichsweikamp
parents:
diff changeset
1834 temp4 = 255.0;
heinrichsweikamp
parents:
diff changeset
1835 char_O_tissue_He_saturation[ci] = (char)temp4;
heinrichsweikamp
parents:
diff changeset
1836 } // for
heinrichsweikamp
parents:
diff changeset
1837 }
heinrichsweikamp
parents:
diff changeset
1838
heinrichsweikamp
parents:
diff changeset
1839 //////////////////////////////////////////////////////////////////////////////
heinrichsweikamp
parents:
diff changeset
1840 // calc_wo_deco_step_1_min
heinrichsweikamp
parents:
diff changeset
1841 //
heinrichsweikamp
parents:
diff changeset
1842 // FIXED N2 Ratio
heinrichsweikamp
parents:
diff changeset
1843 // optimized in v.101 (...saturation_multiplier)
heinrichsweikamp
parents:
diff changeset
1844 // desaturation slowed down to 70,42%
heinrichsweikamp
parents:
diff changeset
1845 //
heinrichsweikamp
parents:
diff changeset
1846 static void calc_wo_deco_step_1_min(void)
heinrichsweikamp
parents:
diff changeset
1847 {
heinrichsweikamp
parents:
diff changeset
1848 assert( 800 < int_I_pres_surface && int_I_pres_surface < 1100 );
heinrichsweikamp
parents:
diff changeset
1849 assert( 800 < int_I_pres_respiration && int_I_pres_respiration < 1100 );
heinrichsweikamp
parents:
diff changeset
1850 assert( 100 <= char_I_saturation_multiplier && char_I_saturation_multiplier < 200 );
heinrichsweikamp
parents:
diff changeset
1851 assert( 0 < char_I_desaturation_multiplier && char_I_desaturation_multiplier <= 100 );
heinrichsweikamp
parents:
diff changeset
1852
heinrichsweikamp
parents:
diff changeset
1853 N2_ratio = 0.7902; // FIXED, sum lt. buehlmann
heinrichsweikamp
parents:
diff changeset
1854 pres_respiration = pres_surface = int_I_pres_surface * 0.001;
heinrichsweikamp
parents:
diff changeset
1855 ppN2 = N2_ratio * (pres_respiration - ppWater);
heinrichsweikamp
parents:
diff changeset
1856 ppHe = 0.0;
heinrichsweikamp
parents:
diff changeset
1857 float_desaturation_multiplier = char_I_desaturation_multiplier * (0.01 * SURFACE_DESAT_FACTOR);
heinrichsweikamp
parents:
diff changeset
1858 float_saturation_multiplier = char_I_saturation_multiplier * 0.01;
heinrichsweikamp
parents:
diff changeset
1859
heinrichsweikamp
parents:
diff changeset
1860 calc_tissue(1); // update the pressure in the tissues N2/He in accordance with the new ambient pressure
heinrichsweikamp
parents:
diff changeset
1861
heinrichsweikamp
parents:
diff changeset
1862 clear_deco_table();
heinrichsweikamp
parents:
diff changeset
1863 char_O_deco_status = 3; // surface new in v.102 : stays in surface state.
heinrichsweikamp
parents:
diff changeset
1864 char_O_nullzeit = 0;
heinrichsweikamp
parents:
diff changeset
1865 int_O_ascenttime = 0;
heinrichsweikamp
parents:
diff changeset
1866 int_O_extra_ascenttime = 0;
heinrichsweikamp
parents:
diff changeset
1867 calc_gradient_factor();
heinrichsweikamp
parents:
diff changeset
1868 }
heinrichsweikamp
parents:
diff changeset
1869
heinrichsweikamp
parents:
diff changeset
1870 //////////////////////////////////////////////////////////////////////////////
heinrichsweikamp
parents:
diff changeset
1871 // calc_dive_interval
heinrichsweikamp
parents:
diff changeset
1872 //
heinrichsweikamp
parents:
diff changeset
1873 // Prepare tissue for delay before the next dive simulation.
heinrichsweikamp
parents:
diff changeset
1874 //
heinrichsweikamp
parents:
diff changeset
1875 // Inputs: char_I_dive_interval == delay before dive (in 10' steps).
heinrichsweikamp
parents:
diff changeset
1876 // Outputs: pres_tissue_N2/He[], CNS_fraction
heinrichsweikamp
parents:
diff changeset
1877 //
heinrichsweikamp
parents:
diff changeset
1878 // Should be protected by deco_push_tissues_to_vault(),
heinrichsweikamp
parents:
diff changeset
1879 // deco_pull_tissues_from_vault()
heinrichsweikamp
parents:
diff changeset
1880 //
heinrichsweikamp
parents:
diff changeset
1881 // desaturation slowed down to 70,42%.
heinrichsweikamp
parents:
diff changeset
1882 //
heinrichsweikamp
parents:
diff changeset
1883 static void calc_dive_interval(void)
heinrichsweikamp
parents:
diff changeset
1884 {
heinrichsweikamp
parents:
diff changeset
1885 overlay unsigned char t;
heinrichsweikamp
parents:
diff changeset
1886 overlay unsigned char backup_model;
heinrichsweikamp
parents:
diff changeset
1887
heinrichsweikamp
parents:
diff changeset
1888 //---- Initialize simulation parameters ----------------------------------
heinrichsweikamp
parents:
diff changeset
1889 N2_ratio = 0.7902; // FIXED, sum lt. buehlmann
heinrichsweikamp
parents:
diff changeset
1890 pres_respiration = pres_surface = int_I_pres_surface * 0.001;
heinrichsweikamp
parents:
diff changeset
1891 ppN2 = N2_ratio * (pres_respiration - ppWater);
heinrichsweikamp
parents:
diff changeset
1892 ppHe = 0.0;
heinrichsweikamp
parents:
diff changeset
1893 float_desaturation_multiplier = char_I_desaturation_multiplier * (0.01 * SURFACE_DESAT_FACTOR);
heinrichsweikamp
parents:
diff changeset
1894 float_saturation_multiplier = char_I_saturation_multiplier * 0.01;
heinrichsweikamp
parents:
diff changeset
1895
heinrichsweikamp
parents:
diff changeset
1896 // Make sure SURFACE_DESAT_FACTOR is applied:
heinrichsweikamp
parents:
diff changeset
1897 backup_model = char_I_deco_model;
heinrichsweikamp
parents:
diff changeset
1898 char_I_deco_model = 0;
heinrichsweikamp
parents:
diff changeset
1899
heinrichsweikamp
parents:
diff changeset
1900 //---- Perform simulation ------------------------------------------------
heinrichsweikamp
parents:
diff changeset
1901 for(t=0; t<char_I_dive_interval; ++t)
heinrichsweikamp
parents:
diff changeset
1902 {
heinrichsweikamp
parents:
diff changeset
1903 calc_tissue(2); // period = 10min.
heinrichsweikamp
parents:
diff changeset
1904 CNS_fraction = 0.92587471 * CNS_fraction; // Half-time = 90min: (1/2)^(1/9)
heinrichsweikamp
parents:
diff changeset
1905 }
322
fe06f1d1a285 FIX 16bits CNS feedback: assert CNS up to 999%
jDG
parents: 313
diff changeset
1906 assert( 0.0 <= CNS_fraction && CNS_fraction <= 9.99 ); // 999 %
fe06f1d1a285 FIX 16bits CNS feedback: assert CNS up to 999%
jDG
parents: 313
diff changeset
1907 int_O_CNS_fraction = (unsigned short)(CNS_fraction * 100.0 + 0.5);
0
heinrichsweikamp
parents:
diff changeset
1908
heinrichsweikamp
parents:
diff changeset
1909 //---- Restore model -----------------------------------------------------
heinrichsweikamp
parents:
diff changeset
1910 char_I_deco_model = backup_model;
heinrichsweikamp
parents:
diff changeset
1911 }
heinrichsweikamp
parents:
diff changeset
1912
heinrichsweikamp
parents:
diff changeset
1913 //////////////////////////////////////////////////////////////////////////////
heinrichsweikamp
parents:
diff changeset
1914 // deco_clear_CNS_fraction
heinrichsweikamp
parents:
diff changeset
1915 //
heinrichsweikamp
parents:
diff changeset
1916 // new in v.101
heinrichsweikamp
parents:
diff changeset
1917 //
heinrichsweikamp
parents:
diff changeset
1918 void deco_clear_CNS_fraction(void)
heinrichsweikamp
parents:
diff changeset
1919 {
heinrichsweikamp
parents:
diff changeset
1920 RESET_C_STACK
heinrichsweikamp
parents:
diff changeset
1921
heinrichsweikamp
parents:
diff changeset
1922 CNS_fraction = 0.0;
heinrichsweikamp
parents:
diff changeset
1923 int_O_CNS_fraction = 0;
heinrichsweikamp
parents:
diff changeset
1924 }
heinrichsweikamp
parents:
diff changeset
1925
heinrichsweikamp
parents:
diff changeset
1926 //////////////////////////////////////////////////////////////////////////////
heinrichsweikamp
parents:
diff changeset
1927 // deco_calc_CNS_fraction
heinrichsweikamp
parents:
diff changeset
1928 //
heinrichsweikamp
parents:
diff changeset
1929 // Input: char_I_actual_ppO2 : Current condition (in decibars).
heinrichsweikamp
parents:
diff changeset
1930 // char_I_step_is_1min : use 1min or 10min steps instead of 2sec.
heinrichsweikamp
parents:
diff changeset
1931 // CNS_fraction : velue before period.
heinrichsweikamp
parents:
diff changeset
1932 // Output: CNS_fraction, int_O_CNS_fraction
heinrichsweikamp
parents:
diff changeset
1933 //
heinrichsweikamp
parents:
diff changeset
1934 void deco_calc_CNS_fraction(void)
heinrichsweikamp
parents:
diff changeset
1935 {
heinrichsweikamp
parents:
diff changeset
1936 overlay float time_factor = 1.0f;
heinrichsweikamp
parents:
diff changeset
1937 RESET_C_STACK
heinrichsweikamp
parents:
diff changeset
1938
322
fe06f1d1a285 FIX 16bits CNS feedback: assert CNS up to 999%
jDG
parents: 313
diff changeset
1939 assert( 0.0 <= CNS_fraction && CNS_fraction <= 9.99 );
0
heinrichsweikamp
parents:
diff changeset
1940 assert( char_I_actual_ppO2 > 15 );
heinrichsweikamp
parents:
diff changeset
1941
heinrichsweikamp
parents:
diff changeset
1942 if( char_I_step_is_1min == 1 )
heinrichsweikamp
parents:
diff changeset
1943 time_factor = 30.0f;
heinrichsweikamp
parents:
diff changeset
1944 else if( char_I_step_is_1min == 2 )
heinrichsweikamp
parents:
diff changeset
1945 time_factor = 300.0f;
33
5d4a4fb0e8a6 Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents: 0
diff changeset
1946 //------------------------------------------------------------------------
5d4a4fb0e8a6 Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents: 0
diff changeset
1947 // Don't increase CNS below 0.5 bar, but keep it steady.
0
heinrichsweikamp
parents:
diff changeset
1948 if (char_I_actual_ppO2 < 50)
heinrichsweikamp
parents:
diff changeset
1949 ; // no changes
33
5d4a4fb0e8a6 Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents: 0
diff changeset
1950 //------------------------------------------------------------------------
5d4a4fb0e8a6 Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents: 0
diff changeset
1951 // Below (and including) 1.60 bar
5d4a4fb0e8a6 Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents: 0
diff changeset
1952 else if (char_I_actual_ppO2 < 61)
5d4a4fb0e8a6 Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents: 0
diff changeset
1953 CNS_fraction += time_factor/(-533.07 * char_I_actual_ppO2 + 54000.0);
5d4a4fb0e8a6 Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents: 0
diff changeset
1954 else if (char_I_actual_ppO2 < 71)
5d4a4fb0e8a6 Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents: 0
diff changeset
1955 CNS_fraction += time_factor/(-444.22 * char_I_actual_ppO2 + 48600.0);
5d4a4fb0e8a6 Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents: 0
diff changeset
1956 else if (char_I_actual_ppO2 < 81)
5d4a4fb0e8a6 Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents: 0
diff changeset
1957 CNS_fraction += time_factor/(-355.38 * char_I_actual_ppO2 + 42300.0);
5d4a4fb0e8a6 Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents: 0
diff changeset
1958 else if (char_I_actual_ppO2 < 91)
5d4a4fb0e8a6 Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents: 0
diff changeset
1959 CNS_fraction += time_factor/(-266.53 * char_I_actual_ppO2 + 35100.0);
5d4a4fb0e8a6 Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents: 0
diff changeset
1960 else if (char_I_actual_ppO2 < 111)
5d4a4fb0e8a6 Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents: 0
diff changeset
1961 CNS_fraction += time_factor/(-177.69 * char_I_actual_ppO2 + 27000.0);
5d4a4fb0e8a6 Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents: 0
diff changeset
1962 else if (char_I_actual_ppO2 < 152)
5d4a4fb0e8a6 Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents: 0
diff changeset
1963 CNS_fraction += time_factor/( -88.84 * char_I_actual_ppO2 + 17100.0);
5d4a4fb0e8a6 Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents: 0
diff changeset
1964 else if (char_I_actual_ppO2 < 167)
5d4a4fb0e8a6 Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents: 0
diff changeset
1965 CNS_fraction += time_factor/(-222.11 * char_I_actual_ppO2 + 37350.0);
5d4a4fb0e8a6 Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents: 0
diff changeset
1966 //------------------------------------------------------------------------
5d4a4fb0e8a6 Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents: 0
diff changeset
1967 // Arieli et all.(2002): Modeling pulmonary and CNS O2 toxicity:
322
fe06f1d1a285 FIX 16bits CNS feedback: assert CNS up to 999%
jDG
parents: 313
diff changeset
1968 // J Appl Physiol 92: 248--256, 2002, doi:10.1152/japplphysiol.00434.2001
33
5d4a4fb0e8a6 Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents: 0
diff changeset
1969 // Formula (A1) based on value for 1.55 and c=20
5d4a4fb0e8a6 Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents: 0
diff changeset
1970 // example calculation: Sqrt((1.7/1.55)^20)*0.000404
5d4a4fb0e8a6 Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents: 0
diff changeset
1971 else if (char_I_actual_ppO2 < 172)
5d4a4fb0e8a6 Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents: 0
diff changeset
1972 CNS_fraction += time_factor*0.00102;
5d4a4fb0e8a6 Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents: 0
diff changeset
1973 else if (char_I_actual_ppO2 < 177)
0
heinrichsweikamp
parents:
diff changeset
1974 CNS_fraction += time_factor*0.00136;
33
5d4a4fb0e8a6 Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents: 0
diff changeset
1975 else if (char_I_actual_ppO2 < 182)
0
heinrichsweikamp
parents:
diff changeset
1976 CNS_fraction += time_factor*0.00180;
33
5d4a4fb0e8a6 Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents: 0
diff changeset
1977 else if (char_I_actual_ppO2 < 187)
0
heinrichsweikamp
parents:
diff changeset
1978 CNS_fraction += time_factor*0.00237;
33
5d4a4fb0e8a6 Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents: 0
diff changeset
1979 else if (char_I_actual_ppO2 < 192)
0
heinrichsweikamp
parents:
diff changeset
1980 CNS_fraction += time_factor*0.00310;
33
5d4a4fb0e8a6 Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents: 0
diff changeset
1981 else if (char_I_actual_ppO2 < 198)
0
heinrichsweikamp
parents:
diff changeset
1982 CNS_fraction += time_factor*0.00401;
33
5d4a4fb0e8a6 Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents: 0
diff changeset
1983 else if (char_I_actual_ppO2 < 203)
0
heinrichsweikamp
parents:
diff changeset
1984 CNS_fraction += time_factor*0.00517;
33
5d4a4fb0e8a6 Bugfix: NOAA tables for CNS are in ATA, not bar
heinrichsweikamp
parents: 0
diff changeset
1985 else if (char_I_actual_ppO2 < 233)
0
heinrichsweikamp
parents:
diff changeset
1986 CNS_fraction += time_factor*0.0209;
heinrichsweikamp
parents:
diff changeset
1987 else
heinrichsweikamp
parents:
diff changeset
1988 CNS_fraction += time_factor*0.0482; // value for 2.5
heinrichsweikamp
parents:
diff changeset
1989
322
fe06f1d1a285 FIX 16bits CNS feedback: assert CNS up to 999%
jDG
parents: 313
diff changeset
1990 if( CNS_fraction > 9.99) // Limit display to 999%
0
heinrichsweikamp
parents:
diff changeset
1991 CNS_fraction = 9.99;
heinrichsweikamp
parents:
diff changeset
1992 if( CNS_fraction < 0.0 )
heinrichsweikamp
parents:
diff changeset
1993 CNS_fraction = 0.0;
heinrichsweikamp
parents:
diff changeset
1994
322
fe06f1d1a285 FIX 16bits CNS feedback: assert CNS up to 999%
jDG
parents: 313
diff changeset
1995 int_O_CNS_fraction = (unsigned short)(100.0 * CNS_fraction + 0.5);
0
heinrichsweikamp
parents:
diff changeset
1996 }
heinrichsweikamp
parents:
diff changeset
1997
heinrichsweikamp
parents:
diff changeset
1998 //////////////////////////////////////////////////////////////////////////////
heinrichsweikamp
parents:
diff changeset
1999 // deco_calc_CNS_planning
heinrichsweikamp
parents:
diff changeset
2000 //
heinrichsweikamp
parents:
diff changeset
2001 // Compute CNS during predicted ascent.
heinrichsweikamp
parents:
diff changeset
2002 //
heinrichsweikamp
parents:
diff changeset
2003 // Note: Needs a call to deco_push_tissues_to_vault(),
heinrichsweikamp
parents:
diff changeset
2004 // deco_pull_tissues_from_vault() to avoid trashing everything...
heinrichsweikamp
parents:
diff changeset
2005 //
heinrichsweikamp
parents:
diff changeset
2006 // Input: CNS_fraction, char_O_deco_time[], char_O_deco_depth[]
heinrichsweikamp
parents:
diff changeset
2007 // Output: CNS_fraction, int_O_CNS_fraction
heinrichsweikamp
parents:
diff changeset
2008 //
heinrichsweikamp
parents:
diff changeset
2009 void deco_calc_CNS_planning(void)
heinrichsweikamp
parents:
diff changeset
2010 {
heinrichsweikamp
parents:
diff changeset
2011 overlay unsigned char backup_gas_last_depth;
heinrichsweikamp
parents:
diff changeset
2012 overlay unsigned char backup_gas_last_used;
heinrichsweikamp
parents:
diff changeset
2013 overlay unsigned short backup_dive_mins;
heinrichsweikamp
parents:
diff changeset
2014 overlay unsigned char backup_actual_ppO2;
heinrichsweikamp
parents:
diff changeset
2015
heinrichsweikamp
parents:
diff changeset
2016 RESET_C_STACK
heinrichsweikamp
parents:
diff changeset
2017
heinrichsweikamp
parents:
diff changeset
2018 // Backup state machine
heinrichsweikamp
parents:
diff changeset
2019 backup_gas_last_depth = sim_gas_last_depth;
heinrichsweikamp
parents:
diff changeset
2020 backup_gas_last_used = sim_gas_last_used;
heinrichsweikamp
parents:
diff changeset
2021 backup_dive_mins = sim_dive_mins;
heinrichsweikamp
parents:
diff changeset
2022 backup_actual_ppO2 = char_I_actual_ppO2;
heinrichsweikamp
parents:
diff changeset
2023
heinrichsweikamp
parents:
diff changeset
2024 // Uses 1min CNS period:
heinrichsweikamp
parents:
diff changeset
2025 char_I_step_is_1min = 1;
heinrichsweikamp
parents:
diff changeset
2026
heinrichsweikamp
parents:
diff changeset
2027 //---- Retrieve bottom Gas used, and set variables.
heinrichsweikamp
parents:
diff changeset
2028 sim_gas_last_used = char_I_first_gas;
heinrichsweikamp
parents:
diff changeset
2029 sim_gas_last_depth = 0; // Surface gas marker.
heinrichsweikamp
parents:
diff changeset
2030 gas_switch_set(); // Sets initial calc_N2/He_ratio
heinrichsweikamp
parents:
diff changeset
2031
heinrichsweikamp
parents:
diff changeset
2032 //---- CCR mode : do the full TTS at once --------------------------------
heinrichsweikamp
parents:
diff changeset
2033 if( char_I_const_ppO2 != 0 )
heinrichsweikamp
parents:
diff changeset
2034 {
heinrichsweikamp
parents:
diff changeset
2035 overlay unsigned short t; // Needs 16bits here !
heinrichsweikamp
parents:
diff changeset
2036 char_I_actual_ppO2 = char_I_const_ppO2;
heinrichsweikamp
parents:
diff changeset
2037 for(t=0; t<int_O_ascenttime; ++t)
heinrichsweikamp
parents:
diff changeset
2038 deco_calc_CNS_fraction();
heinrichsweikamp
parents:
diff changeset
2039 }
heinrichsweikamp
parents:
diff changeset
2040 else //---- OC mode : have to follow all gas switches... -----------------
heinrichsweikamp
parents:
diff changeset
2041 {
heinrichsweikamp
parents:
diff changeset
2042 overlay unsigned char i = 0; // Decostop loop counter
heinrichsweikamp
parents:
diff changeset
2043 overlay float actual_ppO2;
heinrichsweikamp
parents:
diff changeset
2044 overlay unsigned char time, t;
heinrichsweikamp
parents:
diff changeset
2045
heinrichsweikamp
parents:
diff changeset
2046 //---- Ascent to surface delay
heinrichsweikamp
parents:
diff changeset
2047 // NOTE: count as if time is spent with bottom pressure,
heinrichsweikamp
parents:
diff changeset
2048 // AND the bottom gas
heinrichsweikamp
parents:
diff changeset
2049 actual_ppO2 = (pres_surface + char_I_bottom_depth * METER_TO_BAR)
heinrichsweikamp
parents:
diff changeset
2050 * (1.0 - calc_N2_ratio - calc_He_ratio);
heinrichsweikamp
parents:
diff changeset
2051 if( actual_ppO2 < 0.0 ) actual_ppO2 = 0.0;
heinrichsweikamp
parents:
diff changeset
2052 if( actual_ppO2 > 2.50 ) actual_ppO2 = 2.55;
heinrichsweikamp
parents:
diff changeset
2053 char_I_actual_ppO2 = (unsigned char)(100.0 * actual_ppO2 + 0.5);
heinrichsweikamp
parents:
diff changeset
2054
heinrichsweikamp
parents:
diff changeset
2055 // Ascent time (rounded up):
heinrichsweikamp
parents:
diff changeset
2056 time = (unsigned char)(0.1 * char_I_bottom_depth + 0.5);
heinrichsweikamp
parents:
diff changeset
2057
heinrichsweikamp
parents:
diff changeset
2058 for(t=0; t<time; ++t)
heinrichsweikamp
parents:
diff changeset
2059 {
heinrichsweikamp
parents:
diff changeset
2060 deco_calc_CNS_fraction();
heinrichsweikamp
parents:
diff changeset
2061 sim_dive_mins++;
heinrichsweikamp
parents:
diff changeset
2062 }
heinrichsweikamp
parents:
diff changeset
2063
heinrichsweikamp
parents:
diff changeset
2064 //---- Do all further stops ------------------------------------------
heinrichsweikamp
parents:
diff changeset
2065 for(i=0; i<NUM_STOPS; ++i)
heinrichsweikamp
parents:
diff changeset
2066 {
111
c61b7a4e317c Bugfix: CNS in planner
heinrichsweikamp
parents: 34
diff changeset
2067 overlay unsigned char stop_gas;
0
heinrichsweikamp
parents:
diff changeset
2068
210
7dbc1d780ca5 do not clear char_O_deco_gas in copy_deco_table
heinrichsweikamp
parents: 135
diff changeset
2069 //---- Get next stop ---------------------------------------------
0
heinrichsweikamp
parents:
diff changeset
2070 {
heinrichsweikamp
parents:
diff changeset
2071 time = char_O_deco_time[(NUM_STOPS-1)-i];
heinrichsweikamp
parents:
diff changeset
2072 temp_depth_limit = char_O_deco_depth[(NUM_STOPS-1)-i];
111
c61b7a4e317c Bugfix: CNS in planner
heinrichsweikamp
parents: 34
diff changeset
2073 stop_gas = char_O_deco_gas[(NUM_STOPS-1)-i];
0
heinrichsweikamp
parents:
diff changeset
2074 }
heinrichsweikamp
parents:
diff changeset
2075 if( time == 0 ) continue;
heinrichsweikamp
parents:
diff changeset
2076
heinrichsweikamp
parents:
diff changeset
2077 //---- Gas Switch ? ----------------------------------------------
111
c61b7a4e317c Bugfix: CNS in planner
heinrichsweikamp
parents: 34
diff changeset
2078 if( stop_gas != sim_gas_last_used )
0
heinrichsweikamp
parents:
diff changeset
2079 {
111
c61b7a4e317c Bugfix: CNS in planner
heinrichsweikamp
parents: 34
diff changeset
2080 sim_gas_last_depth = deco_gas_change[stop_gas-1];
c61b7a4e317c Bugfix: CNS in planner
heinrichsweikamp
parents: 34
diff changeset
2081 sim_gas_last_used = stop_gas;
0
heinrichsweikamp
parents:
diff changeset
2082 gas_switch_set();
heinrichsweikamp
parents:
diff changeset
2083 }
heinrichsweikamp
parents:
diff changeset
2084
heinrichsweikamp
parents:
diff changeset
2085 //---- Convert Depth and N2_ratio to ppO2 ------------------------
heinrichsweikamp
parents:
diff changeset
2086 actual_ppO2 = (pres_surface + temp_depth_limit * METER_TO_BAR)
heinrichsweikamp
parents:
diff changeset
2087 * (1.0 - calc_N2_ratio - calc_He_ratio);
heinrichsweikamp
parents:
diff changeset
2088 if( actual_ppO2 < 0.0 ) actual_ppO2 = 0.0;
heinrichsweikamp
parents:
diff changeset
2089 if( actual_ppO2 > 2.50 ) actual_ppO2 = 2.55;
heinrichsweikamp
parents:
diff changeset
2090 char_I_actual_ppO2 = (unsigned char)(100.0 * actual_ppO2 + 0.5);
heinrichsweikamp
parents:
diff changeset
2091
heinrichsweikamp
parents:
diff changeset
2092 //---- Apply the stop
heinrichsweikamp
parents:
diff changeset
2093 for(t=0; t<time; ++t)
heinrichsweikamp
parents:
diff changeset
2094 {
heinrichsweikamp
parents:
diff changeset
2095 deco_calc_CNS_fraction();
heinrichsweikamp
parents:
diff changeset
2096 sim_dive_mins++;
heinrichsweikamp
parents:
diff changeset
2097 }
heinrichsweikamp
parents:
diff changeset
2098 }
heinrichsweikamp
parents:
diff changeset
2099 }
heinrichsweikamp
parents:
diff changeset
2100
heinrichsweikamp
parents:
diff changeset
2101 //---- Back to normal mode... --------------------------------------------
heinrichsweikamp
parents:
diff changeset
2102 char_I_step_is_1min = 0;
heinrichsweikamp
parents:
diff changeset
2103 sim_gas_last_depth = backup_gas_last_depth;
heinrichsweikamp
parents:
diff changeset
2104 sim_gas_last_used = backup_gas_last_used;
heinrichsweikamp
parents:
diff changeset
2105 sim_dive_mins = backup_dive_mins;
heinrichsweikamp
parents:
diff changeset
2106 char_I_actual_ppO2 = backup_actual_ppO2;
heinrichsweikamp
parents:
diff changeset
2107 }
heinrichsweikamp
parents:
diff changeset
2108
heinrichsweikamp
parents:
diff changeset
2109 //////////////////////////////////////////////////////////////////////////////
heinrichsweikamp
parents:
diff changeset
2110 // deco_calc_CNS_decrease_15min
heinrichsweikamp
parents:
diff changeset
2111 //
heinrichsweikamp
parents:
diff changeset
2112 // new in v.101
heinrichsweikamp
parents:
diff changeset
2113 //
heinrichsweikamp
parents:
diff changeset
2114 // calculates the half time of 90 minutes in 6 steps of 15 min
heinrichsweikamp
parents:
diff changeset
2115 // (Used in sleepmode, for low battery mode).
heinrichsweikamp
parents:
diff changeset
2116 //
heinrichsweikamp
parents:
diff changeset
2117 // Output: int_O_CNS_fraction
heinrichsweikamp
parents:
diff changeset
2118 // Uses and Updates: CNS_fraction
heinrichsweikamp
parents:
diff changeset
2119 //
heinrichsweikamp
parents:
diff changeset
2120 void deco_calc_CNS_decrease_15min(void)
heinrichsweikamp
parents:
diff changeset
2121 {
heinrichsweikamp
parents:
diff changeset
2122 RESET_C_STACK
322
fe06f1d1a285 FIX 16bits CNS feedback: assert CNS up to 999%
jDG
parents: 313
diff changeset
2123 assert( 0.0 <= CNS_fraction && CNS_fraction <= 9.99 );
0
heinrichsweikamp
parents:
diff changeset
2124
heinrichsweikamp
parents:
diff changeset
2125 CNS_fraction = 0.890899 * CNS_fraction;
322
fe06f1d1a285 FIX 16bits CNS feedback: assert CNS up to 999%
jDG
parents: 313
diff changeset
2126 int_O_CNS_fraction = (unsigned short)(CNS_fraction * 100.0 + 0.5);
0
heinrichsweikamp
parents:
diff changeset
2127 }
heinrichsweikamp
parents:
diff changeset
2128
heinrichsweikamp
parents:
diff changeset
2129 //////////////////////////////////////////////////////////////////////////////
heinrichsweikamp
parents:
diff changeset
2130 // deco_calc_percentage
heinrichsweikamp
parents:
diff changeset
2131 //
heinrichsweikamp
parents:
diff changeset
2132 // new in v.101
heinrichsweikamp
parents:
diff changeset
2133 //
heinrichsweikamp
parents:
diff changeset
2134 // calculates int_I_temp * char_I_temp / 100
heinrichsweikamp
parents:
diff changeset
2135 // output is int_I_temp
heinrichsweikamp
parents:
diff changeset
2136 //
heinrichsweikamp
parents:
diff changeset
2137 // Used to compute NoFly remaining time.
heinrichsweikamp
parents:
diff changeset
2138 //
heinrichsweikamp
parents:
diff changeset
2139 void deco_calc_percentage(void)
heinrichsweikamp
parents:
diff changeset
2140 {
heinrichsweikamp
parents:
diff changeset
2141 RESET_C_STACK
heinrichsweikamp
parents:
diff changeset
2142
heinrichsweikamp
parents:
diff changeset
2143 assert( 60 <= char_I_temp && char_I_temp <= 100 );
heinrichsweikamp
parents:
diff changeset
2144 assert( int_I_temp < 5760 ); // Less than 4 days = 96h...
heinrichsweikamp
parents:
diff changeset
2145
heinrichsweikamp
parents:
diff changeset
2146 int_I_temp = (unsigned short)(((float)int_I_temp * (float)char_I_temp) * 0.01 );
heinrichsweikamp
parents:
diff changeset
2147
heinrichsweikamp
parents:
diff changeset
2148 assert( int_I_temp < 5760 ); // Less than 96h too...
heinrichsweikamp
parents:
diff changeset
2149 }
heinrichsweikamp
parents:
diff changeset
2150
heinrichsweikamp
parents:
diff changeset
2151 //////////////////////////////////////////////////////////////////////////////
heinrichsweikamp
parents:
diff changeset
2152 // deco_gas_volumes
heinrichsweikamp
parents:
diff changeset
2153 //
heinrichsweikamp
parents:
diff changeset
2154 // new in v.111
heinrichsweikamp
parents:
diff changeset
2155 //
heinrichsweikamp
parents:
diff changeset
2156 // calculates volumes for each gas.
heinrichsweikamp
parents:
diff changeset
2157 //
heinrichsweikamp
parents:
diff changeset
2158 // Input: char_I_bottom_depth, char_I_bottom_time for planned dive.
heinrichsweikamp
parents:
diff changeset
2159 // Gas list.
heinrichsweikamp
parents:
diff changeset
2160 // char_I_first_gas is the bottom gas.
heinrichsweikamp
parents:
diff changeset
2161 // decoplan (char_O_deco_depth, char_O_deco_time).
298
2fe34fc0e2ae new submenu for gas consumption, show actual mix instead of GAS1-GAS5 in deco planner
heinrichsweikamp
parents: 289
diff changeset
2162 // char_I_bottom_usage is bottom liters/minutes (5 .. 50) or bar/min.
2fe34fc0e2ae new submenu for gas consumption, show actual mix instead of GAS1-GAS5 in deco planner
heinrichsweikamp
parents: 289
diff changeset
2163 // char_I_deco_usage is deco liters/minutes (5 .. 50) or bar/min.
0
heinrichsweikamp
parents:
diff changeset
2164 // Output: int_O_gas_volumes[0..4] in litters * 0.1
heinrichsweikamp
parents:
diff changeset
2165 //
heinrichsweikamp
parents:
diff changeset
2166 void deco_gas_volumes(void)
heinrichsweikamp
parents:
diff changeset
2167 {
heinrichsweikamp
parents:
diff changeset
2168 overlay float volumes[NUM_GAS];
heinrichsweikamp
parents:
diff changeset
2169 overlay float bottom_usage, deco_usage;
135
heinrichsweikamp
parents: 133
diff changeset
2170 overlay unsigned char i;
0
heinrichsweikamp
parents:
diff changeset
2171 overlay unsigned char gas, depth;
348
fca4f9de5f4a [FIX] GasVolume: missing gas changes w/o stops.
jDG
parents: 342
diff changeset
2172 overlay unsigned char lastGasStop;
0
heinrichsweikamp
parents:
diff changeset
2173 RESET_C_STACK
heinrichsweikamp
parents:
diff changeset
2174
289
30edd177016a [mq]: 2015-05-29_02-40-44_r288+.diff
jdg@air
parents: 288
diff changeset
2175 //---- initialize --------------------------------------------------------
0
heinrichsweikamp
parents:
diff changeset
2176 for(i=0; i<NUM_GAS; ++i) // Nothing yet...
heinrichsweikamp
parents:
diff changeset
2177 volumes[i] = 0.0;
heinrichsweikamp
parents:
diff changeset
2178
298
2fe34fc0e2ae new submenu for gas consumption, show actual mix instead of GAS1-GAS5 in deco planner
heinrichsweikamp
parents: 289
diff changeset
2179 bottom_usage = char_I_bottom_usage; // In liter/minutes.
2fe34fc0e2ae new submenu for gas consumption, show actual mix instead of GAS1-GAS5 in deco planner
heinrichsweikamp
parents: 289
diff changeset
2180 deco_usage = char_I_deco_usage; // In liter/minutes.
289
30edd177016a [mq]: 2015-05-29_02-40-44_r288+.diff
jdg@air
parents: 288
diff changeset
2181
30edd177016a [mq]: 2015-05-29_02-40-44_r288+.diff
jdg@air
parents: 288
diff changeset
2182 // Early return if not defined:
30edd177016a [mq]: 2015-05-29_02-40-44_r288+.diff
jdg@air
parents: 288
diff changeset
2183 if( deco_usage <= 0.0 || bottom_usage <= 0.0 )
30edd177016a [mq]: 2015-05-29_02-40-44_r288+.diff
jdg@air
parents: 288
diff changeset
2184 goto done;
30edd177016a [mq]: 2015-05-29_02-40-44_r288+.diff
jdg@air
parents: 288
diff changeset
2185
30edd177016a [mq]: 2015-05-29_02-40-44_r288+.diff
jdg@air
parents: 288
diff changeset
2186 //---- Bottom usage -----------------------------------------------------
0
heinrichsweikamp
parents:
diff changeset
2187 assert(1 <= char_I_first_gas && char_I_first_gas <= NUM_GAS);
heinrichsweikamp
parents:
diff changeset
2188 gas = char_I_first_gas - 1;
heinrichsweikamp
parents:
diff changeset
2189
289
30edd177016a [mq]: 2015-05-29_02-40-44_r288+.diff
jdg@air
parents: 288
diff changeset
2190 if( char_I_const_ppO2 == 0 )
0
heinrichsweikamp
parents:
diff changeset
2191 volumes[gas]
heinrichsweikamp
parents:
diff changeset
2192 = (char_I_bottom_depth*0.1 + 1.0) // Use Psurface = 1.0 bar.
heinrichsweikamp
parents:
diff changeset
2193 * char_I_bottom_time // in minutes.
heinrichsweikamp
parents:
diff changeset
2194 * bottom_usage; // In liter/minutes.
heinrichsweikamp
parents:
diff changeset
2195
heinrichsweikamp
parents:
diff changeset
2196 //---- Ascent usage ------------------------------------------------------
351
de8c45fb2ab9 BUGFIX gas volume: do not forget deco gas with switch >= dive's bottom depth.
jdg@air
parents: 348
diff changeset
2197 depth = char_I_bottom_depth;
de8c45fb2ab9 BUGFIX gas volume: do not forget deco gas with switch >= dive's bottom depth.
jdg@air
parents: 348
diff changeset
2198 lastGasStop = 255; // Allow deco gas at or below bottom depth
0
heinrichsweikamp
parents:
diff changeset
2199
heinrichsweikamp
parents:
diff changeset
2200 for(i=0; i<NUM_STOPS; ++i)
heinrichsweikamp
parents:
diff changeset
2201 {
348
fca4f9de5f4a [FIX] GasVolume: missing gas changes w/o stops.
jDG
parents: 342
diff changeset
2202 overlay unsigned char newDepth, time;
0
heinrichsweikamp
parents:
diff changeset
2203
348
fca4f9de5f4a [FIX] GasVolume: missing gas changes w/o stops.
jDG
parents: 342
diff changeset
2204 time = char_O_deco_time [i];
fca4f9de5f4a [FIX] GasVolume: missing gas changes w/o stops.
jDG
parents: 342
diff changeset
2205 if( time == 0 ) break; // End of table: done.
0
heinrichsweikamp
parents:
diff changeset
2206
288
08986d479b94 FIX gas_volume shall read gas switches from char_O_deco_gas
jdg@air
parents: 287
diff changeset
2207 newDepth = char_O_deco_depth[i];
348
fca4f9de5f4a [FIX] GasVolume: missing gas changes w/o stops.
jDG
parents: 342
diff changeset
2208 assert(0 < newDepth && newDepth <= depth);
fca4f9de5f4a [FIX] GasVolume: missing gas changes w/o stops.
jDG
parents: 342
diff changeset
2209
fca4f9de5f4a [FIX] GasVolume: missing gas changes w/o stops.
jDG
parents: 342
diff changeset
2210 //---- Any gas switch before this stop -------------------------------
fca4f9de5f4a [FIX] GasVolume: missing gas changes w/o stops.
jDG
parents: 342
diff changeset
2211 for(;;)
fca4f9de5f4a [FIX] GasVolume: missing gas changes w/o stops.
jDG
parents: 342
diff changeset
2212 {
fca4f9de5f4a [FIX] GasVolume: missing gas changes w/o stops.
jDG
parents: 342
diff changeset
2213 overlay unsigned char newGas = 0;
351
de8c45fb2ab9 BUGFIX gas volume: do not forget deco gas with switch >= dive's bottom depth.
jdg@air
parents: 348
diff changeset
2214 overlay unsigned char newStop = 0; // Mark as NO CHANGE yet
348
fca4f9de5f4a [FIX] GasVolume: missing gas changes w/o stops.
jDG
parents: 342
diff changeset
2215 overlay unsigned char j;
288
08986d479b94 FIX gas_volume shall read gas switches from char_O_deco_gas
jdg@air
parents: 287
diff changeset
2216
348
fca4f9de5f4a [FIX] GasVolume: missing gas changes w/o stops.
jDG
parents: 342
diff changeset
2217 for(j=0; j<NUM_GAS; ++j)
fca4f9de5f4a [FIX] GasVolume: missing gas changes w/o stops.
jDG
parents: 342
diff changeset
2218 {
fca4f9de5f4a [FIX] GasVolume: missing gas changes w/o stops.
jDG
parents: 342
diff changeset
2219 // Skip gas without changing depth:
fca4f9de5f4a [FIX] GasVolume: missing gas changes w/o stops.
jDG
parents: 342
diff changeset
2220 if( ! char_I_deco_gas_change[j] )
fca4f9de5f4a [FIX] GasVolume: missing gas changes w/o stops.
jDG
parents: 342
diff changeset
2221 continue;
fca4f9de5f4a [FIX] GasVolume: missing gas changes w/o stops.
jDG
parents: 342
diff changeset
2222 // Select gas changed between [newDepth .. lastGasStop[
fca4f9de5f4a [FIX] GasVolume: missing gas changes w/o stops.
jDG
parents: 342
diff changeset
2223 // Note that <= means changing gas at BEGINNING of this stop.
fca4f9de5f4a [FIX] GasVolume: missing gas changes w/o stops.
jDG
parents: 342
diff changeset
2224 // Note that < means we cant use the same gas twice
fca4f9de5f4a [FIX] GasVolume: missing gas changes w/o stops.
jDG
parents: 342
diff changeset
2225 if( newDepth <= char_I_deco_gas_change[j]
fca4f9de5f4a [FIX] GasVolume: missing gas changes w/o stops.
jDG
parents: 342
diff changeset
2226 && char_I_deco_gas_change[j] < lastGasStop )
fca4f9de5f4a [FIX] GasVolume: missing gas changes w/o stops.
jDG
parents: 342
diff changeset
2227 {
fca4f9de5f4a [FIX] GasVolume: missing gas changes w/o stops.
jDG
parents: 342
diff changeset
2228 // Keep the DEEPEST gas in that range:
fca4f9de5f4a [FIX] GasVolume: missing gas changes w/o stops.
jDG
parents: 342
diff changeset
2229 if( char_I_deco_gas_change[j] >= newStop )
fca4f9de5f4a [FIX] GasVolume: missing gas changes w/o stops.
jDG
parents: 342
diff changeset
2230 {
fca4f9de5f4a [FIX] GasVolume: missing gas changes w/o stops.
jDG
parents: 342
diff changeset
2231 newGas = j;
fca4f9de5f4a [FIX] GasVolume: missing gas changes w/o stops.
jDG
parents: 342
diff changeset
2232 newStop = char_I_deco_gas_change[j];
fca4f9de5f4a [FIX] GasVolume: missing gas changes w/o stops.
jDG
parents: 342
diff changeset
2233 }
fca4f9de5f4a [FIX] GasVolume: missing gas changes w/o stops.
jDG
parents: 342
diff changeset
2234 }
fca4f9de5f4a [FIX] GasVolume: missing gas changes w/o stops.
jDG
parents: 342
diff changeset
2235 }
0
heinrichsweikamp
parents:
diff changeset
2236
348
fca4f9de5f4a [FIX] GasVolume: missing gas changes w/o stops.
jDG
parents: 342
diff changeset
2237 // Did we find something ?
fca4f9de5f4a [FIX] GasVolume: missing gas changes w/o stops.
jDG
parents: 342
diff changeset
2238 if( !newStop )
fca4f9de5f4a [FIX] GasVolume: missing gas changes w/o stops.
jDG
parents: 342
diff changeset
2239 break;
fca4f9de5f4a [FIX] GasVolume: missing gas changes w/o stops.
jDG
parents: 342
diff changeset
2240
fca4f9de5f4a [FIX] GasVolume: missing gas changes w/o stops.
jDG
parents: 342
diff changeset
2241 //---- usage BEFORE gas switch (if any), at 10m/min :
fca4f9de5f4a [FIX] GasVolume: missing gas changes w/o stops.
jDG
parents: 342
diff changeset
2242 if( depth > newStop )
fca4f9de5f4a [FIX] GasVolume: missing gas changes w/o stops.
jDG
parents: 342
diff changeset
2243 // Plus usage during ascent to the next stop, at 10m/min.
fca4f9de5f4a [FIX] GasVolume: missing gas changes w/o stops.
jDG
parents: 342
diff changeset
2244 volumes[gas] += ((depth+newStop)*0.05 + 1.0) // average depth --> bar.
fca4f9de5f4a [FIX] GasVolume: missing gas changes w/o stops.
jDG
parents: 342
diff changeset
2245 * (depth-newStop)*0.1 // metre --> min
fca4f9de5f4a [FIX] GasVolume: missing gas changes w/o stops.
jDG
parents: 342
diff changeset
2246 * deco_usage;
fca4f9de5f4a [FIX] GasVolume: missing gas changes w/o stops.
jDG
parents: 342
diff changeset
2247
fca4f9de5f4a [FIX] GasVolume: missing gas changes w/o stops.
jDG
parents: 342
diff changeset
2248 //---- Do gas switch:
fca4f9de5f4a [FIX] GasVolume: missing gas changes w/o stops.
jDG
parents: 342
diff changeset
2249 gas = newGas;
0
heinrichsweikamp
parents:
diff changeset
2250
348
fca4f9de5f4a [FIX] GasVolume: missing gas changes w/o stops.
jDG
parents: 342
diff changeset
2251 lastGasStop = newStop; // Mark last used gas
fca4f9de5f4a [FIX] GasVolume: missing gas changes w/o stops.
jDG
parents: 342
diff changeset
2252 if( newStop < depth ) // ascent to gas switch,
fca4f9de5f4a [FIX] GasVolume: missing gas changes w/o stops.
jDG
parents: 342
diff changeset
2253 depth = newStop;
fca4f9de5f4a [FIX] GasVolume: missing gas changes w/o stops.
jDG
parents: 342
diff changeset
2254 }
fca4f9de5f4a [FIX] GasVolume: missing gas changes w/o stops.
jDG
parents: 342
diff changeset
2255
fca4f9de5f4a [FIX] GasVolume: missing gas changes w/o stops.
jDG
parents: 342
diff changeset
2256 // Are we back to gas from the deco list (just in case):
fca4f9de5f4a [FIX] GasVolume: missing gas changes w/o stops.
jDG
parents: 342
diff changeset
2257 assert(gas == char_O_deco_gas[i]-1);
fca4f9de5f4a [FIX] GasVolume: missing gas changes w/o stops.
jDG
parents: 342
diff changeset
2258
fca4f9de5f4a [FIX] GasVolume: missing gas changes w/o stops.
jDG
parents: 342
diff changeset
2259 //---- usage AFTER gas switch (if any), at 10m/min :
fca4f9de5f4a [FIX] GasVolume: missing gas changes w/o stops.
jDG
parents: 342
diff changeset
2260 if( depth > newDepth )
fca4f9de5f4a [FIX] GasVolume: missing gas changes w/o stops.
jDG
parents: 342
diff changeset
2261 volumes[gas] += ((depth+newDepth)*0.05 + 1.0) // average depth --> bar.
fca4f9de5f4a [FIX] GasVolume: missing gas changes w/o stops.
jDG
parents: 342
diff changeset
2262 * (depth-newDepth)*0.1 // metre --> min
fca4f9de5f4a [FIX] GasVolume: missing gas changes w/o stops.
jDG
parents: 342
diff changeset
2263 * deco_usage;
fca4f9de5f4a [FIX] GasVolume: missing gas changes w/o stops.
jDG
parents: 342
diff changeset
2264
fca4f9de5f4a [FIX] GasVolume: missing gas changes w/o stops.
jDG
parents: 342
diff changeset
2265 //---- Do stop:
0
heinrichsweikamp
parents:
diff changeset
2266 depth = newDepth;
heinrichsweikamp
parents:
diff changeset
2267
289
30edd177016a [mq]: 2015-05-29_02-40-44_r288+.diff
jdg@air
parents: 288
diff changeset
2268 //---- Usage at stop:
30edd177016a [mq]: 2015-05-29_02-40-44_r288+.diff
jdg@air
parents: 288
diff changeset
2269 volumes[gas] += (depth*0.1 + 1.0) // depth --> bar.
30edd177016a [mq]: 2015-05-29_02-40-44_r288+.diff
jdg@air
parents: 288
diff changeset
2270 * time // in minutes.
30edd177016a [mq]: 2015-05-29_02-40-44_r288+.diff
jdg@air
parents: 288
diff changeset
2271 * deco_usage; // in xxx / min @ 1bar.
0
heinrichsweikamp
parents:
diff changeset
2272 }
heinrichsweikamp
parents:
diff changeset
2273
heinrichsweikamp
parents:
diff changeset
2274 // From last stop to surface
289
30edd177016a [mq]: 2015-05-29_02-40-44_r288+.diff
jdg@air
parents: 288
diff changeset
2275 volumes[gas] += (depth*0.05 + 1.0) // avg depth --> bar.
30edd177016a [mq]: 2015-05-29_02-40-44_r288+.diff
jdg@air
parents: 288
diff changeset
2276 * depth * 0.1 // time to surface, in minutes.
30edd177016a [mq]: 2015-05-29_02-40-44_r288+.diff
jdg@air
parents: 288
diff changeset
2277 * deco_usage; // in xxx / min @ 1bar.
0
heinrichsweikamp
parents:
diff changeset
2278
heinrichsweikamp
parents:
diff changeset
2279 //---- convert results for the ASM interface -----------------------------
289
30edd177016a [mq]: 2015-05-29_02-40-44_r288+.diff
jdg@air
parents: 288
diff changeset
2280 done:
0
heinrichsweikamp
parents:
diff changeset
2281 for(i=0; i<NUM_GAS; ++i)
heinrichsweikamp
parents:
diff changeset
2282 if( volumes[i] > 65534.0 )
heinrichsweikamp
parents:
diff changeset
2283 int_O_gas_volumes[i] = 65535;
heinrichsweikamp
parents:
diff changeset
2284 else
heinrichsweikamp
parents:
diff changeset
2285 int_O_gas_volumes[i] = (unsigned short)(volumes[i] + 0.5);
heinrichsweikamp
parents:
diff changeset
2286 }
heinrichsweikamp
parents:
diff changeset
2287
heinrichsweikamp
parents:
diff changeset
2288 //////////////////////////////////////////////////////////////////////////////
heinrichsweikamp
parents:
diff changeset
2289
heinrichsweikamp
parents:
diff changeset
2290 void deco_push_tissues_to_vault(void)
heinrichsweikamp
parents:
diff changeset
2291 {
heinrichsweikamp
parents:
diff changeset
2292 overlay unsigned char x;
heinrichsweikamp
parents:
diff changeset
2293 RESET_C_STACK
heinrichsweikamp
parents:
diff changeset
2294
heinrichsweikamp
parents:
diff changeset
2295 cns_vault = CNS_fraction;
heinrichsweikamp
parents:
diff changeset
2296 low_depth_vault = low_depth;
heinrichsweikamp
parents:
diff changeset
2297
heinrichsweikamp
parents:
diff changeset
2298 for (x=0;x<NUM_COMP;x++)
heinrichsweikamp
parents:
diff changeset
2299 {
heinrichsweikamp
parents:
diff changeset
2300 pres_tissue_N2_vault[x] = pres_tissue_N2[x];
heinrichsweikamp
parents:
diff changeset
2301 pres_tissue_He_vault[x] = pres_tissue_He[x];
heinrichsweikamp
parents:
diff changeset
2302 }
heinrichsweikamp
parents:
diff changeset
2303 }
heinrichsweikamp
parents:
diff changeset
2304
heinrichsweikamp
parents:
diff changeset
2305 void deco_pull_tissues_from_vault(void)
heinrichsweikamp
parents:
diff changeset
2306 {
heinrichsweikamp
parents:
diff changeset
2307 overlay unsigned char x;
heinrichsweikamp
parents:
diff changeset
2308 RESET_C_STACK
heinrichsweikamp
parents:
diff changeset
2309
heinrichsweikamp
parents:
diff changeset
2310 for (x=0; x<NUM_COMP; x++)
heinrichsweikamp
parents:
diff changeset
2311 {
heinrichsweikamp
parents:
diff changeset
2312 pres_tissue_N2[x] = pres_tissue_N2_vault[x];
heinrichsweikamp
parents:
diff changeset
2313 pres_tissue_He[x] = pres_tissue_He_vault[x];
heinrichsweikamp
parents:
diff changeset
2314 }
heinrichsweikamp
parents:
diff changeset
2315
heinrichsweikamp
parents:
diff changeset
2316 // Restore both CNS variable, too.
heinrichsweikamp
parents:
diff changeset
2317 CNS_fraction = cns_vault;
322
fe06f1d1a285 FIX 16bits CNS feedback: assert CNS up to 999%
jDG
parents: 313
diff changeset
2318 int_O_CNS_fraction = (unsigned short)(CNS_fraction * 100.0 + 0.5);
0
heinrichsweikamp
parents:
diff changeset
2319
heinrichsweikamp
parents:
diff changeset
2320 // GF history too:
heinrichsweikamp
parents:
diff changeset
2321 low_depth = low_depth_vault;
heinrichsweikamp
parents:
diff changeset
2322 locked_GF_step = GF_delta / low_depth;
heinrichsweikamp
parents:
diff changeset
2323 }
heinrichsweikamp
parents:
diff changeset
2324
heinrichsweikamp
parents:
diff changeset
2325 //////////////////////////////////////////////////////////////////////////////
heinrichsweikamp
parents:
diff changeset
2326 //
heinrichsweikamp
parents:
diff changeset
2327 #ifndef CROSS_COMPILE
heinrichsweikamp
parents:
diff changeset
2328 void main() {}
heinrichsweikamp
parents:
diff changeset
2329 #endif