diff options
Diffstat (limited to '2534/CH2/EX2.8/Ex2_8.sce')
-rwxr-xr-x | 2534/CH2/EX2.8/Ex2_8.sce | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/2534/CH2/EX2.8/Ex2_8.sce b/2534/CH2/EX2.8/Ex2_8.sce new file mode 100755 index 000000000..3e0e5c61e --- /dev/null +++ b/2534/CH2/EX2.8/Ex2_8.sce @@ -0,0 +1,9 @@ +//Ex2_8
+clc
+C1 = 0.5*10^-6
+C2 = 0.5*10^-6
+CT = (C1*C2)/(C1+C2)
+disp("C1 = "+string(C1)+"F")//capacitance 1
+disp("C1 = "+string(C1)+"F")//capacitance 2
+disp("1/CT = 1/C1 + 1/C2 = (C1*C2)/(C1+C2) = "+string(C1*C2/(C1+C2))+"F")//series capacitance
+// proper ans. = 0.25*10^-6F
|