diff options
Diffstat (limited to '3648/CH5/EX5.10/Ex5_10.sce')
-rw-r--r-- | 3648/CH5/EX5.10/Ex5_10.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/3648/CH5/EX5.10/Ex5_10.sce b/3648/CH5/EX5.10/Ex5_10.sce new file mode 100644 index 000000000..426fa1524 --- /dev/null +++ b/3648/CH5/EX5.10/Ex5_10.sce @@ -0,0 +1,10 @@ +//Example 5_10
+clc();
+clear;
+//To calculate how large the average frictional force
+a=9.8 //units in meters/sec^2
+s=4 //units in meters
+v=6 //units in meters/sec
+m=3 //units on Kg
+f=m*((a*s)-(0.5*v^2))/s //units in Newtons
+printf("The average frictional force f=%.1f N",f)
|