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 /1445/CH8/EX8.36 | |
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 '1445/CH8/EX8.36')
-rw-r--r-- | 1445/CH8/EX8.36/Ex8_36.sce | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/1445/CH8/EX8.36/Ex8_36.sce b/1445/CH8/EX8.36/Ex8_36.sce new file mode 100644 index 000000000..6ea9e53b5 --- /dev/null +++ b/1445/CH8/EX8.36/Ex8_36.sce @@ -0,0 +1,38 @@ +//CHAPTER 8- DIRECT CURRENT MACHINES +//Example 36 + +disp("CHAPTER 8"); +disp("EXAMPLE 36"); + +//250 long shunt compound generator +//VARIABLE INITIALIZATION +v_t=250; //in Volts +I_l=150; //in Amperes +loss1=1200; //core loss at full load in Watts +loss2=800; //mechanical loss in Watts +r_b=0.08; //brush resistance in Ohms +r_sh=62.5; //shunt field resistance in Ohms +r_se=0.03; //series field resistance in Ohms +r_ip=0.02; //interpole resistance in Ohms + +//SOLUTION + +//solution (a) +p_o=v_t*I_l; // power output +I_sh=v_t/r_sh; // shunt current +I_a=I_l+I_sh; // armature current +r_tot=r_b+r_se+r_ip; // total armature circuit resistance +arm_loss=(I_a^2)*r_tot; //armature circuit copper loss +cu_loss=v_t*I_sh; //shunt field copper loss +c_loss=cu_loss+loss1+loss2; //constant loss +disp(sprintf("(a) The constant loss is %.0f W",c_loss)); + +//solution (b) +tot_loss=arm_loss+c_loss; //total loss +p_i=p_o+tot_loss; // power input +eff=(p_o/p_i)*100; // efficiency +disp(sprintf("(b) The full load efficiency is %.0f %%",eff)); + +//END + + |