From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 3856/CH6/EX6.6/Ex6_6.sce | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 3856/CH6/EX6.6/Ex6_6.sce (limited to '3856/CH6/EX6.6/Ex6_6.sce') diff --git a/3856/CH6/EX6.6/Ex6_6.sce b/3856/CH6/EX6.6/Ex6_6.sce new file mode 100644 index 000000000..cc9d01b21 --- /dev/null +++ b/3856/CH6/EX6.6/Ex6_6.sce @@ -0,0 +1,33 @@ +//To calculate the Molar Enthalpy of Vapourisation + +//Example 6.6 + +clc; + +clear; + +T=[20,30,40,50,60,70]; + +p=[17.54,31.82,55.32,92.51,149.38,233.7]; + +for i=1:6 + x(i)=1/(T(i)+273); +end + +for i=1:6 + y(i)=log(p(i)); +end + +plot(x,y); + +xlabel("K/T", "fontsize", 2);//Putting the x-axis as K/T + +ylabel("ln(p)", "fontsize", 2);//Putting the y-axis as ln(Kp) + +m=-(y(2)-y(1))/(x(2)-x(1)); + +R=8.314; + +delH=R*m/1000; + +printf("Molar Enthalpy of Vapourization of Water = %.1f kJ mol^-1",delH); -- cgit