solver Module
Description of the equation of motion in the detector
backward_z_bound_condition(t, state, bfield, efield, target, ejectile)
Detect if a solution has reached the end-of-detector-in-z condition
Terminate the integration of the ivp if the condition specified has been reached. Scipy finds the roots of this function with the ivp. The parameters must match those given to the equation to be solved
Parameters:
Name | Type | Description | Default |
---|---|---|---|
t
|
float
|
time step, unused |
required |
state
|
ndarray
|
the state of the particle (x,y,z,vx,vy,vz) |
required |
bfield
|
float
|
the magnitude of the magnetic field, unused |
required |
efield
|
float
|
the magnitude of the electric field, unused |
required |
target
|
GasTarget
|
the material through which the particle travels, unused |
required |
ejectile
|
NucleusData
|
ejectile (from the reaction) nucleus data, unused |
required |
Returns:
Type | Description |
---|---|
float
|
The difference between the current z position and the beginning of the detector (0.0 m). When this function returns zero the termination condition has been reached. |
Source code in src/attpc_engine/detector/solver.py
equation_of_motion(t, state, bfield, efield, target, ejectile)
The equations of motion for a charged particle in a static electromagnetic field which experiences energy loss through some material.
Field directions are chosen based on standard AT-TPC configuration
Parameters:
Name | Type | Description | Default |
---|---|---|---|
t
|
float
|
time step |
required |
state
|
ndarray
|
the state of the particle (x,y,z,gvx,gvy,gvz) |
required |
bfield
|
float
|
the magnitude of the magnetic field |
required |
efield
|
float
|
the magnitude of the electric field |
required |
target
|
GasTarget
|
the material through which the particle travels |
required |
ejectile
|
NucleusData
|
ejectile (from the reaction) nucleus data |
required |
Returns:
Type | Description |
---|---|
ndarray
|
the derivatives of the state |
Source code in src/attpc_engine/detector/solver.py
forward_z_bound_condition(t, state, bfield, efield, target, ejectile)
Detect if a solution has reached the end-of-detector-in-z condition
Terminate the integration of the ivp if the condition specified has been reached. Scipy finds the roots of this function with the ivp. The parameters must match those given to the equation to be solved
Parameters:
Name | Type | Description | Default |
---|---|---|---|
t
|
float
|
time step, unused |
required |
state
|
ndarray
|
the state of the particle (x,y,z,vx,vy,vz) |
required |
bfield
|
float
|
the magnitude of the magnetic field, unused |
required |
efield
|
float
|
the magnitude of the electric field, unused |
required |
target
|
GasTarget
|
the material through which the particle travels, unused |
required |
ejectile
|
NucleusData
|
ejectile (from the reaction) nucleus data, unused |
required |
Returns:
Type | Description |
---|---|
float
|
The difference between the current z position and the length of the detector (1m). When this function returns zero the termination condition has been reached. |
Source code in src/attpc_engine/detector/solver.py
generate_electrons(track, nucleus, params, rng)
Find the number of electrons made at each point of the nucleus' track.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
track
|
ndarray
|
Nx6 array where each row is a solution to one of the ODEs evaluated at the Nth time step. |
required |
nucleus
|
NucleusData
|
The particle species charge, mass, etc. |
required |
params
|
DetectorParams
|
Parameters defining detector geometry, fields, material, etc. |
required |
rng
|
Generator
|
numpy random number generator |
required |
Returns:
Type | Description |
---|---|
ndarray
|
Returns an array of the number of electrons made at each point in the trajectory |
Source code in src/attpc_engine/detector/solver.py
generate_point_cloud(momentum, vertex, nucleus, config, rng, points, label)
Create a point cloud from a given particle
Generates the trajectory of a particle, propagates electron transport, and evaluates which pad on the AT-TPC detector plane the signal is recorded.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
momentum
|
ndarray
|
The particle 4-momentum |
required |
vertex
|
ndarray
|
The reaction vertex |
required |
nucleus
|
NucleusData
|
The particle species charge, mass, etc. |
required |
config
|
Config
|
The simulation configuration |
required |
rng
|
Generator
|
numpy random number generator |
required |
points
|
NumbaTypedDict[int, tuple[int, int]]
|
A dictionary mapping a unique pad,tb key to the number of electrons and a label. The points created by this nucleus are stored here. |
required |
label
|
int
|
The label for points generated by this nucleus. |
required |
Source code in src/attpc_engine/detector/solver.py
generate_trajectory(vertex, momentum, nucleus, params)
Solves EoM for a nucleus in the AT-TPC
Solution is evaluated over a fixed time interval.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
vertex
|
ndarray
|
The reaction vertex |
required |
momentum
|
ndarray
|
The inital 4-momentum of the nucleus |
required |
nucleus
|
NucleusData
|
The particle species charge, mass, etc. |
required |
params
|
DetectorParams
|
Parameters defining detector shape, fields, material, etc. |
required |
Returns:
Type | Description |
---|---|
ndarray
|
Nx6 array where each row is a solution to one of the ODEs evaluated at the Nth time step. |
Source code in src/attpc_engine/detector/solver.py
rho_bound_condition(t, state, bfield, efield, target, ejectile)
Detect if a solution has reached the end-of-detector-in-rho condition
Terminate the integration of the ivp if the condition specified has been reached. Scipy finds the roots of this function with the ivp. The parameters must match those given to the equation to be solved.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
t
|
float
|
time step, unused |
required |
state
|
ndarray
|
the state of the particle (x,y,z,vx,vy,vz) |
required |
bfield
|
float
|
the magnitude of the magnetic field, unused |
required |
efield
|
float
|
the magnitude of the electric field, unused |
required |
target
|
GasTarget
|
the material through which the particle travels, unused |
required |
ejectile
|
NucleusData
|
ejectile (from the reaction) nucleus data, unused |
required |
Returns:
Type | Description |
---|---|
float
|
The difference between the current z position and the maximum rho of the detector (332 mm). When this function returns zero the termination condition has been reached. |
Source code in src/attpc_engine/detector/solver.py
stop_condition(t, state, bfield, efield, target, ejectile)
Detect if a solution has reached the low-energy stopping condition
Terminate the integration of the ivp if the condition specified has been reached. Scipy finds the roots of this function with the ivp. The parameters must match those given to the equation to be solved
Parameters:
Name | Type | Description | Default |
---|---|---|---|
t
|
float
|
time step, unused |
required |
state
|
ndarray
|
the state of the particle (x,y,z,vx,vy,vz) |
required |
bfield
|
float
|
the magnitude of the magnetic field, unused |
required |
efield
|
float
|
the magnitude of the electric field, unused |
required |
target
|
GasTarget
|
the material through which the particle travels, unused |
required |
ejectile
|
NucleusData
|
ejectile (from the reaction) nucleus data |
required |
Returns:
Type | Description |
---|---|
float
|
The difference between the kinetic energy and the lower limit. When this function returns zero the termination condition has been reached. |