diff options
Diffstat (limited to '3826/CH1/EX1.1/Ex1_1.sce')
-rw-r--r-- | 3826/CH1/EX1.1/Ex1_1.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/3826/CH1/EX1.1/Ex1_1.sce b/3826/CH1/EX1.1/Ex1_1.sce new file mode 100644 index 000000000..b6b73aacd --- /dev/null +++ b/3826/CH1/EX1.1/Ex1_1.sce @@ -0,0 +1,14 @@ +//Example 1_1 page no:15
+clc;
+//given
+line_voltage = 400;//in V
+phase_voltage = line_voltage/sqrt(3);//in V
+Starting_current = 75;//in A
+impedance = 1.54;//in ohm
+full_load_current = 30;//in A
+slip = 0.04;//in percent
+tapping = sqrt((Starting_current*impedance*100^2)/phase_voltage);
+disp(tapping,"the tapping provided is(in percent)");
+start_current = Starting_current * 100 / tapping;
+ratio = (start_current/full_load_current)^2*slip;
+disp(ratio,"starting torque in terms of full load torque is(no unit)");
|