summaryrefslogtreecommitdiff
path: root/1133/CH4/EX4.7
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1133/CH4/EX4.7
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '1133/CH4/EX4.7')
-rwxr-xr-x1133/CH4/EX4.7/Example4_7.sce10
1 files changed, 10 insertions, 0 deletions
diff --git a/1133/CH4/EX4.7/Example4_7.sce b/1133/CH4/EX4.7/Example4_7.sce
new file mode 100755
index 000000000..47b4de4c5
--- /dev/null
+++ b/1133/CH4/EX4.7/Example4_7.sce
@@ -0,0 +1,10 @@
+//Example 4.7
+clc
+disp("The given values are,")
+disp(" L1 = 0.5 mH, L2 = 1 mH, C = 0.2 uF")
+disp("Now f = 1 / 2*pi*sqrt(C*L_eq)")
+leq=0.5+1 // in mH
+disp(leq,"and L_eq(in mH) = L1 + L2 =")
+f=(1/(2*%pi*sqrt(1.5*0.2*10^-9)))*10^-3 // in kHz
+format(5)
+disp(f,"Therefore, f(in kHz) =")