blob: a9bcdffb9c5ce24f30b07ea3e866fd5d12960ba3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
clc;
clear;
mprintf('MACHINE DESIGN \n Timothy H. Wentzell, P.E. \n EXAMPLE-17.2 Page No.383\n');
//Combined stress using the maximum shear stress theorem
Ss=2170;
S=8780;
Sr=sqrt(Ss^2+(S/2)^2);
mprintf('\n Combined stress = %f lb/in^2.',Sr);
|