summaryrefslogtreecommitdiff
path: root/1019/CH5/EX5.19
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /1019/CH5/EX5.19
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '1019/CH5/EX5.19')
-rw-r--r--1019/CH5/EX5.19/Example_5_19.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/1019/CH5/EX5.19/Example_5_19.sce b/1019/CH5/EX5.19/Example_5_19.sce
new file mode 100644
index 000000000..e6d9dafee
--- /dev/null
+++ b/1019/CH5/EX5.19/Example_5_19.sce
@@ -0,0 +1,15 @@
+//Example 5.19
+clear;
+clc;
+
+//Given
+delHf=128.6;//latent heat of fusion of benzene in J g^-1
+Vs=1.06;//volume of solid in cm^3 g^-1
+Vl=1.119;//volume of liquid in cm^3 g^-1
+T=278;//temperature in K
+
+//To determine the pressure to bring about a change in melting point by 1 K
+delVm=Vl-Vs;//change in volume in cm^3 g^-1
+a=(delHf*10)/(T*delVm*1.01325);//a=(dP/dT)
+mprintf('To cause an increase of 1K in melting point of benzene,atmospheric pressure change required=%f atm K^-1',a);
+//end \ No newline at end of file