summaryrefslogtreecommitdiff
path: root/2183/CH8/EX8.18
diff options
context:
space:
mode:
Diffstat (limited to '2183/CH8/EX8.18')
-rwxr-xr-x2183/CH8/EX8.18/Ex_8_18.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/2183/CH8/EX8.18/Ex_8_18.sce b/2183/CH8/EX8.18/Ex_8_18.sce
new file mode 100755
index 000000000..a432131cc
--- /dev/null
+++ b/2183/CH8/EX8.18/Ex_8_18.sce
@@ -0,0 +1,17 @@
+//Example 8.18 // Optimum receiver bandwidth and peak to peak signal power to noise ratio
+clc;
+clear;
+close;
+//given data :
+Tr=12*10^-9;// in sec
+f0=20*10^6;// in Hz
+fD=5*10^6;// in Hz
+Mr=80;// multiplication factor
+Pp=.75*10^-7;
+B=5*10^6;// in Hz
+i2N=10^-17;// in A^2
+fr=(1/Tr)*10^-6;
+disp(fr," Optimum receiver bandwidth,fr(MHz) = ")
+T0=1/f0;
+SbyN=10*log10((3*(T0*fD*Mr*Pp)^2)/((2*%pi*Tr*B)^2*i2N));
+disp(SbyN,"signal power to noise ratio,(dB) = ")