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 /608/CH21/EX21.21 | |
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 '608/CH21/EX21.21')
-rwxr-xr-x | 608/CH21/EX21.21/21_21.sce | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/608/CH21/EX21.21/21_21.sce b/608/CH21/EX21.21/21_21.sce new file mode 100755 index 000000000..2cc2c0368 --- /dev/null +++ b/608/CH21/EX21.21/21_21.sce @@ -0,0 +1,20 @@ +//Problem 21.21: A 200 V, d.c. shunt-wound motor has an armature resistance of 0.4 ohm and at a certain load has an armature current of 30 A and runs at 1350 rev/min. If the load on the shaft of the motor is increased so that the armature current increases to 45 A, determine the speed of the motor, assuming the flux remains constant.
+
+//initializing the variables:
+Ia1 = 30; // in Amperes
+Ia2 = 45; // in Amperes
+Ra = 0.4; // in ohm
+n1 = 1350/60; // in Rev/sec
+V = 200; // in Volts
+
+//calculation:
+//The relationship E proportional to (Phi*n) applies to both generators and motors. For a motor,
+//E = V - (Ia*Ra)
+E1 = V - (Ia1*Ra)
+E2 = V - (Ia2*Ra)
+//The relationship, E1/E2 = Phi1*n1/Phi2*n2, applies to both generators and motors. Since the flux is constant, Phi1 = Phi2
+Phi2 = Phi1
+n2 = E2*Phi1*n1/(Phi2*E1)
+
+printf("\n\n Result \n\n")
+printf("\n the speed of the motor is %.2f rev/sec ",n2)
\ No newline at end of file |