diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1691/CH2/EX2.12/exmp2_12.sce | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '1691/CH2/EX2.12/exmp2_12.sce')
-rwxr-xr-x | 1691/CH2/EX2.12/exmp2_12.sce | 13 |
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) =")
|