diff options
author | Eugeniy Mikhailov <evgmik@gmail.com> | 2012-03-08 10:48:48 -0500 |
---|---|---|
committer | Eugeniy Mikhailov <evgmik@gmail.com> | 2012-03-08 10:48:48 -0500 |
commit | 3db38afc43b027340d582242acaca613f30b9d55 (patch) | |
tree | 05f060a07a07e31f3d84a5d7a926d80ce276dd63 | |
parent | b92c9b2e7dd9df7d4858ef16c1acf7b428aea674 (diff) | |
download | wgmr-3db38afc43b027340d582242acaca613f30b9d55.tar.gz wgmr-3db38afc43b027340d582242acaca613f30b9d55.zip |
added some description lines to the plot output
-rw-r--r-- | coupling_angles.m | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/coupling_angles.m b/coupling_angles.m index 1f5e7a8..c7f2cb9 100644 --- a/coupling_angles.m +++ b/coupling_angles.m @@ -20,7 +20,9 @@ n_MgF2_e = 1.38679; % Measured n_MgF2_p = 1.465; % p-polarization -n_disk=n_MgF2_p + +coupling_description='Rutile prism, MgF_{2} disk, p-polarization'; +n_disk=n_MgF2_p; %% critical angle for beam from prism to disk % recall n_d*sin(theta_disk)=n_prism*sin(theta_prism) where angles are counted from normal to the face @@ -143,6 +145,8 @@ text(0,1.1, str); str=sprintf('n_{prism}=%.3f',n_prism); text(0,1.2, str); +text(0, 1.3, coupling_description); + % force same aspect ratio for axis axis([-1,1,-0.5,1.5],'equal'); |