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.10 | |
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.10')
-rw-r--r-- | 3856/CH4/EX4.10/Ex4_10.sce | 25 | ||||
-rw-r--r-- | 3856/CH4/EX4.10/Ex4_10.txt | 1 |
2 files changed, 26 insertions, 0 deletions
diff --git a/3856/CH4/EX4.10/Ex4_10.sce b/3856/CH4/EX4.10/Ex4_10.sce new file mode 100644 index 000000000..c2a015385 --- /dev/null +++ b/3856/CH4/EX4.10/Ex4_10.sce @@ -0,0 +1,25 @@ +//Calculate the standard Enthalpy for the reaction three Oxygen molecule givs two Ozone molecule
+
+//Example 4.10
+
+clc;
+
+clear;
+
+delrH298deg=285.4; //standard enthalpy at 298 k in kJ mol^-1
+
+Cp1=29.4; //molar heat capacity for O2 at constant pressur in J K^-1
+
+Cp2=38.2; //molar heat capacity for O3 at constant pressur in J K^-1
+
+delCp=2*Cp2-3*Cp1; //change in molar heat capacity for reaction in J K^-1
+
+T2=380; //final temperature in K
+
+T1=298; //initial temperature in K
+
+delT=T2-T1; //change in temperature in K
+
+delrH380deg=((delCp*delT)/1000)+delrH298deg; //standard Enthalpy for the reaction at 380 K in kJ mol^-1
+
+printf("Standard Enthalpy = %.1f kJ mol^-1",delrH380deg);
diff --git a/3856/CH4/EX4.10/Ex4_10.txt b/3856/CH4/EX4.10/Ex4_10.txt new file mode 100644 index 000000000..6bd5f11b9 --- /dev/null +++ b/3856/CH4/EX4.10/Ex4_10.txt @@ -0,0 +1 @@ + Standard Enthalpy = 284.4 kJ mol^-1
\ No newline at end of file |