diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /2243/CH15/EX15.3 | |
download | Scilab-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-x | 2243/CH15/EX15.3/Ex15_3.sce | 10 | ||||
-rwxr-xr-x | 2243/CH15/EX15.3/Res15_3.txt | 1 |
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 |