diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3446/CH5/EX5.4/Ex5_4.sce | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '3446/CH5/EX5.4/Ex5_4.sce')
-rw-r--r-- | 3446/CH5/EX5.4/Ex5_4.sce | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/3446/CH5/EX5.4/Ex5_4.sce b/3446/CH5/EX5.4/Ex5_4.sce new file mode 100644 index 000000000..93e22d03f --- /dev/null +++ b/3446/CH5/EX5.4/Ex5_4.sce @@ -0,0 +1,26 @@ +// Exa 5.4
+// To find the number of calls per hour per cell site.
+
+clc;
+clear all;
+
+spectrum=12.5*10^6; //in Hz
+CHBW=200*10^3;//in Hz
+N=4;//reuse factor
+Blocking=0.02; // 2%
+callHT=120;//average call holding time in sec
+PPL=4;//propogation path loss coefficient
+CntrlCH=3; //No of control channels
+Ts=8; // No of voice channels per RF channel
+
+//solution
+No_ofVCH=((spectrum*Ts)/(CHBW*N))-CntrlCH;
+printf('\n No of voice channels for N=4 are %d',No_ofVCH);
+disp("");
+disp("Using the Erlang-B traffic table for 122 channels with 2% blocking,we find a traffic load of 110 Erlangs. ");
+TrafLoad=110;
+CarryLoad=(1-Blocking)*TrafLoad;
+Ncall=CarryLoad*3600/callHT;
+printf('\n Calls per hour per cell for N=4 are %d calls/hour/cell \n ',round(Ncall));
+S_I=10*(PPL/2)*(log10(N)-log10(1/3)-(2/PPL)*log10(6));
+printf('\n Mean S/I(dB) for N=4 is %.1f dB \n ',S_I);
|