diff options
Diffstat (limited to 'Working_Examples/293/CH20/EX20.4/eg20_4.sce')
-rwxr-xr-x | Working_Examples/293/CH20/EX20.4/eg20_4.sce | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/Working_Examples/293/CH20/EX20.4/eg20_4.sce b/Working_Examples/293/CH20/EX20.4/eg20_4.sce new file mode 100755 index 0000000..c792906 --- /dev/null +++ b/Working_Examples/293/CH20/EX20.4/eg20_4.sce @@ -0,0 +1,38 @@ +//a
+rop = 0.4; //ratio of ON time T0 to cycle time Tp
+Vb =550; //rated terminal voltage of the dc motor
+Ia = 30; //current drawn by the motor (in amps)
+Ra = 1; //armature circuit resistance (in ohms)
+ts = 5.94; //torque and speed parameter of the motor (in N-m/A)
+
+Vm = rop*Vb; //average value of the armature terminal voltage
+Ea = Vm - (Ia*Ra); //induced armature voltage
+
+wm = Ea/ts; //motor speed (in rad/s)
+disp("a")
+disp(wm,"motor speed (in rad/s) = ")
+
+//b
+deltaI = 5; //change of armature current during the ON period
+La = 0.1; //armature winding inductance (in H)
+To = La*deltaI/(Vb - Ea); //ON time
+Tp = To/rop; //cycle time
+
+f = 1/Tp ; //required pulses per second
+disp("b")
+disp(f,"required pulses per second = ")
+
+//c
+rop = 0.7; //new ratio of ON time T0 to cycle time Tp
+Vm = rop*Vb; //average value of the armature terminal voltage
+Ea = Vm - (Ia*Ra); //induced armature voltage
+
+wm = Ea/ts; //motor speed (in rad/s)
+disp("c")
+disp(wm,"motor speed with To/Tp equal to 0.7 (in rad/s) = ")
+
+To = La*deltaI/(Vb - Ea); //ON time
+Tp = To/rop; //cycle time
+
+f = 1/Tp ; //required pulses per second
+disp(f,"required pulses per second with To/Tp equal to 0.7 = ")
\ No newline at end of file |