blob: 9873f01df581b2fcfee3545df452653b02864442 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// Exa 2.11
// To find offered load A and number of service channels required to handle the load
clc;
clear all;
maxcalls_hour=4000;//maximum call per hour
avgHT=160;//average holding time in sec
Gos=0.02;
//solution
A=maxcalls_hour*avgHT/3600; //offered load
printf('Offered load A = %.2f Erlangs \n ',A);
//Refering Appendix A i.e Erlang B table
disp("For calculated Offered load and referring Erlang B table we get Service channels as 182 giving 168.3 Erlangs at 2% blocking");
|