% EPS_ICE_LIEBE93 Dielectric constant for pure ice according to Liebe 93 % % Provides the complex dielectric constant following the Liebe 1993 % paper. % % Another parameterisation is provided by *epsice*. % % FORMAT e = eps_ice_liebe93( f, t ) % % OUT e Complex dielectric constant % IN f Frequency % t Temperature % 2004-10-22 Created by Patrick Eriksson function e = eps_ice_liebe93( f, t ) theta = 300 ./ t; fghz = f/1e9; a = ( theta - 1 ) * exp( 17 - 22.1*theta ); b = 1e-5 * ( (0.233/(1-0.993/theta)).^2 + 6.33/theta - 1.31 ); e = 3.15 + i * ( a./fghz + b*fghz );