CHAPTER 2 - DYNAMICS OF ELECTRICAL DRIVES

EXAMPLE 2.3 - PG NO. 29

In [1]:
#example 2.3
#page no. 29
#calculate the max additional load
import math
Pm=0.74
teta1=30
teta2=45
print('a1=0.026*Pm')
print('a2=0.304*Pm')
print("since a2 > a1 ,the drive is stable")
load=Pm*math.sin(math.degrees(60.5))
print('maximum safe load =1.74*Pl1')
print'%s %.2f %s' %('So, additional load that can be thrown on the shaft =',Pm,'rated load')
a1=0.026*Pm
a2=0.304*Pm
since a2 > a1 ,the drive is stable
maximum safe load =1.74*Pl1
So, additional load that can be thrown on the shaft = 0.74 rated load