blob: c89c85d1c83c277c643074f790fdb5279dfbb836 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
// Chapter 4 Example 1
//==============================================================================
clc;
clear;
// input data
lamda = 3*10^-10; // wavelength of incident photons in m
theta = 60; // viewing angle in degrees
h = 6.625*10^-34 // plancks constant
mo = 9.11*10^-31 // mass in Kg
c = 3*10^8; // vel. of light
// Calculatioms
// from Compton theory ,Compton shift is given by
// lamda' - lamda = (h/(mo*c))*(1-cosθ)
theta_r = theta*%pi/180; // degree to radian conversion
lamda1 = lamda+( (h/(mo*c))*(1-cos(theta_r))) // wavelength of scattered photons
// Output
mprintf('Wavelength of Scattered photons = %3.4f Å',lamda1*10^10);
//==============================================================================
|