summaryrefslogtreecommitdiff
path: root/2921/CH14/EX14.3/Ex14_3.sce
diff options
context:
space:
mode:
Diffstat (limited to '2921/CH14/EX14.3/Ex14_3.sce')
-rwxr-xr-x2921/CH14/EX14.3/Ex14_3.sce22
1 files changed, 22 insertions, 0 deletions
diff --git a/2921/CH14/EX14.3/Ex14_3.sce b/2921/CH14/EX14.3/Ex14_3.sce
new file mode 100755
index 000000000..c4921112e
--- /dev/null
+++ b/2921/CH14/EX14.3/Ex14_3.sce
@@ -0,0 +1,22 @@
+clc;
+clear;
+mprintf('MACHINE DESIGN \n Timothy H. Wentzell, P.E. \n EXAMPLE-14.3 Page No.315\n');
+
+//Power rating of belt
+P1=27+2.98;
+SF=1.5;
+P=P1/SF;
+P=round(P);
+
+mprintf('\n Power rating = %f hp.',P);
+
+//Length of belt
+C=20;
+D1=8;
+D2=16;
+L1=2*C+1.57*(D1+D2)+(D2-D1)^2/(4*C);
+
+//Use an 80-inch belt
+L=80;
+
+mprintf('\n Length of belt = %f in.',L);