summaryrefslogtreecommitdiff
path: root/944/CH3/EX3.15
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /944/CH3/EX3.15
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '944/CH3/EX3.15')
-rwxr-xr-x944/CH3/EX3.15/example3_15_TACC.sce15
1 files changed, 15 insertions, 0 deletions
diff --git a/944/CH3/EX3.15/example3_15_TACC.sce b/944/CH3/EX3.15/example3_15_TACC.sce
new file mode 100755
index 000000000..515df245c
--- /dev/null
+++ b/944/CH3/EX3.15/example3_15_TACC.sce
@@ -0,0 +1,15 @@
+//example 3.15
+
+clear;
+clc;
+
+//Given:
+Hc=-5645;//standard enthalpy of combustion of reaction:C12H22O11(s)+12O2(g)->12CO2(g)+11H2O(l) [KJ/mol]
+Hf1=-393.51;//standard heat of formation of CO2: C(s)+O2(g)->CO2(g) [KJ/mol]
+Hf2=-285.83;//standard heat of formation of H2O: H2(g)+0.5O2(g)->H2O(l) [KJ/mol]
+
+
+//to find the standard heat of formaton of solid sucrose
+//reaction:12C(s)+11H2(g)+5.5O2(g)->C12H22O11(s)
+Hf=12*Hf1+11*Hf2-Hc;//[KJ/mol]
+printf("Hf(standard heat of formation of solid sucrose)=%f KJ/mol",Hf); \ No newline at end of file