diff options
Diffstat (limited to '3845/CH14/EX14.2/Ex14_2.sce')
-rw-r--r-- | 3845/CH14/EX14.2/Ex14_2.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/3845/CH14/EX14.2/Ex14_2.sce b/3845/CH14/EX14.2/Ex14_2.sce new file mode 100644 index 000000000..3db0a3b90 --- /dev/null +++ b/3845/CH14/EX14.2/Ex14_2.sce @@ -0,0 +1,13 @@ +//Example 14.2
+M=10000;//Mass of truck (kg)
+g=9.80;//Acceleration due to gravity (m/s^2)
+h=75;//Vertical displacement (m)
+delta_PE=M*g*h;//Change in gravitational potential energy (J)
+Q=delta_PE;//Heat transferred (J)
+m=100;//Mass of brake material (kg)
+c=800;//Specific heat of brake material (J/kg.C)
+delta_T=Q/(m*c);//Temperature increase (C)
+printf('Temperature increase of brake material = %0.2f C',delta_T)
+//Answer varies due to round off error
+//Openstax - College Physics
+//Download for free at http://cnx.org/content/col11406/latest
|