|
nwchem里面有例子计算电子转移。
https://nwchemgit.github.io/Electron-Transfer.html
这里面应该是He$^+$+He->He+He$^+$. 这是同核原子的。如果是异核原子,比如FLi, FLi->F$^-$+Li$^+$。这种电子转移反应,不知可否提供一个例子来学习下,非常感谢。因为离子能量比较高,所以电子转移过程其实是从FLi激发态开始的。
basis "ao basis" * library aug-cc-pvtz
end
geometry
He 0 0 0
end
charge 1
scf
tol2e 1d-9
uhf
doublet
vectors output HeP.movecs
end
task scf
charge 0
scf
uhf
singlet
vectors output He.movecs
end
task scf
geometry noautosym noautoz
He 0.0 0.0 0.0
He 5.0 0.0 0.0
end
charge 1
#ET reactants:
scf
doublet; uhf; vectors input fragment HeP.movecs He.movecs output HeA.movecs
end
task scf
#ET products:
scf
doublet; uhf; vectors input HeA.movecs reorder 2 1 output HeB.movecs
end
task scf
et
vectors reactants HeA.movecs
vectors products HeB.movecs
end
task scf et
输出结果会给出Coupling数值。
|
|