diff options
Diffstat (limited to '1541/CH3/EX3.2')
-rwxr-xr-x | 1541/CH3/EX3.2/Chapter3_Example2.sce | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/1541/CH3/EX3.2/Chapter3_Example2.sce b/1541/CH3/EX3.2/Chapter3_Example2.sce new file mode 100755 index 000000000..77911e96d --- /dev/null +++ b/1541/CH3/EX3.2/Chapter3_Example2.sce @@ -0,0 +1,20 @@ +//Chapter-3, Example 3.2, Page 3.6
+//=============================================================================
+clc
+clear
+
+//INPUT DATA
+N=600;//Speed of 12 pole 3 phase alternator in rpm
+P=12;//No. of poles of alternator
+n=6;//No. of poles in induction motor
+s=2.5;//slip of the motor in %
+
+//CALCULATIONS
+f=(N*P)/120;//Alternator supply frequency in Hz
+Ns=(120*f)/n;//Synchronous speed in rpm
+N1=(Ns-((s*Ns)/100));//Full load speed of the motor when the slip is 2.5%
+
+//OUTPUT
+mprintf('Full load speed of the motor when the slip is 2.5 percent = %irpm',N1)
+
+//=================================END OF PROGRAM==============================
|