summaryrefslogtreecommitdiff
path: root/2243/CH8/EX8.7/Ex8_7.sce
blob: f3b1d913dcc077943b0c12f214165ad9060f56df (plain)
1
2
3
4
5
6
7
8
9
10
11
clc();
clear;
//Given :
Q = 4 ;// in MeV
Ex = 2; // in MeV
Ey = 5 ; // in MeV
mx = 4; // in u
my = 1 ; // in u
My =13; // in u
theta = acosd(( (Ey*(1 + (my/My))) - (Ex*(1 - (mx/My))) - Q )/((2/My)*sqrt(mx*Ex*my*Ey))); // angle of ejection in degrees 
printf("Angle of ejection is %.0f degrees",theta);