summaryrefslogtreecommitdiff
path: root/1409/CH8/EX8.10/8_10.sce
diff options
context:
space:
mode:
Diffstat (limited to '1409/CH8/EX8.10/8_10.sce')
-rw-r--r--1409/CH8/EX8.10/8_10.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/1409/CH8/EX8.10/8_10.sce b/1409/CH8/EX8.10/8_10.sce
new file mode 100644
index 000000000..36055ca55
--- /dev/null
+++ b/1409/CH8/EX8.10/8_10.sce
@@ -0,0 +1,12 @@
+clc;
+//page no 8-50
+//Example 8.10
+R=60;//in ohms
+fr=2*10^6;//in Hz
+C=50*10^(-12);//in farads
+//we know that fr=1/(2*%pi*sqrt(L*C));
+L=1/((2*%pi*fr)^2*C);
+L1=L*10^(6);
+disp(+'micro H',L1,'L=');
+Q=(2*%pi*fr*L1*10^(-6))/R;
+disp(Q,'Q of tuned circuit is ');