


OX_UNITS converts oxygen from ml/l to micromol/kg
using the potential density of water sample
Usage: o = ox_units(ox,salt,potentialtemp);
Paul Robbins 1995

0001 function o = ox_units(ox,salt,temp); 0002 % OX_UNITS converts oxygen from ml/l to micromol/kg 0003 % using the potential density of water sample 0004 % 0005 % Usage: o = ox_units(ox,salt,potentialtemp); 0006 % 0007 % Paul Robbins 1995 0008 rho = sw_dens(salt,temp,0); 0009 o = ox*1e3./rho/.022403; 0010