# 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.24417295455933*${_u_distance} variable latticeconst_converted equal 5.24417295455933*1 lattice fcc ${latticeconst_converted} lattice fcc 5.24417295455933 Lattice spacing in x,y,z = 5.24417 5.24417 5.24417 region simbox block 0 10 0 10 0 10 units lattice create_box 1 simbox Created orthogonal box = (0 0 0) to (52.4417 52.4417 52.4417) 1 by 1 by 1 MPI processor grid create_atoms 1 box Created 4000 atoms create_atoms CPU = 0.000475883 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_1958HighCutoff_Ar__MO_242741380554_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 144221.835764993 variable V0_metal equal ${V0}/(${_u_distance}*${_u_distance}*${_u_distance}) variable V0_metal equal 144221.835764993/(${_u_distance}*${_u_distance}*${_u_distance}) variable V0_metal equal 144221.835764993/(1*${_u_distance}*${_u_distance}) variable V0_metal equal 144221.835764993/(1*1*${_u_distance}) variable V0_metal equal 144221.835764993/(1*1*1) variable V0_metal_times1000 equal ${V0_metal}*1000 variable V0_metal_times1000 equal 144221.835764993*1000 print "Initial system volume: ${V0_metal} Angstroms^3" Initial system volume: 144221.835764993 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 = 21.9 ghost atom cutoff = 21.9 binsize = 10.95, bins = 5 5 5 1 neighbor lists, perpetual/occasional/extra = 1 0 0 (1) pair kim, perpetual attributes: full, newton off, cut 21.9 pair build: full/bin/atomonly stencil: full/bin/3d bin: standard Per MPI rank memory allocation (min/avg/max) = 24.97 | 24.97 | 24.97 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 0 -202.86614 -202.86614 -354.39869 -354.39869 293.15 293.15 144221.84 144221.84 1122.2608 1122.2608 1000 -58.787244 -58.787244 -199.42137 -199.42137 272.06625 272.06625 199960.39 199960.39 1825.5383 1825.5383 Loop time of 257.361 on 1 procs for 1000 steps with 4000 atoms Performance: 0.336 ns/day, 71.489 hours/ns, 3.886 timesteps/s 36.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 | 251.97 | 251.97 | 251.97 | 0.0 | 97.90 Neigh | 4.4276 | 4.4276 | 4.4276 | 0.0 | 1.72 Comm | 0.33215 | 0.33215 | 0.33215 | 0.0 | 0.13 Output | 4.6015e-05 | 4.6015e-05 | 4.6015e-05 | 0.0 | 0.00 Modify | 0.56693 | 0.56693 | 0.56693 | 0.0 | 0.22 Other | | 0.06551 | | | 0.03 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 17544 ave 17544 max 17544 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: 3.56594e+06 ave 3.56594e+06 max 3.56594e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 3565938 Ave neighs/atom = 891.485 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) = 24.97 | 24.97 | 24.97 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 1000 -58.787244 -58.787244 -199.42137 -199.42137 272.06625 272.06625 199960.39 199960.39 1825.5383 1825.5383 2000 0.53345302 0.53345302 -151.05406 -151.05406 293.25633 293.25633 264393.54 264393.54 863.48012 863.48012 Loop time of 179.548 on 1 procs for 1000 steps with 4000 atoms Performance: 0.481 ns/day, 49.874 hours/ns, 5.570 timesteps/s 37.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 | 175.43 | 175.43 | 175.43 | 0.0 | 97.71 Neigh | 3.5156 | 3.5156 | 3.5156 | 0.0 | 1.96 Comm | 0.30067 | 0.30067 | 0.30067 | 0.0 | 0.17 Output | 4.3869e-05 | 4.3869e-05 | 4.3869e-05 | 0.0 | 0.00 Modify | 0.25628 | 0.25628 | 0.25628 | 0.0 | 0.14 Other | | 0.04386 | | | 0.02 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 15294 ave 15294 max 15294 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: 2.69568e+06 ave 2.69568e+06 max 2.69568e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 2695680 Ave neighs/atom = 673.92 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) = 24.97 | 24.97 | 24.97 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 2000 0.53345302 0.53345302 -151.05406 -151.05406 293.25633 293.25633 264393.54 264393.54 863.48012 863.48012 3000 31.972581 31.972581 -122.13641 -122.13641 298.13429 298.13429 325547.5 325547.5 558.34583 558.34583 Loop time of 133.449 on 1 procs for 1000 steps with 4000 atoms Performance: 0.647 ns/day, 37.069 hours/ns, 7.493 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 | 130.5 | 130.5 | 130.5 | 0.0 | 97.79 Neigh | 2.2976 | 2.2976 | 2.2976 | 0.0 | 1.72 Comm | 0.20128 | 0.20128 | 0.20128 | 0.0 | 0.15 Output | 3.5048e-05 | 3.5048e-05 | 3.5048e-05 | 0.0 | 0.00 Modify | 0.36636 | 0.36636 | 0.36636 | 0.0 | 0.27 Other | | 0.08296 | | | 0.06 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 13739 ave 13739 max 13739 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: 2.1751e+06 ave 2.1751e+06 max 2.1751e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 2175096 Ave neighs/atom = 543.774 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) = 24.97 | 24.97 | 24.97 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 3000 31.972581 31.972581 -122.13641 -122.13641 298.13429 298.13429 325547.5 325547.5 558.34583 558.34583 4000 50.288696 50.288696 -102.04777 -102.04777 294.70523 294.70523 390146.63 390146.63 416.63823 416.63823 Loop time of 103.646 on 1 procs for 1000 steps with 4000 atoms Performance: 0.834 ns/day, 28.791 hours/ns, 9.648 timesteps/s 41.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 | 101.11 | 101.11 | 101.11 | 0.0 | 97.55 Neigh | 1.7231 | 1.7231 | 1.7231 | 0.0 | 1.66 Comm | 0.14389 | 0.14389 | 0.14389 | 0.0 | 0.14 Output | 4.0054e-05 | 4.0054e-05 | 4.0054e-05 | 0.0 | 0.00 Modify | 0.56535 | 0.56535 | 0.56535 | 0.0 | 0.55 Other | | 0.1025 | | | 0.10 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 12559 ave 12559 max 12559 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.80967e+06 ave 1.80967e+06 max 1.80967e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1809666 Ave neighs/atom = 452.416 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) = 24.97 | 24.97 | 24.97 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 4000 50.288696 50.288696 -102.04777 -102.04777 294.70523 294.70523 390146.63 390146.63 416.63823 416.63823 5000 66.116014 66.116014 -86.964922 -86.964922 296.14545 296.14545 462962.04 462962.04 307.79752 307.79752 Loop time of 78.8153 on 1 procs for 1000 steps with 4000 atoms Performance: 1.096 ns/day, 21.893 hours/ns, 12.688 timesteps/s 46.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 | 76.715 | 76.715 | 76.715 | 0.0 | 97.33 Neigh | 1.5159 | 1.5159 | 1.5159 | 0.0 | 1.92 Comm | 0.15768 | 0.15768 | 0.15768 | 0.0 | 0.20 Output | 5.1975e-05 | 5.1975e-05 | 5.1975e-05 | 0.0 | 0.00 Modify | 0.37555 | 0.37555 | 0.37555 | 0.0 | 0.48 Other | | 0.05164 | | | 0.07 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 11576 ave 11576 max 11576 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.52475e+06 ave 1.52475e+06 max 1.52475e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1524746 Ave neighs/atom = 381.187 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 = 293.632567322091, Press = 307.992175769396 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 24.98 | 24.98 | 24.98 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 5000 66.116014 66.116014 -86.964922 -86.964922 296.14545 296.14545 462962.04 462962.04 307.79752 307.79752 6000 78.039675 78.039675 -74.01226 -74.01226 294.15478 294.15478 547115.48 547115.48 269.62301 269.62301 Loop time of 72.0782 on 1 procs for 1000 steps with 4000 atoms Performance: 1.199 ns/day, 20.022 hours/ns, 13.874 timesteps/s 42.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 | 70.38 | 70.38 | 70.38 | 0.0 | 97.64 Neigh | 1.1857 | 1.1857 | 1.1857 | 0.0 | 1.64 Comm | 0.23163 | 0.23163 | 0.23163 | 0.0 | 0.32 Output | 3.314e-05 | 3.314e-05 | 3.314e-05 | 0.0 | 0.00 Modify | 0.23982 | 0.23982 | 0.23982 | 0.0 | 0.33 Other | | 0.04114 | | | 0.06 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10655 ave 10655 max 10655 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.29426e+06 ave 1.29426e+06 max 1.29426e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1294262 Ave neighs/atom = 323.565 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 = 293.24718601002, Press = 292.926427247023 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 24.98 | 24.98 | 24.98 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 6000 78.039675 78.039675 -74.01226 -74.01226 294.15478 294.15478 547115.48 547115.48 269.62301 269.62301 7000 89.877491 89.877491 -61.960831 -61.960831 293.74153 293.74153 645628.66 645628.66 235.49899 235.49899 Loop time of 59.466 on 1 procs for 1000 steps with 4000 atoms Performance: 1.453 ns/day, 16.518 hours/ns, 16.816 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 | 57.633 | 57.633 | 57.633 | 0.0 | 96.92 Neigh | 1.2858 | 1.2858 | 1.2858 | 0.0 | 2.16 Comm | 0.16681 | 0.16681 | 0.16681 | 0.0 | 0.28 Output | 3.5048e-05 | 3.5048e-05 | 3.5048e-05 | 0.0 | 0.00 Modify | 0.33918 | 0.33918 | 0.33918 | 0.0 | 0.57 Other | | 0.04074 | | | 0.07 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 9844 ave 9844 max 9844 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.08908e+06 ave 1.08908e+06 max 1.08908e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1089078 Ave neighs/atom = 272.269 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.254320676256, Press = 270.77656785781 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 24.98 | 24.98 | 24.98 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 7000 89.877491 89.877491 -61.960831 -61.960831 293.74153 293.74153 645628.66 645628.66 235.49899 235.49899 8000 95.860349 95.860349 -53.67217 -53.67217 289.2808 289.2808 760380.46 760380.46 189.69747 189.69747 Loop time of 48.8871 on 1 procs for 1000 steps with 4000 atoms Performance: 1.767 ns/day, 13.580 hours/ns, 20.455 timesteps/s 45.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 | 47.378 | 47.378 | 47.378 | 0.0 | 96.91 Neigh | 0.92659 | 0.92659 | 0.92659 | 0.0 | 1.90 Comm | 0.10282 | 0.10282 | 0.10282 | 0.0 | 0.21 Output | 2.5988e-05 | 2.5988e-05 | 2.5988e-05 | 0.0 | 0.00 Modify | 0.38901 | 0.38901 | 0.38901 | 0.0 | 0.80 Other | | 0.09014 | | | 0.18 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 9154 ave 9154 max 9154 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: 929704 ave 929704 max 929704 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 929704 Ave neighs/atom = 232.426 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.160470675571, Press = 249.833897019416 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 24.98 | 24.98 | 24.98 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 8000 95.860349 95.860349 -53.67217 -53.67217 289.2808 289.2808 760380.46 760380.46 189.69747 189.69747 9000 106.92688 106.92688 -46.169357 -46.169357 296.17506 296.17506 894611.42 894611.42 156.38166 156.38166 Loop time of 42.2777 on 1 procs for 1000 steps with 4000 atoms Performance: 2.044 ns/day, 11.744 hours/ns, 23.653 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 | 40.839 | 40.839 | 40.839 | 0.0 | 96.60 Neigh | 0.90146 | 0.90146 | 0.90146 | 0.0 | 2.13 Comm | 0.13716 | 0.13716 | 0.13716 | 0.0 | 0.32 Output | 3.314e-05 | 3.314e-05 | 3.314e-05 | 0.0 | 0.00 Modify | 0.3601 | 0.3601 | 0.3601 | 0.0 | 0.85 Other | | 0.03987 | | | 0.09 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8550 ave 8550 max 8550 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: 792704 ave 792704 max 792704 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 792704 Ave neighs/atom = 198.176 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.161959008595, Press = 231.468610285786 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 24.98 | 24.98 | 24.98 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 9000 106.92688 106.92688 -46.169357 -46.169357 296.17506 296.17506 894611.42 894611.42 156.38166 156.38166 10000 112.14626 112.14626 -38.675724 -38.675724 291.77535 291.77535 1054175.5 1054175.5 139.40716 139.40716 Loop time of 37.4798 on 1 procs for 1000 steps with 4000 atoms Performance: 2.305 ns/day, 10.411 hours/ns, 26.681 timesteps/s 42.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 | 36.059 | 36.059 | 36.059 | 0.0 | 96.21 Neigh | 0.78668 | 0.78668 | 0.78668 | 0.0 | 2.10 Comm | 0.1849 | 0.1849 | 0.1849 | 0.0 | 0.49 Output | 3.314e-05 | 3.314e-05 | 3.314e-05 | 0.0 | 0.00 Modify | 0.34939 | 0.34939 | 0.34939 | 0.0 | 0.93 Other | | 0.09949 | | | 0.27 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 7964 ave 7964 max 7964 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: 674280 ave 674280 max 674280 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 674280 Ave neighs/atom = 168.57 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.185581066694, Press = 215.940190836223 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 24.98 | 24.98 | 24.98 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 10000 112.14626 112.14626 -38.675724 -38.675724 291.77535 291.77535 1054175.5 1054175.5 139.40716 139.40716 11000 115.93965 115.93965 -32.762786 -32.762786 287.67495 287.67495 1238786 1238786 119.46924 119.46924 Loop time of 31.2902 on 1 procs for 1000 steps with 4000 atoms Performance: 2.761 ns/day, 8.692 hours/ns, 31.959 timesteps/s 43.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 | 29.803 | 29.803 | 29.803 | 0.0 | 95.25 Neigh | 0.81631 | 0.81631 | 0.81631 | 0.0 | 2.61 Comm | 0.17207 | 0.17207 | 0.17207 | 0.0 | 0.55 Output | 3.5048e-05 | 3.5048e-05 | 3.5048e-05 | 0.0 | 0.00 Modify | 0.42028 | 0.42028 | 0.42028 | 0.0 | 1.34 Other | | 0.07896 | | | 0.25 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 7346 ave 7346 max 7346 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: 569822 ave 569822 max 569822 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 569822 Ave neighs/atom = 142.456 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.300654395901, Press = 201.343531287801 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 24.98 | 24.98 | 24.98 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 11000 115.93965 115.93965 -32.762786 -32.762786 287.67495 287.67495 1238786 1238786 119.46924 119.46924 12000 118.50851 118.50851 -28.43613 -28.43613 284.27437 284.27437 1457107 1457107 98.949533 98.949533 Loop time of 27.9849 on 1 procs for 1000 steps with 4000 atoms Performance: 3.087 ns/day, 7.774 hours/ns, 35.734 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 | 26.794 | 26.794 | 26.794 | 0.0 | 95.74 Neigh | 0.64755 | 0.64755 | 0.64755 | 0.0 | 2.31 Comm | 0.10842 | 0.10842 | 0.10842 | 0.0 | 0.39 Output | 3.3855e-05 | 3.3855e-05 | 3.3855e-05 | 0.0 | 0.00 Modify | 0.39636 | 0.39636 | 0.39636 | 0.0 | 1.42 Other | | 0.0387 | | | 0.14 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6872 ave 6872 max 6872 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: 487932 ave 487932 max 487932 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 487932 Ave neighs/atom = 121.983 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.155992618166, Press = 188.426853552663 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 24.98 | 24.98 | 24.98 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 12000 118.50851 118.50851 -28.43613 -28.43613 284.27437 284.27437 1457107 1457107 98.949533 98.949533 13000 126.28961 126.28961 -24.476726 -24.476726 291.6677 291.6677 1713611.3 1713611.3 86.820178 86.820178 Loop time of 23.1591 on 1 procs for 1000 steps with 4000 atoms Performance: 3.731 ns/day, 6.433 hours/ns, 43.180 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 | 22.024 | 22.024 | 22.024 | 0.0 | 95.10 Neigh | 0.67819 | 0.67819 | 0.67819 | 0.0 | 2.93 Comm | 0.12613 | 0.12613 | 0.12613 | 0.0 | 0.54 Output | 3.2902e-05 | 3.2902e-05 | 3.2902e-05 | 0.0 | 0.00 Modify | 0.27192 | 0.27192 | 0.27192 | 0.0 | 1.17 Other | | 0.05844 | | | 0.25 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6381 ave 6381 max 6381 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: 414224 ave 414224 max 414224 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 414224 Ave neighs/atom = 103.556 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 = 293.075136554539, Press = 176.738732404522 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 24.98 | 24.98 | 24.98 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 13000 126.28961 126.28961 -24.476726 -24.476726 291.6677 291.6677 1713611.3 1713611.3 86.820178 86.820178 14000 130.51077 130.51077 -20.402217 -20.402217 291.95142 291.95142 2018064.4 2018064.4 75.079308 75.079308 Loop time of 19.401 on 1 procs for 1000 steps with 4000 atoms Performance: 4.453 ns/day, 5.389 hours/ns, 51.544 timesteps/s 44.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 | 18.269 | 18.269 | 18.269 | 0.0 | 94.17 Neigh | 0.55157 | 0.55157 | 0.55157 | 0.0 | 2.84 Comm | 0.14328 | 0.14328 | 0.14328 | 0.0 | 0.74 Output | 3.5048e-05 | 3.5048e-05 | 3.5048e-05 | 0.0 | 0.00 Modify | 0.35869 | 0.35869 | 0.35869 | 0.0 | 1.85 Other | | 0.07793 | | | 0.40 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5983 ave 5983 max 5983 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: 352074 ave 352074 max 352074 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 352074 Ave neighs/atom = 88.0185 Neighbor list builds = 19 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.038051350347, Press = 166.2643436824 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 24.99 | 24.99 | 24.99 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 14000 130.51077 130.51077 -20.402217 -20.402217 291.95142 291.95142 2018064.4 2018064.4 75.079308 75.079308 15000 133.29814 133.29814 -18.02362 -18.02362 292.7422 292.7422 2376781.4 2376781.4 63.659088 63.659088 Loop time of 17.3494 on 1 procs for 1000 steps with 4000 atoms Performance: 4.980 ns/day, 4.819 hours/ns, 57.639 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 | 16.485 | 16.485 | 16.485 | 0.0 | 95.02 Neigh | 0.46414 | 0.46414 | 0.46414 | 0.0 | 2.68 Comm | 0.059993 | 0.059993 | 0.059993 | 0.0 | 0.35 Output | 3.2902e-05 | 3.2902e-05 | 3.2902e-05 | 0.0 | 0.00 Modify | 0.32289 | 0.32289 | 0.32289 | 0.0 | 1.86 Other | | 0.01758 | | | 0.10 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5529 ave 5529 max 5529 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: 297448 ave 297448 max 297448 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 297448 Ave neighs/atom = 74.362 Neighbor list builds = 19 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.069453304166, Press = 156.697855098814 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 24.99 | 24.99 | 24.99 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 15000 133.29814 133.29814 -18.02362 -18.02362 292.7422 292.7422 2376781.4 2376781.4 63.659088 63.659088 16000 136.97432 136.97432 -15.269342 -15.269342 294.52568 294.52568 2795781 2795781 54.77981 54.77981 Loop time of 13.7614 on 1 procs for 1000 steps with 4000 atoms Performance: 6.278 ns/day, 3.823 hours/ns, 72.667 timesteps/s 44.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 | 12.862 | 12.862 | 12.862 | 0.0 | 93.47 Neigh | 0.4983 | 0.4983 | 0.4983 | 0.0 | 3.62 Comm | 0.097914 | 0.097914 | 0.097914 | 0.0 | 0.71 Output | 3.2902e-05 | 3.2902e-05 | 3.2902e-05 | 0.0 | 0.00 Modify | 0.24562 | 0.24562 | 0.24562 | 0.0 | 1.78 Other | | 0.05729 | | | 0.42 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5165 ave 5165 max 5165 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: 253042 ave 253042 max 253042 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 253042 Ave neighs/atom = 63.2605 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 = 293.101727749398, Press = 147.890309677839 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 24.99 | 24.99 | 24.99 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 16000 136.97432 136.97432 -15.269342 -15.269342 294.52568 294.52568 2795781 2795781 54.77981 54.77981 17000 138.22686 138.22686 -13.27048 -13.27048 293.08188 293.08188 3293630.9 3293630.9 47.27418 47.27418 Loop time of 12.3342 on 1 procs for 1000 steps with 4000 atoms Performance: 7.005 ns/day, 3.426 hours/ns, 81.075 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 | 11.379 | 11.379 | 11.379 | 0.0 | 92.25 Neigh | 0.52422 | 0.52422 | 0.52422 | 0.0 | 4.25 Comm | 0.11577 | 0.11577 | 0.11577 | 0.0 | 0.94 Output | 4.8876e-05 | 4.8876e-05 | 4.8876e-05 | 0.0 | 0.00 Modify | 0.29863 | 0.29863 | 0.29863 | 0.0 | 2.42 Other | | 0.01707 | | | 0.14 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4773 ave 4773 max 4773 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: 215774 ave 215774 max 215774 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 215774 Ave neighs/atom = 53.9435 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 = 293.106127959582, Press = 139.883510112792 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 24.99 | 24.99 | 24.99 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 17000 138.22686 138.22686 -13.27048 -13.27048 293.08188 293.08188 3293630.9 3293630.9 47.27418 47.27418 18000 141.27192 141.27192 -10.870916 -10.870916 294.33064 294.33064 3879107.6 3879107.6 41.008612 41.008612 Loop time of 9.89117 on 1 procs for 1000 steps with 4000 atoms Performance: 8.735 ns/day, 2.748 hours/ns, 101.100 timesteps/s 46.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 | 9.0538 | 9.0538 | 9.0538 | 0.0 | 91.53 Neigh | 0.37392 | 0.37392 | 0.37392 | 0.0 | 3.78 Comm | 0.072565 | 0.072565 | 0.072565 | 0.0 | 0.73 Output | 3.1948e-05 | 3.1948e-05 | 3.1948e-05 | 0.0 | 0.00 Modify | 0.35447 | 0.35447 | 0.35447 | 0.0 | 3.58 Other | | 0.03639 | | | 0.37 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4476 ave 4476 max 4476 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: 183210 ave 183210 max 183210 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 183210 Ave neighs/atom = 45.8025 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 = 293.103311544371, Press = 132.527533492289 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 25 | 25 | 25 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 18000 141.27192 141.27192 -10.870916 -10.870916 294.33064 294.33064 3879107.6 3879107.6 41.008612 41.008612 19000 140.49648 140.49648 -9.8193667 -9.8193667 290.7962 290.7962 4566581.1 4566581.1 33.544724 33.544724 Loop time of 8.91152 on 1 procs for 1000 steps with 4000 atoms Performance: 9.695 ns/day, 2.475 hours/ns, 112.214 timesteps/s 45.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 | 8.2269 | 8.2269 | 8.2269 | 0.0 | 92.32 Neigh | 0.35822 | 0.35822 | 0.35822 | 0.0 | 4.02 Comm | 0.031581 | 0.031581 | 0.031581 | 0.0 | 0.35 Output | 3.1948e-05 | 3.1948e-05 | 3.1948e-05 | 0.0 | 0.00 Modify | 0.27848 | 0.27848 | 0.27848 | 0.0 | 3.12 Other | | 0.01628 | | | 0.18 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4188 ave 4188 max 4188 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: 156070 ave 156070 max 156070 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 156070 Ave neighs/atom = 39.0175 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 = 293.121165315614, Press = 125.748423720092 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 25 | 25 | 25 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 19000 140.49648 140.49648 -9.8193667 -9.8193667 290.7962 290.7962 4566581.1 4566581.1 33.544724 33.544724 20000 143.35147 143.35147 -8.3720975 -8.3720975 293.51953 293.51953 5380347.2 5380347.2 29.167168 29.167168 Loop time of 7.53226 on 1 procs for 1000 steps with 4000 atoms Performance: 11.471 ns/day, 2.092 hours/ns, 132.762 timesteps/s 46.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 | 6.7143 | 6.7143 | 6.7143 | 0.0 | 89.14 Neigh | 0.37891 | 0.37891 | 0.37891 | 0.0 | 5.03 Comm | 0.069115 | 0.069115 | 0.069115 | 0.0 | 0.92 Output | 3.2902e-05 | 3.2902e-05 | 3.2902e-05 | 0.0 | 0.00 Modify | 0.35413 | 0.35413 | 0.35413 | 0.0 | 4.70 Other | | 0.01579 | | | 0.21 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 3886 ave 3886 max 3886 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: 131796 ave 131796 max 131796 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 131796 Ave neighs/atom = 32.949 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 = 293.133282474357, Press = 119.532221472714 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 25.01 | 25.01 | 25.01 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 20000 143.35147 143.35147 -8.3720975 -8.3720975 293.51953 293.51953 5380347.2 5380347.2 29.167168 29.167168 21000 144.48671 144.48671 -7.0149984 -7.0149984 293.09034 293.09034 6332664.1 6332664.1 25.014701 25.014701 Loop time of 6.62099 on 1 procs for 1000 steps with 4000 atoms Performance: 13.049 ns/day, 1.839 hours/ns, 151.035 timesteps/s 46.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 | 5.8355 | 5.8355 | 5.8355 | 0.0 | 88.14 Neigh | 0.38673 | 0.38673 | 0.38673 | 0.0 | 5.84 Comm | 0.12796 | 0.12796 | 0.12796 | 0.0 | 1.93 Output | 3.2902e-05 | 3.2902e-05 | 3.2902e-05 | 0.0 | 0.00 Modify | 0.25501 | 0.25501 | 0.25501 | 0.0 | 3.85 Other | | 0.01581 | | | 0.24 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 3622 ave 3622 max 3622 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: 111286 ave 111286 max 111286 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 111286 Ave neighs/atom = 27.8215 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 = 293.113156688864, Press = 113.782879233587 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 25.01 | 25.01 | 25.01 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 21000 144.48671 144.48671 -7.0149984 -7.0149984 293.09034 293.09034 6332664.1 6332664.1 25.014701 25.014701 22000 145.39064 145.39064 -5.8531018 -5.8531018 292.59127 292.59127 7457254.7 7457254.7 21.130139 21.130139 Loop time of 5.69642 on 1 procs for 1000 steps with 4000 atoms Performance: 15.167 ns/day, 1.582 hours/ns, 175.549 timesteps/s 47.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 | 5.1015 | 5.1015 | 5.1015 | 0.0 | 89.56 Neigh | 0.25142 | 0.25142 | 0.25142 | 0.0 | 4.41 Comm | 0.050375 | 0.050375 | 0.050375 | 0.0 | 0.88 Output | 5.4836e-05 | 5.4836e-05 | 5.4836e-05 | 0.0 | 0.00 Modify | 0.27771 | 0.27771 | 0.27771 | 0.0 | 4.88 Other | | 0.01539 | | | 0.27 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 3424 ave 3424 max 3424 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: 94756 ave 94756 max 94756 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 94756 Ave neighs/atom = 23.689 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 = 293.118784199117, Press = 108.480320159595 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 25.01 | 25.01 | 25.01 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 22000 145.39064 145.39064 -5.8531018 -5.8531018 292.59127 292.59127 7457254.7 7457254.7 21.130139 21.130139 23000 149.06725 149.06725 -5.089994 -5.089994 298.22764 298.22764 8777201.2 8777201.2 18.491154 18.491154 Loop time of 5.10895 on 1 procs for 1000 steps with 4000 atoms Performance: 16.912 ns/day, 1.419 hours/ns, 195.735 timesteps/s 47.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 | 4.318 | 4.318 | 4.318 | 0.0 | 84.52 Neigh | 0.29317 | 0.29317 | 0.29317 | 0.0 | 5.74 Comm | 0.045308 | 0.045308 | 0.045308 | 0.0 | 0.89 Output | 3.0994e-05 | 3.0994e-05 | 3.0994e-05 | 0.0 | 0.00 Modify | 0.42333 | 0.42333 | 0.42333 | 0.0 | 8.29 Other | | 0.02907 | | | 0.57 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 3193 ave 3193 max 3193 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: 80390 ave 80390 max 80390 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 80390 Ave neighs/atom = 20.0975 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 = 293.124731188292, Press = 103.571526654388 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 25.02 | 25.02 | 25.02 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 23000 149.06725 149.06725 -5.089994 -5.089994 298.22764 298.22764 8777201.2 8777201.2 18.491154 18.491154 24000 148.70307 148.70307 -4.472409 -4.472409 296.32834 296.32834 10322077 10322077 15.641269 15.641269 Loop time of 4.32335 on 1 procs for 1000 steps with 4000 atoms Performance: 19.984 ns/day, 1.201 hours/ns, 231.302 timesteps/s 49.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 | 3.6878 | 3.6878 | 3.6878 | 0.0 | 85.30 Neigh | 0.2897 | 0.2897 | 0.2897 | 0.0 | 6.70 Comm | 0.024145 | 0.024145 | 0.024145 | 0.0 | 0.56 Output | 3.2187e-05 | 3.2187e-05 | 3.2187e-05 | 0.0 | 0.00 Modify | 0.28658 | 0.28658 | 0.28658 | 0.0 | 6.63 Other | | 0.03511 | | | 0.81 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 2970 ave 2970 max 2970 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: 68186 ave 68186 max 68186 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 68186 Ave neighs/atom = 17.0465 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 = 293.09131195564, Press = 99.0192580373656 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 25.03 | 25.03 | 25.03 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 24000 148.70307 148.70307 -4.472409 -4.472409 296.32834 296.32834 10322077 10322077 15.641269 15.641269 25000 145.4767 145.4767 -3.8369282 -3.8369282 288.85734 288.85734 12144906 12144906 13.035729 13.035729 Loop time of 3.85554 on 1 procs for 1000 steps with 4000 atoms Performance: 22.409 ns/day, 1.071 hours/ns, 259.367 timesteps/s 49.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 | 3.1639 | 3.1639 | 3.1639 | 0.0 | 82.06 Neigh | 0.2794 | 0.2794 | 0.2794 | 0.0 | 7.25 Comm | 0.063302 | 0.063302 | 0.063302 | 0.0 | 1.64 Output | 2.5034e-05 | 2.5034e-05 | 2.5034e-05 | 0.0 | 0.00 Modify | 0.31681 | 0.31681 | 0.31681 | 0.0 | 8.22 Other | | 0.03206 | | | 0.83 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 2775 ave 2775 max 2775 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: 57610 ave 57610 max 57610 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 57610 Ave neighs/atom = 14.4025 Neighbor list builds = 28 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.071716331225, Press = 94.8026194221142 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 25.03 | 25.03 | 25.03 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 25000 145.4767 145.4767 -3.8369282 -3.8369282 288.85734 288.85734 12144906 12144906 13.035729 13.035729 26000 147.1399 147.1399 -3.2251618 -3.2251618 290.8914 290.8914 14271159 14271159 11.081136 11.081136 Loop time of 3.35273 on 1 procs for 1000 steps with 4000 atoms Performance: 25.770 ns/day, 0.931 hours/ns, 298.265 timesteps/s 49.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 | 2.7304 | 2.7304 | 2.7304 | 0.0 | 81.44 Neigh | 0.26732 | 0.26732 | 0.26732 | 0.0 | 7.97 Comm | 0.041513 | 0.041513 | 0.041513 | 0.0 | 1.24 Output | 3.314e-05 | 3.314e-05 | 3.314e-05 | 0.0 | 0.00 Modify | 0.28437 | 0.28437 | 0.28437 | 0.0 | 8.48 Other | | 0.02913 | | | 0.87 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 2587 ave 2587 max 2587 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: 49074 ave 49074 max 49074 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 49074 Ave neighs/atom = 12.2685 Neighbor list builds = 28 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.96545384408, Press = 90.881261262124 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 25.05 | 25.05 | 25.05 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 26000 147.1399 147.1399 -3.2251618 -3.2251618 290.8914 290.8914 14271159 14271159 11.081136 11.081136 27000 149.15775 149.15775 -2.4606967 -2.4606967 293.31617 293.31617 16772542 16772542 9.6675118 9.6675118 Loop time of 2.99095 on 1 procs for 1000 steps with 4000 atoms Performance: 28.887 ns/day, 0.831 hours/ns, 334.342 timesteps/s 49.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 | 2.3098 | 2.3098 | 2.3098 | 0.0 | 77.23 Neigh | 0.28819 | 0.28819 | 0.28819 | 0.0 | 9.64 Comm | 0.040007 | 0.040007 | 0.040007 | 0.0 | 1.34 Output | 3.314e-05 | 3.314e-05 | 3.314e-05 | 0.0 | 0.00 Modify | 0.33941 | 0.33941 | 0.33941 | 0.0 | 11.35 Other | | 0.01347 | | | 0.45 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 2436 ave 2436 max 2436 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: 41966 ave 41966 max 41966 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 41966 Ave neighs/atom = 10.4915 Neighbor list builds = 30 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.927466244147, Press = 87.2357235514151 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 25.06 | 25.06 | 25.06 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 27000 149.15775 149.15775 -2.4606967 -2.4606967 293.31617 293.31617 16772542 16772542 9.6675118 9.6675118 28000 148.48056 148.48056 -2.3814354 -2.3814354 291.85275 291.85275 19720841 19720841 8.093674 8.093674 Loop time of 2.69462 on 1 procs for 1000 steps with 4000 atoms Performance: 32.064 ns/day, 0.749 hours/ns, 371.110 timesteps/s 49.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 | 2.2094 | 2.2094 | 2.2094 | 0.0 | 81.99 Neigh | 0.12333 | 0.12333 | 0.12333 | 0.0 | 4.58 Comm | 0.037988 | 0.037988 | 0.037988 | 0.0 | 1.41 Output | 2.5034e-05 | 2.5034e-05 | 2.5034e-05 | 0.0 | 0.00 Modify | 0.31048 | 0.31048 | 0.31048 | 0.0 | 11.52 Other | | 0.01343 | | | 0.50 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 2293 ave 2293 max 2293 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: 35968 ave 35968 max 35968 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 35968 Ave neighs/atom = 8.992 Neighbor list builds = 30 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.953820801621, Press = 83.8416661820573 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 25.07 | 25.07 | 25.07 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 28000 148.48056 148.48056 -2.3814354 -2.3814354 291.85275 291.85275 19720841 19720841 8.093674 8.093674 29000 149.444 149.444 -1.9376906 -1.9376906 292.85814 292.85814 23171882 23171882 6.9018531 6.9018531 Loop time of 2.56112 on 1 procs for 1000 steps with 4000 atoms Performance: 33.735 ns/day, 0.711 hours/ns, 390.454 timesteps/s 49.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 | 1.9979 | 1.9979 | 1.9979 | 0.0 | 78.01 Neigh | 0.17655 | 0.17655 | 0.17655 | 0.0 | 6.89 Comm | 0.039264 | 0.039264 | 0.039264 | 0.0 | 1.53 Output | 2.5034e-05 | 2.5034e-05 | 2.5034e-05 | 0.0 | 0.00 Modify | 0.31372 | 0.31372 | 0.31372 | 0.0 | 12.25 Other | | 0.03368 | | | 1.32 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 2156 ave 2156 max 2156 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: 30932 ave 30932 max 30932 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 30932 Ave neighs/atom = 7.733 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.963869770811, Press = 80.6744633960863 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 25.09 | 25.09 | 25.09 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 29000 149.444 149.444 -1.9376906 -1.9376906 292.85814 292.85814 23171882 23171882 6.9018531 6.9018531 30000 149.16561 149.16561 -1.6369724 -1.6369724 291.73783 291.73783 27215554 27215554 5.8618643 5.8618643 Loop time of 2.33969 on 1 procs for 1000 steps with 4000 atoms Performance: 36.928 ns/day, 0.650 hours/ns, 427.406 timesteps/s 48.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 | 1.8491 | 1.8491 | 1.8491 | 0.0 | 79.03 Neigh | 0.13987 | 0.13987 | 0.13987 | 0.0 | 5.98 Comm | 0.033961 | 0.033961 | 0.033961 | 0.0 | 1.45 Output | 3.2187e-05 | 3.2187e-05 | 3.2187e-05 | 0.0 | 0.00 Modify | 0.26302 | 0.26302 | 0.26302 | 0.0 | 11.24 Other | | 0.05368 | | | 2.29 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 2004 ave 2004 max 2004 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: 26286 ave 26286 max 26286 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 26286 Ave neighs/atom = 6.5715 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.956503007791, Press = 77.7148236293485 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 25.1 | 25.1 | 25.1 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 30000 149.16561 149.16561 -1.6369724 -1.6369724 291.73783 291.73783 27215554 27215554 5.8618643 5.8618643 31000 149.49233 149.49233 -1.3075442 -1.3075442 291.73258 291.73258 31968250 31968250 5.0259602 5.0259602 Loop time of 2.23995 on 1 procs for 1000 steps with 4000 atoms Performance: 38.572 ns/day, 0.622 hours/ns, 446.438 timesteps/s 49.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.7063 | 1.7063 | 1.7063 | 0.0 | 76.18 Neigh | 0.137 | 0.137 | 0.137 | 0.0 | 6.12 Comm | 0.017637 | 0.017637 | 0.017637 | 0.0 | 0.79 Output | 3.1948e-05 | 3.1948e-05 | 3.1948e-05 | 0.0 | 0.00 Modify | 0.36514 | 0.36514 | 0.36514 | 0.0 | 16.30 Other | | 0.01386 | | | 0.62 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 1895 ave 1895 max 1895 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: 22296 ave 22296 max 22296 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 22296 Ave neighs/atom = 5.574 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.954689189648, Press = 74.9467133792508 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 25.12 | 25.12 | 25.12 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 31000 149.49233 149.49233 -1.3075442 -1.3075442 291.73258 291.73258 31968250 31968250 5.0259602 5.0259602 32000 149.85673 149.85673 -1.2529257 -1.2529257 292.33187 292.33187 37547010 37547010 4.2540675 4.2540675 Loop time of 2.00522 on 1 procs for 1000 steps with 4000 atoms Performance: 43.087 ns/day, 0.557 hours/ns, 498.697 timesteps/s 49.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 | 1.5233 | 1.5233 | 1.5233 | 0.0 | 75.97 Neigh | 0.17827 | 0.17827 | 0.17827 | 0.0 | 8.89 Comm | 0.016543 | 0.016543 | 0.016543 | 0.0 | 0.83 Output | 3.2187e-05 | 3.2187e-05 | 3.2187e-05 | 0.0 | 0.00 Modify | 0.2741 | 0.2741 | 0.2741 | 0.0 | 13.67 Other | | 0.013 | | | 0.65 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 1814 ave 1814 max 1814 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: 19170 ave 19170 max 19170 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 19170 Ave neighs/atom = 4.7925 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.960651154924, Press = 72.3533429810689 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 25.15 | 25.15 | 25.15 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 32000 149.85673 149.85673 -1.2529257 -1.2529257 292.33187 292.33187 37547010 37547010 4.2540675 4.2540675 33000 152.13954 152.13954 -1.07702 -1.07702 296.40782 296.40782 44085079 44085079 3.6960543 3.6960543 Loop time of 1.81122 on 1 procs for 1000 steps with 4000 atoms Performance: 47.703 ns/day, 0.503 hours/ns, 552.115 timesteps/s 50.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 | 1.2117 | 1.2117 | 1.2117 | 0.0 | 66.90 Neigh | 0.12956 | 0.12956 | 0.12956 | 0.0 | 7.15 Comm | 0.053146 | 0.053146 | 0.053146 | 0.0 | 2.93 Output | 3.3855e-05 | 3.3855e-05 | 3.3855e-05 | 0.0 | 0.00 Modify | 0.40399 | 0.40399 | 0.40399 | 0.0 | 22.31 Other | | 0.01279 | | | 0.71 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 1713 ave 1713 max 1713 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: 16396 ave 16396 max 16396 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 16396 Ave neighs/atom = 4.099 Neighbor list builds = 35 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.01220867022, Press = 69.9200008792473 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 25.18 | 25.18 | 25.18 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 33000 152.13954 152.13954 -1.07702 -1.07702 296.40782 296.40782 44085079 44085079 3.6960543 3.6960543 34000 149.28589 149.28589 -0.92733037 -0.92733037 290.59766 290.59766 51731207 51731207 3.0989065 3.0989065 Loop time of 1.69466 on 1 procs for 1000 steps with 4000 atoms Performance: 50.984 ns/day, 0.471 hours/ns, 590.090 timesteps/s 50.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 | 1.1735 | 1.1735 | 1.1735 | 0.0 | 69.25 Neigh | 0.13037 | 0.13037 | 0.13037 | 0.0 | 7.69 Comm | 0.065649 | 0.065649 | 0.065649 | 0.0 | 3.87 Output | 3.1948e-05 | 3.1948e-05 | 3.1948e-05 | 0.0 | 0.00 Modify | 0.31235 | 0.31235 | 0.31235 | 0.0 | 18.43 Other | | 0.01274 | | | 0.75 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 1606 ave 1606 max 1606 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: 13930 ave 13930 max 13930 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 13930 Ave neighs/atom = 3.4825 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 = 293.008653640139, Press = 67.6333389446124 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 25.21 | 25.21 | 25.21 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 34000 149.28589 149.28589 -0.92733037 -0.92733037 290.59766 290.59766 51731207 51731207 3.0989065 3.0989065 35000 149.15619 149.15619 -0.70700385 -0.70700385 289.92052 289.92052 60694203 60694203 2.6332579 2.6332579 Loop time of 1.62016 on 1 procs for 1000 steps with 4000 atoms Performance: 53.328 ns/day, 0.450 hours/ns, 617.223 timesteps/s 50.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 | 1.1201 | 1.1201 | 1.1201 | 0.0 | 69.13 Neigh | 0.10745 | 0.10745 | 0.10745 | 0.0 | 6.63 Comm | 0.035091 | 0.035091 | 0.035091 | 0.0 | 2.17 Output | 2.5988e-05 | 2.5988e-05 | 2.5988e-05 | 0.0 | 0.00 Modify | 0.32475 | 0.32475 | 0.32475 | 0.0 | 20.04 Other | | 0.03275 | | | 2.02 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 1519 ave 1519 max 1519 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: 11862 ave 11862 max 11862 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 11862 Ave neighs/atom = 2.9655 Neighbor list builds = 38 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.029397915635, Press = 65.4822378948597 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 25.23 | 25.23 | 25.23 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 35000 149.15619 149.15619 -0.70700385 -0.70700385 289.92052 289.92052 60694203 60694203 2.6332579 2.6332579 36000 150.66446 150.66446 -0.69419208 -0.69419208 292.81357 292.81357 71147141 71147141 2.2618155 2.2618155 Loop time of 1.27677 on 1 procs for 1000 steps with 4000 atoms Performance: 67.671 ns/day, 0.355 hours/ns, 783.226 timesteps/s 57.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.91745 | 0.91745 | 0.91745 | 0.0 | 71.86 Neigh | 0.10353 | 0.10353 | 0.10353 | 0.0 | 8.11 Comm | 0.014105 | 0.014105 | 0.014105 | 0.0 | 1.10 Output | 3.1948e-05 | 3.1948e-05 | 3.1948e-05 | 0.0 | 0.00 Modify | 0.20954 | 0.20954 | 0.20954 | 0.0 | 16.41 Other | | 0.03212 | | | 2.52 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 1444 ave 1444 max 1444 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: 10058 ave 10058 max 10058 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 10058 Ave neighs/atom = 2.5145 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 = 293.00090950898, Press = 63.4554598547043 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 25.27 | 25.27 | 25.27 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 36000 150.66446 150.66446 -0.69419208 -0.69419208 292.81357 292.81357 71147141 71147141 2.2618155 2.2618155 37000 151.03074 151.03074 -0.5316328 -0.5316328 293.20769 293.20769 83427694 83427694 1.9443133 1.9443133 Loop time of 1.0319 on 1 procs for 1000 steps with 4000 atoms Performance: 83.729 ns/day, 0.287 hours/ns, 969.090 timesteps/s 68.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.689 | 0.689 | 0.689 | 0.0 | 66.77 Neigh | 0.083884 | 0.083884 | 0.083884 | 0.0 | 8.13 Comm | 0.014082 | 0.014082 | 0.014082 | 0.0 | 1.36 Output | 2.5988e-05 | 2.5988e-05 | 2.5988e-05 | 0.0 | 0.00 Modify | 0.23284 | 0.23284 | 0.23284 | 0.0 | 22.56 Other | | 0.01206 | | | 1.17 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 1377 ave 1377 max 1377 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: 8556 ave 8556 max 8556 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 8556 Ave neighs/atom = 2.139 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.994474127043, Press = 61.5440845019608 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 25.32 | 25.32 | 25.32 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 37000 151.03074 151.03074 -0.5316328 -0.5316328 293.20769 293.20769 83427694 83427694 1.9443133 1.9443133 38000 154.07872 154.07872 -0.45143676 -0.45143676 298.94906 298.94906 97823732 97823732 1.6846481 1.6846481 Loop time of 1.35749 on 1 procs for 1000 steps with 4000 atoms Performance: 63.647 ns/day, 0.377 hours/ns, 736.653 timesteps/s 49.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.87357 | 0.87357 | 0.87357 | 0.0 | 64.35 Neigh | 0.18543 | 0.18543 | 0.18543 | 0.0 | 13.66 Comm | 0.033867 | 0.033867 | 0.033867 | 0.0 | 2.49 Output | 3.0994e-05 | 3.0994e-05 | 3.0994e-05 | 0.0 | 0.00 Modify | 0.25256 | 0.25256 | 0.25256 | 0.0 | 18.60 Other | | 0.01204 | | | 0.89 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 1285 ave 1285 max 1285 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: 7290 ave 7290 max 7290 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 7290 Ave neighs/atom = 1.8225 Neighbor list builds = 44 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.017159566191, Press = 59.7390214890848 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 25.39 | 25.39 | 25.39 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 38000 154.07872 154.07872 -0.45143676 -0.45143676 298.94906 298.94906 97823732 97823732 1.6846481 1.6846481 39000 150.84594 150.84594 -0.3815158 -0.3815158 292.55976 292.55976 1.1461839e+08 1.1461839e+08 1.4042272 1.4042272 Loop time of 1.28919 on 1 procs for 1000 steps with 4000 atoms Performance: 67.019 ns/day, 0.358 hours/ns, 775.682 timesteps/s 49.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.78445 | 0.78445 | 0.78445 | 0.0 | 60.85 Neigh | 0.12628 | 0.12628 | 0.12628 | 0.0 | 9.80 Comm | 0.013358 | 0.013358 | 0.013358 | 0.0 | 1.04 Output | 2.5988e-05 | 2.5988e-05 | 2.5988e-05 | 0.0 | 0.00 Modify | 0.33314 | 0.33314 | 0.33314 | 0.0 | 25.84 Other | | 0.03193 | | | 2.48 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 1199 ave 1199 max 1199 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: 6180 ave 6180 max 6180 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 6180 Ave neighs/atom = 1.545 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 = 293.014137850482, Press = 58.0318703339809 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 25.44 | 25.44 | 25.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.84594 150.84594 -0.3815158 -0.3815158 292.55976 292.55976 1.1461839e+08 1.1461839e+08 1.4042272 1.4042272 40000 148.97844 148.97844 -0.30935685 -0.30935685 288.80738 288.80738 1.3429484e+08 1.3429484e+08 1.1839772 1.1839772 Loop time of 1.25538 on 1 procs for 1000 steps with 4000 atoms Performance: 68.824 ns/day, 0.349 hours/ns, 796.574 timesteps/s 47.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.77007 | 0.77007 | 0.77007 | 0.0 | 61.34 Neigh | 0.12765 | 0.12765 | 0.12765 | 0.0 | 10.17 Comm | 0.073052 | 0.073052 | 0.073052 | 0.0 | 5.82 Output | 3.314e-05 | 3.314e-05 | 3.314e-05 | 0.0 | 0.00 Modify | 0.27294 | 0.27294 | 0.27294 | 0.0 | 21.74 Other | | 0.01163 | | | 0.93 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 1139 ave 1139 max 1139 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: 5196 ave 5196 max 5196 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 5196 Ave neighs/atom = 1.299 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 = 293.029976853916, Press = 56.4157365299629 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 25.5 | 25.5 | 25.5 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 40000 148.97844 148.97844 -0.30935685 -0.30935685 288.80738 288.80738 1.3429484e+08 1.3429484e+08 1.1839772 1.1839772 41000 145.92417 145.92417 -0.23017667 -0.23017667 282.74549 282.74549 1.5718934e+08 1.5718934e+08 0.99393543 0.99393543 Loop time of 1.22371 on 1 procs for 1000 steps with 4000 atoms Performance: 70.605 ns/day, 0.340 hours/ns, 817.190 timesteps/s 49.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.75723 | 0.75723 | 0.75723 | 0.0 | 61.88 Neigh | 0.16963 | 0.16963 | 0.16963 | 0.0 | 13.86 Comm | 0.032419 | 0.032419 | 0.032419 | 0.0 | 2.65 Output | 3.314e-05 | 3.314e-05 | 3.314e-05 | 0.0 | 0.00 Modify | 0.23299 | 0.23299 | 0.23299 | 0.0 | 19.04 Other | | 0.0314 | | | 2.57 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 1078 ave 1078 max 1078 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: 4384 ave 4384 max 4384 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 4384 Ave neighs/atom = 1.096 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 157189339.807127 A^3 has become larger than 144221835.764993 A^3. Aborting calculation. Total wall time: 0:20:43