diff options
Diffstat (limited to '3845/CH7/EX7.11/Ex7_11.sce')
-rw-r--r-- | 3845/CH7/EX7.11/Ex7_11.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/3845/CH7/EX7.11/Ex7_11.sce b/3845/CH7/EX7.11/Ex7_11.sce new file mode 100644 index 000000000..d2e358987 --- /dev/null +++ b/3845/CH7/EX7.11/Ex7_11.sce @@ -0,0 +1,11 @@ +//Example 7.11
+m=60;//Mass of the woman (kg)
+v_f=2;//Final speed (m/s)
+g=9.80;//Acceleration due to gravity (m/s^2)
+h=3;//Height (m)
+t=3.50;//Time taken (s)
+P=[(1/2*m*v_f^2)+(m*g*h)]/t;//Power (W)
+printf('Power output = %0.1f W',P)
+//Answer varies due to round off error
+//Openstax - College Physics
+//Download for free at http://cnx.org/content/col11406/latest
|