summaryrefslogtreecommitdiff
path: root/24/CH8/EX8.6/Example8_6.sce
blob: f85f6a6925b0f64ba99b357b6a9db1095ab1e8e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//Given that
m = 14  //in kg
F = 40  //in N
d = 0.50  //in meter
Vo = 0.60  //in m/s
V = 0.20  //in m/s

//Sample Problem 8-6a
printf("**Sample Problem 8-6a**\n")
//Using the definition of Work done
Wf = F* d
printf("The work done by the force F is equal to %dJ\n", Wf)

//Sample Problem 8-6b
printf("\n**Sample Problem 8-6b**\n")
//Using Work-Energy theorem
//TE = decrease in Kinetic Energy + Work done by the force F
TE = .5*m*(Vo^2 - V^2) + Wf
printf("The incrase in the thermal energy is equal to %fJ", TE)