summaryrefslogtreecommitdiff
path: root/3850/CH31/EX31.8/Ex31_8.sce
diff options
context:
space:
mode:
Diffstat (limited to '3850/CH31/EX31.8/Ex31_8.sce')
-rw-r--r--3850/CH31/EX31.8/Ex31_8.sce20
1 files changed, 20 insertions, 0 deletions
diff --git a/3850/CH31/EX31.8/Ex31_8.sce b/3850/CH31/EX31.8/Ex31_8.sce
new file mode 100644
index 000000000..4daf1a742
--- /dev/null
+++ b/3850/CH31/EX31.8/Ex31_8.sce
@@ -0,0 +1,20 @@
+
+//To Calculate the Equivalent Capacitance
+
+//Example 31.8
+
+clear;
+
+clc;
+
+C0=40*10^-6;//Capacitance of the first Capacitor
+
+K=4;//Dielectric Constant
+
+C1=K*C0;//Capacitance of the capacitor C0 with the dielectric
+
+C2=40*10^-6;//Capacitance of the second Capacitor
+
+C=C1*C2/(C1+C2);//formula for finding the equivalent capacitor connected in series
+
+printf("Equivalent capacitance of the system= %f uF",C*10^6);