diff options
Diffstat (limited to '854/CH14/EX14.5/Example14_5.sce')
-rwxr-xr-x | 854/CH14/EX14.5/Example14_5.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/854/CH14/EX14.5/Example14_5.sce b/854/CH14/EX14.5/Example14_5.sce new file mode 100755 index 000000000..ecedd94d4 --- /dev/null +++ b/854/CH14/EX14.5/Example14_5.sce @@ -0,0 +1,14 @@ +//clear//
+//Caption: Program to determine the maximum allowable refractive index of the slab material
+//Example14.5
+//page 517
+clear;
+clc;
+Lambda = 1.30e-06;//wavelength range over which single-mode operation
+d = 5e-06;//slab thickness in metre
+n2 = 1.45; //refractive index of the slab material
+n1 = sqrt((Lambda/(2*d))^2+n2^2);
+disp(n1,'The maximum allowable refractive index of the slab material n1=')
+//Result
+//The maximum allowable refractive index of the slab material n1=
+// 1.4558159
|