summaryrefslogtreecommitdiff
path: root/2921/CH18/EX18.3/Ex18_3.sce
blob: 58c71d643c08901029bff73d2bb54d3b01cff4f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
clc;
clear;
mprintf('MACHINE DESIGN \n Timothy H. Wentzell, P.E. \n EXAMPLE-18.3 Page No.402\n');
L=1/4;

Dp=1.375;
LA=atan(L/(%pi*Dp));

mprintf('\n Lead angle = %f deg.',LA*180/%pi);

//Torque
phi=14.5*%pi/180;
f=0.15;
F=5800;
Tup=(F*Dp/4)*(cos(phi)*tan(LA)+f)/(cos(phi)-f*tan(LA));

mprintf('\n Torque = %f in-lb.',Tup);

//Power
n=175*4/3;
P=Tup*n/63000;

mprintf('\n Power = %f hp per lead screw.',P)