summaryrefslogtreecommitdiff
path: root/273/CH15/EX15.1/ex15_1.sce
blob: 0f77cb712260da1d8361dc4b3e1e9e33c9a2582d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
clc;clear;
//Example 15.1
//calculation of binding energy per nucleon

//given values
Mp=1.00814;//mass of proton in amu
Mn=1.008665;//mass of nucleon in amu
M=7.01822;//mass of Lithium nucleus in amu
amu=931;//amu in MeV
n=7-3;//no of neutrons in lithium nucleus

//calculation
ET=(3*Mp+4*Mn-M)*amu;//total binding energy in MeV
E=ET/7;//7 1s the mass number
disp(E,'Binding energy per nucleon in MeV is');