24小时热门版块排行榜    

查看: 2195  |  回复: 2

奈落之夜

木虫 (正式写手)

[求助] 关于lammps 质心速度vcm()如何输出问题

新手刚学,要输出质心速度 想用vcm这个函数  根据说明书 我先定义了变量 variable  v_m  equal  vcm(motion,v_m)  motion是一个group 然后输出  dump     v_data motion cfg 10 dump.snap.*.cfg $v_m   可能很多语法错误   manual里面vcm(group,dim)前面应该是定义的组,后面的自变量不知道是什么定了,也不知道该怎么输出
回复此楼

» 猜你喜欢

已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖

bluewhale

铁杆木虫 (正式写手)

【答案】应助回帖

★ ★ ★ ★
感谢参与,应助指数 +1
月只蓝: 金币+2, 感谢指导! 2013-11-01 08:35:56
奈落之夜: 金币+2, 有帮助 2013-11-01 09:10:33
参照下面的例子:

heated Brownian particle

# typical input script used to investigate the Brownian motion of a heated nanoparticle. The diffusion coefficient is computed as the plateau value of the integral of the velocity autocorrelation function. Details in:
# L. Joly, S. Merabia and J.-L. Barrat, EPL 94, 50007 (2011)
# http://iopscience.iop.org/0295-5075/94/5/50007/

# the data file is generated by the perl script 'data.pl'.
# fix ave/sph is similar to fix ave/spatial but using spherical bins (enclosed sources might be broken with latest lammps versions).

# to apply a rescaling thermostat only to liquid atoms lying beyond 15 sigma from the center of the particle (see article for details), fix recenter is used to constrain the center-of-mass of the particle to remain at the origin, with keyword 'shift all' so that it does not alter the dynamics of the system.

atom_style bond
read_data data.brown

group liq type 1
group sol type 2
region far sphere 0.0 0.0 0.0 15.9 side out units box
region int1 sphere 0.0 0.0 0.0 14.4 side out units box
region int2 sphere 0.0 0.0 0.0 15.9 units box
region int intersect 2 int1 int2 units box
region ins sphere 0.0 0.0 0.0 14.4 units box
compute Tsol sol temp/com
compute Tfar liq temp/region far
compute Tint liq temp/region int
group far region far
group int region int
group ins region ins
group insliq intersect ins liq

neigh_modify delay 0 every 1 check yes
pair_style lj/cut 2.5
pair_modify shift yes
bond_style fene
special_bonds fene
mass * 1.0
pair_coeff * * 1.0 1.0
bond_coeff * 30.0 1.5 1.0 1.0

variable ts equal step
variable vx equal vcm(sol,x)-vcm(liq,x)
variable vy equal vcm(sol,y)-vcm(liq,y)
variable vz equal vcm(sol,z)-vcm(liq,z)
fix 3 all print 5 "${ts} ${vx} ${vy} ${vz}" file print.brown screen no title "# ts vx vy vz"
fix 4vx all ave/correlate 5 2401 1200000 v_vx type full ave running start 200000 file cvx.brown
fix 4vy all ave/correlate 5 2401 1200000 v_vy type full ave running start 200000 file cvy.brown
fix 4vz all ave/correlate 5 2401 1200000 v_vz type full ave running start 200000 file cvz.brown

thermo_style custom step cpu c_Tsol c_Tint c_Tfar press vol
thermo 1000
compute KEatom all ke/atom
variable Tatom atom (2.0/3.0)*c_KEatom
fix 5 all ave/sph 100 2000 200000 x origin 0.1 density/number v_Tatom units box file sph.brown

fix 1 liq nph aniso 0.015 0.015 5.0 dilate partial
fix 1far liq temp/rescale 1 0.75 0.75 0.0 1.0
fix_modify 1far temp Tfar
fix 1int liq temp/rescale 1 0.75 0.75 0.0 1.0
fix_modify 1int temp Tint
fix 1sol sol nvt temp 3.5 3.5 0.5
fix_modify 1sol temp Tsol

variable vol equal vol
fix avevol all ave/time 10 8000 160000 v_vol
variable l equal 0.5*((f_avevol)^(1./3.))

fix 2 sol recenter 0.0 0.0 0.0 shift all units box
velocity sol create 0.75 36582 dist gaussian mom yes rot yes
velocity int create 0.75 36582 dist gaussian mom yes rot yes
velocity far create 0.75 36582 dist gaussian mom yes rot yes
velocity insliq create 0.75 36582 dist gaussian mom yes rot yes
run 160000

