blob: 1777c7440430092d779cd9bff638146ecb6e3087 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// Ex4_16
clc;
// Given:
m=4*10^-3;// in gms
M=210;
E=0.34;// in MeV
// Solution:
N=(m*6.022*10^23)/M;
k=0.693/(5*24*3600);// in s^-1
A=N*k;// in dis/s
// Energy released at 0.34 MeV per dis/s will be
E1=E*A;// in MeV/s
E2=E1*1.6*10^-13;// watts
printf("The rate of energy emission is %f W",E2)
|