diff options
Diffstat (limited to '273/CH7/EX7.1')
-rwxr-xr-x | 273/CH7/EX7.1/ex7_1sce.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/273/CH7/EX7.1/ex7_1sce.sce b/273/CH7/EX7.1/ex7_1sce.sce new file mode 100755 index 000000000..3498b6db4 --- /dev/null +++ b/273/CH7/EX7.1/ex7_1sce.sce @@ -0,0 +1,11 @@ +clc;clear;
+//Example 7.1
+//plane parallel thin film
+
+//given values
+x=5890*10^-10;//wavelength of light in metre
+n=1.5;//refractive index
+r=60*%pi/180;//angle of refraction in degree
+ //calculation
+t=x/(2*n*cos(r));
+disp(t*10^6,'thickness of plate (in micrometre) is:');
\ No newline at end of file |