# Variables that can be adjusted by kim-lammps-preprocessor to switch unit sets for # Simulator Models variable _u_distance equal 1.0 variable _u_energy equal 1.0 variable _u_mass equal 1.0 variable _u_time equal 1.0 variable _u_pressure equal 1.0 variable _u_temperature equal 1.0 # This line may be swapped out by kim-lammps-preprocessor if running against a Simulator # Model whose atom_style is not 'atomic' atom_style atomic # periodic boundary conditions along all three dimensions boundary p p p # Set neighbor skin variable neigh_skin equal 2.0*${_u_distance} variable neigh_skin equal 2.0*1 neighbor ${neigh_skin} bin neighbor 2 bin # create a supercell with cubic lattice (fcc, bcc, sc, or diamond) # using 10*10*10 conventional (orthogonal) unit cells variable latticeconst_converted equal 3.153576523065567*${_u_distance} variable latticeconst_converted equal 3.153576523065567*1 lattice bcc ${latticeconst_converted} lattice bcc 3.15357652306557 Lattice spacing in x,y,z = 3.15358 3.15358 3.15358 region simbox block 0 10 0 10 0 10 units lattice create_box 1 simbox Created orthogonal box = (0 0 0) to (31.5358 31.5358 31.5358) 1 by 1 by 1 MPI processor grid create_atoms 1 box Created 2000 atoms create_atoms CPU = 0.000300169 secs variable mass_converted equal 183.84*${_u_mass} variable mass_converted equal 183.84*1 # specify which KIM Model to use pair_style kim Morse_Shifted_GirifalcoWeizer_1959HighCutoff_W__MO_646516726498_002 WARNING: KIM Model does not provide `partialParticleVirial'; virial per atom will be zero (src/KIM/pair_kim.cpp:1089) pair_coeff * * W mass 1 ${mass_converted} mass 1 183.84 # initial volume variable v equal vol # assign formula variable V0 equal ${v} # evaluate initial value variable V0 equal 31362.4600759414 variable V0_metal equal ${V0}/(${_u_distance}*${_u_distance}*${_u_distance}) variable V0_metal equal 31362.4600759414/(${_u_distance}*${_u_distance}*${_u_distance}) variable V0_metal equal 31362.4600759414/(1*${_u_distance}*${_u_distance}) variable V0_metal equal 31362.4600759414/(1*1*${_u_distance}) variable V0_metal equal 31362.4600759414/(1*1*1) variable V0_metal_times1000 equal ${V0_metal}*1000 variable V0_metal_times1000 equal 31362.4600759414*1000 print "Initial system volume: ${V0_metal} Angstroms^3" Initial system volume: 31362.4600759414 Angstroms^3 # set the time step to 0.001 picoseconds variable timestep_converted equal 0.001*${_u_time} variable timestep_converted equal 0.001*1 timestep ${timestep_converted} timestep 0.001 variable temp_converted equal 253.15*${_u_temperature} variable temp_converted equal 253.15*1 variable Tdamp_converted equal 0.1*${_u_time} variable Tdamp_converted equal 0.1*1 variable press_converted equal 0.0*${_u_pressure} variable press_converted equal 0.0*1 variable Pdamp_converted equal 1*${_u_time} variable Pdamp_converted equal 1*1 # create initial velocities consistent with the chosen temperature velocity all create ${temp_converted} 17 mom yes rot yes velocity all create 253.15 17 mom yes rot yes # set NPT ensemble for all atoms fix ensemble all npt temp ${temp_converted} ${temp_converted} ${Tdamp_converted} iso ${press_converted} ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 253.15 ${temp_converted} ${Tdamp_converted} iso ${press_converted} ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 253.15 253.15 ${Tdamp_converted} iso ${press_converted} ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 253.15 253.15 0.1 iso ${press_converted} ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 253.15 253.15 0.1 iso 0 ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 253.15 253.15 0.1 iso 0 0 ${Pdamp_converted} fix ensemble all npt temp 253.15 253.15 0.1 iso 0 0 1 # compute the time averages of pressure, temperature, and volume, respectively # ignore the first 5000 timesteps variable etotal_metal equal etotal/${_u_energy} variable etotal_metal equal etotal/1 variable pe_metal equal pe/${_u_energy} variable pe_metal equal pe/1 variable T_metal equal temp/${_u_temperature} variable T_metal equal temp/1 variable V_metal equal vol/(${_u_distance}*${_u_distance}*${_u_distance}) variable V_metal equal vol/(1*${_u_distance}*${_u_distance}) variable V_metal equal vol/(1*1*${_u_distance}) variable V_metal equal vol/(1*1*1) variable P_metal equal press/${_u_pressure} variable P_metal equal press/1 fix avgmyTemp all ave/time 5 20 100 v_T_metal ave running start 5000 fix avgmyPress all ave/time 5 20 100 v_P_metal ave running start 5000 fix avgmyVol all ave/time 5 20 100 v_V_metal ave running start 5000 # extract fix quantities into variables so they can be used in if-else logic later. variable T equal f_avgmyTemp variable P equal f_avgmyPress variable V equal f_avgmyVol # set error bounds for temperature and pressure in original metal units (K and bar) variable T_low equal "253.15 - 0.2" variable T_up equal "253.15 + 0.2" variable P_low equal "0.0 - 0.2" variable P_up equal "0.0 + 0.2" # print to logfile every 1000 timesteps thermo_style custom step etotal v_etotal_metal pe v_pe_metal temp v_T_metal vol v_V_metal press v_P_metal thermo 1000 # Run a simulation for at most 2000*1000 timesteps. At each 1000th time step, check # whether the temperature and pressure have converged. If yes, break. label top variable a loop 2000 run 1000 Neighbor list info ... update every 1 steps, delay 10 steps, check yes max neighbors/atom: 2000, page size: 100000 master list distance cutoff = 12.0478 ghost atom cutoff = 12.0478 binsize = 6.0239, bins = 6 6 6 1 neighbor lists, perpetual/occasional/extra = 1 0 0 (1) pair kim, perpetual attributes: full, newton off, cut 12.0478 pair build: full/bin/atomonly stencil: full/bin/3d bin: standard Per MPI rank memory allocation (min/avg/max) = 7.04 | 7.04 | 7.04 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 0 -17582.205 -17582.205 -17647.617 -17647.617 253.15 253.15 31362.46 31362.46 2227.7984 2227.7984 1000 -17515.752 -17515.752 -17583.245 -17583.245 261.20586 261.20586 31495.971 31495.971 -3232.0767 -3232.0767 Loop time of 50.1192 on 1 procs for 1000 steps with 2000 atoms Performance: 1.724 ns/day, 13.922 hours/ns, 19.952 timesteps/s 37.5% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 49.726 | 49.726 | 49.726 | 0.0 | 99.22 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.11179 | 0.11179 | 0.11179 | 0.0 | 0.22 Output | 4.3869e-05 | 4.3869e-05 | 4.3869e-05 | 0.0 | 0.00 Modify | 0.24686 | 0.24686 | 0.24686 | 0.0 | 0.49 Other | | 0.03467 | | | 0.07 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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 FullNghs: 916000 ave 916000 max 916000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 916000 Ave neighs/atom = 458 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 0, Press = 0 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.044 | 7.044 | 7.044 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 1000 -17515.752 -17515.752 -17583.245 -17583.245 261.20586 261.20586 31495.971 31495.971 -3232.0767 -3232.0767 2000 -17517.238 -17517.238 -17582.433 -17582.433 252.31194 252.31194 31431.125 31431.125 3465.3066 3465.3066 Loop time of 49.0803 on 1 procs for 1000 steps with 2000 atoms Performance: 1.760 ns/day, 13.633 hours/ns, 20.375 timesteps/s 38.7% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 48.619 | 48.619 | 48.619 | 0.0 | 99.06 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.14121 | 0.14121 | 0.14121 | 0.0 | 0.29 Output | 3.8147e-05 | 3.8147e-05 | 3.8147e-05 | 0.0 | 0.00 Modify | 0.30563 | 0.30563 | 0.30563 | 0.0 | 0.62 Other | | 0.01418 | | | 0.03 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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 FullNghs: 942412 ave 942412 max 942412 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 942412 Ave neighs/atom = 471.206 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 0, Press = 0 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.044 | 7.044 | 7.044 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 2000 -17517.238 -17517.238 -17582.433 -17582.433 252.31194 252.31194 31431.125 31431.125 3465.3066 3465.3066 3000 -17517.266 -17517.266 -17582.743 -17582.743 253.40012 253.40012 31489.406 31489.406 -2648.9315 -2648.9315 Loop time of 47.0006 on 1 procs for 1000 steps with 2000 atoms Performance: 1.838 ns/day, 13.056 hours/ns, 21.276 timesteps/s 40.4% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 46.589 | 46.589 | 46.589 | 0.0 | 99.13 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.11119 | 0.11119 | 0.11119 | 0.0 | 0.24 Output | 3.3855e-05 | 3.3855e-05 | 3.3855e-05 | 0.0 | 0.00 Modify | 0.26577 | 0.26577 | 0.26577 | 0.0 | 0.57 Other | | 0.0342 | | | 0.07 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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 FullNghs: 941426 ave 941426 max 941426 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 941426 Ave neighs/atom = 470.713 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 0, Press = 0 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.044 | 7.044 | 7.044 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 3000 -17517.266 -17517.266 -17582.743 -17582.743 253.40012 253.40012 31489.406 31489.406 -2648.9315 -2648.9315 4000 -17514.945 -17514.945 -17581.076 -17581.076 255.93411 255.93411 31454.008 31454.008 1238.2603 1238.2603 Loop time of 48.6102 on 1 procs for 1000 steps with 2000 atoms Performance: 1.777 ns/day, 13.503 hours/ns, 20.572 timesteps/s 39.1% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 48.062 | 48.062 | 48.062 | 0.0 | 98.87 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.071241 | 0.071241 | 0.071241 | 0.0 | 0.15 Output | 3.9816e-05 | 3.9816e-05 | 3.9816e-05 | 0.0 | 0.00 Modify | 0.40294 | 0.40294 | 0.40294 | 0.0 | 0.83 Other | | 0.07431 | | | 0.15 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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 FullNghs: 938882 ave 938882 max 938882 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 938882 Ave neighs/atom = 469.441 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 0, Press = 0 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.044 | 7.044 | 7.044 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 4000 -17514.945 -17514.945 -17581.076 -17581.076 255.93411 255.93411 31454.008 31454.008 1238.2603 1238.2603 5000 -17518.18 -17518.18 -17582.654 -17582.654 249.52176 249.52176 31464.114 31464.114 -7.9473875 -7.9473875 Loop time of 47.6149 on 1 procs for 1000 steps with 2000 atoms Performance: 1.815 ns/day, 13.226 hours/ns, 21.002 timesteps/s 40.1% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 47.261 | 47.261 | 47.261 | 0.0 | 99.26 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.092002 | 0.092002 | 0.092002 | 0.0 | 0.19 Output | 2.8133e-05 | 2.8133e-05 | 2.8133e-05 | 0.0 | 0.00 Modify | 0.24752 | 0.24752 | 0.24752 | 0.0 | 0.52 Other | | 0.01434 | | | 0.03 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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 FullNghs: 940174 ave 940174 max 940174 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 940174 Ave neighs/atom = 470.087 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 250.84179709449, Press = 0.759086955417551 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.044 | 7.044 | 7.044 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 5000 -17518.18 -17518.18 -17582.654 -17582.654 249.52176 249.52176 31464.114 31464.114 -7.9473875 -7.9473875 6000 -17516.796 -17516.796 -17581.425 -17581.425 250.12052 250.12052 31459.051 31459.051 690.13106 690.13106 Loop time of 47.7799 on 1 procs for 1000 steps with 2000 atoms Performance: 1.808 ns/day, 13.272 hours/ns, 20.929 timesteps/s 39.8% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 47.299 | 47.299 | 47.299 | 0.0 | 98.99 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.13264 | 0.13264 | 0.13264 | 0.0 | 0.28 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.33415 | 0.33415 | 0.33415 | 0.0 | 0.70 Other | | 0.01411 | | | 0.03 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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 FullNghs: 941022 ave 941022 max 941022 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 941022 Ave neighs/atom = 470.511 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.677936497948, Press = -0.0344705135087688 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.044 | 7.044 | 7.044 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 6000 -17516.796 -17516.796 -17581.425 -17581.425 250.12052 250.12052 31459.051 31459.051 690.13106 690.13106 7000 -17516.523 -17516.523 -17579.517 -17579.517 243.79243 243.79243 31487.535 31487.535 -2114.7176 -2114.7176 Loop time of 51.2431 on 1 procs for 1000 steps with 2000 atoms Performance: 1.686 ns/day, 14.234 hours/ns, 19.515 timesteps/s 37.5% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 50.926 | 50.926 | 50.926 | 0.0 | 99.38 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.10201 | 0.10201 | 0.10201 | 0.0 | 0.20 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.18127 | 0.18127 | 0.18127 | 0.0 | 0.35 Other | | 0.03421 | | | 0.07 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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 FullNghs: 942166 ave 942166 max 942166 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 942166 Ave neighs/atom = 471.083 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.481420102012, Press = 10.3858058884024 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.044 | 7.044 | 7.044 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 7000 -17516.523 -17516.523 -17579.517 -17579.517 243.79243 243.79243 31487.535 31487.535 -2114.7176 -2114.7176 8000 -17517.447 -17517.447 -17582.58 -17582.58 252.07271 252.07271 31416.266 31416.266 5023.712 5023.712 Loop time of 52.3074 on 1 procs for 1000 steps with 2000 atoms Performance: 1.652 ns/day, 14.530 hours/ns, 19.118 timesteps/s 36.6% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 51.835 | 51.835 | 51.835 | 0.0 | 99.10 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.19127 | 0.19127 | 0.19127 | 0.0 | 0.37 Output | 2.8133e-05 | 2.8133e-05 | 2.8133e-05 | 0.0 | 0.00 Modify | 0.26752 | 0.26752 | 0.26752 | 0.0 | 0.51 Other | | 0.01396 | | | 0.03 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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 FullNghs: 940278 ave 940278 max 940278 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 940278 Ave neighs/atom = 470.139 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.158734150141, Press = 8.2470972650177 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.044 | 7.044 | 7.044 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 8000 -17517.447 -17517.447 -17582.58 -17582.58 252.07271 252.07271 31416.266 31416.266 5023.712 5023.712 9000 -17515.391 -17515.391 -17580.687 -17580.687 252.70235 252.70235 31493.402 31493.402 -2756.2007 -2756.2007 Loop time of 50.7835 on 1 procs for 1000 steps with 2000 atoms Performance: 1.701 ns/day, 14.107 hours/ns, 19.691 timesteps/s 37.5% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 50.233 | 50.233 | 50.233 | 0.0 | 98.92 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.26838 | 0.26838 | 0.26838 | 0.0 | 0.53 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.26771 | 0.26771 | 0.26771 | 0.0 | 0.53 Other | | 0.01388 | | | 0.03 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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 FullNghs: 942712 ave 942712 max 942712 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 942712 Ave neighs/atom = 471.356 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.285960648596, Press = -6.46664717245558 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.044 | 7.044 | 7.044 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 9000 -17515.391 -17515.391 -17580.687 -17580.687 252.70235 252.70235 31493.402 31493.402 -2756.2007 -2756.2007 10000 -17517.438 -17517.438 -17583.482 -17583.482 255.59782 255.59782 31455.83 31455.83 776.96105 776.96105 Loop time of 51.5385 on 1 procs for 1000 steps with 2000 atoms Performance: 1.676 ns/day, 14.316 hours/ns, 19.403 timesteps/s 37.1% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 51.106 | 51.106 | 51.106 | 0.0 | 99.16 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.11066 | 0.11066 | 0.11066 | 0.0 | 0.21 Output | 2.8133e-05 | 2.8133e-05 | 2.8133e-05 | 0.0 | 0.00 Modify | 0.28774 | 0.28774 | 0.28774 | 0.0 | 0.56 Other | | 0.03398 | | | 0.07 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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 FullNghs: 939938 ave 939938 max 939938 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 939938 Ave neighs/atom = 469.969 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.453990116067, Press = 5.81086592142579 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.044 | 7.044 | 7.044 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 10000 -17517.438 -17517.438 -17583.482 -17583.482 255.59782 255.59782 31455.83 31455.83 776.96105 776.96105 11000 -17515.932 -17515.932 -17581.692 -17581.692 254.4989 254.4989 31471.54 31471.54 -641.34074 -641.34074 Loop time of 46.438 on 1 procs for 1000 steps with 2000 atoms Performance: 1.861 ns/day, 12.899 hours/ns, 21.534 timesteps/s 41.0% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 46.046 | 46.046 | 46.046 | 0.0 | 99.16 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.13112 | 0.13112 | 0.13112 | 0.0 | 0.28 Output | 2.8133e-05 | 2.8133e-05 | 2.8133e-05 | 0.0 | 0.00 Modify | 0.24733 | 0.24733 | 0.24733 | 0.0 | 0.53 Other | | 0.01388 | | | 0.03 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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 FullNghs: 939366 ave 939366 max 939366 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 939366 Ave neighs/atom = 469.683 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.384762579614, Press = -1.31820919336083 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.044 | 7.044 | 7.044 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 11000 -17515.932 -17515.932 -17581.692 -17581.692 254.4989 254.4989 31471.54 31471.54 -641.34074 -641.34074 12000 -17518.872 -17518.872 -17584.643 -17584.643 254.53826 254.53826 31458.213 31458.213 377.93333 377.93333 Loop time of 46.5399 on 1 procs for 1000 steps with 2000 atoms Performance: 1.856 ns/day, 12.928 hours/ns, 21.487 timesteps/s 41.0% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 46.215 | 46.215 | 46.215 | 0.0 | 99.30 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.11099 | 0.11099 | 0.11099 | 0.0 | 0.24 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.18008 | 0.18008 | 0.18008 | 0.0 | 0.39 Other | | 0.03415 | | | 0.07 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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 FullNghs: 940922 ave 940922 max 940922 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 940922 Ave neighs/atom = 470.461 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.088008751613, Press = 1.37305350131918 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.044 | 7.044 | 7.044 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 12000 -17518.872 -17518.872 -17584.643 -17584.643 254.53826 254.53826 31458.213 31458.213 377.93333 377.93333 13000 -17515.496 -17515.496 -17581.079 -17581.079 253.81176 253.81176 31462.253 31462.253 468.04273 468.04273 Loop time of 42.5607 on 1 procs for 1000 steps with 2000 atoms Performance: 2.030 ns/day, 11.822 hours/ns, 23.496 timesteps/s 44.7% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 42.119 | 42.119 | 42.119 | 0.0 | 98.96 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.090384 | 0.090384 | 0.090384 | 0.0 | 0.21 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.25774 | 0.25774 | 0.25774 | 0.0 | 0.61 Other | | 0.094 | | | 0.22 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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 FullNghs: 938544 ave 938544 max 938544 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 938544 Ave neighs/atom = 469.272 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.858196577361, Press = -0.225424343867427 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.044 | 7.044 | 7.044 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 13000 -17515.496 -17515.496 -17581.079 -17581.079 253.81176 253.81176 31462.253 31462.253 468.04273 468.04273 14000 -17518.194 -17518.194 -17581.964 -17581.964 246.79688 246.79688 31476.274 31476.274 -1218.7921 -1218.7921 Loop time of 42.2586 on 1 procs for 1000 steps with 2000 atoms Performance: 2.045 ns/day, 11.738 hours/ns, 23.664 timesteps/s 45.1% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 41.927 | 41.927 | 41.927 | 0.0 | 99.22 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.13041 | 0.13041 | 0.13041 | 0.0 | 0.31 Output | 2.718e-05 | 2.718e-05 | 2.718e-05 | 0.0 | 0.00 Modify | 0.18715 | 0.18715 | 0.18715 | 0.0 | 0.44 Other | | 0.01386 | | | 0.03 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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 FullNghs: 942650 ave 942650 max 942650 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 942650 Ave neighs/atom = 471.325 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.944395765648, Press = 1.03089767575414 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.044 | 7.044 | 7.044 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 14000 -17518.194 -17518.194 -17581.964 -17581.964 246.79688 246.79688 31476.274 31476.274 -1218.7921 -1218.7921 15000 -17516.095 -17516.095 -17580.12 -17580.12 247.7851 247.7851 31443.037 31443.037 2565.1811 2565.1811 Loop time of 45.0535 on 1 procs for 1000 steps with 2000 atoms Performance: 1.918 ns/day, 12.515 hours/ns, 22.196 timesteps/s 42.3% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 44.578 | 44.578 | 44.578 | 0.0 | 98.94 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.14107 | 0.14107 | 0.14107 | 0.0 | 0.31 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.25079 | 0.25079 | 0.25079 | 0.0 | 0.56 Other | | 0.08397 | | | 0.19 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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 FullNghs: 938212 ave 938212 max 938212 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 938212 Ave neighs/atom = 469.106 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.092180070001, Press = 4.01023148038805 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.044 | 7.044 | 7.044 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 15000 -17516.095 -17516.095 -17580.12 -17580.12 247.7851 247.7851 31443.037 31443.037 2565.1811 2565.1811 16000 -17515.864 -17515.864 -17581.915 -17581.915 255.62611 255.62611 31471.727 31471.727 -696.14221 -696.14221 Loop time of 49.4569 on 1 procs for 1000 steps with 2000 atoms Performance: 1.747 ns/day, 13.738 hours/ns, 20.220 timesteps/s 38.5% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 48.965 | 48.965 | 48.965 | 0.0 | 99.01 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.11078 | 0.11078 | 0.11078 | 0.0 | 0.22 Output | 2.8849e-05 | 2.8849e-05 | 2.8849e-05 | 0.0 | 0.00 Modify | 0.30708 | 0.30708 | 0.30708 | 0.0 | 0.62 Other | | 0.074 | | | 0.15 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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 FullNghs: 944002 ave 944002 max 944002 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 944002 Ave neighs/atom = 472.001 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.242844350548, Press = -5.12668798023068 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.044 | 7.044 | 7.044 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 16000 -17515.864 -17515.864 -17581.915 -17581.915 255.62611 255.62611 31471.727 31471.727 -696.14221 -696.14221 17000 -17518.946 -17518.946 -17582.981 -17582.981 247.82131 247.82131 31474.595 31474.595 -1167.0269 -1167.0269 Loop time of 49.8649 on 1 procs for 1000 steps with 2000 atoms Performance: 1.733 ns/day, 13.851 hours/ns, 20.054 timesteps/s 38.2% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 49.605 | 49.605 | 49.605 | 0.0 | 99.48 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.070139 | 0.070139 | 0.070139 | 0.0 | 0.14 Output | 2.8849e-05 | 2.8849e-05 | 2.8849e-05 | 0.0 | 0.00 Modify | 0.15584 | 0.15584 | 0.15584 | 0.0 | 0.31 Other | | 0.03389 | | | 0.07 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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 FullNghs: 938426 ave 938426 max 938426 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 938426 Ave neighs/atom = 469.213 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.128566360197, Press = 2.83035583821618 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.044 | 7.044 | 7.044 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 17000 -17518.946 -17518.946 -17582.981 -17582.981 247.82131 247.82131 31474.595 31474.595 -1167.0269 -1167.0269 18000 -17516.829 -17516.829 -17582.347 -17582.347 253.56359 253.56359 31459.182 31459.182 522.82151 522.82151 Loop time of 48.0082 on 1 procs for 1000 steps with 2000 atoms Performance: 1.800 ns/day, 13.336 hours/ns, 20.830 timesteps/s 39.7% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 47.767 | 47.767 | 47.767 | 0.0 | 99.50 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.050315 | 0.050315 | 0.050315 | 0.0 | 0.10 Output | 2.8133e-05 | 2.8133e-05 | 2.8133e-05 | 0.0 | 0.00 Modify | 0.17666 | 0.17666 | 0.17666 | 0.0 | 0.37 Other | | 0.01399 | | | 0.03 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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 FullNghs: 940628 ave 940628 max 940628 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 940628 Ave neighs/atom = 470.314 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.028498809574, Press = 1.23785938034934 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.044 | 7.044 | 7.044 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 18000 -17516.829 -17516.829 -17582.347 -17582.347 253.56359 253.56359 31459.182 31459.182 522.82151 522.82151 19000 -17515.209 -17515.209 -17582.416 -17582.416 260.09725 260.09725 31466.711 31466.711 -174.3978 -174.3978 Loop time of 47.2704 on 1 procs for 1000 steps with 2000 atoms Performance: 1.828 ns/day, 13.131 hours/ns, 21.155 timesteps/s 40.1% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 46.831 | 46.831 | 46.831 | 0.0 | 99.07 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.15989 | 0.15989 | 0.15989 | 0.0 | 0.34 Output | 2.8849e-05 | 2.8849e-05 | 2.8849e-05 | 0.0 | 0.00 Modify | 0.22597 | 0.22597 | 0.22597 | 0.0 | 0.48 Other | | 0.05398 | | | 0.11 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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 FullNghs: 937988 ave 937988 max 937988 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 937988 Ave neighs/atom = 468.994 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.046883073305, Press = -0.963762483132897 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.044 | 7.044 | 7.044 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 19000 -17515.209 -17515.209 -17582.416 -17582.416 260.09725 260.09725 31466.711 31466.711 -174.3978 -174.3978 20000 -17521.892 -17521.892 -17584.007 -17584.007 240.39138 240.39138 31483.668 31483.668 -2388.8904 -2388.8904 Loop time of 45.5678 on 1 procs for 1000 steps with 2000 atoms Performance: 1.896 ns/day, 12.658 hours/ns, 21.945 timesteps/s 41.5% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 45.168 | 45.168 | 45.168 | 0.0 | 99.12 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.14008 | 0.14008 | 0.14008 | 0.0 | 0.31 Output | 2.6941e-05 | 2.6941e-05 | 2.6941e-05 | 0.0 | 0.00 Modify | 0.20589 | 0.20589 | 0.20589 | 0.0 | 0.45 Other | | 0.05384 | | | 0.12 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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 FullNghs: 941066 ave 941066 max 941066 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 941066 Ave neighs/atom = 470.533 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.96676057532, Press = 2.78431949760335 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.044 | 7.044 | 7.044 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 20000 -17521.892 -17521.892 -17584.007 -17584.007 240.39138 240.39138 31483.668 31483.668 -2388.8904 -2388.8904 21000 -17515.848 -17515.848 -17580.606 -17580.606 250.6213 250.6213 31414.011 31414.011 5536.2012 5536.2012 Loop time of 43.6996 on 1 procs for 1000 steps with 2000 atoms Performance: 1.977 ns/day, 12.139 hours/ns, 22.884 timesteps/s 43.3% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 43.362 | 43.362 | 43.362 | 0.0 | 99.23 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.1192 | 0.1192 | 0.1192 | 0.0 | 0.27 Output | 2.1935e-05 | 2.1935e-05 | 2.1935e-05 | 0.0 | 0.00 Modify | 0.20516 | 0.20516 | 0.20516 | 0.0 | 0.47 Other | | 0.0137 | | | 0.03 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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 FullNghs: 935976 ave 935976 max 935976 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 935976 Ave neighs/atom = 467.988 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.888451492107, Press = 0.391644203613996 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.044 | 7.044 | 7.044 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 21000 -17515.848 -17515.848 -17580.606 -17580.606 250.6213 250.6213 31414.011 31414.011 5536.2012 5536.2012 22000 -17515.62 -17515.62 -17581.633 -17581.633 255.4781 255.4781 31482.13 31482.13 -1786.2715 -1786.2715 Loop time of 43.3564 on 1 procs for 1000 steps with 2000 atoms Performance: 1.993 ns/day, 12.043 hours/ns, 23.065 timesteps/s 43.5% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 42.969 | 42.969 | 42.969 | 0.0 | 99.11 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.20747 | 0.20747 | 0.20747 | 0.0 | 0.48 Output | 4.6015e-05 | 4.6015e-05 | 4.6015e-05 | 0.0 | 0.00 Modify | 0.16627 | 0.16627 | 0.16627 | 0.0 | 0.38 Other | | 0.014 | | | 0.03 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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 FullNghs: 943796 ave 943796 max 943796 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 943796 Ave neighs/atom = 471.898 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" jump SELF break # Write final averaged volume to file if temperature and volume have converged; otherwise wirte a # flag to indicate non-convergence. variable myStep equal step if "${myStep} < 2000000" then "print '${V}' file output/vol_T253.15.out" else "print 'not_converged' file output/vol_T253.15.out" print '${V}' file output/vol_T253.15.out 31465.049048722 print "LAMMPS calculation completed" LAMMPS calculation completed quit 0