summaryrefslogtreecommitdiff
path: root/1847/CH2/EX2.25/Ch02Ex25.sce
blob: 42eb8f3037f050d1f1cf31bb3fc7e25b09bd029d (plain)
1
2
3
4
5
6
7
8
9
10
// Scilab Code Ex2.25:: Page-2.19 (2009)
clc; clear;
lambda = 5890e-008;     // Wavelength of light used, cm
mu = 1.5;   // Refractive index of material sheet
// As shift = 9*lambda*D/d = D/d*(mu - 1)*t, solving for t
t = 9*lambda/(mu - 1);    // Thickness of the glass sheet, cm
printf("\nThe thickness of the glass sheet = %4.2e cm", t);

// Result 
// The thickness of the glass sheet = 1.06e-003 cm