%%html
<!--Script block to left align Markdown Tables-->
<style>
table {margin-left: 0 !important;}
</style>
Download (right-click, save target as ...) this page as a jupyterlab notebook from: Lab24-TH
LAST NAME, FIRST NAME
R00000000
ENGR 1330 Exercise Set 24 - Homework
Diver with Computer |
---|
Scuba divers circa 1980's used to memorize dive tables which provided safe depth-duration combinations (e.g. 60 feet for 60 minutes). Commerical divers used similar tables. A bounce would occur when a diver at depth notices a shiny object and descends deeper for a very short interval to recover the object - usually something worthless, but occassionally something very valuable. Bounce dives can be quite dangerous - more so if the diver is trying to adapt a memorized dive table to his/her current situation, hence the development of dive computers.
The US Navy started development of dive computers in the 1950's to relieve the human of the somewhat tricky task of multi-level dive planning and monitoring. The first digital dive computer was a laboratory model, the XDC-1, based on a desktop electronic calculator, converted to run a DCIEM four-tissue algorithm in 1975. It used pneumofathometer depth input from surface-supplied divers. In 1976 the diving equipment company Dacor developed and marketed a digital dive computer which used a table lookup based on stored US Navy tables rather than a real-time tissue gas saturation model. The Dacor Dive Computer (DDC), displayed output on light-emitting diodes for: current depth; elapsed dive time; surface interval; maximum depth of the dive; repetitive dive data; ascent rate, with a warning for exceeding 20 metres per minute; warning when no-decompression limit is reached; battery low warning light; and required decompression. In the subsequent decade several firms developed and marketed dive computers; by 1989, the advent of dive computers had not met with what might be considered widespread acceptance. Combined with the general mistrust, at the time, of taking a piece of electronics that your life might depend upon underwater, there were also objections expressed ranging from dive resorts felt that the increased bottom time would upset their boat and meal schedules, to that experienced divers felt that the increased bottom time would, regardless of the claims, result in many more cases of decompression sickness.
By 2015 sophisticated dive computers using real-time tissue gas saturation models were commonplace and comparatively inexpensive (circa 2020 computers are programmable for exotic gasses - greatly relieving the diver's workload in planning and monitoring multi-level (bounce) dives).
Helium-Oxygen Dive Computer Readout |
---|
Using the data below develop a data-model for a dive computer that uses Dacor's original approach (i.e. table lookup in this case replaced by an data model). The table lists allowable time at prescribed depths for a recreational diver with a safety decompression stop at 10 feet depth.
Build a predictor-response type data model.
Part 1:
Make a data model using Depth as a predictor of Time ($Time = \beta_{0}+\beta_{1}*Depth$) for a dive with and without safety stops
Plot your models and the data on the same plot. Report your values of the parameters.
#
Part 2:
Make a data model using Depth as a predictor of Time ($Time = \beta_{0}+\beta_{1}*log(Depth)$) for a dive with and without safety stops.
Plot your models and the data on the same plot. Report your values of the parameters.
In your opinion which mapping of Depth (arithmetic or logarithmic) produces a more useful graph?
#
Part 3:
Using your preferred model, report the time a diver can spend at 65 feet with and without a safety stop.
#