summaryrefslogtreecommitdiff
path: root/1529/CH16/EX16.8
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1529/CH16/EX16.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 '1529/CH16/EX16.8')
-rwxr-xr-x1529/CH16/EX16.8/16_08.sce10
1 files changed, 10 insertions, 0 deletions
diff --git a/1529/CH16/EX16.8/16_08.sce b/1529/CH16/EX16.8/16_08.sce
new file mode 100755
index 000000000..eaa0ffa95
--- /dev/null
+++ b/1529/CH16/EX16.8/16_08.sce
@@ -0,0 +1,10 @@
+//Chapter 16, Problem 8
+clc;
+L=150e-3; //inductance in henry
+C=40e-6; //capacitance in farad
+V=50; //voltage
+fr=(2*%pi)^-1*sqrt(1/(L*C)); //resonant frequency
+Xc=1/(2*%pi*fr*C); //capacitive reactance
+Icir=V/Xc; //current circulating in L and C at resonance
+printf("(a) Resonant frequency of the circuit = %.3f Hz\n\n",fr);
+printf("(b) Current circulating in the capacitor and inductance at resonance = %.3f A",Icir);