| 查看: 3495 | 回复: 17 | |||
| 当前只显示满足指定条件的回帖,点击这里查看本话题的所有回帖 | |||
[交流]
【求助】求产生变形后POSCAR的 defvector.f 程序的源文件
|
|||
| 最近刚学习使用VASP软件,看侯博的说明书中提到计算弹性常数要用到defvector.f,请问这个程序在哪里可以找到呢?望大家给指导指导,不胜感激啊 |
» 猜你喜欢
求机械专硕297第二批调剂
已经有3人回复
285求调剂
已经有20人回复
有爆料,一个青年教师卖房得400万,然后换了一个四青帽子
已经有5人回复
材料方向考博,求推荐
已经有4人回复
070300化学 求调剂
已经有8人回复
调剂
已经有9人回复
331求调剂
已经有5人回复
复试调剂,一志愿郑州大学材料与化工289分
已经有9人回复
一志愿211,0703化学305分求调剂
已经有26人回复
311求调剂
已经有11人回复
» 本主题相关价值贴推荐,对您同样有帮助:
求助压缩永久变形问题
已经有6人回复
聚甲基丙稀酸羟乙酯(HEMA)聚合加工成型变形
已经有4人回复
材料产生塑性变形是不是使内应力得到了释放
已经有14人回复
PA6、PET的热变形温度分别是多少?
已经有7人回复
各位研究压电陶瓷的高手们 求助关于方形压电片的变形形式
已经有3人回复
文件.f如何编译成可执行文件
已经有3人回复
【求助】做变形金刚关节应该用哪种橡胶
已经有8人回复
【求助】加工硬化率或者应变与冷轧的变形量有没有关系呢?
已经有9人回复
【求助】请问金属、陶瓷和高分子的变形机制分别是什么?
已经有5人回复
» 抢金币啦!回帖就可以得到:
沈阳化工大学环境学院生物与医药、药学、化学、安全工程、环境工程等可调剂,名额充裕
+1/587
安徽农业大学李亚辉教授招收 化学、农药学、植保类2026级博士研究生
+3/264
江西师大化学工程学院调剂今晚0点开放! 缺额100个,速冲!
+1/88
聊城大学省重点实验室 收化学专业硕士调剂、网上面试无笔试、名额充足、可调专业广泛
+1/79
东南大学—有机多孔功能材料团队(杰青团队)招收 AI+COFs 方向科研助理
+1/41
齐鲁工业大学-浙江大学衢州研究院 全国重点实验室-锂离子电池、材料化学方向4-6名
+1/40
科研小助理招聘~~~开工啦
+1/39
河南中部某本科高校 资源与环境(专硕)研究生 招生信息
+1/37
台州学院医药化工学院2026年化学/化学工程硕士调剂研究生
+1/21
药物化学、材料与化工专业还有大量名额,速报名!!!
+1/13
东北石油大学石油工程学院调剂课题组推荐,欢迎大家联系
+1/10
北京化工大学材料学院高分子微针实验室招收调剂
+1/9
齐齐哈尔大学李莉课题组诚招2026级考研调剂生(学硕和专硕)
+1/9
★上海★上海工程技术大学·环境与资源创新中心(ICER)接收化工材料环境等学科调剂生
+1/8
齐齐哈尔大学李莉课题组诚招2026级考研调剂生(学硕和专硕)
+1/6
齐齐哈尔大学李莉课题组诚招2026级考研调剂生(学硕和专硕)
+1/6
杰青/长江团队招收硕士调剂
+1/5
北大口腔招人工智能、生物再造科研助理(优秀者可留校或推荐读博)
+1/3
扬州大学信息与人工智能学院(工业软件学院)2026年硕士研究生招生调剂公告
+1/2
丽水学院材能学院-先进能源存储与器件课题组-26届研究生招生-(新能源电池方向)
+1/2
6楼2012-06-07 06:00:01
2楼2011-04-09 23:40:39
风雨同周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
★
小木虫: 金币+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














回复此楼