summaryrefslogtreecommitdiff
path: root/1628/CH11/EX11.8/Ex11_8.sce
diff options
context:
space:
mode:
Diffstat (limited to '1628/CH11/EX11.8/Ex11_8.sce')
-rwxr-xr-x1628/CH11/EX11.8/Ex11_8.sce25
1 files changed, 25 insertions, 0 deletions
diff --git a/1628/CH11/EX11.8/Ex11_8.sce b/1628/CH11/EX11.8/Ex11_8.sce
new file mode 100755
index 000000000..95a9828e1
--- /dev/null
+++ b/1628/CH11/EX11.8/Ex11_8.sce
@@ -0,0 +1,25 @@
+
+
+ // Example 11.8
+
+L=0.24; // Inductance
+C=3*10^-6; // Capacitance
+R=150; // Resistance
+f=1/(2*%pi*sqrt(L*C)); // Frequency
+fo=f*sqrt(1-R^2*(C/L)); // Resonance Frequency
+disp(' Resonance Frequency = '+string(fo)+' Hz');
+
+Xl=2*%pi*fo*L; // Indctive reactance
+Q=Xl/R; // Q-Factor
+disp(' Q-Factor is = '+string(Q));
+
+Bw=fo/Q; // Band width
+disp(' Band width is = '+string(Bw)+' Hz');
+
+
+
+
+ // p 387 11.8
+
+
+