summaryrefslogtreecommitdiff
path: root/beam_tracing/octave/fresnel_reflection.m
diff options
context:
space:
mode:
authorEugeniy Mikhailov <evgmik@gmail.com>2013-02-28 14:58:35 -0500
committerEugeniy Mikhailov <evgmik@gmail.com>2013-02-28 14:58:35 -0500
commita08ed173692ce16b79002733003049ec32a02485 (patch)
tree5d0d61402f7315c257179a4a6374e3a0d1673971 /beam_tracing/octave/fresnel_reflection.m
parentbc8e19c22f310deac11cd1aea7eb3e6563099bce (diff)
downloadwgmr-a08ed173692ce16b79002733003049ec32a02485.tar.gz
wgmr-a08ed173692ce16b79002733003049ec32a02485.zip
moved octave using code to separate folder
Diffstat (limited to 'beam_tracing/octave/fresnel_reflection.m')
-rw-r--r--beam_tracing/octave/fresnel_reflection.m28
1 files changed, 28 insertions, 0 deletions
diff --git a/beam_tracing/octave/fresnel_reflection.m b/beam_tracing/octave/fresnel_reflection.m
new file mode 100644
index 0000000..347d60b
--- /dev/null
+++ b/beam_tracing/octave/fresnel_reflection.m
@@ -0,0 +1,28 @@
+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