From f35ea80659b6a49d1bb2ce1d7d002583f3f40947 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:38:01 +0530 Subject: updated the code --- 116/CH10/EX10.3/exa10_3.sce | 39 +++++++++++++++++++-------------------- 1 file changed, 19 insertions(+), 20 deletions(-) (limited to '116/CH10/EX10.3/exa10_3.sce') diff --git a/116/CH10/EX10.3/exa10_3.sce b/116/CH10/EX10.3/exa10_3.sce index 4dc91f9c9..033358474 100755 --- a/116/CH10/EX10.3/exa10_3.sce +++ b/116/CH10/EX10.3/exa10_3.sce @@ -1,21 +1,20 @@ - -//Caption:Program to determine the probability that the delay of an ATM voice cell - -//Example 10.3 - -//Page 488 - -disp('Assuming the access link is 90% utilized on average.') - -disp('The queuing theory is provided in Chapter 12. It involves determining the probability that the DSI access queue contains enough cells to represent 10msec of transmission time') - -tm=[(53*8)/(192*8000)] - -disp('Therefore, 10 msec delay represents 10/0.276 = 36.2 cell times.') - -p=(0.9)*{%e^[-(1-0.9)*36.2]}//Refer to equation 12.25 in chap 12 - -disp("Result") - -disp("P(>10msec) = 2.5% delay will be displayed by more than 10 msec ") + + +//Example 10.3 + +//Page 488 + +disp('Assuming the access link is 90% utilized on average.') + +disp('The queuing theory is provided in Chapter 12. It involves determining the probability that the DSI access queue contains enough cells to represent 10msec of transmission time') + +tm=[(53*8)/(192*8000)] + +disp('Therefore, 10 msec delay represents 10/0.276 = 36.2 cell times.') + +p=(0.9)*{%e^[-(1-0.9)*36.2]}//Refer to equation 12.25 in chap 12 + +disp("Result") + +disp("P(>10msec) = 2.5% delay will be displayed by more than 10 msec ") \ No newline at end of file -- cgit