diff options
Diffstat (limited to '1445/CH8/EX8.16')
-rw-r--r-- | 1445/CH8/EX8.16/ch8_ex_16.sce | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/1445/CH8/EX8.16/ch8_ex_16.sce b/1445/CH8/EX8.16/ch8_ex_16.sce new file mode 100644 index 000000000..ef76b6ef8 --- /dev/null +++ b/1445/CH8/EX8.16/ch8_ex_16.sce @@ -0,0 +1,45 @@ +//CHAPTER 8- DIRECT CURRENT MACHINES +//Example 16 + +disp("CHAPTER 8"); +disp("EXAMPLE 16"); + +//VARIABLE INITIALIZATION +v_t=250; //in Volts +P=4; //number of poles +Z=500; //number of conductors +r_a=0.25; //in Ohms +r_f=125; //in Ohms +phi=0.02; //in Wb +I_l=14; //in Amperes +A=2; +rot_loss=300; //rotational loss in Watts + +//SOLUTION + +//solution (i) +I_f=v_t/r_f; +I_a=I_l-I_f; +E_a=v_t-(I_a*r_a); +N=(E_a*A*60)/(phi*Z*P); +N=round(N); //to round off the value of N +disp(sprintf("(i) The speed is %d rpm",N)); +p_e=E_a*I_a; +w=(2*%pi*N)/60; +T1=p_e/w; +disp(sprintf("The internal torque developed is %f N-m",T1)); + +//solution (ii) +p_o=p_e-rot_loss; +disp(sprintf("(ii)The shaft power is %f W",p_o)); +T2=p_o/w; +disp(sprintf("The shaft torque is %f N-m",T2)); +p_i=v_t*I_l; +eff=(p_o/p_i)*100; +disp(sprintf("The efficiency is %f %%",eff)); + +//END + + + + |