diff options
Diffstat (limited to '2240/CH26/EX25.8/EX25_8.sce')
-rwxr-xr-x | 2240/CH26/EX25.8/EX25_8.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/2240/CH26/EX25.8/EX25_8.sce b/2240/CH26/EX25.8/EX25_8.sce new file mode 100755 index 000000000..7fd5025ff --- /dev/null +++ b/2240/CH26/EX25.8/EX25_8.sce @@ -0,0 +1,16 @@ +// Grob's Basic Electronics 11e
+// Chapter No. 25
+// Example No. 25_8
+clc; clear;
+// A parallel LC circuit tuned to 200 kHz with a 350-uH L has a measured ZEQ of 17,600. Calculate Q.
+
+// Given data
+
+L = 350*10^-6; // Inductor=350 uHenry
+f = 200*10^3; // Frequency=200 kHertz
+Zeq = 17600; // Equivalent Impedence=17600 Ohms
+
+Xl = 2*%pi*f*L;
+
+Q = Zeq/Xl;
+disp (Q,'The Magnification factor Q is')
|