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 --- 1019/CH5/EX5.20/Example_5_20.sce | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 1019/CH5/EX5.20/Example_5_20.sce (limited to '1019/CH5/EX5.20/Example_5_20.sce') diff --git a/1019/CH5/EX5.20/Example_5_20.sce b/1019/CH5/EX5.20/Example_5_20.sce new file mode 100644 index 000000000..5a49afdc4 --- /dev/null +++ b/1019/CH5/EX5.20/Example_5_20.sce @@ -0,0 +1,16 @@ +//Example 5.20 +clear; +clc; + +//Given +delHf=335;//latent heat of fusion in J g^-1 +Vs=1.0908;//volume of solid in cm^3 g^-1 +Vl=1.0002;//volume of liquid in cm^3 g^-1 +T=273;//temperature in K + +//To determine the decrease in melting point with increase in pressure +delVm=Vl-Vs;//volume change in cm^3 g^-1 +a=(delHf*10)/(T*delVm*1.01325);//a=(delP/delT) +b=a^(-1);//b=(delT/delP) +mprintf('An increase in pressure of 1 atm lowers the freezing point by %f K atm^-1',b); +//end \ No newline at end of file -- cgit