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 /287/CH14/EX14.2/Exa14_2.sci | |
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 '287/CH14/EX14.2/Exa14_2.sci')
-rwxr-xr-x | 287/CH14/EX14.2/Exa14_2.sci | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/287/CH14/EX14.2/Exa14_2.sci b/287/CH14/EX14.2/Exa14_2.sci new file mode 100755 index 000000000..50ac4ff92 --- /dev/null +++ b/287/CH14/EX14.2/Exa14_2.sci @@ -0,0 +1,23 @@ +//Determine the following parameters.
+
+t = 120;
+d = 24;
+BH = 5;
+BW = 5000;
+RFw = 200;
+S = 60000;
+A = 500;
+
+E = t/(d*BH*60);
+Nrf = BW/RFw;
+Srf = Nrf/(4*3);
+TCH = Srf*8;
+Tbts = 9.82*3; //Using Erlang B table
+Sbts = (Tbts*1000)/TCH;
+BTSn = S/Sbts;
+R = sqrt(A/(BTSn*Srf));
+
+disp(E, 'Erlangs per subscriber')
+disp(TCH, 'Traffic Channels per sector')
+disp(BTSn, 'No. of BTS in a zone')
+disp(R, 'Avg. Hexagonal cell radius (in Km)')
|