Skip to content

Commit 8d56afb

Browse files
committed
Added H2Symmetric using the symmetric combination of 1s orbitals. Still need to test
1 parent 36accd7 commit 8d56afb

File tree

2 files changed

+26
-1
lines changed

2 files changed

+26
-1
lines changed

DefineSystem.py

+25
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,31 @@ def H2Molecule(wf,ion_sep):
8686
#print 'Simulating H2Molecule'
8787
return wf
8888

89+
def H2Symmetric(wf,ion_sep):
90+
# ion_sep is in atomic units of Bohr radius
91+
ion_positions = np.array([
92+
[-0.5*ion_sep, 0.0, 0.0],
93+
[0.5*ion_sep, 0.0, 0.0]]) * GSF.a_B
94+
H_atom1 = GSF.Atom(pos=np.array(ion_positions[0]),Z=1.0)
95+
H_atom2 = GSF.Atom(pos=np.array(ion_positions[1]),Z=1.0)
96+
psi_laplacian = []
97+
# two options for 2 electrons --> 2(up and down):0 or 1:1 (up: down or up:up)
98+
# using 1:1 and up for both for now
99+
psi_array_up = np.array([lambda x: H_atom1.psi_1s(x) + H_atom2.psi_1s(x)])
100+
psi_array_down = np.array([lambda x: H_atom1.psi_1s(x) + H_atom2.psi_1s(x)])
101+
102+
wf.setUpWavefunctions(psi_array_up)
103+
wf.setDownWavefunctions(psi_array_down)
104+
wf.setAtomicLaplacians(psi_laplacian)
105+
wf.setAtomList([H_atom1,H_atom2])
106+
#wf.setIonPositions(ion_positions)
107+
#wf.setIonCharges(ion_charges)
108+
wf.setNumUp(len(psi_array_up))
109+
wf.setNumDown(len(psi_array_down))
110+
111+
#print 'Simulating H2Molecule'
112+
return wf
113+
89114
def H3Molecule(wf,ion_sep):
90115
# ion_sep is in atomic units of Bohr radius
91116
ion_positions = np.array([

VMC.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ def parseArgs(args,x):
126126
steps_input, bond_distance, sigma, jastrowB, jastrowD = parseArgs(sys.argv,x)
127127

128128
WF = GTF.WaveFunctionClass()
129-
WF = DS.H2Molecule(WF,bond_distance)
129+
WF = DS.H2Symmetric(WF,bond_distance)
130130
#WF = DS.H2OMolecule(WF,bond_distance)
131131
#WF = DS.LithiumAtom(WF)
132132
#WF = DS.HeliumAtom(WF)

0 commit comments

Comments
 (0)