summaryrefslogtreecommitdiff
path: root/3841/CH19/EX19.2
diff options
context:
space:
mode:
authorprashantsinalkar2018-02-03 11:01:52 +0530
committerprashantsinalkar2018-02-03 11:01:52 +0530
commit7bc77cb1ed33745c720952c92b3b2747c5cbf2df (patch)
tree449d555969bfd7befe906877abab098c6e63a0e8 /3841/CH19/EX19.2
parentd1e070fe2d77c8e7f6ba4b0c57b1b42e26349059 (diff)
downloadScilab-TBC-Uploads-7bc77cb1ed33745c720952c92b3b2747c5cbf2df.tar.gz
Scilab-TBC-Uploads-7bc77cb1ed33745c720952c92b3b2747c5cbf2df.tar.bz2
Scilab-TBC-Uploads-7bc77cb1ed33745c720952c92b3b2747c5cbf2df.zip
Added new codeHEADmaster
Diffstat (limited to '3841/CH19/EX19.2')
-rw-r--r--3841/CH19/EX19.2/Ex19_2.sce26
1 files changed, 26 insertions, 0 deletions
diff --git a/3841/CH19/EX19.2/Ex19_2.sce b/3841/CH19/EX19.2/Ex19_2.sce
new file mode 100644
index 000000000..b9b6e8d24
--- /dev/null
+++ b/3841/CH19/EX19.2/Ex19_2.sce
@@ -0,0 +1,26 @@
+clear
+//given
+//page no 379
+//
+//find the gallons of water it is neccasry to pump
+x=160.
+h=2600.
+t=60.
+//part (a)
+//water temperaute rise in 15 deg
+Cs=x*h
+printf("\n part a")
+Hcs=Cs/t
+//absorbs per minutes is 15
+Aw=Hcs/15.
+//gals of water per min 8.33
+G=Aw/8.33
+printf("\n \n amount of water %.2f gpm",Aw)
+printf("\n \n amount of water %.2f gpm",G)
+printf("\n partb")
+//pound of water required to absorb is 45 deg
+Aw1=Hcs/45.
+//gallon per water required per min 8.33
+G1=Aw1/8.33
+printf("\n \n amount of water required of 45 deg %.2f gpm",Aw1)
+printf("\n \n gallon of water required of 45 deg %.2f gpm",G1)