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 /1133/CH4/EX4.7 | |
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 '1133/CH4/EX4.7')
-rwxr-xr-x | 1133/CH4/EX4.7/Example4_7.sce | 10 |
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) =")
|