diff options
Diffstat (limited to '3772/CH15/EX15.8/Ex15_8.sce')
-rw-r--r-- | 3772/CH15/EX15.8/Ex15_8.sce | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/3772/CH15/EX15.8/Ex15_8.sce b/3772/CH15/EX15.8/Ex15_8.sce new file mode 100644 index 000000000..f38d0643c --- /dev/null +++ b/3772/CH15/EX15.8/Ex15_8.sce @@ -0,0 +1,20 @@ +// Problem no 15.8,Page no.356 + +clc;clear; +close; + +A=1600*(3600)**-1 //Kg/sec //Amount of steam generated +v=0.24 //m**3/kg //specific volume of steam +sigma_t=4*10**6 //MPa //Tensile stress +V_1=30 //m/s //Velocity of steam +p=1*10**6 //Pa //Steam pressure + +//Calculation + +V=A*v //m**3/s //volume of steam +D=(V*(%pi*4**-1*V_1)**-1)**0.5*100 //Diameter of %pipe +t=p*D*(2*sigma_t)**-1 //Thicknes of %pipe + +//Result +printf("Diameter of boiler is %.2f",D);printf(" cm") +printf("\n Thickness of steel plpe is %.2f",t);printf(" cm") |