24小时热门版块排行榜    

查看: 3687  |  回复: 8
当前只显示满足指定条件的回帖,点击这里查看本话题的所有回帖

xiongb123456

铜虫 (小有名气)

[求助] 使用vasp计算cineb一定要编译vtstcode吗?

如题
我这几天在计算cineb
下载了vtstscripts 用nebmake.pl生成的images进行的计算
对于计算的结果我使用vfin.pl想输出结果 可是总是输出不了
昨天和朋友讨论 朋友说我没有编译vtstcode
我想问这个vtstcode要如何编译呐?

网站上是这样写的
Version 2.04b, Oct. 26, 2011
VTST Code: vtstcode.tar.gz
VTST Scripts: vtstscripts.tar.gz
NOTE: in v2.04 and later versions, there is an addition modification to main.F which is required for the solid-state NEB.
Find and replace:
      CALL CHAIN_FORCE(T_INFO%NIONS,DYN%POSION,TOTEN,TIFOR, &
           LATT_CUR%A,LATT_CUR%B,IO%IU6)

with
      CALL CHAIN_FORCE(T_INFO%NIONS,DYN%POSION,TOTEN,TIFOR, &
           TSIF,LATT_CUR%A,LATT_CUR%B,IO%IU6)

我想问我把vtstcode解压了以后 为啥找不到main.F这个文件呐?
有具体点的编译vtstcode的教程的网页吗?
望帮助 THANKS
回复此楼
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖

冯亚娟

金虫 (正式写手)

引用回帖:
2楼: Originally posted by likai0106 at 2012-06-27 13:53:30
你把解压vtstcode后所有的文件拷贝到vasp编译目录下,之后修改main.F,还要修改makefile后面的目标文件,你的那个网站上有详细说明,仔细看看,不难。

请问,VTSTTools安装中,需要将main.F 与makefile文件都要修改吗?main.F 与makefile分别需要修改哪里?除此之外,在makeflie里面 tet.o  hamil.o  steep.o   \找不到这句话,是什么原因?盼望回复帮助。
8楼2017-03-09 22:29:51
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖
查看全部 9 个回答

likai0106

金虫 (小有名气)

【答案】应助回帖

★ ★ ★ ★ ★
感谢参与,应助指数 +1
xiongb123456: 金币+5, 有帮助 2012-06-27 14:16:49
你把解压vtstcode后所有的文件拷贝到vasp编译目录下,之后修改main.F,还要修改makefile后面的目标文件,你的那个网站上有详细说明,仔细看看,不难。
2楼2012-06-27 13:53:30
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖

xiongb123456

铜虫 (小有名气)

引用回帖:
2楼: Originally posted by likai0106 at 2012-06-27 13:53:30
你把解压vtstcode后所有的文件拷贝到vasp编译目录下,之后修改main.F,还要修改makefile后面的目标文件,你的那个网站上有详细说明,仔细看看,不难。

The code for the NEB, dimer, Lanczos, and dynamical matrix methods, as well as the steepest descent, force-based conjugate gradient, quick-min, lbfgs, bfgs, and fire optimizers are contained in a single package which interfaces to VASP through the chain.F file. To install, download the package vtstcode.tar.gz into your vasp source directory. The file chain.F is replaced, so back up the old version. There are eleven other files in the package, neb.F, dynmat.F, dimer.F, lanczos.F, sd.F, cg.F, qm.F, lbfgs.F, bfgs.F, fire.F, and opt.F. To build the code, the VASP makefile needs to be changed. Find the variable SOURCE, which defines which objects will be built. Replace the line
  tet.o  hamil.o  steep.o   \

with the lines
         tet.o      hamil.o    steep.o  dimer.o  dynmat.o  neb.o  lanczos.o  instanton.o \
         sd.o       cg.o       qm.o     lbfgs.o  bfgs.o  fire.o   opt.o   \

The objects dynmat.o, neb.o, dimer.o, lanczos.o, and instanton.o must be in the SOURCE list before chain.o appears. The optimizer objects, sd.o, cg.o, qm.o, lbfgs.o, bfgs.o, and fire.o must appear before the optimizer driver opt.o. Nothing else needs to be done. This code will not change the working of any other part of vasp. This code will only be run if IMAGES is set in the INCAR file, or if ICHAIN is set, to specify which method should be run.

