summaryrefslogtreecommitdiff
path: root/2939/CH1/EX1.14
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /2939/CH1/EX1.14
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 '2939/CH1/EX1.14')
-rwxr-xr-x2939/CH1/EX1.14/Ex1_14.sce18
1 files changed, 18 insertions, 0 deletions
diff --git a/2939/CH1/EX1.14/Ex1_14.sce b/2939/CH1/EX1.14/Ex1_14.sce
new file mode 100755
index 000000000..053af1d33
--- /dev/null
+++ b/2939/CH1/EX1.14/Ex1_14.sce
@@ -0,0 +1,18 @@
+
+//Ex1_14
+
+clc;
+
+//Given:
+H1=241.8; // in KJ/mol
+H2=887.2; // in KJ/mol
+// 1 KJ/mol = 0.0104 eV/atom
+
+//solution: part (a)
+e1=H1*0.0104;
+printf("\n The energy release in part (a) in eV/molecule is = %f ",e1)
+
+//solution: part (b)
+e2=H2*0.0104;
+printf("\n The energy release in part (b) in eV/molecule is = %f ",e2)
+