summaryrefslogtreecommitdiff
path: root/608/CH1/EX1.05/1_05.sce
blob: 585ab88402e2338b15f2fd6612afc24b195e2b75 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//Problem 1.05: A mass of 1000 kg is raised through a height of 10m in 20s. What is (a) the work done and (b) the power developed?

//initializing the variables:
M = 1000; // in Kg
h = 10; // in m
t = 20; // in sec
g = 9.81 // in m/s2

//calculation:
W = M*g*h
P = W/t

printf("\n\nResult\n\n")
printf("\nWork Done: %.0f Joule(J)\n",W)
printf("\nPower: %.0f watt(W)\n",P)