summaryrefslogtreecommitdiff
path: root/3886/CH5/EX5.16
diff options
context:
space:
mode:
authorprashantsinalkar2018-02-03 11:01:52 +0530
committerprashantsinalkar2018-02-03 11:01:52 +0530
commit7bc77cb1ed33745c720952c92b3b2747c5cbf2df (patch)
tree449d555969bfd7befe906877abab098c6e63a0e8 /3886/CH5/EX5.16
parentd1e070fe2d77c8e7f6ba4b0c57b1b42e26349059 (diff)
downloadScilab-TBC-Uploads-master.tar.gz
Scilab-TBC-Uploads-master.tar.bz2
Scilab-TBC-Uploads-master.zip
Added new codeHEADmaster
Diffstat (limited to '3886/CH5/EX5.16')
-rw-r--r--3886/CH5/EX5.16/5_16.sce17
-rw-r--r--3886/CH5/EX5.16/5_16.txt4
2 files changed, 21 insertions, 0 deletions
diff --git a/3886/CH5/EX5.16/5_16.sce b/3886/CH5/EX5.16/5_16.sce
new file mode 100644
index 000000000..524a62433
--- /dev/null
+++ b/3886/CH5/EX5.16/5_16.sce
@@ -0,0 +1,17 @@
+//Determine force P
+//refer fig.5.21
+//From FBD
+theta=250*%pi/180 //radians
+r=250 //mm
+mu=0.3
+//from rope friction equation
+//T2=T1*%e^(mu*theta)
+//also (T2-T2)*r=M
+//solving we get
+T1=(300*1000)/(250*(3.7025-1)) //N
+T2=3.7025*T1 //N
+//Consider the equilibrium of lever arm,
+P=(T2*50)/300 //N
+printf("\n The required force is P=%0.1f N",P)
+
+
diff --git a/3886/CH5/EX5.16/5_16.txt b/3886/CH5/EX5.16/5_16.txt
new file mode 100644
index 000000000..16bb4f0fd
--- /dev/null
+++ b/3886/CH5/EX5.16/5_16.txt
@@ -0,0 +1,4 @@
+
+--> exec('E:\My program EM\5. Friction\5.16.sce', -1)
+
+ The required force is P=274.0 N \ No newline at end of file