A few thoughts on Oxygen Toxicity

Recently, at Subsurface, we decided to look into the calculations of oxygen toxicity related to diving. Here is what I learned (admittedly, not too much). According to what we could find on the inter-webs, there are two things to consider: The effect on your brain (the CNS value) and on you lungs (OTU for oxygen toxicity unit). The former seems to be simply a table look-up, so there is not much to do about it. The best we could do (thanks Willem) was to do a linear interpolation of table values.

For OTU, there is some thing to calculate. The empirical basis seems to be a measurement of the reduction of effective lung capacity after breathing O2 at higher partial pressure for an extended period of time. As far as we could tell, the current theory goes back the the thesis of Clark and his supervisor Lambertsen.

They found that there is no effect as long as the partial pressure of O2 stays below 0.5bar and any effect is proportional to the excess of partial pressure over 0.5bar and, according to their fit, it is also proportional to the exposure time to the power 6/5, i.e.

\((p-0.5bar) t^{6/5}\)

The power slightly bigger than 1 sounds somewhat believable since a lung that already suffers could be more susceptible to further damage. This value was obtained by plotting their data on a log-log-scale, fitting a straight line and reading off the slope of that straight line as the exponent thanks to

\(\log((p-0.5bar) t^{6/5}) = \log(p-0.5bar) + \frac 65 \log(t).\)

You can see this in their figure 18A on page 164. There you will also spot that the linear regression is not really good. This was also pointed out later in a more comprehensive study of the Naval Medical Research Institute that found that later data but also the original data of Clark and Lambertsen was more compatible with an exponent of 1. But the 6/5 stuck in the literature and all that follows below is non-trivial only because the power is different from 1.

What people then did was to take the 5/6-th root of this expression as the definition of the oxygen toxicity unit (normalised to a partial pressure of 1bar), i.e.

\(OTU = \left(\frac{p-0.5bar}{0.5bar}\right)^{5/6}t.\)

For time varying O2 partial pressure this could then be integrated over time, as for example proposed by Erik Baker (yes, the Erik Baker of VPM-B). Again, he publishes an implementation in his favourite programming language, FORTRAN. Well except, that he uses the reciprocal of that fraction and raises it to the power -5/6, with the additional benefit of risking a division by zero at the boundary case of partial pressure 0.5bar.

And of course, integrating this 5/6-th root makes no sense: You still get something linear in time whereas originally it was found that the damage progresses faster than time!

As you are integrating, you can also write a closed formula for a time segment where the partial pressure changes linearly in time (like during an open circuit dive during an ascent or descent). You need to compute

\(\frac 1{p_b-p_a}\int_{p_a}^{p_b} ((p-0.5bar)/0.5bar)^{5/6}dp = \frac 3{11(p_b-p_a)} \left.\left(\frac{p-0.5bar}{0.5bar}\right)^{11/6}\right|_{p_a}^{p_b}\)

This is Baker’s equation 2. Computationally, this formula has the disadvantage that a constant partial pressure is no longer a special case for this formula as one encounters a 0/0 floating point exception. Of course, taking a proper limit yields the above equation for the OTU but this is not convenient in a computer program.

So, what we did was to introduce better variables \(p_m=(p_a+p_b)/2\) and \(\delta = (p_b-p_a)/p_m\) in the integral expression above and then expand in powers of \(\delta\). By symmetry, only even powers appear and so a two term quadratic expression if good up to \(O(\delta^4)\), by far good enough for our purposes. This yields the improved expression

\(OTU =  \left(\frac{p_m-0.5bar}{0.5bar}\right)^{5/6}t\left(1- \frac{5(p_b-p_a)^2}{216((p_m-0.5bar)/0.5bar)^2}\right)+O(\delta^4).\)

that can be calculated easily without treating the case \(p_a=p_b\) separately.

Once more, all this is very likely purely academic as it is not so easy to do dives that get into the regime where OTU matters at all. That is probably also why the empirical data is so poor.

Even more recently, there was a report on new results in this area on rebreather.org. Their study produced data summarised in these plots:

Obviously, this data clearly suggests to fit it by some convoluted formula that yields a line that I manually erased from the graphs. Guess what it is and then check out the original link.

3 thoughts on “A few thoughts on Oxygen Toxicity”

  1. Pingback: URL

Leave a Reply

Your email address will not be published. Required fields are marked *