summaryrefslogtreecommitdiff
path: root/167/CH3/EX3.3/ex3.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /167/CH3/EX3.3/ex3.sce
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '167/CH3/EX3.3/ex3.sce')
-rwxr-xr-x167/CH3/EX3.3/ex3.sce14
1 files changed, 14 insertions, 0 deletions
diff --git a/167/CH3/EX3.3/ex3.sce b/167/CH3/EX3.3/ex3.sce
new file mode 100755
index 000000000..e19265773
--- /dev/null
+++ b/167/CH3/EX3.3/ex3.sce
@@ -0,0 +1,14 @@
+//ques3
+//Volume and Energy Change during Evaporation
+clc
+vg=1.6941; //saturated vapor specific volume from table A-5 @ 100kPa in m^3/Kg
+vf=0.001043;//saturated liquid specific volume from table A-5 @ 100kPa in m^3/Kg
+vfg=vg-vf;//in m^3/Kg
+m=0.2;//in kg
+//(a) Volume change
+dV=m*vfg;//Volume in m^3
+printf('(a) Volume change = %.4f m^3 \n',dV);
+//(b) Amount of energy Transfer to water
+hfg=2257.5;//change in enthalpy from table A-5 @ 100kPa in kJ/Kg
+E=m*hfg;//In kJ
+printf('(b) Energy Transferred = %.1f kJ',E);