diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3856/CH6/EX6.5 | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '3856/CH6/EX6.5')
-rw-r--r-- | 3856/CH6/EX6.5/Ex6_5.sce | 21 | ||||
-rw-r--r-- | 3856/CH6/EX6.5/Ex6_5.txt | 1 |
2 files changed, 22 insertions, 0 deletions
diff --git a/3856/CH6/EX6.5/Ex6_5.sce b/3856/CH6/EX6.5/Ex6_5.sce new file mode 100644 index 000000000..8be42293b --- /dev/null +++ b/3856/CH6/EX6.5/Ex6_5.sce @@ -0,0 +1,21 @@ +//Calculate the slope of the S-L (solid -liquid )Curve
+
+//Example 6.5
+
+clc;
+
+clear;
+
+Tf=273.15; //Phase transition temperature (two phase can coexist in equilibrium)in K
+
+delfusHbar=6.01*1000*9.87*10^-3; //Change in Enthalpy in L atm mol^-1 (1 J=9.87*10^-3 L atm)
+
+Vbarl=0.0180; //Molar volume of liquid water in L mol^-1
+
+Vbars=0.0196; //Molar volume of ice in L mol^-1
+
+delfusVbar=(Vbarl-Vbars); //Change in molar volume in L mol^-1
+
+F=(delfusHbar)/(Tf*delfusVbar); //Slope of the S-L curve in atm K^-1; F=delP/delT
+
+printf("Slope of the S-L Curve = %.0f atm K^-1",F);
diff --git a/3856/CH6/EX6.5/Ex6_5.txt b/3856/CH6/EX6.5/Ex6_5.txt new file mode 100644 index 000000000..8c51c202a --- /dev/null +++ b/3856/CH6/EX6.5/Ex6_5.txt @@ -0,0 +1 @@ + Slope of the S-L Curve = -136 atm K^-1
\ No newline at end of file |