summaryrefslogtreecommitdiff
path: root/3772/CH15/EX15.8
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3772/CH15/EX15.8
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '3772/CH15/EX15.8')
-rw-r--r--3772/CH15/EX15.8/Ex15_8.sce20
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")