summaryrefslogtreecommitdiff
path: root/3648/CH5/EX5.5/Ex5_5.sce
diff options
context:
space:
mode:
Diffstat (limited to '3648/CH5/EX5.5/Ex5_5.sce')
-rw-r--r--3648/CH5/EX5.5/Ex5_5.sce9
1 files changed, 9 insertions, 0 deletions
diff --git a/3648/CH5/EX5.5/Ex5_5.sce b/3648/CH5/EX5.5/Ex5_5.sce
new file mode 100644
index 000000000..5a5edf5e4
--- /dev/null
+++ b/3648/CH5/EX5.5/Ex5_5.sce
@@ -0,0 +1,9 @@
+//Example 5_5
+clc();
+clear;
+//To calculate the average frictional force developed
+m=2000 //units in Kg
+vf=20 //units in meters/sec
+d=100 //units in meters
+f=(0.5*m*vf^2)/d //units in Newtons
+printf("Average frictional force f=%d N",f)