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 /1247/CH5/EX5.42/example5_42.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 '1247/CH5/EX5.42/example5_42.sce')
-rwxr-xr-x | 1247/CH5/EX5.42/example5_42.sce | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/1247/CH5/EX5.42/example5_42.sce b/1247/CH5/EX5.42/example5_42.sce new file mode 100755 index 000000000..7bf787630 --- /dev/null +++ b/1247/CH5/EX5.42/example5_42.sce @@ -0,0 +1,18 @@ +clear;
+clc;
+
+// Stoichiometry
+// Chapter 5
+// Energy Balances
+
+
+// Example 5.42
+// Page 297
+printf("Example 5.42, Page 297 \n \n");
+
+// solution
+
+Hsol = 62.86 // kJ/mol solute
+Mcrystal = 286.1414
+Hcry = Hsol*1000/Mcrystal // kJ/kg solute
+printf(" Heat of crystallization of 1 kg crystal is "+string(Hcry)+" kJ.")
|