diff options
Diffstat (limited to '3845/CH19/EX19.9/Ex19_9.sce')
-rw-r--r-- | 3845/CH19/EX19.9/Ex19_9.sce | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/3845/CH19/EX19.9/Ex19_9.sce b/3845/CH19/EX19.9/Ex19_9.sce new file mode 100644 index 000000000..b43bf77f7 --- /dev/null +++ b/3845/CH19/EX19.9/Ex19_9.sce @@ -0,0 +1,8 @@ +//Example 19.9
+C1=1*10^-6;//Capacitance of capacitor 1 (F)
+C2=5*10^-6;//Capacitance of capacitor 2 (F)
+C3=8*10^-6;//Capacitance of capacitor 3 (F)
+C_s=1/(1/C1+1/C2+1/C3);//Effective capacitance in series (F)
+printf('Total capacitance when connected in series = %0.3f microF',C_s/10^-6)
+//Openstax - College Physics
+//Download for free at http://cnx.org/content/col11406/latest
|