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 /848/CH3/EX3.8 | |
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 '848/CH3/EX3.8')
-rwxr-xr-x | 848/CH3/EX3.8/Example3_8.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/848/CH3/EX3.8/Example3_8.sce b/848/CH3/EX3.8/Example3_8.sce new file mode 100755 index 000000000..f54f7c0d7 --- /dev/null +++ b/848/CH3/EX3.8/Example3_8.sce @@ -0,0 +1,15 @@ +//clear//
+//Caption:Program to Find out Waveguide Dispersion
+//Example3.8
+//page110
+clear;
+clc;
+n2 = 1.48; //index of cladding
+delta = 0.002; //index difference
+Lamda = 1320e-09; //Wavelength in meters
+V_dVb_dV = 0.26; //The value in square brackets for v = 2.4
+C =3e08;//Enter the velocity of light in free space
+Dwg_Lamda = -(((n2*delta)/C)*(1/Lamda))*V_dVb_dV
+disp(Dwg_Lamda*1e06,'The waveguide dispersion in ps/nm.km');
+//RESULTS
+//The waveguide dispersion in ps/nm.km = - 1.9434343
|