@@ -86,6 +86,31 @@ def H2Molecule(wf,ion_sep):
86
86
#print 'Simulating H2Molecule'
87
87
return wf
88
88
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
+
89
114
def H3Molecule (wf ,ion_sep ):
90
115
# ion_sep is in atomic units of Bohr radius
91
116
ion_positions = np .array ([
0 commit comments