summaryrefslogtreecommitdiff
path: root/181/CH7/EX7.24/example7_24.sce
diff options
context:
space:
mode:
Diffstat (limited to '181/CH7/EX7.24/example7_24.sce')
-rwxr-xr-x181/CH7/EX7.24/example7_24.sce21
1 files changed, 21 insertions, 0 deletions
diff --git a/181/CH7/EX7.24/example7_24.sce b/181/CH7/EX7.24/example7_24.sce
new file mode 100755
index 000000000..4ab5e31ca
--- /dev/null
+++ b/181/CH7/EX7.24/example7_24.sce
@@ -0,0 +1,21 @@
+// Find voltage gain of amplifier
+// Basic Electronics
+// By Debashis De
+// First Edition, 2010
+// Dorling Kindersley Pvt. Ltd. India
+// Example 7-24 in page 329
+
+clear; clc; close;
+
+// Given data
+Rl=250; // Load resistance in k-ohms
+gm=0.5; // Transconductance in mA/V
+rd=200; // Dynamic resistance in k-ohms
+
+// Calculation
+mu=rd*gm;
+Av=(-mu*Rl)/(rd+Rl);
+printf("Voltage gain Av = %0.2f",Av);
+
+// Result
+// Voltage gain Av = -55.55 \ No newline at end of file