diff options
Diffstat (limited to '273/CH15/EX15.3/ex15_3.sce')
-rwxr-xr-x | 273/CH15/EX15.3/ex15_3.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/273/CH15/EX15.3/ex15_3.sce b/273/CH15/EX15.3/ex15_3.sce new file mode 100755 index 000000000..8398696a6 --- /dev/null +++ b/273/CH15/EX15.3/ex15_3.sce @@ -0,0 +1,15 @@ +clc;clear;
+//Example 15.3
+//calculation of binding energy
+
+//given values
+Mp=1.00758;//mass of proton in amu
+Mn=1.00897;//mass of nucleon in amu
+M=4.0028;//mass of Helium nucleus in amu
+amu=931.4;//amu in MeV
+
+//calculation
+E1=(2*Mp+2*Mn-M)*amu;//total binding energy
+disp(E1,'Binding energy in MeV is');
+E2=E1*10^6*1.6*10^-19;
+disp(E2,'binding energy in Joule is');
|