24小时热门版块排行榜    

Znn3bq.jpeg
查看: 1116  |  回复: 6

Myprayert

木虫 (正式写手)

[求助] 各位大神看看这个脚本哪里错了,十分感谢 已有2人参与

######################################
# Input file for dislocation nucleation in single crystal Al
# Mark Tschopp, July 2010
# lmp_exe < Al_SC_100.in
######################################

######################################
# INITIALIZATION
units                 metal
dimension                3
boundary                p        p        p
atom_style                atomic

######################################
# ATOM BUILD
lattice                fcc 4.05
region                whole block 0 10 0 10 0 10
create_box                1 whole

region                sc block INF INF INF INF INF INF units box
lattice                 fcc 4.05 orient x 1 0 0 orient y 0 1 0 orient z 0 0 1
create_atoms        1 region sc

variable natoms equal "count(all)"
print "# of atoms are: ${natoms}"

######################################
# INTERATOMIC POTENTIAL
pair_style        eam/alloy
pair_coeff        * * Al99.eam.alloy Al

# Define computes required
compute csym all centro/atom

######################################
# EQUILIBRATION
reset_timestep        0
timestep 0.001
velocity all create 300 12345 mom yes rot no
fix 1 all npt 300 300 1 xyz 0 0 1 drag 1

# Set thermo output
thermo 100
thermo_style custom step lx ly lz press pxx pyy pzz pe temp

# Run for at least 10 picosecond (assuming 1 fs timestep)
run 10000
unfix 1

# Store final cell length for strain calculations
variable tmp equal "lx"
variable L0 equal ${tmp}
print "Initial Length, L0: ${L0}"

######################################
# DEFORMATION
reset_timestep        0

fix                1 all npt 300 300 1 aniso NULL NULL 0 0 0 0 1 drag 1
variable srate equal 1.0e9
variable srate1 equal "v_srate / 1.0e12"
fix                2 all deform 1 x erate ${srate1} units box remap x

# Output strain and stress info to file
# for units metal, pressure is in [bars] = 100 [kPa] = 1/10000 [GPa]
# p2, p3, p4 are in GPa
variable strain equal "(lx - v_L0)/v_L0"
variable p1 equal "v_strain"
variable p2 equal "-pxx/10000"
variable p3 equal "-pyy/10000"
variable p4 equal "-pzz/10000"
fix def1 all print 100 "${p1} ${p2} ${p3} ${p4}" file Al_SC_100.def1.txt screen no

# Dump coordinates to file (for void size calculations)
dump                 1 all custom 2500 dump.* x y z c_csym

# Display thermo
thermo         100
thermo_style        custom step v_strain temp v_p2 v_p3 v_p4 ke pe press

run                150000

######################################
# SIMULATION DONE
print "All done"
回复此楼
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖

cl1994861

金虫 (小有名气)

【答案】应助回帖

★ ★ ★
感谢参与,应助指数 +1
Myprayert: 金币+1 2017-11-30 19:56:04
Myprayert: 金币+2 2017-11-30 22:11:32
你好歹说一下运行后出现的error提示啊,这样光给个脚本,大家怎么找毛病,难道还一句句读你的程序?
2楼2017-11-29 17:32:00
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖

Myprayert

木虫 (正式写手)

引用回帖:
2楼: Originally posted by cl1994861 at 2017-11-29 17:32:00
你好歹说一下运行后出现的error提示啊,这样光给个脚本,大家怎么找毛病,难道还一句句读你的程序?

不好意思,运行过程我已经关了,只是知道fix                1 all npt 300 300 1 aniso NULL NULL 0 0 0 0 1 drag 1   程序就运行到这里,说错了。
3楼2017-11-29 19:26:32
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖

jluchemlib

铁杆木虫 (正式写手)

【答案】应助回帖

★ ★
感谢参与,应助指数 +1
Myprayert: 金币+2 2017-11-30 19:55:39
引用回帖:
3楼: Originally posted by Myprayert at 2017-11-29 19:26:32
不好意思,运行过程我已经关了,只是知道fix                1 all npt 300 300 1 aniso NULL NULL 0 0 0 0 1 drag 1   程序就运行到这里,说错了。...

300 300 后面的1改大一些试试,比如500
4楼2017-11-30 08:45:13
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖

cl1994861

金虫 (小有名气)

引用回帖:
3楼: Originally posted by Myprayert at 2017-11-29 19:26:32
不好意思,运行过程我已经关了,只是知道fix                1 all npt 300 300 1 aniso NULL NULL 0 0 0 0 1 drag 1   程序就运行到这里,说错了。...

300后面的1是不是大了(一般是100个timestep,我看你timestep是0.001,你确定取这么小?),aniso后面格式错了,建议自己去官网详细看fix npt 这个命令吧
5楼2017-11-30 09:07:18
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖

Myprayert

木虫 (正式写手)

