diff options
Diffstat (limited to '632/CH6/EX6.2/example6_2.sce')
-rwxr-xr-x | 632/CH6/EX6.2/example6_2.sce | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/632/CH6/EX6.2/example6_2.sce b/632/CH6/EX6.2/example6_2.sce new file mode 100755 index 000000000..9f310b769 --- /dev/null +++ b/632/CH6/EX6.2/example6_2.sce @@ -0,0 +1,9 @@ +//clc()
+T1 = 363;//K
+T2 = 373;//K
+P2s = 101.3;//kPa
+J = 2275 * 18;//kJ/kmol
+R = 8.314;//kJ/kmolK
+//ln (P2s/P1s) = J * (1/T1 - 1/T2) / R
+P1s = P2s/exp(J * (1/T1 - 1/T2) / R);
+disp("kPa",P1s,"Vapour pressure of water at 363 K = ")
\ No newline at end of file |