summaryrefslogtreecommitdiff
path: root/3886/CH5/EX5.1/5_1.sce
diff options
context:
space:
mode:
Diffstat (limited to '3886/CH5/EX5.1/5_1.sce')
-rw-r--r--3886/CH5/EX5.1/5_1.sce19
1 files changed, 19 insertions, 0 deletions
diff --git a/3886/CH5/EX5.1/5_1.sce b/3886/CH5/EX5.1/5_1.sce
new file mode 100644
index 000000000..969095d3d
--- /dev/null
+++ b/3886/CH5/EX5.1/5_1.sce
@@ -0,0 +1,19 @@
+//Value of P
+//Refer fig. 5.5 (a),(b)&(c)
+//(a) when P is Horizontal Phor
+//Consider equilibrium
+//block A
+N1=1000 //N
+F1=0.25*N1 //N
+T=F1 //N
+//Block B
+N2=N1+2000 //N
+F2=3000/3 //mu*N2 N
+Phor=F1+F2 //N
+//(b) when P is inclined (Pinc)
+//Considering equilibrium of block B
+//Using law of friction
+//Pinc*cosd(30)-F1-F2=0
+Pinc=1250/(cosd(30)+(0.5/3)) //N
+printf("\nPhor=%0.2d N\nPinc=%0.2d N",Phor,Pinc)
+