summaryrefslogtreecommitdiff
path: root/3826/CH2/EX2.13/Ex2_13.sce
blob: b32c856a0a553292e6b90aa0892a78d256f061c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//Example 2_14 page no:188
clc;
//given
mass = 136000;//in kg
g = 9.81;
up_gradient = 1/600;
len = 1005;//in m
V = 1500;
comp_train_wg = mass * g * up_gradient;
net_tractive_effort = 104500 - 6675;
f = net_tractive_effort / (1.1* mass);
quantity = 1/f;
retarding_coasting = 4448/(1.1 * mass);
area_current_curve = 21300*V/3600;
energy_consumption = area_current_curve/(mass*len);
disp(energy_consumption,"the energy consumption of motor-coach train is (in Wh/kg-m)");