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 /3775/CH4/EX4.7/Ex4_7.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 '3775/CH4/EX4.7/Ex4_7.sce')
-rw-r--r-- | 3775/CH4/EX4.7/Ex4_7.sce | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/3775/CH4/EX4.7/Ex4_7.sce b/3775/CH4/EX4.7/Ex4_7.sce new file mode 100644 index 000000000..ce881d896 --- /dev/null +++ b/3775/CH4/EX4.7/Ex4_7.sce @@ -0,0 +1,24 @@ +//Ex 4.7 page 161 + +clc; +clear; +close; + + +R=3;// ohm +wL=4;//ohm +Vs=230;// V +f=50;// Hz + +fi=atan(wL/R)*180/%pi;//degree +printf('\n (i) control range of firing angle = %.2f to pi',fi) +Imax=Vs/sqrt(R**2+wL**2);// A +printf('\n (ii) max rms load current = %.f A', Imax) +Pmax=Imax**2*R;//W +printf('\n (iii) max power input to load = %.f W', Pmax) +pf_max=Pmax/Vs/Imax;// power factor +printf('\n (iv) max power factor = %.1f ', pf_max) +Ithrms=Imax/sqrt(2);// A +Ithav=Ithrms/1.57;// A +printf('\n (v) max rms thyristor current = %.3f A', Ithrms) +printf('\n max average thyristor current = %.3f A', Ithav) |