summaryrefslogtreecommitdiff
path: root/3542/CH9/EX9.9
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3542/CH9/EX9.9
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '3542/CH9/EX9.9')
-rw-r--r--3542/CH9/EX9.9/9_9.jpgbin0 -> 63342 bytes
-rw-r--r--3542/CH9/EX9.9/Ex9_9.sce23
2 files changed, 23 insertions, 0 deletions
diff --git a/3542/CH9/EX9.9/9_9.jpg b/3542/CH9/EX9.9/9_9.jpg
new file mode 100644
index 000000000..7e9c10914
--- /dev/null
+++ b/3542/CH9/EX9.9/9_9.jpg
Binary files differ
diff --git a/3542/CH9/EX9.9/Ex9_9.sce b/3542/CH9/EX9.9/Ex9_9.sce
new file mode 100644
index 000000000..41c515a1e
--- /dev/null
+++ b/3542/CH9/EX9.9/Ex9_9.sce
@@ -0,0 +1,23 @@
+// Example no 9.9
+// To determine the maximum number of users using a)omnidirectional base station antenna and no voice activity b)three-sectors at the base station and voice activity detection
+// Page no. 472
+
+clc;
+clear all;
+
+// Given data
+W=1.25*10^6; // Total RF bandwidth in Hz
+R=9600; // Baseband information bit rate in bps
+EbNo=10; // Minimum acceptable SNR in dB
+
+// a)Maximum number of users using omnidirectional base station antenna and no voice activity
+N1=1+(W/R)/EbNo; // Maximum number of users using omnidirectional
+
+// b)Maximum number of users using three-sectors at the base station antenna and voice activity with alpha=3/8
+alpha=3/8; // Voice activity factor
+Ns=1+(1/alpha)*((W/R)/EbNo); // Maximum number of users
+N2=3*Ns; // Maximum number of users using three-sectors
+
+// Displaying the result in command window
+printf('\n Maximum number of users using omnidirectional base station antenna and no voice activity = %0.0f',N1);
+printf('\n Maximum number of users using three-sectors at the base station antenna and voice activity (with alpha=3/8) = %0.0f',N2);