-
Notifications
You must be signed in to change notification settings - Fork 37
PR1 : implement analytical Coulomb potential for Gaussian densities #304
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
Ao-chuba
wants to merge
3
commits into
theochem:master
Choose a base branch
from
Ao-chuba:feature/coulomb-analytical-potentials
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,222 @@ | ||
| # GRID is a numerical integration module for quantum chemistry. | ||
| # | ||
| # Copyright (C) 2011-2026 The GRID Development Team | ||
| # | ||
| # This file is part of GRID. | ||
| # | ||
| # GRID is free software; you can redistribute it and/or | ||
| # modify it under the terms of the GNU General Public License | ||
| # as published by the Free Software Foundation; either version 3 | ||
| # of the License, or (at your option) any later version. | ||
| # | ||
| # GRID is distributed in the hope that it will be useful, | ||
| # but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| # GNU General Public License for more details. | ||
| # | ||
| # You should have received a copy of the GNU General Public License | ||
| # along with this program; if not, see <http://www.gnu.org/licenses/> | ||
| # -- | ||
| r""" | ||
| Coulomb potential module for Gaussian charge densities. | ||
|
|
||
| Provides exact analytical formulas for evaluating the electrostatic potential | ||
| of s-type and p-type Gaussian functions. | ||
| """ | ||
|
|
||
| from __future__ import annotations | ||
|
|
||
| import numpy as np | ||
| from scipy.special import erf | ||
|
|
||
| __all__ = ["coulomb_gaussian_p", "coulomb_gaussian_s", "coulomb_potential"] | ||
|
|
||
| # Distance threshold below which the r->0 analytical limit is used | ||
| # instead of erf(x)/x to avoid division by zero at atomic nuclei. | ||
| _R_ZERO_THRESHOLD = 1e-12 | ||
|
|
||
|
|
||
| def coulomb_gaussian_s(r: np.ndarray, alpha: float, normalized: bool = True) -> np.ndarray: | ||
| r"""Compute the exact Coulomb potential of an s-type Gaussian charge density. | ||
|
|
||
| If ``normalized`` is True, the charge density is: | ||
| .. math:: | ||
| \rho(r) = \left(\frac{\alpha}{\pi}\right)^{3/2} e^{-\alpha r^2} | ||
|
|
||
| and the potential is: | ||
| .. math:: | ||
| V(r) = \frac{\text{erf}(\sqrt{\alpha} r)}{r} | ||
|
|
||
| If ``normalized`` is False, the charge density is: | ||
| .. math:: | ||
| \rho(r) = e^{-\alpha r^2} | ||
|
|
||
| and the potential is: | ||
| .. math:: | ||
| V(r) = \left(\frac{\pi}{\alpha}\right)^{3/2} \frac{\text{erf}(\sqrt{\alpha} r)}{r} | ||
|
|
||
| Parameters | ||
| ---------- | ||
| r : np.ndarray | ||
| Radial distances from the center of the Gaussian. | ||
| alpha : float | ||
| Gaussian exponent. | ||
| normalized : bool, default=True | ||
| Whether to compute the potential of a normalized s-type Gaussian. | ||
|
|
||
| Returns | ||
| ------- | ||
| np.ndarray | ||
| Coulomb potential evaluated at the radial distances. | ||
| """ | ||
| if alpha <= 0: | ||
| raise ValueError(f"Gaussian exponent alpha must be strictly positive; got {alpha}") | ||
| r = np.atleast_1d(np.asarray(r, dtype=float)) | ||
| sqrt_a = np.sqrt(alpha) | ||
| out = np.empty_like(r) | ||
| np.divide(erf(sqrt_a * r), r, out=out, where=r >= _R_ZERO_THRESHOLD) | ||
| # safe division | ||
| out[r < _R_ZERO_THRESHOLD] = 2.0 * sqrt_a / np.sqrt(np.pi) | ||
|
|
||
| if normalized: | ||
| return out | ||
|
|
||
| prefactor = (np.pi / alpha) ** 1.5 | ||
| return prefactor * out | ||
|
|
||
|
|
||
| def coulomb_gaussian_p(r: np.ndarray, beta: float, normalized: bool = True) -> np.ndarray: | ||
| r"""Compute the exact Coulomb potential of a p-type radial Gaussian charge density. | ||
|
|
||
| If ``normalized`` is True, the charge density is: | ||
| .. math:: | ||
| \rho(r) = \frac{2}{3} \frac{\beta^{5/2}}{\pi^{3/2}} r^2 e^{-\beta r^2} | ||
|
|
||
| and the potential is: | ||
| .. math:: | ||
| V(r) = \frac{\text{erf}(\sqrt{\beta} r)}{r} | ||
| + \frac{4}{3} \sqrt{\frac{\beta}{\pi}} e^{-\beta r^2} | ||
|
|
||
| If ``normalized`` is False, the charge density is: | ||
| .. math:: | ||
| \rho(r) = r^2 e^{-\beta r^2} | ||
|
|
||
| and the potential is: | ||
| .. math:: | ||
| V(r) = \frac{3 \pi^{1.5}}{2 \beta^{2.5}} \frac{\text{erf}(\sqrt{\beta} r)}{r} | ||
| + \frac{2\pi}{\beta^2} e^{-\beta r^2} | ||
|
|
||
| Parameters | ||
| ---------- | ||
| r : np.ndarray | ||
| Radial distances from the center of the Gaussian. | ||
| beta : float | ||
| Gaussian exponent. | ||
| normalized : bool, default=True | ||
| Whether to compute the potential of a normalized p-type Gaussian. | ||
|
|
||
| Returns | ||
| ------- | ||
| np.ndarray | ||
| Coulomb potential evaluated at the radial distances. | ||
| """ | ||
| if beta <= 0: | ||
| raise ValueError(f"Gaussian exponent beta must be strictly positive; got {beta}") | ||
| r = np.atleast_1d(np.asarray(r, dtype=float)) | ||
| sqrt_b = np.sqrt(beta) | ||
| term1 = np.zeros_like(r) | ||
| np.divide(erf(sqrt_b * r), r, out=term1, where=r >= _R_ZERO_THRESHOLD) | ||
| # safe at r=0 | ||
| term2 = (4.0 / 3.0) * (sqrt_b / np.sqrt(np.pi)) * np.exp(-beta * r**2) | ||
| out = term1 + term2 | ||
| out[r < _R_ZERO_THRESHOLD] = (10.0 / 3.0) * (sqrt_b / np.sqrt(np.pi)) | ||
|
|
||
| if normalized: | ||
| return out | ||
|
|
||
| prefactor = 1.5 * (np.pi**1.5) / (beta**2.5) | ||
| return prefactor * out | ||
|
|
||
|
|
||
| def coulomb_potential( | ||
| points: np.ndarray, | ||
| centers_s: np.ndarray, | ||
| coeffs_s: np.ndarray, | ||
| expons_s: np.ndarray, | ||
| centers_p: np.ndarray | None = None, | ||
| coeffs_p: np.ndarray | None = None, | ||
| expons_p: np.ndarray | None = None, | ||
| normalized: bool = True, | ||
| ) -> np.ndarray: | ||
| """Compute the total Coulomb potential at evaluation points from a set of Gaussians. | ||
|
|
||
| Parameters | ||
| ---------- | ||
| points : np.ndarray | ||
| Evaluation points, shape (N, 3). | ||
| centers_s : np.ndarray | ||
| Centers of the s-type Gaussians, shape (Ks, 3). | ||
| coeffs_s : np.ndarray | ||
| Coefficients of the s-type Gaussians, shape (Ks,). | ||
| expons_s : np.ndarray | ||
| Exponents of the s-type Gaussians, shape (Ks,). | ||
| centers_p : np.ndarray, optional | ||
| Centers of the p-type Gaussians, shape (Kp, 3). | ||
| coeffs_p : np.ndarray, optional | ||
| Coefficients of the p-type Gaussians, shape (Kp,). | ||
| expons_p : np.ndarray, optional | ||
| Exponents of the p-type Gaussians, shape (Kp,). | ||
| normalized : bool, default=True | ||
| Whether the coefficients correspond to normalized Gaussians. | ||
|
|
||
| Returns | ||
| ------- | ||
| np.ndarray | ||
| The computed electrostatic potential, shape (N,). | ||
| """ | ||
| points = np.asarray(points, dtype=float) | ||
| coeffs_s = np.asarray(coeffs_s, dtype=float) | ||
| expons_s = np.asarray(expons_s, dtype=float) | ||
| centers_s = np.asarray(centers_s, dtype=float) | ||
|
|
||
| # Validate that all s-type arrays describe the same number of Gaussians | ||
| n_s = len(coeffs_s) | ||
| if len(expons_s) != n_s or len(centers_s) != n_s: | ||
| raise ValueError( | ||
| "coeffs_s, expons_s, and centers_s must have the same length; " | ||
| f"got {len(coeffs_s)}, {len(expons_s)}, and {len(centers_s)}" | ||
| ) | ||
|
|
||
| # Validate that p-type arguments are either all provided or all omitted | ||
| p_args = (coeffs_p, expons_p, centers_p) | ||
| if any(a is not None for a in p_args) and not all(a is not None for a in p_args): | ||
| raise ValueError( | ||
| "coeffs_p, expons_p, and centers_p must either all be provided or all be None" | ||
| ) | ||
|
|
||
| V = np.zeros(len(points)) | ||
|
|
||
| # Accumulate s-type potential | ||
| for c, alpha, center in zip(coeffs_s, expons_s, centers_s): | ||
| r = np.linalg.norm(points - center, axis=-1) | ||
| V += c * coulomb_gaussian_s(r, alpha, normalized=normalized) | ||
|
|
||
| # Accumulate p-type potential if present | ||
| if coeffs_p is not None: | ||
| coeffs_p = np.asarray(coeffs_p, dtype=float) | ||
| expons_p = np.asarray(expons_p, dtype=float) | ||
| centers_p = np.asarray(centers_p, dtype=float) | ||
|
|
||
| # Validate that all p-type arrays describe the same number of Gaussians | ||
| n_p = len(coeffs_p) | ||
| if len(expons_p) != n_p or len(centers_p) != n_p: | ||
| raise ValueError( | ||
| "coeffs_p, expons_p, and centers_p must have the same length; " | ||
| f"got {len(coeffs_p)}, {len(expons_p)}, and {len(centers_p)}" | ||
| ) | ||
|
|
||
| for c, beta, center in zip(coeffs_p, expons_p, centers_p): | ||
| r = np.linalg.norm(points - center, axis=-1) | ||
| V += c * coulomb_gaussian_p(r, beta, normalized=normalized) | ||
|
|
||
| return V | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,99 @@ | ||
| # GRID is a numerical integration module for quantum chemistry. | ||
| # | ||
| # Copyright (C) 2011-2026 The GRID Development Team | ||
| # | ||
| # This file is part of GRID. | ||
| # | ||
| # GRID is free software; you can redistribute it and/or | ||
| # modify it under the terms of the GNU General Public License | ||
| # as published by the Free Software Foundation; either version 3 | ||
| # of the License, or (at your option) any later version. | ||
| # | ||
| # GRID is distributed in the hope that it will be useful, | ||
| # but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| # GNU General Public License for more details. | ||
| # | ||
| # You should have received a copy of the GNU General Public License | ||
| # along with this program; if not, see <http://www.gnu.org/licenses/> | ||
| # -- | ||
| """Tests for analytical Coulomb potentials of Gaussians.""" | ||
|
|
||
| import numpy as np | ||
| from numpy.testing import assert_allclose | ||
| from scipy.special import erf | ||
|
|
||
| from grid.coulomb import coulomb_gaussian_p, coulomb_gaussian_s, coulomb_potential | ||
|
|
||
|
|
||
| def test_coulomb_gaussian_s(): | ||
| alpha = 2.0 | ||
|
|
||
| # Test r=0 limit (normalized) | ||
| result = coulomb_gaussian_s(0.0, alpha, normalized=True) | ||
| expected = 2.0 * np.sqrt(alpha) / np.sqrt(np.pi) | ||
| assert_allclose(result, expected) | ||
|
|
||
| # Test r=0 limit (unnormalized) | ||
| result = coulomb_gaussian_s(0.0, alpha, normalized=False) | ||
| expected = 2.0 * np.pi / alpha | ||
| assert_allclose(result, expected) | ||
|
|
||
| # Test nonzero r (normalized) | ||
| r = np.array([1.5, 3.0]) | ||
| result = coulomb_gaussian_s(r, alpha, normalized=True) | ||
| expected = erf(np.sqrt(alpha) * r) / r | ||
| assert_allclose(result, expected) | ||
|
|
||
| # Test nonzero r (unnormalized) | ||
| result = coulomb_gaussian_s(r, alpha, normalized=False) | ||
| expected = (np.pi / alpha) ** 1.5 * erf(np.sqrt(alpha) * r) / r | ||
| assert_allclose(result, expected) | ||
|
|
||
|
|
||
| def test_coulomb_gaussian_p(): | ||
| beta = 3.0 | ||
|
|
||
| # Test r=0 limit (normalized) | ||
| result = coulomb_gaussian_p(0.0, beta, normalized=True) | ||
| expected = 10.0 / 3.0 * np.sqrt(beta) / np.sqrt(np.pi) | ||
| assert_allclose(result, expected) | ||
|
|
||
| # Test r=0 limit (unnormalized) | ||
| result = coulomb_gaussian_p(0.0, beta, normalized=False) | ||
| expected = 5.0 * np.pi / beta**2 | ||
| assert_allclose(result, expected) | ||
|
|
||
| # Test nonzero r (normalized) | ||
| r = np.array([0.5, 2.0]) | ||
| result = coulomb_gaussian_p(r, beta, normalized=True) | ||
| expected = erf(np.sqrt(beta) * r) / r + 4.0 / 3.0 * np.sqrt(beta / np.pi) * np.exp(-beta * r**2) | ||
| assert_allclose(result, expected) | ||
|
|
||
| # Test nonzero r (unnormalized) | ||
| result = coulomb_gaussian_p(r, beta, normalized=False) | ||
| expected = 1.5 * (np.pi**1.5 / beta**2.5) * erf( | ||
| np.sqrt(beta) * r | ||
| ) / r + 2.0 * np.pi / beta**2 * np.exp(-beta * r**2) | ||
| assert_allclose(result, expected) | ||
|
|
||
|
|
||
| def test_coulomb_potential(): | ||
| points = np.array([[0.1, 0.2, 0.3], [1.0, 1.0, 1.0]]) | ||
| centers_s = np.array([[0.0, 0.0, 0.0], [1.0, 1.0, 1.0]]) | ||
| coeffs_s = np.array([0.5, 2.0]) | ||
| expons_s = np.array([1.5, 0.8]) | ||
|
|
||
| # Only s-type | ||
| v_s = coulomb_potential(points, centers_s, coeffs_s, expons_s, normalized=True) | ||
|
|
||
| # Check explicitly | ||
| v_expected = np.zeros(len(points)) | ||
| for c, alpha, center in zip(coeffs_s, expons_s, centers_s): | ||
| r = np.linalg.norm(points - center, axis=1) | ||
| with np.errstate(divide="ignore", invalid="ignore"): | ||
| val = erf(np.sqrt(alpha) * r) / r | ||
| val[r < 1e-12] = 2.0 * np.sqrt(alpha / np.pi) | ||
| v_expected += c * val | ||
|
|
||
| assert_allclose(v_s, v_expected) |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.