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 /1619/CH2/EX2.6.5 | |
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 '1619/CH2/EX2.6.5')
-rwxr-xr-x | 1619/CH2/EX2.6.5/Example2_6_5.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/1619/CH2/EX2.6.5/Example2_6_5.sce b/1619/CH2/EX2.6.5/Example2_6_5.sce new file mode 100755 index 000000000..559f85f42 --- /dev/null +++ b/1619/CH2/EX2.6.5/Example2_6_5.sce @@ -0,0 +1,19 @@ +//Example 2.6.5 page 2.35
+
+clc;
+clear;
+
+L= 5; //in KM
+n1= 1.5;
+del= 0.01;
+c= 3*10^8; // in m/s
+delta_t = (L*n1*del)/c;
+delta_t=delta_t*10^12; //convertin to nano secs...
+printf("The delay difference is %.1f ns",delta_t);
+sigma= L*n1*del/(2*sqrt(3)*c);
+sigma=sigma*10^12; //convertin to nano secs...
+printf("\n\nThe r.m.s pulse broadening is %.2f ns",sigma);
+B= 0.2/sigma*1000; //in Mz
+printf("\n\nThe maximum bit rate is %.2f MBits/sec",B);
+BLP = B*5;
+printf("\n\nThe Bandwidth-Length is %.2f MHz.Km",BLP);
|