Scattering Cross Section
Author
James Miller
Title
Scattering Cross Section
Description
Calculate the elastic scattering cross section using partial waves.
Category
Educational Materials
Keywords
quantum mechanics, scattering, Schrodinger equation, resonance
URL
http://www.notebookarchive.org/2021-02-1w06xy1/
DOI
https://notebookarchive.org/2021-02-1w06xy1
Date Added
2021-02-04
Date Last Modified
2021-02-04
File Size
299.53 kilobytes
Supplements
Rights
CC BY 4.0
Download
Open in Wolfram Cloud
Scattering Cross Section
Scattering Cross Section
James A Miller (Physics & Astronomy, University of Alabama in Huntsville)
Scattering experiments are critical for probing nuclear and atomic structure and interactions. The central diagnostic tool is the cross section, which can be measured experimentally as well as calculated theoretically on the basis of a physical model. In this notebook, we demonstrate the numerical calculation of the cross section using partial wave phase shifts.
Elastic Scattering
Elastic Scattering
Suppose particles of momentum are directed along the axis toward a stationary potential or scattering center, from which they can scatter elastically. Further assume a central potential and azimuthal symmetry in the scattered particles.
ℏk
z
V(r)
The differential cross section is a measure of the number of particles scattered into the solid angle about , the scattering angle measured from the axis. The total cross section is obtained by integrating the differential cross section over all angles, and is the effective interaction area. Specifically, an incident particle moving through the cross sectional area centered on the potential will suffer scattering.
dσ(θ)/dΩ
dΩ
θ
z
σ
The incident particles are states of definite linear momentum. Decomposing this state into states of definite angular momentum, the radial or -dependent part of each angular momentum state suffers a shift in phase when the potential is introduced. These quantities are of fundamental importance, and can be used to calculate cross sections.
A full discussion of partial waves can be found in standard quantum mechanics texts
r
A full discussion of partial waves can be found in standard quantum mechanics texts
1
Phase Shift
Phase Shift
The first step to calculating a cross section is then finding these phase shifts. While phase shifts are not restricted to this case, we suppose the scattering potential is nonzero inside some radius and zero outside.
V(r)
r
a
Phase shifts are obtained by matching the radial wavefunction inside the potential with that outside. The exterior radial wavefunction (where ) is exact and given in terms of the spherical Bessel functions by . Here, the quantity is the angular momentum quantum number. A phase shift is defined by .
δ
ℓ
V=0
u(r)=r[(kr)+(kr)]
A
ℓ
j
ℓ
B
ℓ
n
ℓ
ℓ=0,1,2,…
tan=-/
δ
ℓ
B
ℓ
A
ℓ
We could match at the single point through the logarithmic derivative, for example. But to avoid taking derivatives of a function given at discrete points, we instead fit the numerical solution with the exact solution outside the potential. (The numerical solution inside can easily be continued into the exterior region by extending the potential.)
r
a
Hence, solve the radial Schrodinger equation for over the interval . Since the potential is zero in the interval , we can match the numerical solution with to obtain ,. The normalization of is arbitrary since we just need the ratio /.
u(r)
[>0,>]
r
1
r
2
r
a
[,]
r
2
r
a
u(r)=r[(kr)+(kr)]
A
ℓ
j
ℓ
B
ℓ
n
ℓ
A
ℓ
B
ℓ
u(r)
B
ℓ
A
ℓ
Schematically:
We typically need >0 since the centrifugal, and possibly the physical, potential diverge at the origin. The numerical solution of the radial equation requires the starting values and , which can then be obtained by a small- solution of the radial equation.
r
1
u()
r
1
u'()
r
1
r
Illustration
Illustration
To illustrate the method, consider a finite square well potential , for , and zero otherwise. Use natural units .
V(r)=-
V
0
r<
r
a
ℏ=m==1
r
a
Find the S-wave (low-energy, ) cross section for .
ℓ=0
k=1
Specify the potential using the parameters of Merzbacher, Section 13.6:
In[]:=
V0=19.22;ra=1.0;V=If[r≤ra,-V0,0];r1=0.01;r2=2.0;ell=0;
Give the small- forms of and from the radial equation:
r
u(r)
u'(r)
In[]:=
us[r_,ell_]:=r^(ell+1);usprime[r_,ell_]:=(ell+1)r^ell;
Solve the radial equation out to for the unnormalized wavefunction:
r
2
In[]:=
k=1.0;energy=k^2/2;uE=NDSolveValue-u''[r]++Vu[r]energyu[r],u[r1]us[r1,ell],u'[r1]usprime[r1,ell],u,{r,r1,r2}
1
2
ell(ell+1)
2
2
r
Out[]=
InterpolatingFunction
|
Select 10 points from :
[,]
r
a
r
2
In[]:=
rArray=Subdivide[ra,r2,9];points=Transpose[{rArray,uE/@rArray}]
Out[]=
{{1.,-0.000501041},{1.11111,0.110603},{1.22222,0.220342},{1.33333,0.327364},{1.44444,0.430349},{1.55556,0.528026},{1.66667,0.619191},{1.77778,0.70272},{1.88889,0.777582},{2.,0.842854}}
Fit these points with the exact wavefunction and get the phase shift:
In[]:=
δ=ArcTan[-B/A]/.FindFit[points,ArSphericalBesselJ[ell,kr]+BrSphericalBesselY[ell,kr],{A,B},r];
Find the partial wave cross section at this wavenumber:
In[]:=
4π
2
k
2
Sin[δ]
Out[]=
8.90363
Divide by π to compare with Merzbacher:
In[]:=
%/π
Out[]=
2.83411
This is correct, as is the cross section for other values of .
k
Cross Section and Resonance
Cross Section and Resonance
To be most useful, cross sections need to be presented for a range of incident particle energies. It is thus convenient to incorporate the above steps into a function.
Function to accept the potential, wavenumber, angular momentum state, and integration interval:
In[]:=
sigma[potential_,ra_?NumberQ,r1_?NumberQ,r2_?NumberQ,u1_?NumberQ,u1prime_?NumberQ,ell_?IntegerQ,k_?NumberQ]:=Module{energy,u,uE,rArray,points,δ,A,B},energy=k^22;uE=NDSolveValue-u''[r]++potentialu[r]energyu[r],u[r1]u1,u'[r1]u1prime,u,{r,r1,r2};rArray=Subdivide[ra,r2,9];points=Thread[{rArray,uE/@rArray}];δ=ArcTan[-B/A]/.FindFit[points,ArSphericalBesselJ[ell,kr]+BrSphericalBesselY[ell,kr],{A,B},r];(2ell+1);
1
2
ell(ell+1)
2
2
r
4π
2
k
2
Sin[δ]
Consider the same finite square well example as above, but consider the S and P () wave contributions to the total cross section.
ℓ = 1
Specify the angular momentum quantum numbers and the starting and values:
u
u'
ell0=0;ell1=1;u10=us[r1,ell0];u1prime0=usprime[r1,ell0];u11=us[r1,ell1];u1prime1=usprime[r1,ell1];
Plot the partial wave cross sections:
In[]:=
Plot{sigma[V,ra,r1,r2,u10,u1prime0,ell0,k]/π,sigma[V,ra,r1,r2,u11,u1prime1,ell1,k]/π},{k,0.01,4},
Out[]=
|
The P-wave cross section exhibits a resonance at . Resonances are important diagnostics of the scattering potential and result from the formation of a quasi-bound state during the interaction. They are evident as approximate standing waves in a region of the effective (centrifugal plus physical) potential.
k≈0.62
Find the radial wavefunction at resonance:
k=0.62;ell=ell1;energy=k^2/2;uE=NDSolveValue-u''[r]++Vu[r]energyu[r],u[r1]u11,u'[r1]u1prime1,u,{r,r1,r2}
1
2
ell(ell+1)
2
2
r
Out[]=
InterpolatingFunction
|
Plot the potential and the radial wavefunction:
In[]:=
Plot+V,80uE[r],{r,r1,r2},
ell(ell+1)
2
2
r
Out[]=
|
We see that approximately 3/4 of a wavelength fit inside the well, forming a temporary standing wave analogous to a sound wave in an semi-open ended pipe.
Keywords
Keywords
◼
quantum mechanics
◼
scattering
◼
resonance
◼
Schrödinger equation
References
References
1 Introduction to Quantum Mechanics, by David Griffiths (ISBN-13: 978-1107189638). Quantum Mechanics, by Eugen Merzbacher (ISBN-13: 978-0471887027). Modern Quantum Mechanics, by J. J. Sakurai & J. Napolitano (ISBN-13: 978-1108422413)
Notebook Resources
Notebook Resources
V(r)
| ---------- | --------- | --------- | --------- | … | --------- | --------- | --------- |
r=0
r
1
r
a
r
2
Numerical
u(r)
Analytical exterior solution
⟶
Fitting region
Cite this as: James Miller, "Scattering Cross Section" from the Notebook Archive (2021), https://notebookarchive.org/2021-02-1w06xy1
Download