diff options
Diffstat (limited to '3769/CH4/EX4.13/Ex4_13.sce')
-rw-r--r-- | 3769/CH4/EX4.13/Ex4_13.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/3769/CH4/EX4.13/Ex4_13.sce b/3769/CH4/EX4.13/Ex4_13.sce new file mode 100644 index 000000000..b99992551 --- /dev/null +++ b/3769/CH4/EX4.13/Ex4_13.sce @@ -0,0 +1,14 @@ +clear +//Given +Ca=18 //micro F +Cb=4 //micro F + +//Calculation +// +C=Ca*Cb +C12=sqrt(Ca**2-4*C) +C2=2*C12 + +//Result +printf("\n The capacitance of capacitor C1 is %0.3f micro F", C12) +printf("\n The capacitance of capacitor C2 is %0.3f micro F",C2) |