summaryrefslogtreecommitdiff
path: root/1541/CH3/EX3.4/Chapter3_Example4.sce
diff options
context:
space:
mode:
Diffstat (limited to '1541/CH3/EX3.4/Chapter3_Example4.sce')
-rwxr-xr-x1541/CH3/EX3.4/Chapter3_Example4.sce23
1 files changed, 23 insertions, 0 deletions
diff --git a/1541/CH3/EX3.4/Chapter3_Example4.sce b/1541/CH3/EX3.4/Chapter3_Example4.sce
new file mode 100755
index 000000000..57fe813ca
--- /dev/null
+++ b/1541/CH3/EX3.4/Chapter3_Example4.sce
@@ -0,0 +1,23 @@
+//Chapter-3, Example 3.4, Page 3.12
+//=============================================================================
+clc
+clear
+
+//INPUT DATA
+VL=440;//Supply line voltage in V
+P=4;//Number of poles
+IL=75;//Line current in A
+cosx=0.8;//Power factor
+n=0.8;//Efficiency of the motor
+s=0.03;//slip of the motor
+f=50;//Frequency in Hz
+
+//CALCULATIONS
+Pm=(sqrt(3)*VL*IL*cosx*n);//Output power in W
+Ns=(120*f)/P;//Synchronous speed in rpm
+N=(1-s)*Ns;//Actual speed in rpm
+
+//OUTPUT
+mprintf('Shaft output power is %3.0f W\nActual speed is %i rpm',Pm,N)
+
+//=================================END OF PROGRAM==============================