summaryrefslogtreecommitdiff
path: root/1646/CH9/EX9.6
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1646/CH9/EX9.6
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '1646/CH9/EX9.6')
-rwxr-xr-x1646/CH9/EX9.6/Ch09Ex6.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/1646/CH9/EX9.6/Ch09Ex6.sce b/1646/CH9/EX9.6/Ch09Ex6.sce
new file mode 100755
index 000000000..0b8b646d7
--- /dev/null
+++ b/1646/CH9/EX9.6/Ch09Ex6.sce
@@ -0,0 +1,15 @@
+// Scilab Code Ex9.6: Page-466 (2011)
+clc;clear;
+mu1 = 1.466; // Refractive index of core
+mu2 = 1.460; // Refractive index of cladding
+v = 2.4;....// Cut-off parameter of the optical fibre
+lambda = 0.8e-006;....// Operating wavelength, m
+NA = sqrt(mu1^2-mu2^2);
+printf("\nThe NA of optical fibre = %4.2f", NA) ;
+// Asthe cut-off parameter v of the optical fibre, v = 2*%pi*a*sqrt(mu1^2-mu2^2)/lambda, solving for a
+a = lambda*v/(2*%pi*sqrt(mu1^2-mu2^2));
+printf("\nThe core radius of the optical fibre = %4.2e micron", a/1e-006);
+
+// Result
+// The NA of optical fibre = 0.13
+// The core radius of the optical fibre = 2.31e+00 micron