blob: ec9f8f882b23a913cadefb4c953af9ae037fc558 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//Variable declaration:
//From example 9.7:
h = 38.7 //Average heat transfer coefficient (W/m^2.K)
L = 1.2 //Length of plate (m)
k = 0.025 //Thermal conductivity of air (W/m)
//Calculation:
Bi = h*L/k //Average Biot number
//Result:
printf("The average Biot number is : %.0f ",Bi)
|