summaryrefslogtreecommitdiff
path: root/3574/CH7/EX7.1/EX7_1.sce
diff options
context:
space:
mode:
Diffstat (limited to '3574/CH7/EX7.1/EX7_1.sce')
-rw-r--r--3574/CH7/EX7.1/EX7_1.sce31
1 files changed, 31 insertions, 0 deletions
diff --git a/3574/CH7/EX7.1/EX7_1.sce b/3574/CH7/EX7.1/EX7_1.sce
new file mode 100644
index 000000000..a567446c0
--- /dev/null
+++ b/3574/CH7/EX7.1/EX7_1.sce
@@ -0,0 +1,31 @@
+// Example 7.1
+// Determine (a) Torque load on the shaft (b) Torque angle if the voltage
+// drops to 224V (c) Will the rotor pull out of synchronism?
+// Page No. 282
+
+clc;
+clear;
+close;
+
+// Given data
+f=60; // Frequency
+P=4; // Number of poles
+Pshaft=10; // Shaft power in hp
+V1=240; // Rated voltage
+V2=224; // New voltage
+phirel1=30; // Torque angle
+
+
+// (a) Torque load on the shaft
+ns=120*f/P; // speed of machine
+Trel=Pshaft*5252/ns;
+
+
+// (b) Torque angle if the voltage drops to 224V
+phirel2=asind((V1^2/V2^2)*sind(2*phirel1))/2
+
+// Display result on command window
+printf("\n Torque load on the shaft = %0.2f lb-ft ",Trel);
+printf("\n Torque angle if the voltage drops to 224V = %0.2f deg ",phirel2);
+printf("\n Because torque angle is less than 45 degree, \n the rotor will not pull out of synchronism ")
+