# Dive to 25 m for 20 min followed by safety stop at 5 metres for 3 min
d <- dive(c(25,20),c(5,3))
plot(d)
# Bounce dive to 20 metres
d <- dive(20)
# GAS SWITCHING
# Dive to 18 m for 30 min on air,
# switch to Nitrox 36, ascend to 5 metres, safety stop
d <- dive(c(18, 30), nitrox(0.36), c(5,3))
# Same as above, but ascend to 5 m on air, then switch gas
d <- dive(c(18, 30), 5, nitrox(0.36), c(5,3))
# ASCENT RATES
# Ascent rate 18 m/min below 9 metres, 6m/min above 9 metres
d <- dive(c(30, 12), ascent(18), 9, ascent(6), c(5,3))
# UPLOADED DIVE PROFILE
data(baron)
pro <- baron[, 1:2]
d <- dive(pro)
Run the code above in your browser using DataLab