summaryrefslogtreecommitdiff
path: root/287/CH14/EX14.2/Exa14_2.sci
blob: 50ac4ff92e5b1cf01539b3021331bc27295d9a8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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)')