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.23/Ex8_23.sce | |
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.23/Ex8_23.sce')
-rw-r--r-- | 1445/CH8/EX8.23/Ex8_23.sce | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/1445/CH8/EX8.23/Ex8_23.sce b/1445/CH8/EX8.23/Ex8_23.sce new file mode 100644 index 000000000..0f93e5d8a --- /dev/null +++ b/1445/CH8/EX8.23/Ex8_23.sce @@ -0,0 +1,36 @@ +//CHAPTER 8- DIRECT CURRENT MACHINES +//Example 23 + +disp("CHAPTER 8"); +disp("EXAMPLE 23"); + +//230 V DC shunt motor +//VARIABLE INITIALIZATION +v=230; //in Volts +r_a=0.4; //in Ohms +r_f1=115; //in Ohms +I_a=20; //in Amperes +N1=800; //in rpm +N2=1000; //in rpm + +//SOLUTION +//Eb1/Eb2 = phi1.N1/phi2.N2 (eq 1) +//Eb=Vt - Ia.Ra (eq 2) +//=> (Vt-Ia1.Ra)/(Vt-Ia2.Ra) = phi1.N1/phi2.N2 (eq 3) +I_f1=v/r_f1; //redundant step +E_b1=v-(I_a*r_a); // back emf +//Since terminal voltage Vt is constant, if dir prop phi dir prop 1/r_f +//=> phi1/phi2 = r_f2/r_f1 (eq 4) [r_f2 = field resistance at 10000 rpm] + //[r_f1 = field resistance at 800 rpm] +//Load torque is constant, so T dir prop phi.Ia +//=> phi1.Ia1=phi2.Ia2 +//=> Ia2=(phi1/phi2). Ia1 (eq 5) +//putting the value of Ia2 in eq 3 and +//rearranging the equation, we get, +r_f2=((E_b1*N2)/((v*N1)-(N1*I_a*r_a)))*r_f1; +r_f2_dash=r_f2-r_f1; +disp(sprintf("The external resistance is %.2f Ω",r_f2_dash));//text book answer is 29.93 ohm + +//The answer is slightly different due to the precision of floating point numbers + +//END |