summaryrefslogtreecommitdiff
path: root/1445/CH8/EX8.31
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1445/CH8/EX8.31
downloadScilab-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.31')
-rw-r--r--1445/CH8/EX8.31/Ex8_31.sce34
1 files changed, 34 insertions, 0 deletions
diff --git a/1445/CH8/EX8.31/Ex8_31.sce b/1445/CH8/EX8.31/Ex8_31.sce
new file mode 100644
index 000000000..5e8349ca2
--- /dev/null
+++ b/1445/CH8/EX8.31/Ex8_31.sce
@@ -0,0 +1,34 @@
+//CHAPTER 8- DIRECT CURRENT MACHINES
+//Example 31
+
+disp("CHAPTER 8");
+disp("EXAMPLE 31");
+
+//series motor
+//VARIABLE INITIALIZATION
+r_a=0.1; //combined resistance of armature & field resistance in Ohms
+v_t=230; //in Volts
+I_a1=100; //in Amperes
+N1=1000; //in rpm
+I_a2=200; //in Amperes
+ratio=1.2; //ratio of Φ2:Φ1=1.2
+
+//SOLUTION
+//Eb1 dir prop phi1.N1
+//Eb1=Vt-Ia1.Ra
+//=> (Vt-Ia1.Ra) dir prop ph1.N1
+//and
+//=> (Vt-Ia2.Ra) dir prop ph1.N2
+//=> (Vt-Ia1.Ra)/ (Vt-Ia1.Ra) = phi1.N1/phi2.N2
+//given Phi2=1.2 Phi1 as flux is increased by 20%
+E_b1=v_t-(I_a1*r_a); //numerator of LHS according to the book
+E_b2=v_t-(I_a2*r_a); //denominator of LHS according to the book
+N2=(E_b2/E_b1)*(1/ratio)*N1;
+N2=round(N2); //to round off the value
+disp(sprintf("The new speed of the armature is %d rpm",N2));
+
+//END
+
+
+
+