From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 3446/CH2/EX2.5/Ex2_5.sce | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 3446/CH2/EX2.5/Ex2_5.sce (limited to '3446/CH2/EX2.5') diff --git a/3446/CH2/EX2.5/Ex2_5.sce b/3446/CH2/EX2.5/Ex2_5.sce new file mode 100644 index 000000000..1c9b268f7 --- /dev/null +++ b/3446/CH2/EX2.5/Ex2_5.sce @@ -0,0 +1,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); -- cgit