summaryrefslogtreecommitdiff
path: root/fresnel_reflection.m
diff options
context:
space:
mode:
authorEugeniy Mikhailov <evgmik@gmail.com>2013-01-16 14:27:10 -0500
committerEugeniy Mikhailov <evgmik@gmail.com>2013-01-16 14:27:10 -0500
commit37d09478a8fca4e1229dcb1246c9f23f1f6118df (patch)
tree79e2d5f9179987b46b5b743c552c29f94ffb999e /fresnel_reflection.m
parent28ef703f718ce7f540864ca8f9a301f8d7d3f3e0 (diff)
downloadwgmr-37d09478a8fca4e1229dcb1246c9f23f1f6118df.tar.gz
wgmr-37d09478a8fca4e1229dcb1246c9f23f1f6118df.zip
move code to directory with speaking name
Diffstat (limited to 'fresnel_reflection.m')
-rw-r--r--fresnel_reflection.m28
1 files changed, 0 insertions, 28 deletions
diff --git a/fresnel_reflection.m b/fresnel_reflection.m
deleted file mode 100644
index 347d60b..0000000
--- a/fresnel_reflection.m
+++ /dev/null
@@ -1,28 +0,0 @@
-function [R, theta_t] = fresnel_reflection(n1, n2, theta_i)
-%% calculates intensity reflection coefficient for s and p polarizations
-%% for light travelling from material with index of refraction n1 to material with n2
-%% theta_i - incident angle in medium 1 with respect to normal, could be a vector
-%% R - coefficients of reflection array [Rs, Rp]
-%% theta_t - transmitted/refracted angle in medium 2 with respect to normal
-
- if ( size(theta_i)(1) != 1)
- error('theta_i must be a vector or scalar');
- end
-
- %% see http://en.wikipedia.org/wiki/Fresnel_equations
- %% refraction angle or angle of transmitted beam with respect to normal
- sin_theta_t=n1/n2*sin(theta_i);
- %% special cases: total internal reflection
- indx = (abs(sin_theta_t) >= 1);
- sin_theta_t( indx ) = sign( sin_theta_t(indx) );
-
-
- theta_t = asin(sin_theta_t); % angle of refraction or transmitted beam
-
- cos_theta_t = cos( theta_t );
- cos_theta_i = cos( theta_i );
-
- Rs = ( ( n1*cos_theta_i - n2*cos_theta_t ) ./ ( n1*cos_theta_i + n2*cos_theta_t ) ).^2;
- Rp = ( ( n1*cos_theta_t - n2*cos_theta_i ) ./ ( n1*cos_theta_t + n2*cos_theta_i ) ).^2;
- R = [Rs; Rp];
-end