diff options
author | prashantsinalkar | 2017-10-10 12:38:01 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:38:01 +0530 |
commit | f35ea80659b6a49d1bb2ce1d7d002583f3f40947 (patch) | |
tree | eb72842d800ac1233e9d890e020eac5fd41b0b1b /116/CH12/EX12.5 | |
parent | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (diff) | |
download | Scilab-TBC-Uploads-f35ea80659b6a49d1bb2ce1d7d002583f3f40947.tar.gz Scilab-TBC-Uploads-f35ea80659b6a49d1bb2ce1d7d002583f3f40947.tar.bz2 Scilab-TBC-Uploads-f35ea80659b6a49d1bb2ce1d7d002583f3f40947.zip |
updated the code
Diffstat (limited to '116/CH12/EX12.5')
-rwxr-xr-x | 116/CH12/EX12.5/exa12_5.sce | 51 |
1 files changed, 25 insertions, 26 deletions
diff --git a/116/CH12/EX12.5/exa12_5.sce b/116/CH12/EX12.5/exa12_5.sce index 1c77bc6db..26994b43c 100755 --- a/116/CH12/EX12.5/exa12_5.sce +++ b/116/CH12/EX12.5/exa12_5.sce @@ -1,27 +1,26 @@ -
-//Caption:Program to calculate how much traffic can the trunk group carry
-
-//Example 5.5
-
-//Page 534
-
-//Refer figure 12.5 on page 533
-
-disp('From fig, it can be that the output circuit utilization for B=0.1 and N=24 is 0.8.')
-
-N=24
-
-op=0.8
-
-disp('Thus the carried traffic intensity is ')
-
-N*op
-
-disp('Since the blocking probability is 0.1, the maximum level of offered traaffic is,')
-
-A=[19.2/(1-0.1)]
-
-disp("Result")
-
-disp("A = 21.3 erlangs")
+ + +//Example 5.5 + +//Page 534 + +//Refer figure 12.5 on page 533 + +disp('From fig, it can be that the output circuit utilization for B=0.1 and N=24 is 0.8.') + +N=24 + +op=0.8 + +disp('Thus the carried traffic intensity is ') + +N*op + +disp('Since the blocking probability is 0.1, the maximum level of offered traaffic is,') + +A=[19.2/(1-0.1)] + +disp("Result") + +disp("A = 21.3 erlangs")
\ No newline at end of file |