transporter Module
Implementation of electron transport in the detector
bivariate_normal_pdf(point, mu, sigma)
Sample a bivariate normal pdf
Equation of PDF corresponding to a 2D normal distribution where sigma is the same for both x and y and there is no correlation between the two variables.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
point
|
tuple[float, float]
|
Point to evaluate PDF at. |
required |
mu
|
tuple[float, float]
|
Mean of distribution. |
required |
sigma
|
float
|
Standard deviation of distribution. Same for both x and y. |
required |
Returns:
Type | Description |
---|---|
float
|
Value of distribution with the input mean and sigma at the input point. |
Source code in src/attpc_engine/detector/transporter.py
meshgrid(xarr, yarr)
JIT-ed implementation of meshgrid
Creates a rectangular (x, y) grid from the input arrays and returns a Nx2 array where each row is a point in the mesh.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
xarr
|
ndarray
|
1xN array of x values of mesh. |
required |
yarr
|
ndarray
|
1xN array of y values of mesh. |
required |
Returns:
Type | Description |
---|---|
ndarray
|
Nx2 array of points in mesh where the first column is the x-value and the second column is the y-value. |
Source code in src/attpc_engine/detector/transporter.py
point_transport(pad_grid, grid_edges, time, center, electrons, points, label)
Transport electrons without diffusion
Transports all electrons created at a point in a simulated nucleus' track straight to the pad plane.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
pad_grid
|
ndarray
|
Grid of pad id for a given index, where index is calculated from x-y position |
required |
grid_edges
|
ndarray
|
Edges of the pad grid in mm, as well as the step size of the grid in mm Allows conversion of position to grid index. 3 element array [low_edge, hi_edge, step] |
required |
time
|
float
|
Time of point being transported. |
required |
center
|
tuple[float, float]
|
(x,y) position of point being transported. |
required |
electrons
|
int
|
Number of electrons made at point being transported. |
required |
points
|
NumbaTypedDict[int, tuple[int, int]]
|
A dictionary mapping a unique pad,tb key to the number of electrons, which will be filled by this function |
required |
label
|
int
|
The label for all points created in this call |
required |
Source code in src/attpc_engine/detector/transporter.py
position_to_index(grid_edges, position)
Convert a position to pad map index
Given an input position in (x, y), outputs the index on the pad map corresponding to that position. For information about the format of the pad map, see the load_pad_grid method of the Config class in the parameters file.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
grid_edges
|
ndarray
|
The edges of the pad grid |
required |
position
|
tuple[float, float]
|
Position in (x, y) to find pad map index of. |
required |
Returns:
Type | Description |
---|---|
tuple[int, int]
|
Index of pad map. |
Source code in src/attpc_engine/detector/transporter.py
transport_track(pad_grid, grid_edges, diffusion, efield, dv, track, electrons, points, label)
Transport electrons generated by a trajectory to the AT-TPC pad plane
High-level function that transports each point in a nucleus' trajectory to the pad plane, applying transverse diffusion if specified.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
pad_grid
|
ndarray
|
Grid of pad id for a given index, where index is calculated from x-y position |
required |
grid_edges
|
ndarray
|
Edges of the pad grid in mm, as well as the step size of the grid in mm Allows conversion of position to grid index. 3 element array [low_edge, hi_edge, step] |
required |
diffusion
|
float
|
Transverse iffusion coefficient of electrons in the target gas. Units of V |
required |
efield
|
float
|
Magnitude of the electric field. The electric field is assumed to only have one component in the +z direction parallel to the incoming beam. Units of V/m |
required |
dv
|
float
|
Electron drift velocity. Units of m/TimeBucket |
required |
track
|
ndarray
|
Nx6 array where each row is a solution to one of the ODEs evaluated at the Nth time step. |
required |
electrons
|
ndarray
|
Length N array of electrons created each time step (point) of the trajectory. |
required |
points
|
NumbaTypedDict[int, tuple[int, int]]
|
A dictionary mapping a unique pad,tb key to the number of electrons and a label, which will be filled by this function. |
required |
label
|
int
|
The label for all points generated by this call |
required |
Source code in src/attpc_engine/detector/transporter.py
transverse_transport(pad_grid, grid_edges, time, center, electrons, sigma_t, points, label)
Transport electrons with transverse diffusion
Transports all electrons created at a point in a simulated nucleus' track to the pad plane with transverse diffusion applied. This is done by creating a square mesh roughly centered on the point where the electrons are created. The mesh extends from -3 sigma to 3 sigma in both the x and y directions. The number of steps in each direction is controlled by the STEPS parameter at the top of this file. Note, that because we specify only the number of steps this means that the step size varies from point to point in a trajectory. Each pixel of the mesh has a number of electrons in it calculated from the bivariate normal distribution PDF.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
pad_grid
|
ndarray
|
Grid of pad id for a given index, where index is calculated from x-y position |
required |
grid_edges
|
ndarray
|
Edges of the pad grid in mm, as well as the step size of the grid in mm Allows conversion of position to grid index. 3 element array [low_edge, hi_edge, step] |
required |
time
|
float
|
Time of point being transported. |
required |
center
|
tuple[float, float]
|
(x,y) position of point being transported. |
required |
electrons
|
int
|
Number of electrons made at point being transported. |
required |
sigma_t
|
float
|
Standard deviation of transverse diffusion at point being transported. |
required |
points
|
NumbaTypedDict[int, tuple[int, int]]
|
A dictionary mapping a unique pad,tb key to the number of electrons and label, which will be filled by this function |
required |
label
|
int
|
The label for all points in this call |
required |
Source code in src/attpc_engine/detector/transporter.py
172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 |
|