blob: f910c99a2ed9c063538b8767395fde95b6ce4a67 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
//Chapter 10:Traction Drives
//Example 5
clc;
//Variable Initialization
Mm=40 //weight of the motor coach in tonne
Mt=35 //weight of the trailer in tonne
u=0.2 //co-efficient of adhesion
r=30 //train resistance N/tonne
//Solution
//(a)when the motor to trailer ratio is 1:2
M=Mm+2*Mt //weight of one unit
Me=1.1*M
Md=40 //weight on the driving wheels
Fm=9810*u*Md //total tractive effort without the wheel
Ft=Fm //at maximum accelaration
alpha=(Ft-M*r)/(277.8*Me) //required accelaration since Ft=277.8*u*alpha*M*r
//(b)when the motor to trailer ratio is 1:1
M=Mm+Mt //weight of one unit
Me=1.1*M
Md=40 //weight on the driving wheels
Fm=9810*u*Md //total tractive effort wihout the wheel
Ft=Fm //at maximum accelaration
alpha1=(Ft-M*r)/(277.8*Me) //required accelaration since Ft=277.8*u*alpha*M*r
//Results
mprintf("(a)Maximum accelaration on a level track is alpha : %.4f kmphps",alpha)
mprintf("\n(b)Maximum accelaration when motor to trailer coaches ratio is 1:1 is alpha : %.3f kmphps",alpha1)
|