summaryrefslogtreecommitdiff
path: root/278/CH23/EX23.22/ex_23_22.sce
blob: 2c6358851333efed23b7d5ea9af2a15a955b3ed0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//find
clc
//solution
//given
b=6//mm
t1=0.25//mm
l=2500//mm
t=800//N/mm^2
E=200*1000//N/mm^2
M=t*b*t1^2/(12)//N-mm
printf("bending moment is,%f N-mm\n",M)
q=12*M*l/(E*b*t1^2)//rad
printf("angular def is,%f rad\n",q)
U=0.5*M*q
printf("energy stored is,%f N-mm",U)