blob: b4393f64cc3a92975426d4c32acfbf3008321553 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
//To calculate the energy released in the process when a Nucleus breaks
//Example 46.6
clear;
clc;
A=240;//Mass Number for First Nucleus
Be1=7.6;//Binding Energy in MeV per nucleon for A=120
Be2=8.5;//Binding Energy in MeV per nucleon for A=240
E=A*(Be2-Be1);///Energy released when a nucleus of A=240 breaks into two nuclei of nearle equal mass numbers
printf("Energy released when a nucleus of A=240 breaks into two nuclei of nearly equal mass numbers = %.0f MeV",E);
|