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/CH7/EX7.4/Ex7_4.sce | |
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/CH7/EX7.4/Ex7_4.sce')
-rw-r--r-- | 3856/CH7/EX7.4/Ex7_4.sce | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/3856/CH7/EX7.4/Ex7_4.sce b/3856/CH7/EX7.4/Ex7_4.sce new file mode 100644 index 000000000..6bb634750 --- /dev/null +++ b/3856/CH7/EX7.4/Ex7_4.sce @@ -0,0 +1,27 @@ +//Calculate the Boiling point and freezing poin of solution of Sucrose in water
+
+//Example 7.4
+
+clc;
+
+clear;
+
+m1=45.20; //Mass og the Sucrose in g
+
+m2=316.0/1000; //Mass 0f the water in kg
+
+n=m1/342.3; // Molar mass of the Sucrose in mol
+
+Kb=0.51; //Molal boiling point Elevation constant in K kg mol^-1
+
+m3=n/m2; //Molality of the solution in mol kg^-1
+
+delT1=(Kb*m3)+373.15; //Boiling point for solution of Sucrose in water
+
+printf("(a)Boiling point of Sucrose = %.2f K",delT1);
+
+Kf=1.86; //Molal freezing point depression constant in K kg mol^-1
+
+delT2=273.15-(Kf*m3); //Boiling point for solution of Sucrose in water
+
+printf("\n(b)Freezing point of Sucrose = %.2f K",delT2);
|