blob: aec61ea44042e12a1f8996be3b48c570c7df3ba7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// Ex4_13
clc;
// Given:
dm=0.006332;// in u
ma=4;
mCm=244;
// Solution:
E=dm*931;// in MeV
KE=E*(ma/mCm); // in MeV
v=sqrt((2*KE*1.6*10^-13)/(240*1.6605*10^-27));
printf("The Kinetic Energy and velocity are %f MeV and %f m/s respectively",KE,v)
|