blob: 6b8d77ef096c3de4f85edc4d4926ce0ca86794f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
printf("\t example 17.3 \n");
printf("\t approximate values are mentioned in the book \n");
// Since the loading is based on 1 ft2 of ground area
nd=1.7;
L=1302;
Kxa=115;
Z=(nd*L)/(Kxa);
printf("\t Z is : %.1f ft \n",Z);
HDU=(Z/nd);
printf("\t height of diffusion unit : %.1ff ft \n",HDU);
// end
|