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/CH5/EX5.15/5_15.sce | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 3886/CH5/EX5.15/5_15.sce (limited to '3886/CH5/EX5.15/5_15.sce') diff --git a/3886/CH5/EX5.15/5_15.sce b/3886/CH5/EX5.15/5_15.sce new file mode 100644 index 000000000..7e544bcd2 --- /dev/null +++ b/3886/CH5/EX5.15/5_15.sce @@ -0,0 +1,25 @@ +//minimum weight W to prevent downward motion of 1000N block +mu1=0.2 +mu2=0.3 +//Refer fig. 5.20 +alpha=atand(3/4) //degree +//considering equilibrium of block W +//N1=W*cosd(alpha) +//F1=mu2*N1 +//T1=0.84*W +theta=180 //degree +//Friction equation of rope gives +//T2=T1*%e^(mu2*theta) +//solving +//T2=2.156*W +//Consider equilibrium of 1000 N block +//N2-N1=800 +//N2=0.8*W+800 +//F2=0.3*N2 +//F1+F2+T2-1000*sind(alpha)=0 +//solving we get +W=(1000*sind(alpha)-240)/(0.24+0.24+2.156) //N +printf("\nRequired force is W=%0.2f N",W) + + + -- cgit