diff options
Diffstat (limited to '1445/CH8/EX8.13')
-rw-r--r-- | 1445/CH8/EX8.13/Ex8_13.sce | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/1445/CH8/EX8.13/Ex8_13.sce b/1445/CH8/EX8.13/Ex8_13.sce new file mode 100644 index 000000000..2e1e3d493 --- /dev/null +++ b/1445/CH8/EX8.13/Ex8_13.sce @@ -0,0 +1,31 @@ +//CHAPTER 8- DIRECT CURRENT MACHINES +//Example 13 + +disp("CHAPTER 8"); +disp("EXAMPLE 13"); + +//4 pole shunt generator +//VARIABLE INITIALIZATION +P=4; //number of poles +v_t=220; //in Volts +I_l=42; //load current in Amperes +r_a=0.1; //in Ohms +r_f=110; //in Ohms +drop=1; //contact drop per brush +//SOLUTION + +//solution (i) +A=P; //for lap winding +I_f=v_t/r_f; //I_f is same as I_sh +I_a=I_l+I_f; //induced emf +I_c=I_a/A; //conductor current +disp(sprintf("The current in each conductor of the armature is %d A",I_c)); + +//solution (ii) +v_a=I_a*r_a; //armature voltage drop +v_b=2*drop; //brush drop +emf=v_t+v_a+v_b; //total emf generated +disp(sprintf("The total emf generated is %.1f V",emf)); + +//END + |