diff options
Diffstat (limited to '3537/CH1/EX1.10/Ex1_10.sce')
-rw-r--r-- | 3537/CH1/EX1.10/Ex1_10.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/3537/CH1/EX1.10/Ex1_10.sce b/3537/CH1/EX1.10/Ex1_10.sce new file mode 100644 index 000000000..7f2dafb96 --- /dev/null +++ b/3537/CH1/EX1.10/Ex1_10.sce @@ -0,0 +1,11 @@ +//Example 1_10
+clc();
+clear;
+//To Find the thickness of the glass plate
+lamda=4800 //units in Angstrom
+lamda=4800*10^-10 //units in mts
+n=5
+u1=1.4 //first refractive index
+u2=1.7 //second refractive index
+t=(n*lamda)/(u2-u1) //units in mts
+printf("thickness of glass plate is %f mts",t)
|