summaryrefslogtreecommitdiff
path: root/680/CH8/EX8.06
diff options
context:
space:
mode:
Diffstat (limited to '680/CH8/EX8.06')
-rwxr-xr-x680/CH8/EX8.06/8_06.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/680/CH8/EX8.06/8_06.sce b/680/CH8/EX8.06/8_06.sce
new file mode 100755
index 000000000..07843c911
--- /dev/null
+++ b/680/CH8/EX8.06/8_06.sce
@@ -0,0 +1,16 @@
+//Problem 8.06:
+
+//initializing the variables:
+Tc = 647; // in K
+Tn = 100 + 273; // in K
+Pc = 217.6; // in atm
+dHe = 970; // in Btu/lb
+
+//calculation:
+Tm = Tn/Tc
+dH = 2.17*Tn*((log(Pc)) - 1.0)/(0.930 - Tm)
+dHn = dH*454/(252*18)
+perdiff = (dHn - dHe)*100/dHe
+
+printf("\n\nResult\n\n")
+printf("\n the enthalpy of vaporization is %.1f percent",perdiff) \ No newline at end of file