blob: 1ca487497520bb20b61f403f589c67992a96d836 (
plain)
1
2
3
4
5
6
7
8
9
10
|
clc;clear;
//Example 14.1
//given data
E1=7.8;//avg. B.E per nucleon in MeV
E2=8.6;//for fissin fragments in MeV
//calculations
FER=(234*E2)-(236*E1);
disp(FER,'Fission energy released in MeV')
|