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.8 | |
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.8')
-rw-r--r-- | 3886/CH5/EX5.8/5_8.sce | 17 | ||||
-rw-r--r-- | 3886/CH5/EX5.8/5_8.txt | 3 |
2 files changed, 20 insertions, 0 deletions
diff --git a/3886/CH5/EX5.8/5_8.sce b/3886/CH5/EX5.8/5_8.sce new file mode 100644 index 000000000..652e6f9eb --- /dev/null +++ b/3886/CH5/EX5.8/5_8.sce @@ -0,0 +1,17 @@ +//Force P for impending motion
+//Refer fig. 5.12
+//consider equilibrium of block A
+//NA*cosd(30)+FA*sind(30)-1500-500=0
+//Law of friction gives
+NA=2000 //N
+FA=NA*tand(15) //N
+C=NA*sind(30)-FA*cosd(30) //N
+//consider equilibrium of block B
+NB=2000*cosd(60)+535.90*cosd(30) //N
+FB=NB*tand(15) //N
+P=(392.30)+(2000*sind(60))-(535.90*sind(30)) //N
+printf("The required force is P=%0.2f N",P)
+
+
+
+
diff --git a/3886/CH5/EX5.8/5_8.txt b/3886/CH5/EX5.8/5_8.txt new file mode 100644 index 000000000..b3a8d6afb --- /dev/null +++ b/3886/CH5/EX5.8/5_8.txt @@ -0,0 +1,3 @@ +
+--> exec('E:\My program EM\5. Friction\5.8.sce', -1)
+The required force is P=1856.40 N
\ No newline at end of file |