diff options
Diffstat (limited to '1325/CH8/EX8.4/8_4.sce')
-rw-r--r-- | 1325/CH8/EX8.4/8_4.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/1325/CH8/EX8.4/8_4.sce b/1325/CH8/EX8.4/8_4.sce new file mode 100644 index 000000000..c052e3d18 --- /dev/null +++ b/1325/CH8/EX8.4/8_4.sce @@ -0,0 +1,15 @@ +//To find the least force required in order to support load of .5 tons
+clc
+//given
+u=.3
+theta=270*%pi/180
+l=18//in
+a=4//in
+Di=15//in
+Do=21//in
+w=.5//tons
+W=w*2204//lb
+Q=W*Di/Do//required tangential braking force on the drum
+k=%e^(u*theta)//k=T1/T2
+p=Q*a/(l*(k-1))
+printf("Least force required, P = %.f lb",p)
|