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 /767/CH4/EX4.8.2/Ch04Exa4_8_2.sci | |
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 '767/CH4/EX4.8.2/Ch04Exa4_8_2.sci')
-rwxr-xr-x | 767/CH4/EX4.8.2/Ch04Exa4_8_2.sci | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/767/CH4/EX4.8.2/Ch04Exa4_8_2.sci b/767/CH4/EX4.8.2/Ch04Exa4_8_2.sci new file mode 100755 index 000000000..b15f3abe5 --- /dev/null +++ b/767/CH4/EX4.8.2/Ch04Exa4_8_2.sci @@ -0,0 +1,8 @@ +// Scilab code Exa4.8.2: To calculate the energy produced by the fusion reaction He(2,4)+C(6,12)= O(8,16) : Page 194 (2011)
+M_r = 16.002603; // Mass of the reactant, amu
+M_p = 15.994915; // Mass of reactant, amu
+M_d = 7.688e-03; // Difference in masses, amu
+E_p = M_d*931.49; // Energy produced, MeV
+printf("\n Energy produced by the fusion reaction :%4.2f MeV", E_p)
+// Result
+// Energy produced by the fusion reaction :7.16 MeV
|