1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
|
/* SPDX-License-Identifier: MIT-0 */
#include <assert.h>
#include <math.h>
#include "schedule.h"
#define SWITCH_INTERMEDIATE 1
const gas_t *best_gas(const double depth, const gas_t *gasses, const int nof_gasses)
{
const gas_t *best = NULL;
double mod_best = -1;
for (int i = 0; i < nof_gasses; i++) {
double mod = gas_mod(&gasses[i]);
if (depth <= mod && (mod_best == -1 || mod < mod_best)) {
best = &gasses[i];
mod_best = mod;
}
}
return best;
}
const gas_t *next_gas(const double depth, const gas_t *gasses, const int nof_gasses)
{
const gas_t *next = NULL;
double mod_best = 0;
for (int i = 0; i < nof_gasses; i++) {
double mod = gas_mod(&gasses[i]);
if (depth > mod && mod > mod_best) {
next = &gasses[i];
mod_best = mod;
}
}
return next;
}
int direct_ascent(const decostate_t *ds, const double depth, const double time, const gas_t *gas)
{
decostate_t ds_ = *ds;
assert(ds_.firststop == -1);
add_segment_ascdec(&ds_, depth, SURFACE_PRESSURE, time, gas);
return ceiling(&ds_, ds_.gfhi) <= SURFACE_PRESSURE;
}
void simulate_dive(decostate_t *ds, waypoint_t *waypoints, const int nof_waypoints, segment_callback_t seg_cb)
{
double depth = SURFACE_PRESSURE;
double runtime = 0;
for (int i = 0; i < nof_waypoints; i++) {
double d = waypoints[i].depth;
double t = waypoints[i].time;
const gas_t *g = waypoints[i].gas;
if (d != depth) {
runtime += add_segment_ascdec(ds, depth, d, t, g);
depth = d;
} else {
runtime += add_segment_const(ds, d, t, g);
}
seg_cb(ds, (waypoint_t){.depth = d, .time = t, .gas = g}, SEG_DIVE);
}
}
double calc_ndl(decostate_t *ds, const double depth, const double ascrate, const gas_t *gas)
{
decostate_t ds_ = *ds;
double ndl = 0;
while (ndl < 360) {
double tmp = add_segment_const(&ds_, depth, 1, gas);
if (!direct_ascent(&ds_, depth, gauge_depth(depth) / ascrate, gas))
break;
ndl += tmp;
}
return ndl;
}
decoinfo_t calc_deco(decostate_t *ds, const double start_depth, const gas_t *start_gas, const gas_t *deco_gasses,
const int nof_gasses, segment_callback_t seg_cb)
{
decoinfo_t ret = {.tts = 0, .ndl = 0};
/* setup start parameters */
double depth = start_depth;
const gas_t *gas = start_gas;
const double asc_per_min = msw_to_bar(9);
/* check if direct ascent is possible */
if (direct_ascent(ds, depth, gauge_depth(depth) / asc_per_min, gas)) {
ret.ndl = calc_ndl(ds, depth, asc_per_min, gas);
return ret;
}
/* determine first stop */
double current_gf = get_gf(ds, depth);
if (ds->firststop == -1)
ds->firststop = ceiling(ds, current_gf);
/* switch to best deco gas if there is one available */
const gas_t *best = best_gas(depth, deco_gasses, nof_gasses);
if (best)
gas = best;
/* alternate between ascending and stopping */
for (;;) {
/* ascend */
for (;;) {
double stopdep = ceiling(ds, current_gf);
const gas_t *next = next_gas(depth, deco_gasses, nof_gasses);
if (SWITCH_INTERMEDIATE && next) {
/* determine switch depth */
double switch_depth = round_ceiling(ds, next->mod) - ds->ceil_multiple;
assert(switch_depth <= next->mod);
if (switch_depth > stopdep) {
/* ascend to switch depth */
ret.tts += add_segment_ascdec(ds, depth, switch_depth, (depth - switch_depth) / asc_per_min, gas);
seg_cb(
ds,
(waypoint_t){.depth = switch_depth, .time = (depth - switch_depth) / asc_per_min, .gas = gas},
SEG_TRAVEL);
depth = switch_depth;
current_gf = get_gf(ds, depth);
/* switch gas */
gas = next;
add_segment_const(ds, switch_depth, 1, gas);
seg_cb(ds, (waypoint_t){.depth = depth, .time = 1, .gas = gas}, SEG_GAS_SWITCH);
continue;
}
}
ret.tts += add_segment_ascdec(ds, depth, stopdep, (depth - stopdep) / asc_per_min, gas);
if (stopdep <= SURFACE_PRESSURE)
seg_cb(ds, (waypoint_t){.depth = stopdep, .time = (depth - stopdep) / asc_per_min, .gas = gas},
SEG_SURFACE);
else
seg_cb(ds, (waypoint_t){.depth = stopdep, .time = (depth - stopdep) / asc_per_min, .gas = gas},
SEG_TRAVEL);
depth = stopdep;
current_gf = get_gf(ds, depth);
/* if the ceiling moved while we ascended, keep ascending */
if (depth > ceiling(ds, current_gf))
continue;
break;
}
/* terminate if we surfaced */
if (depth <= SURFACE_PRESSURE)
break;
/* switch to better gas if available */
const gas_t *best = best_gas(depth, deco_gasses, nof_gasses);
if (best)
gas = best;
/* stop */
double stoplen = 0;
while (ceiling(ds, current_gf) == depth)
stoplen += add_segment_const(ds, depth, 1, gas);
ret.tts += stoplen;
seg_cb(ds, (waypoint_t){.depth = depth, .time = stoplen, .gas = gas}, SEG_DECO_STOP);
}
return ret;
}
|