forked from lijiext/lammps
git-svn-id: svn://svn.icms.temple.edu/lammps-ro/trunk@12971 f3b2605a-c512-4ea7-a41b-209d697bcdaa
This commit is contained in:
parent
106b16942e
commit
c5ea04961d
|
@ -39,7 +39,7 @@ fix 10 all balance 50 0.9 rcb
|
|||
|
||||
#compute 1 all property/atom proc
|
||||
#variable p atom c_1%10
|
||||
#dump 2 all custom 50 tmp2.dump id v_p x y z
|
||||
#dump 2 all custom 50 tmp.dump id v_p x y z
|
||||
|
||||
#dump 3 all image 50 image.*.jpg v_p type &
|
||||
# adiam 1.0 view 0 0 zoom 1.8 subbox yes 0.02
|
||||
|
|
|
@ -0,0 +1,63 @@
|
|||
# 2d circle of particles inside a box with LJ walls
|
||||
|
||||
variable b index 0
|
||||
|
||||
variable x index 50
|
||||
variable y index 20
|
||||
variable d index 20
|
||||
variable v index 5
|
||||
variable w index 2
|
||||
|
||||
units lj
|
||||
dimension 2
|
||||
atom_style bond
|
||||
boundary f f p
|
||||
|
||||
lattice hex 0.85
|
||||
region box block 0 $x 0 $y -0.5 0.5
|
||||
create_box 1 box bond/types 1 extra/bond/per/atom 6
|
||||
region circle sphere $(v_d/2+1) $(v_d/2/sqrt(3.0)+1) 0.0 $(v_d/2)
|
||||
create_atoms 1 region circle
|
||||
mass 1 1.0
|
||||
|
||||
velocity all create 0.5 87287 loop geom
|
||||
velocity all set $v $w 0 sum yes
|
||||
|
||||
pair_style lj/cut 2.5
|
||||
pair_coeff 1 1 10.0 1.0 2.5
|
||||
|
||||
bond_style harmonic
|
||||
bond_coeff 1 10.0 1.2
|
||||
|
||||
# need to preserve 1-3, 1-4 pairwise interactions during hard collisions
|
||||
|
||||
special_bonds lj/coul 0 1 1
|
||||
create_bonds all all 1 1.0 1.5
|
||||
|
||||
neighbor 0.3 bin
|
||||
neigh_modify delay 0 every 1 check yes
|
||||
|
||||
fix 1 all nve
|
||||
|
||||
fix 2 all wall/lj93 xlo 0.0 1 1 2.5 xhi $x 1 1 2.5
|
||||
fix 3 all wall/lj93 ylo 0.0 1 1 2.5 yhi $y 1 1 2.5
|
||||
|
||||
comm_style tiled
|
||||
comm_modify cutoff 5.0
|
||||
fix 10 all balance 50 0.9 rcb
|
||||
|
||||
#compute 1 all property/atom proc
|
||||
#variable p atom (c_1%10)+1
|
||||
#dump 2 all custom 50 tmp.dump id v_p x y z
|
||||
|
||||
#dump 3 all image 200 image.*.jpg v_p type bond atom 0.25 &
|
||||
# adiam 1.0 view 0 0 zoom 1.8 subbox yes 0.02
|
||||
#variable colors string &
|
||||
# "red green blue yellow white &
|
||||
# purple pink orange lime gray"
|
||||
#dump_modify 3 pad 5 amap 0 10 sa 1 10 ${colors}
|
||||
|
||||
thermo_style custom step temp epair press f_10[3] f_10
|
||||
thermo 100
|
||||
|
||||
run 10000
|
|
@ -0,0 +1,62 @@
|
|||
# 2d circle of particles inside a box with LJ walls
|
||||
|
||||
variable b index 0
|
||||
|
||||
variable x index 50
|
||||
variable y index 20
|
||||
variable d index 20
|
||||
|
||||
# careful not to slam into wall too hard
|
||||
|
||||
variable v index 0.3
|
||||
variable w index 0.08
|
||||
|
||||
units lj
|
||||
dimension 2
|
||||
atom_style bond
|
||||
boundary f f p
|
||||
|
||||
lattice hex 0.85
|
||||
region box block 0 $x 0 $y -0.5 0.5
|
||||
create_box 1 box bond/types 1 extra/bond/per/atom 6
|
||||
region circle sphere $(v_d/2+1) $(v_d/2/sqrt(3.0)+1) 0.0 $(v_d/2)
|
||||
create_atoms 1 region circle
|
||||
mass 1 1.0
|
||||
|
||||
velocity all create 0.5 87287 loop geom
|
||||
velocity all set $v $w 0 sum yes
|
||||
|
||||
pair_style lj/cut 2.5
|
||||
pair_coeff 1 1 10.0 1.0 2.5
|
||||
|
||||
bond_style harmonic
|
||||
bond_coeff 1 10.0 1.2
|
||||
|
||||
create_bonds all all 1 1.0 1.5
|
||||
|
||||
neighbor 0.3 bin
|
||||
neigh_modify delay 0 every 1 check yes
|
||||
|
||||
fix 1 all nve
|
||||
|
||||
fix 2 all wall/lj93 xlo 0.0 1 1 2.5 xhi $x 1 1 2.5
|
||||
fix 3 all wall/lj93 ylo 0.0 1 1 2.5 yhi $y 1 1 2.5
|
||||
|
||||
comm_style tiled
|
||||
fix 10 all balance 50 0.9 rcb
|
||||
|
||||
#compute 1 all property/atom proc
|
||||
#variable p atom (c_1%10)+1
|
||||
#dump 2 all custom 50 tmp.dump id v_p x y z
|
||||
|
||||
#dump 3 all image 200 image.*.jpg v_p type bond atom 0.25 &
|
||||
# adiam 1.0 view 0 0 zoom 1.8 subbox yes 0.02
|
||||
#variable colors string &
|
||||
# "red green blue yellow white &
|
||||
# purple pink orange lime gray"
|
||||
#dump_modify 3 pad 5 amap 0 10 sa 1 10 ${colors}
|
||||
|
||||
thermo_style custom step temp epair press f_10[3] f_10
|
||||
thermo 100
|
||||
|
||||
run 40000
|
|
@ -0,0 +1,203 @@
|
|||
LAMMPS (20 Jan 2015)
|
||||
# 2d circle of particles inside a box with LJ walls
|
||||
|
||||
variable b index 0
|
||||
|
||||
variable x index 50
|
||||
variable y index 20
|
||||
variable d index 20
|
||||
variable v index 5
|
||||
variable w index 2
|
||||
|
||||
units lj
|
||||
dimension 2
|
||||
atom_style bond
|
||||
boundary f f p
|
||||
|
||||
lattice hex 0.85
|
||||
Lattice spacing in x,y,z = 1.16553 2.01877 1.16553
|
||||
region box block 0 $x 0 $y -0.5 0.5
|
||||
region box block 0 50 0 $y -0.5 0.5
|
||||
region box block 0 50 0 20 -0.5 0.5
|
||||
create_box 1 box bond/types 1 extra/bond/per/atom 6
|
||||
Created orthogonal box = (0 0 -0.582767) to (58.2767 40.3753 0.582767)
|
||||
1 by 1 by 1 MPI processor grid
|
||||
region circle sphere $(v_d/2+1) $(v_d/2/sqrt(3.0)+1) 0.0 $(v_d/2)
|
||||
region circle sphere 11 $(v_d/2/sqrt(3.0)+1) 0.0 $(v_d/2)
|
||||
region circle sphere 11 6.7735026918962581988 0.0 $(v_d/2)
|
||||
region circle sphere 11 6.7735026918962581988 0.0 10
|
||||
create_atoms 1 region circle
|
||||
Created 361 atoms
|
||||
mass 1 1.0
|
||||
|
||||
velocity all create 0.5 87287 loop geom
|
||||
velocity all set $v $w 0 sum yes
|
||||
velocity all set 5 $w 0 sum yes
|
||||
velocity all set 5 2 0 sum yes
|
||||
|
||||
pair_style lj/cut 2.5
|
||||
pair_coeff 1 1 10.0 1.0 2.5
|
||||
|
||||
bond_style harmonic
|
||||
bond_coeff 1 10.0 1.2
|
||||
|
||||
# need to preserve 1-3, 1-4 pairwise interactions during hard collisions
|
||||
|
||||
special_bonds lj/coul 0 1 1
|
||||
0 = max # of 1-2 neighbors
|
||||
1 = max # of special neighbors
|
||||
create_bonds all all 1 1.0 1.5
|
||||
Added 1014 bonds, new total = 1014
|
||||
6 = max # of 1-2 neighbors
|
||||
6 = max # of special neighbors
|
||||
|
||||
neighbor 0.3 bin
|
||||
neigh_modify delay 0 every 1 check yes
|
||||
|
||||
fix 1 all nve
|
||||
|
||||
fix 2 all wall/lj93 xlo 0.0 1 1 2.5 xhi $x 1 1 2.5
|
||||
fix 2 all wall/lj93 xlo 0.0 1 1 2.5 xhi 50 1 1 2.5
|
||||
fix 3 all wall/lj93 ylo 0.0 1 1 2.5 yhi $y 1 1 2.5
|
||||
fix 3 all wall/lj93 ylo 0.0 1 1 2.5 yhi 20 1 1 2.5
|
||||
|
||||
comm_style tiled
|
||||
comm_modify cutoff 5.0
|
||||
fix 10 all balance 50 0.9 rcb
|
||||
|
||||
#compute 1 all property/atom proc
|
||||
#variable p atom (c_1%10)+1
|
||||
#dump 2 all custom 50 tmp.dump id v_p x y z
|
||||
|
||||
#dump 3 all image 200 image.*.jpg v_p type bond atom 0.25 # adiam 1.0 view 0 0 zoom 1.8 subbox yes 0.02
|
||||
#variable colors string # "red green blue yellow white # purple pink orange lime gray"
|
||||
#dump_modify 3 pad 5 amap 0 10 sa 1 10 ${colors}
|
||||
|
||||
thermo_style custom step temp epair press f_10[3] f_10
|
||||
thermo 100
|
||||
|
||||
run 10000
|
||||
Memory usage per processor = 4.44159 Mbytes
|
||||
Step Temp E_pair Press 10[3] 10
|
||||
0 25.701528 -2.2032569 3.1039469 1 1
|
||||
100 27.623422 -6.228166 2.6542136 1 1
|
||||
200 33.35302 -15.746749 3.2018248 1 1
|
||||
300 39.17734 -24.1557 4.9116986 1 1
|
||||
400 41.660701 -27.615203 8.6214672 1 1
|
||||
500 37.155021 -24.097062 3.2656511 1 1
|
||||
600 35.073269 -21.540753 2.3563146 1 1
|
||||
700 36.834048 -22.263806 3.9446575 1 1
|
||||
800 38.779544 -24.439636 5.2926515 1 1
|
||||
900 37.764544 -24.918222 4.1067761 1 1
|
||||
1000 39.214315 -25.607167 5.7436264 1 1
|
||||
1100 34.711773 -22.939107 3.8075193 1 1
|
||||
1200 32.350981 -21.801614 5.4992314 1 1
|
||||
1300 31.087697 -19.400319 7.0568771 1 1
|
||||
1400 30.305238 -17.852561 5.272329 1 1
|
||||
1500 26.876554 -15.614136 1.7313695 1 1
|
||||
1600 25.520319 -14.820378 1.1610394 1 1
|
||||
1700 25.583866 -13.603046 1.1045813 1 1
|
||||
1800 25.475452 -13.121538 2.0386901 1 1
|
||||
1900 25.53171 -12.007373 2.1202605 1 1
|
||||
2000 25.959412 -13.074754 1.8072299 1 1
|
||||
2100 28.127374 -14.657159 1.2365137 1 1
|
||||
2200 26.811943 -12.963554 2.0979841 1 1
|
||||
2300 25.754468 -12.882263 1.9859074 1 1
|
||||
2400 26.397386 -13.50675 1.8439925 1 1
|
||||
2500 26.226779 -13.176545 2.0562487 1 1
|
||||
2600 26.36113 -13.830312 2.7656768 1 1
|
||||
2700 26.091842 -14.507808 3.5103247 1 1
|
||||
2800 25.859086 -14.020446 1.774521 1 1
|
||||
2900 21.897888 -13.158283 0.48699163 1 1
|
||||
3000 20.406116 -11.204565 -0.5964511 1 1
|
||||
3100 20.858327 -10.337012 0.11898702 1 1
|
||||
3200 21.516837 -10.333517 0.2641953 1 1
|
||||
3300 23.07237 -11.291785 1.2081954 1 1
|
||||
3400 25.392241 -13.247098 0.7030958 1 1
|
||||
3500 25.819429 -12.675177 2.033555 1 1
|
||||
3600 25.037231 -12.366459 2.0793386 1 1
|
||||
3700 23.944539 -11.027573 0.57647796 1 1
|
||||
3800 22.676166 -10.405731 0.23488488 1 1
|
||||
3900 21.075382 -9.4705914 0.032027373 1 1
|
||||
4000 23.816723 -11.168738 0.7446704 1 1
|
||||
4100 24.557566 -11.359442 1.4192388 1 1
|
||||
4200 23.474589 -11.38847 1.2289527 1 1
|
||||
4300 21.936191 -11.309198 -0.81923475 1 1
|
||||
4400 21.802163 -10.399593 -0.298252 1 1
|
||||
4500 22.192284 -10.539866 0.38230469 1 1
|
||||
4600 23.651684 -10.740589 1.4685321 1 1
|
||||
4700 23.1095 -11.95823 0.43469901 1 1
|
||||
4800 22.671084 -11.201971 0.5766232 1 1
|
||||
4900 22.115308 -11.036275 0.30521409 1 1
|
||||
5000 21.965557 -10.441122 -0.59235266 1 1
|
||||
5100 23.249361 -11.187019 0.33204798 1 1
|
||||
5200 22.951101 -11.280229 0.29317484 1 1
|
||||
5300 22.536559 -10.274024 0.57603522 1 1
|
||||
5400 23.081711 -10.926673 -0.7206378 1 1
|
||||
5500 24.110978 -12.081003 -0.49696138 1 1
|
||||
5600 24.60867 -11.808475 1.9153035 1 1
|
||||
5700 24.91524 -13.572414 0.23887774 1 1
|
||||
5800 23.596848 -12.042942 0.53692521 1 1
|
||||
5900 22.723517 -11.302192 1.1883397 1 1
|
||||
6000 22.65384 -10.775043 1.008983 1 1
|
||||
6100 22.795472 -10.948454 -0.11394295 1 1
|
||||
6200 21.805601 -11.073296 -0.37848264 1 1
|
||||
6300 23.531974 -12.3398 -0.31023717 1 1
|
||||
6400 23.788692 -12.00087 1.0778684 1 1
|
||||
6500 23.09771 -11.451539 0.58575792 1 1
|
||||
6600 22.532906 -11.202202 -0.43541813 1 1
|
||||
6700 23.154697 -10.329622 0.2217121 1 1
|
||||
6800 22.523842 -9.8783418 0.14986428 1 1
|
||||
6900 23.122939 -10.663183 -0.039039378 1 1
|
||||
7000 24.608416 -10.970679 0.74360604 1 1
|
||||
7100 24.166564 -11.487147 0.64387099 1 1
|
||||
7200 23.686058 -10.715896 1.2925085 1 1
|
||||
7300 21.736425 -10.352004 1.0764821 1 1
|
||||
7400 21.756938 -10.074508 1.0701387 1 1
|
||||
7500 22.323591 -11.203855 -0.36457356 1 1
|
||||
7600 22.730259 -10.662609 0.73122128 1 1
|
||||
7700 23.202667 -11.659299 0.7119523 1 1
|
||||
7800 23.471274 -11.74546 0.84848437 1 1
|
||||
7900 23.949693 -11.305441 1.1163795 1 1
|
||||
8000 22.47431 -10.130036 -0.066154223 1 1
|
||||
8100 21.305517 -9.523347 0.21062991 1 1
|
||||
8200 22.14769 -10.939055 -0.33086967 1 1
|
||||
8300 22.581082 -10.60462 0.56817072 1 1
|
||||
8400 21.856655 -9.8759247 0.60046875 1 1
|
||||
8500 22.971535 -10.126406 0.46814301 1 1
|
||||
8600 21.888692 -10.223103 0.29953654 1 1
|
||||
8700 21.93789 -9.7821619 0.51904139 1 1
|
||||
8800 23.068366 -9.4753396 1.3557868 1 1
|
||||
8900 21.011634 -9.5857411 -0.13494832 1 1
|
||||
9000 23.266565 -10.310167 0.096937028 1 1
|
||||
9100 24.112118 -11.204616 0.20521367 1 1
|
||||
9200 24.11651 -11.994971 0.060396253 1 1
|
||||
9300 22.453882 -11.015744 -0.33537139 1 1
|
||||
9400 21.910618 -9.319849 0.74015472 1 1
|
||||
9500 22.605739 -9.7058087 -0.054051974 1 1
|
||||
9600 22.758713 -9.2000096 1.1199546 1 1
|
||||
9700 22.547301 -11.348949 -0.84949978 1 1
|
||||
9800 22.247969 -9.6757072 1.0696272 1 1
|
||||
9900 22.906215 -11.062401 -0.54889231 1 1
|
||||
10000 22.67397 -10.692979 0.57023228 1 1
|
||||
Loop time of 1.70238 on 1 procs for 10000 steps with 361 atoms
|
||||
|
||||
Pair time (%) = 0.492921 (28.9548)
|
||||
Bond time (%) = 0.2415 (14.1861)
|
||||
Neigh time (%) = 0.832589 (48.9074)
|
||||
Comm time (%) = 0.0141609 (0.831829)
|
||||
Outpt time (%) = 0.00105119 (0.0617482)
|
||||
Other time (%) = 0.120155 (7.05806)
|
||||
|
||||
Nlocal: 361 ave 361 max 361 min
|
||||
Histogram: 1 0 0 0 0 0 0 0 0 0
|
||||
Nghost: 0 ave 0 max 0 min
|
||||
Histogram: 1 0 0 0 0 0 0 0 0 0
|
||||
Neighs: 2706 ave 2706 max 2706 min
|
||||
Histogram: 1 0 0 0 0 0 0 0 0 0
|
||||
|
||||
Total # of neighbors = 2706
|
||||
Ave neighs/atom = 7.49584
|
||||
Ave special neighs/atom = 5.61773
|
||||
Neighbor list builds = 4877
|
||||
Dangerous builds = 0
|
|
@ -0,0 +1,203 @@
|
|||
LAMMPS (20 Jan 2015)
|
||||
# 2d circle of particles inside a box with LJ walls
|
||||
|
||||
variable b index 0
|
||||
|
||||
variable x index 50
|
||||
variable y index 20
|
||||
variable d index 20
|
||||
variable v index 5
|
||||
variable w index 2
|
||||
|
||||
units lj
|
||||
dimension 2
|
||||
atom_style bond
|
||||
boundary f f p
|
||||
|
||||
lattice hex 0.85
|
||||
Lattice spacing in x,y,z = 1.16553 2.01877 1.16553
|
||||
region box block 0 $x 0 $y -0.5 0.5
|
||||
region box block 0 50 0 $y -0.5 0.5
|
||||
region box block 0 50 0 20 -0.5 0.5
|
||||
create_box 1 box bond/types 1 extra/bond/per/atom 6
|
||||
Created orthogonal box = (0 0 -0.582767) to (58.2767 40.3753 0.582767)
|
||||
2 by 2 by 1 MPI processor grid
|
||||
region circle sphere $(v_d/2+1) $(v_d/2/sqrt(3.0)+1) 0.0 $(v_d/2)
|
||||
region circle sphere 11 $(v_d/2/sqrt(3.0)+1) 0.0 $(v_d/2)
|
||||
region circle sphere 11 6.7735026918962581988 0.0 $(v_d/2)
|
||||
region circle sphere 11 6.7735026918962581988 0.0 10
|
||||
create_atoms 1 region circle
|
||||
Created 361 atoms
|
||||
mass 1 1.0
|
||||
|
||||
velocity all create 0.5 87287 loop geom
|
||||
velocity all set $v $w 0 sum yes
|
||||
velocity all set 5 $w 0 sum yes
|
||||
velocity all set 5 2 0 sum yes
|
||||
|
||||
pair_style lj/cut 2.5
|
||||
pair_coeff 1 1 10.0 1.0 2.5
|
||||
|
||||
bond_style harmonic
|
||||
bond_coeff 1 10.0 1.2
|
||||
|
||||
# need to preserve 1-3, 1-4 pairwise interactions during hard collisions
|
||||
|
||||
special_bonds lj/coul 0 1 1
|
||||
0 = max # of 1-2 neighbors
|
||||
1 = max # of special neighbors
|
||||
create_bonds all all 1 1.0 1.5
|
||||
Added 1014 bonds, new total = 1014
|
||||
6 = max # of 1-2 neighbors
|
||||
6 = max # of special neighbors
|
||||
|
||||
neighbor 0.3 bin
|
||||
neigh_modify delay 0 every 1 check yes
|
||||
|
||||
fix 1 all nve
|
||||
|
||||
fix 2 all wall/lj93 xlo 0.0 1 1 2.5 xhi $x 1 1 2.5
|
||||
fix 2 all wall/lj93 xlo 0.0 1 1 2.5 xhi 50 1 1 2.5
|
||||
fix 3 all wall/lj93 ylo 0.0 1 1 2.5 yhi $y 1 1 2.5
|
||||
fix 3 all wall/lj93 ylo 0.0 1 1 2.5 yhi 20 1 1 2.5
|
||||
|
||||
comm_style tiled
|
||||
comm_modify cutoff 5.0
|
||||
fix 10 all balance 50 0.9 rcb
|
||||
|
||||
#compute 1 all property/atom proc
|
||||
#variable p atom (c_1%10)+1
|
||||
#dump 2 all custom 50 tmp.dump id v_p x y z
|
||||
|
||||
#dump 3 all image 200 image.*.jpg v_p type bond atom 0.25 # adiam 1.0 view 0 0 zoom 1.8 subbox yes 0.02
|
||||
#variable colors string # "red green blue yellow white # purple pink orange lime gray"
|
||||
#dump_modify 3 pad 5 amap 0 10 sa 1 10 ${colors}
|
||||
|
||||
thermo_style custom step temp epair press f_10[3] f_10
|
||||
thermo 100
|
||||
|
||||
run 10000
|
||||
Memory usage per processor = 4.49417 Mbytes
|
||||
Step Temp E_pair Press 10[3] 10
|
||||
0 25.701528 -2.2032569 3.1039469 3.2354571 1.0526316
|
||||
100 27.623422 -6.228166 2.6542136 1.2631579 1.0083102
|
||||
200 33.35302 -15.746749 3.2018248 1.2963989 1.0193906
|
||||
300 39.17734 -24.1557 4.9116986 1.2963989 1.0193906
|
||||
400 41.660701 -27.615203 8.6214674 1.3518006 1.0083102
|
||||
500 37.155014 -24.097047 3.2656265 1.3296399 1.0193906
|
||||
600 35.067719 -21.53529 2.3617122 1.3296399 1.0083102
|
||||
700 36.797606 -22.272819 4.1085032 1.3739612 1.0083102
|
||||
800 38.930342 -24.864401 4.7625466 1.3296399 1.0083102
|
||||
900 38.730963 -25.045492 3.5573709 1.3961219 1.0193906
|
||||
1000 38.984871 -26.014244 5.5553204 1.3074792 1.0083102
|
||||
1100 35.866405 -24.460824 4.4136958 1.1745152 1.0304709
|
||||
1200 31.856499 -21.327208 4.8683292 1.2299169 1.0083102
|
||||
1300 30.644325 -20.323116 7.9280951 1.1412742 1.0193906
|
||||
1400 31.741624 -21.112623 4.3143446 1.0969529 1.0083102
|
||||
1500 27.833154 -16.776664 1.2660178 1.1301939 1.0193906
|
||||
1600 26.34891 -15.593189 0.058681042 1.1191136 1.0193906
|
||||
1700 24.885178 -14.001838 1.3274486 1.1080332 1.0193906
|
||||
1800 26.427047 -14.569617 0.72975905 1.1301939 1.0304709
|
||||
1900 25.381784 -13.64581 0.81944943 1.1301939 1.0193906
|
||||
2000 25.723386 -13.333268 1.4334528 1.1301939 1.0193906
|
||||
2100 26.606752 -13.0949 1.2989863 1.1634349 1.0083102
|
||||
2200 26.509512 -13.387688 1.1167579 1.1523546 1.0193906
|
||||
2300 25.639992 -13.179846 2.2501322 1.1745152 1.0083102
|
||||
2400 26.150503 -13.491713 0.76868673 1.2188366 1.0083102
|
||||
2500 25.972499 -12.063864 0.34516973 1.1412742 1.0083102
|
||||
2600 25.486036 -12.940458 0.76199757 1.1412742 1.0193906
|
||||
2700 26.230132 -13.652341 1.7338723 1.1745152 1.0304709
|
||||
2800 25.772724 -14.463605 2.8585269 1.0969529 1.0083102
|
||||
2900 25.103016 -13.919596 2.2930476 1.0083102 1.0193906
|
||||
3000 24.01254 -12.717424 0.47774495 1.0304709 1.0193906
|
||||
3100 20.736549 -10.890076 -0.98873052 1.1191136 1.0193906
|
||||
3200 19.941553 -10.018251 -0.99096631 1.0969529 1.0083102
|
||||
3300 21.873239 -10.239556 -0.3143815 1.0747922 1.0193906
|
||||
3400 22.862231 -9.8339225 0.26144526 1.0858726 1.0083102
|
||||
3500 25.147981 -10.880207 1.4798766 1.1080332 1.0193906
|
||||
3600 25.180896 -11.622133 0.77173223 1.0747922 1.0083102
|
||||
3700 23.556788 -11.299634 0.55954881 1.0858726 1.0083102
|
||||
3800 22.493407 -10.659886 0.11815461 1.0747922 1.0083102
|
||||
3900 21.039439 -10.814837 -1.1505917 1.0969529 1.0083102
|
||||
4000 21.595234 -9.5907841 -0.18492957 1.0526316 1.0083102
|
||||
4100 22.241581 -10.021155 -0.45382989 1.0526316 1.0193906
|
||||
4200 22.580958 -9.424629 1.2640842 1.0858726 1.0083102
|
||||
4300 23.254321 -10.231677 1.4385745 1.0747922 1.0083102
|
||||
4400 22.155518 -10.378937 -0.25935415 1.0858726 1.0083102
|
||||
4500 21.786702 -9.9697581 -0.38862549 1.1634349 1.0193906
|
||||
4600 21.483407 -9.8450983 0.1027055 1.0858726 1.0083102
|
||||
4700 22.049222 -10.118926 0.042422718 1.0747922 1.0083102
|
||||
4800 22.278153 -10.189539 -0.16842442 1.1191136 1.0193906
|
||||
4900 23.783566 -10.754126 0.25570457 1.0637119 1.0193906
|
||||
5000 22.996999 -10.035746 2.0164077 1.0526316 1.0083102
|
||||
5100 22.291983 -10.132069 -0.59577654 1.0858726 1.0083102
|
||||
5200 21.988363 -9.4430094 0.59736801 1.1191136 1.0193906
|
||||
5300 20.725686 -9.6416497 -0.23784458 1.0969529 1.0083102
|
||||
5400 23.294636 -9.85156 0.86168288 1.0747922 1.0083102
|
||||
5500 22.426116 -10.090518 0.43379868 1.0526316 1.0193906
|
||||
5600 24.100731 -10.615051 0.21676601 1.1080332 1.0083102
|
||||
5700 22.767374 -10.461632 0.50164522 1.0858726 1.0193906
|
||||
5800 21.665039 -9.4705485 0.10158023 1.1080332 1.0193906
|
||||
5900 23.754335 -9.8103385 0.82641206 1.0637119 1.0083102
|
||||
6000 23.764263 -10.822225 0.0086706095 1.0637119 1.0193906
|
||||
6100 23.061093 -10.66149 0.64615841 1.0858726 1.0193906
|
||||
6200 23.231721 -11.326359 0.97854607 1.0526316 1.0193906
|
||||
6300 22.063301 -10.866822 0.57761463 1.0304709 1.0083102
|
||||
6400 21.893824 -9.9403304 1.3271195 1.0304709 1.0083102
|
||||
6500 21.819506 -10.378298 -0.13622266 1.0858726 1.0083102
|
||||
6600 23.585267 -10.859164 1.2332959 1.0415512 1.0083102
|
||||
6700 23.929532 -11.205031 0.14390049 1.0415512 1.0193906
|
||||
6800 22.94314 -11.233426 0.32383955 1.1301939 1.0083102
|
||||
6900 23.734174 -10.111417 0.21771857 1.0415512 1.0083102
|
||||
7000 22.628793 -9.9941906 -0.92631583 1.0747922 1.0083102
|
||||
7100 21.490557 -8.6579625 -0.07159052 1.0526316 1.0193906
|
||||
7200 21.927094 -9.528413 -0.3508067 1.0193906 1.0083102
|
||||
7300 21.943432 -9.9866332 0.3033917 1.0415512 1.0193906
|
||||
7400 24.43301 -10.32538 1.0510565 1.0415512 1.0193906
|
||||
7500 23.463108 -10.582478 -0.22352118 1.1191136 1.0193906
|
||||
7600 21.46269 -9.216786 -0.33836008 1.0747922 1.0083102
|
||||
7700 21.319723 -9.2120009 -0.59833641 1.1301939 1.0083102
|
||||
7800 22.097084 -10.093375 -0.87261682 1.0526316 1.0304709
|
||||
7900 23.186493 -9.8320314 -0.021894508 1.0858726 1.0083102
|
||||
8000 24.449738 -10.441875 1.3850788 1.1412742 1.0193906
|
||||
8100 22.766547 -10.411191 0.24146571 1.0747922 1.0083102
|
||||
8200 21.630901 -9.8179811 -0.53917965 1.0304709 1.0083102
|
||||
8300 22.453992 -9.1084537 0.57116298 1.0747922 1.0083102
|
||||
8400 22.199214 -9.4209101 0.070865332 1.1301939 1.0083102
|
||||
8500 22.198633 -9.4525954 0.34217625 1.1191136 1.0083102
|
||||
8600 23.984248 -11.161067 0.51361855 1.0637119 1.0083102
|
||||
8700 24.263363 -11.839759 0.13644863 1.0747922 1.0193906
|
||||
8800 23.289118 -9.8009851 0.91489484 1.0526316 1.0304709
|
||||
8900 24.143641 -10.312225 0.081112692 1.0415512 1.0083102
|
||||
9000 23.111923 -10.40996 -0.47374519 1.0637119 1.0083102
|
||||
9100 21.863926 -10.475378 0.062392283 1.0747922 1.0193906
|
||||
9200 23.441607 -10.205203 0.49831793 1.1412742 1.0193906
|
||||
9300 22.795416 -10.01578 0.099598266 1.0193906 1.0083102
|
||||
9400 23.540787 -10.811556 0.19109305 1.0747922 1.0193906
|
||||
9500 22.438597 -10.140651 0.52944782 1.0304709 1.0193906
|
||||
9600 23.513188 -10.956581 1.474452 1.0969529 1.0083102
|
||||
9700 22.958673 -11.158105 -0.061358964 1.1523546 1.0193906
|
||||
9800 22.989978 -10.461202 -0.11504011 1.0637119 1.0083102
|
||||
9900 22.321529 -9.4743506 -0.46174667 1.0969529 1.0083102
|
||||
10000 21.559071 -9.3390062 -0.24571278 1.0969529 1.0083102
|
||||
Loop time of 0.721486 on 4 procs for 10000 steps with 361 atoms
|
||||
|
||||
Pair time (%) = 0.133076 (18.4448)
|
||||
Bond time (%) = 0.0595608 (8.25529)
|
||||
Neigh time (%) = 0.27641 (38.3112)
|
||||
Comm time (%) = 0.142561 (19.7593)
|
||||
Outpt time (%) = 0.0016793 (0.232756)
|
||||
Other time (%) = 0.108199 (14.9967)
|
||||
|
||||
Nlocal: 90.25 ave 91 max 89 min
|
||||
Histogram: 1 0 0 0 0 1 0 0 0 2
|
||||
Nghost: 121.5 ave 131 max 107 min
|
||||
Histogram: 1 0 0 0 0 1 0 0 0 2
|
||||
Neighs: 602.75 ave 680 max 538 min
|
||||
Histogram: 1 0 0 1 1 0 0 0 0 1
|
||||
|
||||
Total # of neighbors = 2411
|
||||
Ave neighs/atom = 6.67867
|
||||
Ave special neighs/atom = 5.61773
|
||||
Neighbor list builds = 4865
|
||||
Dangerous builds = 0
|
|
@ -0,0 +1,502 @@
|
|||
LAMMPS (20 Jan 2015)
|
||||
# 2d circle of particles inside a box with LJ walls
|
||||
|
||||
variable b index 0
|
||||
|
||||
variable x index 50
|
||||
variable y index 20
|
||||
variable d index 20
|
||||
|
||||
# careful not to slam into wall too hard
|
||||
|
||||
variable v index 0.3
|
||||
variable w index 0.08
|
||||
|
||||
units lj
|
||||
dimension 2
|
||||
atom_style bond
|
||||
boundary f f p
|
||||
|
||||
lattice hex 0.85
|
||||
Lattice spacing in x,y,z = 1.16553 2.01877 1.16553
|
||||
region box block 0 $x 0 $y -0.5 0.5
|
||||
region box block 0 50 0 $y -0.5 0.5
|
||||
region box block 0 50 0 20 -0.5 0.5
|
||||
create_box 1 box bond/types 1 extra/bond/per/atom 6
|
||||
Created orthogonal box = (0 0 -0.582767) to (58.2767 40.3753 0.582767)
|
||||
1 by 1 by 1 MPI processor grid
|
||||
region circle sphere $(v_d/2+1) $(v_d/2/sqrt(3.0)+1) 0.0 $(v_d/2)
|
||||
region circle sphere 11 $(v_d/2/sqrt(3.0)+1) 0.0 $(v_d/2)
|
||||
region circle sphere 11 6.7735026918962581988 0.0 $(v_d/2)
|
||||
region circle sphere 11 6.7735026918962581988 0.0 10
|
||||
create_atoms 1 region circle
|
||||
Created 361 atoms
|
||||
mass 1 1.0
|
||||
|
||||
velocity all create 0.5 87287 loop geom
|
||||
velocity all set $v $w 0 sum yes
|
||||
velocity all set 0.3 $w 0 sum yes
|
||||
velocity all set 0.3 0.08 0 sum yes
|
||||
|
||||
pair_style lj/cut 2.5
|
||||
pair_coeff 1 1 10.0 1.0 2.5
|
||||
|
||||
bond_style harmonic
|
||||
bond_coeff 1 10.0 1.2
|
||||
|
||||
create_bonds all all 1 1.0 1.5
|
||||
Added 1014 bonds, new total = 1014
|
||||
6 = max # of 1-2 neighbors
|
||||
30 = max # of 1-3 neighbors
|
||||
180 = max # of 1-4 neighbors
|
||||
36 = max # of special neighbors
|
||||
|
||||
neighbor 0.3 bin
|
||||
neigh_modify delay 0 every 1 check yes
|
||||
|
||||
fix 1 all nve
|
||||
|
||||
fix 2 all wall/lj93 xlo 0.0 1 1 2.5 xhi $x 1 1 2.5
|
||||
fix 2 all wall/lj93 xlo 0.0 1 1 2.5 xhi 50 1 1 2.5
|
||||
fix 3 all wall/lj93 ylo 0.0 1 1 2.5 yhi $y 1 1 2.5
|
||||
fix 3 all wall/lj93 ylo 0.0 1 1 2.5 yhi 20 1 1 2.5
|
||||
|
||||
comm_style tiled
|
||||
fix 10 all balance 50 0.9 rcb
|
||||
|
||||
#compute 1 all property/atom proc
|
||||
#variable p atom (c_1%10)+1
|
||||
#dump 2 all custom 50 tmp.dump id v_p x y z
|
||||
|
||||
#dump 3 all image 200 image.*.jpg v_p type bond atom 0.25 # adiam 1.0 view 0 0 zoom 1.8 subbox yes 0.02
|
||||
#variable colors string # "red green blue yellow white # purple pink orange lime gray"
|
||||
#dump_modify 3 pad 5 amap 0 10 sa 1 10 ${colors}
|
||||
|
||||
thermo_style custom step temp epair press f_10[3] f_10
|
||||
thermo 100
|
||||
|
||||
run 40000
|
||||
Memory usage per processor = 6.31529 Mbytes
|
||||
Step Temp E_pair Press 10[3] 10
|
||||
0 0.57437856 0 0.26099453 1 1
|
||||
100 0.29756515 0 0.10149401 1 1
|
||||
200 0.35394813 0 0.075159099 1 1
|
||||
300 0.39245849 0 0.033002384 1 1
|
||||
400 0.34078347 0 -0.020825841 1 1
|
||||
500 0.35201095 0 -0.062637506 1 1
|
||||
600 0.34014717 0 -0.11122965 1 1
|
||||
700 0.3323524 0 -0.11598015 1 1
|
||||
800 0.35116047 0 -0.096162395 1 1
|
||||
900 0.35695352 0 -0.01385176 1 1
|
||||
1000 0.36986539 0 0.056772858 1 1
|
||||
1100 0.34584644 0 0.084941323 1 1
|
||||
1200 0.31921435 0 0.10545078 1 1
|
||||
1300 0.32952819 0 0.124902 1 1
|
||||
1400 0.34497365 0 0.12662081 1 1
|
||||
1500 0.33429243 0 0.096230972 1 1
|
||||
1600 0.33765387 0 0.025800542 1 1
|
||||
1700 0.35134464 0 -0.04422593 1 1
|
||||
1800 0.35003859 0 -0.096745576 1 1
|
||||
1900 0.33839618 0 -0.095465943 1 1
|
||||
2000 0.33732078 0 -0.094652802 1 1
|
||||
2100 0.34552238 0 -0.076729261 1 1
|
||||
2200 0.34893142 0 -0.036853228 1 1
|
||||
2300 0.35379341 0 0.021124847 1 1
|
||||
2400 0.34829744 0 0.09230184 1 1
|
||||
2500 0.33038141 0 0.1399855 1 1
|
||||
2600 0.30983019 0 0.12754742 1 1
|
||||
2700 0.32992561 0 0.10485138 1 1
|
||||
2800 0.34604747 0 0.066174138 1 1
|
||||
2900 0.3444791 0 0.036590652 1 1
|
||||
3000 0.34721342 0 -0.023793368 1 1
|
||||
3100 0.33404314 0 -0.08374223 1 1
|
||||
3200 0.33019355 0 -0.12715599 1 1
|
||||
3300 0.33515177 0 -0.12217394 1 1
|
||||
3400 0.33628481 0 -0.070877624 1 1
|
||||
3500 0.34257038 0 -0.021612062 1 1
|
||||
3600 0.32838009 0 0.030131228 1 1
|
||||
3700 0.34462142 0 0.074586378 1 1
|
||||
3800 0.30891825 0 0.10605673 1 1
|
||||
3900 0.33847951 0 0.13956139 1 1
|
||||
4000 0.32952079 0 0.12688129 1 1
|
||||
4100 0.32646772 0 0.081089042 1 1
|
||||
4200 0.35399503 0 0.013422873 1 1
|
||||
4300 0.33154914 0 -0.050919508 1 1
|
||||
4400 0.34113556 0 -0.083171 1 1
|
||||
4500 0.32651708 0 -0.1063133 1 1
|
||||
4600 0.34359609 0 -0.1076395 1 1
|
||||
4700 0.34973537 0 -0.088231606 1 1
|
||||
4800 0.35198515 0 -0.020901044 1 1
|
||||
4900 0.35187284 0 0.043645941 1 1
|
||||
5000 0.34887336 0 0.095698609 1 1
|
||||
5100 0.30308163 0 0.11649328 1 1
|
||||
5200 0.32401285 0 0.12072411 1 1
|
||||
5300 0.33025072 0 0.10933161 1 1
|
||||
5400 0.33288012 0 0.078356448 1 1
|
||||
5500 0.35142492 0 0.036958063 1 1
|
||||
5600 0.35125368 0 -0.041371343 1 1
|
||||
5700 0.34547744 0 -0.096450846 1 1
|
||||
5800 0.30939887 0 -0.12356656 1 1
|
||||
5900 0.32315628 0 -0.11338676 1 1
|
||||
6000 0.34117485 0 -0.066198961 1 1
|
||||
6100 0.35298043 0 -0.016172816 1 1
|
||||
6200 0.35130653 0 0.027660468 1 1
|
||||
6300 0.35398766 0 0.087221238 1 1
|
||||
6400 0.30963379 0 0.11990957 1 1
|
||||
6500 0.3174541 0 0.14103528 1 1
|
||||
6600 0.31989791 0 0.11575506 1 1
|
||||
6700 0.33811477 0 0.060747353 1 1
|
||||
6800 0.3424043 0 0.010357152 1 1
|
||||
6900 0.34804319 0 -0.042621786 1 1
|
||||
7000 0.35357865 0 -0.067248959 1 1
|
||||
7100 0.33556885 0 -0.10983726 1 1
|
||||
7200 0.33531101 0 -0.112179 1 1
|
||||
7300 0.35742607 0 -0.078405267 1 1
|
||||
7400 0.34577559 0 -0.01985432 1 1
|
||||
7500 0.3498641 0 0.052289439 1 1
|
||||
7600 0.33773715 0 0.092939035 1 1
|
||||
7700 0.33093497 0 0.11924405 1 1
|
||||
7800 0.31435814 0 0.12701724 1 1
|
||||
7900 0.33132217 0 0.10793075 1 1
|
||||
8000 0.33451798 0 0.077993125 1 1
|
||||
8100 0.35188371 0 0.019929977 1 1
|
||||
8200 0.33645742 0 -0.039302079 1 1
|
||||
8300 0.3415632 0 -0.098067982 1 1
|
||||
8400 0.30619282 0 -0.12952879 1 1
|
||||
8500 0.34446484 0 -0.098084709 1 1
|
||||
8600 0.33761673 0 -0.07069818 1 1
|
||||
8700 0.34495452 0 -0.022458056 1 1
|
||||
8800 0.33502983 0 0.027742411 1 1
|
||||
8900 0.35418591 0 0.092390134 1 1
|
||||
9000 0.31648387 0 0.12467398 1 1
|
||||
9100 0.33994825 0 0.14460327 1 1
|
||||
9200 0.33822571 0 0.11273284 1 1
|
||||
9300 0.33260773 0 0.060063671 1 1
|
||||
9400 0.36140305 0 0.021427642 1 1
|
||||
9500 0.34273562 0 -0.034064202 1 1
|
||||
9600 0.33867054 0 -0.089076906 1 1
|
||||
9700 0.32088235 0 -0.12027075 1 1
|
||||
9800 0.3320823 0 -0.11602794 1 1
|
||||
9900 0.33916442 0 -0.080281044 1 1
|
||||
10000 0.34852268 0 -0.01000914 1 1
|
||||
10100 0.32955942 0 0.04258493 1 1
|
||||
10200 0.34487898 0 0.086971308 1 1
|
||||
10300 0.32325593 0 0.11558149 1 1
|
||||
10400 0.30927871 0 0.12239437 1 1
|
||||
10500 0.33176799 0 0.12285937 1 1
|
||||
10600 0.35120027 0 0.084897432 1 1
|
||||
10700 0.33129697 0 0.0053089279 1 1
|
||||
10800 0.36028769 0 -0.04280715 1 1
|
||||
10900 0.35552287 0 -0.084955999 1 1
|
||||
11000 0.3406024 0 -0.096554577 1 1
|
||||
11100 0.33041202 0 -0.10703492 1 1
|
||||
11200 0.32442686 0 -0.084328121 1 1
|
||||
11300 0.35952468 0 -0.020191965 1 1
|
||||
11400 0.34610624 0 0.03440148 1 1
|
||||
11500 0.3415612 0 0.1041929 1 1
|
||||
11600 0.34040042 0 0.13215705 1 1
|
||||
11700 0.33555094 0 0.12738686 1 1
|
||||
11800 0.3458647 0 0.10963398 1 1
|
||||
11900 0.33836678 0 0.067253864 1 1
|
||||
12000 0.34853314 0 0.03201448 1 1
|
||||
12100 0.34600048 0 -0.034833402 1 1
|
||||
12200 0.33145631 0 -0.09865675 1 1
|
||||
12300 0.32848884 0 -0.1248489 1 1
|
||||
12400 0.3321344 0 -0.11266575 1 1
|
||||
12500 0.32622305 0 -0.061634993 1 1
|
||||
12600 0.36213537 0 -0.0090593315 1 1
|
||||
12700 0.34673866 0 0.036734645 1 1
|
||||
12800 0.34606618 0 0.086267678 1 1
|
||||
12900 0.34271431 0 0.12415522 1 1
|
||||
13000 0.31993287 0 0.13879926 1 1
|
||||
13100 0.3422918 0 0.11978905 1 1
|
||||
13200 0.33055236 0 0.062620483 1 1
|
||||
13300 0.34652207 0 0.0043833459 1 1
|
||||
13400 0.33574661 0 -0.04691024 1 1
|
||||
13500 0.33940837 0 -0.074241604 1 1
|
||||
13600 0.32093414 0 -0.1078027 1 1
|
||||
13700 0.34336597 0 -0.10544097 1 1
|
||||
13800 0.35806461 0 -0.072531559 1 1
|
||||
13900 0.35209713 0 -0.018851408 1 1
|
||||
14000 0.35702629 0 0.061046366 1 1
|
||||
14100 0.33234093 0 0.094086465 1 1
|
||||
14200 0.3459466 0 0.12186656 1 1
|
||||
14300 0.3327428 0 0.11396572 1 1
|
||||
14400 0.32409443 0 0.10658903 1 1
|
||||
14500 0.35022184 0 0.083558031 1 1
|
||||
14600 0.34823843 0 0.024605569 1 1
|
||||
14700 0.35298973 0 -0.040418888 1 1
|
||||
14800 0.33679845 0 -0.10067728 1 1
|
||||
14900 0.32790966 0 -0.10925568 1 1
|
||||
15000 0.34208495 0 -0.09568004 1 1
|
||||
15100 0.33647529 0 -0.055652929 1 1
|
||||
15200 0.35328398 0 -0.020236536 1 1
|
||||
15300 0.34252669 0 0.026434179 1 1
|
||||
15400 0.34409435 0 0.094410599 1 1
|
||||
15500 0.32288994 0 0.12034455 1 1
|
||||
15600 0.32109689 0 0.13645185 1 1
|
||||
15700 0.33681572 0 0.098607746 1 1
|
||||
15800 0.33635195 0 0.05570715 1 1
|
||||
15900 0.34289757 0 0.013849092 1 1
|
||||
16000 0.34225547 0 -0.035597548 1 1
|
||||
16100 0.33660991 0 -0.076931881 1 1
|
||||
16200 0.32802152 0 -0.12765884 1 1
|
||||
16300 0.3469374 0 -0.10785455 1 1
|
||||
16400 0.34053641 0 -0.070259853 1 1
|
||||
16500 0.34610591 0 -0.014315306 1 1
|
||||
16600 0.35109001 0 0.041251169 1 1
|
||||
16700 0.34336905 0 0.077996627 1 1
|
||||
16800 0.33277414 0 0.11053634 1 1
|
||||
16900 0.32183338 0 0.11680626 1 1
|
||||
17000 0.34044352 0 0.10806555 1 1
|
||||
17100 0.32967873 0 0.067759786 1 1
|
||||
17200 0.36172278 0 -0.0048631904 1 1
|
||||
17300 0.35619435 0 -0.04215545 1 1
|
||||
17400 0.34540936 0 -0.093994174 1 1
|
||||
17500 0.33193585 0 -0.098831315 1 1
|
||||
17600 0.3544756 0 -0.085660403 1 1
|
||||
17700 0.34505209 0 -0.069640515 1 1
|
||||
17800 0.36291124 0 -0.0063088133 1 1
|
||||
17900 0.34255705 0 0.046794555 1 1
|
||||
18000 0.34163238 0 0.11767705 1 1
|
||||
18100 0.3466445 0 0.1351712 1 1
|
||||
18200 0.33037668 0 0.12703659 1 1
|
||||
18300 0.33677404 0 0.10956306 1 1
|
||||
18400 0.34978954 0 0.087193072 1 1
|
||||
18500 0.33354363 0 0.051095814 1 1
|
||||
18600 0.34651729 0 0.0056245561 1 1
|
||||
18700 0.32622232 0 -0.047319269 1 1
|
||||
18800 0.32978847 0 -0.054929416 1 1
|
||||
18900 0.34192451 0 -0.037252471 1 1
|
||||
19000 0.34061294 0 -0.001167235 1 1
|
||||
19100 0.34194478 0 0.016945224 1 1
|
||||
19200 0.33321765 0 0.050665354 1 1
|
||||
19300 0.33197783 0 0.080470585 1 1
|
||||
19400 0.33284715 0 0.12423599 1 1
|
||||
19500 0.33867856 0 0.12689524 1 1
|
||||
19600 0.36092786 0 0.11417704 1 1
|
||||
19700 0.34270183 0 0.069038291 1 1
|
||||
19800 0.34880695 0 0.042483681 1 1
|
||||
19900 0.33903644 0 0.034788638 1 1
|
||||
20000 0.32590125 0 0.011383785 1 1
|
||||
20100 0.30358859 0 0.0030743554 1 1
|
||||
20200 0.31830224 0 0.017637826 1 1
|
||||
20300 0.34195438 0 0.072811099 1 1
|
||||
20400 0.31249563 0 0.10063541 1 1
|
||||
20500 0.31544938 0 0.1405794 1 1
|
||||
20600 0.30071644 0 0.12763486 1 1
|
||||
20700 0.2890265 0 0.1136651 1 1
|
||||
20800 0.28962296 0 0.094481978 1 1
|
||||
20900 0.29447212 0 0.0967165 1 1
|
||||
21000 0.31159961 0 0.067307231 1 1
|
||||
21100 0.30490648 0 0.017689358 1 1
|
||||
21200 0.30687262 0 -0.016055512 1 1
|
||||
21300 0.30083286 0 -0.0014988997 1 1
|
||||
21400 0.32070426 0 0.015960302 1 1
|
||||
21500 0.31439311 0 0.038170385 1 1
|
||||
21600 0.32617832 0 0.043263788 1 1
|
||||
21700 0.35151793 0 0.066302727 1 1
|
||||
21800 0.35912885 0 0.070099103 1 1
|
||||
21900 0.32451958 0 0.068935768 1 1
|
||||
22000 0.35219298 0 0.067161227 1 1
|
||||
22100 0.34857705 0 0.032731746 1 1
|
||||
22200 0.34750227 0 0.0056917695 1 1
|
||||
22300 0.34766017 0 -0.0027090483 1 1
|
||||
22400 0.33426062 0 -0.023196063 1 1
|
||||
22500 0.34174625 0 -0.025019717 1 1
|
||||
22600 0.3356145 0 -0.029707418 1 1
|
||||
22700 0.3362653 0 -0.035815733 1 1
|
||||
22800 0.33973405 0 -0.0024705835 1 1
|
||||
22900 0.33813085 0 0.0077527467 1 1
|
||||
23000 0.33339981 0 0.028340744 1 1
|
||||
23100 0.34079832 0 0.018521302 1 1
|
||||
23200 0.33074548 0 0.032378405 1 1
|
||||
23300 0.32965664 0 0.035989589 1 1
|
||||
23400 0.30927749 0 0.024581106 1 1
|
||||
23500 0.32890632 0 0.01092479 1 1
|
||||
23600 0.34137438 0 0.0094839745 1 1
|
||||
23700 0.34512638 0 -0.012392771 1 1
|
||||
23800 0.31781354 0 -0.012908449 1 1
|
||||
23900 0.32405513 0 -0.015018071 1 1
|
||||
24000 0.33549728 0 -0.012812915 1 1
|
||||
24100 0.31368736 0 -0.020818372 1 1
|
||||
24200 0.33533836 0 0.0056121057 1 1
|
||||
24300 0.32530627 0 0.018183931 1 1
|
||||
24400 0.31930662 0 0.027446878 1 1
|
||||
24500 0.33540302 0 0.040307455 1 1
|
||||
24600 0.34020431 0 0.027403921 1 1
|
||||
24700 0.3291814 0 0.01204865 1 1
|
||||
24800 0.31552604 0 0.019654111 1 1
|
||||
24900 0.34727253 0 0.01670543 1 1
|
||||
25000 0.35120105 0 0.0038617562 1 1
|
||||
25100 0.32706871 0 -0.021196623 1 1
|
||||
25200 0.32915282 0 -0.017146508 1 1
|
||||
25300 0.32577518 0 -0.01312495 1 1
|
||||
25400 0.33286855 0 0.0014726193 1 1
|
||||
25500 0.33002601 0 0.0080974022 1 1
|
||||
25600 0.34127655 0 0.014296091 1 1
|
||||
25700 0.34048065 0 0.022513032 1 1
|
||||
25800 0.33029079 0 0.038733531 1 1
|
||||
25900 0.33031324 0 0.026156982 1 1
|
||||
26000 0.32967371 0 0.028727383 1 1
|
||||
26100 0.33775718 0 0.015607478 1 1
|
||||
26200 0.35097144 0 0.012291703 1 1
|
||||
26300 0.34303792 0 0.00094823191 1 1
|
||||
26400 0.33632665 0 -0.0026904889 1 1
|
||||
26500 0.33580127 0 -0.0074168555 1 1
|
||||
26600 0.33063188 0 -0.020378601 1 1
|
||||
26700 0.33581846 0 -0.00084397268 1 1
|
||||
26800 0.32998532 0 0.015932208 1 1
|
||||
26900 0.33825444 0 0.010428603 1 1
|
||||
27000 0.32081518 0 0.019818223 1 1
|
||||
27100 0.31448098 0 0.020093416 1 1
|
||||
27200 0.32643684 0 0.021934917 1 1
|
||||
27300 0.33289466 0 0.023713072 1 1
|
||||
27400 0.32310744 0 0.024110945 1 1
|
||||
27500 0.33115619 0 0.0025776713 1 1
|
||||
27600 0.33295887 0 -0.010710764 1 1
|
||||
27700 0.32968876 0 -0.0064595905 1 1
|
||||
27800 0.34064581 0 -0.0086519116 1 1
|
||||
27900 0.33559187 0 -0.0055753593 1 1
|
||||
28000 0.32300727 0 -0.0004153384 1 1
|
||||
28100 0.32147461 0 -0.0058543412 1 1
|
||||
28200 0.35532383 0 0.013646951 1 1
|
||||
28300 0.31507942 0 0.026532255 1 1
|
||||
28400 0.32711006 0 0.033214981 1 1
|
||||
28500 0.34472462 0 0.028050837 1 1
|
||||
28600 0.33708059 0 0.019115676 1 1
|
||||
28700 0.34478087 0 0.023743689 1 1
|
||||
28800 0.34546686 0 0.0081772997 1 1
|
||||
28900 0.34004886 0 0.017771865 1 1
|
||||
29000 0.33604232 0 -0.010505671 1 1
|
||||
29100 0.33541374 0 -0.016273261 1 1
|
||||
29200 0.34347489 0 -0.010002306 1 1
|
||||
29300 0.34083904 0 0.0089701784 1 1
|
||||
29400 0.34846892 0 0.020765104 1 1
|
||||
29500 0.3416255 0 0.022650856 1 1
|
||||
29600 0.33725496 0 0.020693083 1 1
|
||||
29700 0.34480638 0 0.024317128 1 1
|
||||
29800 0.31459471 0 0.023097895 1 1
|
||||
29900 0.33014448 0 0.03114046 1 1
|
||||
30000 0.33741498 0 0.015624314 1 1
|
||||
30100 0.32598657 0 -0.0018860541 1 1
|
||||
30200 0.34855815 0 0.0017983372 1 1
|
||||
30300 0.33375921 0 0.0010991235 1 1
|
||||
30400 0.35008944 0 -0.0027316177 1 1
|
||||
30500 0.33279729 0 -0.0035788551 1 1
|
||||
30600 0.33868746 0 -0.0016249482 1 1
|
||||
30700 0.33597034 0 -0.0014524001 1 1
|
||||
30800 0.3227257 0 0.016353457 1 1
|
||||
30900 0.32676516 0 0.027396654 1 1
|
||||
31000 0.34083982 0 0.031606413 1 1
|
||||
31100 0.32165238 0 0.013583368 1 1
|
||||
31200 0.3428492 0 0.020486611 1 1
|
||||
31300 0.32372541 0 0.01215566 1 1
|
||||
31400 0.32734692 0 0.016229397 1 1
|
||||
31500 0.33089262 0 0.0060426618 1 1
|
||||
31600 0.34273493 0 -0.013456537 1 1
|
||||
31700 0.32723905 0 -0.019243766 1 1
|
||||
31800 0.33636488 0 0.0027814902 1 1
|
||||
31900 0.32834805 0 0.00706877 1 1
|
||||
32000 0.33995148 0 0.0018383309 1 1
|
||||
32100 0.33412282 0 0.0076455933 1 1
|
||||
32200 0.34334884 0 0.023586129 1 1
|
||||
32300 0.32778925 0 0.020564321 1 1
|
||||
32400 0.33163443 0 0.038878463 1 1
|
||||
32500 0.32290345 0 0.022247461 1 1
|
||||
32600 0.34113954 0 0.010966365 1 1
|
||||
32700 0.33390633 0 0.0037777555 1 1
|
||||
32800 0.34385341 0 0.010556575 1 1
|
||||
32900 0.32137047 0 0.00022027143 1 1
|
||||
33000 0.32079172 0 -0.017261272 1 1
|
||||
33100 0.33570882 0 -0.0051942206 1 1
|
||||
33200 0.34320894 0 -0.011515281 1 1
|
||||
33300 0.32794746 0 -0.0018153673 1 1
|
||||
33400 0.33060982 0 0.027118146 1 1
|
||||
33500 0.33641809 0 0.02143035 1 1
|
||||
33600 0.33643061 0 0.020833068 1 1
|
||||
33700 0.3485949 0 0.030918751 1 1
|
||||
33800 0.3283985 0 0.01947613 1 1
|
||||
33900 0.31959761 0 0.021128147 1 1
|
||||
34000 0.33897984 0 0.015270986 1 1
|
||||
34100 0.32392267 0 0.0020130852 1 1
|
||||
34200 0.33084514 0 -0.024316708 1 1
|
||||
34300 0.3342259 0 -0.0059047764 1 1
|
||||
34400 0.33385098 0 0.0063818721 1 1
|
||||
34500 0.33255603 0 -0.01023837 1 1
|
||||
34600 0.34766173 0 0.0056703013 1 1
|
||||
34700 0.339822 0 0.0061648559 1 1
|
||||
34800 0.33902329 0 0.030037037 1 1
|
||||
34900 0.3216153 0 0.027996689 1 1
|
||||
35000 0.32701056 0 0.024778517 1 1
|
||||
35100 0.3124942 0 0.011316548 1 1
|
||||
35200 0.34486416 0 0.011670127 1 1
|
||||
35300 0.33275353 0 0.020491246 1 1
|
||||
35400 0.33618763 0 0.014678874 1 1
|
||||
35500 0.32352282 0 -0.018568683 1 1
|
||||
35600 0.32617903 0 -0.012796912 1 1
|
||||
35700 0.32378048 0 -0.021318585 1 1
|
||||
35800 0.3371086 0 -0.0023678632 1 1
|
||||
35900 0.33818476 0 0.011197742 1 1
|
||||
36000 0.35142144 0 0.022520935 1 1
|
||||
36100 0.35147297 0 0.020277852 1 1
|
||||
36200 0.33489465 0 0.014564878 1 1
|
||||
36300 0.33841515 0 0.036439962 1 1
|
||||
36400 0.32301096 0 0.019966746 1 1
|
||||
36500 0.35612028 0 0.036509556 1 1
|
||||
36600 0.33841597 0 -0.0042180605 1 1
|
||||
36700 0.34477654 0 -0.0052770853 1 1
|
||||
36800 0.33804317 0 -0.013751733 1 1
|
||||
36900 0.35003816 0 -0.0021184393 1 1
|
||||
37000 0.32965041 0 -0.020900951 1 1
|
||||
37100 0.34653095 0 -0.013667977 1 1
|
||||
37200 0.35019871 0 -0.0071740923 1 1
|
||||
37300 0.34859745 0 0.02006041 1 1
|
||||
37400 0.35739859 0 0.020892822 1 1
|
||||
37500 0.34128859 0 0.041072111 1 1
|
||||
37600 0.33781905 0 0.023376738 1 1
|
||||
37700 0.32961874 0 0.030953741 1 1
|
||||
37800 0.343987 0 0.029579795 1 1
|
||||
37900 0.33610448 0 0.036836828 1 1
|
||||
38000 0.32757228 0 0.020902031 1 1
|
||||
38100 0.32735808 0 0.019544751 1 1
|
||||
38200 0.35646953 0 0.044607528 1 1
|
||||
38300 0.32509773 0 0.03610738 1 1
|
||||
38400 0.32111741 0 0.034474043 1 1
|
||||
38500 0.30590608 0 0.053461212 1 1
|
||||
38600 0.32322402 0 0.053453832 1 1
|
||||
38700 0.33843057 0 0.076264534 1 1
|
||||
38800 0.31350741 0 0.064733869 1 1
|
||||
38900 0.31943061 0 0.067836769 1 1
|
||||
39000 0.33775583 0 0.0788316 1 1
|
||||
39100 0.34256036 0 0.075874935 1 1
|
||||
39200 0.33128527 0 0.071610976 1 1
|
||||
39300 0.34519653 0 0.046257301 1 1
|
||||
39400 0.34351844 0 0.052422917 1 1
|
||||
39500 0.35716037 0 0.048916058 1 1
|
||||
39600 0.34000737 0 0.016149089 1 1
|
||||
39700 0.34587892 0 0.021619621 1 1
|
||||
39800 0.34878036 0 0.0092881327 1 1
|
||||
39900 0.35225411 0 -0.011341599 1 1
|
||||
40000 0.36309266 0 0.0050869295 1 1
|
||||
Loop time of 1.97426 on 1 procs for 40000 steps with 361 atoms
|
||||
|
||||
Pair time (%) = 0.0380814 (1.9289)
|
||||
Bond time (%) = 0.963403 (48.7983)
|
||||
Neigh time (%) = 0.514568 (26.0639)
|
||||
Comm time (%) = 0.0160263 (0.811762)
|
||||
Outpt time (%) = 0.00375032 (0.189961)
|
||||
Other time (%) = 0.438426 (22.2072)
|
||||
|
||||
Nlocal: 361 ave 361 max 361 min
|
||||
Histogram: 1 0 0 0 0 0 0 0 0 0
|
||||
Nghost: 0 ave 0 max 0 min
|
||||
Histogram: 1 0 0 0 0 0 0 0 0 0
|
||||
Neighs: 0 ave 0 max 0 min
|
||||
Histogram: 1 0 0 0 0 0 0 0 0 0
|
||||
|
||||
Total # of neighbors = 0
|
||||
Ave neighs/atom = 0
|
||||
Ave special neighs/atom = 31.0249
|
||||
Neighbor list builds = 3079
|
||||
Dangerous builds = 0
|
|
@ -0,0 +1,502 @@
|
|||
LAMMPS (20 Jan 2015)
|
||||
# 2d circle of particles inside a box with LJ walls
|
||||
|
||||
variable b index 0
|
||||
|
||||
variable x index 50
|
||||
variable y index 20
|
||||
variable d index 20
|
||||
|
||||
# careful not to slam into wall too hard
|
||||
|
||||
variable v index 0.3
|
||||
variable w index 0.08
|
||||
|
||||
units lj
|
||||
dimension 2
|
||||
atom_style bond
|
||||
boundary f f p
|
||||
|
||||
lattice hex 0.85
|
||||
Lattice spacing in x,y,z = 1.16553 2.01877 1.16553
|
||||
region box block 0 $x 0 $y -0.5 0.5
|
||||
region box block 0 50 0 $y -0.5 0.5
|
||||
region box block 0 50 0 20 -0.5 0.5
|
||||
create_box 1 box bond/types 1 extra/bond/per/atom 6
|
||||
Created orthogonal box = (0 0 -0.582767) to (58.2767 40.3753 0.582767)
|
||||
2 by 2 by 1 MPI processor grid
|
||||
region circle sphere $(v_d/2+1) $(v_d/2/sqrt(3.0)+1) 0.0 $(v_d/2)
|
||||
region circle sphere 11 $(v_d/2/sqrt(3.0)+1) 0.0 $(v_d/2)
|
||||
region circle sphere 11 6.7735026918962581988 0.0 $(v_d/2)
|
||||
region circle sphere 11 6.7735026918962581988 0.0 10
|
||||
create_atoms 1 region circle
|
||||
Created 361 atoms
|
||||
mass 1 1.0
|
||||
|
||||
velocity all create 0.5 87287 loop geom
|
||||
velocity all set $v $w 0 sum yes
|
||||
velocity all set 0.3 $w 0 sum yes
|
||||
velocity all set 0.3 0.08 0 sum yes
|
||||
|
||||
pair_style lj/cut 2.5
|
||||
pair_coeff 1 1 10.0 1.0 2.5
|
||||
|
||||
bond_style harmonic
|
||||
bond_coeff 1 10.0 1.2
|
||||
|
||||
create_bonds all all 1 1.0 1.5
|
||||
Added 1014 bonds, new total = 1014
|
||||
6 = max # of 1-2 neighbors
|
||||
30 = max # of 1-3 neighbors
|
||||
180 = max # of 1-4 neighbors
|
||||
36 = max # of special neighbors
|
||||
|
||||
neighbor 0.3 bin
|
||||
neigh_modify delay 0 every 1 check yes
|
||||
|
||||
fix 1 all nve
|
||||
|
||||
fix 2 all wall/lj93 xlo 0.0 1 1 2.5 xhi $x 1 1 2.5
|
||||
fix 2 all wall/lj93 xlo 0.0 1 1 2.5 xhi 50 1 1 2.5
|
||||
fix 3 all wall/lj93 ylo 0.0 1 1 2.5 yhi $y 1 1 2.5
|
||||
fix 3 all wall/lj93 ylo 0.0 1 1 2.5 yhi 20 1 1 2.5
|
||||
|
||||
comm_style tiled
|
||||
fix 10 all balance 50 0.9 rcb
|
||||
|
||||
#compute 1 all property/atom proc
|
||||
#variable p atom (c_1%10)+1
|
||||
#dump 2 all custom 50 tmp.dump id v_p x y z
|
||||
|
||||
#dump 3 all image 200 image.*.jpg v_p type bond atom 0.25 # adiam 1.0 view 0 0 zoom 1.8 subbox yes 0.02
|
||||
#variable colors string # "red green blue yellow white # purple pink orange lime gray"
|
||||
#dump_modify 3 pad 5 amap 0 10 sa 1 10 ${colors}
|
||||
|
||||
thermo_style custom step temp epair press f_10[3] f_10
|
||||
thermo 100
|
||||
|
||||
run 40000
|
||||
Memory usage per processor = 6.41878 Mbytes
|
||||
Step Temp E_pair Press 10[3] 10
|
||||
0 0.57437856 0 0.26099453 3.2354571 1.0526316
|
||||
100 0.29756515 0 0.10149401 1.0193906 1.0083102
|
||||
200 0.35394813 0 0.075159099 1.0304709 1.0083102
|
||||
300 0.39245849 0 0.033002384 1.0304709 1.0193906
|
||||
400 0.34078347 0 -0.020825841 1.0304709 1.0083102
|
||||
500 0.35201095 0 -0.062637506 1.0193906 1.0083102
|
||||
600 0.34014717 0 -0.11122965 1.0415512 1.0083102
|
||||
700 0.3323524 0 -0.11598015 1.0193906 1.0083102
|
||||
800 0.35116047 0 -0.096162395 1.0083102 1.0193906
|
||||
900 0.35695352 0 -0.01385176 1.0526316 1.0193906
|
||||
1000 0.36986539 0 0.056772858 1.0083102 1.0083102
|
||||
1100 0.34584644 0 0.084941323 1.0193906 1.0083102
|
||||
1200 0.31921435 0 0.10545078 1.0415512 1.0193906
|
||||
1300 0.32952819 0 0.124902 1.0083102 1.0083102
|
||||
1400 0.34497365 0 0.12662081 1.0193906 1.0083102
|
||||
1500 0.33429243 0 0.096230972 1.0526316 1.0193906
|
||||
1600 0.33765387 0 0.025800542 1.0304709 1.0083102
|
||||
1700 0.35134464 0 -0.04422593 1.0415512 1.0083102
|
||||
1800 0.35003859 0 -0.096745576 1.0304709 1.0193906
|
||||
1900 0.33839618 0 -0.095465943 1.0193906 1.0083102
|
||||
2000 0.33732078 0 -0.094652802 1.0083102 1.0083102
|
||||
2100 0.34552238 0 -0.076729261 1.0304709 1.0083102
|
||||
2200 0.34893142 0 -0.036853228 1.0304709 1.0193906
|
||||
2300 0.35379341 0 0.021124847 1.0304709 1.0304709
|
||||
2400 0.34829744 0 0.09230184 1.0304709 1.0193906
|
||||
2500 0.33038141 0 0.1399855 1.0193906 1.0193906
|
||||
2600 0.30983019 0 0.12754742 1.0193906 1.0083102
|
||||
2700 0.32992561 0 0.10485138 1.0415512 1.0304709
|
||||
2800 0.34604747 0 0.066174138 1.0083102 1.0083102
|
||||
2900 0.3444791 0 0.036590652 1.0193906 1.0193906
|
||||
3000 0.34721342 0 -0.023793368 1.0193906 1.0083102
|
||||
3100 0.33404314 0 -0.08374223 1.0415512 1.0083102
|
||||
3200 0.33019355 0 -0.12715599 1.0083102 1.0083102
|
||||
3300 0.33515177 0 -0.12217394 1.0193906 1.0083102
|
||||
3400 0.33628481 0 -0.070877624 1.0193906 1.0083102
|
||||
3500 0.34257038 0 -0.021612062 1.0304709 1.0083102
|
||||
3600 0.32838009 0 0.030131228 1.0083102 1.0083102
|
||||
3700 0.34462142 0 0.074586378 1.0415512 1.0083102
|
||||
3800 0.30891825 0 0.10605673 1.0304709 1.0083102
|
||||
3900 0.33847951 0 0.13956139 1.0415512 1.0193906
|
||||
4000 0.32952079 0 0.12688129 1.0193906 1.0304709
|
||||
4100 0.32646772 0 0.081089042 1.0304709 1.0193906
|
||||
4200 0.35399503 0 0.013422873 1.0083102 1.0083102
|
||||
4300 0.33154914 0 -0.050919508 1.0083102 1.0193906
|
||||
4400 0.34113556 0 -0.083171 1.0415512 1.0083102
|
||||
4500 0.32651708 0 -0.1063133 1.0193906 1.0083102
|
||||
4600 0.34359609 0 -0.1076395 1.0083102 1.0193906
|
||||
4700 0.34973537 0 -0.088231606 1.0415512 1.0083102
|
||||
4800 0.35198515 0 -0.020901044 1.0415512 1.0083102
|
||||
4900 0.35187284 0 0.043645941 1.0193906 1.0083102
|
||||
5000 0.34887336 0 0.095698609 1.0193906 1.0083102
|
||||
5100 0.30308163 0 0.11649328 1.0083102 1.0083102
|
||||
5200 0.32401285 0 0.12072411 1.0193906 1.0083102
|
||||
5300 0.33025072 0 0.10933161 1.0304709 1.0083102
|
||||
5400 0.33288012 0 0.078356448 1.0083102 1.0193906
|
||||
5500 0.35142492 0 0.036958063 1.0193906 1.0083102
|
||||
5600 0.35125368 0 -0.041371343 1.0304709 1.0083102
|
||||
5700 0.34547744 0 -0.096450846 1.0637119 1.0083102
|
||||
5800 0.30939887 0 -0.12356656 1.0083102 1.0083102
|
||||
5900 0.32315628 0 -0.11338676 1.0193906 1.0304709
|
||||
6000 0.34117485 0 -0.066198961 1.0193906 1.0193906
|
||||
6100 0.35298043 0 -0.016172816 1.0304709 1.0193906
|
||||
6200 0.35130653 0 0.027660468 1.0415512 1.0083102
|
||||
6300 0.35398766 0 0.087221238 1.0083102 1.0193906
|
||||
6400 0.30963379 0 0.11990957 1.0193906 1.0083102
|
||||
6500 0.3174541 0 0.14103528 1.0193906 1.0193906
|
||||
6600 0.31989791 0 0.11575506 1.0415512 1.0193906
|
||||
6700 0.33811477 0 0.060747353 1.0083102 1.0193906
|
||||
6800 0.3424043 0 0.010357152 1.0304709 1.0083102
|
||||
6900 0.34804319 0 -0.042621786 1.0193906 1.0083102
|
||||
7000 0.35357865 0 -0.067248959 1.0304709 1.0083102
|
||||
7100 0.33556885 0 -0.10983726 1.0193906 1.0083102
|
||||
7200 0.33531101 0 -0.112179 1.0304709 1.0083102
|
||||
7300 0.35742607 0 -0.078405267 1.0304709 1.0193906
|
||||
7400 0.34577559 0 -0.01985432 1.0193906 1.0083102
|
||||
7500 0.3498641 0 0.052289439 1.0526316 1.0083102
|
||||
7600 0.33773715 0 0.092939035 1.0083102 1.0193906
|
||||
7700 0.33093497 0 0.11924405 1.0193906 1.0083102
|
||||
7800 0.31435814 0 0.12701724 1.0083102 1.0304709
|
||||
7900 0.33132217 0 0.10793075 1.0193906 1.0083102
|
||||
8000 0.33451798 0 0.077993125 1.0304709 1.0083102
|
||||
8100 0.35188371 0 0.019929977 1.0193906 1.0193906
|
||||
8200 0.33645742 0 -0.039302079 1.0193906 1.0193906
|
||||
8300 0.3415632 0 -0.098067982 1.0304709 1.0083102
|
||||
8400 0.30619282 0 -0.12952879 1.0193906 1.0193906
|
||||
8500 0.34446484 0 -0.098084709 1.0083102 1.0083102
|
||||
8600 0.33761673 0 -0.07069818 1.0193906 1.0083102
|
||||
8700 0.34495452 0 -0.022458056 1.0193906 1.0083102
|
||||
8800 0.33502983 0 0.027742411 1.0304709 1.0083102
|
||||
8900 0.35418591 0 0.092390134 1.0083102 1.0193906
|
||||
9000 0.31648387 0 0.12467398 1.0193906 1.0193906
|
||||
9100 0.33994825 0 0.14460327 1.0193906 1.0193906
|
||||
9200 0.33822571 0 0.11273284 1.0193906 1.0083102
|
||||
9300 0.33260773 0 0.060063671 1.0083102 1.0193906
|
||||
9400 0.36140305 0 0.021427642 1.0193906 1.0083102
|
||||
9500 0.34273562 0 -0.034064202 1.0193906 1.0083102
|
||||
9600 0.33867054 0 -0.089076906 1.0193906 1.0083102
|
||||
9700 0.32088235 0 -0.12027075 1.0193906 1.0083102
|
||||
9800 0.3320823 0 -0.11602794 1.0415512 1.0193906
|
||||
9900 0.33916442 0 -0.080281044 1.0083102 1.0083102
|
||||
10000 0.34852268 0 -0.01000914 1.0193906 1.0193906
|
||||
10100 0.32955942 0 0.04258493 1.0083102 1.0083102
|
||||
10200 0.34487898 0 0.086971308 1.0304709 1.0083102
|
||||
10300 0.32325593 0 0.11558149 1.0304709 1.0193906
|
||||
10400 0.30927871 0 0.12239437 1.0083102 1.0083102
|
||||
10500 0.33176799 0 0.12285937 1.0193906 1.0083102
|
||||
10600 0.35120027 0 0.084897432 1.0083102 1.0083102
|
||||
10700 0.33129697 0 0.0053089279 1.0193906 1.0193906
|
||||
10800 0.36028769 0 -0.04280715 1.0193906 1.0083102
|
||||
10900 0.35552287 0 -0.084955999 1.0193906 1.0304709
|
||||
11000 0.3406024 0 -0.096554577 1.0083102 1.0083102
|
||||
11100 0.33041202 0 -0.10703492 1.0304709 1.0083102
|
||||
11200 0.32442686 0 -0.084328121 1.0304709 1.0083102
|
||||
11300 0.35952468 0 -0.020191965 1.0304709 1.0193906
|
||||
11400 0.34610624 0 0.03440148 1.0193906 1.0083102
|
||||
11500 0.3415612 0 0.1041929 1.0193906 1.0193906
|
||||
11600 0.34040042 0 0.13215705 1.0304709 1.0193906
|
||||
11700 0.33555094 0 0.12738686 1.0083102 1.0304709
|
||||
11800 0.3458647 0 0.10963398 1.0193906 1.0193906
|
||||
11900 0.33836678 0 0.067253864 1.0193906 1.0193906
|
||||
12000 0.34853314 0 0.03201448 1.0193906 1.0083102
|
||||
12100 0.34600048 0 -0.034833402 1.0304709 1.0083102
|
||||
12200 0.33145631 0 -0.09865675 1.0193906 1.0193906
|
||||
12300 0.32848884 0 -0.1248489 1.0193906 1.0193906
|
||||
12400 0.3321344 0 -0.11266575 1.0083102 1.0083102
|
||||
12500 0.32622305 0 -0.061634993 1.0304709 1.0193906
|
||||
12600 0.36213537 0 -0.0090593315 1.0526316 1.0083102
|
||||
12700 0.34673866 0 0.036734645 1.0193906 1.0083102
|
||||
12800 0.34606618 0 0.086267678 1.0193906 1.0083102
|
||||
12900 0.34271431 0 0.12415522 1.0304709 1.0083102
|
||||
13000 0.31993287 0 0.13879926 1.0193906 1.0193906
|
||||
13100 0.3422918 0 0.11978905 1.0083102 1.0083102
|
||||
13200 0.33055236 0 0.062620483 1.0193906 1.0083102
|
||||
13300 0.34652207 0 0.0043833459 1.0304709 1.0083102
|
||||
13400 0.33574661 0 -0.04691024 1.0304709 1.0083102
|
||||
13500 0.33940837 0 -0.074241604 1.0304709 1.0193906
|
||||
13600 0.32093414 0 -0.1078027 1.0193906 1.0083102
|
||||
13700 0.34336597 0 -0.10544097 1.0193906 1.0083102
|
||||
13800 0.35806461 0 -0.072531559 1.0193906 1.0083102
|
||||
13900 0.35209713 0 -0.018851408 1.0083102 1.0083102
|
||||
14000 0.35702629 0 0.061046366 1.0083102 1.0083102
|
||||
14100 0.33234093 0 0.094086465 1.0083102 1.0083102
|
||||
14200 0.3459466 0 0.12186656 1.0193906 1.0083102
|
||||
14300 0.3327428 0 0.11396572 1.0193906 1.0083102
|
||||
14400 0.32409443 0 0.10658903 1.0193906 1.0193906
|
||||
14500 0.35022184 0 0.083558031 1.0083102 1.0193906
|
||||
14600 0.34823843 0 0.024605569 1.0083102 1.0083102
|
||||
14700 0.35298973 0 -0.040418888 1.0193906 1.0083102
|
||||
14800 0.33679845 0 -0.10067728 1.0193906 1.0083102
|
||||
14900 0.32790966 0 -0.10925568 1.0193906 1.0083102
|
||||
15000 0.34208495 0 -0.09568004 1.0193906 1.0083102
|
||||
15100 0.33647529 0 -0.055652929 1.0083102 1.0083102
|
||||
15200 0.35328398 0 -0.020236536 1.0193906 1.0193906
|
||||
15300 0.34252669 0 0.026434179 1.0083102 1.0193906
|
||||
15400 0.34409435 0 0.094410599 1.0304709 1.0083102
|
||||
15500 0.32288994 0 0.12034455 1.0415512 1.0083102
|
||||
15600 0.32109689 0 0.13645185 1.0193906 1.0083102
|
||||
15700 0.33681572 0 0.098607746 1.0415512 1.0083102
|
||||
15800 0.33635195 0 0.05570715 1.0193906 1.0193906
|
||||
15900 0.34289757 0 0.013849092 1.0304709 1.0083102
|
||||
16000 0.34225547 0 -0.035597548 1.0304709 1.0083102
|
||||
16100 0.33660991 0 -0.076931881 1.0193906 1.0193906
|
||||
16200 0.32802152 0 -0.12765884 1.0083102 1.0083102
|
||||
16300 0.3469374 0 -0.10785455 1.0083102 1.0083102
|
||||
16400 0.34053641 0 -0.070259853 1.0193906 1.0083102
|
||||
16500 0.34610591 0 -0.014315306 1.0193906 1.0083102
|
||||
16600 0.35109001 0 0.041251169 1.0304709 1.0083102
|
||||
16700 0.34336905 0 0.077996627 1.0193906 1.0083102
|
||||
16800 0.33277414 0 0.11053634 1.0083102 1.0083102
|
||||
16900 0.32183338 0 0.11680626 1.0193906 1.0083102
|
||||
17000 0.34044352 0 0.10806555 1.0193906 1.0083102
|
||||
17100 0.32967873 0 0.067759786 1.0304709 1.0304709
|
||||
17200 0.36172278 0 -0.0048631904 1.0304709 1.0083102
|
||||
17300 0.35619435 0 -0.04215545 1.0193906 1.0083102
|
||||
17400 0.34540936 0 -0.093994174 1.0193906 1.0193906
|
||||
17500 0.33193585 0 -0.098831315 1.0083102 1.0193906
|
||||
17600 0.3544756 0 -0.085660403 1.0193906 1.0083102
|
||||
17700 0.34505209 0 -0.069640515 1.0304709 1.0083102
|
||||
17800 0.36291124 0 -0.0063088133 1.0083102 1.0193906
|
||||
17900 0.34255705 0 0.046794555 1.0304709 1.0193906
|
||||
18000 0.34163238 0 0.11767705 1.0193906 1.0193906
|
||||
18100 0.3466445 0 0.1351712 1.0415512 1.0193906
|
||||
18200 0.33037668 0 0.12703659 1.0083102 1.0083102
|
||||
18300 0.33677404 0 0.10956306 1.0083102 1.0304709
|
||||
18400 0.34978954 0 0.087193072 1.0193906 1.0083102
|
||||
18500 0.33354363 0 0.051095814 1.0526316 1.0193906
|
||||
18600 0.34651729 0 0.0056245561 1.0304709 1.0193906
|
||||
18700 0.32622232 0 -0.047319269 1.0083102 1.0193906
|
||||
18800 0.32978847 0 -0.054929416 1.0304709 1.0193906
|
||||
18900 0.34192451 0 -0.037252471 1.0193906 1.0083102
|
||||
19000 0.34061294 0 -0.001167235 1.0083102 1.0083102
|
||||
19100 0.34194478 0 0.016945224 1.0526316 1.0193906
|
||||
19200 0.33321765 0 0.050665354 1.0526316 1.0083102
|
||||
19300 0.33197783 0 0.080470585 1.0193906 1.0083102
|
||||
19400 0.33284715 0 0.12423599 1.0304709 1.0304709
|
||||
19500 0.33867856 0 0.12689524 1.0083102 1.0083102
|
||||
19600 0.36092786 0 0.11417704 1.0193906 1.0083102
|
||||
19700 0.34270183 0 0.069038291 1.0415512 1.0083102
|
||||
19800 0.34880695 0 0.042483681 1.0193906 1.0193906
|
||||
19900 0.33903644 0 0.034788638 1.0083102 1.0193906
|
||||
20000 0.32590125 0 0.011383785 1.0193906 1.0083102
|
||||
20100 0.30358859 0 0.0030743554 1.0526316 1.0083102
|
||||
20200 0.31830224 0 0.017637826 1.0193906 1.0193906
|
||||
20300 0.34195438 0 0.072811099 1.0304709 1.0193906
|
||||
20400 0.31249563 0 0.10063541 1.0415512 1.0083102
|
||||
20500 0.31544938 0 0.1405794 1.0083102 1.0083102
|
||||
20600 0.30071644 0 0.12763486 1.0193906 1.0193906
|
||||
20700 0.2890265 0 0.1136651 1.0083102 1.0083102
|
||||
20800 0.28962296 0 0.094481978 1.0193906 1.0083102
|
||||
20900 0.29447212 0 0.0967165 1.0193906 1.0193906
|
||||
21000 0.31159961 0 0.067307231 1.0083102 1.0083102
|
||||
21100 0.30490648 0 0.017689358 1.0083102 1.0193906
|
||||
21200 0.30687262 0 -0.016055512 1.0193906 1.0193906
|
||||
21300 0.30083286 0 -0.0014988997 1.0193906 1.0083102
|
||||
21400 0.32070426 0 0.015960302 1.0083102 1.0083102
|
||||
21500 0.31439311 0 0.038170385 1.0304709 1.0083102
|
||||
21600 0.32617832 0 0.043263788 1.0083102 1.0083102
|
||||
21700 0.35151793 0 0.066302727 1.0193906 1.0083102
|
||||
21800 0.35912885 0 0.070099103 1.0193906 1.0083102
|
||||
21900 0.32451958 0 0.068935768 1.0304709 1.0304709
|
||||
22000 0.35219298 0 0.067161227 1.0193906 1.0193906
|
||||
22100 0.34857705 0 0.032731746 1.0193906 1.0083102
|
||||
22200 0.34750227 0 0.0056917695 1.0193906 1.0193906
|
||||
22300 0.34766017 0 -0.0027090483 1.0193906 1.0083102
|
||||
22400 0.33426062 0 -0.023196063 1.0304709 1.0193906
|
||||
22500 0.34174625 0 -0.025019717 1.0083102 1.0083102
|
||||
22600 0.3356145 0 -0.029707418 1.0304709 1.0193906
|
||||
22700 0.3362653 0 -0.035815733 1.0193906 1.0193906
|
||||
22800 0.33973405 0 -0.0024705835 1.0193906 1.0083102
|
||||
22900 0.33813085 0 0.0077527467 1.0083102 1.0193906
|
||||
23000 0.33339981 0 0.028340744 1.0193906 1.0083102
|
||||
23100 0.34079832 0 0.018521302 1.0415512 1.0193906
|
||||
23200 0.33074548 0 0.032378405 1.0193906 1.0083102
|
||||
23300 0.32965664 0 0.035989589 1.0193906 1.0083102
|
||||
23400 0.30927749 0 0.024581106 1.0193906 1.0083102
|
||||
23500 0.32890632 0 0.01092479 1.0304709 1.0193906
|
||||
23600 0.34137438 0 0.0094839745 1.0193906 1.0083102
|
||||
23700 0.34512638 0 -0.012392771 1.0304709 1.0193906
|
||||
23800 0.31781354 0 -0.012908449 1.0193906 1.0193906
|
||||
23900 0.32405513 0 -0.015018071 1.0415512 1.0193906
|
||||
24000 0.33549728 0 -0.012812915 1.0193906 1.0193906
|
||||
24100 0.31368736 0 -0.020818372 1.0304709 1.0083102
|
||||
24200 0.33533836 0 0.0056121057 1.0083102 1.0193906
|
||||
24300 0.32530627 0 0.018183931 1.0415512 1.0083102
|
||||
24400 0.31930662 0 0.027446878 1.0083102 1.0083102
|
||||
24500 0.33540302 0 0.040307455 1.0304709 1.0083102
|
||||
24600 0.34020431 0 0.027403921 1.0083102 1.0083102
|
||||
24700 0.3291814 0 0.01204865 1.0193906 1.0083102
|
||||
24800 0.31552604 0 0.019654111 1.0083102 1.0083102
|
||||
24900 0.34727253 0 0.01670543 1.0193906 1.0083102
|
||||
25000 0.35120105 0 0.0038617562 1.0193906 1.0083102
|
||||
25100 0.32706871 0 -0.021196623 1.0415512 1.0193906
|
||||
25200 0.32915282 0 -0.017146508 1.0193906 1.0083102
|
||||
25300 0.32577518 0 -0.01312495 1.0193906 1.0304709
|
||||
25400 0.33286855 0 0.0014726193 1.0193906 1.0193906
|
||||
25500 0.33002601 0 0.0080974022 1.0193906 1.0083102
|
||||
25600 0.34127655 0 0.014296091 1.0526316 1.0193906
|
||||
25700 0.34048065 0 0.022513032 1.0193906 1.0193906
|
||||
25800 0.33029079 0 0.038733531 1.0193906 1.0083102
|
||||
25900 0.33031324 0 0.026156982 1.0304709 1.0193906
|
||||
26000 0.32967371 0 0.028727383 1.0083102 1.0193906
|
||||
26100 0.33775718 0 0.015607478 1.0083102 1.0193906
|
||||
26200 0.35097144 0 0.012291703 1.0083102 1.0083102
|
||||
26300 0.34303792 0 0.00094823191 1.0083102 1.0193906
|
||||
26400 0.33632665 0 -0.0026904889 1.0193906 1.0193906
|
||||
26500 0.33580127 0 -0.0074168555 1.0193906 1.0193906
|
||||
26600 0.33063188 0 -0.020378601 1.0083102 1.0193906
|
||||
26700 0.33581846 0 -0.00084397268 1.0083102 1.0193906
|
||||
26800 0.32998532 0 0.015932208 1.0304709 1.0193906
|
||||
26900 0.33825444 0 0.010428603 1.0304709 1.0083102
|
||||
27000 0.32081518 0 0.019818223 1.0304709 1.0193906
|
||||
27100 0.31448098 0 0.020093416 1.0193906 1.0083102
|
||||
27200 0.32643684 0 0.021934917 1.0083102 1.0083102
|
||||
27300 0.33289466 0 0.023713072 1.0415512 1.0083102
|
||||
27400 0.32310744 0 0.024110945 1.0415512 1.0083102
|
||||
27500 0.33115619 0 0.0025776713 1.0304709 1.0083102
|
||||
27600 0.33295887 0 -0.010710764 1.0304709 1.0193906
|
||||
27700 0.32968876 0 -0.0064595905 1.0193906 1.0083102
|
||||
27800 0.34064581 0 -0.0086519116 1.0193906 1.0083102
|
||||
27900 0.33559187 0 -0.0055753593 1.0083102 1.0083102
|
||||
28000 0.32300727 0 -0.0004153384 1.0304709 1.0083102
|
||||
28100 0.32147461 0 -0.0058543412 1.0083102 1.0083102
|
||||
28200 0.35532383 0 0.013646951 1.0304709 1.0083102
|
||||
28300 0.31507942 0 0.026532255 1.0415512 1.0193906
|
||||
28400 0.32711006 0 0.033214981 1.0193906 1.0083102
|
||||
28500 0.34472462 0 0.028050837 1.0304709 1.0193906
|
||||
28600 0.33708059 0 0.019115676 1.0083102 1.0083102
|
||||
28700 0.34478087 0 0.023743689 1.0304709 1.0083102
|
||||
28800 0.34546686 0 0.0081772997 1.0304709 1.0083102
|
||||
28900 0.34004886 0 0.017771865 1.0415512 1.0193906
|
||||
29000 0.33604232 0 -0.010505671 1.0304709 1.0193906
|
||||
29100 0.33541374 0 -0.016273261 1.0083102 1.0083102
|
||||
29200 0.34347489 0 -0.010002306 1.0083102 1.0083102
|
||||
29300 0.34083904 0 0.0089701784 1.0193906 1.0193906
|
||||
29400 0.34846892 0 0.020765104 1.0083102 1.0083102
|
||||
29500 0.3416255 0 0.022650856 1.0304709 1.0083102
|
||||
29600 0.33725496 0 0.020693083 1.0193906 1.0193906
|
||||
29700 0.34480638 0 0.024317128 1.0304709 1.0083102
|
||||
29800 0.31459471 0 0.023097895 1.0083102 1.0083102
|
||||
29900 0.33014448 0 0.03114046 1.0193906 1.0083102
|
||||
30000 0.33741498 0 0.015624314 1.0083102 1.0193906
|
||||
30100 0.32598657 0 -0.0018860541 1.0415512 1.0193906
|
||||
30200 0.34855815 0 0.0017983372 1.0083102 1.0083102
|
||||
30300 0.33375921 0 0.0010991235 1.0083102 1.0193906
|
||||
30400 0.35008944 0 -0.0027316177 1.0415512 1.0083102
|
||||
30500 0.33279729 0 -0.0035788551 1.0193906 1.0193906
|
||||
30600 0.33868746 0 -0.0016249482 1.0083102 1.0193906
|
||||
30700 0.33597034 0 -0.0014524001 1.0193906 1.0193906
|
||||
30800 0.3227257 0 0.016353457 1.0415512 1.0193906
|
||||
30900 0.32676516 0 0.027396654 1.0193906 1.0083102
|
||||
31000 0.34083982 0 0.031606413 1.0415512 1.0193906
|
||||
31100 0.32165238 0 0.013583368 1.0193906 1.0083102
|
||||
31200 0.3428492 0 0.020486611 1.0304709 1.0193906
|
||||
31300 0.32372541 0 0.01215566 1.0083102 1.0083102
|
||||
31400 0.32734692 0 0.016229397 1.0083102 1.0083102
|
||||
31500 0.33089262 0 0.0060426618 1.0083102 1.0083102
|
||||
31600 0.34273493 0 -0.013456537 1.0083102 1.0193906
|
||||
31700 0.32723905 0 -0.019243766 1.0193906 1.0083102
|
||||
31800 0.33636488 0 0.0027814902 1.0083102 1.0083102
|
||||
31900 0.32834805 0 0.00706877 1.0083102 1.0193906
|
||||
32000 0.33995148 0 0.0018383309 1.0193906 1.0193906
|
||||
32100 0.33412282 0 0.0076455933 1.0083102 1.0083102
|
||||
32200 0.34334884 0 0.023586129 1.0083102 1.0083102
|
||||
32300 0.32778925 0 0.020564321 1.0193906 1.0083102
|
||||
32400 0.33163443 0 0.038878463 1.0193906 1.0083102
|
||||
32500 0.32290345 0 0.022247461 1.0193906 1.0083102
|
||||
32600 0.34113954 0 0.010966365 1.0304709 1.0083102
|
||||
32700 0.33390633 0 0.0037777555 1.0193906 1.0083102
|
||||
32800 0.34385341 0 0.010556575 1.0193906 1.0193906
|
||||
32900 0.32137047 0 0.00022027143 1.0526316 1.0193906
|
||||
33000 0.32079172 0 -0.017261272 1.0193906 1.0193906
|
||||
33100 0.33570882 0 -0.0051942206 1.0083102 1.0083102
|
||||
33200 0.34320894 0 -0.011515281 1.0304709 1.0083102
|
||||
33300 0.32794746 0 -0.0018153673 1.0083102 1.0193906
|
||||
33400 0.33060982 0 0.027118146 1.0193906 1.0083102
|
||||
33500 0.33641809 0 0.02143035 1.0083102 1.0083102
|
||||
33600 0.33643061 0 0.020833068 1.0193906 1.0083102
|
||||
33700 0.3485949 0 0.030918751 1.0193906 1.0083102
|
||||
33800 0.3283985 0 0.01947613 1.0193906 1.0083102
|
||||
33900 0.31959761 0 0.021128147 1.0083102 1.0304709
|
||||
34000 0.33897984 0 0.015270986 1.0193906 1.0083102
|
||||
34100 0.32392267 0 0.0020130852 1.0304709 1.0193906
|
||||
34200 0.33084514 0 -0.024316708 1.0193906 1.0193906
|
||||
34300 0.3342259 0 -0.0059047764 1.0193906 1.0304709
|
||||
34400 0.33385098 0 0.0063818721 1.0193906 1.0083102
|
||||
34500 0.33255603 0 -0.01023837 1.0083102 1.0304709
|
||||
34600 0.34766173 0 0.0056703013 1.0193906 1.0083102
|
||||
34700 0.339822 0 0.0061648559 1.0083102 1.0193906
|
||||
34800 0.33902329 0 0.030037037 1.0415512 1.0193906
|
||||
34900 0.3216153 0 0.027996689 1.0304709 1.0083102
|
||||
35000 0.32701056 0 0.024778517 1.0193906 1.0193906
|
||||
35100 0.3124942 0 0.011316548 1.0193906 1.0193906
|
||||
35200 0.34486416 0 0.011670127 1.0193906 1.0193906
|
||||
35300 0.33275353 0 0.020491246 1.0193906 1.0193906
|
||||
35400 0.33618763 0 0.014678874 1.0083102 1.0083102
|
||||
35500 0.32352282 0 -0.018568683 1.0193906 1.0193906
|
||||
35600 0.32617903 0 -0.012796912 1.0193906 1.0193906
|
||||
35700 0.32378048 0 -0.021318585 1.0193906 1.0083102
|
||||
35800 0.3371086 0 -0.0023678632 1.0193906 1.0193906
|
||||
35900 0.33818476 0 0.011197742 1.0193906 1.0083102
|
||||
36000 0.35142144 0 0.022520935 1.0083102 1.0193906
|
||||
36100 0.35147297 0 0.020277852 1.0193906 1.0083102
|
||||
36200 0.33489465 0 0.014564878 1.0415512 1.0083102
|
||||
36300 0.33841515 0 0.036439962 1.0193906 1.0193906
|
||||
36400 0.32301096 0 0.019966746 1.0304709 1.0083102
|
||||
36500 0.35612028 0 0.036509556 1.0083102 1.0083102
|
||||
36600 0.33841597 0 -0.0042180605 1.0193906 1.0193906
|
||||
36700 0.34477654 0 -0.0052770853 1.0193906 1.0193906
|
||||
36800 0.33804317 0 -0.013751733 1.0083102 1.0083102
|
||||
36900 0.35003816 0 -0.0021184393 1.0083102 1.0193906
|
||||
37000 0.32965041 0 -0.020900951 1.0193906 1.0083102
|
||||
37100 0.34653095 0 -0.013667977 1.0193906 1.0083102
|
||||
37200 0.35019871 0 -0.0071740923 1.0083102 1.0193906
|
||||
37300 0.34859745 0 0.02006041 1.0304709 1.0083102
|
||||
37400 0.35739859 0 0.020892822 1.0193906 1.0083102
|
||||
37500 0.34128859 0 0.041072111 1.0193906 1.0193906
|
||||
37600 0.33781905 0 0.023376738 1.0193906 1.0083102
|
||||
37700 0.32961874 0 0.030953741 1.0193906 1.0083102
|
||||
37800 0.343987 0 0.029579795 1.0083102 1.0083102
|
||||
37900 0.33610448 0 0.036836828 1.0415512 1.0304709
|
||||
38000 0.32757228 0 0.020902031 1.0193906 1.0193906
|
||||
38100 0.32735808 0 0.019544751 1.0193906 1.0083102
|
||||
38200 0.35646953 0 0.044607528 1.0083102 1.0193906
|
||||
38300 0.32509773 0 0.03610738 1.0193906 1.0083102
|
||||
38400 0.32111741 0 0.034474043 1.0193906 1.0193906
|
||||
38500 0.30590608 0 0.053461212 1.0304709 1.0083102
|
||||
38600 0.32322402 0 0.053453832 1.0193906 1.0304709
|
||||
38700 0.33843057 0 0.076264534 1.0083102 1.0193906
|
||||
38800 0.31350741 0 0.064733869 1.0415512 1.0083102
|
||||
38900 0.31943061 0 0.067836769 1.0304709 1.0193906
|
||||
39000 0.33775583 0 0.0788316 1.0193906 1.0193906
|
||||
39100 0.34256036 0 0.075874935 1.0083102 1.0193906
|
||||
39200 0.33128527 0 0.071610976 1.0193906 1.0083102
|
||||
39300 0.34519653 0 0.046257301 1.0193906 1.0083102
|
||||
39400 0.34351844 0 0.052422917 1.0304709 1.0304709
|
||||
39500 0.35716037 0 0.048916058 1.0304709 1.0083102
|
||||
39600 0.34000737 0 0.016149089 1.0304709 1.0083102
|
||||
39700 0.34587892 0 0.021619621 1.0526316 1.0083102
|
||||
39800 0.34878036 0 0.0092881327 1.0083102 1.0193906
|
||||
39900 0.35225411 0 -0.011341599 1.0083102 1.0083102
|
||||
40000 0.36309266 0 0.0050869295 1.0304709 1.0083102
|
||||
Loop time of 1.09412 on 4 procs for 40000 steps with 361 atoms
|
||||
|
||||
Pair time (%) = 0.0126024 (1.15184)
|
||||
Bond time (%) = 0.234326 (21.417)
|
||||
Neigh time (%) = 0.165015 (15.082)
|
||||
Comm time (%) = 0.324642 (29.6716)
|
||||
Outpt time (%) = 0.0075146 (0.686818)
|
||||
Other time (%) = 0.350016 (31.9908)
|
||||
|
||||
Nlocal: 90.25 ave 91 max 89 min
|
||||
Histogram: 1 0 0 0 0 1 0 0 0 2
|
||||
Nghost: 59.25 ave 61 max 56 min
|
||||
Histogram: 1 0 0 0 0 0 0 0 2 1
|
||||
Neighs: 0 ave 0 max 0 min
|
||||
Histogram: 4 0 0 0 0 0 0 0 0 0
|
||||
|
||||
Total # of neighbors = 0
|
||||
Ave neighs/atom = 0
|
||||
Ave special neighs/atom = 31.0249
|
||||
Neighbor list builds = 3079
|
||||
Dangerous builds = 0
|
Loading…
Reference in New Issue