blob: 65a34c7c06b56a09fbe8b54c130c7236aa5a0bbc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
clear;
clc;
printf("\t example 2.7\n");
h=20; //convective heat transfer coefficient, W/(m^2*K)
k=0.074; //thermal conductivity, J/(m*K)
Ro=k/h; // formula for critical thickness of insulation
printf("\t critical thickness of insulation is : %.4f m\n",Ro);
printf("\t insulation will not even start to do any good until ratio of outer radius and inner radius is 2.32 or outer radius is 0.0058 m.")
//End
|