Geometry Factors
It is generally expected that the detection and counting efficiency for alpha-particles emitted from a thin source
in a typical alpha-spectrometry chamber should be essentially the same as the geometry factor,
defined as the mean solid angle subtended by the detector window at the source, divided by 4π.
So, if you know the dimensions of the detector and the source, and their relative positions and orientations,
in principle you can predict the efficiency without a calibration.
In the equations below we’ll use spherical coordinates (ρ, θ, φ), cylindrical coordinates (r, θ, z), and Cartesian coordinates (x, y, z), which are related to each other as follows:
| x = r cos θ = ρ sin φ cos θ |
| y = r sin θ = ρ sin φ sin θ |
| z = ρ cos φ |
|
| ρ = | √ |
x2 + y2 + z2 |
= | √ |
r2 + z2 |
|
|
Visualize the xy-plane (φ = π / 2) as horizontal, with the positive z-axis, or polar axis (φ = 0), rising upward.
The solid angle Ω subtended by a surface D at
a point not on the surface is
generally given as an integral, which may be a surface integral or a line integral (around the boundary).
In spherical coordinates the solid angle subtended by D at the origin is given by the surface integral:
The active window of an alpha-spec detector is typically a flat disk.
Let RD denote the radius of the disk and assume the disk is centered on
the polar axis, parallel to the xy-plane at a fixed height h above it, as shown below
In this case the surface integral yields the following equation for Ω:
| Ω = |
∫ |
|
∫ |
|
sin φ dφ dθ |
= 2π (1 − cos Φ) |
where Φ is the polar angle φ at the rim of the disk. The cosine of this angle is
given by
So, we get:
Although this expression is theoretically exact, in actual calculations it can produce large round-off
errors if h ≫ RD.
In these situations it is better to apply a few trig identities and compute Ω using
an equation that is less susceptible to the effects of rounding. For example,
where tan Φ = RD / h.
The following version should suffice as long as either h > 0 or
RD > 0.
Suppose now that D has an elliptical shape wtih semi-major axis a, semi-minor axis b, eccentricity e, and maximum polar angle Φ, but it is still
centered on the polar axis at a height h above the horizontal plane.
(Note that tan Φ = a / h.)
Now the solid angle subtended by D at the origin can be shown to be
| Ω = 2π − |
|
Π |
( |
|
, |
√ |
|
|
) |
= 2π − 4 |
|
(cos Φ) Π(e2, e sin Φ) |
where Π(n, k) denotes a complete
Legendre elliptic integral of the third kind (with the same sign convention for n used by Abramowitz and Stegun).
So, if you can calculate this elliptic integral accurately, you can calculate Ω accurately, at least when the value of Ω is not too small. If it is too small, the fact that it is obtained as the difference between 2π and another
number that is almost equal to 2π implies that round-off error can be relatively large.
The value of Ω will be small if either Φ ≈ 0 (a / h ≈ 0) or e ≈ 1 (b / a ≈ 0). When Φ ≈ 0, the solid angle
is approximated well by the quotient of the area of D and h2. Note: I’m sure there are better approximations.
Suppose instead that e ≈ 1.
As e → 1, the value of the elliptic integral increases without bound.
A useful approximation in this case is:
| Ω ≈ |
|
|
E |
(√ |
1 + |
|
, arctan |
|
|
) |
= |
|
|
E |
( |
|
, Φ |
) |
where E(k, φ) denotes a Legendre elliptic integral of the second kind.
The elliptic integral here depends on Φ but not on e.
If Φ is too small, the preceding approximation should be easier to calculate.
Next suppose D is again a disk but now consider the solid angle subtended by D at a
point P in the xy-plane at a distance r from the origin.
The solid angle subtended by the disk D at P is the same as the solid angle
subtended by the image of the disk obtained by a 3-D perspective
transformation, where the view plane is oriented so that the image is an ellipse centered on the orthogonal
line that passes through
the center of projection P.
The trick then is to find the parameters of that ellipse The following equations provide the necessary values; however,
rounding error can be an issue in some circumstances.
| φ1 = |
|
| φ2 = |
|
| ψ = |
½(φ1 + φ2) |
| β = |
½(φ2 − φ1) |
| e = |
|
| sin Φ = |
|
| e sin Φ = |
tan ψ tan β |
If we define
| L = |
½ |
(√ |
h2 + (r − RD)2 |
+ |
√ |
h2 + (r + RD)2 |
) |
then we get a substantial simplification, as shown below.
When you use this equation for Ω, there is little reason to worry about round-off error until you calculate the elliptic integral and perform the final subtraction from 2π.
I use Carlson’s method for evaluating the elliptic integral, as presented in Numerical Recipes
[Press et al., 1992, 2007].
For extreme values of the arguments, you can still expect large relative errors due to rounding.
Using this approach you obtain a function Ω(r) for the solid angle defined in terms of the distance r of P from the origin, assuming fixed values for RD and h.
The geometry factor for an extended source is defined to be the mean solid angle averaged over all points of the source, which is
calculated by another integral.
Given the function Ω(r),
the required integral for a disk-shaped source of nonzero radius RS can be calculated
using a good technique for numerical integration, such as Gaussian quadrature or Simpson’s Rule.
If h is not too small, Gaussian quadrature is likely to give excellent results; but be careful with this technique when h is very small and RS > RD or RS ≈ RD, because the solid angle Ω(r) is almost a step function in the vicinity of r = RD, dropping steeply from Ω ≈ 2π to Ω ≈ 0 as r increases.
In this case you can use Simpson’s Rule, which is more robust and is amenable to brute-force processing; or if h is small enough, you can use the fact that:
For RS < RD, the limit is just 2π.
To be completed: (1) There are other (equivalent) equations for Ω(r) that can be derived
directly from the surface integral; however, my versions of these are not simpler then those
shown above. They are defined by cases, depending on
whether r < RD, r = RD, or r > RD. For r ≠ RD but r ≈ RD, the alternative equations are probably not great for actual calculations.
(2) It is easier to calculate the solid angle subtended by a polygon than the solid angle subtended by a disk.
Approximating the disk by a regular polygon with the same area is a good practical option in the lab.
(3) Monte Carlo simulation is another popular approach, although it is inherently inexact.
On the other hand it can provide
explicit uncertainty estimates.
Feedback: Got better ideas for doing these calculations? Already know the subject backward and forward, inside and out? Or do you know the published reference for the best (accurate, simple, and elegant) solution
currently
available? Then
enlighten me by clicking on the “Feedback” link below and sending me a note by e-mail.