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/CH9/EX9.5/Ex9_5.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/CH9/EX9.5/Ex9_5.sce')
-rw-r--r-- | 3446/CH9/EX9.5/Ex9_5.sce | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/3446/CH9/EX9.5/Ex9_5.sce b/3446/CH9/EX9.5/Ex9_5.sce new file mode 100644 index 000000000..ce1d55e25 --- /dev/null +++ b/3446/CH9/EX9.5/Ex9_5.sce @@ -0,0 +1,23 @@ +// Exa 9.5
+// To calculate-
+// a) 3-dB bandwidth for a Gaussian low-pass filter,
+// b) 99.99% power bandwidth in the RF channel, and
+// c) bit error probability for GMSK.
+
+clc;
+clear all;
+
+R=270; //data rate in kbps
+Eb_No=6; // in dB
+GMSK=0.3; //Gaussian minimum shift keying
+
+//solution
+Tb=1/R *10^3; //in microsec
+B=GMSK/Tb;
+printf('3-dB BW for a gaussian low pass filter is %.3f kHz\n',B*1000);
+disp("The 3-dB bandwidth is 81.08 kHz. to determine the 99.99% power bandwidth, we use Table 9.3 to find that 1.41*Rb is the required value and degradation factor(beta)= 0.89");
+PowerBW=1.41*R;
+DegradFac=0.89;
+Pe=erfc(sqrt(2*DegradFac*10^(0.1*Eb_No)));
+printf(' Power bandwidth in the RF channel is %.1f kHz\n ',PowerBW);
+printf('Bit error probability for GMSK is %f * 10^-5\n',Pe*10^5);
|