summaryrefslogtreecommitdiff
path: root/2240/CH26/EX25.8
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2240/CH26/EX25.8
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '2240/CH26/EX25.8')
-rwxr-xr-x2240/CH26/EX25.8/EX25_8.sce16
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')