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.10 | |
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.10')
-rwxr-xr-x | 1133/CH4/EX4.10/Example4_10.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/1133/CH4/EX4.10/Example4_10.sce b/1133/CH4/EX4.10/Example4_10.sce new file mode 100755 index 000000000..7565c4c71 --- /dev/null +++ b/1133/CH4/EX4.10/Example4_10.sce @@ -0,0 +1,14 @@ +//Example 4.10
+clc
+fs=(1/(2*%pi*sqrt(0.4*0.085*10^-12)))*10^-6 // in MHz
+format(6)
+disp(fs,"(i) f_s(in MHz) = 1 / 2*pi*sqrt(L*C) =")
+ceq=0.085/1.085 // in pF
+disp(ceq,"(ii) C_eq(in pF) = C*C_M / C+C_M =")
+fp=(1/(2*%pi*sqrt(0.4*0.078*10^-12)))*10^-6 // in MHz (the answer in textbook is wrong)
+disp(fp,"Therefore, f_p(in MHz) = 1 / 2*pi*sqrt(L*C_eq) =")
+inc=((0.899-0.856)/0.856)*100 // in percentage
+disp(inc,"(iii) %increase =")
+q=(2*%pi*0.4*0.856*10^6)/(5*10^3)
+format(8)
+disp(q,"(iv) Q = omega_s*L / R = 2*pi*f_s*L / R =")
|