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/>.
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
from types import *
|
|
|
|
import numpy
|
|
|
|
from pytriqs.gf.local import *
|
|
|
|
import pytriqs.utility.mpi as mpi
|
|
|
|
from symmetry import *
|
2014-11-18 11:30:26 +01:00
|
|
|
from sumk_dft import SumkDFT
|
2013-07-23 19:49:42 +02:00
|
|
|
|
2014-11-18 11:30:26 +01:00
|
|
|
class SumkDFTTools(SumkDFT):
|
|
|
|
"""Extends the SumkDFT class with some tools for analysing the data."""
|
2013-07-23 19:49:42 +02:00
|
|
|
|
|
|
|
|
2014-12-03 23:12:39 +01:00
|
|
|
def __init__(self, hdf_file, h_field = 0.0, use_dft_blocks = False, dft_data = 'dft_input', symmcorr_data = 'dft_symmcorr_input',
|
2014-12-09 14:38:07 +01:00
|
|
|
parproj_data = 'dft_parproj_input', symmpar_data = 'dft_symmpar_input', bands_data = 'dft_bands_input',
|
|
|
|
transp_data = 'dft_transp_input'):
|
2013-07-23 19:49:42 +02:00
|
|
|
|
2014-12-07 00:29:39 +01:00
|
|
|
#self.G_latt_w = None # DEBUG -- remove later
|
2014-12-03 23:12:39 +01:00
|
|
|
SumkDFT.__init__(self, hdf_file=hdf_file, h_field=h_field, use_dft_blocks=use_dft_blocks,
|
2014-11-18 11:30:26 +01:00
|
|
|
dft_data=dft_data, symmcorr_data=symmcorr_data, parproj_data=parproj_data,
|
2014-11-20 13:17:46 +01:00
|
|
|
symmpar_data=symmpar_data, bands_data=bands_data, transp_data=transp_data)
|
2014-09-22 19:24:33 +02:00
|
|
|
|
2013-07-23 19:49:42 +02:00
|
|
|
|
|
|
|
def check_input_dos(self, om_min, om_max, n_om, beta=10, broadening=0.01):
|
2014-09-22 19:24:33 +02:00
|
|
|
|
2014-01-21 16:47:45 +01:00
|
|
|
|
2013-07-23 19:49:42 +02:00
|
|
|
delta_om = (om_max-om_min)/(n_om-1)
|
2014-01-21 16:47:45 +01:00
|
|
|
om_mesh = numpy.zeros([n_om],numpy.float_)
|
|
|
|
for i in range(n_om): om_mesh[i] = om_min + delta_om * i
|
2013-07-23 19:49:42 +02:00
|
|
|
|
|
|
|
DOS = {}
|
2014-12-07 00:29:39 +01:00
|
|
|
for sp in self.spin_block_names[self.SO]:
|
|
|
|
DOS[sp] = numpy.zeros([n_om],numpy.float_)
|
2013-07-23 19:49:42 +02:00
|
|
|
|
2014-11-15 20:04:54 +01:00
|
|
|
DOSproj = [ {} for ish in range(self.n_inequiv_shells) ]
|
|
|
|
DOSproj_orb = [ {} for ish in range(self.n_inequiv_shells) ]
|
|
|
|
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']
|
2014-12-07 00:29:39 +01:00
|
|
|
DOSproj[ish][sp] = numpy.zeros([n_om],numpy.float_)
|
|
|
|
DOSproj_orb[ish][sp] = numpy.zeros([n_om,dim,dim],numpy.float_)
|
2013-07-23 19:49:42 +02:00
|
|
|
|
|
|
|
# init:
|
|
|
|
Gloc = []
|
|
|
|
for icrsh in range(self.n_corr_shells):
|
2014-11-26 16:24:02 +01:00
|
|
|
spn = self.spin_block_names[self.corr_shells[icrsh]['SO']]
|
2014-11-14 11:21:58 +01:00
|
|
|
glist = lambda : [ GfReFreq(indices = inner, window = (om_min,om_max), n_points = n_om) for block,inner in self.gf_struct_sumk[icrsh]]
|
2014-11-17 10:48:04 +01:00
|
|
|
Gloc.append(BlockGf(name_list = spn, block_list = glist(),make_copies=False))
|
2014-11-15 20:04:54 +01:00
|
|
|
for icrsh in range(self.n_corr_shells): Gloc[icrsh].zero() # initialize to zero
|
2014-09-22 19:24:33 +02:00
|
|
|
|
2014-11-15 20:04:54 +01:00
|
|
|
for ik in range(self.n_k):
|
2013-07-23 19:49:42 +02:00
|
|
|
|
2014-12-07 00:29:39 +01:00
|
|
|
G_latt_w=self.lattice_gf(ik=ik,mu=self.chemical_potential,iw_or_w="w",broadening=broadening,mesh=(om_min,om_max,n_om),with_Sigma=False)
|
|
|
|
G_latt_w *= self.bz_weights[ik]
|
2013-07-23 19:49:42 +02:00
|
|
|
|
|
|
|
# non-projected DOS
|
2014-09-22 19:24:33 +02:00
|
|
|
for iom in range(n_om):
|
2014-12-07 00:29:39 +01:00
|
|
|
for bname,gf in G_latt_w:
|
2013-07-23 19:49:42 +02:00
|
|
|
asd = gf.data[iom,:,:].imag.trace()/(-3.1415926535)
|
2014-11-14 09:43:28 +01:00
|
|
|
DOS[bname][iom] += asd
|
2014-09-22 19:24:33 +02:00
|
|
|
|
2014-11-15 20:04:54 +01:00
|
|
|
for icrsh in range(self.n_corr_shells):
|
2013-07-23 19:49:42 +02:00
|
|
|
tmp = Gloc[icrsh].copy()
|
2014-12-07 00:29:39 +01:00
|
|
|
for bname,gf in tmp: tmp[bname] << self.downfold(ik,icrsh,bname,G_latt_w[bname],gf) # downfolding G
|
2013-07-23 19:49:42 +02:00
|
|
|
Gloc[icrsh] += tmp
|
|
|
|
|
2014-09-22 19:24:33 +02:00
|
|
|
|
|
|
|
|
2014-11-15 20:04:54 +01:00
|
|
|
if self.symm_op != 0: Gloc = self.symmcorr.symmetrize(Gloc)
|
2013-07-23 19:49:42 +02:00
|
|
|
|
2014-11-15 20:04:54 +01:00
|
|
|
if self.use_rotations:
|
|
|
|
for icrsh in range(self.n_corr_shells):
|
2014-11-14 09:43:28 +01:00
|
|
|
for bname,gf in Gloc[icrsh]: Gloc[icrsh][bname] << self.rotloc(icrsh,gf,direction='toLocal')
|
2014-09-22 19:24:33 +02:00
|
|
|
|
2013-07-23 19:49:42 +02:00
|
|
|
# Gloc 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):
|
|
|
|
for bname,gf in Gloc[self.inequiv_to_corr[ish]]: # loop over spins
|
2014-11-14 09:43:28 +01:00
|
|
|
for iom in range(n_om): DOSproj[ish][bname][iom] += gf.data[iom,:,:].imag.trace()/(-3.1415926535)
|
2013-07-23 19:49:42 +02:00
|
|
|
|
2014-11-14 09:43:28 +01:00
|
|
|
DOSproj_orb[ish][bname][:,:,:] += gf.data[:,:,:].imag/(-3.1415926535)
|
2014-09-22 19:24:33 +02:00
|
|
|
|
2013-07-23 19:49:42 +02:00
|
|
|
# output:
|
2014-11-15 20:04:54 +01:00
|
|
|
if mpi.is_master_node():
|
2014-12-07 00:29:39 +01:00
|
|
|
for sp in self.spin_block_names[self.SO]:
|
|
|
|
f=open('DOS%s.dat'%sp, 'w')
|
|
|
|
for i in range(n_om): f.write("%s %s\n"%(om_mesh[i],DOS[sp][i]))
|
2014-09-22 19:24:33 +02:00
|
|
|
f.close()
|
2013-07-23 19:49:42 +02:00
|
|
|
|
2014-11-15 18:15:45 +01:00
|
|
|
for ish in range(self.n_inequiv_shells):
|
2014-12-07 00:29:39 +01:00
|
|
|
f=open('DOS%s_proj%s.dat'%(sp,ish),'w')
|
|
|
|
for i in range(n_om): f.write("%s %s\n"%(om_mesh[i],DOSproj[ish][sp][i]))
|
2014-09-22 19:24:33 +02:00
|
|
|
f.close()
|
|
|
|
|
2014-11-26 16:24:02 +01:00
|
|
|
for i in range(self.corr_shells[self.inequiv_to_corr[ish]]['dim']):
|
|
|
|
for j in range(i,self.corr_shells[self.inequiv_to_corr[ish]]['dim']):
|
2014-12-07 00:29:39 +01:00
|
|
|
Fname = 'DOS'+sp+'_proj'+str(ish)+'_'+str(i)+'_'+str(j)+'.dat'
|
2013-07-23 19:49:42 +02:00
|
|
|
f=open(Fname,'w')
|
2014-12-07 00:29:39 +01:00
|
|
|
for iom in range(n_om): f.write("%s %s\n"%(om_mesh[iom],DOSproj_orb[ish][sp][iom,i,j]))
|
2013-07-23 19:49:42 +02:00
|
|
|
f.close()
|
|
|
|
|
2014-09-22 19:24:33 +02:00
|
|
|
|
|
|
|
|
2013-07-23 19:49:42 +02:00
|
|
|
|
2014-11-03 14:47:55 +01:00
|
|
|
def read_parproj_input_from_hdf(self):
|
2013-07-23 19:49:42 +02:00
|
|
|
"""
|
|
|
|
Reads the data for the partial projectors from the HDF file
|
|
|
|
"""
|
|
|
|
|
2014-10-31 18:52:32 +01:00
|
|
|
things_to_read = ['dens_mat_below','n_parproj','proj_mat_pc','rot_mat_all','rot_mat_all_time_inv']
|
2014-11-07 00:55:40 +01:00
|
|
|
value_read = self.read_input_from_hdf(subgrp=self.parproj_data,things_to_read = things_to_read)
|
|
|
|
return value_read
|
2013-07-23 19:49:42 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def dos_partial(self,broadening=0.01):
|
|
|
|
"""calculates the orbitally-resolved DOS"""
|
|
|
|
|
2014-12-07 00:29:39 +01:00
|
|
|
assert hasattr(self,"Sigma_imp_w"), "dos_partial: Set Sigma_imp_w first."
|
2013-07-23 19:49:42 +02:00
|
|
|
|
2014-11-07 00:55:40 +01:00
|
|
|
value_read = self.read_parproj_input_from_hdf()
|
|
|
|
if not value_read: return value_read
|
2014-11-14 09:43:28 +01:00
|
|
|
if self.symm_op: self.symmpar = Symmetry(self.hdf_file,subgroup=self.symmpar_data)
|
2013-07-23 19:49:42 +02:00
|
|
|
|
|
|
|
mu = self.chemical_potential
|
|
|
|
|
2014-11-26 16:24:02 +01:00
|
|
|
gf_struct_proj = [ [ (sp, range(self.shells[i]['dim'])) for sp in self.spin_block_names[self.SO] ] for i in range(self.n_shells) ]
|
2014-12-07 00:29:39 +01:00
|
|
|
Gproj = [BlockGf(name_block_generator = [ (block,GfReFreq(indices = inner, mesh = self.Sigma_imp_w[0].mesh))
|
|
|
|
for block,inner in gf_struct_proj[ish] ], make_copies = False ) for ish in range(self.n_shells)]
|
2013-07-23 19:49:42 +02:00
|
|
|
for ish in range(self.n_shells): Gproj[ish].zero()
|
|
|
|
|
2014-12-07 00:29:39 +01:00
|
|
|
mesh = [x.real for x in self.Sigma_imp_w[0].mesh]
|
|
|
|
n_om = len(mesh)
|
2013-07-23 19:49:42 +02:00
|
|
|
|
|
|
|
DOS = {}
|
2014-12-07 00:29:39 +01:00
|
|
|
for sp in self.spin_block_names[self.SO]:
|
|
|
|
DOS[sp] = numpy.zeros([n_om],numpy.float_)
|
2013-07-23 19:49:42 +02:00
|
|
|
|
|
|
|
DOSproj = [ {} for ish in range(self.n_shells) ]
|
|
|
|
DOSproj_orb = [ {} for ish in range(self.n_shells) ]
|
|
|
|
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']
|
2014-12-07 00:29:39 +01:00
|
|
|
DOSproj[ish][sp] = numpy.zeros([n_om],numpy.float_)
|
|
|
|
DOSproj_orb[ish][sp] = numpy.zeros([n_om,dim,dim],numpy.float_)
|
2013-07-23 19:49:42 +02:00
|
|
|
|
|
|
|
ikarray=numpy.array(range(self.n_k))
|
|
|
|
|
|
|
|
for ik in mpi.slice_array(ikarray):
|
|
|
|
|
2014-12-07 00:29:39 +01:00
|
|
|
G_latt_w = self.lattice_gf(ik=ik,mu=mu,iw_or_w="w",broadening=broadening)
|
|
|
|
G_latt_w *= self.bz_weights[ik]
|
2013-07-23 19:49:42 +02:00
|
|
|
|
|
|
|
# non-projected DOS
|
2014-09-22 19:24:33 +02:00
|
|
|
for iom in range(n_om):
|
2014-12-07 00:29:39 +01:00
|
|
|
for bname,gf in G_latt_w: DOS[bname][iom] += gf.data[iom,:,:].imag.trace()/(-3.1415926535)
|
2014-09-22 19:24:33 +02:00
|
|
|
|
2013-07-23 19:49:42 +02:00
|
|
|
#projected DOS:
|
2014-11-15 20:04:54 +01:00
|
|
|
for ish in range(self.n_shells):
|
2013-07-23 19:49:42 +02:00
|
|
|
tmp = Gproj[ish].copy()
|
2014-11-15 20:04:54 +01:00
|
|
|
for ir in range(self.n_parproj[ish]):
|
2015-01-08 13:16:44 +01:00
|
|
|
for bname,gf in tmp: tmp[bname] << self.downfold(ik,ish,bname,G_latt_w[bname],gf,shells='all',ir=ir)
|
2013-07-23 19:49:42 +02:00
|
|
|
Gproj[ish] += tmp
|
2014-09-22 19:24:33 +02:00
|
|
|
|
2013-07-23 19:49:42 +02:00
|
|
|
# collect data from mpi:
|
2014-11-14 09:43:28 +01:00
|
|
|
for bname in DOS:
|
2014-11-15 20:04:54 +01:00
|
|
|
DOS[bname] = mpi.all_reduce(mpi.world, DOS[bname], lambda x,y : x+y)
|
|
|
|
for ish in range(self.n_shells):
|
|
|
|
Gproj[ish] << mpi.all_reduce(mpi.world, Gproj[ish], lambda x,y : x+y)
|
2014-09-22 19:24:33 +02:00
|
|
|
mpi.barrier()
|
|
|
|
|
2014-11-15 20:04:54 +01:00
|
|
|
if self.symm_op != 0: Gproj = self.symmpar.symmetrize(Gproj)
|
2013-07-23 19:49:42 +02:00
|
|
|
|
|
|
|
# rotation to local coord. system:
|
2014-11-15 20:04:54 +01:00
|
|
|
if self.use_rotations:
|
|
|
|
for ish in range(self.n_shells):
|
2015-01-08 13:26:25 +01:00
|
|
|
for bname,gf in Gproj[ish]: Gproj[ish][bname] << self.rotloc(ish,gf,direction='toLocal',shells='all')
|
2014-09-22 19:24:33 +02:00
|
|
|
|
2013-07-23 19:49:42 +02:00
|
|
|
for ish in range(self.n_shells):
|
2014-11-14 09:43:28 +01:00
|
|
|
for bname,gf in Gproj[ish]:
|
|
|
|
for iom in range(n_om): DOSproj[ish][bname][iom] += gf.data[iom,:,:].imag.trace()/(-3.1415926535)
|
|
|
|
DOSproj_orb[ish][bname][:,:,:] += gf.data[:,:,:].imag / (-3.1415926535)
|
2014-01-21 16:47:45 +01:00
|
|
|
|
2013-07-23 19:49:42 +02:00
|
|
|
|
2014-11-15 20:04:54 +01:00
|
|
|
if mpi.is_master_node():
|
2013-07-23 19:49:42 +02:00
|
|
|
# output to files
|
2014-12-07 00:29:39 +01:00
|
|
|
for sp in self.spin_block_names[self.SO]:
|
|
|
|
f=open('./DOScorr%s.dat'%sp, 'w')
|
|
|
|
for i in range(n_om): f.write("%s %s\n"%(mesh[i],DOS[sp][i]))
|
2014-09-22 19:24:33 +02:00
|
|
|
f.close()
|
2013-07-23 19:49:42 +02:00
|
|
|
|
|
|
|
# partial
|
|
|
|
for ish in range(self.n_shells):
|
2014-12-07 00:29:39 +01:00
|
|
|
f=open('DOScorr%s_proj%s.dat'%(sp,ish),'w')
|
|
|
|
for i in range(n_om): f.write("%s %s\n"%(mesh[i],DOSproj[ish][sp][i]))
|
2013-07-23 19:49:42 +02:00
|
|
|
f.close()
|
2014-09-22 19:24:33 +02:00
|
|
|
|
2014-11-26 16:24:02 +01:00
|
|
|
for i in range(self.shells[ish]['dim']):
|
|
|
|
for j in range(i,self.shells[ish]['dim']):
|
2014-12-07 00:29:39 +01:00
|
|
|
Fname = './DOScorr'+sp+'_proj'+str(ish)+'_'+str(i)+'_'+str(j)+'.dat'
|
2013-07-23 19:49:42 +02:00
|
|
|
f=open(Fname,'w')
|
2014-12-07 00:29:39 +01:00
|
|
|
for iom in range(n_om): f.write("%s %s\n"%(mesh[iom],DOSproj_orb[ish][sp][iom,i,j]))
|
2013-07-23 19:49:42 +02:00
|
|
|
f.close()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def spaghettis(self,broadening,shift=0.0,plot_range=None, ishell=None, invert_Akw=False, fermi_surface=False):
|
2014-09-22 19:24:33 +02:00
|
|
|
""" Calculates the correlated band structure with a real-frequency self energy.
|
2014-12-09 14:53:33 +01:00
|
|
|
ATTENTION: Many things from the original input file are overwritten!!!"""
|
2013-07-23 19:49:42 +02:00
|
|
|
|
2014-12-07 00:29:39 +01:00
|
|
|
assert hasattr(self,"Sigma_imp_w"), "spaghettis: Set Sigma_imp_w first."
|
2014-10-31 18:52:32 +01:00
|
|
|
things_to_read = ['n_k','n_orbitals','proj_mat','hopping','n_parproj','proj_mat_pc']
|
2014-11-07 00:55:40 +01:00
|
|
|
value_read = self.read_input_from_hdf(subgrp=self.bands_data,things_to_read=things_to_read)
|
|
|
|
if not value_read: return value_read
|
2013-07-23 19:49:42 +02:00
|
|
|
|
|
|
|
if fermi_surface: ishell=None
|
2014-09-22 19:24:33 +02:00
|
|
|
|
2014-10-31 18:52:32 +01:00
|
|
|
# FIXME CAN REMOVE?
|
2013-07-23 19:49:42 +02:00
|
|
|
# print hamiltonian for checks:
|
2014-11-15 20:04:54 +01:00
|
|
|
if self.SP == 1 and self.SO == 0:
|
2013-07-23 19:49:42 +02:00
|
|
|
f1=open('hamup.dat','w')
|
|
|
|
f2=open('hamdn.dat','w')
|
2014-09-22 19:24:33 +02:00
|
|
|
|
2014-11-15 20:04:54 +01:00
|
|
|
for ik in range(self.n_k):
|
|
|
|
for i in range(self.n_orbitals[ik,0]):
|
2013-07-23 19:49:42 +02:00
|
|
|
f1.write('%s %s\n'%(ik,self.hopping[ik,0,i,i].real))
|
2014-11-15 20:04:54 +01:00
|
|
|
for i in range(self.n_orbitals[ik,1]):
|
2013-07-23 19:49:42 +02:00
|
|
|
f2.write('%s %s\n'%(ik,self.hopping[ik,1,i,i].real))
|
|
|
|
f1.write('\n')
|
|
|
|
f2.write('\n')
|
|
|
|
f1.close()
|
|
|
|
f2.close()
|
|
|
|
else:
|
|
|
|
f=open('ham.dat','w')
|
2014-11-15 20:04:54 +01:00
|
|
|
for ik in range(self.n_k):
|
|
|
|
for i in range(self.n_orbitals[ik,0]):
|
2013-07-23 19:49:42 +02:00
|
|
|
f.write('%s %s\n'%(ik,self.hopping[ik,0,i,i].real))
|
|
|
|
f.write('\n')
|
|
|
|
f.close()
|
|
|
|
|
2014-09-22 19:24:33 +02:00
|
|
|
|
2013-07-23 19:49:42 +02:00
|
|
|
#=========================================
|
|
|
|
# calculate A(k,w):
|
|
|
|
|
|
|
|
mu = self.chemical_potential
|
2014-11-17 10:48:04 +01:00
|
|
|
spn = self.spin_block_names[self.SO]
|
2013-07-23 19:49:42 +02:00
|
|
|
|
|
|
|
# init DOS:
|
2014-12-07 00:29:39 +01:00
|
|
|
mesh = [x.real for x in self.Sigma_imp_w[0].mesh]
|
|
|
|
n_om = len(mesh)
|
2013-07-23 19:49:42 +02:00
|
|
|
|
|
|
|
if plot_range is None:
|
2014-12-07 00:29:39 +01:00
|
|
|
om_minplot = mesh[0]-0.001
|
|
|
|
om_maxplot = mesh[n_om-1] + 0.001
|
2013-07-23 19:49:42 +02:00
|
|
|
else:
|
|
|
|
om_minplot = plot_range[0]
|
|
|
|
om_maxplot = plot_range[1]
|
|
|
|
|
2014-11-15 20:04:54 +01:00
|
|
|
if ishell is None:
|
2013-07-23 19:49:42 +02:00
|
|
|
Akw = {}
|
2014-11-17 10:48:04 +01:00
|
|
|
for sp in spn: Akw[sp] = numpy.zeros([self.n_k, n_om ],numpy.float_)
|
2013-07-23 19:49:42 +02:00
|
|
|
else:
|
|
|
|
Akw = {}
|
2014-11-26 16:24:02 +01:00
|
|
|
for sp in spn: Akw[sp] = numpy.zeros([self.shells[ishell]['dim'],self.n_k, n_om ],numpy.float_)
|
2013-07-23 19:49:42 +02:00
|
|
|
|
|
|
|
if fermi_surface:
|
|
|
|
om_minplot = -2.0*broadening
|
|
|
|
om_maxplot = 2.0*broadening
|
|
|
|
Akw = {}
|
2014-11-17 10:48:04 +01:00
|
|
|
for sp in spn: Akw[sp] = numpy.zeros([self.n_k,1],numpy.float_)
|
2013-07-23 19:49:42 +02:00
|
|
|
|
2014-11-17 10:48:04 +01:00
|
|
|
if not ishell is None:
|
2014-11-26 16:24:02 +01:00
|
|
|
GFStruct_proj = [ (sp, range(self.shells[ishell]['dim'])) for sp in spn ]
|
2014-12-07 00:29:39 +01:00
|
|
|
Gproj = BlockGf(name_block_generator = [ (block,GfReFreq(indices = inner, mesh = self.Sigma_imp_w[0].mesh)) for block,inner in GFStruct_proj ], make_copies = False)
|
2013-07-23 19:49:42 +02:00
|
|
|
Gproj.zero()
|
|
|
|
|
2014-11-15 20:04:54 +01:00
|
|
|
for ik in range(self.n_k):
|
2013-07-23 19:49:42 +02:00
|
|
|
|
2014-12-07 00:29:39 +01:00
|
|
|
G_latt_w = self.lattice_gf(ik=ik,mu=mu,iw_or_w="w",broadening=broadening)
|
2014-11-15 20:04:54 +01:00
|
|
|
if ishell is None:
|
2013-07-23 19:49:42 +02:00
|
|
|
# non-projected A(k,w)
|
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):
|
2013-07-23 19:49:42 +02:00
|
|
|
if fermi_surface:
|
2014-12-07 00:29:39 +01:00
|
|
|
for bname,gf in G_latt_w: Akw[bname][ik,0] += gf.data[iom,:,:].imag.trace()/(-3.1415926535) * (mesh[1]-mesh[0])
|
2013-07-23 19:49:42 +02:00
|
|
|
else:
|
2014-12-07 00:29:39 +01:00
|
|
|
for bname,gf in G_latt_w: Akw[bname][ik,iom] += gf.data[iom,:,:].imag.trace()/(-3.1415926535)
|
2014-11-14 09:43:28 +01:00
|
|
|
Akw[bname][ik,iom] += ik*shift # shift Akw for plotting in xmgrace -- REMOVE
|
2014-09-22 19:24:33 +02:00
|
|
|
|
2013-07-23 19:49:42 +02:00
|
|
|
|
|
|
|
else:
|
|
|
|
# projected A(k,w):
|
|
|
|
Gproj.zero()
|
|
|
|
tmp = Gproj.copy()
|
2014-11-15 20:04:54 +01:00
|
|
|
for ir in range(self.n_parproj[ishell]):
|
2015-01-08 13:16:44 +01:00
|
|
|
for bname,gf in tmp: tmp[bname] << self.downfold(ik,ishell,bname,G_latt_w[bname],gf,shells='all',ir=ir)
|
2013-07-23 19:49:42 +02:00
|
|
|
Gproj += tmp
|
2014-09-22 19:24:33 +02:00
|
|
|
|
2014-10-31 18:52:32 +01:00
|
|
|
# FIXME NEED TO READ IN ROTMAT_ALL FROM PARPROJ SUBGROUP, REPLACE ROTLOC WITH ROTLOC_ALL
|
2013-07-23 19:49:42 +02:00
|
|
|
# TO BE FIXED:
|
|
|
|
# rotate to local frame
|
|
|
|
#if (self.use_rotations):
|
2014-11-14 09:43:28 +01:00
|
|
|
# for bname,gf in Gproj: Gproj[bname] << self.rotloc(0,gf,direction='toLocal')
|
2013-07-23 19:49:42 +02:00
|
|
|
|
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):
|
2014-11-26 16:24:02 +01:00
|
|
|
for ish in range(self.shells[ishell]['dim']):
|
2014-11-17 10:48:04 +01:00
|
|
|
for ibn in spn:
|
2013-07-23 19:49:42 +02:00
|
|
|
Akw[ibn][ish,ik,iom] = Gproj[ibn].data[iom,ish,ish].imag/(-3.1415926535)
|
2014-09-22 19:24:33 +02:00
|
|
|
|
|
|
|
|
2013-07-23 19:49:42 +02:00
|
|
|
# END k-LOOP
|
2014-11-15 20:04:54 +01:00
|
|
|
if mpi.is_master_node():
|
|
|
|
if ishell is None:
|
2014-09-22 19:24:33 +02:00
|
|
|
|
2014-11-17 10:48:04 +01:00
|
|
|
for ibn in spn:
|
2013-07-23 19:49:42 +02:00
|
|
|
# loop over GF blocs:
|
2014-09-22 19:24:33 +02:00
|
|
|
|
2014-11-15 20:04:54 +01:00
|
|
|
if invert_Akw:
|
2013-07-23 19:49:42 +02:00
|
|
|
maxAkw=Akw[ibn].max()
|
|
|
|
minAkw=Akw[ibn].min()
|
|
|
|
|
|
|
|
|
|
|
|
# open file for storage:
|
|
|
|
if fermi_surface:
|
|
|
|
f=open('FS_'+ibn+'.dat','w')
|
|
|
|
else:
|
|
|
|
f=open('Akw_'+ibn+'.dat','w')
|
|
|
|
|
|
|
|
for ik in range(self.n_k):
|
|
|
|
if fermi_surface:
|
2014-11-15 20:04:54 +01:00
|
|
|
if invert_Akw:
|
2014-09-22 19:24:33 +02:00
|
|
|
Akw[ibn][ik,0] = 1.0/(minAkw-maxAkw)*(Akw[ibn][ik,0] - maxAkw)
|
2013-07-23 19:49:42 +02:00
|
|
|
f.write('%s %s\n'%(ik,Akw[ibn][ik,0]))
|
|
|
|
else:
|
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):
|
2014-11-15 20:04:54 +01:00
|
|
|
if invert_Akw:
|
2013-07-23 19:49:42 +02:00
|
|
|
Akw[ibn][ik,iom] = 1.0/(minAkw-maxAkw)*(Akw[ibn][ik,iom] - maxAkw)
|
2014-11-15 20:04:54 +01:00
|
|
|
if shift > 0.0001:
|
2014-12-07 00:29:39 +01:00
|
|
|
f.write('%s %s\n'%(mesh[iom],Akw[ibn][ik,iom]))
|
2013-07-23 19:49:42 +02:00
|
|
|
else:
|
2014-12-07 00:29:39 +01:00
|
|
|
f.write('%s %s %s\n'%(ik,mesh[iom],Akw[ibn][ik,iom]))
|
2013-07-23 19:49:42 +02:00
|
|
|
|
|
|
|
f.write('\n')
|
2014-09-22 19:24:33 +02:00
|
|
|
|
2013-07-23 19:49:42 +02:00
|
|
|
f.close()
|
|
|
|
|
|
|
|
else:
|
2014-11-17 10:48:04 +01:00
|
|
|
for ibn in spn:
|
2014-11-26 16:24:02 +01:00
|
|
|
for ish in range(self.shells[ishell]['dim']):
|
2014-09-22 19:24:33 +02:00
|
|
|
|
2014-11-15 20:04:54 +01:00
|
|
|
if invert_Akw:
|
2013-07-23 19:49:42 +02:00
|
|
|
maxAkw=Akw[ibn][ish,:,:].max()
|
|
|
|
minAkw=Akw[ibn][ish,:,:].min()
|
|
|
|
|
2014-09-22 19:24:33 +02:00
|
|
|
f=open('Akw_'+ibn+'_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):
|
2014-11-15 20:04:54 +01:00
|
|
|
if invert_Akw:
|
2013-07-23 19:49:42 +02:00
|
|
|
Akw[ibn][ish,ik,iom] = 1.0/(minAkw-maxAkw)*(Akw[ibn][ish,ik,iom] - maxAkw)
|
2014-11-15 20:04:54 +01:00
|
|
|
if shift > 0.0001:
|
2014-12-07 00:29:39 +01:00
|
|
|
f.write('%s %s\n'%(mesh[iom],Akw[ibn][ish,ik,iom]))
|
2013-07-23 19:49:42 +02:00
|
|
|
else:
|
2014-12-07 00:29:39 +01:00
|
|
|
f.write('%s %s %s\n'%(ik,mesh[iom],Akw[ibn][ish,ik,iom]))
|
2013-07-23 19:49:42 +02:00
|
|
|
|
|
|
|
f.write('\n')
|
2014-09-22 19:24:33 +02:00
|
|
|
|
2013-07-23 19:49:42 +02:00
|
|
|
f.close()
|
|
|
|
|
|
|
|
|
|
|
|
def partial_charges(self,beta=40):
|
|
|
|
"""Calculates the orbitally-resolved density matrix for all the orbitals considered in the input.
|
|
|
|
The theta-projectors are used, hence case.parproj data is necessary"""
|
2014-09-22 19:24:33 +02:00
|
|
|
|
2014-11-07 00:55:40 +01:00
|
|
|
value_read = self.read_parproj_input_from_hdf()
|
|
|
|
if not value_read: return value_read
|
2014-11-14 09:43:28 +01:00
|
|
|
if self.symm_op: self.symmpar = Symmetry(self.hdf_file,subgroup=self.symmpar_data)
|
2014-09-22 19:24:33 +02:00
|
|
|
|
2013-07-23 19:49:42 +02:00
|
|
|
# Density matrix in the window
|
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]
|
2014-11-26 16:24:02 +01:00
|
|
|
self.dens_mat_window = [ [numpy.zeros([self.shells[ish]['dim'],self.shells[ish]['dim']],numpy.complex_) for ish in range(self.n_shells)]
|
2014-11-17 10:48:04 +01:00
|
|
|
for isp in range(len(spn)) ] # init the density matrix
|
2013-07-23 19:49:42 +02:00
|
|
|
|
|
|
|
mu = self.chemical_potential
|
2014-11-26 16:24:02 +01:00
|
|
|
GFStruct_proj = [ [ (sp, range(self.shells[i]['dim'])) for sp in spn ] for i in range(self.n_shells) ]
|
2014-12-07 00:29:39 +01:00
|
|
|
if hasattr(self,"Sigma_imp_iw"):
|
|
|
|
Gproj = [BlockGf(name_block_generator = [ (block,GfImFreq(indices = inner, mesh = self.Sigma_imp_iw[0].mesh)) for block,inner in GFStruct_proj[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:
|
2014-11-14 09:43:28 +01:00
|
|
|
Gproj = [BlockGf(name_block_generator = [ (block,GfImFreq(indices = inner, beta = beta)) for block,inner in GFStruct_proj[ish] ], make_copies = False)
|
2014-11-15 20:04:54 +01:00
|
|
|
for ish in range(self.n_shells)]
|
2013-07-23 19:49:42 +02:00
|
|
|
|
2014-11-15 20:04:54 +01:00
|
|
|
for ish in range(self.n_shells): Gproj[ish].zero()
|
2013-07-23 19:49:42 +02:00
|
|
|
|
|
|
|
ikarray=numpy.array(range(self.n_k))
|
2014-09-22 19:24:33 +02:00
|
|
|
|
2013-07-23 19:49:42 +02:00
|
|
|
for ik in mpi.slice_array(ikarray):
|
2014-12-07 00:29:39 +01:00
|
|
|
G_latt_iw = self.lattice_gf(ik=ik,mu=mu,iw_or_w="iw",beta=beta)
|
|
|
|
G_latt_iw *= self.bz_weights[ik]
|
2013-07-23 19:49:42 +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
|
|
|
tmp = Gproj[ish].copy()
|
2014-11-15 20:04:54 +01:00
|
|
|
for ir in range(self.n_parproj[ish]):
|
2015-01-08 13:16:44 +01:00
|
|
|
for bname,gf in tmp: tmp[bname] << self.downfold(ik,ish,bname,G_latt_iw[bname],gf,shells='all',ir=ir)
|
2013-07-23 19:49:42 +02:00
|
|
|
Gproj[ish] += tmp
|
2014-09-22 19:24:33 +02:00
|
|
|
|
2013-07-23 19:49:42 +02:00
|
|
|
#collect data from mpi:
|
2014-11-15 20:04:54 +01:00
|
|
|
for ish in range(self.n_shells):
|
|
|
|
Gproj[ish] << mpi.all_reduce(mpi.world, Gproj[ish], lambda x,y : x+y)
|
2013-07-23 19:49:42 +02:00
|
|
|
mpi.barrier()
|
|
|
|
|
|
|
|
|
|
|
|
# Symmetrisation:
|
2014-11-15 20:04:54 +01:00
|
|
|
if self.symm_op != 0: Gproj = self.symmpar.symmetrize(Gproj)
|
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
|
|
|
|
|
|
|
# Rotation to local:
|
2014-11-15 20:04:54 +01:00
|
|
|
if self.use_rotations:
|
2015-01-08 13:26:25 +01:00
|
|
|
for bname,gf in Gproj[ish]: Gproj[ish][bname] << self.rotloc(ish,gf,direction='toLocal',shells='all')
|
2013-07-23 19:49:42 +02:00
|
|
|
|
|
|
|
isp = 0
|
2014-11-14 09:43:28 +01:00
|
|
|
for bname,gf in Gproj[ish]: #dmg.append(Gproj[ish].density()[bname])
|
|
|
|
self.dens_mat_window[isp][ish] = Gproj[ish].density()[bname]
|
2013-07-23 19:49:42 +02:00
|
|
|
isp+=1
|
2014-09-22 19:24:33 +02:00
|
|
|
|
2013-07-23 19:49:42 +02:00
|
|
|
# add Density matrices to get the total:
|
2014-11-17 10:48:04 +01: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
|
|
|
|
2014-12-09 18:24:50 +01:00
|
|
|
# ----------------- transport -----------------------
|
2014-11-20 13:17:46 +01:00
|
|
|
|
|
|
|
def read_transport_input_from_hdf(self):
|
|
|
|
"""
|
|
|
|
Reads the data for transport calculations from the HDF file
|
|
|
|
"""
|
2014-12-19 11:53:06 +01:00
|
|
|
thingstoread = ['band_window','band_window_optics','velocities_k','lattice_angles','lattice_constants','lattice_type','n_symmetries','rot_symmetries']
|
2014-11-20 13:17:46 +01:00
|
|
|
retval = self.read_input_from_hdf(subgrp=self.transp_data,things_to_read = thingstoread)
|
|
|
|
return retval
|
|
|
|
|
|
|
|
|
2014-12-19 11:53:06 +01:00
|
|
|
def cellvolume(self, lattice_type, lattice_constants, latticeangle):
|
2014-11-20 13:17:46 +01:00
|
|
|
"""
|
|
|
|
Calculate cell volume: volumecc conventional cell, volumepc, primitive cell.
|
|
|
|
"""
|
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])
|
|
|
|
volumecc = a * b * c * numpy.sqrt(1 + 2 * c_al * c_be * c_ga - c_al ** 2 - c_be * 82 - c_ga ** 2)
|
|
|
|
|
|
|
|
det = {"P":1, "F":4, "B":2, "R":3, "H":1, "CXY":2, "CYZ":2, "CXZ":2}
|
2014-12-19 11:53:06 +01:00
|
|
|
volumepc = volumecc / det[lattice_type]
|
2014-11-20 13:17:46 +01:00
|
|
|
|
|
|
|
return volumecc, volumepc
|
|
|
|
|
|
|
|
|
2014-12-19 11:53:06 +01:00
|
|
|
def transport_distribution(self, directions=['xx'], energy_window=None, Om_mesh=[0.0], beta=40, with_Sigma=False, n_om=None, broadening=0.01):
|
|
|
|
"""
|
|
|
|
calculate Tr A(k,w) v(k) A(k, w+Om) v(k).
|
|
|
|
energy_window: regime for omega integral
|
|
|
|
Om_mesh: mesh for optic conductivitity. Om_mesh is repinned to the self-energy mesh!
|
|
|
|
directions: list of directions: xx,yy,zz,xy,yz,zx.
|
|
|
|
with_Sigma: Use Sigma_w = 0 if False (In this case it is necessary to specifiy the energywindow (energy_window),
|
|
|
|
the number of omega points (n_om) in the window and the broadening (broadening)).
|
2014-11-20 13:17:46 +01:00
|
|
|
"""
|
|
|
|
|
2014-12-19 11:53:06 +01: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():
|
|
|
|
ar = HDFArchive(self.hdf_file, 'a')
|
2014-12-19 11:53:06 +01:00
|
|
|
if not (self.transp_data in ar): raise IOError, "transport_distribution: No %s subgroup in hdf file found! Call convert_transp_input first." %self.transp_data
|
2014-11-20 13:17:46 +01:00
|
|
|
self.read_transport_input_from_hdf()
|
|
|
|
|
2014-12-19 11:53:06 +01:00
|
|
|
n_inequiv_spin_blocks = self.SP + 1 - self.SO # up and down are equivalent if SP = 0
|
|
|
|
self.directions = directions
|
|
|
|
dir_to_int = {'x':0, 'y':1, 'z':2}
|
2014-11-20 13:17:46 +01:00
|
|
|
|
2014-12-19 11:53:06 +01:00
|
|
|
# k-dependent-projections.
|
|
|
|
assert self.k_dep_projection == 1, "transport_distribution: k dependent projection is not implemented!"
|
|
|
|
|
2014-11-20 13:17:46 +01:00
|
|
|
# calculate A(k,w)
|
|
|
|
#######################################
|
|
|
|
|
2014-12-19 11:53:06 +01:00
|
|
|
# Define mesh for Greens function and in the specified energy window
|
2014-12-10 13:18:39 +01:00
|
|
|
if (with_Sigma == True):
|
2014-12-07 00:29:39 +01: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)
|
2014-12-19 11:53:06 +01:00
|
|
|
print "Using omega mesh provided by Sigma!"
|
2014-11-20 13:17:46 +01:00
|
|
|
|
2014-12-19 11:53:06 +01:00
|
|
|
if energy_window is not None:
|
|
|
|
# Find according window in Sigma mesh
|
|
|
|
ioffset = numpy.sum(self.omega < energy_window[0])
|
|
|
|
self.omega = self.omega[numpy.logical_and(self.omega >= energy_window[0], self.omega <= energy_window[1])]
|
2014-11-20 13:17:46 +01:00
|
|
|
n_om = len(self.omega)
|
|
|
|
|
|
|
|
# Truncate Sigma to given omega window
|
2014-12-19 11:53:06 +01:00
|
|
|
# In the future there should be an option in gf to manipulate the mesh (e.g. truncate) directly.
|
|
|
|
# For 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']]
|
2014-11-20 13:17:46 +01:00
|
|
|
glist = lambda : [ GfReFreq(indices = inner, window=(self.omega[0], self.omega[-1]),n_points=n_om) for block, inner in self.gf_struct_sumk[icrsh]]
|
2014-12-07 00:29:39 +01: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]:
|
2014-11-20 13:17:46 +01:00
|
|
|
for iL in g.indices:
|
|
|
|
for iR in g.indices:
|
|
|
|
for iom in xrange(n_om):
|
2014-12-19 11:53:06 +01:00
|
|
|
g.data[iom,iL,iR] = Sigma_save[i].data[ioffset+iom,iL,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!"
|
|
|
|
assert broadening != 0.0 and broadening is not None, "transport_distribution: Broadening necessary to calculate transport distribution!"
|
|
|
|
self.omega = numpy.linspace(energy_window[0],energy_window[1],n_om)
|
|
|
|
mesh = [energy_window[0], energy_window[1], n_om]
|
|
|
|
mu = 0.0
|
|
|
|
|
|
|
|
# Check if energy_window is sufficiently large
|
2014-12-09 18:24:50 +01:00
|
|
|
if (abs(self.fermi_dis(self.omega[0]*beta)*self.fermi_dis(-self.omega[0]*beta)) > 1e-5
|
|
|
|
or abs(self.fermi_dis(self.omega[-1]*beta)*self.fermi_dis(-self.omega[-1]*beta)) > 1e-5):
|
2014-12-19 11:53:06 +01:00
|
|
|
print "\n####################################################################"
|
|
|
|
print "transport_distribution: WARNING - energy window might be too narrow!"
|
|
|
|
print "####################################################################\n"
|
2014-11-20 13:17:46 +01:00
|
|
|
|
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)
|
2014-12-19 11:53:06 +01:00
|
|
|
iOm_mesh = numpy.array([int(Om / d_omega) for Om in Om_mesh])
|
|
|
|
self.Om_mesh = iOm_mesh * d_omega
|
2014-11-20 13:17:46 +01:00
|
|
|
|
|
|
|
if mpi.is_master_node():
|
|
|
|
print "Chemical potential: ", mu
|
2014-12-19 11:53:06 +01:00
|
|
|
print "Using n_om = %s points in the energy_window [%s,%s]"%(n_om, self.omega[0], self.omega[-1]),
|
|
|
|
print "where the omega vector is:"
|
2014-11-20 13:17:46 +01:00
|
|
|
print self.omega
|
2014-12-19 11:53:06 +01:00
|
|
|
print "Calculation requested for Omega mesh: ", numpy.array(Om_mesh)
|
|
|
|
print "Omega mesh automatically repinned to: ", self.Om_mesh
|
2014-11-20 13:17:46 +01:00
|
|
|
|
2014-12-19 11:53:06 +01:00
|
|
|
self.Gamma_w = {direction: numpy.zeros((len(self.Om_mesh), n_om), dtype=numpy.float_) for direction in self.directions}
|
2014-11-20 13:17:46 +01:00
|
|
|
|
2014-12-19 11:53:06 +01:00
|
|
|
# Sum over all k-points
|
2014-11-20 13:17:46 +01:00
|
|
|
ikarray = numpy.array(range(self.n_k))
|
|
|
|
for ik in mpi.slice_array(ikarray):
|
2014-12-19 11:53:06 +01:00
|
|
|
# Calculate G_w for ik and initialize A_kw
|
|
|
|
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)]
|
2014-11-20 13:17:46 +01:00
|
|
|
|
2014-12-19 11:53:06 +01:00
|
|
|
for isp in range(n_inequiv_spin_blocks):
|
|
|
|
# Obtain A_kw from G_w (swapaxes is used to have omega in the 3rd dimension)
|
|
|
|
A_kw[isp].real = -copy.deepcopy(G_w[self.spin_block_names[self.SO][isp]].data.swapaxes(0,1).swapaxes(1,2)).imag / numpy.pi
|
|
|
|
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)
|
2014-11-20 13:17:46 +01: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):
|
|
|
|
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
|
|
|
|
for direction in self.directions:
|
2014-11-20 13:17:46 +01:00
|
|
|
for iw in xrange(n_om):
|
2014-12-19 11:53:06 +01:00
|
|
|
for iq in range(len(self.Om_mesh)):
|
|
|
|
if(iw + iOm_mesh[iq] >= n_om): continue
|
|
|
|
self.Gamma_w[direction][iq, iw] += (numpy.dot(numpy.dot(numpy.dot(vel_R[v_i, v_i, dir_to_int[direction[0]]],
|
|
|
|
A_kw[isp][A_i, A_i, iw]), vel_R[v_i, v_i, dir_to_int[direction[1]]]),
|
|
|
|
A_kw[isp][A_i, A_i, iw + iOm_mesh[iq]]).trace().real * self.bz_weights[ik])
|
2014-11-20 13:17:46 +01:00
|
|
|
|
2014-12-19 11:53:06 +01:00
|
|
|
for direction in self.directions:
|
|
|
|
self.Gamma_w[direction] = (mpi.all_reduce(mpi.world, self.Gamma_w[direction], lambda x, y : x + y)
|
2014-12-23 13:03:01 +01:00
|
|
|
/ self.cellvolume(self.lattice_type, self.lattice_constants, self.lattice_angles)[1] / self.n_symmetries)
|
2014-12-19 11:53:06 +01:00
|
|
|
|
2014-11-20 13:17:46 +01:00
|
|
|
|
2014-12-19 11:53:06 +01:00
|
|
|
def transport_coefficient(self, direction, iq=0, n=0, beta=40):
|
|
|
|
"""
|
|
|
|
calculates the transport coefficients A_n in a given direction and for a given Omega. (see documentation)
|
|
|
|
A_1 is set to nan if requested for Omega != 0.0
|
|
|
|
iq: index of Omega point in Om_mesh
|
|
|
|
direction: 'xx','yy','zz','xy','xz','yz'
|
|
|
|
"""
|
|
|
|
if not (mpi.is_master_node()): return
|
|
|
|
|
|
|
|
assert hasattr(self,'Gamma_w'), "transport_coefficient: Run transport_distribution first or load data from h5!"
|
|
|
|
A = 0.0
|
|
|
|
omegaT = self.omega * beta
|
|
|
|
d_omega = self.omega[1] - self.omega[0]
|
|
|
|
if (self.Om_mesh[iq] == 0.0):
|
|
|
|
for iw in xrange(self.Gamma_w[direction].shape[1]):
|
|
|
|
A += self.Gamma_w[direction][iq, iw] * self.fermi_dis(omegaT[iw]) * self.fermi_dis(-omegaT[iw]) * numpy.float(omegaT[iw])**n * d_omega
|
|
|
|
elif (n == 0.0):
|
|
|
|
for iw in xrange(self.Gamma_w[direction].shape[1]):
|
|
|
|
A += (self.Gamma_w[direction][iq, iw] * (self.fermi_dis(omegaT[iw]) - self.fermi_dis(omegaT[iw] + self.Om_mesh[iq] * beta))
|
|
|
|
/ (self.Om_mesh[iq] * beta) * d_omega)
|
|
|
|
else:
|
|
|
|
A = numpy.nan
|
|
|
|
return A * numpy.pi * (2.0-self.SP)
|
2014-12-10 13:18:39 +01:00
|
|
|
|
2014-12-19 11:53:06 +01:00
|
|
|
|
2014-12-10 13:18:39 +01:00
|
|
|
def conductivity_and_seebeck(self, beta=40):
|
2014-11-20 13:17:46 +01:00
|
|
|
"""
|
2014-12-19 11:53:06 +01:00
|
|
|
Calculates the Seebeck coefficient and the conductivity for a given Gamma_w
|
|
|
|
"""
|
|
|
|
if not (mpi.is_master_node()): return
|
|
|
|
|
|
|
|
assert hasattr(self,'Gamma_w'), "conductivity_and_seebeck: Run transport_distribution first or load data from h5!"
|
|
|
|
n_q = self.Gamma_w[self.directions[0]].shape[0]
|
|
|
|
|
|
|
|
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}
|
|
|
|
self.seebeck = {direction: numpy.nan for direction in self.directions}
|
|
|
|
self.optic_cond = {direction: numpy.full((n_q,),numpy.nan) for direction in self.directions}
|
|
|
|
|
|
|
|
for direction in self.directions:
|
|
|
|
for iq in xrange(n_q):
|
|
|
|
A0[direction][iq] = self.transport_coefficient(direction, iq=iq, n=0, beta=beta)
|
|
|
|
A1[direction][iq] = self.transport_coefficient(direction, iq=iq, n=1, beta=beta)
|
|
|
|
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])
|
|
|
|
if ~numpy.isnan(A1[direction][iq]):
|
|
|
|
# Seebeck is overwritten if there is more than one Omega = 0 in Om_mesh
|
|
|
|
self.seebeck[direction] = - A1[direction][iq] / A0[direction][iq] * 86.17
|
|
|
|
self.optic_cond[direction] = A0[direction] * 10700.0
|
|
|
|
for iq in xrange(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])
|
|
|
|
if not (numpy.isnan(A1[direction][iq])):
|
|
|
|
print "Seebeck in direction %s for Omega = 0.00 %f x 10^(-6) V/K" % (direction, self.seebeck[direction])
|
|
|
|
|
2014-11-20 13:17:46 +01:00
|
|
|
|
2014-12-09 18:24:50 +01:00
|
|
|
def fermi_dis(self, x):
|
2014-12-19 11:53:06 +01:00
|
|
|
"""
|
|
|
|
fermi distribution at x = omega * beta
|
|
|
|
"""
|
2014-12-09 18:24:50 +01:00
|
|
|
return 1.0/(numpy.exp(x)+1)
|
|
|
|
|