\apsq implements charge multiplication via impact ionization models.
These models are only used by propagation modules which perform a step-by-step simulation of the charge carrier motion.
Allpix Squared implements charge multiplication via impact ionization models. These models are only used by propagation
modules which perform a step-by-step simulation of the charge carrier motion.
The gain $g$ is calculated for all models as exponential of the model-dependent impact ionization coefficient $\alpha$ and the length of the step $l$ performed in the respective electric field.
If the electric field strength stays below a configurable threshold $E_{\textrm{thr}}$, unity gain is assumed:
The gain $g$ is calculated for all models as exponential of the model-dependent impact ionization coefficient $`\alpha`$ and
the length of the step $l$ performed in the respective electric field. If the electric field strength stays below a
configurable threshold $`E_{\textrm{thr}}`$, unity gain is assumed:
```math
\begin{equation}
\label{eq:multiplication}
g (E, T) = \left\{
@@ -19,53 +22,68 @@ If the electric field strength stays below a configurable threshold $E_{\textrm{
\end{array}
\right.
\end{equation}
```
The the following impact ionization models are available:
\subsection{Massey Model}
\label{sec:multi:massey}
## Massey Model
The Massey model~\cite{massey} describes impact ionization as a function of the electric field $E$.
The Massey model\[[@massey]\] describes impact ionization as a function of the electric field $E$.
The ionization coefficients are parametrized as
```math
\begin{equation}
\label{eq:multi:massey}
\alpha (E, T) = A e^{-\frac{B(T)}{E}},
\end{equation}
where $A$ and $B(T)$ are phenomenological parameters, defined for electrons and holes respectively.
While $A$ is assumed to be temperature-independent, parameter $B$ exhibits a temperature dependence and is defined as
```
where $`A`$ and $`B(T)`$ are phenomenological parameters, defined for electrons and holes respectively.
While $`A`$ is assumed to be temperature-independent, parameter $`B`$ exhibits a temperature dependence and is defined as
```math
\begin{equation}
B(T) = C + D \cdot T.
\end{equation}
```
The parameter values implemented in \apsq are taken from Section~3 of~\cite{massey} as:
The parameter values implemented in Allpix Squared are taken from Section 3 of \[[@massey]\] as:
```math
\begin{equation*}
\begin{split}
A_{e} &= \SI{4.43e5}{/cm}\\
C_{e} &= \SI{9.66e5}{V/cm}\\
D_{e} &= \SI{4.99e2}{V/cm/K}
A_{e} &= 4.43\times 10^{5} \,\text{/cm}\\
C_{e} &= 9.66\times 10^{5} \,\text{V/cm}\\
D_{e} &= 4.99\times 10^{2} \,\text{V/cm/K}
\end{split}
\qquad
\begin{split}
A_{h} &= \SI{1.13e6}{/cm}\\
C_{h} &= \SI{1.71e6}{V/cm}\\
D_{h} &= \SI{1.09e3}{V/cm/K}
A_{h} &= 1.13\times 10^{6} \,\text{/cm}\\
C_{h} &= 1.71\times 10^{6} \,\text{V/cm}\\
D_{h} &= 1.09\times 10^{3} \,\text{V/cm/K}
\end{split}
\end{equation*}
```
for electrons and holes, respectively.
This model can be selected in the configuration file via the parameter \parameter{multiplication_model = "massey"}.
This model can be selected in the configuration file via the parameter `multiplication_model = "massey"`.
\subsection{Van Overstraeten-De Man Model}
\label{sec:multi:man}
## Van Overstraeten-De Man Model
The Van Overstraeten-De Man model~\cite{overstraeten} describes impact ionization using Chynoweth's law, given by
The Van Overstraeten-De Man model \[[@overstraeten]\] describes impact ionization using Chynoweth's law, given by
This model can be selected in the configuration file via the parameter \parameter{multiplication_model = "overstraeten"}.
This model can be selected in the configuration file via the parameter `multiplication_model = "overstraeten"`.
\subsection{Okuto-Crowell Model}
\label{sec:multi:oku}
## Okuto-Crowell Model
The Okuto-Crowell model~\cite{okuto} defines the impaction ionization coefficient similarly to the above models but in addition features a linear dependence on the electric field strength $E$.
The coefficient is given by:
The Okuto-Crowell model \[[@okuto]\] defines the impact ionization coefficient similarly to the above models but in addition
features a linear dependence on the electric field strength $`E`$. The coefficient is given by:
```math
\begin{equation}
\label{eq:multi:oku}
\alpha (E, T) = a(T) \cdot E \cdot e^{-\left(\frac{b(T)}{E}\right)^2}.
\end{equation}
The two parameters $a, b$ are temperature dependent and scale with respect to the reference temperature $T_0 = \SI{300}{K}$ as:
```
The two parameters $a, b$ are temperature dependent and scale with respect to the reference temperature
The parameter values implemented in \apsq are taken from Table~1 of~\cite{overstraeten}, using the values for silicon, as:
The parameter values implemented in Allpix Squared are taken from Table1 of\[[@okuto]\], using the values for silicon, as:
```math
\begin{equation*}
\begin{split}
a_{300, e} &= \SI{0.426}{/V}\\
c_{e} &= \num{3.05e-4}\\
b_{300, e} &= \SI{4.81e5}{V/cm}\\
d_{e} &= \num{6.86e-4}\\
a_{300, e} &= 0.426}{/V}\\
c_{e} &= 3.05\times 10^{-4}\\
b_{300, e} &= 4.81\times 10^{5} \,\textrm{V/cm}\\
d_{e} &= 6.86\times 10^{-4}\\
\end{split}
\qquad
\begin{split}
a_{300, h} &= \SI{0.243}{/cm}\\
c_{h} &= \num{5.35e-4}\\
b_{300, h} &= \SI{6.53e5}{V/cm}\\
d_{h} &= \num{5.67e-4}\\
a_{300, h} &= 0.243 \,\textrm{/cm}\\
c_{h} &= 5.35\times 10^{-4}\\
b_{300, h} &= 6.53\times 10^{5} \,\textrm{V/cm}\\
d_{h} &= 5.67\times 10^{-4}\\
\end{split}
\end{equation*}
```
This model can be selected in the configuration file via the parameter \parameter{multiplication_model = "okuto"}.
This model can be selected in the configuration file via the parameter `multiplication_model = "okuto"`.
\subsection{Bologna Model}
\label{sec:multi:bologna}
## Bologna Model
The Bologna model~\cite{bologna} describes impact ionization for experimental data in an electric field range from \SI{130}{kV/cm} to \SI{230}{kV/cm} and temperatures up to \SI{400}{\celsius}.
The impact ionization coefficient takes a different form than the previous models and is given by
The Bologna model \[[@bologna]\] describes impact ionization for experimental data in an electric field range from
$`130 \,\text{kV/cm}`$ to $`230 \,\text{kV/cm}`$ and temperatures up to $`400 \,\text{\celsius}`$. The impact ionization
coefficient takes a different form than the previous models and is given by