summaryrefslogtreecommitdiff
path: root/1754/CH8/EX8.3
diff options
context:
space:
mode:
Diffstat (limited to '1754/CH8/EX8.3')
-rwxr-xr-x1754/CH8/EX8.3/Exa8_3.sce18
1 files changed, 18 insertions, 0 deletions
diff --git a/1754/CH8/EX8.3/Exa8_3.sce b/1754/CH8/EX8.3/Exa8_3.sce
new file mode 100755
index 000000000..9b4e71a94
--- /dev/null
+++ b/1754/CH8/EX8.3/Exa8_3.sce
@@ -0,0 +1,18 @@
+//Exa 8.3
+clc;
+clear;
+close;
+//Given data
+format('v',9);
+L=100;//in mH
+L=L*10^-3;//in H
+C1=0.1;//in uF
+C1=C1*10^-6;//in F
+f=100;//in kHz
+f=f*10^3;//in Hz
+//Formula : f=1/(2*%pi*sqrt(L*C))
+C=1/(4*%pi^2*f^2*L);//in F
+//Formula : C=C1*C2/(C1+C2)
+C2=C*C1/(C1-C);
+disp(C2,"C2 in micro farad : ");
+//Note : Answer in the book is wrong. \ No newline at end of file