Hello all,
I want to make a program to transfer the WFK file to ASCII format rather than use cut3d, so I need to know how cut3d read wavefunction file. I found that cut3d call rwwf(cg,eigen1,formeig,headform,0,ikpt,isppol,kg_dum, mband,mcg,mpi_enreg,nband(ikpt),nband_disk,npwarr(ikpt),nspinor,occ1,option,0,tim_rwwf,wff), but I can not find the source code of rwwf. How can tell me rwwf in which file?
After I get the wavefunction coefficient, how can I construct the wavefunction with the coefficient?
Thanks.
Best regards,
Zjuer
where can I find the source code of rwwf
Re: where can I find the source code of rwwf
Just type "ls src/*/*rwwf*" from the top source directory of Abinit.
The following command also works:
More generally, when these two commands fail, you may also try:
The following command also works:
Code: Select all
find src -name '*rwwf*' -print
More generally, when these two commands fail, you may also try:
Code: Select all
grep -lri '<name_of_subroutine>' src
Yann Pouillon
Simune Atomistics
Donostia-San Sebastián, Spain
Simune Atomistics
Donostia-San Sebastián, Spain
Re: where can I find the source code of rwwf
I see, thank you pouillon.