summaryrefslogtreecommitdiff
path: root/446/CH3/EX3.6/3_6.sce
blob: bdfaba60f6c67df1a8ca944fcea933e1cd2e1ffe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
clear 
clc
disp('Exa-3.6(a)');
w1=0.24;wc=0.00243;theta=60;   //given values w=wavelength(lambeda)
w2=w1+(wc*(1-cosd(theta))); 
printf('The wavelength of x-rays after scattering is %.4f nm\n',w2);
disp('Exa-3.6(b)');
hc=1240;
E2=hc/w2;E1=hc/w1; printf('The energy of scattered x-rays is %.0f eV\n',E2);
disp('Exa-3.6(c)');
K= E1-E2; //The kinetic energy is the difference in the energy before and after the collision;
printf('The kinetic energy of the x-rays is %.3f eV\n',K);
disp('Exa-3.6(d)');
phi2=atand(E2*sind(theta)/(E1-E2*cosd(theta)))
printf('The direction of the scattered eletron is %.1f degrees',phi2);