diff options
Diffstat (limited to '2297/CH6/EX6.5/Ex6_5.sce')
-rwxr-xr-x | 2297/CH6/EX6.5/Ex6_5.sce | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/2297/CH6/EX6.5/Ex6_5.sce b/2297/CH6/EX6.5/Ex6_5.sce new file mode 100755 index 000000000..33ff15100 --- /dev/null +++ b/2297/CH6/EX6.5/Ex6_5.sce @@ -0,0 +1,24 @@ +//Example 6.5// Power +clc; +clear; +close; +//given data : +format('v',6) +fp=0.024;// flux per pole +lf=1.2;// leakage factor +fi=fp/lf;// in Wb +Z=756;//turns +P=4;// number of pole +N=1000;// in rpm +A=4;//constant +E=(fi*Z*N*P)/(60*A);//generated voltage +il=1/10;//load current in amperes +ish=1/100;//shunt current in amperes +ra=1;//armature resistance in ohms +is=il+ish;//current in amperes +v=((E)/(1+(ra*is)));//volts +r2=10;//ohms +il=v/r2;//amperes +pc=il*v;//Watts +disp(pc,"Power consumed is,(W)=") +//answer is wrong in the textbook |