diff options
Diffstat (limited to '3886/CH16/EX16.3')
-rw-r--r-- | 3886/CH16/EX16.3/16_3.sce | 19 | ||||
-rw-r--r-- | 3886/CH16/EX16.3/16_3.txt | 3 |
2 files changed, 22 insertions, 0 deletions
diff --git a/3886/CH16/EX16.3/16_3.sce b/3886/CH16/EX16.3/16_3.sce new file mode 100644 index 000000000..037cb8404 --- /dev/null +++ b/3886/CH16/EX16.3/16_3.sce @@ -0,0 +1,19 @@ +//body pushed up the plane
+//refer fig. 16.6
+//applying equilibrium condition
+N=300*cosd(30) //N
+mu=0.2
+//Frictional force
+F=mu*N //N
+//initial velocity
+u=1.5 //m/sec
+//displacement
+s=6 //m
+//let final velocity be v m/sec
+//Equating work done by forces along the plane to change in K.E
+v=sqrt(77.71+2.25) //m/sec
+printf("After moving 6 m the body will have velocity v=%.4f m/sec",v)
+
+
+
+
diff --git a/3886/CH16/EX16.3/16_3.txt b/3886/CH16/EX16.3/16_3.txt new file mode 100644 index 000000000..cfd2b040a --- /dev/null +++ b/3886/CH16/EX16.3/16_3.txt @@ -0,0 +1,3 @@ +
+--> exec('E:\My program EM\16. Work energy method\16.3.sce', -1)
+After moving 6 m the body will have velocity v=8.9420 m/sec
\ No newline at end of file |