BSE tutorial error  [SOLVED]

GW, Bethe-Salpeter …

Moderators: maryam.azizi, bruneval

Locked
hammouri
Posts: 57
Joined: Fri Feb 13, 2015 6:44 am

BSE tutorial error

Post by hammouri » Thu Feb 11, 2016 9:14 pm

Hello All,
I am trying the tutorial of BSE, but when I run tbs_2.in I got this error:

--- !ERROR
message: |
Fortran open returned iostat 29 while opening: tbs_2i_WFK
, IOMSG: file not found, unit 1024, file /home/abinit/BSE-Si-test/tbs_2i_WFK
src_file: Subroutine Unknown
src_line: 0

Any idea please?

User avatar
gmatteo
Posts: 291
Joined: Sun Aug 16, 2009 5:40 pm

Re: BSE tutorial error  [SOLVED]

Post by gmatteo » Fri Feb 12, 2016 2:20 pm

The new version of the GW/BSE code does not use the KSS file anymore.
The wavefunctions and the energies are always obtained from the WFK file.
This means that you have to create a link to the WKF file produced by tbs_1:
So use,

ln -s tbs_1o_DS3_WFK tbs_2i_WFK

instead of the old command:

ln -s tbs_1o_DS3_KSS tbs_2i_KSS

You can still run the BSE tutorial as described on the webpage, provided you replace
the KSS file extension with WFK in all linux commands used to create symbolic links.

hammouri
Posts: 57
Joined: Fri Feb 13, 2015 6:44 am

Re: BSE tutorial error

Post by hammouri » Fri Feb 12, 2016 7:04 pm

Thank you gmatteo,
It works fine now. This modification should be mention somewhere so everyone can get help.

hammouri
Posts: 57
Joined: Fri Feb 13, 2015 6:44 am

Re: BSE tutorial error

Post by hammouri » Wed Feb 24, 2016 7:08 pm

so I just noticed something;
in the second run of the input file of tbs_2.in, it is mention this:
irdscr 1 # Read the SCR file produced in tbse_1
so do I need to make it
irdwfk 1 # Read the WFK file produced in tbse_1

Locked