24小时热门版块排行榜    

Znn3bq.jpeg
查看: 432  |  回复: 2
当前主题已经存档。
当前只显示满足指定条件的回帖,点击这里查看本话题的所有回帖

guifan

木虫 (著名写手)

[交流] 【求助】在VASP中能否输出d-t2g的态密度?

请问各位虫友,能否用VASP计算出d-t2g的DOS?
期待大家的指点
回复此楼

» 猜你喜欢

已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖

灯塔守望者

铁杆木虫 (正式写手)

★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★
小木虫(金币+0.5):给个红包,谢谢回帖交流
guifan(金币+2,VIP+0): 9-30 21:09
wuchenwf(金币+10,VIP+0):谢谢 10-1 22:36
给你一个提取t2, eg的源代码,自己编写的,有些粗糙,仅满足一般的要求,可以提取pdos,t2-eg dos以及积分。只针对考虑自选以及不考虑f电子的情况下,欢迎指正。
!initializing all parameters
!E s-up s-down py-up py-down pz-up pz-down px-up
!                   px-down  dxy-up  dxy-down  dyz-up  dyz-down
!                   dz2-up dz2-down  dxz-up  dxz-down dx2-up  dx2-down
real*8,allocatable :: dos_matrix(:,,integral_spdos(:,,t2g_eg(:,,pdos(:,,integral_t2g_eg(:,
real*8 :: fermi,normalization,enmax,enmin,step
integer(kind=8) :: i,j,rows,columns=19,nth,iserror
character(len=8) filename
write(*,*)"please input the number of atoms "
read(*,*),nth

open(unit=11,file='DOSCAR',form='formatted',status='old',iostat=iserror)
if (iserror>0) then

    write(*,*)"The DOSCAR file does not exist"
    goto 200
end if

!filename= "sitedos.dat"
open(unit=12,file="SPDOS.dat",form='formatted',status='replace')
open(unit=13,file='t2g_eg.dat',form='formatted',status='replace')
open(unit=14,file='PDOS.dat',form='formatted',status='replace')
open(unit=15,file='INSPDOS.dat',form='formatted',status='replace')
open(unit=16,file='INt2g_eg.dat',form='formatted',status='replace')
write(13,*)'# E,t2g_up,t2g_dn,eg_up,eg_dn'
write(14,*)'# E,s_up,s_dn,p_up,p_dn,d_up,d_dn'

!skip iformation of start
do i=1,5
   read (11,*)
end do

!read fermi energy and rows
read (11,*)enmax,enmin,rows,fermi,normalizatio
step=(enmax-enmin)/(rows-1)
allocate(dos_matrix(rows,columns))
allocate(integral_spdos(rows,columns))
allocate(t2g_eg(rows,5))
allocate(pdos(rows,7))
allocate(integral_t2g_eg(rows,5))
integral_spdos(:,=0

!skip to the nth atoms
do i= 1,(rows+1)
   read(11,*)
end do

do i=1,rows
   read(11,'(19E12.5)')(dos_matrix(i,j),j=1,19)
   dos_matrix(i,1)=dos_matrix(i,1)-fermi

     do j=3,columns
        if((mod(j,2).EQ.1))then
        dos_matrix(i,j)=-1*dos_matrix(i,j)
        else
     endif

     end do


!calcualte SPDOS, write SPDOS.dat file
write(12,'(19E12.3)')(dos_matrix(i,j),j=1,19)


!calcualte DOS of t2g and eg, write t2g_eg.dat file
t2g_eg(i,1)=dos_matrix(i,1)
!initializing all parameters
!E s-up s-down py-up py-down pz-up pz-down px-up
!                   px-down  dxy-up  dxy-down  dyz-up  dyz-down
!                   dz2-up dz2-down  dxz-up  dxz-down dx2-up  dx2-down
real*8,allocatable :: dos_matrix(:,,integral_spdos(:,,t2g_eg(:,,pdos(:,,integral_t2g_eg(:,
real*8 :: fermi,normalization,enmax,enmin,step
integer(kind=8) :: i,j,rows,columns=19,nth,iserror
character(len=8) filename
write(*,*)"please input the number of atoms "
read(*,*),nth

open(unit=11,file='DOSCAR',form='formatted',status='old',iostat=iserror)
if (iserror>0) then

    write(*,*)"The DOSCAR file does not exist"
    goto 200
end if

!filename= "sitedos.dat"
open(unit=12,file="SPDOS.dat",form='formatted',status='replace')
open(unit=13,file='t2g_eg.dat',form='formatted',status='replace')
open(unit=14,file='PDOS.dat',form='formatted',status='replace')
open(unit=15,file='INSPDOS.dat',form='formatted',status='replace')
open(unit=16,file='INt2g_eg.dat',form='formatted',status='replace')
write(13,*)'# E,t2g_up,t2g_dn,eg_up,eg_dn'
write(14,*)'# E,s_up,s_dn,p_up,p_dn,d_up,d_dn'

!skip iformation of start
do i=1,5
   read (11,*)
end do

!read fermi energy and rows
read (11,*)enmax,enmin,rows,fermi,normalizatio
step=(enmax-enmin)/(rows-1)
allocate(dos_matrix(rows,columns))
allocate(integral_spdos(rows,columns))
allocate(t2g_eg(rows,5))
allocate(pdos(rows,7))
allocate(integral_t2g_eg(rows,5))
integral_spdos(:,=0

!skip to the nth atoms
do i= 1,(rows+1)
   read(11,*)
end do

do i=1,rows
   read(11,'(19E12.5)')(dos_matrix(i,j),j=1,19)
   dos_matrix(i,1)=dos_matrix(i,1)-fermi

     do j=3,columns
        if((mod(j,2).EQ.1))then
        dos_matrix(i,j)=-1*dos_matrix(i,j)
        else
     endif

     end do


!calcualte SPDOS, write SPDOS.dat file
write(12,'(19E12.3)')(dos_matrix(i,j),j=1,19)


!calcualte DOS of t2g and eg, write t2g_eg.dat file
t2g_eg(i,1)=dos_matrix(i,1)
t2g_eg(i,2)=dos_matrix(i,10)+dos_matrix(i,12)+dos_matrix(i,16)
t2g_eg(i,3)=dos_matrix(i,11)+dos_matrix(i,13)+dos_matrix(i,17)
t2g_eg(i,4)=dos_matrix(i,14)+dos_matrix(i,18)
t2g_eg(i,5)=dos_matrix(i,15)+dos_matrix(i,19)
write(13,'(5E12.3)')(t2g_eg(i,j),j=1,5)

!calculate PDOS and write PDOS.dat
pdos(i,1)=dos_matrix(i,1)
pdos(i,2)=dos_matrix(i,2)
pdos(i,3)=dos_matrix(i,3)
pdos(i,4)=dos_matrix(i,4)+dos_matrix(i,6)+dos_matrix(i,8)
pdos(i,5)=dos_matrix(i,5)+dos_matrix(i,6)+dos_matrix(i,9)
pdos(i,6)=t2g_eg(i,2)+t2g_eg(i,4)
pdos(i,7)=t2g_eg(i,3)+t2g_eg(i,5)
write(14,'(7E12.3)')(pdos(i,j),j=1,7)

end do

write(*,*)step
!integrate SPDOS and write integral_spdos.dat
integral_spdos(:,1)=dos_matrix(:,1)
do i=2,rows
    do j=2, columns
     integral_spdos(i,j)=(dos_matrix(i-1,j)+dos_matrix(i,j))*step*0.5+integral_spdos(i-1,j)
    end do
     integral_t2g_eg(i,1)=integral_spdos(i,1)
     integral_t2g_eg(i,2)=integral_spdos(i,10)+integral_spdos(i,12)+integral_spdos(i,16)
     integral_t2g_eg(i,3)=integral_spdos(i,11)+integral_spdos(i,13)+integral_spdos(i,17)
     integral_t2g_eg(i,4)=integral_spdos(i,14)+integral_spdos(i,18)
     integral_t2g_eg(i,5)=integral_spdos(i,15)+integral_spdos(i,19)
end do
write(15,'(19F7.3)')((integral_spdos(i,j),j=1,19),i=1,rows)
write(16,'(5F7.3)')((integral_t2g_eg(i,j),j=1,5),i=1,rows)
deallocate (dos_matrix)
deallocate (integral_spdos)
deallocate (pdos)
deallocate (t2g_eg)
deallocate (integral_t2g_eg)
close (11)
close (12)
close (13)
close (14)
close (15)
close (16)
200 end
3楼2009-09-30 10:33:10
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖
查看全部 3 个回答

liluyan

银虫 (正式写手)

★ ★
小木虫(金币+0.5):给个红包,谢谢回帖交流
freshgirl(金币+1,VIP+0):谢谢参与~ 9-23 14:12
当然能啊,计算时设置LORBIT=11,然后可以找相应的工具来画各个轨道的态密度就可以了,比如p4vasp就很方便啊
2楼2009-09-23 13:45:27
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖
普通表情 高级回复 (可上传附件)
最具人气热帖推荐 [查看全部] 作者 回/看 最后发表
[考研] 机械专368 有去处吗 +4 种大树 2026-04-10 4/200 2026-04-10 15:31 by jiajinhpu
[考研] 287求调剂 +14 Fnhc 2026-04-07 20/1000 2026-04-10 12:57 by 希望之星2024
[考研] 一志愿西北工业大学289 085602 +24 yang婷 2026-04-10 24/1200 2026-04-10 10:25 by jiajinhpu
[考研] 调剂 +19 不逢春 2026-04-05 20/1000 2026-04-10 10:15 by may_新宇
[考研] 301求调剂 +6 静静想想 2026-04-05 6/300 2026-04-10 09:15 by Delta2012
[考研] 288求调剂,一志愿华南理工大学071005 +16 ioodiiij 2026-04-08 16/800 2026-04-09 23:08 by wolf97
[考研] 求调剂材料科学与工程一志愿985初试365分 +5 材化李可 2026-04-08 5/250 2026-04-09 17:00 by Lilly_Li
[考研] 一志愿085404,总分291,四级已过,求调剂 +10 阿俊阿俊阿俊 2026-04-04 12/600 2026-04-09 16:18 by lin-da
[考研] 280求调剂 +7 wzzz王 2026-04-09 7/350 2026-04-09 15:32 by 释放天性
[考研] 070300化学279求调剂 +17 哈哈哈^_^ 2026-04-08 18/900 2026-04-09 10:49 by 三七七想上岸
[考研] 二次调剂求老师收留 +3 笑笑袁 2026-04-08 3/150 2026-04-08 23:50 by 醉在风里
[考研] 求考研材料调剂 +3 材化李可 2026-04-07 3/150 2026-04-08 00:21 by JourneyLucky
[考研] 材料调剂 +13 汉123456 2026-04-07 14/700 2026-04-07 22:53 by 来看流星雨10
[考研] 材料调剂 +11 一样YWY 2026-04-07 11/550 2026-04-07 15:13 by shdgaomin
[考研] 362求调剂一志愿中国石油大学 +4 我要考大 2026-04-06 6/300 2026-04-06 14:11 by 无际的草原
[考研] 一志愿河北工业大学材料工程,初试344求专硕调剂 +6 15933906766 2026-04-05 6/300 2026-04-06 13:21 by 无际的草原
[考研] 332求调剂 +17 小小孟... 2026-04-05 18/900 2026-04-06 09:51 by 蓝云思雨
[考研] 085600,320分求调剂 +16 大馋小子 2026-04-04 17/850 2026-04-06 07:58 by MOF_Catal
[考研] 083200 333求调剂 +3 十二!! 2026-04-04 3/150 2026-04-05 08:28 by barlinike
[考研] 292求调剂 +11 2022080213 2026-04-04 13/650 2026-04-04 18:38 by macy2011
信息提示
请填处理意见