


Calculates the kinemtic viscosity [m^2/s] from the dynamic viscosity and density functions


0001 function new = SW_Kviscosity(T,S) 0002 % Calculates the kinemtic viscosity [m^2/s] from the dynamic viscosity and 0003 % density functions 0004 mu = SW_Viscosity(T,S); 0005 rho = SW_Density(T,S); 0006 new = mu./rho; 0007 end