引用回帖:
4楼: Originally posted by jluchemlib at 2017-11-30 08:45:13
300 300 后面的1改大一些试试,比如500...

好的   谢谢
6楼2017-11-30 19:49:22
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖

Myprayert

木虫 (正式写手)

引用回帖:
5楼: Originally posted by cl1994861 at 2017-11-30 09:07:18
300后面的1是不是大了(一般是100个timestep,我看你timestep是0.001,你确定取这么小?),aniso后面格式错了,建议自己去官网详细看fix npt 这个命令吧...

好的   我再看看  谢谢
7楼2017-11-30 19:51:43
已阅   回复此楼   关注TA 给TA发消息 送TA红花 TA的回帖
相关版块跳转 我要订阅楼主 Myprayert 的主题更新
最具人气热帖推荐 [查看全部] 作者 回/看 最后发表
[硕博家园] 我在等一个没有答案的答案 +3 Love_MH 2026-05-17 3/150 2026-05-18 02:22 by 竹林孤影
[文学芳草园] 半夜喝咖啡 +3 myrtle 2026-05-15 5/250 2026-05-18 01:03 by 小沈2018
[找工作] 售SCI一区T0P文章,我:8.O.5.5.1.O.5.4,科目齐全,可+急 +4 ky2p12rrjj 2026-05-15 4/200 2026-05-17 19:47 by Equinoxhua
[硕博家园] 售SCI一区T0P文章,我:8.O.5.5.1.O.5.4,科目齐全,可+急 +6 l7k6xnh0yc 2026-05-14 7/350 2026-05-17 19:42 by Equinoxhua
[考研] 售SCI一区T0P文章,我:8.O.5.5.1.O.5.4,科目齐全,可+急 +4 xx7gd5zq4e 2026-05-15 6/300 2026-05-17 19:36 by Equinoxhua
[考博] 找博士生导师 +4 小代想上岸 2026-05-15 5/250 2026-05-17 17:44 by 脱颖而出
[考博] 光量子物理方向 博士招生 1人(2026.09) +3 sandyworld 2026-05-15 4/200 2026-05-17 14:38 by sandyworld
[找工作] 售SCI一区T0P文章,我:8.O.5.5.1.O.5.4,科目齐全,可+急 +3 l7k6xnh0yc 2026-05-14 6/300 2026-05-17 07:31 by 11n4dfd8yn
[论文投稿] 售SCI一区T0P文章,我:8.O.5.5.1.O.5.4,科目齐全,可+急 +3 k37jurhrau 2026-05-16 3/150 2026-05-17 01:25 by ue3ir18jc3
[考研] 售SCI一区T0P文章,我:8.O.5.5.1.O.5.4,科目齐全,可+急 +3 k37jurhrau 2026-05-16 3/150 2026-05-17 01:25 by ue3ir18jc3
[论文投稿] 售SCI一区T0P文章,我:8.O.5.5.1.O.5.4,科目齐全,可+急 +4 ky2p12rrjj 2026-05-15 5/250 2026-05-17 01:10 by ue3ir18jc3
[考博] 售SCI一区T0P文章,我:8.O.5.5.1.O.5.4,科目齐全,可+急 +3 ky2p12rrjj 2026-05-15 4/200 2026-05-17 00:57 by ue3ir18jc3
[硕博家园] 售SCI一区T0P文章,我:8.O.5.5.1.O.5.4,科目齐全,可+急 +3 ky2p12rrjj 2026-05-15 3/150 2026-05-17 00:45 by ue3ir18jc3
[公派出国] 售SCI一区T0P文章,我:8.O.5.5.1.O.5.4,科目齐全,可+急 +3 x0mp7owy2b 2026-05-15 4/200 2026-05-17 00:35 by ue3ir18jc3
[考博] 现在不知道怎么办,感觉很痛苦 +5 qweww 2026-05-11 6/300 2026-05-16 19:57 by Equinoxhua
[基金申请] 请问大佬b0816评完了吗 +4 市民华南虎 2026-05-12 8/400 2026-05-16 19:54 by Equinoxhua
[硕博家园] 售SCI一区T0P文章,我:8.O.5.5.1.O.5.4,科目齐全,可+急 +4 x0mp7owy2b 2026-05-15 4/200 2026-05-16 17:45 by j6b2pdz07o
[考研] 售SCI一区T0P文章,我:8.O.5.5.1.O.5.4,科目齐全,可+急 +4 l7k6xnh0yc 2026-05-14 6/300 2026-05-16 11:29 by h3oerqvkv9
[硕博家园] 申请博士 +3 呃?呃 2026-05-15 3/150 2026-05-16 11:01 by a4742549
[基金申请] 青C资助名额大幅增加! +11 西葫芦炒鸡蛋 2026-05-13 15/750 2026-05-15 14:36 by ambravo
信息提示
请填处理意见