summaryrefslogtreecommitdiff
path: root/1325/CH8/EX8.1
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.1
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.1')
-rw-r--r--1325/CH8/EX8.1/8_1.PNGbin0 -> 75254 bytes
-rw-r--r--1325/CH8/EX8.1/8_1.sce15
2 files changed, 15 insertions, 0 deletions
diff --git a/1325/CH8/EX8.1/8_1.PNG b/1325/CH8/EX8.1/8_1.PNG
new file mode 100644
index 000000000..bbae5cf83
--- /dev/null
+++ b/1325/CH8/EX8.1/8_1.PNG
Binary files differ
diff --git a/1325/CH8/EX8.1/8_1.sce b/1325/CH8/EX8.1/8_1.sce
new file mode 100644
index 000000000..a769fa12f
--- /dev/null
+++ b/1325/CH8/EX8.1/8_1.sce
@@ -0,0 +1,15 @@
+//Find the braking torque applied to the drum
+clc
+//given
+dia=12//in
+r=dia/2
+CQ=7//in
+OC=6//in
+OH=15//in
+u=0.3
+P=100//lb
+phi=atan(u)
+x=r*sin(phi)//in inches;radius of friction circle
+a=5.82//from figure
+Tb=P*OH*x/a//braking torque
+printf("\nThe braking torque of the drum Tb= %.2f lb in\n",Tb)