Skip to content

Commit 9d6a338

Browse files
authored
adapted code for hamiltonians module (#11)
1 parent 79eaa46 commit 9d6a338

9 files changed

+12
-24
lines changed

README.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ the following commands will install Psi4 and pip (used to install OpenFermion-Ps
2525
python -m conda install psi4
2626
python -m conda install pip
2727
28-
Once Psi4 has been installed, to install the latest versions of OpenFermion and OpenFermion-Psi4 in development mode:
28+
To install the latest versions of OpenFermion and OpenFermion-Psi4 (in development mode):
2929

3030
.. code-block:: bash
3131

examples/generate_data.py

+2-9
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,7 @@
1717
"""This is a simple script for generating data."""
1818
import os
1919

20-
from openfermion.utils import (make_atomic_ring,
21-
make_atom,
22-
MolecularData,
23-
periodic_table)
20+
from openfermion.hamiltonians import make_atomic_ring, MolecularData
2421

2522
from openfermionpsi4 import run_psi4
2623

@@ -47,11 +44,7 @@
4744
for n_electrons in range(2, max_electrons + 1):
4845

4946
# Initialize.
50-
if compute_elements:
51-
atomic_symbol = periodic_table[n_electrons]
52-
molecule = make_atom(atomic_symbol, basis)
53-
else:
54-
molecule = make_atomic_ring(n_electrons, spacing, basis)
47+
molecule = make_atomic_ring(n_electrons, spacing, basis)
5548
if os.path.exists(molecule.filename + '.hdf5'):
5649
molecule.load()
5750

examples/generate_diatomic.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"""This is a simple script for generating data."""
1818
import os
1919

20-
from openfermion.utils import MolecularData
20+
from openfermion.hamiltonians import MolecularData
2121

2222
from openfermionpsi4 import run_psi4
2323

examples/plotter.py

+2-8
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@
1818
import numpy
1919
import warnings
2020

21-
from openfermion.utils import (make_atom, make_atomic_ring,
22-
MolecularData, periodic_table)
21+
from openfermion.hamiltonians import make_atomic_ring, MolecularData
2322

2423
with warnings.catch_warnings():
2524
warnings.simplefilter('ignore')
@@ -62,19 +61,14 @@ def latex_name(molecule):
6261
y_log = 0
6362

6463
# Set chemical series parameters.
65-
plot_elements = 0
6664
max_electrons = 10
6765
spacing = 0.7414
6866
basis = 'sto-3g'
6967

7068
# Get chemical series.
7169
molecular_series = []
7270
for n_electrons in range(2, max_electrons + 1):
73-
if plot_elements:
74-
atomic_symbol = periodic_table[n_electrons]
75-
molecule = make_atom(atomic_symbol, basis)
76-
else:
77-
molecule = make_atomic_ring(n_electrons, spacing, basis)
71+
molecule = make_atomic_ring(n_electrons, spacing, basis)
7872
molecule.load()
7973
molecular_series += [molecule]
8074

openfermionpsi4/_psi4_conversion_functions.py

100755100644
File mode changed.

openfermionpsi4/_psi4_template

100755100644
+4-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@ import numpy
33
import sys
44

55
from openfermion.config import *
6-
from openfermion.ops._interaction_tensor import (one_body_basis_change,
7-
two_body_basis_change)
8-
from openfermion.utils import MolecularData
6+
from openfermion.hamiltonians import MolecularData
7+
from openfermion.ops import (one_body_basis_change,
8+
two_body_basis_change)
9+
910
from numpy import array
1011

1112
sys.path.append('&THIS_DIRECTORY')

openfermionpsi4/_run_psi4.py

100755100644
File mode changed.

openfermionpsi4/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@
1515
# along with this program. If not, see <http://www.gnu.org/licenses/>.
1616

1717
"""Define version number here and read it from setup.py automatically"""
18-
__version__ = "0.1a1"
18+
__version__ = "0.1a2"

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
openfermion>=0.1a0
1+
openfermion>=0.1a2

0 commit comments

Comments
 (0)