# 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 5.248509056866169*${_u_distance} variable latticeconst_converted equal 5.248509056866169*1 lattice fcc ${latticeconst_converted} lattice fcc 5.24850905686617 Lattice spacing in x,y,z = 5.24851 5.24851 5.24851 region simbox block 0 10 0 10 0 10 units lattice create_box 1 simbox Created orthogonal box = (0 0 0) to (52.4851 52.4851 52.4851) 1 by 1 by 1 MPI processor grid create_atoms 1 box Created 4000 atoms create_atoms CPU = 0.000346184 secs variable mass_converted equal 39.948*${_u_mass} variable mass_converted equal 39.948*1 # specify which KIM Model to use pair_style kim LJ_Shifted_Bernardes_1958MedCutoff_Ar__MO_126566794224_003 WARNING: KIM Model does not provide `partialParticleVirial'; virial per atom will be zero (src/KIM/pair_kim.cpp:1089) pair_coeff * * Ar mass 1 ${mass_converted} mass 1 39.948 # initial volume variable v equal vol # assign formula variable V0 equal ${v} # evaluate initial value variable V0 equal 144579.877647162 variable V0_metal equal ${V0}/(${_u_distance}*${_u_distance}*${_u_distance}) variable V0_metal equal 144579.877647162/(${_u_distance}*${_u_distance}*${_u_distance}) variable V0_metal equal 144579.877647162/(1*${_u_distance}*${_u_distance}) variable V0_metal equal 144579.877647162/(1*1*${_u_distance}) variable V0_metal equal 144579.877647162/(1*1*1) variable V0_metal_times1000 equal ${V0_metal}*1000 variable V0_metal_times1000 equal 144579.877647162*1000 print "Initial system volume: ${V0_metal} Angstroms^3" Initial system volume: 144579.877647162 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 293.15*${_u_temperature} variable temp_converted equal 293.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 293.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 293.15 ${temp_converted} ${Tdamp_converted} iso ${press_converted} ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 293.15 293.15 ${Tdamp_converted} iso ${press_converted} ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 293.15 293.15 0.1 iso ${press_converted} ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 293.15 293.15 0.1 iso 0 ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 293.15 293.15 0.1 iso 0 0 ${Pdamp_converted} fix ensemble all npt temp 293.15 293.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 "293.15 - 0.2" variable T_up equal "293.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 = 15.5 ghost atom cutoff = 15.5 binsize = 7.75, bins = 7 7 7 1 neighbor lists, perpetual/occasional/extra = 1 0 0 (1) pair kim, perpetual attributes: full, newton off, cut 15.5 pair build: full/bin/atomonly stencil: full/bin/3d bin: standard Per MPI rank memory allocation (min/avg/max) = 10.2 | 10.2 | 10.2 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 0 -194.48948 -194.48948 -346.02203 -346.02203 293.15 293.15 144579.88 144579.88 1119.4828 1119.4828 1000 -51.965614 -51.965614 -192.35107 -192.35107 271.58519 271.58519 200905.26 200905.26 1852.5537 1852.5537 Loop time of 80.3249 on 1 procs for 1000 steps with 4000 atoms Performance: 1.076 ns/day, 22.312 hours/ns, 12.449 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 | 77.908 | 77.908 | 77.908 | 0.0 | 96.99 Neigh | 1.632 | 1.632 | 1.632 | 0.0 | 2.03 Comm | 0.1319 | 0.1319 | 0.1319 | 0.0 | 0.16 Output | 4.3869e-05 | 4.3869e-05 | 4.3869e-05 | 0.0 | 0.00 Modify | 0.55168 | 0.55168 | 0.55168 | 0.0 | 0.69 Other | | 0.1014 | | | 0.13 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10597 ave 10597 max 10597 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: 1.25875e+06 ave 1.25875e+06 max 1.25875e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1258746 Ave neighs/atom = 314.687 Neighbor list builds = 15 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) = 10.2 | 10.2 | 10.2 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 1000 -51.965614 -51.965614 -192.35107 -192.35107 271.58519 271.58519 200905.26 200905.26 1852.5537 1852.5537 2000 5.5308726 5.5308726 -145.79112 -145.79112 292.74266 292.74266 266309.97 266309.97 877.80522 877.80522 Loop time of 58.6075 on 1 procs for 1000 steps with 4000 atoms Performance: 1.474 ns/day, 16.280 hours/ns, 17.063 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 | 56.551 | 56.551 | 56.551 | 0.0 | 96.49 Neigh | 1.4953 | 1.4953 | 1.4953 | 0.0 | 2.55 Comm | 0.10456 | 0.10456 | 0.10456 | 0.0 | 0.18 Output | 4.1962e-05 | 4.1962e-05 | 4.1962e-05 | 0.0 | 0.00 Modify | 0.4161 | 0.4161 | 0.4161 | 0.0 | 0.71 Other | | 0.04056 | | | 0.07 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 9218 ave 9218 max 9218 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: 947274 ave 947274 max 947274 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 947274 Ave neighs/atom = 236.819 Neighbor list builds = 17 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) = 10.2 | 10.2 | 10.2 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 2000 5.5308726 5.5308726 -145.79112 -145.79112 292.74266 292.74266 266309.97 266309.97 877.80522 877.80522 3000 33.131494 33.131494 -117.65543 -117.65543 291.70753 291.70753 328739.55 328739.55 552.95782 552.95782 Loop time of 42.9547 on 1 procs for 1000 steps with 4000 atoms Performance: 2.011 ns/day, 11.932 hours/ns, 23.280 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 | 41.262 | 41.262 | 41.262 | 0.0 | 96.06 Neigh | 1.0754 | 1.0754 | 1.0754 | 0.0 | 2.50 Comm | 0.12955 | 0.12955 | 0.12955 | 0.0 | 0.30 Output | 3.5048e-05 | 3.5048e-05 | 3.5048e-05 | 0.0 | 0.00 Modify | 0.42755 | 0.42755 | 0.42755 | 0.0 | 1.00 Other | | 0.05985 | | | 0.14 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8334 ave 8334 max 8334 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: 761252 ave 761252 max 761252 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 761252 Ave neighs/atom = 190.313 Neighbor list builds = 16 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) = 10.2 | 10.2 | 10.2 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 3000 33.131494 33.131494 -117.65543 -117.65543 291.70753 291.70753 328739.55 328739.55 552.95782 552.95782 4000 54.349268 54.349268 -97.825934 -97.825934 294.39325 294.39325 395487.45 395487.45 413.1974 413.1974 Loop time of 38.9148 on 1 procs for 1000 steps with 4000 atoms Performance: 2.220 ns/day, 10.810 hours/ns, 25.697 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 | 37.535 | 37.535 | 37.535 | 0.0 | 96.46 Neigh | 0.812 | 0.812 | 0.812 | 0.0 | 2.09 Comm | 0.13366 | 0.13366 | 0.13366 | 0.0 | 0.34 Output | 4.5061e-05 | 4.5061e-05 | 4.5061e-05 | 0.0 | 0.00 Modify | 0.41436 | 0.41436 | 0.41436 | 0.0 | 1.06 Other | | 0.01936 | | | 0.05 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 7603 ave 7603 max 7603 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: 632932 ave 632932 max 632932 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 632932 Ave neighs/atom = 158.233 Neighbor list builds = 15 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) = 10.2 | 10.2 | 10.2 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 4000 54.349268 54.349268 -97.825934 -97.825934 294.39325 294.39325 395487.45 395487.45 413.1974 413.1974 5000 70.334616 70.334616 -82.26274 -82.26274 295.20993 295.20993 471003.52 471003.52 316.4251 316.4251 Loop time of 29.1199 on 1 procs for 1000 steps with 4000 atoms Performance: 2.967 ns/day, 8.089 hours/ns, 34.341 timesteps/s 40.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 | 27.668 | 27.668 | 27.668 | 0.0 | 95.01 Neigh | 0.78635 | 0.78635 | 0.78635 | 0.0 | 2.70 Comm | 0.16977 | 0.16977 | 0.16977 | 0.0 | 0.58 Output | 2.5034e-05 | 2.5034e-05 | 2.5034e-05 | 0.0 | 0.00 Modify | 0.43527 | 0.43527 | 0.43527 | 0.0 | 1.49 Other | | 0.06025 | | | 0.21 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6988 ave 6988 max 6988 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: 530094 ave 530094 max 530094 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 530094 Ave neighs/atom = 132.524 Neighbor list builds = 16 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 = 294.059570934393, Press = 322.451367726668 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 10.21 | 10.21 | 10.21 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 5000 70.334616 70.334616 -82.26274 -82.26274 295.20993 295.20993 471003.52 471003.52 316.4251 316.4251 6000 81.944506 81.944506 -70.334189 -70.334189 294.59346 294.59346 555657.81 555657.81 268.38593 268.38593 Loop time of 25.6593 on 1 procs for 1000 steps with 4000 atoms Performance: 3.367 ns/day, 7.128 hours/ns, 38.972 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 | 24.362 | 24.362 | 24.362 | 0.0 | 94.94 Neigh | 0.65971 | 0.65971 | 0.65971 | 0.0 | 2.57 Comm | 0.12769 | 0.12769 | 0.12769 | 0.0 | 0.50 Output | 3.1948e-05 | 3.1948e-05 | 3.1948e-05 | 0.0 | 0.00 Modify | 0.47045 | 0.47045 | 0.47045 | 0.0 | 1.83 Other | | 0.03931 | | | 0.15 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6528 ave 6528 max 6528 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: 449372 ave 449372 max 449372 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 449372 Ave neighs/atom = 112.343 Neighbor list builds = 16 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 = 293.41922924215, Press = 287.53947245554 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 10.21 | 10.21 | 10.21 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 6000 81.944506 81.944506 -70.334189 -70.334189 294.59346 294.59346 555657.81 555657.81 268.38593 268.38593 7000 93.107688 93.107688 -58.999157 -58.999157 294.26101 294.26101 657891.91 657891.91 227.287 227.287 Loop time of 20.9054 on 1 procs for 1000 steps with 4000 atoms Performance: 4.133 ns/day, 5.807 hours/ns, 47.834 timesteps/s 41.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 | 19.725 | 19.725 | 19.725 | 0.0 | 94.36 Neigh | 0.58318 | 0.58318 | 0.58318 | 0.0 | 2.79 Comm | 0.12448 | 0.12448 | 0.12448 | 0.0 | 0.60 Output | 3.4094e-05 | 3.4094e-05 | 3.4094e-05 | 0.0 | 0.00 Modify | 0.43389 | 0.43389 | 0.43389 | 0.0 | 2.08 Other | | 0.03842 | | | 0.18 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6085 ave 6085 max 6085 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: 380918 ave 380918 max 380918 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 380918 Ave neighs/atom = 95.2295 Neighbor list builds = 16 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 = 293.229556114998, Press = 269.789579513902 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 10.21 | 10.21 | 10.21 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 7000 93.107688 93.107688 -58.999157 -58.999157 294.26101 294.26101 657891.91 657891.91 227.287 227.287 8000 101.48197 101.48197 -50.658372 -50.658372 294.32582 294.32582 774768.98 774768.98 186.09007 186.09007 Loop time of 17.6207 on 1 procs for 1000 steps with 4000 atoms Performance: 4.903 ns/day, 4.895 hours/ns, 56.751 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 | 16.742 | 16.742 | 16.742 | 0.0 | 95.01 Neigh | 0.38156 | 0.38156 | 0.38156 | 0.0 | 2.17 Comm | 0.098395 | 0.098395 | 0.098395 | 0.0 | 0.56 Output | 4.7922e-05 | 4.7922e-05 | 4.7922e-05 | 0.0 | 0.00 Modify | 0.38038 | 0.38038 | 0.38038 | 0.0 | 2.16 Other | | 0.01816 | | | 0.10 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5601 ave 5601 max 5601 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: 320994 ave 320994 max 320994 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 320994 Ave neighs/atom = 80.2485 Neighbor list builds = 16 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 = 293.245920193807, Press = 248.424878251666 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 10.21 | 10.21 | 10.21 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 8000 101.48197 101.48197 -50.658372 -50.658372 294.32582 294.32582 774768.98 774768.98 186.09007 186.09007 9000 106.24084 106.24084 -42.602761 -42.602761 287.94804 287.94804 911991.17 911991.17 170.02146 170.02146 Loop time of 15.1572 on 1 procs for 1000 steps with 4000 atoms Performance: 5.700 ns/day, 4.210 hours/ns, 65.975 timesteps/s 43.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 | 14.341 | 14.341 | 14.341 | 0.0 | 94.62 Neigh | 0.32888 | 0.32888 | 0.32888 | 0.0 | 2.17 Comm | 0.058443 | 0.058443 | 0.058443 | 0.0 | 0.39 Output | 3.314e-05 | 3.314e-05 | 3.314e-05 | 0.0 | 0.00 Modify | 0.41058 | 0.41058 | 0.41058 | 0.0 | 2.71 Other | | 0.01815 | | | 0.12 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5260 ave 5260 max 5260 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: 274948 ave 274948 max 274948 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 274948 Ave neighs/atom = 68.737 Neighbor list builds = 16 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 = 293.127537284535, Press = 230.194503131306 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 10.21 | 10.21 | 10.21 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 9000 106.24084 106.24084 -42.602761 -42.602761 287.94804 287.94804 911991.17 911991.17 170.02146 170.02146 10000 115.45143 115.45143 -37.09158 -37.09158 295.10479 295.10479 1074172 1074172 141.96704 141.96704 Loop time of 13.4345 on 1 procs for 1000 steps with 4000 atoms Performance: 6.431 ns/day, 3.732 hours/ns, 74.435 timesteps/s 41.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 | 12.36 | 12.36 | 12.36 | 0.0 | 92.00 Neigh | 0.49038 | 0.49038 | 0.49038 | 0.0 | 3.65 Comm | 0.092777 | 0.092777 | 0.092777 | 0.0 | 0.69 Output | 2.5988e-05 | 2.5988e-05 | 2.5988e-05 | 0.0 | 0.00 Modify | 0.414 | 0.414 | 0.414 | 0.0 | 3.08 Other | | 0.07744 | | | 0.58 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4903 ave 4903 max 4903 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: 233000 ave 233000 max 233000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 233000 Ave neighs/atom = 58.25 Neighbor list builds = 17 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 = 293.115304698724, Press = 214.362968033712 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 10.22 | 10.22 | 10.22 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 10000 115.45143 115.45143 -37.09158 -37.09158 295.10479 295.10479 1074172 1074172 141.96704 141.96704 11000 117.66604 117.66604 -31.720004 -31.720004 288.99744 288.99744 1264283.7 1264283.7 119.31759 119.31759 Loop time of 11.4161 on 1 procs for 1000 steps with 4000 atoms Performance: 7.568 ns/day, 3.171 hours/ns, 87.595 timesteps/s 42.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 | 10.482 | 10.482 | 10.482 | 0.0 | 91.82 Neigh | 0.40179 | 0.40179 | 0.40179 | 0.0 | 3.52 Comm | 0.094883 | 0.094883 | 0.094883 | 0.0 | 0.83 Output | 3.1948e-05 | 3.1948e-05 | 3.1948e-05 | 0.0 | 0.00 Modify | 0.35937 | 0.35937 | 0.35937 | 0.0 | 3.15 Other | | 0.07761 | | | 0.68 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4650 ave 4650 max 4650 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: 198872 ave 198872 max 198872 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 198872 Ave neighs/atom = 49.718 Neighbor list builds = 17 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 = 293.132374879061, Press = 200.011028981847 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 10.22 | 10.22 | 10.22 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 11000 117.66604 117.66604 -31.720004 -31.720004 288.99744 288.99744 1264283.7 1264283.7 119.31759 119.31759 12000 122.49035 122.49035 -26.660044 -26.660044 288.54155 288.54155 1489026.6 1489026.6 105.2885 105.2885 Loop time of 9.80749 on 1 procs for 1000 steps with 4000 atoms Performance: 8.810 ns/day, 2.724 hours/ns, 101.963 timesteps/s 43.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 | 9.0821 | 9.0821 | 9.0821 | 0.0 | 92.60 Neigh | 0.34868 | 0.34868 | 0.34868 | 0.0 | 3.56 Comm | 0.052361 | 0.052361 | 0.052361 | 0.0 | 0.53 Output | 3.314e-05 | 3.314e-05 | 3.314e-05 | 0.0 | 0.00 Modify | 0.28716 | 0.28716 | 0.28716 | 0.0 | 2.93 Other | | 0.03716 | | | 0.38 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4345 ave 4345 max 4345 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: 170084 ave 170084 max 170084 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 170084 Ave neighs/atom = 42.521 Neighbor list builds = 17 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 = 293.146518008806, Press = 187.24236178293 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 10.22 | 10.22 | 10.22 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 12000 122.49035 122.49035 -26.660044 -26.660044 288.54155 288.54155 1489026.6 1489026.6 105.2885 105.2885 13000 127.41102 127.41102 -23.648251 -23.648251 292.23441 292.23441 1753352.7 1753352.7 81.096705 81.096705 Loop time of 9.0016 on 1 procs for 1000 steps with 4000 atoms Performance: 9.598 ns/day, 2.500 hours/ns, 111.091 timesteps/s 41.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 | 8.1276 | 8.1276 | 8.1276 | 0.0 | 90.29 Neigh | 0.39838 | 0.39838 | 0.39838 | 0.0 | 4.43 Comm | 0.050727 | 0.050727 | 0.050727 | 0.0 | 0.56 Output | 3.1948e-05 | 3.1948e-05 | 3.1948e-05 | 0.0 | 0.00 Modify | 0.36808 | 0.36808 | 0.36808 | 0.0 | 4.09 Other | | 0.05673 | | | 0.63 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4018 ave 4018 max 4018 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: 143644 ave 143644 max 143644 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 143644 Ave neighs/atom = 35.911 Neighbor list builds = 18 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 = 292.991191316133, Press = 175.64105803727 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 10.23 | 10.23 | 10.23 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 13000 127.41102 127.41102 -23.648251 -23.648251 292.23441 292.23441 1753352.7 1753352.7 81.096705 81.096705 14000 129.18163 129.18163 -20.005967 -20.005967 288.61353 288.61353 2061851 2061851 73.051342 73.051342 Loop time of 7.64242 on 1 procs for 1000 steps with 4000 atoms Performance: 11.305 ns/day, 2.123 hours/ns, 130.849 timesteps/s 42.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 | 6.8891 | 6.8891 | 6.8891 | 0.0 | 90.14 Neigh | 0.34829 | 0.34829 | 0.34829 | 0.0 | 4.56 Comm | 0.048781 | 0.048781 | 0.048781 | 0.0 | 0.64 Output | 3.314e-05 | 3.314e-05 | 3.314e-05 | 0.0 | 0.00 Modify | 0.29954 | 0.29954 | 0.29954 | 0.0 | 3.92 Other | | 0.05666 | | | 0.74 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 3734 ave 3734 max 3734 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: 122858 ave 122858 max 122858 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 122858 Ave neighs/atom = 30.7145 Neighbor list builds = 18 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 = 292.996946394466, Press = 164.991230088037 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 10.23 | 10.23 | 10.23 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 14000 129.18163 129.18163 -20.005967 -20.005967 288.61353 288.61353 2061851 2061851 73.051342 73.051342 15000 132.88206 132.88206 -16.468173 -16.468173 288.92816 288.92816 2425684 2425684 65.335419 65.335419 Loop time of 7.2286 on 1 procs for 1000 steps with 4000 atoms Performance: 11.953 ns/day, 2.008 hours/ns, 138.339 timesteps/s 38.9% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 6.4202 | 6.4202 | 6.4202 | 0.0 | 88.82 Neigh | 0.2897 | 0.2897 | 0.2897 | 0.0 | 4.01 Comm | 0.077226 | 0.077226 | 0.077226 | 0.0 | 1.07 Output | 2.6941e-05 | 2.6941e-05 | 2.6941e-05 | 0.0 | 0.00 Modify | 0.38544 | 0.38544 | 0.38544 | 0.0 | 5.33 Other | | 0.05596 | | | 0.77 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 3533 ave 3533 max 3533 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: 104012 ave 104012 max 104012 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 104012 Ave neighs/atom = 26.003 Neighbor list builds = 20 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 = 292.818394442206, Press = 155.380392655751 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 10.24 | 10.24 | 10.24 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 15000 132.88206 132.88206 -16.468173 -16.468173 288.92816 288.92816 2425684 2425684 65.335419 65.335419 16000 137.33636 137.33636 -14.327268 -14.327268 293.40357 293.40357 2861505.2 2861505.2 54.971344 54.971344 Loop time of 5.95111 on 1 procs for 1000 steps with 4000 atoms Performance: 14.518 ns/day, 1.653 hours/ns, 168.036 timesteps/s 42.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 | 5.1208 | 5.1208 | 5.1208 | 0.0 | 86.05 Neigh | 0.27934 | 0.27934 | 0.27934 | 0.0 | 4.69 Comm | 0.086849 | 0.086849 | 0.086849 | 0.0 | 1.46 Output | 3.2187e-05 | 3.2187e-05 | 3.2187e-05 | 0.0 | 0.00 Modify | 0.38796 | 0.38796 | 0.38796 | 0.0 | 6.52 Other | | 0.07614 | | | 1.28 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 3300 ave 3300 max 3300 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: 88414 ave 88414 max 88414 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 88414 Ave neighs/atom = 22.1035 Neighbor list builds = 21 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 = 292.873604127715, Press = 146.724385316468 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 10.24 | 10.24 | 10.24 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 16000 137.33636 137.33636 -14.327268 -14.327268 293.40357 293.40357 2861505.2 2861505.2 54.971344 54.971344 17000 140.89634 140.89634 -12.073749 -12.073749 295.93101 295.93101 3368412.6 3368412.6 47.205895 47.205895 Loop time of 5.46792 on 1 procs for 1000 steps with 4000 atoms Performance: 15.801 ns/day, 1.519 hours/ns, 182.885 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 | 4.8128 | 4.8128 | 4.8128 | 0.0 | 88.02 Neigh | 0.25843 | 0.25843 | 0.25843 | 0.0 | 4.73 Comm | 0.064869 | 0.064869 | 0.064869 | 0.0 | 1.19 Output | 3.4809e-05 | 3.4809e-05 | 3.4809e-05 | 0.0 | 0.00 Modify | 0.31626 | 0.31626 | 0.31626 | 0.0 | 5.78 Other | | 0.01555 | | | 0.28 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 3045 ave 3045 max 3045 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: 74752 ave 74752 max 74752 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 74752 Ave neighs/atom = 18.688 Neighbor list builds = 22 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 = 292.883571144307, Press = 138.715041724609 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 10.25 | 10.25 | 10.25 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 17000 140.89634 140.89634 -12.073749 -12.073749 295.93101 295.93101 3368412.6 3368412.6 47.205895 47.205895 18000 141.2198 141.2198 -10.303139 -10.303139 293.13141 293.13141 3965923 3965923 39.837089 39.837089 Loop time of 4.71074 on 1 procs for 1000 steps with 4000 atoms Performance: 18.341 ns/day, 1.309 hours/ns, 212.281 timesteps/s 41.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 | 3.9151 | 3.9151 | 3.9151 | 0.0 | 83.11 Neigh | 0.26101 | 0.26101 | 0.26101 | 0.0 | 5.54 Comm | 0.10358 | 0.10358 | 0.10358 | 0.0 | 2.20 Output | 3.314e-05 | 3.314e-05 | 3.314e-05 | 0.0 | 0.00 Modify | 0.37586 | 0.37586 | 0.37586 | 0.0 | 7.98 Other | | 0.05519 | | | 1.17 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 2902 ave 2902 max 2902 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: 63562 ave 63562 max 63562 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 63562 Ave neighs/atom = 15.8905 Neighbor list builds = 23 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 = 292.88562954016, Press = 131.376376145582 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 10.26 | 10.26 | 10.26 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 18000 141.2198 141.2198 -10.303139 -10.303139 293.13141 293.13141 3965923 3965923 39.837089 39.837089 19000 141.44001 141.44001 -9.0555037 -9.0555037 291.14377 291.14377 4672015.3 4672015.3 33.16584 33.16584 Loop time of 4.19416 on 1 procs for 1000 steps with 4000 atoms Performance: 20.600 ns/day, 1.165 hours/ns, 238.427 timesteps/s 42.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 | 3.2976 | 3.2976 | 3.2976 | 0.0 | 78.62 Neigh | 0.28751 | 0.28751 | 0.28751 | 0.0 | 6.86 Comm | 0.19329 | 0.19329 | 0.19329 | 0.0 | 4.61 Output | 3.4094e-05 | 3.4094e-05 | 3.4094e-05 | 0.0 | 0.00 Modify | 0.40061 | 0.40061 | 0.40061 | 0.0 | 9.55 Other | | 0.01511 | | | 0.36 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 2731 ave 2731 max 2731 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: 54104 ave 54104 max 54104 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 54104 Ave neighs/atom = 13.526 Neighbor list builds = 24 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 = 292.877436836757, Press = 124.648396718305 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 10.27 | 10.27 | 10.27 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 19000 141.44001 141.44001 -9.0555037 -9.0555037 291.14377 291.14377 4672015.3 4672015.3 33.16584 33.16584 20000 144.08035 144.08035 -7.3554068 -7.3554068 292.96275 292.96275 5496779.6 5496779.6 28.599267 28.599267 Loop time of 3.8185 on 1 procs for 1000 steps with 4000 atoms Performance: 22.627 ns/day, 1.061 hours/ns, 261.883 timesteps/s 41.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 | 3.2198 | 3.2198 | 3.2198 | 0.0 | 84.32 Neigh | 0.24688 | 0.24688 | 0.24688 | 0.0 | 6.47 Comm | 0.081568 | 0.081568 | 0.081568 | 0.0 | 2.14 Output | 3.0994e-05 | 3.0994e-05 | 3.0994e-05 | 0.0 | 0.00 Modify | 0.25535 | 0.25535 | 0.25535 | 0.0 | 6.69 Other | | 0.0149 | | | 0.39 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 2565 ave 2565 max 2565 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: 46232 ave 46232 max 46232 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 46232 Ave neighs/atom = 11.558 Neighbor list builds = 23 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 = 292.803476880548, Press = 118.436521947192 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 10.27 | 10.27 | 10.27 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 20000 144.08035 144.08035 -7.3554068 -7.3554068 292.96275 292.96275 5496779.6 5496779.6 28.599267 28.599267 21000 145.37028 145.37028 -6.5456731 -6.5456731 293.8917 293.8917 6471052.8 6471052.8 24.481726 24.481726 Loop time of 2.77822 on 1 procs for 1000 steps with 4000 atoms Performance: 31.099 ns/day, 0.772 hours/ns, 359.942 timesteps/s 50.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 | 2.2499 | 2.2499 | 2.2499 | 0.0 | 80.98 Neigh | 0.16062 | 0.16062 | 0.16062 | 0.0 | 5.78 Comm | 0.040126 | 0.040126 | 0.040126 | 0.0 | 1.44 Output | 3.2902e-05 | 3.2902e-05 | 3.2902e-05 | 0.0 | 0.00 Modify | 0.31317 | 0.31317 | 0.31317 | 0.0 | 11.27 Other | | 0.01439 | | | 0.52 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 2435 ave 2435 max 2435 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: 39454 ave 39454 max 39454 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 39454 Ave neighs/atom = 9.8635 Neighbor list builds = 23 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 = 292.741873753093, Press = 112.725425829436 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 10.29 | 10.29 | 10.29 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 21000 145.37028 145.37028 -6.5456731 -6.5456731 293.8917 293.8917 6471052.8 6471052.8 24.481726 24.481726 22000 147.43642 147.43642 -5.3751898 -5.3751898 295.62442 295.62442 7618505 7618505 21.202897 21.202897 Loop time of 2.85425 on 1 procs for 1000 steps with 4000 atoms Performance: 30.271 ns/day, 0.793 hours/ns, 350.354 timesteps/s 44.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 | 2.3372 | 2.3372 | 2.3372 | 0.0 | 81.88 Neigh | 0.1889 | 0.1889 | 0.1889 | 0.0 | 6.62 Comm | 0.019275 | 0.019275 | 0.019275 | 0.0 | 0.68 Output | 4.8876e-05 | 4.8876e-05 | 4.8876e-05 | 0.0 | 0.00 Modify | 0.29427 | 0.29427 | 0.29427 | 0.0 | 10.31 Other | | 0.01461 | | | 0.51 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 2303 ave 2303 max 2303 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: 33360 ave 33360 max 33360 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 33360 Ave neighs/atom = 8.34 Neighbor list builds = 23 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 = 292.770831512813, Press = 107.459087930685 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 10.3 | 10.3 | 10.3 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 22000 147.43642 147.43642 -5.3751898 -5.3751898 295.62442 295.62442 7618505 7618505 21.202897 21.202897 23000 149.64556 149.64556 -4.4811021 -4.4811021 298.16848 298.16848 8970774.9 8970774.9 18.203076 18.203076 Loop time of 2.85143 on 1 procs for 1000 steps with 4000 atoms Performance: 30.301 ns/day, 0.792 hours/ns, 350.701 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 | 2.2043 | 2.2043 | 2.2043 | 0.0 | 77.30 Neigh | 0.17863 | 0.17863 | 0.17863 | 0.0 | 6.26 Comm | 0.059248 | 0.059248 | 0.059248 | 0.0 | 2.08 Output | 3.1948e-05 | 3.1948e-05 | 3.1948e-05 | 0.0 | 0.00 Modify | 0.39508 | 0.39508 | 0.39508 | 0.0 | 13.86 Other | | 0.01417 | | | 0.50 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 2173 ave 2173 max 2173 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: 28436 ave 28436 max 28436 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 28436 Ave neighs/atom = 7.109 Neighbor list builds = 25 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 = 292.828587603262, Press = 102.592481913185 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 10.32 | 10.32 | 10.32 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 23000 149.64556 149.64556 -4.4811021 -4.4811021 298.16848 298.16848 8970774.9 8970774.9 18.203076 18.203076 24000 146.41143 146.41143 -3.9432787 -3.9432787 290.87138 290.87138 10556155 10556155 15.109704 15.109704 Loop time of 2.35692 on 1 procs for 1000 steps with 4000 atoms Performance: 36.658 ns/day, 0.655 hours/ns, 424.283 timesteps/s 44.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 | 1.7884 | 1.7884 | 1.7884 | 0.0 | 75.88 Neigh | 0.16383 | 0.16383 | 0.16383 | 0.0 | 6.95 Comm | 0.017756 | 0.017756 | 0.017756 | 0.0 | 0.75 Output | 3.314e-05 | 3.314e-05 | 3.314e-05 | 0.0 | 0.00 Modify | 0.37299 | 0.37299 | 0.37299 | 0.0 | 15.83 Other | | 0.01387 | | | 0.59 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 2009 ave 2009 max 2009 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: 24294 ave 24294 max 24294 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 24294 Ave neighs/atom = 6.0735 Neighbor list builds = 25 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 = 292.821890386536, Press = 98.0802451991149 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 10.34 | 10.34 | 10.34 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 24000 146.41143 146.41143 -3.9432787 -3.9432787 290.87138 290.87138 10556155 10556155 15.109704 15.109704 25000 147.29895 147.29895 -3.4384238 -3.4384238 291.61167 291.61167 12416393 12416393 12.950051 12.950051 Loop time of 2.20605 on 1 procs for 1000 steps with 4000 atoms Performance: 39.165 ns/day, 0.613 hours/ns, 453.299 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 | 1.6849 | 1.6849 | 1.6849 | 0.0 | 76.38 Neigh | 0.11937 | 0.11937 | 0.11937 | 0.0 | 5.41 Comm | 0.036901 | 0.036901 | 0.036901 | 0.0 | 1.67 Output | 3.3855e-05 | 3.3855e-05 | 3.3855e-05 | 0.0 | 0.00 Modify | 0.31132 | 0.31132 | 0.31132 | 0.0 | 14.11 Other | | 0.05351 | | | 2.43 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 1884 ave 1884 max 1884 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: 20556 ave 20556 max 20556 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 20556 Ave neighs/atom = 5.139 Neighbor list builds = 26 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 = 292.83812540162, Press = 93.8954404171569 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 10.35 | 10.35 | 10.35 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 25000 147.29895 147.29895 -3.4384238 -3.4384238 291.61167 291.61167 12416393 12416393 12.950051 12.950051 26000 150.75653 150.75653 -2.9338621 -2.9338621 297.32448 297.32448 14600516 14600516 11.153012 11.153012 Loop time of 2.28334 on 1 procs for 1000 steps with 4000 atoms Performance: 37.839 ns/day, 0.634 hours/ns, 437.955 timesteps/s 39.9% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 1.5703 | 1.5703 | 1.5703 | 0.0 | 68.77 Neigh | 0.21879 | 0.21879 | 0.21879 | 0.0 | 9.58 Comm | 0.016061 | 0.016061 | 0.016061 | 0.0 | 0.70 Output | 3.1948e-05 | 3.1948e-05 | 3.1948e-05 | 0.0 | 0.00 Modify | 0.44449 | 0.44449 | 0.44449 | 0.0 | 19.47 Other | | 0.0337 | | | 1.48 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 1749 ave 1749 max 1749 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: 17728 ave 17728 max 17728 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 17728 Ave neighs/atom = 4.432 Neighbor list builds = 27 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 = 292.838705965537, Press = 90.009096635378 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 10.38 | 10.38 | 10.38 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 26000 150.75653 150.75653 -2.9338621 -2.9338621 297.32448 297.32448 14600516 14600516 11.153012 11.153012 27000 142.12263 142.12263 -2.2505303 -2.2505303 279.29968 279.29968 17158288 17158288 9.020676 9.020676 Loop time of 2.23101 on 1 procs for 1000 steps with 4000 atoms Performance: 38.727 ns/day, 0.620 hours/ns, 448.227 timesteps/s 36.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 | 1.3606 | 1.3606 | 1.3606 | 0.0 | 60.99 Neigh | 0.16761 | 0.16761 | 0.16761 | 0.0 | 7.51 Comm | 0.075537 | 0.075537 | 0.075537 | 0.0 | 3.39 Output | 2.5034e-05 | 2.5034e-05 | 2.5034e-05 | 0.0 | 0.00 Modify | 0.57381 | 0.57381 | 0.57381 | 0.0 | 25.72 Other | | 0.05344 | | | 2.40 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 1623 ave 1623 max 1623 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: 14826 ave 14826 max 14826 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 14826 Ave neighs/atom = 3.7065 Neighbor list builds = 29 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 = 292.813802798714, Press = 86.3928253015704 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 10.42 | 10.42 | 10.42 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 27000 142.12263 142.12263 -2.2505303 -2.2505303 279.29968 279.29968 17158288 17158288 9.020676 9.020676 28000 145.10148 145.10148 -2.0939538 -2.0939538 284.75955 284.75955 20153584 20153584 7.7746058 7.7746058 Loop time of 2.07308 on 1 procs for 1000 steps with 4000 atoms Performance: 41.677 ns/day, 0.576 hours/ns, 482.374 timesteps/s 38.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 | 1.3455 | 1.3455 | 1.3455 | 0.0 | 64.91 Neigh | 0.096896 | 0.096896 | 0.096896 | 0.0 | 4.67 Comm | 0.014986 | 0.014986 | 0.014986 | 0.0 | 0.72 Output | 3.1948e-05 | 3.1948e-05 | 3.1948e-05 | 0.0 | 0.00 Modify | 0.60252 | 0.60252 | 0.60252 | 0.0 | 29.06 Other | | 0.01309 | | | 0.63 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 1534 ave 1534 max 1534 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: 12656 ave 12656 max 12656 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 12656 Ave neighs/atom = 3.164 Neighbor list builds = 31 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 = 292.74537330107, Press = 83.0247088224925 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 10.45 | 10.45 | 10.45 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 28000 145.10148 145.10148 -2.0939538 -2.0939538 284.75955 284.75955 20153584 20153584 7.7746058 7.7746058 29000 149.84793 149.84793 -1.6207536 -1.6207536 293.02644 293.02644 23679117 23679117 6.8480346 6.8480346 Loop time of 1.68819 on 1 procs for 1000 steps with 4000 atoms Performance: 51.179 ns/day, 0.469 hours/ns, 592.349 timesteps/s 43.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 | 1.1651 | 1.1651 | 1.1651 | 0.0 | 69.01 Neigh | 0.072582 | 0.072582 | 0.072582 | 0.0 | 4.30 Comm | 0.094379 | 0.094379 | 0.094379 | 0.0 | 5.59 Output | 3.2902e-05 | 3.2902e-05 | 3.2902e-05 | 0.0 | 0.00 Modify | 0.32291 | 0.32291 | 0.32291 | 0.0 | 19.13 Other | | 0.03321 | | | 1.97 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 1426 ave 1426 max 1426 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: 10882 ave 10882 max 10882 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 10882 Ave neighs/atom = 2.7205 Neighbor list builds = 32 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 = 292.740540320843, Press = 79.8856261431709 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 10.49 | 10.49 | 10.49 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 29000 149.84793 149.84793 -1.6207536 -1.6207536 293.02644 293.02644 23679117 23679117 6.8480346 6.8480346 30000 149.64935 149.64935 -1.3205579 -1.3205579 292.06153 292.06153 27815536 27815536 5.8356327 5.8356327 Loop time of 2.03836 on 1 procs for 1000 steps with 4000 atoms Performance: 42.387 ns/day, 0.566 hours/ns, 490.591 timesteps/s 35.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 | 1.3504 | 1.3504 | 1.3504 | 0.0 | 66.25 Neigh | 0.13431 | 0.13431 | 0.13431 | 0.0 | 6.59 Comm | 0.013774 | 0.013774 | 0.013774 | 0.0 | 0.68 Output | 2.5034e-05 | 2.5034e-05 | 2.5034e-05 | 0.0 | 0.00 Modify | 0.52701 | 0.52701 | 0.52701 | 0.0 | 25.85 Other | | 0.01285 | | | 0.63 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 1362 ave 1362 max 1362 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: 9136 ave 9136 max 9136 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 9136 Ave neighs/atom = 2.284 Neighbor list builds = 34 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 = 292.756836205717, Press = 76.953005238878 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 10.54 | 10.54 | 10.54 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 30000 149.64935 149.64935 -1.3205579 -1.3205579 292.06153 292.06153 27815536 27815536 5.8356327 5.8356327 31000 151.05401 151.05401 -1.3657768 -1.3657768 294.86642 294.86642 32653079 32653079 4.9900043 4.9900043 Loop time of 1.56943 on 1 procs for 1000 steps with 4000 atoms Performance: 55.052 ns/day, 0.436 hours/ns, 637.172 timesteps/s 42.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 | 0.95839 | 0.95839 | 0.95839 | 0.0 | 61.07 Neigh | 0.1522 | 0.1522 | 0.1522 | 0.0 | 9.70 Comm | 0.073187 | 0.073187 | 0.073187 | 0.0 | 4.66 Output | 3.0994e-05 | 3.0994e-05 | 3.0994e-05 | 0.0 | 0.00 Modify | 0.33282 | 0.33282 | 0.33282 | 0.0 | 21.21 Other | | 0.05281 | | | 3.36 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 1283 ave 1283 max 1283 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: 7676 ave 7676 max 7676 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 7676 Ave neighs/atom = 1.919 Neighbor list builds = 33 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 = 292.709354830078, Press = 74.2087606109884 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 10.59 | 10.59 | 10.59 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 31000 151.05401 151.05401 -1.3657768 -1.3657768 294.86642 294.86642 32653079 32653079 4.9900043 4.9900043 32000 152.59792 152.59792 -0.98812673 -0.98812673 297.12261 297.12261 38330263 38330263 4.2755182 4.2755182 Loop time of 1.653 on 1 procs for 1000 steps with 4000 atoms Performance: 52.269 ns/day, 0.459 hours/ns, 604.960 timesteps/s 38.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 | 1.1345 | 1.1345 | 1.1345 | 0.0 | 68.64 Neigh | 0.11082 | 0.11082 | 0.11082 | 0.0 | 6.70 Comm | 0.032628 | 0.032628 | 0.032628 | 0.0 | 1.97 Output | 3.1948e-05 | 3.1948e-05 | 3.1948e-05 | 0.0 | 0.00 Modify | 0.36256 | 0.36256 | 0.36256 | 0.0 | 21.93 Other | | 0.01242 | | | 0.75 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 1182 ave 1182 max 1182 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: 6596 ave 6596 max 6596 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 6596 Ave neighs/atom = 1.649 Neighbor list builds = 34 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 = 292.710448009633, Press = 71.6385298488353 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 10.64 | 10.64 | 10.64 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 32000 152.59792 152.59792 -0.98812673 -0.98812673 297.12261 297.12261 38330263 38330263 4.2755182 4.2755182 33000 145.91698 145.91698 -0.96662342 -0.96662342 284.15629 284.15629 44982586 44982586 3.4848659 3.4848659 Loop time of 1.85845 on 1 procs for 1000 steps with 4000 atoms Performance: 46.490 ns/day, 0.516 hours/ns, 538.084 timesteps/s 33.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 | 0.98445 | 0.98445 | 0.98445 | 0.0 | 52.97 Neigh | 0.13257 | 0.13257 | 0.13257 | 0.0 | 7.13 Comm | 0.032312 | 0.032312 | 0.032312 | 0.0 | 1.74 Output | 3.3855e-05 | 3.3855e-05 | 3.3855e-05 | 0.0 | 0.00 Modify | 0.69656 | 0.69656 | 0.69656 | 0.0 | 37.48 Other | | 0.01252 | | | 0.67 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 1106 ave 1106 max 1106 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: 5642 ave 5642 max 5642 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 5642 Ave neighs/atom = 1.4105 Neighbor list builds = 36 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 = 292.703290933245, Press = 69.2272514690588 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 10.7 | 10.7 | 10.7 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 33000 145.91698 145.91698 -0.96662342 -0.96662342 284.15629 284.15629 44982586 44982586 3.4848659 3.4848659 34000 150.32496 150.32496 -0.72798043 -0.72798043 292.22216 292.22216 52749207 52749207 3.0581389 3.0581389 Loop time of 1.47023 on 1 procs for 1000 steps with 4000 atoms Performance: 58.766 ns/day, 0.408 hours/ns, 680.167 timesteps/s 40.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 | 0.99828 | 0.99828 | 0.99828 | 0.0 | 67.90 Neigh | 0.071773 | 0.071773 | 0.071773 | 0.0 | 4.88 Comm | 0.052768 | 0.052768 | 0.052768 | 0.0 | 3.59 Output | 0.020074 | 0.020074 | 0.020074 | 0.0 | 1.37 Modify | 0.31491 | 0.31491 | 0.31491 | 0.0 | 21.42 Other | | 0.01243 | | | 0.85 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 1054 ave 1054 max 1054 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: 4796 ave 4796 max 4796 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 4796 Ave neighs/atom = 1.199 Neighbor list builds = 36 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 = 292.68961239742, Press = 66.9618818534338 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 10.79 | 10.79 | 10.79 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 34000 150.32496 150.32496 -0.72798043 -0.72798043 292.22216 292.22216 52749207 52749207 3.0581389 3.0581389 35000 150.74682 150.74682 -0.74276576 -0.74276576 293.06687 293.06687 61863539 61863539 2.6025468 2.6025468 Loop time of 1.29137 on 1 procs for 1000 steps with 4000 atoms Performance: 66.906 ns/day, 0.359 hours/ns, 774.373 timesteps/s 43.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 | 0.80393 | 0.80393 | 0.80393 | 0.0 | 62.25 Neigh | 0.072072 | 0.072072 | 0.072072 | 0.0 | 5.58 Comm | 0.051489 | 0.051489 | 0.051489 | 0.0 | 3.99 Output | 2.5034e-05 | 2.5034e-05 | 2.5034e-05 | 0.0 | 0.00 Modify | 0.35173 | 0.35173 | 0.35173 | 0.0 | 27.24 Other | | 0.01212 | | | 0.94 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 1009 ave 1009 max 1009 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: 4074 ave 4074 max 4074 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 4074 Ave neighs/atom = 1.0185 Neighbor list builds = 37 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 = 292.696824451531, Press = 64.8310436709102 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 10.9 | 10.9 | 10.9 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 35000 150.74682 150.74682 -0.74276576 -0.74276576 293.06687 293.06687 61863539 61863539 2.6025468 2.6025468 36000 151.51952 151.51952 -0.65704267 -0.65704267 294.39588 294.39588 72542088 72542088 2.2310153 2.2310153 Loop time of 1.23246 on 1 procs for 1000 steps with 4000 atoms Performance: 70.104 ns/day, 0.342 hours/ns, 811.385 timesteps/s 43.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 | 0.646 | 0.646 | 0.646 | 0.0 | 52.42 Neigh | 0.1532 | 0.1532 | 0.1532 | 0.0 | 12.43 Comm | 0.010828 | 0.010828 | 0.010828 | 0.0 | 0.88 Output | 2.5988e-05 | 2.5988e-05 | 2.5988e-05 | 0.0 | 0.00 Modify | 0.41058 | 0.41058 | 0.41058 | 0.0 | 33.31 Other | | 0.01183 | | | 0.96 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 945 ave 945 max 945 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: 3488 ave 3488 max 3488 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 3488 Ave neighs/atom = 0.872 Neighbor list builds = 39 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 = 292.715616030007, Press = 62.8240064206078 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 10.97 | 10.97 | 10.97 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 36000 151.51952 151.51952 -0.65704267 -0.65704267 294.39588 294.39588 72542088 72542088 2.2310153 2.2310153 37000 153.28091 153.28091 -0.59200883 -0.59200883 297.6776 297.6776 85027199 85027199 1.9210469 1.9210469 Loop time of 1.0732 on 1 procs for 1000 steps with 4000 atoms Performance: 80.507 ns/day, 0.298 hours/ns, 931.792 timesteps/s 50.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 | 0.59696 | 0.59696 | 0.59696 | 0.0 | 55.62 Neigh | 0.17776 | 0.17776 | 0.17776 | 0.0 | 16.56 Comm | 0.012944 | 0.012944 | 0.012944 | 0.0 | 1.21 Output | 3.3855e-05 | 3.3855e-05 | 3.3855e-05 | 0.0 | 0.00 Modify | 0.27357 | 0.27357 | 0.27357 | 0.0 | 25.49 Other | | 0.01193 | | | 1.11 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 907 ave 907 max 907 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: 2964 ave 2964 max 2964 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 2964 Ave neighs/atom = 0.741 Neighbor list builds = 41 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 = 292.731106242147, Press = 60.9309033927206 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 11.1 | 11.1 | 11.1 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 37000 153.28091 153.28091 -0.59200883 -0.59200883 297.6776 297.6776 85027199 85027199 1.9210469 1.9210469 38000 148.9823 148.9823 -0.50534566 -0.50534566 289.19399 289.19399 99637778 99637778 1.5999978 1.5999978 Loop time of 1.19753 on 1 procs for 1000 steps with 4000 atoms Performance: 72.149 ns/day, 0.333 hours/ns, 835.052 timesteps/s 41.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 | 0.54452 | 0.54452 | 0.54452 | 0.0 | 45.47 Neigh | 0.13978 | 0.13978 | 0.13978 | 0.0 | 11.67 Comm | 0.050394 | 0.050394 | 0.050394 | 0.0 | 4.21 Output | 3.2187e-05 | 3.2187e-05 | 3.2187e-05 | 0.0 | 0.00 Modify | 0.43131 | 0.43131 | 0.43131 | 0.0 | 36.02 Other | | 0.0315 | | | 2.63 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 849 ave 849 max 849 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: 2590 ave 2590 max 2590 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 2590 Ave neighs/atom = 0.6475 Neighbor list builds = 43 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 = 292.732561656499, Press = 59.1430861932817 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 11.24 | 11.24 | 11.24 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 38000 148.9823 148.9823 -0.50534566 -0.50534566 289.19399 289.19399 99637778 99637778 1.5999978 1.5999978 39000 150.88669 150.88669 -0.40948082 -0.40948082 292.6927 292.6927 1.1670863e+08 1.1670863e+08 1.3819945 1.3819945 Loop time of 1.15852 on 1 procs for 1000 steps with 4000 atoms Performance: 74.578 ns/day, 0.322 hours/ns, 863.169 timesteps/s 43.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 | 0.4748 | 0.4748 | 0.4748 | 0.0 | 40.98 Neigh | 0.13142 | 0.13142 | 0.13142 | 0.0 | 11.34 Comm | 0.010167 | 0.010167 | 0.010167 | 0.0 | 0.88 Output | 3.0994e-05 | 3.0994e-05 | 3.0994e-05 | 0.0 | 0.00 Modify | 0.51079 | 0.51079 | 0.51079 | 0.0 | 44.09 Other | | 0.03132 | | | 2.70 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 815 ave 815 max 815 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: 2280 ave 2280 max 2280 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 2280 Ave neighs/atom = 0.57 Neighbor list builds = 45 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 = 292.749403574215, Press = 57.4526090308191 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 11.44 | 11.44 | 11.44 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 39000 150.88669 150.88669 -0.40948082 -0.40948082 292.6927 292.6927 1.1670863e+08 1.1670863e+08 1.3819945 1.3819945 40000 151.83616 151.83616 -0.31909168 -0.31909168 294.35465 294.35465 1.3670872e+08 1.3670872e+08 1.1909166 1.1909166 Loop time of 1.09583 on 1 procs for 1000 steps with 4000 atoms Performance: 78.844 ns/day, 0.304 hours/ns, 912.547 timesteps/s 45.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 | 0.55416 | 0.55416 | 0.55416 | 0.0 | 50.57 Neigh | 0.18879 | 0.18879 | 0.18879 | 0.0 | 17.23 Comm | 0.010257 | 0.010257 | 0.010257 | 0.0 | 0.94 Output | 4.7922e-05 | 4.7922e-05 | 4.7922e-05 | 0.0 | 0.00 Modify | 0.33134 | 0.33134 | 0.33134 | 0.0 | 30.24 Other | | 0.01124 | | | 1.03 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 780 ave 780 max 780 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: 1886 ave 1886 max 1886 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1886 Ave neighs/atom = 0.4715 Neighbor list builds = 48 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 = 292.756323879988, Press = 55.8523078324736 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 11.61 | 11.61 | 11.61 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 40000 151.83616 151.83616 -0.31909168 -0.31909168 294.35465 294.35465 1.3670872e+08 1.3670872e+08 1.1909166 1.1909166 41000 150.27029 150.27029 -0.25117306 -0.25117306 291.19397 291.19397 1.6009058e+08 1.6009058e+08 1.0008973 1.0008973 Loop time of 1.2042 on 1 procs for 1000 steps with 4000 atoms Performance: 71.749 ns/day, 0.335 hours/ns, 830.424 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 | 0.59758 | 0.59758 | 0.59758 | 0.0 | 49.62 Neigh | 0.17426 | 0.17426 | 0.17426 | 0.0 | 14.47 Comm | 0.030001 | 0.030001 | 0.030001 | 0.0 | 2.49 Output | 3.4094e-05 | 3.4094e-05 | 3.4094e-05 | 0.0 | 0.00 Modify | 0.39137 | 0.39137 | 0.39137 | 0.0 | 32.50 Other | | 0.01096 | | | 0.91 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 722 ave 722 max 722 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: 1602 ave 1602 max 1602 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1602 Ave neighs/atom = 0.4005 Neighbor list builds = 50 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" jump SELF unstable print "ERROR: System volume ${V_metal} A^3 has become larger than ${V0_metal_times1000} A^3. Aborting calculation." ERROR: System volume 160090582.596892 A^3 has become larger than 144579877.647162 A^3. Aborting calculation. Total wall time: 0:07:31