summaryrefslogtreecommitdiff
path: root/3446/CH2/EX2.7/Ex2_7.sce
blob: 71fcd846c6e6e63000705f3aee37b2a0d2f6965d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//Exa 2.8
// To find traffic per user per BH in Erlangs.

clc;
clear all;

minutes=500; //No of minutes used per month per user
Twork=0.9; //Traffic During Work day
TBH=0.1;  //Traffic during busy hour
Days=20;  //No of workdays in a month

//solution
//Avg BH usage per subscriber (in minutes) = minutes*Twork(TBH/Days);
Traffic=minutes*Twork*(TBH/Days);
printf('Traffic per user per BH is %.4f Erlangs \n',Traffic/60);