| 查看: 3524 | 回复: 19 | |||
| 当前只显示满足指定条件的回帖,点击这里查看本话题的所有回帖 | |||
[交流]
【求助】虚频和软模是一回事么? 已有10人参与
|
|||
|
一些位移型相变,比如BaTiO3的顺电-铁电相变,在相变点附近有软模,这在第一性原理计算中怎么体现呢?是声子谱中存在虚频么?虚频和软模是一回事么? [ Last edited by identation on 2010-7-1 at 20:02 ] |
» 猜你喜欢
【考研调剂】化学专业 281分,一志愿四川大学,诚心求调剂
已经有4人回复
317求调剂
已经有5人回复
0817 化学工程 299分求调剂 有科研经历 有二区文章
已经有10人回复
一志愿 西北大学 ,070300化学学硕,总分287,双非一本,求调剂。
已经有3人回复
一志愿福大288有机化学,求调剂
已经有3人回复
085600材料与化工求调剂
已经有6人回复
一志愿西安交通大学材料工程专业 282分求调剂
已经有6人回复
085600材料与化工调剂 324分
已经有10人回复
294求调剂材料与化工专硕
已经有11人回复
一志愿南昌大学,327分,材料与化工085600
已经有3人回复
13楼2010-07-01 20:02:29
lono75
铁杆木虫 (著名写手)
- 应助: 0 (幼儿园)
- 金币: 6963.1
- 散金: 100
- 红花: 2
- 帖子: 2433
- 在线: 536.4小时
- 虫号: 932458
- 注册: 2009-12-23
- 专业: 凝聚态物性 II :电子结构

2楼2010-04-25 21:47:44
gavinliu7390
木虫 (著名写手)
叶落鹰飞
- 1ST强帖: 3
- 应助: 51 (初中生)
- 贵宾: 0.481
- 金币: 1564.7
- 散金: 2975
- 红花: 34
- 帖子: 1278
- 在线: 241.4小时
- 虫号: 675997
- 注册: 2008-12-17
- 性别: GG
- 专业: 凝聚态物性I:结构、力学和
★
identation(金币+5):谢谢参与
identation(金币+40): 2010-04-25 23:36
identation(金币+5):谢谢参与
identation(金币+40): 2010-04-25 23:36
|
这个一般来说都是自己写的, 很简单! 那个web site不是提供了程序. 它的输入文件为syml,输出文件为inp.kpt。(你会做能带吧,这个取点跟能带的取点宗旨是一样的.) 其中syml输入文件的格式如下: 8 15 15 15 15 15 15 15 G 0.0 0.0 0.0 K -0.33333333333 0.6666666666667 0.000000000 H -0.33333333333 0.6666666666667 0.500000000 A 0.0 0.0 0.5 G 0.0 0.0 0.0 M 0.0 0.5 0.0 L 0.0 0.5 0.5 A 0.0 0.0 0.5 第一行用来标记有多少个特殊k点,下面是这些特殊k点之间每个要分多少个k点,接着就是这些特殊k点的坐标。 把下面这个程序编译,执行即可. c +--------------------------------------------------------- c For generating k-points along the high-symmetry lines in c Brillouin zone and for calculate band-structures ! c +---------------------------------------------------------- C ---------'syml'--------- c 6 : nhighk c 20 20 20 10 20 : ndiv(i) c X 0.5 0.0 0.5 : labhk(1),phighk(1,1),........ c G 0.0 0.0 0.0 c L 0.5 0.5 0.5 c W 0.5 0.25 0.75 c K 0.375 0.375 0.75 c G 0.0 0.0 0.0 c direct & reciprocal lattice vectors over 'emin, emax' line C ----------------------- c max k-points = 200 program gk implicit real*8 (a-h,o-z) character*2 labhk dimension tkpt(200,3),pk(200,3),phighk(10,3) dimension disk(200),dish(10),labhk(10) dimension ndiv(10) c open(5,file='syml',status='old') open(7,file='inp.kpt') c read(5,*) nhighk read(5,*) (ndiv(i),i=1,nhighk-1) do i=1,nhighk-1 ntkp=ntkp+ndiv(i) enddo ntotkpt=ntkp+1 if(nhighk>10)then write(*,*)'Number of high-symmetry k points must < 10!' STOP endif if(ntotkpt>200)then write(*,*)'Total number of k points must <= 200!' STOP endif do i=1, nhighk read(5,*) labhk(i),(phighk(i,j),j=1,3) enddo write(*,*) (labhk(i),i=1,nhighk) c c----- generating k-points along high symmetric lines -------- c c pk(1,1)=phighk(1,1) pk(1,2)=phighk(1,2) pk(1,3)=phighk(1,3) ii=1 do i = 2, nhighk delx = (phighk(i,1) - phighk(i-1,1))/float(ndiv(i-1)) dely = (phighk(i,2) - phighk(i-1,2))/float(ndiv(i-1)) delz = (phighk(i,3) - phighk(i-1,3))/float(ndiv(i-1)) do j=1, ndiv(i-1) ii = ii + 1 pk(ii,1) = pk(ii-1,1) + delx pk(ii,2) = pk(ii-1,2) + dely pk(ii,3) = pk(ii-1,3) + delz enddo enddo c 10 format(A34) weight=1.d0 do i=1,ntotkpt write(7,200) pk(i,1),pk(i,2),pk(i,3),weight enddo 200 format(3F10.6,F6.2) stop end c----------------------- end --------------------------- 网站上说的很清楚! 如果你想把两个k点分成十份, 就把15换成10就可以了! [ Last edited by gavinliu7390 on 2010-4-25 at 22:34 ] |

3楼2010-04-25 22:22:42
mudannanzi
木虫 (正式写手)
- 应助: 0 (幼儿园)
- 金币: 1959.1
- 帖子: 883
- 在线: 71.5小时
- 虫号: 976416
- 注册: 2010-03-20
- 性别: GG
- 专业: 金属材料的制备科学与跨学

4楼2010-04-25 22:25:28













回复此楼