diff options
Diffstat (limited to '2921/CH8/EX8.1/Ex8_1.sce')
-rwxr-xr-x | 2921/CH8/EX8.1/Ex8_1.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/2921/CH8/EX8.1/Ex8_1.sce b/2921/CH8/EX8.1/Ex8_1.sce new file mode 100755 index 000000000..07372f967 --- /dev/null +++ b/2921/CH8/EX8.1/Ex8_1.sce @@ -0,0 +1,18 @@ +clc; +clear; +mprintf('MACHINE DESIGN \n Timothy H. Wentzell, P.E. \n EXAMPLE-8.1 Page No.160\n'); + +Dm=0.625; //[in] Mean diameter of spring +F=35; //[lb] Load + + +K=1.25; //[] Wahl factor for Dm/Dw=6.25 (figure 8.8) +Q=190000; //[lb/in^2] Expected ultimate strength + +LF=0.263; //[] Loading factor + +Dw=(K*8*F*Dm/(LF*%pi*Q))^(1/2.846); //[in] Wire diameter + +mprintf('\n The wire diameter of spring is %f in.',Dw); + +//Use U.S Steel 12-gage wire: Dw=0.105 in. |