diff options
Diffstat (limited to '1574/CH2/EX2.8')
-rwxr-xr-x | 1574/CH2/EX2.8/Result_of_Chapter_2_Ex_2_8.JPG | bin | 0 -> 163692 bytes | |||
-rwxr-xr-x | 1574/CH2/EX2.8/SCS_ex_2_8.sce | 15 |
2 files changed, 15 insertions, 0 deletions
diff --git a/1574/CH2/EX2.8/Result_of_Chapter_2_Ex_2_8.JPG b/1574/CH2/EX2.8/Result_of_Chapter_2_Ex_2_8.JPG Binary files differnew file mode 100755 index 000000000..9bef6f6e7 --- /dev/null +++ b/1574/CH2/EX2.8/Result_of_Chapter_2_Ex_2_8.JPG diff --git a/1574/CH2/EX2.8/SCS_ex_2_8.sce b/1574/CH2/EX2.8/SCS_ex_2_8.sce new file mode 100755 index 000000000..e5ff781ae --- /dev/null +++ b/1574/CH2/EX2.8/SCS_ex_2_8.sce @@ -0,0 +1,15 @@ +clc;
+// Chapter 2 Switched communication systems
+//Example 2.8,page no 129
+//given
+S=1000//no of subscribers
+T=2.4/60//avarage duration of calls in hours
+A=60//rate of traffic flow
+C=A/T//Tatol no of call in busy hour
+mprintf('Total no of call in busy hour is:%f calls per Hour\n',C)
+CR=C/S//busy hour calling rate
+mprintf('Busy hour calling rate is:%f \n',CR)
+SCL=30//no of call lost per hour
+
+B=SCL/(C+SCL)//grade of service
+mprintf('grade of service is: %f',B)
|