2016-05-09 10:19:56 +02:00
##########################################################################
2013-07-23 19:49:42 +02:00
#
# TRIQS: a Toolbox for Research in Interacting Quantum Systems
#
# Copyright (C) 2011 by M. Aichhorn, L. Pourovskii, V. Vildosola
#
# TRIQS is free software: you can redistribute it and/or modify it under the
# terms of the GNU General Public License as published by the Free Software
# Foundation, either version 3 of the License, or (at your option) any later
# version.
#
# TRIQS is distributed in the hope that it will be useful, but WITHOUT ANY
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
# details.
#
# You should have received a copy of the GNU General Public License along with
# TRIQS. If not, see <http://www.gnu.org/licenses/>.
#
2016-05-09 10:19:56 +02:00
##########################################################################
2022-03-01 23:51:39 +01:00
"""
Extension to the SumkDFT class with some analyiss tools
"""
2015-07-28 17:21:13 +02:00
import sys
2013-07-23 19:49:42 +02:00
from types import *
import numpy
2020-05-27 17:30:24 +02:00
from triqs . gf import *
import triqs . utility . mpi as mpi
2020-04-08 21:35:59 +02:00
from . symmetry import *
from . sumk_dft import SumkDFT
2015-07-28 17:21:13 +02:00
from scipy . integrate import *
from scipy . interpolate import *
2013-07-23 19:49:42 +02:00
2018-02-13 21:42:09 +01:00
if not hasattr ( numpy , ' full ' ) :
# polyfill full for older numpy:
numpy . full = lambda a , f : numpy . zeros ( a ) + f
2016-05-09 10:19:56 +02:00
2014-11-18 11:30:26 +01:00
class SumkDFTTools ( SumkDFT ) :
2015-03-12 00:01:12 +01:00
"""
Extends the SumkDFT class with some tools for analysing the data .
"""
2013-07-23 19:49:42 +02:00
2016-05-09 10:19:56 +02:00
def __init__ ( self , hdf_file , h_field = 0.0 , use_dft_blocks = False , dft_data = ' dft_input ' , symmcorr_data = ' dft_symmcorr_input ' ,
parproj_data = ' dft_parproj_input ' , symmpar_data = ' dft_symmpar_input ' , bands_data = ' dft_bands_input ' ,
transp_data = ' dft_transp_input ' , misc_data = ' dft_misc_input ' ) :
2015-03-12 00:01:12 +01:00
"""
Initialisation of the class . Parameters are exactly as for SumKDFT .
"""
2014-09-22 19:24:33 +02:00
2016-05-09 10:19:56 +02:00
SumkDFT . __init__ ( self , hdf_file = hdf_file , h_field = h_field , use_dft_blocks = use_dft_blocks ,
dft_data = dft_data , symmcorr_data = symmcorr_data , parproj_data = parproj_data ,
symmpar_data = symmpar_data , bands_data = bands_data , transp_data = transp_data ,
misc_data = misc_data )
2013-07-23 19:49:42 +02:00
2015-12-09 14:55:03 +01:00
# Uses .data of only GfReFreq objects.
2015-03-13 11:10:38 +01:00
def dos_wannier_basis ( self , mu = None , broadening = None , mesh = None , with_Sigma = True , with_dc = True , save_to_file = True ) :
2015-03-12 00:01:12 +01:00
"""
Calculates the density of states in the basis of the Wannier functions .
2016-05-09 10:19:56 +02:00
2015-03-12 00:01:12 +01:00
Parameters
- - - - - - - - - -
mu : double , optional
Chemical potential , overrides the one stored in the hdf5 archive .
broadening : double , optional
Lorentzian broadening of the spectra . If not given , standard value of lattice_gf is used .
mesh : real frequency MeshType , optional
Omega mesh for the real - frequency Green ' s function. Given as parameter to lattice_gf.
with_Sigma : boolean , optional
If True , the self energy is used for the calculation . If false , the DOS is calculated without self energy .
with_dc : boolean , optional
If True the double counting correction is used .
save_to_file : boolean , optional
If True , text files with the calculated data will be created .
2016-05-09 10:19:56 +02:00
2015-03-12 00:01:12 +01:00
Returns
- - - - - - -
DOS : Dict of numpy arrays
Contains the full density of states .
DOSproj : Dict of numpy arrays
DOS projected to atoms .
DOSproj_orb : Dict of numpy arrays
DOS projected to atoms and resolved into orbital contributions .
"""
2015-03-13 11:10:38 +01:00
if ( mesh is None ) and ( not with_Sigma ) :
2020-04-08 21:35:59 +02:00
raise ValueError ( " lattice_gf: Give the mesh=(om_min,om_max,n_points) for the lattice GfReFreq. " )
2015-03-12 00:01:12 +01:00
if mesh is None :
2015-03-13 11:10:38 +01:00
om_mesh = [ x . real for x in self . Sigma_imp_w [ 0 ] . mesh ]
om_min = om_mesh [ 0 ]
om_max = om_mesh [ - 1 ]
n_om = len ( om_mesh )
2016-05-09 10:19:56 +02:00
mesh = ( om_min , om_max , n_om )
else :
om_min , om_max , n_om = mesh
2015-04-14 15:44:07 +02:00
om_mesh = numpy . linspace ( om_min , om_max , n_om )
2016-05-09 10:19:56 +02:00
2015-03-13 11:10:38 +01:00
G_loc = [ ]
for icrsh in range ( self . n_corr_shells ) :
spn = self . spin_block_names [ self . corr_shells [ icrsh ] [ ' SO ' ] ]
2022-03-08 18:49:12 +01:00
glist = [ GfReFreq ( target_shape = ( block_dim , block_dim ) , window = ( om_min , om_max ) , n_points = n_om )
for block , block_dim in self . gf_struct_sumk [ icrsh ] ]
2016-05-09 10:19:56 +02:00
G_loc . append (
BlockGf ( name_list = spn , block_list = glist , make_copies = False ) )
for icrsh in range ( self . n_corr_shells ) :
G_loc [ icrsh ] . zero ( )
2013-07-23 19:49:42 +02:00
2016-05-09 10:19:56 +02:00
DOS = { sp : numpy . zeros ( [ n_om ] , numpy . float_ )
for sp in self . spin_block_names [ self . SO ] }
DOSproj = [ { } for ish in range ( self . n_inequiv_shells ) ]
DOSproj_orb = [ { } for ish in range ( self . n_inequiv_shells ) ]
2014-11-15 20:04:54 +01:00
for ish in range ( self . n_inequiv_shells ) :
2014-12-07 00:29:39 +01:00
for sp in self . spin_block_names [ self . corr_shells [ self . inequiv_to_corr [ ish ] ] [ ' SO ' ] ] :
2014-11-26 16:24:02 +01:00
dim = self . corr_shells [ self . inequiv_to_corr [ ish ] ] [ ' dim ' ]
2016-05-09 10:19:56 +02:00
DOSproj [ ish ] [ sp ] = numpy . zeros ( [ n_om ] , numpy . float_ )
DOSproj_orb [ ish ] [ sp ] = numpy . zeros (
2016-09-22 18:32:45 +02:00
[ n_om , dim , dim ] , numpy . complex_ )
2013-07-23 19:49:42 +02:00
2020-04-08 21:35:59 +02:00
ikarray = numpy . array ( list ( range ( self . n_k ) ) )
2015-03-13 11:10:38 +01:00
for ik in mpi . slice_array ( ikarray ) :
2013-07-23 19:49:42 +02:00
2016-05-09 10:19:56 +02:00
G_latt_w = self . lattice_gf (
ik = ik , mu = mu , iw_or_w = " w " , broadening = broadening , mesh = mesh , with_Sigma = with_Sigma , with_dc = with_dc )
2014-12-07 00:29:39 +01:00
G_latt_w * = self . bz_weights [ ik ]
2013-07-23 19:49:42 +02:00
2015-03-13 11:10:38 +01:00
# Non-projected DOS
2014-09-22 19:24:33 +02:00
for iom in range ( n_om ) :
2016-05-09 10:19:56 +02:00
for bname , gf in G_latt_w :
DOS [ bname ] [ iom ] - = gf . data [ iom , : , : ] . imag . trace ( ) / \
numpy . pi
2014-09-22 19:24:33 +02:00
2015-03-13 11:10:38 +01:00
# Projected DOS:
2014-11-15 20:04:54 +01:00
for icrsh in range ( self . n_corr_shells ) :
2015-03-13 11:10:38 +01:00
tmp = G_loc [ icrsh ] . copy ( )
2016-05-09 10:19:56 +02:00
for bname , gf in tmp :
tmp [ bname ] << self . downfold ( ik , icrsh , bname , G_latt_w [
bname ] , gf ) # downfolding G
2015-03-13 11:10:38 +01:00
G_loc [ icrsh ] + = tmp
2013-07-23 19:49:42 +02:00
2015-03-13 11:10:38 +01:00
# Collect data from mpi:
for bname in DOS :
2016-05-09 10:19:56 +02:00
DOS [ bname ] = mpi . all_reduce (
mpi . world , DOS [ bname ] , lambda x , y : x + y )
2015-04-14 14:45:32 +02:00
for icrsh in range ( self . n_corr_shells ) :
2016-05-09 10:19:56 +02:00
G_loc [ icrsh ] << mpi . all_reduce (
mpi . world , G_loc [ icrsh ] , lambda x , y : x + y )
2015-03-13 11:10:38 +01:00
mpi . barrier ( )
2013-07-23 19:49:42 +02:00
2015-03-13 11:10:38 +01:00
# Symmetrize and rotate to local coord. system if needed:
2016-05-09 10:19:56 +02:00
if self . symm_op != 0 :
G_loc = self . symmcorr . symmetrize ( G_loc )
2014-11-15 20:04:54 +01:00
if self . use_rotations :
for icrsh in range ( self . n_corr_shells ) :
2016-05-09 10:19:56 +02:00
for bname , gf in G_loc [ icrsh ] :
G_loc [ icrsh ] [ bname ] << self . rotloc (
icrsh , gf , direction = ' toLocal ' )
2014-09-22 19:24:33 +02:00
2015-03-13 11:10:38 +01:00
# G_loc can now also be used to look at orbitally-resolved quantities
2014-11-15 18:15:45 +01:00
for ish in range ( self . n_inequiv_shells ) :
2016-05-09 10:19:56 +02:00
for bname , gf in G_loc [ self . inequiv_to_corr [ ish ] ] : # loop over spins
2021-10-13 20:09:48 +02:00
DOSproj [ ish ] [ bname ] = - gf . data . imag . trace ( axis1 = 1 , axis2 = 2 ) / numpy . pi
2016-05-09 10:19:56 +02:00
DOSproj_orb [ ish ] [ bname ] [
2016-09-22 18:32:45 +02:00
: , : , : ] + = ( 1.0 j * ( gf - gf . conjugate ( ) . transpose ( ) ) / 2.0 / numpy . pi ) . data [ : , : , : ]
2013-07-23 19:49:42 +02:00
2015-03-13 11:10:38 +01:00
# Write to files
if save_to_file and mpi . is_master_node ( ) :
2014-12-07 00:29:39 +01:00
for sp in self . spin_block_names [ self . SO ] :
2016-05-09 10:19:56 +02:00
f = open ( ' DOS_wann_ %s .dat ' % sp , ' w ' )
for iom in range ( n_om ) :
f . write ( " %s %s \n " % ( om_mesh [ iom ] , DOS [ sp ] [ iom ] ) )
2014-09-22 19:24:33 +02:00
f . close ( )
2013-07-23 19:49:42 +02:00
2015-03-13 11:10:38 +01:00
# Partial
2014-11-15 18:15:45 +01:00
for ish in range ( self . n_inequiv_shells ) :
2016-05-09 10:19:56 +02:00
f = open ( ' DOS_wann_ %s _proj %s .dat ' % ( sp , ish ) , ' w ' )
for iom in range ( n_om ) :
f . write ( " %s %s \n " %
( om_mesh [ iom ] , DOSproj [ ish ] [ sp ] [ iom ] ) )
2014-09-22 19:24:33 +02:00
f . close ( )
2015-03-13 11:10:38 +01:00
# Orbitally-resolved
2014-11-26 16:24:02 +01:00
for i in range ( self . corr_shells [ self . inequiv_to_corr [ ish ] ] [ ' dim ' ] ) :
2016-05-09 10:19:56 +02:00
for j in range ( i , self . corr_shells [ self . inequiv_to_corr [ ish ] ] [ ' dim ' ] ) :
f = open ( ' DOS_wann_ ' + sp + ' _proj ' + str ( ish ) +
' _ ' + str ( i ) + ' _ ' + str ( j ) + ' .dat ' , ' w ' )
for iom in range ( n_om ) :
2016-09-22 18:32:45 +02:00
f . write ( " %s %s %s \n " % (
om_mesh [ iom ] , DOSproj_orb [ ish ] [ sp ] [ iom , i , j ] . real , DOSproj_orb [ ish ] [ sp ] [ iom , i , j ] . imag ) )
2013-07-23 19:49:42 +02:00
f . close ( )
2015-03-13 11:10:38 +01:00
return DOS , DOSproj , DOSproj_orb
2020-10-09 14:35:28 +02:00
2019-11-21 21:34:37 +01:00
def dos_wannier_basis_all ( self , mu = None , broadening = None , mesh = None , with_Sigma = True , with_dc = True , save_to_file = True ) :
"""
Calculates the density of states in the basis of the Wannier functions .
Parameters
- - - - - - - - - -
mu : double , optional
Chemical potential , overrides the one stored in the hdf5 archive .
broadening : double , optional
Lorentzian broadening of the spectra . If not given , standard value of lattice_gf is used .
mesh : real frequency MeshType , optional
Omega mesh for the real - frequency Green ' s function. Given as parameter to lattice_gf.
with_Sigma : boolean , optional
If True , the self energy is used for the calculation . If false , the DOS is calculated without self energy .
with_dc : boolean , optional
If True the double counting correction is used .
save_to_file : boolean , optional
If True , text files with the calculated data will be created .
Returns
- - - - - - -
DOS : Dict of numpy arrays
Contains the full density of states .
DOSproj : Dict of numpy arrays
DOS projected to atoms .
DOSproj_orb : Dict of numpy arrays
DOS projected to atoms and resolved into orbital contributions .
"""
if ( mesh is None ) and ( not with_Sigma ) :
2020-04-08 21:35:59 +02:00
raise ValueError ( " lattice_gf: Give the mesh=(om_min,om_max,n_points) for the lattice GfReFreq. " )
2019-11-21 21:34:37 +01:00
if mesh is None :
om_mesh = [ x . real for x in self . Sigma_imp_w [ 0 ] . mesh ]
om_min = om_mesh [ 0 ]
om_max = om_mesh [ - 1 ]
n_om = len ( om_mesh )
mesh = ( om_min , om_max , n_om )
else :
om_min , om_max , n_om = mesh
om_mesh = numpy . linspace ( om_min , om_max , n_om )
spn = self . spin_block_names [ self . SO ]
2020-04-08 21:35:59 +02:00
gf_struct_parproj = [ [ ( sp , list ( range ( self . shells [ ish ] [ ' dim ' ] ) ) ) for sp in spn ]
2019-11-21 21:34:37 +01:00
for ish in range ( self . n_shells ) ]
n_local_orbs = self . proj_mat_csc . shape [ 2 ]
2020-04-08 21:35:59 +02:00
gf_struct_parproj_all = [ [ ( sp , list ( range ( n_local_orbs ) ) ) for sp in spn ] ]
2020-10-09 14:35:28 +02:00
2022-03-08 18:49:12 +01:00
glist_all = [ GfReFreq ( target_shape = ( block_dim , block_dim ) , window = ( om_min , om_max ) , n_points = n_om )
for block , block_dim in gf_struct_parproj_all [ 0 ] ]
2019-11-21 21:34:37 +01:00
G_loc_all = BlockGf ( name_list = spn , block_list = glist_all , make_copies = False )
DOS = { sp : numpy . zeros ( [ n_om ] , numpy . float_ )
for sp in self . spin_block_names [ self . SO ] }
DOSproj = { }
DOSproj_orb = { }
for sp in self . spin_block_names [ self . SO ] :
dim = n_local_orbs
DOSproj [ sp ] = numpy . zeros ( [ n_om ] , numpy . float_ )
DOSproj_orb [ sp ] = numpy . zeros (
[ n_om , dim , dim ] , numpy . complex_ )
2020-04-08 21:35:59 +02:00
ikarray = numpy . array ( list ( range ( self . n_k ) ) )
2019-11-21 21:34:37 +01:00
for ik in mpi . slice_array ( ikarray ) :
G_latt_w = self . lattice_gf (
ik = ik , mu = mu , iw_or_w = " w " , broadening = broadening , mesh = mesh , with_Sigma = with_Sigma , with_dc = with_dc )
G_latt_w * = self . bz_weights [ ik ]
# Non-projected DOS
for iom in range ( n_om ) :
for bname , gf in G_latt_w :
DOS [ bname ] [ iom ] - = gf . data [ iom , : , : ] . imag . trace ( ) / \
numpy . pi
# Projected DOS:
for bname , gf in G_latt_w :
G_loc_all [ bname ] << self . downfold ( ik , 0 , bname , gf , G_loc_all [ bname ] , shells = ' csc ' )
# Collect data from mpi:
for bname in DOS :
DOS [ bname ] = mpi . all_reduce (
mpi . world , DOS [ bname ] , lambda x , y : x + y )
G_loc_all [ bname ] << mpi . all_reduce (
mpi . world , G_loc_all [ bname ] , lambda x , y : x + y )
mpi . barrier ( )
# Symmetrize and rotate to local coord. system if needed:
#if self.symm_op != 0:
# G_loc_all = self.symmcorr.symmetrize(G_loc_all)
# G_loc can now also be used to look at orbitally-resolved quantities
for bname , gf in G_loc_all : # loop over spins
2021-10-13 20:09:48 +02:00
DOSproj [ bname ] = - gf . data . imag . trace ( axis1 = 1 , axis2 = 2 ) / numpy . pi
2019-11-21 21:34:37 +01:00
DOSproj_orb [ bname ] [ : , : , : ] + = ( 1.0 j * ( gf - gf . conjugate ( ) . transpose ( ) ) / 2.0 / numpy . pi ) . data [ : , : , : ]
# Write to files
if save_to_file and mpi . is_master_node ( ) :
for sp in self . spin_block_names [ self . SO ] :
f = open ( ' DOS_wann_ %s .dat ' % sp , ' w ' )
for iom in range ( n_om ) :
f . write ( " %s %s \n " % ( om_mesh [ iom ] , DOS [ sp ] [ iom ] ) )
f . close ( )
# Partial
f = open ( ' DOS_wann_all_ %s _proj.dat ' % ( sp ) , ' w ' )
for iom in range ( n_om ) :
f . write ( " %s %s \n " %
( om_mesh [ iom ] , DOSproj [ sp ] [ iom ] ) )
f . close ( )
# Orbitally-resolved
for i in range ( n_local_orbs ) :
for j in range ( i , n_local_orbs ) :
f = open ( ' DOS_wann_all ' + sp + ' _proj_ ' + str ( i ) + ' _ ' + str ( j ) + ' .dat ' , ' w ' )
for iom in range ( n_om ) :
f . write ( " %s %s %s \n " % (
om_mesh [ iom ] , DOSproj_orb [ sp ] [ iom , i , j ] . real , DOSproj_orb [ sp ] [ iom , i , j ] . imag ) )
f . close ( )
return DOS , DOSproj , DOSproj_orb
2014-09-22 19:24:33 +02:00
2015-12-09 14:55:03 +01:00
# Uses .data of only GfReFreq objects.
2015-03-13 11:10:38 +01:00
def dos_parproj_basis ( self , mu = None , broadening = None , mesh = None , with_Sigma = True , with_dc = True , save_to_file = True ) :
2015-03-12 00:01:12 +01:00
"""
Calculates the orbitally - resolved DOS .
Different to dos_Wannier_basis is that here we calculate projections also to non - Wannier projectors , in the
flavour of Wien2k QTL calculatuions .
2016-05-09 10:19:56 +02:00
2015-03-12 00:01:12 +01:00
Parameters
- - - - - - - - - -
mu : double , optional
Chemical potential , overrides the one stored in the hdf5 archive .
broadening : double , optional
Lorentzian broadening of the spectra . If not given , standard value of lattice_gf is used .
mesh : real frequency MeshType , optional
Omega mesh for the real - frequency Green ' s function. Given as parameter to lattice_gf.
with_Sigma : boolean , optional
If True , the self energy is used for the calculation . If false , the DOS is calculated without self energy .
with_dc : boolean , optional
If True the double counting correction is used .
save_to_file : boolean , optional
If True , text files with the calculated data will be created .
2016-05-09 10:19:56 +02:00
2015-03-12 00:01:12 +01:00
Returns
- - - - - - -
DOS : Dict of numpy arrays
Contains the full density of states .
DOSproj : Dict of numpy arrays
DOS projected to atoms .
DOSproj_orb : Dict of numpy arrays
DOS projected to atoms and resolved into orbital contributions .
"""
2016-05-09 10:19:56 +02:00
things_to_read = [ ' n_parproj ' , ' proj_mat_all ' ,
' rot_mat_all ' , ' rot_mat_all_time_inv ' ]
value_read = self . read_input_from_hdf (
subgrp = self . parproj_data , things_to_read = things_to_read )
if not value_read :
return value_read
if self . symm_op :
self . symmpar = Symmetry ( self . hdf_file , subgroup = self . symmpar_data )
2013-07-23 19:49:42 +02:00
2015-03-13 11:10:38 +01:00
if ( mesh is None ) and ( not with_Sigma ) :
2020-04-08 21:35:59 +02:00
raise ValueError ( " lattice_gf: Give the mesh=(om_min,om_max,n_points) for the lattice GfReFreq. " )
2016-05-09 10:19:56 +02:00
if mesh is None :
2015-03-13 11:10:38 +01:00
om_mesh = [ x . real for x in self . Sigma_imp_w [ 0 ] . mesh ]
om_min = om_mesh [ 0 ]
om_max = om_mesh [ - 1 ]
n_om = len ( om_mesh )
2016-05-09 10:19:56 +02:00
mesh = ( om_min , om_max , n_om )
else :
om_min , om_max , n_om = mesh
2015-04-14 15:44:07 +02:00
om_mesh = numpy . linspace ( om_min , om_max , n_om )
2016-05-09 10:19:56 +02:00
2015-03-13 11:10:38 +01:00
G_loc = [ ]
spn = self . spin_block_names [ self . SO ]
2022-03-08 18:49:12 +01:00
gf_struct_parproj = [ [ ( sp , self . shells [ ish ] [ ' dim ' ] ) for sp in spn ]
2016-05-09 10:19:56 +02:00
for ish in range ( self . n_shells ) ]
for ish in range ( self . n_shells ) :
2022-03-08 18:49:12 +01:00
glist = [ GfReFreq ( target_shape = ( block_dim , block_dim ) , window = ( om_min , om_max ) , n_points = n_om )
for block , block_dim in gf_struct_parproj [ ish ] ]
2016-05-09 10:19:56 +02:00
G_loc . append (
BlockGf ( name_list = spn , block_list = glist , make_copies = False ) )
for ish in range ( self . n_shells ) :
G_loc [ ish ] . zero ( )
DOS = { sp : numpy . zeros ( [ n_om ] , numpy . float_ )
for sp in self . spin_block_names [ self . SO ] }
DOSproj = [ { } for ish in range ( self . n_shells ) ]
DOSproj_orb = [ { } for ish in range ( self . n_shells ) ]
2013-07-23 19:49:42 +02:00
for ish in range ( self . n_shells ) :
2014-12-07 00:29:39 +01:00
for sp in self . spin_block_names [ self . SO ] :
2014-11-26 16:24:02 +01:00
dim = self . shells [ ish ] [ ' dim ' ]
2016-05-09 10:19:56 +02:00
DOSproj [ ish ] [ sp ] = numpy . zeros ( [ n_om ] , numpy . float_ )
DOSproj_orb [ ish ] [ sp ] = numpy . zeros (
2016-09-22 18:32:45 +02:00
[ n_om , dim , dim ] , numpy . complex_ )
2013-07-23 19:49:42 +02:00
2020-04-08 21:35:59 +02:00
ikarray = numpy . array ( list ( range ( self . n_k ) ) )
2013-07-23 19:49:42 +02:00
for ik in mpi . slice_array ( ikarray ) :
2016-05-09 10:19:56 +02:00
G_latt_w = self . lattice_gf (
ik = ik , mu = mu , iw_or_w = " w " , broadening = broadening , mesh = mesh , with_Sigma = with_Sigma , with_dc = with_dc )
2014-12-07 00:29:39 +01:00
G_latt_w * = self . bz_weights [ ik ]
2013-07-23 19:49:42 +02:00
2015-03-13 11:10:38 +01:00
# Non-projected DOS
2021-10-13 20:09:48 +02:00
for bname , gf in G_latt_w :
DOS [ bname ] - = gf . data . imag . trace ( axis1 = 1 , axis2 = 2 ) / numpy . pi
2014-09-22 19:24:33 +02:00
2015-03-13 11:10:38 +01:00
# Projected DOS:
2014-11-15 20:04:54 +01:00
for ish in range ( self . n_shells ) :
2015-03-13 11:10:38 +01:00
tmp = G_loc [ ish ] . copy ( )
2014-11-15 20:04:54 +01:00
for ir in range ( self . n_parproj [ ish ] ) :
2016-05-09 10:19:56 +02:00
for bname , gf in tmp :
tmp [ bname ] << self . downfold ( ik , ish , bname , G_latt_w [
bname ] , gf , shells = ' all ' , ir = ir )
2015-03-13 11:10:38 +01:00
G_loc [ ish ] + = tmp
2014-09-22 19:24:33 +02:00
2015-03-13 11:10:38 +01:00
# Collect data from mpi:
2014-11-14 09:43:28 +01:00
for bname in DOS :
2016-05-09 10:19:56 +02:00
DOS [ bname ] = mpi . all_reduce (
mpi . world , DOS [ bname ] , lambda x , y : x + y )
2014-11-15 20:04:54 +01:00
for ish in range ( self . n_shells ) :
2016-05-09 10:19:56 +02:00
G_loc [ ish ] << mpi . all_reduce (
mpi . world , G_loc [ ish ] , lambda x , y : x + y )
2014-09-22 19:24:33 +02:00
mpi . barrier ( )
2015-03-13 11:10:38 +01:00
# Symmetrize and rotate to local coord. system if needed:
2016-05-09 10:19:56 +02:00
if self . symm_op != 0 :
G_loc = self . symmpar . symmetrize ( G_loc )
2014-11-15 20:04:54 +01:00
if self . use_rotations :
for ish in range ( self . n_shells ) :
2016-05-09 10:19:56 +02:00
for bname , gf in G_loc [ ish ] :
G_loc [ ish ] [ bname ] << self . rotloc (
ish , gf , direction = ' toLocal ' , shells = ' all ' )
2014-09-22 19:24:33 +02:00
2015-03-13 11:10:38 +01:00
# G_loc can now also be used to look at orbitally-resolved quantities
2013-07-23 19:49:42 +02:00
for ish in range ( self . n_shells ) :
2016-05-09 10:19:56 +02:00
for bname , gf in G_loc [ ish ] :
2021-10-13 20:09:48 +02:00
DOSproj [ ish ] [ bname ] = - gf . data . imag . trace ( axis1 = 1 , axis2 = 2 ) / numpy . pi
2016-05-09 10:19:56 +02:00
DOSproj_orb [ ish ] [ bname ] [
2016-09-22 18:32:45 +02:00
: , : , : ] + = ( 1.0 j * ( gf - gf . conjugate ( ) . transpose ( ) ) / 2.0 / numpy . pi ) . data [ : , : , : ]
2014-01-21 16:47:45 +01:00
2015-03-13 11:10:38 +01:00
# Write to files
if save_to_file and mpi . is_master_node ( ) :
2014-12-07 00:29:39 +01:00
for sp in self . spin_block_names [ self . SO ] :
2016-05-09 10:19:56 +02:00
f = open ( ' DOS_parproj_ %s .dat ' % sp , ' w ' )
for iom in range ( n_om ) :
f . write ( " %s %s \n " % ( om_mesh [ iom ] , DOS [ sp ] [ iom ] ) )
2014-09-22 19:24:33 +02:00
f . close ( )
2013-07-23 19:49:42 +02:00
2015-03-13 11:10:38 +01:00
# Partial
2013-07-23 19:49:42 +02:00
for ish in range ( self . n_shells ) :
2016-05-09 10:19:56 +02:00
f = open ( ' DOS_parproj_ %s _proj %s .dat ' % ( sp , ish ) , ' w ' )
for iom in range ( n_om ) :
f . write ( " %s %s \n " %
( om_mesh [ iom ] , DOSproj [ ish ] [ sp ] [ iom ] ) )
2013-07-23 19:49:42 +02:00
f . close ( )
2014-09-22 19:24:33 +02:00
2015-03-13 11:10:38 +01:00
# Orbitally-resolved
2014-11-26 16:24:02 +01:00
for i in range ( self . shells [ ish ] [ ' dim ' ] ) :
2016-05-09 10:19:56 +02:00
for j in range ( i , self . shells [ ish ] [ ' dim ' ] ) :
f = open ( ' DOS_parproj_ ' + sp + ' _proj ' + str ( ish ) +
' _ ' + str ( i ) + ' _ ' + str ( j ) + ' .dat ' , ' w ' )
for iom in range ( n_om ) :
2016-09-22 18:32:45 +02:00
f . write ( " %s %s %s \n " % (
om_mesh [ iom ] , DOSproj_orb [ ish ] [ sp ] [ iom , i , j ] . real , DOSproj_orb [ ish ] [ sp ] [ iom , i , j ] . imag ) )
2013-07-23 19:49:42 +02:00
f . close ( )
2015-03-13 11:10:38 +01:00
return DOS , DOSproj , DOSproj_orb
2013-07-23 19:49:42 +02:00
2020-10-09 14:35:28 +02:00
# Elk total and partial dos calculations
# Uses .data of only GfReFreq objects.
def elk_dos ( self , mu = None , broadening = None , mesh = None , with_Sigma = True , with_dc = True , save_to_file = True , pdos = False , nk = None ) :
"""
This calculates the total DOS and the partial DOS ( orbital - DOS ) from the band characters calculated in Elk .
Parameters
- - - - - - - - - -
mu : double , optional
Chemical potential , overrides the one stored in the hdf5 archive .
broadening : double , optional
Lorentzian broadening of the spectra . If not given , standard value of lattice_gf is used .
mesh : real frequency MeshType , optional
Omega mesh for the real - frequency Green ' s function. Given as parameter to lattice_gf.
with_Sigma : boolean , optional
If True , the self energy is used for the calculation . If false , the DOS is calculated without self energy .
with_dc : boolean , optional
If True the double counting correction is used .
save_to_file : boolean , optional
If True , text files with the calculated data will be created .
pdos : allows the partial density of states to be calculated
nk : diagonal of the occupation function ( from the Matsubara Green ' s function)
in the band basis ( has form nk [ spn ] [ n_k ] [ n_orbital ] )
Returns
- - - - - - -
DOS : Dict of numpy arrays
Contains the full density of states .
pDOS : Dict of numpy arrays
partial ( orbital resolved ) DOS for each atom .
"""
if ( pdos ) :
things_to_read = [ ' maxlm ' , ' bc ' ]
value_read = self . read_input_from_hdf (
subgrp = self . bc_data , things_to_read = things_to_read )
if not value_read :
return value_read
things_to_read = [ ' n_atoms ' ]
value_read = self . read_input_from_hdf (
subgrp = self . symmcorr_data , things_to_read = things_to_read )
if not value_read :
return value_read
if ( mesh is None ) and ( not with_Sigma ) :
raise ValueError ( " lattice_gf: Give the mesh=(om_min,om_max,n_points) for the lattice GfReFreq. " )
if mesh is None :
om_mesh = [ x . real for x in self . Sigma_imp_w [ 0 ] . mesh ]
om_min = om_mesh [ 0 ]
om_max = om_mesh [ - 1 ]
n_om = len ( om_mesh )
mesh = ( om_min , om_max , n_om )
else :
om_min , om_max , n_om = mesh
om_mesh = numpy . linspace ( om_min , om_max , n_om )
if mu is None :
mu = self . chemical_potential
spn = self . spin_block_names [ self . SO ]
DOS = { sp : numpy . zeros ( [ n_om ] , numpy . float_ )
for sp in self . spin_block_names [ self . SO ] }
#set up temporary arrays for pdos calculations
if ( pdos ) :
pDOS = { sp : numpy . zeros ( [ self . n_atoms , self . maxlm , n_om ] , numpy . float_ )
for sp in self . spin_block_names [ self . SO ] }
ntoi = self . spin_names_to_ind [ self . SO ]
else :
pDOS = [ ]
ikarray = numpy . array ( range ( self . n_k ) )
for ik in mpi . slice_array ( ikarray ) :
G_latt_w = self . lattice_gf (
ik = ik , mu = mu , iw_or_w = " w " , broadening = broadening , mesh = mesh , with_Sigma = with_Sigma , with_dc = with_dc )
G_latt_w * = self . bz_weights [ ik ]
if ( nk != None ) :
for iom in range ( n_om ) :
for bname , gf in G_latt_w :
numpy . fill_diagonal ( G_latt_w [ bname ] . data [ iom , : , : ] . imag , nk [ bname ] [ ik ] [ : ] * G_latt_w [ bname ] . data [ iom , : , : ] . imag . diagonal ( ) )
# Non-projected DOS
for iom in range ( n_om ) :
for bname , gf in G_latt_w :
DOS [ bname ] [ iom ] - = gf . data [ iom , : , : ] . imag . trace ( ) / \
numpy . pi
# Partial DOS
if ( pdos ) :
for bname , gf in G_latt_w :
isp = ntoi [ bname ]
nst = self . n_orbitals [ ik , isp ]
tmp = numpy . zeros ( [ nst ] )
for iom in range ( n_om ) :
#get diagonal spectral function
tmp [ : ] = - gf . data [ iom , : , : ] . imag . diagonal ( ) / numpy . pi
#calculate the pDOS of all atoms
for iatom in range ( self . n_atoms ) :
bcar = self . bc [ : , isp , iatom , 0 : nst , ik ]
pDOS [ bname ] [ iatom , : , iom ] + = numpy . matmul ( bcar , tmp )
del tmp
mpi . barrier ( )
# Collect data from mpi:
for bname in DOS :
DOS [ bname ] = mpi . all_reduce (
mpi . world , DOS [ bname ] , lambda x , y : x + y )
if ( pdos ) :
for bname in pDOS :
for iatom in range ( self . n_atoms ) :
for lm in range ( self . maxlm ) :
pDOS [ bname ] [ iatom , lm , : ] = mpi . all_reduce (
mpi . world , pDOS [ bname ] [ iatom , lm , : ] , lambda x , y : x + y )
# Write to files
if save_to_file and mpi . is_master_node ( ) :
for sp in self . spin_block_names [ self . SO ] :
f = open ( ' TDOS_ %s .dat ' % sp , ' w ' )
for iom in range ( n_om ) :
f . write ( " %s %s \n " % ( om_mesh [ iom ] , DOS [ sp ] [ iom ] ) )
f . close ( )
# Partial
if ( pdos ) :
for iatom in range ( self . n_atoms ) :
f = open ( ' pDOS_ %s _atom_ %s .dat ' % ( sp , iatom ) , ' w ' )
for lm in range ( self . maxlm ) :
for iom in range ( n_om ) :
f . write ( " %s %s \n " %
( om_mesh [ iom ] , pDOS [ sp ] [ iatom , lm , iom ] ) )
f . write ( " \n " )
f . close ( )
return DOS , pDOS
# vector manipulation used in Elk for symmetry operations - This is already in elktools, this should
# put somewhere for general use by the converter and this script.
def v3frac ( self , v , eps ) :
#This finds the fractional part of 3-vector v components. This uses the
#same method as in Elk (version 6.2.8) r3fac subroutine.
v [ 0 ] = v [ 0 ] - numpy . floor ( v [ 0 ] )
if ( v [ 0 ] < 0 ) : v [ 0 ] + = 1
if ( ( 1 - v [ 0 ] ) < eps ) : v [ 0 ] = 0
if ( v [ 0 ] < eps ) : v [ 0 ] = 0
v [ 1 ] = v [ 1 ] - numpy . floor ( v [ 1 ] )
if ( v [ 1 ] < 0 ) : v [ 1 ] + = 1
if ( ( 1 - v [ 1 ] ) < eps ) : v [ 1 ] = 0
if ( v [ 1 ] < eps ) : v [ 1 ] = 0
v [ 2 ] = v [ 2 ] - numpy . floor ( v [ 2 ] )
if ( v [ 2 ] < 0 ) : v [ 2 ] + = 1
if ( ( 1 - v [ 2 ] ) < eps ) : v [ 2 ] = 0
if ( v [ 2 ] < eps ) : v [ 2 ] = 0
return v
# Calculate the spectral function at an energy contour omega - i.e. Fermi surface plots
# Uses .data of only GfReFreq objects.
def fs_plot ( self , mu = None , broadening = None , mesh = None , FS = True , plane = True , sym = True , orthvec = None , with_Sigma = True , with_dc = True , save_to_file = True ) :
"""
Calculates the correlated spectral function at specific frequencies . The default output is the
correlated spectral function at zero frequency - this relates the the Fermi surface .
Parameters
- - - - - - - - - -
mu : double , optional
Chemical potential , overrides the one stored in the hdf5 archive .
broadening : double , optional
Lorentzian broadening of the spectra . If not given , standard value of lattice_gf is used .
mesh : real frequency MeshType , optional
Omega mesh for the real - frequency Green ' s function. Given as parameter to lattice_gf.
plane : boolean , optional
True assumes that the k - mesh of eigenvalues calculated was a plane .
sym : boolean , optional
Uses the symmetry operations to fold out the correlated spectral function in the BZ
FS : boolean
Flag for calculating the spectral function at the Fermi level ( omega - > 0 )
orthvec : double ( 3 ) element numpy array , optional
This is used to determine the vectors used in the plane calculations after folding out the IBZ .
This needs to correspond to the same orthonormal LATTICE inputs vectors used in the DFT code
which generated the plane of energy eigenvalues .
The default is orthvec = [ 0 , 0 , 1 ] .
with_Sigma : boolean , optional
If True , the self energy is used for the calculation . If false , the DOS is calculated without self energy .
with_dc : boolean , optional
If True the double counting correction is used .
save_to_file : boolean , optional
If True , text files with the calculated data will be created .
Returns
- - - - - - -
nk : int
The number of k - points in the plane .
vkc : Dict of numpy arrays [ shape - ( nk , 3 ) ]
Contains the cartesian vectors which the spectral function has been evaluated on .
Akw : Dict of numpy arrays [ shape - ( spn ) ( self . n_k , n_om ) ]
Correlated spectral function - the data as it is written to the files .
iknr : int array
An array of k - point indices which mape the Akw over the unfolded BZ .
"""
#default vector tolerance used in Elk. This should not be alter.
epslat = 1E-6
#read in the energy contour energies and projectors
things_to_read = [ ' n_k ' , ' bmat ' , ' symlat ' , ' n_symm ' , ' vkl ' ,
' n_orbitals ' , ' proj_mat ' , ' hopping ' ]
value_read = self . read_input_from_hdf (
subgrp = self . fs_data , things_to_read = things_to_read )
if not value_read :
return value_read
if with_Sigma is True :
om_mesh = [ x . real for x in self . Sigma_imp_w [ 0 ] . mesh ]
#for Fermi Surface calculations
if FS :
jw = [ i for i in range ( len ( om_mesh ) ) if om_mesh [ i ] == 0.0 ]
if len ( jw ) == 0 :
mpi . report ( ' Sigma_imp_w mesh does not include zero frequency value ' )
mpi . report ( ' Using the next absolute lowest frequency value. ' )
abs_om_mesh = [ abs ( i ) for i in om_mesh ]
jw = [ i for i in range ( len ( abs_om_mesh ) ) if abs_om_mesh [ i ] == numpy . min ( abs_om_mesh [ : ] ) ]
mpi . report ( jw )
#for many energy contour calculations
else :
if mesh :
om_mn = mesh [ 0 ]
om_mx = mesh [ 1 ]
jw = [ i for i in range ( len ( om_mesh ) ) if ( ( om_mesh [ i ] < = om_mx ) and ( om_mesh [ i ] > = om_mn ) ) ]
om_min = om_mesh [ 0 ]
om_max = om_mesh [ - 1 ]
n_om = len ( om_mesh )
mesh = ( om_min , om_max , n_om )
if broadening is None :
broadening = 0.0
elif mesh is None :
#default is to set "mesh" to be just for the Fermi surface - omega=0.0
om_min = 0.000
om_max = 0.001
n_om = 3
mesh = ( om_min , om_max , n_om )
om_mesh = numpy . linspace ( om_min , om_max , n_om )
if broadening is None :
broadening = 0.01
FS = True
jw = [ i for i in range ( len ( om_mesh ) ) if ( ( om_mesh [ i ] < = om_max ) and ( om_mesh [ i ] > = om_min ) ) ]
else :
#a range of frequencies can be used if desired
om_min , om_max , n_om = mesh
om_mesh = numpy . linspace ( om_min , om_max , n_om )
FS = False
jw = [ i for i in range ( len ( om_mesh ) ) if ( ( om_mesh [ i ] < = om_max ) and ( om_mesh [ i ] > = om_min ) ) ]
if mu is None :
mu = self . chemical_potential
#orthogonal vector used for plane calculations
if orthvec is None :
#set to [0,0,1] by default
orthvec = numpy . zeros ( 3 , dtype = numpy . float_ )
orthvec [ 2 ] = 1.0
elif orthvec . size != 3 :
assert 0 , " The input numpy orthvec is not the required size of 3! "
spn = self . spin_block_names [ self . SO ]
Akw = { sp : numpy . zeros ( [ self . n_k , n_om ] , numpy . float_ )
for sp in spn }
#Cartesian lattice coordinates array
vkc = numpy . zeros ( [ self . n_k , 3 ] , numpy . float_ )
ikarray = numpy . array ( range ( self . n_k ) )
for ik in mpi . slice_array ( ikarray ) :
#calculate the catesian coordinates of IBZ
vkc [ ik , : ] = numpy . matmul ( self . bmat , self . vkl [ ik , : ] )
G_latt_w = self . lattice_gf (
ik = ik , mu = mu , iw_or_w = " w " , broadening = broadening , mesh = mesh , with_Sigma = with_Sigma , with_dc = with_dc )
for iom in range ( n_om ) :
for bname , gf in G_latt_w :
Akw [ bname ] [ ik , iom ] + = gf . data [ iom , : , : ] . imag . trace ( ) / ( - 1.0 * numpy . pi )
mpi . barrier ( )
# Collect data from mpi:
for sp in spn :
Akw [ sp ] = mpi . all_reduce ( mpi . world , Akw [ sp ] , lambda x , y : x + y )
mpi . barrier ( )
#fold out the IBZ k-points using the lattice vectors and symmetries
#reducible number of k-points (which will alter after out folding)
nk = self . n_k
iknr = numpy . arange ( self . n_k )
if sym :
vkltmp = self . vkl
v = numpy . zeros ( 3 , numpy . float_ )
v_orth = numpy . zeros ( 3 , numpy . float_ )
for isym in range ( self . n_symm ) :
#calculate the orthonormal vector after symmetry operation. This is used to
#check if the orthonormal vector after the symmetry operation is parallel
#or anit-parallel to the original vector.
if plane :
vo = numpy . matmul ( self . symlat [ isym ] [ : , : ] , orthvec [ : ] . transpose ( ) )
#check if the vectors are parallel or anti-parallel respectively
t1 = numpy . array_equal ( vo , orthvec )
if ( not t1 ) :
#exit this symmetry operation
continue
for ik in range ( self . n_k ) :
#find point in BZ by symmetry operation
v [ : ] = numpy . matmul ( self . symlat [ isym ] [ : , : ] , self . vkl [ ik , : ] )
#shift back in to range [0,1) - Elk specific
v [ : ] = self . v3frac ( v , epslat )
#add vector to list if not present and add the equivalent Akw value
#convert to cartesian
v [ : ] = numpy . matmul ( self . bmat , v [ : ] )
#alter temporary arrays
nk + = 1
vkc = numpy . vstack ( ( vkc , v ) )
iknr = numpy . append ( iknr , ik )
vkltmp = numpy . vstack ( ( vkltmp , v ) )
#remove duplicates
[ vkc , ind ] = numpy . unique ( vkc , return_index = True , axis = 0 )
iknr = iknr [ ind ]
nk = vkc . shape [ 0 ]
#sort the indices for output in decending order
iksrt = numpy . lexsort ( ( [ vkc [ : , i ] for i in range ( 0 , vkc . shape [ 1 ] , 1 ) ] ) )
#rearrange the vkc and iknr arrays
vkc = vkc [ iksrt ]
iknr = iknr [ iksrt ]
# Write to files
if save_to_file and mpi . is_master_node ( ) :
for sp in self . spin_block_names [ self . SO ] :
if FS :
#Output default FS spectral function
f = open ( ' Akw_FS_ %s .dat ' % sp , ' w ' )
for ik in range ( nk ) :
jk = iknr [ ik ]
f . write ( " %s %s %s %s \n " % ( vkc [ ik , 0 ] , vkc [ ik , 1 ] , vkc [ ik , 2 ] , Akw [ bname ] [ jk , jw [ 0 ] ] ) )
f . close ( )
else :
#Output spectral function from multiple frequencies
for iom in jw :
#output the energy contours in multiple files with mesh index.
f = open ( ' Akw_ %s _omega_ %s .dat ' % ( sp , iom ) , ' w ' )
for ik in range ( nk ) :
jk = iknr [ ik ]
f . write ( " %s %s %s %s %s \n " % ( vkc [ ik , 0 ] , vkc [ ik , 1 ] , vkc [ ik , 2 ] , om_mesh [ iom ] , Akw [ bname ] [ jk , iom ] ) )
f . close ( )
return nk , vkc , Akw , iknr
2015-12-09 14:55:03 +01:00
# Uses .data of only GfReFreq objects.
2016-05-09 10:19:56 +02:00
def spaghettis ( self , broadening = None , plot_shift = 0.0 , plot_range = None , ishell = None , mu = None , save_to_file = ' Akw_ ' ) :
2015-03-12 00:01:12 +01:00
"""
Calculates the correlated band structure using a real - frequency self energy .
2016-05-09 10:19:56 +02:00
2015-03-12 00:01:12 +01:00
Parameters
- - - - - - - - - -
mu : double , optional
Chemical potential , overrides the one stored in the hdf5 archive .
broadening : double , optional
Lorentzian broadening of the spectra . If not given , standard value of lattice_gf is used .
plot_shift : double , optional
Offset for each A ( k , w ) for stacked plotting of spectra .
plot_range : list of double , optional
Sets the energy window for plotting to ( plot_range [ 0 ] , plot_range [ 1 ] ) . If not provided , the energy mesh of the self energy is used .
ishell : integer , optional
Contains the index of the shell on which the spectral function is projected . If ishell = None , the total spectrum without projection is calculated .
save_to_file : string , optional
Filename where the spectra are stored .
2016-05-09 10:19:56 +02:00
2015-03-12 00:01:12 +01:00
Returns
- - - - - - -
Akw : Dict of numpy arrays
Data as it is also written to the files .
"""
2016-05-09 10:19:56 +02:00
assert hasattr (
self , " Sigma_imp_w " ) , " spaghettis: Set Sigma_imp_w first. "
things_to_read = [ ' n_k ' , ' n_orbitals ' , ' proj_mat ' ,
' hopping ' , ' n_parproj ' , ' proj_mat_all ' ]
value_read = self . read_input_from_hdf (
subgrp = self . bands_data , things_to_read = things_to_read )
if not value_read :
return value_read
2022-10-25 15:27:36 +02:00
if ishell is not None :
2016-09-08 12:02:32 +02:00
things_to_read = [ ' rot_mat_all ' , ' rot_mat_all_time_inv ' ]
value_read = self . read_input_from_hdf (
subgrp = self . parproj_data , things_to_read = things_to_read )
if not value_read :
return value_read
2016-05-09 10:19:56 +02:00
if mu is None :
mu = self . chemical_potential
2014-11-17 10:48:04 +01:00
spn = self . spin_block_names [ self . SO ]
2021-10-13 23:37:33 +02:00
mesh = numpy . array ( [ x . real for x in self . Sigma_imp_w [ 0 ] . mesh ] )
2013-07-23 19:49:42 +02:00
if plot_range is None :
2015-03-13 11:10:38 +01:00
om_minplot = mesh [ 0 ] - 0.001
2021-10-13 23:37:33 +02:00
om_maxplot = mesh [ - 1 ] + 0.001
2013-07-23 19:49:42 +02:00
else :
om_minplot = plot_range [ 0 ]
om_maxplot = plot_range [ 1 ]
2021-10-13 23:37:33 +02:00
n_om = len ( mesh [ ( mesh > om_minplot ) & ( mesh < om_maxplot ) ] )
2013-07-23 19:49:42 +02:00
2014-11-15 20:04:54 +01:00
if ishell is None :
2016-05-09 10:19:56 +02:00
Akw = { sp : numpy . zeros ( [ self . n_k , n_om ] , numpy . float_ )
for sp in spn }
2013-07-23 19:49:42 +02:00
else :
2016-05-09 10:19:56 +02:00
Akw = { sp : numpy . zeros (
[ self . shells [ ishell ] [ ' dim ' ] , self . n_k , n_om ] , numpy . float_ ) for sp in spn }
2013-07-23 19:49:42 +02:00
2022-10-25 15:27:36 +02:00
if ishell is not None :
assert isinstance ( ishell , int ) and ishell in range ( len ( self . shells ) ) , " ishell must be of type integer and consistent with number of shells. "
2016-05-09 10:19:56 +02:00
gf_struct_parproj = [
2022-03-08 18:49:12 +01:00
( sp , self . shells [ ishell ] [ ' dim ' ] ) for sp in spn ]
G_loc = BlockGf ( name_block_generator = [ ( block , GfReFreq ( target_shape = ( block_dim , block_dim ) , mesh = self . Sigma_imp_w [ 0 ] . mesh ) )
for block , block_dim in gf_struct_parproj ] , make_copies = False )
2015-03-13 11:10:38 +01:00
G_loc . zero ( )
2013-07-23 19:49:42 +02:00
2020-04-08 21:35:59 +02:00
ikarray = numpy . array ( list ( range ( self . n_k ) ) )
2015-04-01 19:42:10 +02:00
for ik in mpi . slice_array ( ikarray ) :
2013-07-23 19:49:42 +02:00
2016-05-09 10:19:56 +02:00
G_latt_w = self . lattice_gf (
ik = ik , mu = mu , iw_or_w = " w " , broadening = broadening )
2015-03-13 11:10:38 +01:00
2014-11-15 20:04:54 +01:00
if ishell is None :
2015-03-13 11:10:38 +01:00
# Non-projected A(k,w)
2021-10-13 23:37:33 +02:00
for bname , gf in G_latt_w :
Akw [ bname ] [ ik ] = - gf . data [ numpy . where ( ( mesh > om_minplot ) & ( mesh < om_maxplot ) ) ] . imag . trace ( axis1 = 1 , axis2 = 2 ) / numpy . pi
# shift Akw for plotting stacked k-resolved eps(k)
# curves
Akw [ bname ] [ ik ] + = ik * plot_shift
2016-05-09 10:19:56 +02:00
else : # ishell not None
2015-03-13 11:10:38 +01:00
# Projected A(k,w):
G_loc . zero ( )
tmp = G_loc . copy ( )
2014-11-15 20:04:54 +01:00
for ir in range ( self . n_parproj [ ishell ] ) :
2016-05-09 10:19:56 +02:00
for bname , gf in tmp :
tmp [ bname ] << self . downfold ( ik , ishell , bname , G_latt_w [
bname ] , gf , shells = ' all ' , ir = ir )
2015-03-13 11:10:38 +01:00
G_loc + = tmp
2014-09-22 19:24:33 +02:00
2015-03-13 11:10:38 +01:00
# Rotate to local frame
if self . use_rotations :
2016-05-09 10:19:56 +02:00
for bname , gf in G_loc :
G_loc [ bname ] << self . rotloc (
ishell , gf , direction = ' toLocal ' , shells = ' all ' )
2013-07-23 19:49:42 +02:00
2021-10-13 23:37:33 +02:00
for ish in range ( self . shells [ ishell ] [ ' dim ' ] ) :
for sp in spn :
2022-10-25 15:27:36 +02:00
Akw [ sp ] [ ish , ik ] = - G_loc [ sp ] . data [ numpy . where ( ( mesh > om_minplot ) & ( mesh < om_maxplot ) ) , ish , ish ] . imag / numpy . pi
2015-11-30 16:22:53 +01:00
# Collect data from mpi
for sp in spn :
2016-05-09 10:19:56 +02:00
Akw [ sp ] = mpi . all_reduce ( mpi . world , Akw [ sp ] , lambda x , y : x + y )
2015-11-30 16:22:53 +01:00
mpi . barrier ( )
2015-03-13 11:10:38 +01:00
if save_to_file and mpi . is_master_node ( ) :
2014-11-15 20:04:54 +01:00
if ishell is None :
2016-05-09 10:19:56 +02:00
for sp in spn : # loop over GF blocs:
# Open file for storage:
f = open ( save_to_file + sp + ' .dat ' , ' w ' )
2013-07-23 19:49:42 +02:00
for ik in range ( self . n_k ) :
2015-03-17 09:37:18 +01:00
for iom in range ( n_om ) :
if ( mesh [ iom ] > om_minplot ) and ( mesh [ iom ] < om_maxplot ) :
if plot_shift > 0.0001 :
2016-05-09 10:19:56 +02:00
f . write ( ' %s %s \n ' %
( mesh [ iom ] , Akw [ sp ] [ ik , iom ] ) )
2015-03-17 09:37:18 +01:00
else :
2016-05-09 10:19:56 +02:00
f . write ( ' %s %s %s \n ' %
( ik , mesh [ iom ] , Akw [ sp ] [ ik , iom ] ) )
2015-03-17 09:37:18 +01:00
f . write ( ' \n ' )
2013-07-23 19:49:42 +02:00
f . close ( )
2016-05-09 10:19:56 +02:00
else : # ishell is not None
2015-03-13 11:10:38 +01:00
for sp in spn :
2014-11-26 16:24:02 +01:00
for ish in range ( self . shells [ ishell ] [ ' dim ' ] ) :
2016-05-09 10:19:56 +02:00
# Open file for storage:
f = open ( save_to_file + str ( ishell ) + ' _ ' +
sp + ' _proj ' + str ( ish ) + ' .dat ' , ' w ' )
2013-07-23 19:49:42 +02:00
for ik in range ( self . n_k ) :
2014-09-22 19:24:33 +02:00
for iom in range ( n_om ) :
2014-12-07 00:29:39 +01:00
if ( mesh [ iom ] > om_minplot ) and ( mesh [ iom ] < om_maxplot ) :
2015-03-13 11:10:38 +01:00
if plot_shift > 0.0001 :
2016-05-09 10:19:56 +02:00
f . write ( ' %s %s \n ' % (
mesh [ iom ] , Akw [ sp ] [ ish , ik , iom ] ) )
2013-07-23 19:49:42 +02:00
else :
2016-05-09 10:19:56 +02:00
f . write ( ' %s %s %s \n ' % (
ik , mesh [ iom ] , Akw [ sp ] [ ish , ik , iom ] ) )
2013-07-23 19:49:42 +02:00
f . write ( ' \n ' )
f . close ( )
2015-03-13 11:10:38 +01:00
return Akw
2013-07-23 19:49:42 +02:00
2016-05-09 10:19:56 +02:00
def partial_charges ( self , beta = 40 , mu = None , with_Sigma = True , with_dc = True ) :
2015-03-12 00:01:12 +01:00
"""
Calculates the orbitally - resolved density matrix for all the orbitals considered in the input , consistent with
the definition of Wien2k . Hence , ( possibly non - orthonormal ) projectors have to be provided in the partial projectors subgroup of
the hdf5 archive .
2016-05-09 10:19:56 +02:00
2015-03-12 00:01:12 +01:00
Parameters
- - - - - - - - - -
2016-05-09 10:19:56 +02:00
2015-03-12 00:01:12 +01:00
with_Sigma : boolean , optional
If True , the self energy is used for the calculation . If false , partial charges are calculated without self - energy correction .
beta : double , optional
In case the self - energy correction is not used , the inverse temperature where the calculation should be done has to be given here .
mu : double , optional
Chemical potential , overrides the one stored in the hdf5 archive .
with_dc : boolean , optional
If True the double counting correction is used .
2016-05-09 10:19:56 +02:00
2015-03-12 00:01:12 +01:00
Returns
- - - - - - -
dens_mat : list of numpy array
A list of density matrices projected to all shells provided in the input .
"""
2016-05-09 10:19:56 +02:00
things_to_read = [ ' dens_mat_below ' , ' n_parproj ' ,
' proj_mat_all ' , ' rot_mat_all ' , ' rot_mat_all_time_inv ' ]
value_read = self . read_input_from_hdf (
subgrp = self . parproj_data , things_to_read = things_to_read )
if not value_read :
return value_read
if self . symm_op :
self . symmpar = Symmetry ( self . hdf_file , subgroup = self . symmpar_data )
2014-09-22 19:24:33 +02:00
2014-11-17 10:48:04 +01:00
spn = self . spin_block_names [ self . SO ]
2014-11-14 09:43:28 +01:00
ntoi = self . spin_names_to_ind [ self . SO ]
2015-03-13 11:10:38 +01:00
# Density matrix in the window
2016-05-09 10:19:56 +02:00
self . dens_mat_window = [ [ numpy . zeros ( [ self . shells [ ish ] [ ' dim ' ] , self . shells [ ish ] [ ' dim ' ] ] , numpy . complex_ )
for ish in range ( self . n_shells ) ]
for isp in range ( len ( spn ) ) ]
2015-03-13 11:10:38 +01:00
# Set up G_loc
2022-03-08 18:49:12 +01:00
gf_struct_parproj = [ [ ( sp , self . shells [ ish ] [ ' dim ' ] ) for sp in spn ]
2016-05-09 10:19:56 +02:00
for ish in range ( self . n_shells ) ]
2015-03-13 11:10:38 +01:00
if with_Sigma :
2022-03-08 18:49:12 +01:00
G_loc = [ BlockGf ( name_block_generator = [ ( block , GfImFreq ( target_shape = ( block_dim , block_dim ) , mesh = self . Sigma_imp_iw [ 0 ] . mesh ) )
for block , block_dim in gf_struct_parproj [ ish ] ] , make_copies = False )
2014-11-15 20:04:54 +01:00
for ish in range ( self . n_shells ) ]
2014-12-07 00:29:39 +01:00
beta = self . Sigma_imp_iw [ 0 ] . mesh . beta
2013-07-23 19:49:42 +02:00
else :
2022-03-08 18:49:12 +01:00
G_loc = [ BlockGf ( name_block_generator = [ ( block , GfImFreq ( target_shape = ( block_dim , block_dim ) , beta = beta ) )
for block , block_dim in gf_struct_parproj [ ish ] ] , make_copies = False )
2014-11-15 20:04:54 +01:00
for ish in range ( self . n_shells ) ]
2016-05-09 10:19:56 +02:00
for ish in range ( self . n_shells ) :
G_loc [ ish ] . zero ( )
2013-07-23 19:49:42 +02:00
2020-04-08 21:35:59 +02:00
ikarray = numpy . array ( list ( range ( self . n_k ) ) )
2013-07-23 19:49:42 +02:00
for ik in mpi . slice_array ( ikarray ) :
2016-05-09 10:19:56 +02:00
G_latt_iw = self . lattice_gf (
ik = ik , mu = mu , iw_or_w = " iw " , beta = beta , with_Sigma = with_Sigma , with_dc = with_dc )
2015-03-13 11:10:38 +01:00
G_latt_iw * = self . bz_weights [ ik ]
2014-11-15 20:04:54 +01:00
for ish in range ( self . n_shells ) :
2015-03-13 11:10:38 +01:00
tmp = G_loc [ ish ] . copy ( )
2014-11-15 20:04:54 +01:00
for ir in range ( self . n_parproj [ ish ] ) :
2016-05-09 10:19:56 +02:00
for bname , gf in tmp :
tmp [ bname ] << self . downfold ( ik , ish , bname , G_latt_iw [
bname ] , gf , shells = ' all ' , ir = ir )
2015-03-13 11:10:38 +01:00
G_loc [ ish ] + = tmp
2014-09-22 19:24:33 +02:00
2015-03-13 11:10:38 +01:00
# Collect data from mpi:
2014-11-15 20:04:54 +01:00
for ish in range ( self . n_shells ) :
2016-05-09 10:19:56 +02:00
G_loc [ ish ] << mpi . all_reduce (
mpi . world , G_loc [ ish ] , lambda x , y : x + y )
2013-07-23 19:49:42 +02:00
mpi . barrier ( )
2015-03-13 11:10:38 +01:00
# Symmetrize and rotate to local coord. system if needed:
2016-05-09 10:19:56 +02:00
if self . symm_op != 0 :
G_loc = self . symmpar . symmetrize ( G_loc )
2015-03-13 11:10:38 +01:00
if self . use_rotations :
for ish in range ( self . n_shells ) :
2016-05-09 10:19:56 +02:00
for bname , gf in G_loc [ ish ] :
G_loc [ ish ] [ bname ] << self . rotloc (
ish , gf , direction = ' toLocal ' , shells = ' all ' )
2014-09-22 19:24:33 +02:00
2014-11-15 20:04:54 +01:00
for ish in range ( self . n_shells ) :
2013-07-23 19:49:42 +02:00
isp = 0
2016-05-09 10:19:56 +02:00
for bname , gf in G_loc [ ish ] :
2015-03-13 11:10:38 +01:00
self . dens_mat_window [ isp ] [ ish ] = G_loc [ ish ] . density ( ) [ bname ]
isp + = 1
2014-09-22 19:24:33 +02:00
2015-03-13 11:10:38 +01:00
# Add density matrices to get the total:
2016-05-09 10:19:56 +02:00
dens_mat = [ [ self . dens_mat_below [ ntoi [ spn [ isp ] ] ] [ ish ] + self . dens_mat_window [ isp ] [ ish ]
for ish in range ( self . n_shells ) ]
for isp in range ( len ( spn ) ) ]
2013-07-23 19:49:42 +02:00
return dens_mat
2014-11-20 13:17:46 +01:00
2015-02-10 16:35:12 +01:00
def print_hamiltonian ( self ) :
2015-03-12 00:01:12 +01:00
"""
Prints the Kohn - Sham Hamiltonian to the text files hamup . dat and hamdn . dat ( no spin orbit - coupling ) , or to ham . dat ( with spin - orbit coupling ) .
"""
2015-02-10 16:35:12 +01:00
if self . SP == 1 and self . SO == 0 :
2016-05-09 10:19:56 +02:00
f1 = open ( ' hamup.dat ' , ' w ' )
f2 = open ( ' hamdn.dat ' , ' w ' )
2015-02-10 16:35:12 +01:00
for ik in range ( self . n_k ) :
2016-05-09 10:19:56 +02:00
for i in range ( self . n_orbitals [ ik , 0 ] ) :
f1 . write ( ' %s %s \n ' %
( ik , self . hopping [ ik , 0 , i , i ] . real ) )
for i in range ( self . n_orbitals [ ik , 1 ] ) :
f2 . write ( ' %s %s \n ' %
( ik , self . hopping [ ik , 1 , i , i ] . real ) )
2015-02-10 16:35:12 +01:00
f1 . write ( ' \n ' )
f2 . write ( ' \n ' )
f1 . close ( )
f2 . close ( )
else :
2016-05-09 10:19:56 +02:00
f = open ( ' ham.dat ' , ' w ' )
2015-02-10 16:35:12 +01:00
for ik in range ( self . n_k ) :
2016-05-09 10:19:56 +02:00
for i in range ( self . n_orbitals [ ik , 0 ] ) :
f . write ( ' %s %s \n ' %
( ik , self . hopping [ ik , 0 , i , i ] . real ) )
2015-02-10 16:35:12 +01:00
f . write ( ' \n ' )
f . close ( )
2014-12-09 18:24:50 +01:00
# ----------------- transport -----------------------
2014-11-20 13:17:46 +01:00
def read_transport_input_from_hdf ( self ) :
2015-03-12 00:01:12 +01:00
r """
Reads the data for transport calculations from the hdf5 archive .
2014-11-20 13:17:46 +01:00
"""
2016-05-09 10:19:56 +02:00
thingstoread = [ ' band_window_optics ' , ' velocities_k ' ]
self . read_input_from_hdf (
subgrp = self . transp_data , things_to_read = thingstoread )
thingstoread = [ ' band_window ' , ' lattice_angles ' , ' lattice_constants ' ,
' lattice_type ' , ' n_symmetries ' , ' rot_symmetries ' ]
self . read_input_from_hdf (
subgrp = self . misc_data , things_to_read = thingstoread )
2014-12-19 11:53:06 +01:00
def cellvolume ( self , lattice_type , lattice_constants , latticeangle ) :
2015-03-12 00:01:12 +01:00
r """
Determines the conventional und primitive unit cell volumes .
2016-05-09 10:19:56 +02:00
2015-03-12 00:01:12 +01:00
Parameters
- - - - - - - - - -
lattice_type : string
Lattice type according to the Wien2k convention ( P , F , B , R , H , CXY , CYZ , CXZ ) .
lattice_constants : list of double
Lattice constants ( a , b , c ) .
lattice angles : list of double
Lattice angles ( : math : ` \alpha , \beta , \gamma ` ) .
2016-05-09 10:19:56 +02:00
2015-03-12 00:01:12 +01:00
Returns
- - - - - - -
vol_c : double
Conventional unit cell volume .
vol_p : double
Primitive unit cell volume .
2014-11-20 13:17:46 +01:00
"""
2016-05-09 10:19:56 +02:00
2014-12-19 11:53:06 +01:00
a = lattice_constants [ 0 ]
b = lattice_constants [ 1 ]
c = lattice_constants [ 2 ]
2014-11-20 13:17:46 +01:00
c_al = numpy . cos ( latticeangle [ 0 ] )
c_be = numpy . cos ( latticeangle [ 1 ] )
c_ga = numpy . cos ( latticeangle [ 2 ] )
2016-05-09 10:19:56 +02:00
vol_c = a * b * c * \
numpy . sqrt ( 1 + 2 * c_al * c_be * c_ga -
c_al * * 2 - c_be * * 2 - c_ga * * 2 )
det = { " P " : 1 , " F " : 4 , " B " : 2 , " R " : 3 ,
" H " : 1 , " CXY " : 2 , " CYZ " : 2 , " CXZ " : 2 }
2015-03-12 00:01:12 +01:00
vol_p = vol_c / det [ lattice_type ]
2014-11-20 13:17:46 +01:00
2016-05-09 10:19:56 +02:00
return vol_c , vol_p
2014-11-20 13:17:46 +01:00
2015-12-09 14:55:03 +01:00
# Uses .data of only GfReFreq objects.
2015-03-12 00:01:12 +01:00
def transport_distribution ( self , beta , directions = [ ' xx ' ] , energy_window = None , Om_mesh = [ 0.0 ] , with_Sigma = False , n_om = None , broadening = 0.0 ) :
r """
2020-10-09 14:35:28 +02:00
Calculates the transport distribution
2015-03-12 00:01:12 +01:00
. . math : :
\Gamma_ { \alpha \beta } \left ( \omega + \Omega / 2 , \omega - \Omega / 2 \right ) = \frac { 1 } { V } \sum_k Tr \left ( v_ { k , \alpha } A_ { k } ( \omega + \Omega / 2 ) v_ { k , \beta } A_ { k } \left ( \omega - \Omega / 2 \right ) \right )
2020-10-09 14:35:28 +02:00
in the direction : math : ` \alpha \beta ` . The velocities : math : ` v_ { k } ` are read from the transport subgroup of the hdf5 archive .
2016-05-09 10:19:56 +02:00
2015-03-12 00:01:12 +01:00
Parameters
- - - - - - - - - -
2016-05-09 10:19:56 +02:00
2015-03-12 00:01:12 +01:00
beta : double
Inverse temperature : math : ` \beta ` .
directions : list of double , optional
: math : ` \alpha \beta ` e . g . : [ ' xx ' , ' yy ' , ' zz ' , ' xy ' , ' xz ' , ' yz ' ] .
energy_window : list of double , optional
2020-10-09 14:35:28 +02:00
Specifies the upper and lower limit of the frequency integration for : math : ` \Omega = 0.0 ` . The window is automatically enlarged by the largest : math : ` \Omega ` value ,
2015-03-12 00:01:12 +01:00
hence the integration is performed in the interval [ energy_window [ 0 ] - max ( Om_mesh ) , energy_window [ 1 ] + max ( Om_mesh ) ] .
Om_mesh : list of double , optional
: math : ` \Omega ` frequency mesh of the optical conductivity . For the conductivity and the Seebeck coefficient : math : ` \Omega = 0.0 ` has to be
part of the mesh . In the current version Om_mesh is repined to the mesh provided by the self - energy ! The actual mesh is printed on the screen and stored as
member Om_mesh .
with_Sigma : boolean , optional
2020-10-09 14:35:28 +02:00
Determines whether the calculation is performed with or without self energy . If this parameter is set to False the self energy is set to zero ( i . e . the DFT band
2015-03-12 00:01:12 +01:00
structure : math : ` A ( k , \omega ) ` is used ) . Note : For with_Sigma = False it is necessary to specify the parameters energy_window , n_om and broadening .
n_om : integer , optional
Number of equidistant frequency points in the interval [ energy_window [ 0 ] - max ( Om_mesh ) , energy_window [ 1 ] + max ( Om_mesh ) ] . This parameters is only used if
with_Sigma = False .
broadening : double , optional
Lorentzian broadening . It is necessary to specify the boradening if with_Sigma = False , otherwise this parameter can be set to 0.0 .
2014-11-20 13:17:46 +01:00
"""
2016-05-09 10:19:56 +02:00
# Check if wien converter was called and read transport subgroup form
# hdf file
2014-11-20 13:17:46 +01:00
if mpi . is_master_node ( ) :
2015-08-10 16:14:51 +02:00
ar = HDFArchive ( self . hdf_file , ' r ' )
2016-05-09 10:19:56 +02:00
if not ( self . transp_data in ar ) :
2020-04-08 21:35:59 +02:00
raise IOError ( " transport_distribution: No %s subgroup in hdf file found! Call convert_transp_input first. " % self . transp_data )
2016-04-20 14:22:02 +02:00
# check if outputs file was converted
2016-05-09 10:19:56 +02:00
if not ( ' n_symmetries ' in ar [ ' dft_misc_input ' ] ) :
2020-04-08 21:35:59 +02:00
raise IOError ( " transport_distribution: n_symmetries missing. Check if case.outputs file is present and call convert_misc_input() or convert_dft_input(). " )
2016-05-09 10:19:56 +02:00
2014-11-20 13:17:46 +01:00
self . read_transport_input_from_hdf ( )
2016-05-09 10:19:56 +02:00
2015-02-18 00:27:00 +01:00
if mpi . is_master_node ( ) :
# k-dependent-projections.
assert self . k_dep_projection == 1 , " transport_distribution: k dependent projection is not implemented! "
# positive Om_mesh
2016-05-09 10:19:56 +02:00
assert all (
Om > = 0.0 for Om in Om_mesh ) , " transport_distribution: Om_mesh should not contain negative values! "
2015-02-18 00:27:00 +01:00
2015-02-18 10:55:03 +01:00
# Check if energy_window is sufficiently large and correct
if ( energy_window [ 0 ] > = energy_window [ 1 ] or energy_window [ 0 ] > = 0 or energy_window [ 1 ] < = 0 ) :
assert 0 , " transport_distribution: energy_window wrong! "
2016-05-09 10:19:56 +02:00
if ( abs ( self . fermi_dis ( energy_window [ 0 ] , beta ) * self . fermi_dis ( - energy_window [ 0 ] , beta ) ) > 1e-5
or abs ( self . fermi_dis ( energy_window [ 1 ] , beta ) * self . fermi_dis ( - energy_window [ 1 ] , beta ) ) > 1e-5 ) :
mpi . report (
" \n #################################################################### " )
mpi . report (
" transport_distribution: WARNING - energy window might be too narrow! " )
mpi . report (
" #################################################################### \n " )
# up and down are equivalent if SP = 0
n_inequiv_spin_blocks = self . SP + 1 - self . SO
2014-12-19 11:53:06 +01:00
self . directions = directions
2016-05-09 10:19:56 +02:00
dir_to_int = { ' x ' : 0 , ' y ' : 1 , ' z ' : 2 }
2014-11-20 13:17:46 +01:00
# calculate A(k,w)
#######################################
2016-05-09 10:19:56 +02:00
2015-03-12 00:01:12 +01:00
# Define mesh for Green's function and in the specified energy window
2014-12-10 13:18:39 +01:00
if ( with_Sigma == True ) :
2016-05-09 10:19:56 +02:00
self . omega = numpy . array ( [ round ( x . real , 12 )
for x in self . Sigma_imp_w [ 0 ] . mesh ] )
2014-12-19 11:53:06 +01:00
mesh = None
2014-11-20 13:17:46 +01:00
mu = self . chemical_potential
n_om = len ( self . omega )
2015-02-18 10:55:03 +01:00
mpi . report ( " Using omega mesh provided by Sigma! " )
2014-11-20 13:17:46 +01:00
2020-10-09 14:35:28 +02:00
if energy_window :
2015-02-18 00:27:00 +01:00
# Find according window in Sigma mesh
2016-05-09 10:19:56 +02:00
ioffset = numpy . sum (
self . omega < energy_window [ 0 ] - max ( Om_mesh ) )
self . omega = self . omega [ numpy . logical_and ( self . omega > = energy_window [
0 ] - max ( Om_mesh ) , self . omega < = energy_window [ 1 ] + max ( Om_mesh ) ) ]
2014-11-20 13:17:46 +01:00
n_om = len ( self . omega )
2016-05-09 10:19:56 +02:00
2014-11-20 13:17:46 +01:00
# Truncate Sigma to given omega window
2016-05-09 10:19:56 +02:00
# In the future there should be an option in gf to manipulate the mesh (e.g. truncate) directly.
# For now we stick with this:
2014-11-20 13:17:46 +01:00
for icrsh in range ( self . n_corr_shells ) :
2014-12-07 00:29:39 +01:00
Sigma_save = self . Sigma_imp_w [ icrsh ] . copy ( )
2014-12-09 14:38:07 +01:00
spn = self . spin_block_names [ self . corr_shells [ icrsh ] [ ' SO ' ] ]
2022-03-08 18:49:12 +01:00
glist = lambda : [ GfReFreq ( target_shape = ( block_dim , block_dim ) , window = ( self . omega [
0 ] , self . omega [ - 1 ] ) , n_points = n_om ) for block , block_dim in self . gf_struct_sumk [ icrsh ] ]
2016-05-09 10:19:56 +02:00
self . Sigma_imp_w [ icrsh ] = BlockGf (
name_list = spn , block_list = glist ( ) , make_copies = False )
for i , g in self . Sigma_imp_w [ icrsh ] :
2017-04-05 20:58:01 +02:00
for iL in g . indices [ 0 ] :
for iR in g . indices [ 0 ] :
2020-04-08 21:35:59 +02:00
for iom in range ( n_om ) :
2017-03-17 13:05:09 +01:00
g . data [ iom , int ( iL ) , int ( iR ) ] = Sigma_save [
i ] . data [ ioffset + iom , int ( iL ) , int ( iR ) ]
2014-11-20 13:17:46 +01:00
else :
2014-12-19 11:53:06 +01:00
assert n_om is not None , " transport_distribution: Number of omega points (n_om) needed to calculate transport distribution! "
assert energy_window is not None , " transport_distribution: Energy window needed to calculate transport distribution! "
2015-02-18 00:27:00 +01:00
assert broadening != 0.0 and broadening is not None , " transport_distribution: Broadening necessary to calculate transport distribution! "
2016-05-09 10:19:56 +02:00
self . omega = numpy . linspace (
energy_window [ 0 ] - max ( Om_mesh ) , energy_window [ 1 ] + max ( Om_mesh ) , n_om )
mesh = [ energy_window [ 0 ] -
max ( Om_mesh ) , energy_window [ 1 ] + max ( Om_mesh ) , n_om ]
2015-02-18 00:27:00 +01:00
mu = 0.0
2014-12-19 11:53:06 +01:00
# Define mesh for optic conductivity
2014-11-20 13:17:46 +01:00
d_omega = round ( numpy . abs ( self . omega [ 0 ] - self . omega [ 1 ] ) , 12 )
2016-05-09 10:19:56 +02:00
iOm_mesh = numpy . array ( [ round ( ( Om / d_omega ) , 0 ) for Om in Om_mesh ] )
2014-12-19 11:53:06 +01:00
self . Om_mesh = iOm_mesh * d_omega
2014-11-20 13:17:46 +01:00
if mpi . is_master_node ( ) :
2020-04-08 21:35:59 +02:00
print ( " Chemical potential: " , mu )
print ( " Using n_om = %s points in the energy_window [ %s , %s ] " % ( n_om , self . omega [ 0 ] , self . omega [ - 1 ] ) , end = ' ' )
print ( " where the omega vector is: " )
print ( self . omega )
print ( " Calculation requested for Omega mesh: " , numpy . array ( Om_mesh ) )
print ( " Omega mesh automatically repined to: " , self . Om_mesh )
2016-05-09 10:19:56 +02:00
self . Gamma_w = { direction : numpy . zeros (
( len ( self . Om_mesh ) , n_om ) , dtype = numpy . float_ ) for direction in self . directions }
2014-12-19 11:53:06 +01:00
# Sum over all k-points
2020-04-08 21:35:59 +02:00
ikarray = numpy . array ( list ( range ( self . n_k ) ) )
2014-11-20 13:17:46 +01:00
for ik in mpi . slice_array ( ikarray ) :
2014-12-19 11:53:06 +01:00
# Calculate G_w for ik and initialize A_kw
2016-05-09 10:19:56 +02:00
G_w = self . lattice_gf ( ik , mu , iw_or_w = " w " , beta = beta ,
broadening = broadening , mesh = mesh , with_Sigma = with_Sigma )
A_kw = [ numpy . zeros ( ( self . n_orbitals [ ik ] [ isp ] , self . n_orbitals [ ik ] [ isp ] , n_om ) , dtype = numpy . complex_ )
for isp in range ( n_inequiv_spin_blocks ) ]
2015-02-18 00:27:00 +01:00
for isp in range ( n_inequiv_spin_blocks ) :
2016-05-09 10:19:56 +02:00
# copy data from G_w (swapaxes is used to have omega in the 3rd
# dimension)
A_kw [ isp ] = copy . deepcopy ( G_w [ self . spin_block_names [ self . SO ] [
isp ] ] . data . swapaxes ( 0 , 1 ) . swapaxes ( 1 , 2 ) )
2015-05-27 10:43:40 +02:00
# calculate A(k,w) for each frequency
2020-04-08 21:35:59 +02:00
for iw in range ( n_om ) :
2016-05-09 10:19:56 +02:00
A_kw [ isp ] [ : , : , iw ] = - 1.0 / ( 2.0 * numpy . pi * 1 j ) * (
A_kw [ isp ] [ : , : , iw ] - numpy . conjugate ( numpy . transpose ( A_kw [ isp ] [ : , : , iw ] ) ) )
b_min = max ( self . band_window [ isp ] [
ik , 0 ] , self . band_window_optics [ isp ] [ ik , 0 ] )
b_max = min ( self . band_window [ isp ] [
ik , 1 ] , self . band_window_optics [ isp ] [ ik , 1 ] )
A_i = slice (
b_min - self . band_window [ isp ] [ ik , 0 ] , b_max - self . band_window [ isp ] [ ik , 0 ] + 1 )
v_i = slice ( b_min - self . band_window_optics [ isp ] [
ik , 0 ] , b_max - self . band_window_optics [ isp ] [ ik , 0 ] + 1 )
2015-05-27 10:43:40 +02:00
2014-12-19 11:53:06 +01:00
# loop over all symmetries
for R in self . rot_symmetries :
# get transformed velocity under symmetry R
vel_R = copy . deepcopy ( self . velocities_k [ isp ] [ ik ] )
for nu1 in range ( self . band_window_optics [ isp ] [ ik , 1 ] - self . band_window_optics [ isp ] [ ik , 0 ] + 1 ) :
for nu2 in range ( self . band_window_optics [ isp ] [ ik , 1 ] - self . band_window_optics [ isp ] [ ik , 0 ] + 1 ) :
2016-05-09 10:19:56 +02:00
vel_R [ nu1 ] [ nu2 ] [ : ] = numpy . dot (
R , vel_R [ nu1 ] [ nu2 ] [ : ] )
# calculate Gamma_w for each direction from the velocities
# vel_R and the spectral function A_kw
2015-02-18 00:27:00 +01:00
for direction in self . directions :
2020-04-08 21:35:59 +02:00
for iw in range ( n_om ) :
2014-12-19 11:53:06 +01:00
for iq in range ( len ( self . Om_mesh ) ) :
2016-05-09 10:19:56 +02:00
if ( iw + iOm_mesh [ iq ] > = n_om or self . omega [ iw ] < - self . Om_mesh [ iq ] + energy_window [ 0 ] or self . omega [ iw ] > self . Om_mesh [ iq ] + energy_window [ 1 ] ) :
continue
2014-12-19 11:53:06 +01:00
2016-05-09 10:19:56 +02:00
self . Gamma_w [ direction ] [ iq , iw ] + = ( numpy . dot ( numpy . dot ( numpy . dot ( vel_R [ v_i , v_i , dir_to_int [ direction [ 0 ] ] ] ,
2017-03-17 13:05:09 +01:00
A_kw [ isp ] [ A_i , A_i , int ( iw + iOm_mesh [ iq ] ) ] ) , vel_R [ v_i , v_i , dir_to_int [ direction [ 1 ] ] ] ) ,
2016-05-09 10:19:56 +02:00
A_kw [ isp ] [ A_i , A_i , iw ] ) . trace ( ) . real * self . bz_weights [ ik ] )
for direction in self . directions :
self . Gamma_w [ direction ] = ( mpi . all_reduce ( mpi . world , self . Gamma_w [ direction ] , lambda x , y : x + y )
/ self . cellvolume ( self . lattice_type , self . lattice_constants , self . lattice_angles ) [ 1 ] / self . n_symmetries )
2015-07-28 17:21:13 +02:00
def transport_coefficient ( self , direction , iq , n , beta , method = None ) :
2015-03-12 00:01:12 +01:00
r """
Calculates the transport coefficient A_n in a given direction for a given : math : ` \Omega ` . The required members ( Gamma_w , directions , Om_mesh ) have to be obtained first
2020-10-09 14:35:28 +02:00
by calling the function : meth : ` transport_distribution < dft . sumk_dft_tools . SumkDFTTools . transport_distribution > ` . For n > 0 A is set to NaN if : math : ` \Omega ` is not 0.0 .
2016-05-09 10:19:56 +02:00
2015-03-12 00:01:12 +01:00
Parameters
- - - - - - - - - -
direction : string
: math : ` \alpha \beta ` e . g . : ' xx ' , ' yy ' , ' zz ' , ' xy ' , ' xz ' , ' yz ' .
iq : integer
Index of : math : ` \Omega ` point in the member Om_mesh .
n : integer
Number of the desired moment of the transport distribution .
beta : double
Inverse temperature : math : ` \beta ` .
2015-07-28 17:21:13 +02:00
method : string
Integration method : cubic spline and scipy . integrate . quad ( ' quad ' ) , simpson rule ( ' simps ' ) , trapezoidal rule ( ' trapz ' ) , rectangular integration ( otherwise )
Note that the sampling points of the the self - energy are used !
2016-05-09 10:19:56 +02:00
2015-03-12 00:01:12 +01:00
Returns
- - - - - - -
A : double
Transport coefficient .
2014-12-19 11:53:06 +01:00
"""
2015-03-12 00:01:12 +01:00
2016-05-09 10:19:56 +02:00
if not ( mpi . is_master_node ( ) ) :
return
assert hasattr (
self , ' Gamma_w ' ) , " transport_coefficient: Run transport_distribution first or load data from h5! "
if ( self . Om_mesh [ iq ] == 0.0 or n == 0.0 ) :
2015-07-28 17:21:13 +02:00
A = 0.0
# setup the integrand
if ( self . Om_mesh [ iq ] == 0.0 ) :
2016-05-09 10:19:56 +02:00
A_int = self . Gamma_w [ direction ] [ iq ] * ( self . fermi_dis (
self . omega , beta ) * self . fermi_dis ( - self . omega , beta ) ) * ( self . omega * beta ) * * n
2015-07-28 17:21:13 +02:00
elif ( n == 0.0 ) :
2016-05-09 10:19:56 +02:00
A_int = self . Gamma_w [ direction ] [ iq ] * ( self . fermi_dis ( self . omega , beta ) - self . fermi_dis (
self . omega + self . Om_mesh [ iq ] , beta ) ) / ( self . Om_mesh [ iq ] * beta )
2015-07-28 17:21:13 +02:00
# w-integration
if method == ' quad ' :
# quad on interpolated w-points with cubic spline
2016-05-09 10:19:56 +02:00
A_int_interp = interp1d ( self . omega , A_int , kind = ' cubic ' )
A = quad ( A_int_interp , min ( self . omega ) , max ( self . omega ) ,
epsabs = 1.0e-12 , epsrel = 1.0e-12 , limit = 500 )
2015-07-28 17:21:13 +02:00
A = A [ 0 ]
elif method == ' simps ' :
# simpson rule for w-grid
2016-05-09 10:19:56 +02:00
A = simps ( A_int , self . omega )
2015-07-28 17:21:13 +02:00
elif method == ' trapz ' :
# trapezoidal rule for w-grid
2016-05-09 10:19:56 +02:00
A = numpy . trapz ( A_int , self . omega )
2015-07-28 17:21:13 +02:00
else :
2016-05-09 10:19:56 +02:00
# rectangular integration for w-grid (orignal implementation)
2015-07-28 17:21:13 +02:00
d_w = self . omega [ 1 ] - self . omega [ 0 ]
2020-04-08 21:35:59 +02:00
for iw in range ( self . Gamma_w [ direction ] . shape [ 1 ] ) :
2016-05-09 10:19:56 +02:00
A + = A_int [ iw ] * d_w
A = A * numpy . pi * ( 2.0 - self . SP )
2015-07-28 17:21:13 +02:00
else :
A = numpy . nan
2015-03-12 00:01:12 +01:00
return A
2014-12-10 13:18:39 +01:00
2015-07-28 17:21:13 +02:00
def conductivity_and_seebeck ( self , beta , method = None ) :
2015-03-12 00:01:12 +01:00
r """
2020-10-09 14:35:28 +02:00
Calculates the Seebeck coefficient and the optical conductivity by calling
: meth : ` transport_coefficient < dft . sumk_dft_tools . SumkDFTTools . transport_coefficient > ` .
The required members ( Gamma_w , directions , Om_mesh ) have to be obtained first by calling the function
: meth : ` transport_distribution < dft . sumk_dft_tools . SumkDFTTools . transport_distribution > ` .
2016-05-09 10:19:56 +02:00
2015-03-12 00:01:12 +01:00
Parameters
- - - - - - - - - -
beta : double
Inverse temperature : math : ` \beta ` .
2016-05-09 10:19:56 +02:00
2015-03-12 00:01:12 +01:00
Returns
- - - - - - -
optic_cond : dictionary of double vectors
Optical conductivity in each direction and frequency given by Om_mesh .
seebeck : dictionary of double
Seebeck coefficient in each direction . If zero is not present in Om_mesh the Seebeck coefficient is set to NaN .
2018-04-27 12:14:50 +02:00
2020-10-09 14:35:28 +02:00
kappa : dictionary of double .
2018-04-27 12:14:50 +02:00
thermal conductivity in each direction . If zero is not present in Om_mesh the thermal conductivity is set to NaN
2014-11-20 13:17:46 +01:00
"""
2015-03-12 00:01:12 +01:00
2016-05-09 10:19:56 +02:00
if not ( mpi . is_master_node ( ) ) :
return
assert hasattr (
self , ' Gamma_w ' ) , " conductivity_and_seebeck: Run transport_distribution first or load data from h5! "
2014-12-19 11:53:06 +01:00
n_q = self . Gamma_w [ self . directions [ 0 ] ] . shape [ 0 ]
2016-05-09 10:19:56 +02:00
A0 = { direction : numpy . full ( ( n_q , ) , numpy . nan )
for direction in self . directions }
A1 = { direction : numpy . full ( ( n_q , ) , numpy . nan )
for direction in self . directions }
2018-04-27 12:14:50 +02:00
A2 = { direction : numpy . full ( ( n_q , ) , numpy . nan )
for direction in self . directions }
2014-12-19 11:53:06 +01:00
self . seebeck = { direction : numpy . nan for direction in self . directions }
2018-04-27 12:14:50 +02:00
self . kappa = { direction : numpy . nan for direction in self . directions }
2016-05-09 10:19:56 +02:00
self . optic_cond = { direction : numpy . full (
( n_q , ) , numpy . nan ) for direction in self . directions }
2014-12-19 11:53:06 +01:00
for direction in self . directions :
2020-04-08 21:35:59 +02:00
for iq in range ( n_q ) :
2016-05-09 10:19:56 +02:00
A0 [ direction ] [ iq ] = self . transport_coefficient (
direction , iq = iq , n = 0 , beta = beta , method = method )
A1 [ direction ] [ iq ] = self . transport_coefficient (
direction , iq = iq , n = 1 , beta = beta , method = method )
2018-04-27 12:14:50 +02:00
A2 [ direction ] [ iq ] = self . transport_coefficient (
direction , iq = iq , n = 2 , beta = beta , method = method )
2020-04-08 21:35:59 +02:00
print ( " A_0 in direction %s for Omega = %.2f %e a.u. " % ( direction , self . Om_mesh [ iq ] , A0 [ direction ] [ iq ] ) )
print ( " A_1 in direction %s for Omega = %.2f %e a.u. " % ( direction , self . Om_mesh [ iq ] , A1 [ direction ] [ iq ] ) )
print ( " A_2 in direction %s for Omega = %.2f %e a.u. " % ( direction , self . Om_mesh [ iq ] , A2 [ direction ] [ iq ] ) )
2014-12-19 11:53:06 +01:00
if ~ numpy . isnan ( A1 [ direction ] [ iq ] ) :
2018-04-27 12:14:50 +02:00
# Seebeck and kappa are overwritten if there is more than one Omega =
2016-05-09 10:19:56 +02:00
# 0 in Om_mesh
self . seebeck [ direction ] = - \
A1 [ direction ] [ iq ] / A0 [ direction ] [ iq ] * 86.17
2018-04-27 12:14:50 +02:00
self . kappa [ direction ] = A2 [ direction ] [ iq ] - A1 [ direction ] [ iq ] * A1 [ direction ] [ iq ] / A0 [ direction ] [ iq ]
self . kappa [ direction ] * = 293178.0
2016-05-09 10:19:56 +02:00
self . optic_cond [ direction ] = beta * \
A0 [ direction ] * 10700.0 / numpy . pi
2020-04-08 21:35:59 +02:00
for iq in range ( n_q ) :
print ( " Conductivity in direction %s for Omega = %.2f %f x 10^4 Ohm^-1 cm^-1 " % ( direction , self . Om_mesh [ iq ] , self . optic_cond [ direction ] [ iq ] ) )
2016-05-09 10:19:56 +02:00
if not ( numpy . isnan ( A1 [ direction ] [ iq ] ) ) :
2020-04-08 21:35:59 +02:00
print ( " Seebeck in direction %s for Omega = 0.00 %f x 10^(-6) V/K " % ( direction , self . seebeck [ direction ] ) )
print ( " kappa in direction %s for Omega = 0.00 %f W/(m * K) " % ( direction , self . kappa [ direction ] ) )
2018-04-27 12:14:50 +02:00
return self . optic_cond , self . seebeck , self . kappa
2015-03-12 00:01:12 +01:00
2014-11-20 13:17:46 +01:00
2016-05-09 10:19:56 +02:00
def fermi_dis ( self , w , beta ) :
2015-03-12 00:01:12 +01:00
r """
Fermi distribution .
. . math : :
f ( x ) = 1 / ( e ^ x + 1 ) .
Parameters
- - - - - - - - - -
2015-07-28 17:21:13 +02:00
w : double
frequency
beta : double
inverse temperature
2016-05-09 10:19:56 +02:00
2015-03-12 00:01:12 +01:00
Returns
- - - - - - -
f : double
2014-12-19 11:53:06 +01:00
"""
2016-05-09 10:19:56 +02:00
return 1.0 / ( numpy . exp ( w * beta ) + 1 )