blob: 2b24065d73861a957b43ad07d971d9e568ca98ca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
//find tensile stress induced in the link at section A-A and B-B,refer fig 4.4
clc
//solution
//given
P=45000//N//load applied
A1=45*20//mm^2//area of cross section at link A-A
//stress in section A-A
f1=P/A1//(N/mm^2)
printf("the stress in section A-A is ,%f N/mm^2\n",f1)
//stress in section B-B
A2=20*(75-40)//mm^2//area of cross section at link B-B
f2=P/A2//(N/mm^2)
printf("the stress in B-B section ,%f N/mm^2",f2)
|