blob: 18110e8c9f730f4f2d028f559a9aaab1610d61c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
//find the max torque
clc
//solution
//given
d=50//mm
s=10//mm
Imax=80//N/mm^2
pi=3.14
//let T be max toque
//Imax=(2.83*T)/(pi*s*d^2)
T=Imax*pi*s*d^2/(2.83)//N-mm
printf("the value of max torque is,%f N-mm",T)
|