diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /2939/CH1/EX1.15 | |
download | Scilab-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.15')
-rwxr-xr-x | 2939/CH1/EX1.15/Ex1_15.sce | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/2939/CH1/EX1.15/Ex1_15.sce b/2939/CH1/EX1.15/Ex1_15.sce new file mode 100755 index 000000000..e7d30bc57 --- /dev/null +++ b/2939/CH1/EX1.15/Ex1_15.sce @@ -0,0 +1,23 @@ +
+//Ex1_15
+
+clc;
+
+//Given:
+H1=4.1; // in eV/molecule
+H2=17.4; // in eV/molecule
+H3=200;// in MeV/atom of U
+
+// 1 eV/atom = 96.32 KJ/mol
+
+//solution: part (a)
+e1=H1*96.32;
+printf("\n The energy release in part (a) in KJ/mol of carbondioxide is = %f ",e1)
+
+//solution: part (b)
+e2=H2*96.32;
+printf("\n The energy release in part (b) in KJ/mol of alumina is = %f ",e2)
+
+//solution: part (c)
+e3=H3*1000*96.32;// in MJ/atom of U(235)
+printf("\n The energy release in part (c) in MJ/atom of U(235) is = %f ",e3)
|