summaryrefslogtreecommitdiff
path: root/944/CH5/EX5.35/example5_35_TACC.sce
blob: 246e58f621aaca196a0f424da4da5c6564f0bf2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//example 5.35

clear;
clc;

//Given:
Kb=0.51;//ebullioscopic constant of water [K*Kg/mol]
n=155/180;//no. of moles of glucose
m=n/1;//[mol/Kg]
Ti=373;//Boiling point temperature of water[K]

//To find the boiling point of the solution which is made by dissolving 155g of glucose in 1000g of water
Tf=(Ti+Kb*m)-273;//boiling point temperature of the solution[C]
printf("The boiling point of the solution is %f C",Tf);