diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3856/CH4/EX4.8 | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '3856/CH4/EX4.8')
-rw-r--r-- | 3856/CH4/EX4.8/Ex4_8.sce | 19 | ||||
-rw-r--r-- | 3856/CH4/EX4.8/Ex4_8.txt | 1 |
2 files changed, 20 insertions, 0 deletions
diff --git a/3856/CH4/EX4.8/Ex4_8.sce b/3856/CH4/EX4.8/Ex4_8.sce new file mode 100644 index 000000000..e1438bc62 --- /dev/null +++ b/3856/CH4/EX4.8/Ex4_8.sce @@ -0,0 +1,19 @@ +//Calculate the standard molar Enthalpy of formatyion of Acetylene (C2H2) from its element
+
+//Example 4.8
+
+clc;
+
+clear;
+
+delH1deg=-393.5; //Enthalpy change for the reaction C(graphite)+O2(g) givs CO2(g) in kJ mol^-1
+
+delH2deg=-285.8; //Enthalpy change for the reaction H2(g)+1/2O2(g) givs H2O(l) in kJ mol^-1
+
+delH3deg=-2598.8; //Enthalpy change for the reaction 2C2H2(g)+5O2(g)givs 4CO2(g)+2H2O(l)in kJ mol^-1
+
+delH4deg=-delH3deg; //Enthalpy change for the reaction 4CO2(g)+2H2O(l)givs 2C2H2(g)+5O2(g)in kJ mol^-1
+
+delHdeg=(4*delH1deg+2*delH2deg+delH4deg)/2; //Molar Enthalpy for formation of acetylene in kJ mol^-1
+
+printf("Molar Enthalpy = %.1f kJ mol^-1 ",delHdeg);
diff --git a/3856/CH4/EX4.8/Ex4_8.txt b/3856/CH4/EX4.8/Ex4_8.txt new file mode 100644 index 000000000..5b3ad1a95 --- /dev/null +++ b/3856/CH4/EX4.8/Ex4_8.txt @@ -0,0 +1 @@ + Molar Enthalpy = 226.6 kJ mol^-1
\ No newline at end of file |