diff options
Diffstat (limited to '2141/CH5/EX5.2')
-rwxr-xr-x | 2141/CH5/EX5.2/Ex5_2.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/2141/CH5/EX5.2/Ex5_2.sce b/2141/CH5/EX5.2/Ex5_2.sce new file mode 100755 index 000000000..4145276a6 --- /dev/null +++ b/2141/CH5/EX5.2/Ex5_2.sce @@ -0,0 +1,13 @@ +
+clc
+//initialisation of variables
+m=10 //lbm
+w=100 //lbm
+z=77.8 //ft
+Btu=1 //ft-lbf
+g=32.17//ft/sec^2
+gc=32.17//lbm-ft/lbf-sec^2
+//CALCULATIONS
+KE=(m*g/gc)*(-z)//ft-lbf
+//RESULTS
+printf('The stone then falls into the water=% f ft-lbf',KE)
|