parameters Module
The configuration parameters
Config
A wrapper class containing all the input detector and electronics parameters for the simulation.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
detector_params
|
DetectorParams
|
Detector parameters for simulation. |
required |
electronics_params
|
ElectronicsParams
|
Electronics parameters for simulation. |
required |
pad_params
|
PadParams
|
Parameters related to the pads. |
required |
Attributes:
Name | Type | Description |
---|---|---|
detector_params |
DetectorParams
|
Detector parameters for simulation. |
electronics_params |
ElectronicsParams
|
Electronics parameters for simulation. |
pad_params |
PadParams
|
Parameters related to the pads. |
pad_grid |
ndarray | None
|
Mesh of the pad plane. See load_pad_grid() for more details. |
pad_grid_edges |
ndarray | None
|
a 1x3 array where the first element is the leftmost edge of the pad grid, the second element is the rightmost edge, and the third element is the step size in mm. |
pad_centers |
ndarray | None
|
10240x2 array where where each row is one pad and its first element is the x coordinate of its center and the second element is the y coordinate. |
drift_velocity |
float
|
Drift velocity in m / time bucket. |
pad_sizes |
ndarray | None
|
|
Methods:
Name | Description |
---|---|
calculate_drift_velocity |
Calculate drift velocity of electrons in the gas. |
load_pad_grid |
Load the pad grid from an npz file. |
load_pad_centers |
Load the pad plane centers from a csv file. |
Source code in src/attpc_engine/detector/parameters.py
97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 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 250 251 252 253 254 255 256 257 258 259 260 261 |
|
calculate_drift_velocity()
Calculate drift velocity of electrons in the gas.
Returns:
Type | Description |
---|---|
float
|
Electron drift velocity in m / time bucket |
Source code in src/attpc_engine/detector/parameters.py
load_pad_centers()
Load the pad plane centers from a csv file.
Load a csv file contains the x, y center position of each pad.
Source code in src/attpc_engine/detector/parameters.py
load_pad_grid()
Load the pad grid from an npz file.
The pad grid is a regular mesh which descretizes the pad plane into a NxN matrix. Each element contains the pad ID at that location in space. If that location corresponds to no pad, then the pad ID is -1. The grid file should also contain a 3 element array with the grid edges in mm and the step size of the grid.
The pad grid is indexed by the lower edge of each spatial bin. Due to this, and because the pad grid must be symmetric, this means that the Nth column and row are not the same as the 0th row and column. For example, if the pad grid is to be symmetric from -280 to 280 mm with spatial bins of 0.1 mm, the Oth row and column correspond to bin edges of -280 (the bin is [-280, 279.9)) while the Nth row and column correspond to bin edges of 279.9 (the bin is [-279.9, 280). In this sense, the pad grid is inclusive on the lowest bin edge and exclusive on the highest bin edge.
Source code in src/attpc_engine/detector/parameters.py
load_pad_sizes()
Load the size of each pad from a csv file into a 1D numpy array where the index is the pad number and the entry is the size.
Source code in src/attpc_engine/detector/parameters.py
DetectorParams
dataclass
Dataclass containing all detector parameters for simulation.
Attributes:
Name | Type | Description |
---|---|---|
length |
float
|
Length of active volume of detector in meters |
efield |
float
|
Magnitude of the electric field in Volts/meter. The electric field is assumed to only have one component in the +z direction parallel to the incoming beam. |
bfield |
float
|
Magnitude of the magnetic field in Tesla. The magnetic field is assumed to only have one component in the +z direction parallel to the incoming beam. |
mpgd_gain |
int
|
Overall gain of all micropattern gas detectors used, e.g. a combination of a micromegas and THGEM. Unitless. |
gas_target |
GasTarget
|
Target gas in the AT-TPC |
diffusion |
float
|
Transverse diffusion coefficient of electrons in the target gas. In units of Volts |
fano_factor |
float
|
Fano factor of target gas. Unitless. |
w_value |
float
|
W-value of gas in eV. This is the average energy an ionizing loses to create one electron-ion pair in the gas. |
Source code in src/attpc_engine/detector/parameters.py
ElectronicsParams
dataclass
Dataclass containing all electronics parameters for simulation.
Attributes:
Name | Type | Description |
---|---|---|
clock_freq |
float
|
Frequency of the GET clock in MHz. |
amp_gain |
int
|
Gain of GET amplifier in lsb/fC. |
shaping_time |
int
|
Shaping time of GET in ns. |
micromegas_edge |
int
|
The micromegas edge of the detector in time buckets. |
windows_edge |
int
|
The windows edge of the detector in time buckets. |
adc_threshold |
int
|
Minimum ADC signal amplitude a point must have in the point cloud. |
Source code in src/attpc_engine/detector/parameters.py
PadParams
dataclass
Dataclass containing parameters related to the pads.
Attributes:
Name | Type | Description |
---|---|---|
grid_path |
Path | str
|
The path to the pad grid. Default is to use the packaged grid. |
geometry_path |
Path | str
|
The path to the pad center geometry. Default is to use the packaged geometry (non-legacy). |