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 /1061/CH10/EX10.8/Ex10_8.sce | |
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 '1061/CH10/EX10.8/Ex10_8.sce')
-rwxr-xr-x | 1061/CH10/EX10.8/Ex10_8.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/1061/CH10/EX10.8/Ex10_8.sce b/1061/CH10/EX10.8/Ex10_8.sce new file mode 100755 index 000000000..d6444caac --- /dev/null +++ b/1061/CH10/EX10.8/Ex10_8.sce @@ -0,0 +1,13 @@ +//Ex:10.8
+clc;
+clear;
+close;
+Br=50*10^6;// data rate in b/s
+c=3*10^8;// speed of light in m/s
+n1=1.47;//
+dl=0.02;//
+n12=n1*dl;// the difference b/w n1 and n2
+L_si=(0.35*c)/(n12*Br);// transmission distance for Si fiber
+L_GI=(2.8*c*n1^2)/(2*n1*n12*Br);// transmission distance for GRIN fiber
+printf("The transmission distance for Si fiber =%f m", L_si);
+printf("\n The transmission distance for GRIN fiber =%f m", L_GI);
\ No newline at end of file |