blob: 3211dbf9fb59563d5c49342fc93c315bb40f06bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//Variable declaration:
F = 50.0 //Buoyancy flux of gas (m^4/s^3)
u = 4.0 //wind speed (m/s)
//Calculation:
xc = 14*F**(5.0/8.0) //Downward distance (m)
xf = 3.5*xc //distance of transition from first stage of rise to the second stage of rise (m)
Dh = 1.6*F**(1.0/3.0)*u**-1*xf**(2.0/3.0) //Plume rise (m)
//Result:
printf("The plume rise is : %.0f m .",Dh)
|