summaryrefslogtreecommitdiff
path: root/3888/CH7/EX7.1/Ex7_1.sce
blob: 034427721df3060ace89ee1c249aa0ee84a61c43 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//Electric Power Generation, Transmission and Distribution by S.N.Singh
//Publisher:PHI Learning Private Limited
//Year: 2012 ; Edition - 2 
//Example 7.1
//Scilab Version : 6.0.0    ; OS : Windows

clc;
clear;


helium_atomic_mass=4.002603;              //Atomic mass of Helium in amu
mp=1.007277;                              //Atomic mass of Proton in amu
mn=1.008665;                              //Atomic mass of Neutron in amu
me=0.00055;                               //Atomic mass of Electron in amu
del_m=2*mp+2*me+2*mn-helium_atomic_mass;  //Mass Defect in amu
Be=del_m*931;                             //Helium Binding Energy in MeV
Be_molecule=Be/4;                         //Helium Binding Energy per Nucleon in MeV


printf("\nBinding energy per nucleon is %.3f MeV",Be_molecule);