summaryrefslogtreecommitdiff
path: root/3886/CH17/EX17.5/17_5.sce
diff options
context:
space:
mode:
Diffstat (limited to '3886/CH17/EX17.5/17_5.sce')
-rw-r--r--3886/CH17/EX17.5/17_5.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/3886/CH17/EX17.5/17_5.sce b/3886/CH17/EX17.5/17_5.sce
new file mode 100644
index 000000000..cf5fc2e6b
--- /dev/null
+++ b/3886/CH17/EX17.5/17_5.sce
@@ -0,0 +1,15 @@
+//Block on inclined plane
+//refer fig. 17.5
+theta=atand(5/12) //degree
+N=130*cosd(theta) //N
+mu=0.3
+F=mu*N //N
+//Force down the plane
+R=130*sind(theta)-36 //N
+u=2.4 //m/sec
+//v is final velocity
+t=5 //sec
+//applying impulse momentum equation
+v=((14*5*9.81)/(130))+2.4 //m/sec
+printf("\nv=%.3f m/sec",v)
+