Page 1 of 1

where can I find the source code of rwwf

Posted: Mon Mar 28, 2011 3:52 am
by zjuer
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

Re: where can I find the source code of rwwf

Posted: Mon Mar 28, 2011 5:48 pm
by pouillon
Just type "ls src/*/*rwwf*" from the top source directory of Abinit.

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

Re: where can I find the source code of rwwf

Posted: Tue Mar 29, 2011 9:10 pm
by zjuer
I see, thank you pouillon.