Skip to content
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

[WIP] Add cusp correction based on atomic orbitals #4901

Draft
wants to merge 6 commits into
base: develop
Choose a base branch
from

Commits on Jan 13, 2024

  1. Add atomic-orbital based cusp correction

    This is from Manten and Luchow JCP 115 5362 (2001).
    The actual parameters need to be computed and added to the HDF file by a
    separate script.
    markdewing committed Jan 13, 2024
    Configuration menu
    Copy the full SHA
    930ba5d View commit details
    Browse the repository at this point in the history
  2. Add comment

    markdewing committed Jan 13, 2024
    Configuration menu
    Copy the full SHA
    24556d1 View commit details
    Browse the repository at this point in the history

Commits on Jan 16, 2024

  1. Configuration menu
    Copy the full SHA
    d759aab View commit details
    Browse the repository at this point in the history

Commits on Jan 22, 2024

  1. Correct all the s-type orbitals

    n is a label, not a quantum number
    markdewing committed Jan 22, 2024
    Configuration menu
    Copy the full SHA
    60c644a View commit details
    Browse the repository at this point in the history

Commits on Jan 29, 2024

  1. Fix bugs

    - read of delta
    - initialize src_rcut and src_delta to zero.
    
    Also output all the relevant parameters.
    markdewing committed Jan 29, 2024
    Configuration menu
    Copy the full SHA
    e0cda53 View commit details
    Browse the repository at this point in the history
  2. Add adaptive rc

    Sometimes a crossing in the 2nd derivative is not found.  In that case,
    increase the initial fitting range and try again.
    
    n may not be quantum number, but we can treat it like one, especially
    for 1s and 2s orbitals.
    
    Move the lower bound for computing the reference values to 0.1.
    That is, the range of values used for the initial fit is [0.1, 0.2].
    This seems to work better.
    markdewing committed Jan 29, 2024
    Configuration menu
    Copy the full SHA
    6e917d2 View commit details
    Browse the repository at this point in the history