summaryrefslogtreecommitdiff
path: root/3446/CH2/EX2.5/Ex2_5.sce
diff options
context:
space:
mode:
Diffstat (limited to '3446/CH2/EX2.5/Ex2_5.sce')
-rw-r--r--3446/CH2/EX2.5/Ex2_5.sce15
1 files changed, 15 insertions, 0 deletions
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);