Home > utilities > SW_Kviscosity.m

SW_Kviscosity

PURPOSE ^

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

SYNOPSIS ^

function new = SW_Kviscosity(T,S)

DESCRIPTION ^

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

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

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

Generated on Wed 20-Feb-2019 16:06:01 by m2html © 2005