diff options
Diffstat (limited to '1286/CH3/EX3.12/3_12.sce')
-rwxr-xr-x | 1286/CH3/EX3.12/3_12.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/1286/CH3/EX3.12/3_12.sce b/1286/CH3/EX3.12/3_12.sce new file mode 100755 index 000000000..7ebc35c64 --- /dev/null +++ b/1286/CH3/EX3.12/3_12.sce @@ -0,0 +1,16 @@ +clc
+//initialisations
+m1=10//kg
+t1=80//c
+t2=20//c
+t3=150//c
+t4=90//c
+t=100//c
+a=800//cal/kg
+//calculations
+h=m1*1000*(t1-t2)/1000
+H=a*(t3-t)+540000+1000*(t-t4)
+k=H/1000
+x=h/k
+//results
+printf(' kg of steam required per hour= % 1f kg/hr',x)
|