top of page
exercise 1.2
ZIP with MATLAB scripts and note:
example 1.1 notes:
c0=299792458 % [m/s] light velocity in vacuum
etha0=120*pi
er=2.54 % polystyrene relative permittivity
E0=5 % [V/m] electric field amplitude
f0=2.4e9 % [Hz]
x1=.1 % [m]
x2=.15 % [m]
%% a) amplitude and direction of magnetic field
% Electric field
lambda0=c0/f0
k0=2*pi/lambda0
% Ey=E0*cos(2*pi*f0*t-k0*x)
etha=etha0/er^.5
H0=E0/etha
%% b) phase and velocity
vp=c0/er^.5
%% c) wavelength
lambda=vp/f0
%% d) phase shift bnetween x1=.1m and x2=.15m
dphi=k0*(x2-x1)
c0 = 299792458
etha0 = 3.769911184307751e+02
er = 2.540000000000000
E0 = 5
f0 = 2.400000000000000e+09
x1 = 0.100000000000000
x2 = 0.150000000000000
lambda0 = 0.124913524166667
k0 = 50.300280526840361
etha = 2.365452657449169e+02
H0 = 0.021137603343082
vp = 1.881065181087376e+08
lambda = 0.078377715878641
dphi = 2.515014026342017
bottom of page