exciton wfs with fixed electron position

Anything regarding the post-processing utility (e.g. excitonic wavefunction analysis) is dealt with in this forum.

Moderators: Davide Sangalli, andrea marini, Daniele Varsano

Post Reply
michele guerrini
Posts: 11
Joined: Thu Mar 28, 2019 10:53 am

exciton wfs with fixed electron position

Post by michele guerrini » Sun Sep 29, 2019 2:11 pm

Dear developers,
is it possible by using ypp to plot the hole probability distribution with fixed electron position ?
Dr. Michele Guerrini
Humboldt-Universität zu Berlin
Institut für Physik und IRIS Adlershof
Zum Grossen Windkanal 6, 12489 Berlin, Germany
e-mail: guerrini@physik.hu-berlin.de
Skype: merlin__88

User avatar
Daniele Varsano
Posts: 3816
Joined: Tue Mar 17, 2009 2:23 pm
Contact:

Re: exciton wfs with fixed electron position

Post by Daniele Varsano » Sun Sep 29, 2019 3:42 pm

Hi Michele,

no, but it should be straightforward to modify the code for that:
/ypp/excitons/excitons_WFs.F

Just assign the r_hole position as an electron position by swithcing the ir_hole position nad ir in WF1_ir (valence) to WF2_ir (conduction).
:
WF1_ir=WF_symm(rindex(ir_hole),(/iv,ikibz,is,i_spin/))
WF2_ir=WF_symm(rindex(ir ),(/ic,ikibz,is,i_spin/))

Best,
Daniele
Dr. Daniele Varsano
S3-CNR Institute of Nanoscience and MaX Center, Italy
MaX - Materials design at the Exascale
http://www.nano.cnr.it
http://www.max-centre.eu/

michele guerrini
Posts: 11
Joined: Thu Mar 28, 2019 10:53 am

Re: exciton wfs with fixed electron position

Post by michele guerrini » Mon Sep 30, 2019 1:42 pm

thank you very much Daniele, it seems working fine !
Dr. Michele Guerrini
Humboldt-Universität zu Berlin
Institut für Physik und IRIS Adlershof
Zum Grossen Windkanal 6, 12489 Berlin, Germany
e-mail: guerrini@physik.hu-berlin.de
Skype: merlin__88

pangrt
Posts: 27
Joined: Thu Jun 18, 2020 1:38 pm

Re: exciton wfs with fixed electron position

Post by pangrt » Wed Jul 22, 2020 12:12 pm

Dear all,
When we construct exciton wavefunctions, we always chose a fixed hole position and see what are the electron distributions, and we call the fixed hole and electron distributions together the exciton wavefunctions. Could we fix an electron of the exciton, and see how the distribution of the holes? What the difference between the fixed h and fixed e for the exciton wavefunction?

Thanks!

Pang rt


IMU,Hohhot, China
RongTianPang, Inner Mongolia University, Hohhot, China :)

User avatar
Daniele Varsano
Posts: 3816
Joined: Tue Mar 17, 2009 2:23 pm
Contact:

Re: exciton wfs with fixed electron position

Post by Daniele Varsano » Wed Jul 22, 2020 12:19 pm

Dear Pang,

if you look at the definition of the excitonic wfs you realise that the hole coordinate refers to the valence bands/orbitals and electrons to the conductions one participating in the excitation. If you want to fix the electron coordinates instead of the hole probably it is enough to change in the code:
/ypp/excitons/excitons_WFs.F

Code: Select all

190        WF1_ir=WF_symm(rindex(ir_hole),(/iv,ikp,isp,i_spin/))
191        WF2_ir=WF_symm(rindex(ir     ),(/ic,ikibz,is,i_spin/))
in

Code: Select all

190        WF1_ir=WF_symm(rindex(ir),(/iv,ikp,isp,i_spin/))
191        WF2_ir=WF_symm(rindex(ir_hole     ),(/ic,ikibz,is,i_spin/))
and recompile it.

Best,
Daniele
Dr. Daniele Varsano
S3-CNR Institute of Nanoscience and MaX Center, Italy
MaX - Materials design at the Exascale
http://www.nano.cnr.it
http://www.max-centre.eu/

sdwang
Posts: 287
Joined: Fri Apr 09, 2010 12:30 pm

Re: exciton wfs with fixed electron position

Post by sdwang » Tue Mar 12, 2024 7:44 am

Dear all,
I want to obtain the hoe distributions while fixing the electron position, I change the code /ypp/excitons/excitons_WFs.F from
242 WF1_ir=WF_symm(rindex(ir_hole),(/iv,ikp,isp,i_sp_pol/))
243 WF2_ir=WF_symm(rindex(ir ),(/ic,ikibz,is,i_sp_pol/))
to
242 WF1_ir=WF_symm(rindex(ir ),(/iv,ikp,isp,i_sp_pol/))
243 WF2_ir=WF_symm(rindex(ir_hole),(/ic,ikibz,is,i_sp_pol/))
I find the code of excitons_WFs.F is really different from the previous version. Is it enough to capture the hole distribution?

Thanks

Best,

Shudong
S. D. Wang
IMU,HOHHOT,CHINA
E-mail: sdwang@imu.edu.cn

User avatar
Daniele Varsano
Posts: 3816
Joined: Tue Mar 17, 2009 2:23 pm
Contact:

Re: exciton wfs with fixed electron position

Post by Daniele Varsano » Wed Mar 13, 2024 12:43 pm

Dear Shudong,

yes this should be enough.

Best,
Daniele
Dr. Daniele Varsano
S3-CNR Institute of Nanoscience and MaX Center, Italy
MaX - Materials design at the Exascale
http://www.nano.cnr.it
http://www.max-centre.eu/

Post Reply