diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /3428/CH12/EX6.12.15 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '3428/CH12/EX6.12.15')
-rw-r--r-- | 3428/CH12/EX6.12.15/Ex6_12_15.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/3428/CH12/EX6.12.15/Ex6_12_15.sce b/3428/CH12/EX6.12.15/Ex6_12_15.sce new file mode 100644 index 000000000..0013ce673 --- /dev/null +++ b/3428/CH12/EX6.12.15/Ex6_12_15.sce @@ -0,0 +1,11 @@ +//Section-6,Example-7,Page no.-P.49 +//To calculate the freezing point of the given aqueous solution. +clc; +T_bbar=373 +T_fbar=273 +T_b=373.1 +dl_H=1 //(let) dl_H=(dl_Hvap./dl_Hfus.) +dl_Tb=(T_b-T_bbar) +dl_Tf=dl_Tb*((T_fbar)^2/(T_bbar)^2)*dl_H +disp(dl_Tf,' Freezing point of the given aqueous solution') +//dl_Tf=dl_Tf*(dl_Hvap./dl_Hfus.) |