diff options
Diffstat (limited to '3845/CH7/EX7.13/Ex7_13.sce')
-rw-r--r-- | 3845/CH7/EX7.13/Ex7_13.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/3845/CH7/EX7.13/Ex7_13.sce b/3845/CH7/EX7.13/Ex7_13.sce new file mode 100644 index 000000000..d9b5906c4 --- /dev/null +++ b/3845/CH7/EX7.13/Ex7_13.sce @@ -0,0 +1,12 @@ +//Example 7.13
+Energy=1000;//Energy (kJ)
+E_by_time=400;//Rate of energy consumption (W)
+Time=Energy*10^3/E_by_time;//Time (s)
+printf('Duration of bicycling required per day = %0.1f min',Time/60)
+//Discussion
+Fat_loss=Energy*1/39;//Fat loss if energy content of fat is assumed to be 39kJ/g (g)
+printf('\nDiscussion:\nFat loss = %0.1f g',Fat_loss)
+//Answers vary due to round off error
+//Openstax - College Physics
+//Download for free at http://cnx.org/content/col11406/latest
+
|