This package is a simple tool to calculate the Orbital Motion Limited (OML) currents to spheres and cylinders.
We first calculate
$$
\begin{equation}
\chi = \frac{-q \varphi}{k_b T}
\end{equation}
$$
Here,
Next, we find the thermal currents to a neutral probe
$$
\begin{align}
\begin{split}
I_{0,s} &= A n_{\infty} q \sqrt{\frac{k_b T}{2 \pi m}} \
I_{0,c} &= \frac{2}{\sqrt{\pi}} A n_{\infty} q \sqrt{\frac{k_b T}{2 \pi m}}
\end{split}
\end{align}
$$
Here
$$ \begin{equation} I_s = \begin{cases} I_{0,s} \exp(\chi), & q\varphi > 0, \ \ I_{0,s} (1 + \chi), & q\varphi \leq 0
\end{cases}
\end{equation} $$
$$ \begin{equation} I_c = \begin{cases} I_{0,c} \exp(\chi), & q\varphi > 0, \ \ I_{0,c} \sqrt{(1 - \chi)}, & q\varphi \leq 0
\end{cases}
\end{equation} $$
example.py demonstrates how to use the OML tool to calculate and plot the IV characteristics for both spherical and cylindrical probes. You can run the script to generate the plot shown above. The script sets up the necessary parameters, computes the currents using the formulas described, and visualizes the results.
For more details, see example.py.
