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 /1445/CH8/EX8.13/ch8_ex_13.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 '1445/CH8/EX8.13/ch8_ex_13.sce')
-rw-r--r-- | 1445/CH8/EX8.13/ch8_ex_13.sce | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/1445/CH8/EX8.13/ch8_ex_13.sce b/1445/CH8/EX8.13/ch8_ex_13.sce new file mode 100644 index 000000000..a9f1555de --- /dev/null +++ b/1445/CH8/EX8.13/ch8_ex_13.sce @@ -0,0 +1,30 @@ +//CHAPTER 8- DIRECT CURRENT MACHINES +//Example 13 + +disp("CHAPTER 8"); +disp("EXAMPLE 13"); + +//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; +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; +disp(sprintf("The total emf generated is %f V",emf)); + +//END + |