summaryrefslogtreecommitdiff
path: root/1691/CH2/EX2.12/exmp2_12.sce
diff options
context:
space:
mode:
Diffstat (limited to '1691/CH2/EX2.12/exmp2_12.sce')
-rwxr-xr-x1691/CH2/EX2.12/exmp2_12.sce13
1 files changed, 13 insertions, 0 deletions
diff --git a/1691/CH2/EX2.12/exmp2_12.sce b/1691/CH2/EX2.12/exmp2_12.sce
new file mode 100755
index 000000000..fb07d2a1e
--- /dev/null
+++ b/1691/CH2/EX2.12/exmp2_12.sce
@@ -0,0 +1,13 @@
+//Example 2.12
+clc
+disp("The given values are,")
+disp(" L = 100 uH, C1 = C2 = C and f = 500 kHz")
+disp("Now, f = 1 / 2*pi*sqrt(L*C_eq)")
+ceq=1/(4*(%pi^2)*(100*10^-6)*((500*10^3)^2)) // in F
+format(11)
+disp(ceq,"Therefore, C_eq(in F) =")
+disp("but C_eq = C1*C2 / C1+C2 and C1 = C2 = C")
+disp("Therefore, C_eq = C / 2")
+c=1.0132*2
+format(6)
+disp(c,"Therefore, C(in nF) =")