diff options
Diffstat (limited to '431/CH4/EX4.28/EX4_28.sce')
-rwxr-xr-x | 431/CH4/EX4.28/EX4_28.sce | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/431/CH4/EX4.28/EX4_28.sce b/431/CH4/EX4.28/EX4_28.sce new file mode 100755 index 000000000..6df2d0d18 --- /dev/null +++ b/431/CH4/EX4.28/EX4_28.sce @@ -0,0 +1,23 @@ +//Calculate starting torque
+//Chapter 4
+//Example 4.28
+//page 333
+clear;
+clc;
+disp("Example 4.28")
+ph=3;
+//rotor copper loss=slip*rotor input
+//Tst= starting torque
+//Tfl=torque at full load
+//Ist/Ifl=r
+r=6;
+S=0.04
+printf(" At slip=0.04")
+printf("\nFor direct-on-line starting, (Tst/Tfl)=%f",((r^2*S)));
+//phase current in start is (1/sqrt(3)) times the phase current in delta
+
+printf("\nFor direct-on-line starting, (Tst/Tfl)=%f",((r/sqrt(3))^2*S));
+
+
+
+
|