| 查看: 3457 | 回复: 17 | |||
[交流]
【求助】求产生变形后POSCAR的 defvector.f 程序的源文件
|
|||
| 最近刚学习使用VASP软件,看侯博的说明书中提到计算弹性常数要用到defvector.f,请问这个程序在哪里可以找到呢?望大家给指导指导,不胜感激啊 |
» 猜你喜欢
277求调剂 数一104分
已经有13人回复
304求调剂
已经有10人回复
求调剂
已经有5人回复
336求调剂,一志愿中科大
已经有6人回复
071000生物学,一志愿深圳大学296分,求调剂
已经有3人回复
一志愿北京化工085600 310分求调剂
已经有19人回复
274求调剂求调剂
已经有7人回复
277工科求调剂
已经有10人回复
283分求调剂
已经有10人回复
295求调剂
已经有16人回复
» 本主题相关价值贴推荐,对您同样有帮助:
求助压缩永久变形问题
已经有6人回复
聚甲基丙稀酸羟乙酯(HEMA)聚合加工成型变形
已经有4人回复
材料产生塑性变形是不是使内应力得到了释放
已经有14人回复
PA6、PET的热变形温度分别是多少?
已经有7人回复
各位研究压电陶瓷的高手们 求助关于方形压电片的变形形式
已经有3人回复
文件.f如何编译成可执行文件
已经有3人回复
【求助】做变形金刚关节应该用哪种橡胶
已经有8人回复
【求助】加工硬化率或者应变与冷轧的变形量有没有关系呢?
已经有9人回复
【求助】请问金属、陶瓷和高分子的变形机制分别是什么?
已经有5人回复
» 抢金币啦!回帖就可以得到:
招收硕士研究生
+5/531
杭州师范大学张龙课题组招诚聘有机合成,光电催化,理论计算与人工智能化学方向博士后
+1/97
西安石油大学新能源学院接收材料类、能源动力类、机械类、计算机类等专业专硕调剂生!
+1/89
安徽省大别山中医药研究院 接收中药调剂生(中药、药学等10开头代码均可)
+1/77
2026年武汉工程大学千人计划团队招收硕士研究生调剂
+2/52
河南农业大学理学院仿生应用化学创新团队招收硕士调剂生
+1/51
浙师大化与材学院2026年有大量硕士研究生调剂名额 (线上 调剂)
+1/42
延安大学国家级高层次人才团队招收材料、化学、化工相关领域调剂研究生数名
+1/41
江西科技师范大学分析化学专业段学民教授课题组招聘调剂学生
+1/41
河北大学无机化学专业招收调剂生
+1/40
安徽工业大学工程研究院接受调剂
+1/39
材料、化学等相关专业均可调剂
+1/12
南京,真诚征女友
+1/11
【博士招生】天津理工大学国家杰青王铁课题组招收2026年博士研究生
+1/8
26年申博自荐-计算机视觉
+1/7
招聘二维半导体材料方向博士后、联合培养博士生、硕士生
+1/5
化学与精细化工广东省实验室-汕头大学2026年联合培养硕士研究生调剂招生
+1/5
航空工程363分求调剂
+1/4
【上海调剂】985联合培养!别错过能送你去丹麦/交大/同济/中科院的神仙导师!
+1/4
长江师范学院化学化工学院化学工程方向接收大量调剂考生
+1/4
风雨同周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
3楼2011-04-10 09:39:06
★
小木虫: 金币+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
7楼2012-06-11 09:02:45
8楼2012-06-11 09:27:11
★
小木虫: 金币+0.5, 给个红包,谢谢回帖
小木虫: 金币+0.5, 给个红包,谢谢回帖
|
我有几个不明白的地方,希望大家帮我解释一下! 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定义的这六个应变1-3是主应变(εx,εy,εz),4-6是切应变(εyz,εzx,εxy)吗? 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 strten(1,1)=εx,加上1.0是什么意思? 另外,C%%%%%%%%% Transform the primitive vector to the new vector under strain%%%%% C strvect(i,j)=privect(i,j)*(I+strten(i,j)) 在这个地方,C表示后面的这一部分不执行吗?其中的I代表什么意思? 望大家给点见解! |
9楼2012-10-12 16:27:04
10楼2012-10-22 11:12:37
11楼2014-06-20 01:23:51
12楼2015-04-16 16:31:14
13楼2015-12-01 16:20:29
14楼2015-12-01 16:21:54
★
小木虫: 金币+0.5, 给个红包,谢谢回帖
小木虫: 金币+0.5, 给个红包,谢谢回帖
|
本帖内容被屏蔽 |
15楼2021-01-30 10:40:42
|
本帖内容被屏蔽 |
16楼2021-01-30 10:42:32
★
小木虫: 金币+0.5, 给个红包,谢谢回帖
小木虫: 金币+0.5, 给个红包,谢谢回帖
|
本帖内容被屏蔽 |
17楼2021-01-30 11:33:49
★
小木虫: 金币+0.5, 给个红包,谢谢回帖
小木虫: 金币+0.5, 给个红包,谢谢回帖
|
本帖内容被屏蔽 |
18楼2021-01-30 11:49:56














回复此楼