blob: 4e4c014c68b7ade8262c28a5553998d66d4b61ce (
plain)
1
2
3
4
5
6
7
8
9
10
|
//Variable declaration:
//From example 10.2:
Ra = 1.71*10**11 //Rayleigh number
//Result:
if (Ra>10**9) then
printf("The convection flow category is turbulent.")
elseif(Ra<10**9) then
printf("The convection flow category is laminar.")
end
|