summaryrefslogtreecommitdiff
path: root/2240/CH26/EX25.5/EX25_5.sce
diff options
context:
space:
mode:
Diffstat (limited to '2240/CH26/EX25.5/EX25_5.sce')
-rwxr-xr-x2240/CH26/EX25.5/EX25_5.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/2240/CH26/EX25.5/EX25_5.sce b/2240/CH26/EX25.5/EX25_5.sce
new file mode 100755
index 000000000..6e463b213
--- /dev/null
+++ b/2240/CH26/EX25.5/EX25_5.sce
@@ -0,0 +1,15 @@
+// Grob's Basic Electronics 11e
+// Chapter No. 25
+// Example No. 25_5
+clc;clear;
+// A series circuit resonant at 0.4 MHz develops 100 mV across a 250-uH L with a 2-mV input. Calculate Q .
+
+// Given data
+
+Vo = 100*10^-3; // Output voltage=100 mVolts
+Vi = 2*10^-3; // Input voltage=2 mVolts
+L = 250*10^-6; // Inductor=250 uHenry
+f = 0.4*10^6; // Frequency=0.4 MHertz
+
+Q = Vo/Vi;
+disp (Q,'The Magnification factor Q is')