计算化学公社

 找回密码 Forget password
 注册 Register
Views: 1690|回复 Reply: 2
打印 Print 上一主题 Last thread 下一主题 Next thread

[Lammps] 求助lammps进行小分子有机物熔点计算,密度与实际比不准确

[复制链接 Copy URL]

7

帖子

0

威望

95

eV
积分
102

Level 2 能力者

跳转到指定楼层 Go to specific reply
楼主
求助:关于lammps进行小分子有机物熔点计算时,密度与实际不准确的问题
             先使用nve在500K下驰豫,再用npt驰豫 所得常温密度比实际的要大,该怎么解决?

6万

帖子

99

威望

5万

eV
积分
120102

管理员

公社社长

2#
发表于 Post on 2022-11-19 23:04:16 | 只看该作者 Only view this author
如置顶的新社员必读贴、论坛首页的公告栏、版头的红色大字非常明确所示,求助帖必须在帖子标题明确体现出此帖内容是求助或提问,并清楚、准确反映出帖子具体内容,避免有任何歧义和含糊性,仔细看http://bbs.keinsci.com/thread-9348-1-1.html。我已把你的不恰当标题 “熔点计算,密度” 改了,以后务必注意,下次将删帖+扣分处理

什么细节都没有,没人能回答,好好看
在网上求助计算化学问题的时候必须把问题描述得详细、具体、准确、清楚
http://sobereva.com/620http://bbs.keinsci.com/thread-25787-1-1.html

居然连力场等影响结果的最关键的设置都不说
北京科音自然科学研究中心http://www.keinsci.com)致力于计算化学的发展和传播,长期开办极高质量的各种计算化学类培训:初级量子化学培训班中级量子化学培训班高级量子化学培训班量子化学波函数分析与Multiwfn程序培训班分子动力学与GROMACS培训班CP2K第一性原理计算培训班,内容介绍以及往届资料购买请点击相应链接查看。这些培训是计算化学从零快速入门以及进一步全面系统性提升研究水平的高速路!培训各种常见问题见《北京科音办的培训班FAQ》
欢迎加入北京科音微信公众号获取北京科音培训的最新消息,并避免错过网上有价值的计算化学文章!
欢迎加入人气极高、专业性特别强的理论与计算化学综合交流群思想家公社QQ群(群号见此链接),合计达一万多人。北京科音培训班的学员在群中可申请VIP头衔,提问将得到群主Sobereva的最优先解答。
思想家公社的门口Blog:http://sobereva.com(发布大量原创计算化学相关博文)
Multiwfn主页:http://sobereva.com/multiwfn(十分强大、极为流行的量子化学波函数分析程序)
Google Scholar:https://scholar.google.com/citations?user=tiKE0qkAAAAJ
ResearchGate:https://www.researchgate.net/profile/Tian_Lu

7

帖子

0

威望

95

eV
积分
102

Level 2 能力者

3#
 楼主 Author| 发表于 Post on 2022-11-20 22:06:16 | 只看该作者 Only view this author
抱歉老师 下次发帖我注意。我使用的力场是compass力场,有机分子为马来酸酐 体系分子数为200.  首先在nve系综中使用郎之万在500k弛豫100000步。然后是npt下500k 1atm下弛豫50000步,500-100k 1atm 弛豫50000步,100-400k 1atm 升温,通过密度和温度曲线判定熔点,但是发现弛豫过程中,在常温下的密度与所查资料中记载的密度并不一致。文献中为1.5,而计算中为1.6左右,结果偏大,请问各位老师这种情况该怎么处理。下面是我的in文件代码。
# Initialization
units                real
boundary        p p p
atom_style        full
# Dreiding potential information
dimension   3
neighbor             0.4 bin
neigh_modify         every 1 delay 0 check yes
#对势类型
pair_style      lj/class2/coul/long 10.0
pair_modify mix sixthpower tail yes
#键势类型
bond_style      class2
special_bonds lj/coul 0.0 0.0 1.0 dihedral yes
#键角势类型
angle_style     class2
#二面角类型
dihedral_style  class2
improper_style  class2
#kspace类型
kspace_style pppm 0.0001
read_data      system.data
include "system.in.settings"
include "system.in.charges"
min_style cg
minimize 1.0e-4 1.0e-6 100 1000
#####################################################
# Equilibration Stage 1 (Langevin dynamics at 500 K)
velocity         all create 500.0 1231
fix                1 all nve/limit 0.05
fix                2 all langevin 500.0 500.0 10.0 904297
thermo_style        custom step temp press density
thermo          1000
timestep        1
run                100000
unfix 1
unfix 2
write_restart         restart.system.dreiding1

#####################################################
# Equilibration Stage 2 (NPT dynamics at 500 K)
fix                1 all npt temp 500.0 500.0 100 iso 1 1 1000 drag 2
fix                  2 all momentum 1 linear 1 1 1
thermo_style        custom step temp press density
thermo          1000
timestep        1
reset_timestep        0
run                50000
unfix 1
unfix 2
write_restart         restart.system.dreiding2

#####################################################
# Equilibration Stage 3 (NPT dynamics from 500 K --> 100 K)
fix                1 all npt temp 500 100 100 iso 1 1 1000 drag 2
fix                2 all momentum 1 linear 1 1 1
thermo_style        custom step temp press density
thermo          1000
timestep        1
reset_timestep         0
run                50000
unfix 1
unfix 2
write_restart         restart.system.dreiding3

#####################################################
# Equilibration Stage 4 (NPT dynamics at 100 K)
fix                1 all npt temp 100 100 100 iso 1 1 1000 drag 2
fix                2 all momentum 1 linear 1 1 1
thermo_style        custom step temp pe press vol density
thermo          1000
timestep        1
reset_timestep         0
run                50000
unfix 1
unfix 2
write_restart         restart.system.dreiding4
#升温
fix             1 all npt temp 100 400 100 iso 1 1 1000
thermo          1000
reset_timestep         0
thermo_style    custom step temp pe press vol density
dump            2 all custom 100 dump.xyz id type x y z
run             100000
unfix           1

本版积分规则 Credits rule

手机版 Mobile version|北京科音自然科学研究中心 Beijing Kein Research Center for Natural Sciences|京公网安备 11010502035419号|计算化学公社 — 北京科音旗下高水平计算化学交流论坛 ( 京ICP备14038949号-1 )|网站地图

GMT+8, 2025-8-14 00:06 , Processed in 0.168100 second(s), 20 queries , Gzip On.

快速回复 返回顶部 返回列表 Return to list