blob: 3786c2baa858ac3af8872b99b7028a6016b0a8da (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
//Bending moment//
pathname=get_absolute_file_path('9.06.sce')
filename=pathname+filesep()+'9.06-data.sci'
exec(filename)
//Velocity in m/sec:
V=s*5/18
//Reynolds number:
Re=d*V*D/u
//Value of Cd is obtained as:
Cd=0.35;
//Area(in m^2):
A=L^2;
//Moment about the chimney base(in N-m):
M0=Cd*A*D/4*d*V^2
printf("\n\nRESULTS\n\n")
printf("\n\nBending moment at the bottom of the chimney: %.3f N-m\n\n",M0)
|