summaryrefslogtreecommitdiff
path: root/1325/CH8/EX8.2
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /1325/CH8/EX8.2
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '1325/CH8/EX8.2')
-rw-r--r--1325/CH8/EX8.2/8_2.PNGbin0 -> 104472 bytes
-rw-r--r--1325/CH8/EX8.2/8_2.sce32
2 files changed, 32 insertions, 0 deletions
diff --git a/1325/CH8/EX8.2/8_2.PNG b/1325/CH8/EX8.2/8_2.PNG
new file mode 100644
index 000000000..2b196d539
--- /dev/null
+++ b/1325/CH8/EX8.2/8_2.PNG
Binary files differ
diff --git a/1325/CH8/EX8.2/8_2.sce b/1325/CH8/EX8.2/8_2.sce
new file mode 100644
index 000000000..d24caee55
--- /dev/null
+++ b/1325/CH8/EX8.2/8_2.sce
@@ -0,0 +1,32 @@
+//To find braking torque applied to the drum
+clc
+//given
+
+OH=15//in
+l=OH
+u=0.3
+P=100//lb
+phi=atan(u)
+//according to fig 170(b)
+//for clockwise rotation
+a=6//from figure
+x=r*sin(phi)//in inches;radius of friction circle
+Tb=P*l*x/a//braking torque on the drum
+//for counter clockwise rotation
+a1=5.5//in
+Tb1=P*l*x/a1//braking torque on the drum
+//according to figure 172(a)
+//for clockwise rotation
+a2=6.48//from figure
+x=r*sin(phi)//in inches;radius of friction circle
+Tb2=P*l*x/a2//braking torque on the drum
+//for counter clockwise rotation
+a3=6.38//in
+Tb3=P*l*x/a3//braking torque on the drum
+T1=ceil(Tb1)
+T2=ceil(Tb2)
+T3=ceil(Tb3)
+printf("\nbraking torque on drum\nWhen dimensions are measured from fig 170(b)\nFor clockwise rotation= %.f lb in\nFor counter clockwise rotation= %.f lb in\nWhen dimensions are measured from fig 171(a)\nFor clockwise rotation= %.f lb in\nFor counter clockwise rotation= %.f lb in",Tb,T1,T2,T3)
+
+
+