Traction Python Scrpit 2
Traction Python Scrpit 2
Traction Python Scrpit 2
• #gradient of 1 in 80.The gear ratio is 3.5,gear efficiency 92%,wheel diameter 92cm train resistance 40N/t and rotational inertia
• #10 percent of the dead weight.Find the torque developed by each motor.
• #########################################################################################################################
#########
• #Given
• M = 250.0 #tonne (mass of motor)
• Me = 1.1*250.0 #tonne (mass of rotating motor)
• Vm = 42.0 #km/h (speed)
• t1 = 20.0 #s (time)
• G = 1/80.0*100 # (% gradient)
• r = 40.0 #N/tonne(train reistance)
• D = 0.92 #m (wheel diameter)
• gratio = 3.5 # (gear ratio)
• geff = 0.92 # (gear efficiency)
• a = Vm/t1 # (acceleration)
• #Now,tractive force is given by
• Ft = 277.8*Me*a + 98*M*G + M*r #N
• #Now Ft = 2*gratio*geff*T/D.Therefore torque 'T' is
• T = Ft*D/(2*gratio*geff) #N-m
• #There are motors.so,torque by each motor is
• torque = T/4 #N-m
• print "Torque developed by each motor = ",round(torque),"N-m."
#A 250-tonne motor coach having 4 motors,each developing a torque of 8000 N-m during acceleration,starts from rest.If
#up-gradient is 30 in 1000,gear ratio 3.5,gear transmission efficiency 90%,wheel diameter 90cm,train resistance 50N/t,
#rotational inertia effect 10%,compute the time taken by the coach to attain a speed of 80km/h.
#If supply voltage is 3000V and motor efficiency 85%,calculate the current taken during the acceleration period.
###################################################################################################
######################
#Given
M = 250.0 #tonne (mass of motor)
Me = 1.1*250 #tonne (mass of rotating motor)
r = 50.0 #N/t (train resistance)
G = 30.0/1000*100 # (% gradient)
torque = 8000 #N-m (torque of each motor)
D = 0.90 #m (wheel diameter)
gratio = 3.5 # (gear ratio)
geff = 0.90 # (gear efficiency)
Vm = 80 #km/h (speed)
meff = 0.85 # (Motor efficiency)
V = 3000.0 # (Voltage)
T = 4*torque # (total torque)
#Now,we Know that
Ft = 2*gratio*geff*T/D #N
#Also,we know that Ft = 277.8*Me*a + 98MG + Mr
a = (Ft-98*M*G-M*r)/(277.8*Me) #km/h/s(acceleration)
#Time taken to attain the speed
t1 = Vm/a #s
#Power taken by motor is given by
Power = Ft*(5.0/18*Vm)/meff #W
#Total current drawn is (using P = VI)
I = Power/V #A
#Current drawn/motor is
cur = I/4 #A
#Given
M = 300.0 #tonne (mass of train)
Mratio = 1.08 # (Me/M)
Vm = 40.0 #km/h (speed)
beta = 3.0 #km/h/s (retardation)
r = 49.0 #N/t (train resistance)
meff = 0.9 # (motor efficiency)
D = 3.0 #km (distance)