blob: 1c9b268f7115d4a2793c98fc53fbebfa906795b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//Exa 2.5
//To find traffic intensity in Erlangs and CCS.
//Refer-Table 2.1(page No 28): Traffic data used to estimate traffic intensity
clc;
clear all;
time=90; //in minutes
calls=10; //no of calls in 90mins
//solution
CR=calls/(time/60); //call arrival rate in calls/hour
tavg=(60+74+80+90+92+70+96+48+64+126)/10; //average call holding time in sec per call
I= CR*(tavg/3600); //traffic intensity in Erlangs
printf('Traffic Intensity is %.3f Erlangs = %.2f CCS \n ',I,I*36);
|