summaryrefslogtreecommitdiff
path: root/3769/CH4/EX4.23/Ex4_23.sce
diff options
context:
space:
mode:
Diffstat (limited to '3769/CH4/EX4.23/Ex4_23.sce')
-rw-r--r--3769/CH4/EX4.23/Ex4_23.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/3769/CH4/EX4.23/Ex4_23.sce b/3769/CH4/EX4.23/Ex4_23.sce
new file mode 100644
index 000000000..776b4f5df
--- /dev/null
+++ b/3769/CH4/EX4.23/Ex4_23.sce
@@ -0,0 +1,16 @@
+clear
+//Given
+C4=6 //micro F
+C5=12
+C1=8.0
+C7=1
+
+//Calculation
+Cs=C4*C5/(C4+C5)
+C11=(C1*Cs)/(C1+Cs)
+Cs1=C1*C7/(C1+C7)
+Cp=C11+Cs1
+C=1/(1-(1/Cp))
+
+//Result
+printf("\n The value of capacitance C is %0.2f micro F",C)