diff options
Diffstat (limited to '2921/CH12/EX12.4/Ex12_4.sce')
-rwxr-xr-x | 2921/CH12/EX12.4/Ex12_4.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/2921/CH12/EX12.4/Ex12_4.sce b/2921/CH12/EX12.4/Ex12_4.sce new file mode 100755 index 000000000..6e4981960 --- /dev/null +++ b/2921/CH12/EX12.4/Ex12_4.sce @@ -0,0 +1,19 @@ +clc; +clear; +mprintf('MACHINE DESIGN \n Timothy H. Wentzell, P.E. \n EXAMPLE-12.4 Page No.262\n'); + +//Dynamic load +Vm=1129; +Ft=146; +Fd=(600+Vm)*Ft/600; + +mprintf('\n Dynamic load = %f lb.',Fd); + +Fs=1900; +Nsf=2; + +//Comparing to the allowable stress + +if (Fs/Nsf)>Fd then + mprintf('\n This is an acceptable design.'); +end |