In [1]:
    
%pylab inline
    
    
Answer the questions in Problem 6-1 for a 480-V three-phase two-pole 60-Hz induction motor running at a slip of 0.025.
In [2]:
    
fse = 60.0  # [Hz]
p   =  2.0
s   =  0.025
    
In [3]:
    
n_sync = 120*fse / p
print('''
n_sync = {:.0f} r/min
==================='''.format(n_sync))
    
    
In [4]:
    
n_m = (1 - s) * n_sync
print('''
n_m = {:.0f} r/min
================'''.format(n_m))
    
    
In [5]:
    
n_slip = s * n_sync
print('''
n_slip = {:.0f} r/min
================='''.format(n_slip))
    
    
In [6]:
    
fre = p * n_slip / 120
print('''
fre = {:.1f} Hz
============'''.format(fre))