diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /1445/CH2/EX2.20/ch2_ex_20.sce | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '1445/CH2/EX2.20/ch2_ex_20.sce')
-rw-r--r-- | 1445/CH2/EX2.20/ch2_ex_20.sce | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/1445/CH2/EX2.20/ch2_ex_20.sce b/1445/CH2/EX2.20/ch2_ex_20.sce new file mode 100644 index 000000000..79c18d219 --- /dev/null +++ b/1445/CH2/EX2.20/ch2_ex_20.sce @@ -0,0 +1,39 @@ +//CHAPTER 2- STEADY-STATE ANALYSIS OF SINGLE-PHASE A.C. CIRCUIT +//Example 20 // read it as example 19 in the book on page 2.72 + +disp("CHAPTER 2"); +disp("EXAMPLE 20"); + +//VARIABLE INITIALIZATION +L=0.5 //in Henry +C=5 //in mf, multiply by 10^-6 to convert to f +R=25 //in ohms +//SOLUTION + +//solution (i) +//Resonance frequency f = (1/2π)sqrt((1/LC)-R^2/L^2) +fr=(1/(2*%pi))*sqrt((1/(L*C*10^-6))-(R^2)/(L^2)); +disp("SOLUTION (i)"); +disp(sprintf("For parallel circuit,Resonant frquency is %3f Hz", fr)); +disp(" "); + +//solution (ii) +//Total circuit impedance at resonance is Z=L/RC +z=L/(R*C*10^-6); +disp("SOLUTION (ii)"); +disp(sprintf("Total impedence at resonance is %3f kΩ", z/1000)); +// +//solution (iii) +//Bandwidth (f2-f1)=R/(2.π.L) +bw=R/(2*%pi*L); +disp("SOLUTION (iii)"); +disp(sprintf("Bandwidth is %3f Hz", bw)); +// +//solution (iv) +//Quality factor Q=1/R.sqrt(L/C) +Q=(1/R)*sqrt(L/(C*10^-6)); +disp("SOLUTION (iv)"); +disp(sprintf("Quality Factor is %3f", Q)); +//solution in the book is wrong as there is a total mistake in imaginery part 7.2+0.798=11.598 +// +//END |