|
def get_cutoff_radius(self, density_cutoff): |
|
if density_cutoff <= 0.0: |
|
return np.inf |
|
population, exponent = self.pars |
|
return (np.log(population) - np.log(density_cutoff)) / exponent |
Is the prefactor $\frac{\alpha^3_{Ai}}{8 \pi}$ missed in the definition of the cutoff radius of radial density?
$$\rho_{Ai}^0(\vec{r}) = N_{Ai} f_{Ai}(\vec{r}) = \frac{N_{Ai} \alpha^3_{Ai}}{8\pi}e^{-\alpha_{Ai}|\vec{r}-\vec{R}_A|}$$
denspart/src/denspart/mbis.py
Lines 57 to 61 in 7ee05fb
Is the prefactor$\frac{\alpha^3_{Ai}}{8 \pi}$ missed in the definition of the cutoff radius of radial density?