summaryrefslogtreecommitdiff
path: root/3547/CH7/EX7.7
diff options
context:
space:
mode:
Diffstat (limited to '3547/CH7/EX7.7')
-rw-r--r--3547/CH7/EX7.7/EX7_7.pngbin0 -> 17129 bytes
-rw-r--r--3547/CH7/EX7.7/EX7_7.sce41
2 files changed, 41 insertions, 0 deletions
diff --git a/3547/CH7/EX7.7/EX7_7.png b/3547/CH7/EX7.7/EX7_7.png
new file mode 100644
index 000000000..4116f33a7
--- /dev/null
+++ b/3547/CH7/EX7.7/EX7_7.png
Binary files differ
diff --git a/3547/CH7/EX7.7/EX7_7.sce b/3547/CH7/EX7.7/EX7_7.sce
new file mode 100644
index 000000000..43c9690fb
--- /dev/null
+++ b/3547/CH7/EX7.7/EX7_7.sce
@@ -0,0 +1,41 @@
+// Example 7.7
+// Compuatation of the optimum amplifier configuration
+//
+// Page no. 329
+
+clc;
+clear;
+close;
+
+//Given data
+
+G1=8; // Amplifier gain 1
+G2=16; // Amplifier gain 2
+fn1=7; // Noise figure of amplifier 1
+fn2=5.5; // Noise figure of amplifier 2
+H=7; // Insertion loss of the DCF
+//N=80; // Identical amplifers
+fe=7*10^9; // Electrical filter bandwidth
+// q=6;
+
+
+// The optimum amplifier configuration
+
+fn1=10^(fn1/10);
+fn2=10^(fn2/10);
+G2=10^(G2/10);
+H=10^(H/10);
+Fna=fn2+(fn1/(G2*H));
+Fna=10*log10(Fna);
+G=G2+G1+H;
+Fnb=fn1+(fn2/(G1*H));
+
+Fnb=10*log10(Fnb);
+
+//Displaying the result in command window
+printf("\n The optimum amplifier configuration by choosing Amp2 as the first amplifier = %0.3f dB",Fna);
+printf("\n The optimum amplifier configuration by choosing Amp1 as the first amplifier = %0.3f dB",Fnb);
+
+// The answer vary due to round off error
+
+