diff options
Diffstat (limited to 'axial/sdie.m')
-rw-r--r-- | axial/sdie.m | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/axial/sdie.m b/axial/sdie.m new file mode 100644 index 0000000..17f5235 --- /dev/null +++ b/axial/sdie.m @@ -0,0 +1,25 @@ +%----------------------------------------------------------------
+% Returns the ABCD matrix for propagation througe a spherical
+% dielectric interface.
+%
+% SYNTAX: abcd=sdie(R,n1,n2);
+%
+% R = Interface radius of curvature. R is positive when the
+% the interface curves toward the direction from which
+% the beam comes, negative otherwise.
+% n1 = index of refraction of material being left
+% n2 = index of refraction of material being entered
+%
+% abcd = | 1 0 |
+% | -(n1-n2)/n2/R n1/n2 |
+%
+%----------------------------------------------------------------
+% SYNTAX: abcd=sdie(R,n1,n2);
+%----------------------------------------------------------------
+
+function abcd=sdie(R,n1,n2)
+
+abcd=[
+ 1 0
+ -(n1-n2)/n2/R n1/n2
+];
\ No newline at end of file |