summaryrefslogtreecommitdiff
path: root/1019/CH3/EX3.19/Example_3_19.sce
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /1019/CH3/EX3.19/Example_3_19.sce
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '1019/CH3/EX3.19/Example_3_19.sce')
-rw-r--r--1019/CH3/EX3.19/Example_3_19.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/1019/CH3/EX3.19/Example_3_19.sce b/1019/CH3/EX3.19/Example_3_19.sce
new file mode 100644
index 000000000..09c456cc5
--- /dev/null
+++ b/1019/CH3/EX3.19/Example_3_19.sce
@@ -0,0 +1,16 @@
+//Example 3.19
+clear;
+clc;
+
+//Given
+CpH2=28.83;//specific heat at constant pressure of hydrogen in J K^-1 mol^-1
+CpO2=29.12;//specific heat at constant pressure of oyygen in J K^-1 mol^-1
+CpH2O=33.56;//specific heat at constant pressure of water in J K^-1 mol^-1
+delHdH2O=241750;//heat of dissociation of water at 291 K of water in J
+delT=341-291;//change in temperature (K)
+
+//To determine heat of dissociation of water at 341 K
+Cp=CpH2+(CpO2/2)-CpH2O;//specific heat at constant pressure in J K^-1 mol^-1
+delHd=delHdH2O+(Cp*delT);//heat of dissociation of water at 341 K in J mol^-1
+mprintf('heat of dissociation of water at 341 K = %f J mol^-1',delHd);
+//end \ No newline at end of file