blob: 035a45135a2a8e5cce6d5e3aa423cd1707f94aed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// Exa 17.15
// To calculate bandwidth of Iub interface.
clc;
clear all;
Users=350;//no of users supported
ExpectedTraf=1.8; // From section 17.7 (in Kbps)
BHTraf=1.785;//Busy hour traffic in kbps
BTS=180;
//solution
IubBW=(ExpectedTraf*Users*BHTraf)/1000; // in Mbps
TotalBW=BTS*IubBW;
printf('Required total bandwidth of Iub Interface is %.2f Mbps \n ',TotalBW);
|