summaryrefslogtreecommitdiff
path: root/1325/CH8/EX8.1/8_1.sce
diff options
context:
space:
mode:
Diffstat (limited to '1325/CH8/EX8.1/8_1.sce')
-rw-r--r--1325/CH8/EX8.1/8_1.sce15
1 files changed, 15 insertions, 0 deletions
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)