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 /3159/CH4/EX4.4/Ex4_4.sce | |
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 '3159/CH4/EX4.4/Ex4_4.sce')
-rwxr-xr-x | 3159/CH4/EX4.4/Ex4_4.sce | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/3159/CH4/EX4.4/Ex4_4.sce b/3159/CH4/EX4.4/Ex4_4.sce new file mode 100755 index 000000000..52e70250c --- /dev/null +++ b/3159/CH4/EX4.4/Ex4_4.sce @@ -0,0 +1,9 @@ +// Calculation of fraction of hydrogen bonds which breaks during ice melting
+clc
+del_h = 6.02 // enthalpy of fusion in kJ/mol
+n = 2 // number of hydrogen atom in 1 water atom
+del_b = 20.5 // hydrogen bond energy in kJ/mol
+printf("\n Example 4.4")
+f = del_h/(n*del_b)
+printf("\n Fraction of hydrogen bonds which broken is %.2f",f)
+
|