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 /1847/CH5/EX5.1 | |
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 '1847/CH5/EX5.1')
-rwxr-xr-x | 1847/CH5/EX5.1/Ch05Ex1.sce | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/1847/CH5/EX5.1/Ch05Ex1.sce b/1847/CH5/EX5.1/Ch05Ex1.sce new file mode 100755 index 000000000..595dd753f --- /dev/null +++ b/1847/CH5/EX5.1/Ch05Ex1.sce @@ -0,0 +1,10 @@ +// Scilab Code Ex5.1 :: Page-5.2 (2009)
+clc;clear;
+m_p = 1.007826; // Mass of a proton, amu
+m_n = 1.008665; // Mass of a neutron, amu
+M_He = 4.002604; // Measured mass of He nucleuc, amu
+delta_m = 2*m_p+2*m_n - M_He; // Mass defect of He, amu
+printf("\nThe mass defect of He = %f amu", delta_m);
+
+// Result
+// The mass defect of He = 0.030378 amu
|