diff options
author | prashantsinalkar | 2018-02-03 11:01:52 +0530 |
---|---|---|
committer | prashantsinalkar | 2018-02-03 11:01:52 +0530 |
commit | 7bc77cb1ed33745c720952c92b3b2747c5cbf2df (patch) | |
tree | 449d555969bfd7befe906877abab098c6e63a0e8 /3886/CH5/EX5.1 | |
parent | d1e070fe2d77c8e7f6ba4b0c57b1b42e26349059 (diff) | |
download | Scilab-TBC-Uploads-7bc77cb1ed33745c720952c92b3b2747c5cbf2df.tar.gz Scilab-TBC-Uploads-7bc77cb1ed33745c720952c92b3b2747c5cbf2df.tar.bz2 Scilab-TBC-Uploads-7bc77cb1ed33745c720952c92b3b2747c5cbf2df.zip |
Diffstat (limited to '3886/CH5/EX5.1')
-rw-r--r-- | 3886/CH5/EX5.1/5_1.sce | 19 | ||||
-rw-r--r-- | 3886/CH5/EX5.1/5_1.txt | 5 |
2 files changed, 24 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)
+
diff --git a/3886/CH5/EX5.1/5_1.txt b/3886/CH5/EX5.1/5_1.txt new file mode 100644 index 000000000..ca51c0e9e --- /dev/null +++ b/3886/CH5/EX5.1/5_1.txt @@ -0,0 +1,5 @@ +
+--> exec('E:\My program EM\5. Friction\5.1.sce', -1)
+
+Phor=1250 N
+Pinc=1210 N
\ No newline at end of file |