unfix 1
fix 1 liq nve
fix dxyz liq deform 1 x final -$l $l y final -$l $l z final -$l $l units box
unfix 2
fix 2 sol recenter 0.0 0.0 0.0 shift all units box
run 10000
unfix dxyz
run 30000

#variable F equal 10.0
#variable Fs equal $F/count(sol)
#fix 9s sol addforce ${Fs} 0.0 0.0
#variable Fl equal -$F/count(liq)
#fix 9l liq addforce ${Fl} 0.0 0.0
#unfix 2
#fix 2 sol recenter 0.0 0.0 0.0 shift all units box

run 12000000
2楼2013-10-31 20:45:20
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖

奈落之夜

木虫 (正式写手)

引用回帖:
2楼: Originally posted by bluewhale at 2013-10-31 20:45:20
参照下面的例子:

heated Brownian particle

# typical input script used to investigate the Brownian motion of a heated nanoparticle. The diffusion coefficient is computed as the plateau value of ...

是compute输出数据吧  我纠结在dump上了
3楼2013-11-01 09:11:14
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖
相关版块跳转 我要订阅楼主 奈落之夜 的主题更新
最具人气热帖推荐 [查看全部] 作者 回/看 最后发表
[考研] 一志愿东华大学化学070300,求调剂 +5 2117205181 2026-03-21 6/300 2026-03-22 14:18 by ColorlessPI
[考研] 化学调剂 +5 yzysaa 2026-03-21 5/250 2026-03-21 22:12 by peike
[考研] 0805 316求调剂 +3 大雪深藏 2026-03-18 3/150 2026-03-21 18:55 by 学员8dgXkO
[考研] 材料 271求调剂 +5 展信悦_ 2026-03-21 5/250 2026-03-21 17:29 by 学员8dgXkO
[考研] 0805材料320求调剂 +3 深海物语 2026-03-20 3/150 2026-03-21 15:46 by 无际的草原
[考研] 南昌大学材料专硕311分求调剂 +6 77chaselx 2026-03-20 6/300 2026-03-21 07:24 by JourneyLucky
[考研] 一志愿中国石油大学(华东) 本科齐鲁工业大学 +3 石能伟 2026-03-17 3/150 2026-03-21 02:22 by JourneyLucky
[考研] 求调剂 +3 Ma_xt 2026-03-17 3/150 2026-03-21 02:05 by JourneyLucky
[考研] 一志愿武理材料305分求调剂 +6 想上岸的鲤鱼 2026-03-18 7/350 2026-03-21 01:03 by JourneyLucky
[考研] 一志愿 西北大学 ,070300化学学硕,总分287,双非一本,求调剂。 +3 晨昏线与星海 2026-03-18 3/150 2026-03-21 00:46 by JourneyLucky
[考研] 274求调剂 +10 S.H1 2026-03-18 10/500 2026-03-20 23:51 by JourneyLucky
[考研] 一志愿中海洋材料工程专硕330分求调剂 +8 小材化本科 2026-03-18 8/400 2026-03-20 23:16 by JourneyLucky
[考研] A区线材料学调剂 +5 周周无极 2026-03-20 5/250 2026-03-20 21:33 by laoshidan
[考研] 0817 化学工程 299分求调剂 有科研经历 有二区文章 +22 rare12345 2026-03-18 22/1100 2026-03-20 20:39 by zhukairuo
[考研] 求调剂 +3 eation27 2026-03-20 3/150 2026-03-20 19:32 by JourneyLucky
[考研] 281求调剂(0805) +14 烟汐忆海 2026-03-16 25/1250 2026-03-20 15:47 by yuncha
[考研] 286求调剂 +6 lemonzzn 2026-03-16 10/500 2026-03-19 14:31 by lemonzzn
[考研] 085601专硕,总分342求调剂,地区不限 +5 share_joy 2026-03-16 5/250 2026-03-18 14:48 by haxia
[考研] 收复试调剂生 +4 雨后秋荷 2026-03-18 4/200 2026-03-18 14:16 by elevennnne
[考博] 26博士申请 +3 1042136743 2026-03-17 3/150 2026-03-17 23:30 by 轻松不少随
信息提示
请填处理意见