计算化学公社

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

[综合交流] CHARMM里使用浮动电荷模型,蛋白质的温度很低是怎么回事?

[复制链接 Copy URL]

75

帖子

0

威望

683

eV
积分
758

Level 4 (黑子)

跳转到指定楼层 Go to specific reply
楼主
我在CHARMM里使用浮动电荷模型,它是在extended lagrange下,把电荷当做一个自由度来处理,双nose hoover热浴分别更新电荷和原子位置,跑了2ns,取最后一帧计算蛋白质的温度发现温度为85多K,而水和整个体系的温度为300多K,我想请问一下各位大佬这是出现热溶剂冷溶质现象了吗?还是说在这种模型下是正常的?或者是我计算温度的方法有问题?
这是我计算温度的python代码(最后一帧的原子速度和质量在附件中)):
  1. vel_x = []
  2. vel_y = []
  3. vel_z = []
  4. mass = []
  5. Ek_prot = 0
  6. Ek_wat = 0
  7. Ek_tot = 0
  8. kB = 0.00198716
  9. freedom_prot = 1277
  10. freedom_wat = 36984
  11. with open("1fsv_vel_frame19999.crd") as fp:
  12.     for line in fp:
  13.         words = line.strip().split()
  14.         if (len(words) == 10):
  15.             vel_x.append(float(words[4]))
  16.             vel_y.append(float(words[5]))
  17.             vel_z.append(float(words[6]))

  18. with open("1fsv_npt.psf") as fp:
  19.     for line in fp:
  20.         value = line.strip().split()
  21.         if (len(value) == 11):
  22.             mass.append(float(value[7]))   

  23. for j in range(513):
  24.     Ek_prot += mass[j]*(vel_x[j] ** 2 + vel_y[j] ** 2 + vel_z[j] ** 2)
  25.    
  26. for j in range(513,25169):
  27.     Ek_wat += mass[j]*(vel_x[j] ** 2 + vel_y[j] ** 2 + vel_z[j] ** 2)
  28.                
  29. for j in range(25169):
  30.     Ek_tot += mass[j]*(vel_x[j] ** 2 + vel_y[j] ** 2 + vel_z[j] ** 2)
  31.    
  32. temp_prot = Ek_prot / kB / freedom_prot
  33. temp_wat = Ek_wat / kB / freedom_wat
  34. temp_tot = Ek_tot / kB / (freedom_wat + freedom_prot)
复制代码


1fsv_vel_frame19999.crd

1.7 MB, 下载次数 Times of downloads: 0

1fsv_npt.psf

4.47 MB, 下载次数 Times of downloads: 0

本版积分规则 Credits rule

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

GMT+8, 2024-11-23 06:36 , Processed in 0.179479 second(s), 24 queries , Gzip On.

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