Skip to content

Commit

Permalink
Bugfix of wrong calculations of number of protons (and electrons) by …
Browse files Browse the repository at this point in the history
…making hydrogen

start at 1 and not 2.  Removed binary files that should not be in the repo.
  • Loading branch information
LucasVisscher committed Apr 1, 2019
1 parent afd0562 commit 8b96cd2
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions openfermion_dirac/_molecular_data_Dirac.py
Expand Up @@ -62,7 +62,7 @@ def angstroms_to_bohr(distance):

# The Periodic Table as a python list and dictionary.
periodic_table = [
'?','foo',
'?',
'H', 'He',
'Li', 'Be',
'B', 'C', 'N', 'O', 'F', 'Ne',
Expand All @@ -87,7 +87,7 @@ def angstroms_to_bohr(distance):
periodic_hash_table[atom] = atomic_number

# Spin polarization of atoms on period table.
periodic_polarization = [-1,-1,
periodic_polarization = [-1,
1, 0,
1, 0, 1, 2, 3, 2, 1, 0,
1, 0, 1, 2, 3, 2, 1, 0,
Expand Down
Binary file removed utils/dirac_openfermion_mointegral_export.mod
Binary file not shown.
Binary file removed utils/dirac_openfermion_mointegral_export.x
Binary file not shown.

0 comments on commit 8b96cd2

Please sign in to comment.