summaryrefslogtreecommitdiff
path: root/3648/CH5/EX5.5
diff options
context:
space:
mode:
Diffstat (limited to '3648/CH5/EX5.5')
-rw-r--r--3648/CH5/EX5.5/Ex5_5.sce9
-rw-r--r--3648/CH5/EX5.5/Ex5_5.txt1
2 files changed, 10 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)
diff --git a/3648/CH5/EX5.5/Ex5_5.txt b/3648/CH5/EX5.5/Ex5_5.txt
new file mode 100644
index 000000000..7d9af4863
--- /dev/null
+++ b/3648/CH5/EX5.5/Ex5_5.txt
@@ -0,0 +1 @@
+Average frictional force f=4000 N \ No newline at end of file