diff options
Diffstat (limited to '3756/CH1/EX1.16/Ex1_16.sce')
-rw-r--r-- | 3756/CH1/EX1.16/Ex1_16.sce | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/3756/CH1/EX1.16/Ex1_16.sce b/3756/CH1/EX1.16/Ex1_16.sce new file mode 100644 index 000000000..09bc5e695 --- /dev/null +++ b/3756/CH1/EX1.16/Ex1_16.sce @@ -0,0 +1,22 @@ +clc +// +// +// + +//Variable declaration +mu=1.4 //Refractive index +cosr=0.8631 +t=0.01*10**-3 //thickness +lambda1=4000*10**-10 //Wavelength 1 +lambda2=5000*10**-10 //Wavelength 2 + + +//Calculations +n1=(2*mu*t*cosr)/lambda1 +n2=(2*mu*t*cosr)/lambda2 +deln=(n1)-(n2) + + +//Result +printf("\n The number of dark bands seen betwween 4000 A and 5000A is %i ",deln) + |