From 7bc77cb1ed33745c720952c92b3b2747c5cbf2df Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Sat, 3 Feb 2018 11:01:52 +0530 Subject: Added new code --- 3886/CH15/EX15.6/15_6.sce | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 3886/CH15/EX15.6/15_6.sce (limited to '3886/CH15/EX15.6/15_6.sce') diff --git a/3886/CH15/EX15.6/15_6.sce b/3886/CH15/EX15.6/15_6.sce new file mode 100644 index 000000000..8cdc10100 --- /dev/null +++ b/3886/CH15/EX15.6/15_6.sce @@ -0,0 +1,20 @@ +//Body on an inclined plane +//Refer fig. 15.8 (a),(b) and (c) +//Consider 1200 N block +//applying equilibrium condition +N=1200*cosd(12) //N +mu=0.2 +//From Law of friction +F=mu*N +//applying equilibrium condition +a=(800-484.25)/(122.32+((800)/(9.81))) //m/sec^2 +//solving for T +T=800-((800*1.549)/(9.81)) //N +//initial velocity=0 +t=3 //sec +//distance moved in 3 sec +s=0*3+((1.549*3^2)/(2)) //m +printf("\na=%.3f m/sec^2\nT=%.2f N\ns=%.3f m",a,T,s) + + + -- cgit