| 查看: 3459 | 回复: 17 | |||
| 当前只显示满足指定条件的回帖,点击这里查看本话题的所有回帖 | |||
[交流]
【求助】求产生变形后POSCAR的 defvector.f 程序的源文件
|
|||
| 最近刚学习使用VASP软件,看侯博的说明书中提到计算弹性常数要用到defvector.f,请问这个程序在哪里可以找到呢?望大家给指导指导,不胜感激啊 |
» 猜你喜欢
求调剂
已经有23人回复
301求调剂
已经有15人回复
304求调剂(085602,过四级,一志愿985)
已经有17人回复
302分求调剂 一志愿安徽大学085601
已经有12人回复
288环境专硕,求调材料方向
已经有23人回复
环境专硕调剂
已经有6人回复
22408 调剂材料
已经有6人回复
285求调剂
已经有12人回复
求调剂
已经有6人回复
085600材料与化工301分求调剂院校
已经有19人回复
» 本主题相关价值贴推荐,对您同样有帮助:
求助压缩永久变形问题
已经有6人回复
聚甲基丙稀酸羟乙酯(HEMA)聚合加工成型变形
已经有4人回复
材料产生塑性变形是不是使内应力得到了释放
已经有14人回复
PA6、PET的热变形温度分别是多少?
已经有7人回复
各位研究压电陶瓷的高手们 求助关于方形压电片的变形形式
已经有3人回复
文件.f如何编译成可执行文件
已经有3人回复
【求助】做变形金刚关节应该用哪种橡胶
已经有8人回复
【求助】加工硬化率或者应变与冷轧的变形量有没有关系呢?
已经有9人回复
【求助】请问金属、陶瓷和高分子的变形机制分别是什么?
已经有5人回复
» 抢金币啦!回帖就可以得到:
攀枝花学院大量招收调剂:材料科学与工程(学硕:0805)和材料工程(专硕:0856)。
+1/190
河北大学分析化学招收多名调剂考生
+3/116
【调剂信息】山东科技大学(青岛校区)材料助剂研究团队招收调剂硕士研究生
+1/90
延安大学接收化学与化工学院接收调剂生(化学、化工学硕和材料与化工专硕)
+2/64
2026年宁波工程学院杜俊毅副研究员招收化学材料机械类硕士研究生(含调剂)
+1/54
材料与化工专业有大量调剂指标
+1/51
邵阳学院食品与化学工程学院 生物与医药专业接受调剂生
+2/48
0860接收报考07,08,09,10的部分专业可调!
+1/45
华侨大学发光材料与信息显示研究院有专硕和学硕调剂招生名额
+1/39
江西理工大学稀土学院-招收调剂硕士研究生
+1/29
【轻松准入】【生物医药】2026青岛大学招博士生
+1/18
中国石油大学(北京)招收油藏数值模拟、油气人工智能、油田化学等相关方向博士后
+1/5
渤海大学材料与环境工程学院发光及透明陶瓷材料、地聚物吸波混凝土方向接收研究生调剂
+1/5
徐工-环境工程学院-招收调剂硕士
+1/5
西北农林科技大学水产养殖专业学术型硕士调剂名额1个
+1/4
杭州师范大学-浙江省湿地智慧监测与生态修复重点实验室团队硕士调剂公告
+1/4
海南医科大学智能医学课题组招收生物信息学方向专业硕士研究生!
+1/4
哈尔滨工程大学动力学院赵建辉团队招收2026博士研究生
+1/2
【#上海调剂急录#】能接受985联合培养的速来!带你发一区文章!
+1/2
找好工作来这-广东唯一石化院校——资源与环境专硕招生
+1/1
风雨同周113(金币+16): 2011-07-16 21:39:37
|
C%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% C >this simple program to get the primitive vectors after C $\delta$ strain, in order to calculate the independent C elastic constants of solids. C usage: C!!!!! Please first prepare the undeformed POSCAR in OLDPOS C >defvector.x C >type defvector.x > create new POSCAR in file fort.3 C%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% program defvector real*8 privect,strvect,delta,strten,strain,pos, alat dimension privect(3,3),strvect(3,3),strten(3,3),strain(6) dimension pos(50,3) character*10 bravlat, title, direct integer i,j,k,ntype, natomi, nn dimension natomi(10) C%%%%%%%%% Read the undeformed primitive vector and atomic postion %%%%%%% open(7,file='OLDPOS') C%% In first line of OLDPOS, please add the number C%% of the type of atoms after the title read(7,*) title, ntype read(7,*) alat do i=1,3 read(7,*) (privect(i,j),j=1,3) write(*,*) (privect(i,j),j=1,3) enddo read(7,*) (natomi(i),i=1,ntype) nn=0 do i =1, ntype nn=nn+natomi(i) enddo read(7,*) direct do i=1, nn read(7,*) (pos(i,j),j=1,3) enddo C%%%%%%%%% Read the amti of strain %%%%%%%%%%%%%%% read(*,*) delta C%%%%%%%%% Define the strain %%%%%%%%%%%%%% strain(1)=0.0 strain(2)=delta strain(3)=delta strain(4)=0.0 strain(5)=0.0 strain(6)=0.0 C%%%%%%%%% Define the strain tensor %%%%%%%%%%%%%%%%%%%%%%%% strten(1,1)=strain(1)+1.0 strten(1,2)=0.5*strain(6) strten(1,3)=0.5*strain(5) strten(2,1)=0.5*strain(6) strten(2,2)=strain(2)+1.0 strten(2,3)=0.5*strain(4) strten(3,1)=0.5*strain(5) strten(3,2)=0.5*strain(4) strten(3,3)=strain(3)+1.0 C%%%%%%%%% Transform the primitive vector to the new vector under strain%%%%% C strvect(i,j)=privect(i,j)*(I+strten(i,j)) do k=1,3 do i=1,3 strvect(i,k)=0.0 do j=1,3 strvect(i,k)=strvect(i,k)+privect(i,j)*strten(j,k) enddo enddo enddo C%%%%%%%% Write the new vector under strain%%%%%%%%%%%% do i=1,3 write(*,100)(strvect(i,j),j=1,3) enddo 100 format(3f20.15) C%%%%%%%%% Create the POSCAR for total energy calculation %%%%%%%%%%%%%%5 write(3,'(A10)') title write(3,'(f15.10)') alat do i=1,3 write(3,100)(strvect(i,j),j=1,3) enddo write(3,'(10I4)') (natomi(i), i=1,ntype) write(3,'(A6)') Direct do i=1, nn write(3,100) (pos(i,j),j=1,3) enddo C%%%%%%% end |
4楼2011-04-12 10:27:42
2楼2011-04-09 23:40:39
★
小木虫: 金币+0.5, 给个红包,谢谢回帖
小木虫: 金币+0.5, 给个红包,谢谢回帖
|
为何我编译能通过,运行的时候出现invalid number:incomprehensible list input apparent state: unit 7 named OLDPOS last format: list io lately reading direct formatted external IO 或者apparent state: unit 5 (unnamed) last format: list io lately reading direct formatted external IO list in: end of file 的问题呢? |
5楼2012-05-30 10:31:31
6楼2012-06-07 06:00:01














回复此楼