summaryrefslogtreecommitdiff
path: root/2243/CH15/EX15.3
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2243/CH15/EX15.3
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 '2243/CH15/EX15.3')
-rwxr-xr-x2243/CH15/EX15.3/Ex15_3.sce10
-rwxr-xr-x2243/CH15/EX15.3/Res15_3.txt1
2 files changed, 11 insertions, 0 deletions
diff --git a/2243/CH15/EX15.3/Ex15_3.sce b/2243/CH15/EX15.3/Ex15_3.sce
new file mode 100755
index 000000000..6dc4eeffe
--- /dev/null
+++ b/2243/CH15/EX15.3/Ex15_3.sce
@@ -0,0 +1,10 @@
+clc();
+clear;
+//Given :
+lambda = 1.25; // wavelength in mu_m
+n1 = 1.462; // refractive index of core
+n2 = 1.457; // refractive index of cladding
+// Single mode propogation : (2*pi*a*sqrt(n1^2 - n2^2))/lambda < 2.405
+a = (2.405*lambda)/(2*%pi*sqrt(n1^2 - n2^2)); // radius in mu_m
+d = a*2; // diameter in mu_m
+printf("Limiting diameter = %.2f mu_m",d);
diff --git a/2243/CH15/EX15.3/Res15_3.txt b/2243/CH15/EX15.3/Res15_3.txt
new file mode 100755
index 000000000..551f1aba5
--- /dev/null
+++ b/2243/CH15/EX15.3/Res15_3.txt
@@ -0,0 +1 @@
+Limiting diameter = 7.92 mu m \ No newline at end of file