Input of different versions of FCIDUMP module

Are these two input.dat equal?

molecule {
0 3
         N 0 0 0
         N 0 0 1.12079733
         }

set {
  basis cc-pVDZ
  reference     uhf
}
E, wfn = energy('scf', return_wfn=True)
fcidump(wfn)

and

import fcidump
# Equilibruim geometry
# 2.118 a_0 * 0.52917721067 A/a_0 = 1.12079733 A
molecule {
0 3
         N 0 0 0
         N 0 0 1.12079733
}
set {
    basis cc-pVDZ
    reference uhf
    integrals_file 'INTDUMP_n2_eqm_mult3'
}
energy('fcidump')

If by “equal”, you mean “generate the same contents for their FCIDUMP files,” they should be.

Have you seen otherwise?

1 Like

it’s very useful for me, thanks a lot

in fact, first input is for v1.6 and second is an old version, there’s FCIDUMP are not same (by compare_FCIDUMP), but this is just caused of version, not input, right?

That should be the case. If you’re using this for your own research, check yourself. The developers can be asked to investigate probable bugs, but not to do rigorous data checking for you.

I’m sorry for that, and thanks for your reply

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.