diff options
Diffstat (limited to '3811/CH5/EX5.1/Ex5_1.sce')
-rw-r--r-- | 3811/CH5/EX5.1/Ex5_1.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/3811/CH5/EX5.1/Ex5_1.sce b/3811/CH5/EX5.1/Ex5_1.sce new file mode 100644 index 000000000..33def8fdb --- /dev/null +++ b/3811/CH5/EX5.1/Ex5_1.sce @@ -0,0 +1,17 @@ +//Book name: Fundamentals of electrical drives by Mohamad A. El- Sharkawi
+//chapter 5
+//example 5.1
+//edition 1
+//publisher and place:Nelson Engineering
+clc;
+clear;
+kpie=3; //flux in voltsec
+Vt=600; //voltage in volts
+Ra=2; //armature resistance in ohms
+Ia=5; //armature current at fullload in ampere
+Td=kpie*Ia; //rated torque in Nm
+disp(Td,'The rated torque in Nm is')
+Tst=(Vt*kpie)/Ra; //starting torque
+disp(Tst,'The starting torque in Nm is')
+Ist=Vt/Ra; //starting current
+disp(Ist,'The starting current in ampere is')
|