我看到这一步 最后这段话没看懂
The objects dynmat.o, neb.o, dimer.o, lanczos.o, and instanton.o must be in the SOURCE list before chain.o appears. The optimizer objects, sd.o, cg.o, qm.o, lbfgs.o, bfgs.o, and fire.o must appear before the optimizer driver opt.o.
求解释
3楼2012-06-27 14:16:34
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖

likai0106

金虫 (小有名气)

【答案】应助回帖

★ ★ ★ ★ ★
xiongb123456: 金币+5, 有帮助 2012-06-28 10:31:33
引用回帖:
3楼: Originally posted by xiongb123456 at 2012-06-27 14:16:34
The code for the NEB, dimer, Lanczos, and dynamical matrix methods, as well as the steepest descent, force-based conjugate gradient, quick-min, lbfgs, bfgs, and fire optimizers are contained in a si ...

在makefile中找到带有这些目标的库的行在里面加上这些他需要集成到vasp中的过渡态算法就行了(这些编译过程*.f已经存在,就是刚才解压到vasp目录下的问价,只要将目标函数给出他们就会自动生成了。)。注意这些目标函数的顺序。
4楼2012-06-27 15:09:38
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖
最具人气热帖推荐 [查看全部] 作者 回/看 最后发表
[考研] 278求调剂 +9 烟火先于春 2026-03-17 9/450 2026-03-21 17:47 by 学员8dgXkO
[考研] 297求调剂 +11 戏精丹丹丹 2026-03-17 12/600 2026-03-21 17:47 by ColorlessPI
[考研] 307求调剂 +3 余意卿 2026-03-18 3/150 2026-03-21 17:31 by ColorlessPI
[考研] 306求0703调剂一志愿华中师范 +5 纸鱼ly 2026-03-21 5/250 2026-03-21 17:11 by 学员8dgXkO
[考研] 求调剂 +3 .m.. 2026-03-21 4/200 2026-03-21 16:25 by barlinike
[基金申请] 学校已经提交到NSFC,还能修改吗? 40+4 babangida 2026-03-19 9/450 2026-03-21 16:12 by babangida
[考研] 22 350 本科985求调剂,求老登收留 +3 李轶男003 2026-03-20 3/150 2026-03-21 13:28 by 搏击518
[考研] 279分求调剂 一志愿211 +14 chaojifeixia 2026-03-19 15/750 2026-03-21 13:24 by zhukairuo
[考研] 能源材料化学课题组招收硕士研究生8-10名 +5 脱颖而出 2026-03-16 15/750 2026-03-21 10:16 by 脱颖而出
[考研] 08工科 320总分 求调剂 +6 梨花珞晚风 2026-03-17 6/300 2026-03-21 03:40 by JourneyLucky
[考研] 265求调剂 +3 Jack?k?y 2026-03-17 3/150 2026-03-21 03:17 by JourneyLucky
[考研] 085700资源与环境308求调剂 +12 墨墨漠 2026-03-18 13/650 2026-03-21 01:42 by JourneyLucky
[考研] 324分 085600材料化工求调剂 +4 llllkkkhh 2026-03-18 4/200 2026-03-21 01:24 by JourneyLucky
[考研] 南京大学化学376求调剂 +3 hisfailed 2026-03-19 6/300 2026-03-20 23:43 by hisfailed
[考研] 一志愿中海洋材料工程专硕330分求调剂 +8 小材化本科 2026-03-18 8/400 2026-03-20 23:16 by JourneyLucky
[考研] 本人考085602 化学工程 专硕 +19 不知道叫什么! 2026-03-15 21/1050 2026-03-20 20:48 by zhukairuo
[考研] 08工学调剂 +5 用户573181 2026-03-20 5/250 2026-03-20 15:47 by xia_2003
[考研] 344求调剂 +6 knight344 2026-03-16 7/350 2026-03-18 20:13 by walc
[考研] 293求调剂 +11 zjl的号 2026-03-16 16/800 2026-03-18 08:10 by zhukairuo
[考研] 考研化学学硕调剂,一志愿985 +4 张vvvv 2026-03-15 6/300 2026-03-17 17:15 by ruiyingmiao
信息提示
请填处理意见