summaryrefslogtreecommitdiff
path: root/3446/CH2/EX2.4/Ex2_4.sce
blob: 4792b289498de65b1da7c7e972b92e78d8599160 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Exa 2.4 
 //To find traffic intensity.

clc;
clear all;

Ht=120;  //Holding time in seconds
CR=2;  //call rate per hour

//solution
//Traffic Intensity(Erlangs) = call rate * Holding time(in hrs));
I=CR*Ht/3600; //Traffic Intensity
printf('Traffic Intensity is %.4f Erlangs = %.1f CCS \n',I,I*36);