diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /116/CH12/EX12.5/exa12_5.sce | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '116/CH12/EX12.5/exa12_5.sce')
-rwxr-xr-x | 116/CH12/EX12.5/exa12_5.sce | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/116/CH12/EX12.5/exa12_5.sce b/116/CH12/EX12.5/exa12_5.sce new file mode 100755 index 000000000..1c77bc6db --- /dev/null +++ b/116/CH12/EX12.5/exa12_5.sce @@ -0,0 +1,27 @@ +
+//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")
+
\ No newline at end of file |