summaryrefslogtreecommitdiff
path: root/3683/CH3/EX3.14/Ex3_14.sce
blob: 05c9d6e73c4ec742c98ea393da71e855e61b935d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Bf=750//width of flange, in mm
Bw=250//breadth of web, in mm
Df=100//thickness of flange, in mm
d=700//effective depth, in mm
sigma_cbc=7//in MPa
sigma_st=190//in MPa
m=13.33//modular ratio
M=460*10^6//in N-mm
//to find critical depth of neutral axis
Xc=d/(1+sigma_st/(m*sigma_cbc))//in mm
sigma_cbc_dash=sigma_cbc*(Xc-Df)/Xc//in MPa
//to find lever arm
z=d-(sigma_cbc+2*sigma_cbc_dash)/(sigma_cbc+sigma_cbc_dash)*Df/3//in mm
//taking moments about tensile steel
Ast=M/(sigma_st*z)//in sq mm
Ast=3699//round-off, in sq mm
mprintf("Area of steel required=%d mm^2", Ast)