Anda di halaman 1dari 4

Assignment

Draw the Magnitude graph of coefficients for parallel


polarization as a function of incident angle for Reflection.

Supervisor : Dr. Muhammad Arshad Fiaz


Submitted by : Farhan Mumtaz
Mphil-2nd Sem
clear all
clc
eps_1=1;
eps_2=81;
i=1;
for theta=0:90;
Gamma_num=-cosd(theta)+sqrt(eps_1/eps_2)*sqrt(1-
(eps_1/eps_2)*sind(theta)^2);
Gamma_den=cosd(theta)+sqrt(eps_1/eps_2)*sqrt(1-(eps_1/eps_2)*sind(theta)^2);
Gamma(i)=Gamma_num/Gamma_den;
i=i+1;

end
theta=0:90;
plot(theta,abs(Gamma),'b-..')
xlabel('\theta_i')
ylabel('\Gamma')

Code
Graph
The End

Anda mungkin juga menyukai