summaryrefslogtreecommitdiff
path: root/3850/CH31/EX31.5/Ex31_5.sce
diff options
context:
space:
mode:
Diffstat (limited to '3850/CH31/EX31.5/Ex31_5.sce')
-rw-r--r--3850/CH31/EX31.5/Ex31_5.sce20
1 files changed, 20 insertions, 0 deletions
diff --git a/3850/CH31/EX31.5/Ex31_5.sce b/3850/CH31/EX31.5/Ex31_5.sce
new file mode 100644
index 000000000..6f5afeac5
--- /dev/null
+++ b/3850/CH31/EX31.5/Ex31_5.sce
@@ -0,0 +1,20 @@
+
+//To Find the Equivalent Capacitance of the combination
+
+//Example 31.5
+
+clear;
+
+clc;
+
+C1=10*10^-6;//Capacitance of the First Capacitor
+
+C2=20*10^-6;//Capacitance of the Second Capacitor
+
+C=C1+C2;//Equivalent capacitance of parallel combination of C1 and C2
+
+C3=30*10^-6;//Capacitance of the third Capacitor
+
+Ceq=C*C3/(C+C3);//Equivalent capacitance of Series combination of C and C3
+
+printf("The equivalent Capacitance of the combination= %f uF",Ceq*10^6);