# 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 4.427487522363663*${_u_distance} variable latticeconst_converted equal 4.427487522363663*1 lattice bcc ${latticeconst_converted} lattice bcc 4.42748752236366 Lattice spacing in x,y,z = 4.42749 4.42749 4.42749 region simbox block 0 10 0 10 0 10 units lattice create_box 1 simbox Created orthogonal box = (0 0 0) to (44.2749 44.2749 44.2749) 1 by 1 by 1 MPI processor grid create_atoms 1 box Created 2000 atoms create_atoms CPU = 0.000320911 secs variable mass_converted equal 22.98977*${_u_mass} variable mass_converted equal 22.98977*1 # specify which KIM Model to use pair_style kim Morse_Shifted_GirifalcoWeizer_1959LowCutoff_Na__MO_707981543254_003 WARNING: KIM Model does not provide `partialParticleVirial'; virial per atom will be zero (src/KIM/pair_kim.cpp:1089) pair_coeff * * Na mass 1 ${mass_converted} mass 1 22.98977 # initial volume variable v equal vol # assign formula variable V0 equal ${v} # evaluate initial value variable V0 equal 86790.4695107517 variable V0_metal equal ${V0}/(${_u_distance}*${_u_distance}*${_u_distance}) variable V0_metal equal 86790.4695107517/(${_u_distance}*${_u_distance}*${_u_distance}) variable V0_metal equal 86790.4695107517/(1*${_u_distance}*${_u_distance}) variable V0_metal equal 86790.4695107517/(1*1*${_u_distance}) variable V0_metal equal 86790.4695107517/(1*1*1) variable V0_metal_times1000 equal ${V0_metal}*1000 variable V0_metal_times1000 equal 86790.4695107517*1000 print "Initial system volume: ${V0_metal} Angstroms^3" Initial system volume: 86790.4695107517 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 333.15*${_u_temperature} variable temp_converted equal 333.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 333.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 333.15 ${temp_converted} ${Tdamp_converted} iso ${press_converted} ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 333.15 333.15 ${Tdamp_converted} iso ${press_converted} ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 333.15 333.15 0.1 iso ${press_converted} ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 333.15 333.15 0.1 iso 0 ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 333.15 333.15 0.1 iso 0 0 ${Pdamp_converted} fix ensemble all npt temp 333.15 333.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 "333.15 - 0.2" variable T_up equal "333.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 = 16.313 ghost atom cutoff = 16.313 binsize = 8.1565, bins = 6 6 6 1 neighbor lists, perpetual/occasional/extra = 1 0 0 (1) pair kim, perpetual attributes: full, newton off, cut 16.313 pair build: full/bin/atomonly stencil: full/bin/3d bin: standard Per MPI rank memory allocation (min/avg/max) = 6.658 | 6.658 | 6.658 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 0 -1914.8038 -1914.8038 -2000.8867 -2000.8867 333.15 333.15 86790.47 86790.47 1059.4103 1059.4103 1000 -1813.8322 -1813.8322 -1904.5393 -1904.5393 351.04581 351.04581 91048.043 91048.043 117.93311 117.93311 Loop time of 53.0719 on 1 procs for 1000 steps with 2000 atoms Performance: 1.628 ns/day, 14.742 hours/ns, 18.842 timesteps/s 35.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 | 51.798 | 51.798 | 51.798 | 0.0 | 97.60 Neigh | 0.7836 | 0.7836 | 0.7836 | 0.0 | 1.48 Comm | 0.13322 | 0.13322 | 0.13322 | 0.0 | 0.25 Output | 3.8862e-05 | 3.8862e-05 | 3.8862e-05 | 0.0 | 0.00 Modify | 0.3069 | 0.3069 | 0.3069 | 0.0 | 0.58 Other | | 0.05065 | | | 0.10 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8626 ave 8626 max 8626 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: 782850 ave 782850 max 782850 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 782850 Ave neighs/atom = 391.425 Neighbor list builds = 13 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) = 6.662 | 6.662 | 6.662 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 1000 -1813.8322 -1813.8322 -1904.5393 -1904.5393 351.04581 351.04581 91048.043 91048.043 117.93311 117.93311 2000 -1823.2798 -1823.2798 -1910.0245 -1910.0245 335.71093 335.71093 90632.589 90632.589 191.78799 191.78799 Loop time of 50.8876 on 1 procs for 1000 steps with 2000 atoms Performance: 1.698 ns/day, 14.135 hours/ns, 19.651 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 | 49.745 | 49.745 | 49.745 | 0.0 | 97.75 Neigh | 0.72924 | 0.72924 | 0.72924 | 0.0 | 1.43 Comm | 0.13271 | 0.13271 | 0.13271 | 0.0 | 0.26 Output | 7.4148e-05 | 7.4148e-05 | 7.4148e-05 | 0.0 | 0.00 Modify | 0.26685 | 0.26685 | 0.26685 | 0.0 | 0.52 Other | | 0.01373 | | | 0.03 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8699 ave 8699 max 8699 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: 787426 ave 787426 max 787426 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 787426 Ave neighs/atom = 393.713 Neighbor list builds = 14 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) = 6.662 | 6.662 | 6.662 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 2000 -1823.2798 -1823.2798 -1910.0245 -1910.0245 335.71093 335.71093 90632.589 90632.589 191.78799 191.78799 3000 -1821.5467 -1821.5467 -1908.0093 -1908.0093 334.61921 334.61921 90899.814 90899.814 90.541538 90.541538 Loop time of 49.7856 on 1 procs for 1000 steps with 2000 atoms Performance: 1.735 ns/day, 13.829 hours/ns, 20.086 timesteps/s 37.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 | 48.537 | 48.537 | 48.537 | 0.0 | 97.49 Neigh | 0.8555 | 0.8555 | 0.8555 | 0.0 | 1.72 Comm | 0.17274 | 0.17274 | 0.17274 | 0.0 | 0.35 Output | 3.6955e-05 | 3.6955e-05 | 3.6955e-05 | 0.0 | 0.00 Modify | 0.16695 | 0.16695 | 0.16695 | 0.0 | 0.34 Other | | 0.05372 | | | 0.11 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8617 ave 8617 max 8617 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: 784894 ave 784894 max 784894 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 784894 Ave neighs/atom = 392.447 Neighbor list builds = 14 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) = 6.662 | 6.662 | 6.662 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 3000 -1821.5467 -1821.5467 -1908.0093 -1908.0093 334.61921 334.61921 90899.814 90899.814 90.541538 90.541538 4000 -1820.7685 -1820.7685 -1907.7367 -1907.7367 336.57576 336.57576 91033.318 91033.318 22.905557 22.905557 Loop time of 49.2398 on 1 procs for 1000 steps with 2000 atoms Performance: 1.755 ns/day, 13.678 hours/ns, 20.309 timesteps/s 37.8% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 47.995 | 47.995 | 47.995 | 0.0 | 97.47 Neigh | 0.80171 | 0.80171 | 0.80171 | 0.0 | 1.63 Comm | 0.17264 | 0.17264 | 0.17264 | 0.0 | 0.35 Output | 3.8862e-05 | 3.8862e-05 | 3.8862e-05 | 0.0 | 0.00 Modify | 0.23638 | 0.23638 | 0.23638 | 0.0 | 0.48 Other | | 0.03376 | | | 0.07 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8618 ave 8618 max 8618 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: 782540 ave 782540 max 782540 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 782540 Ave neighs/atom = 391.27 Neighbor list builds = 14 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) = 6.662 | 6.662 | 6.662 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 4000 -1820.7685 -1820.7685 -1907.7367 -1907.7367 336.57576 336.57576 91033.318 91033.318 22.905557 22.905557 5000 -1822.1445 -1822.1445 -1907.4141 -1907.4141 330.00224 330.00224 90907.893 90907.893 81.74302 81.74302 Loop time of 48.0331 on 1 procs for 1000 steps with 2000 atoms Performance: 1.799 ns/day, 13.343 hours/ns, 20.819 timesteps/s 38.7% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 46.842 | 46.842 | 46.842 | 0.0 | 97.52 Neigh | 0.76796 | 0.76796 | 0.76796 | 0.0 | 1.60 Comm | 0.13222 | 0.13222 | 0.13222 | 0.0 | 0.28 Output | 2.6941e-05 | 2.6941e-05 | 2.6941e-05 | 0.0 | 0.00 Modify | 0.23714 | 0.23714 | 0.23714 | 0.0 | 0.49 Other | | 0.05396 | | | 0.11 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8679 ave 8679 max 8679 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: 784172 ave 784172 max 784172 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 784172 Ave neighs/atom = 392.086 Neighbor list builds = 13 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 = 330.8500937639, Press = -5.76832052781659 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.662 | 6.662 | 6.662 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 5000 -1822.1445 -1822.1445 -1907.4141 -1907.4141 330.00224 330.00224 90907.893 90907.893 81.74302 81.74302 6000 -1815.3457 -1815.3457 -1903.9993 -1903.9993 343.09861 343.09861 91295.332 91295.332 -28.278787 -28.278787 Loop time of 47.2745 on 1 procs for 1000 steps with 2000 atoms Performance: 1.828 ns/day, 13.132 hours/ns, 21.153 timesteps/s 39.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 | 46.297 | 46.297 | 46.297 | 0.0 | 97.93 Neigh | 0.63815 | 0.63815 | 0.63815 | 0.0 | 1.35 Comm | 0.09936 | 0.09936 | 0.09936 | 0.0 | 0.21 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.18978 | 0.18978 | 0.18978 | 0.0 | 0.40 Other | | 0.05005 | | | 0.11 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8640 ave 8640 max 8640 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: 778324 ave 778324 max 778324 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 778324 Ave neighs/atom = 389.162 Neighbor list builds = 13 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 = 334.975431103791, Press = -14.1317805679616 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.662 | 6.662 | 6.662 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 6000 -1815.3457 -1815.3457 -1903.9993 -1903.9993 343.09861 343.09861 91295.332 91295.332 -28.278787 -28.278787 7000 -1820.1779 -1820.1779 -1905.3449 -1905.3449 329.60522 329.60522 91515.747 91515.747 -211.9756 -211.9756 Loop time of 48.4601 on 1 procs for 1000 steps with 2000 atoms Performance: 1.783 ns/day, 13.461 hours/ns, 20.636 timesteps/s 38.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 | 47.33 | 47.33 | 47.33 | 0.0 | 97.67 Neigh | 0.75239 | 0.75239 | 0.75239 | 0.0 | 1.55 Comm | 0.15359 | 0.15359 | 0.15359 | 0.0 | 0.32 Output | 2.718e-05 | 2.718e-05 | 2.718e-05 | 0.0 | 0.00 Modify | 0.21083 | 0.21083 | 0.21083 | 0.0 | 0.44 Other | | 0.01367 | | | 0.03 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8630 ave 8630 max 8630 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: 775574 ave 775574 max 775574 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 775574 Ave neighs/atom = 387.787 Neighbor list builds = 14 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 = 334.546958171278, Press = -9.35402885617987 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.662 | 6.662 | 6.662 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 7000 -1820.1779 -1820.1779 -1905.3449 -1905.3449 329.60522 329.60522 91515.747 91515.747 -211.9756 -211.9756 8000 -1822.3793 -1822.3793 -1907.5669 -1907.5669 329.68494 329.68494 91609.509 91609.509 -297.35893 -297.35893 Loop time of 48.2035 on 1 procs for 1000 steps with 2000 atoms Performance: 1.792 ns/day, 13.390 hours/ns, 20.745 timesteps/s 38.5% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 47.029 | 47.029 | 47.029 | 0.0 | 97.56 Neigh | 0.87866 | 0.87866 | 0.87866 | 0.0 | 1.82 Comm | 0.092262 | 0.092262 | 0.092262 | 0.0 | 0.19 Output | 2.8133e-05 | 2.8133e-05 | 2.8133e-05 | 0.0 | 0.00 Modify | 0.16959 | 0.16959 | 0.16959 | 0.0 | 0.35 Other | | 0.0337 | | | 0.07 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8623 ave 8623 max 8623 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: 777802 ave 777802 max 777802 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 777802 Ave neighs/atom = 388.901 Neighbor list builds = 14 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 = 334.136608609546, Press = 2.17602804745539 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.662 | 6.662 | 6.662 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 8000 -1822.3793 -1822.3793 -1907.5669 -1907.5669 329.68494 329.68494 91609.509 91609.509 -297.35893 -297.35893 9000 -1822.3883 -1822.3883 -1908.0173 -1908.0173 331.39307 331.39307 91163.005 91163.005 -68.095785 -68.095785 Loop time of 48.4157 on 1 procs for 1000 steps with 2000 atoms Performance: 1.785 ns/day, 13.449 hours/ns, 20.654 timesteps/s 38.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 | 47.369 | 47.369 | 47.369 | 0.0 | 97.84 Neigh | 0.69053 | 0.69053 | 0.69053 | 0.0 | 1.43 Comm | 0.071842 | 0.071842 | 0.071842 | 0.0 | 0.15 Output | 2.1935e-05 | 2.1935e-05 | 2.1935e-05 | 0.0 | 0.00 Modify | 0.25036 | 0.25036 | 0.25036 | 0.0 | 0.52 Other | | 0.03371 | | | 0.07 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8679 ave 8679 max 8679 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: 784076 ave 784076 max 784076 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 784076 Ave neighs/atom = 392.038 Neighbor list builds = 14 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 = 333.920079402142, Press = 4.64255457221858 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.662 | 6.662 | 6.662 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 9000 -1822.3883 -1822.3883 -1908.0173 -1908.0173 331.39307 331.39307 91163.005 91163.005 -68.095785 -68.095785 10000 -1821.6512 -1821.6512 -1907.2455 -1907.2455 331.25884 331.25884 91191.487 91191.487 -70.241767 -70.241767 Loop time of 48.7417 on 1 procs for 1000 steps with 2000 atoms Performance: 1.773 ns/day, 13.539 hours/ns, 20.516 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 | 47.596 | 47.596 | 47.596 | 0.0 | 97.65 Neigh | 0.7493 | 0.7493 | 0.7493 | 0.0 | 1.54 Comm | 0.13214 | 0.13214 | 0.13214 | 0.0 | 0.27 Output | 2.1935e-05 | 2.1935e-05 | 2.1935e-05 | 0.0 | 0.00 Modify | 0.23001 | 0.23001 | 0.23001 | 0.0 | 0.47 Other | | 0.03374 | | | 0.07 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8643 ave 8643 max 8643 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: 781516 ave 781516 max 781516 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 781516 Ave neighs/atom = 390.758 Neighbor list builds = 13 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 = 333.852153409575, Press = 0.993363356674612 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.662 | 6.662 | 6.662 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 10000 -1821.6512 -1821.6512 -1907.2455 -1907.2455 331.25884 331.25884 91191.487 91191.487 -70.241767 -70.241767 11000 -1823.9719 -1823.9719 -1908.5814 -1908.5814 327.44757 327.44757 91060.619 91060.619 -32.875065 -32.875065 Loop time of 47.6905 on 1 procs for 1000 steps with 2000 atoms Performance: 1.812 ns/day, 13.247 hours/ns, 20.969 timesteps/s 39.1% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 46.544 | 46.544 | 46.544 | 0.0 | 97.60 Neigh | 0.73869 | 0.73869 | 0.73869 | 0.0 | 1.55 Comm | 0.17447 | 0.17447 | 0.17447 | 0.0 | 0.37 Output | 2.8849e-05 | 2.8849e-05 | 2.8849e-05 | 0.0 | 0.00 Modify | 0.2199 | 0.2199 | 0.2199 | 0.0 | 0.46 Other | | 0.0134 | | | 0.03 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8660 ave 8660 max 8660 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: 783176 ave 783176 max 783176 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 783176 Ave neighs/atom = 391.588 Neighbor list builds = 14 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 = 333.530462114174, Press = 1.65982222339994 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.662 | 6.662 | 6.662 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 11000 -1823.9719 -1823.9719 -1908.5814 -1908.5814 327.44757 327.44757 91060.619 91060.619 -32.875065 -32.875065 12000 -1822.9997 -1822.9997 -1909.5641 -1909.5641 335.01332 335.01332 90846.946 90846.946 94.337345 94.337345 Loop time of 47.4493 on 1 procs for 1000 steps with 2000 atoms Performance: 1.821 ns/day, 13.180 hours/ns, 21.075 timesteps/s 39.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 | 46.246 | 46.246 | 46.246 | 0.0 | 97.46 Neigh | 0.70671 | 0.70671 | 0.70671 | 0.0 | 1.49 Comm | 0.19221 | 0.19221 | 0.19221 | 0.0 | 0.41 Output | 2.6941e-05 | 2.6941e-05 | 2.6941e-05 | 0.0 | 0.00 Modify | 0.23036 | 0.23036 | 0.23036 | 0.0 | 0.49 Other | | 0.07367 | | | 0.16 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8655 ave 8655 max 8655 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: 786530 ave 786530 max 786530 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 786530 Ave neighs/atom = 393.265 Neighbor list builds = 13 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 = 333.774773569416, Press = 2.8037122110096 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.662 | 6.662 | 6.662 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 12000 -1822.9997 -1822.9997 -1909.5641 -1909.5641 335.01332 335.01332 90846.946 90846.946 94.337345 94.337345 13000 -1819.6793 -1819.6793 -1905.1694 -1905.1694 330.85546 330.85546 90945.749 90945.749 99.236182 99.236182 Loop time of 49.8596 on 1 procs for 1000 steps with 2000 atoms Performance: 1.733 ns/day, 13.850 hours/ns, 20.056 timesteps/s 37.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 | 48.707 | 48.707 | 48.707 | 0.0 | 97.69 Neigh | 0.75694 | 0.75694 | 0.75694 | 0.0 | 1.52 Comm | 0.17234 | 0.17234 | 0.17234 | 0.0 | 0.35 Output | 3.2902e-05 | 3.2902e-05 | 3.2902e-05 | 0.0 | 0.00 Modify | 0.18997 | 0.18997 | 0.18997 | 0.0 | 0.38 Other | | 0.03357 | | | 0.07 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8677 ave 8677 max 8677 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: 785668 ave 785668 max 785668 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 785668 Ave neighs/atom = 392.834 Neighbor list builds = 13 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 = 333.767546857638, Press = 2.26900826507603 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.662 | 6.662 | 6.662 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 13000 -1819.6793 -1819.6793 -1905.1694 -1905.1694 330.85546 330.85546 90945.749 90945.749 99.236182 99.236182 14000 -1819.2151 -1819.2151 -1906.252 -1906.252 336.84206 336.84206 90813.675 90813.675 155.60029 155.60029 Loop time of 48.3173 on 1 procs for 1000 steps with 2000 atoms Performance: 1.788 ns/day, 13.421 hours/ns, 20.697 timesteps/s 38.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 | 47.263 | 47.263 | 47.263 | 0.0 | 97.82 Neigh | 0.77735 | 0.77735 | 0.77735 | 0.0 | 1.61 Comm | 0.092668 | 0.092668 | 0.092668 | 0.0 | 0.19 Output | 2.718e-05 | 2.718e-05 | 2.718e-05 | 0.0 | 0.00 Modify | 0.17037 | 0.17037 | 0.17037 | 0.0 | 0.35 Other | | 0.01366 | | | 0.03 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8669 ave 8669 max 8669 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: 786156 ave 786156 max 786156 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 786156 Ave neighs/atom = 393.078 Neighbor list builds = 14 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 = 333.897300164041, Press = 1.53513551850823 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.662 | 6.662 | 6.662 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 14000 -1819.2151 -1819.2151 -1906.252 -1906.252 336.84206 336.84206 90813.675 90813.675 155.60029 155.60029 15000 -1818.5767 -1818.5767 -1907.255 -1907.255 343.19447 343.19447 90653.642 90653.642 268.56056 268.56056 Loop time of 48.5779 on 1 procs for 1000 steps with 2000 atoms Performance: 1.779 ns/day, 13.494 hours/ns, 20.585 timesteps/s 38.2% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 47.39 | 47.39 | 47.39 | 0.0 | 97.55 Neigh | 0.76683 | 0.76683 | 0.76683 | 0.0 | 1.58 Comm | 0.1788 | 0.1788 | 0.1788 | 0.0 | 0.37 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.16898 | 0.16898 | 0.16898 | 0.0 | 0.35 Other | | 0.07372 | | | 0.15 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8648 ave 8648 max 8648 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: 784600 ave 784600 max 784600 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 784600 Ave neighs/atom = 392.3 Neighbor list builds = 13 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 = 333.722861139036, Press = -0.0786894739402872 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.662 | 6.662 | 6.662 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 15000 -1818.5767 -1818.5767 -1907.255 -1907.255 343.19447 343.19447 90653.642 90653.642 268.56056 268.56056 16000 -1821.3182 -1821.3182 -1905.9226 -1905.9226 327.42757 327.42757 90439.338 90439.338 347.7395 347.7395 Loop time of 47.1694 on 1 procs for 1000 steps with 2000 atoms Performance: 1.832 ns/day, 13.103 hours/ns, 21.200 timesteps/s 39.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 | 45.999 | 45.999 | 45.999 | 0.0 | 97.52 Neigh | 0.83553 | 0.83553 | 0.83553 | 0.0 | 1.77 Comm | 0.11246 | 0.11246 | 0.11246 | 0.0 | 0.24 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.18907 | 0.18907 | 0.18907 | 0.0 | 0.40 Other | | 0.03367 | | | 0.07 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8672 ave 8672 max 8672 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: 787544 ave 787544 max 787544 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 787544 Ave neighs/atom = 393.772 Neighbor list builds = 14 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 = 333.603588318858, Press = -0.198792841285593 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.662 | 6.662 | 6.662 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 16000 -1821.3182 -1821.3182 -1905.9226 -1905.9226 327.42757 327.42757 90439.338 90439.338 347.7395 347.7395 17000 -1826.3964 -1826.3964 -1908.7836 -1908.7836 318.84684 318.84684 90697.581 90697.581 135.93112 135.93112 Loop time of 46.0137 on 1 procs for 1000 steps with 2000 atoms Performance: 1.878 ns/day, 12.782 hours/ns, 21.733 timesteps/s 40.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 | 44.879 | 44.879 | 44.879 | 0.0 | 97.53 Neigh | 0.73722 | 0.73722 | 0.73722 | 0.0 | 1.60 Comm | 0.11384 | 0.11384 | 0.11384 | 0.0 | 0.25 Output | 2.2888e-05 | 2.2888e-05 | 2.2888e-05 | 0.0 | 0.00 Modify | 0.24976 | 0.24976 | 0.24976 | 0.0 | 0.54 Other | | 0.03342 | | | 0.07 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8658 ave 8658 max 8658 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: 784116 ave 784116 max 784116 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 784116 Ave neighs/atom = 392.058 Neighbor list builds = 14 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 = 333.633481626531, Press = -0.985873552793826 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.662 | 6.662 | 6.662 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 17000 -1826.3964 -1826.3964 -1908.7836 -1908.7836 318.84684 318.84684 90697.581 90697.581 135.93112 135.93112 18000 -1820.8767 -1820.8767 -1907.2162 -1907.2162 334.14311 334.14311 91170.784 91170.784 -39.0609 -39.0609 Loop time of 44.5998 on 1 procs for 1000 steps with 2000 atoms Performance: 1.937 ns/day, 12.389 hours/ns, 22.422 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 | 43.406 | 43.406 | 43.406 | 0.0 | 97.32 Neigh | 0.70508 | 0.70508 | 0.70508 | 0.0 | 1.58 Comm | 0.16164 | 0.16164 | 0.16164 | 0.0 | 0.36 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.29329 | 0.29329 | 0.29329 | 0.0 | 0.66 Other | | 0.03359 | | | 0.08 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8623 ave 8623 max 8623 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: 781354 ave 781354 max 781354 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 781354 Ave neighs/atom = 390.677 Neighbor list builds = 14 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 = 333.453368628533, Press = -0.0318892196973918 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.662 | 6.662 | 6.662 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 18000 -1820.8767 -1820.8767 -1907.2162 -1907.2162 334.14311 334.14311 91170.784 91170.784 -39.0609 -39.0609 19000 -1823.9334 -1823.9334 -1909.5454 -1909.5454 331.32722 331.32722 91104.219 91104.219 -49.521611 -49.521611 Loop time of 44.4282 on 1 procs for 1000 steps with 2000 atoms Performance: 1.945 ns/day, 12.341 hours/ns, 22.508 timesteps/s 41.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 | 43.463 | 43.463 | 43.463 | 0.0 | 97.83 Neigh | 0.64886 | 0.64886 | 0.64886 | 0.0 | 1.46 Comm | 0.071949 | 0.071949 | 0.071949 | 0.0 | 0.16 Output | 5.4836e-05 | 5.4836e-05 | 5.4836e-05 | 0.0 | 0.00 Modify | 0.23095 | 0.23095 | 0.23095 | 0.0 | 0.52 Other | | 0.01361 | | | 0.03 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8684 ave 8684 max 8684 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: 779914 ave 779914 max 779914 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 779914 Ave neighs/atom = 389.957 Neighbor list builds = 13 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 = 333.429443157586, Press = -0.682318166938255 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.662 | 6.662 | 6.662 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 19000 -1823.9334 -1823.9334 -1909.5454 -1909.5454 331.32722 331.32722 91104.219 91104.219 -49.521611 -49.521611 20000 -1819.1404 -1819.1404 -1906.4888 -1906.4888 338.0476 338.0476 91421.928 91421.928 -150.46479 -150.46479 Loop time of 44.5621 on 1 procs for 1000 steps with 2000 atoms Performance: 1.939 ns/day, 12.378 hours/ns, 22.441 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 | 43.457 | 43.457 | 43.457 | 0.0 | 97.52 Neigh | 0.72832 | 0.72832 | 0.72832 | 0.0 | 1.63 Comm | 0.1328 | 0.1328 | 0.1328 | 0.0 | 0.30 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.23074 | 0.23074 | 0.23074 | 0.0 | 0.52 Other | | 0.01353 | | | 0.03 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8638 ave 8638 max 8638 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: 779320 ave 779320 max 779320 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 779320 Ave neighs/atom = 389.66 Neighbor list builds = 14 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 = 333.391712818314, Press = 0.318400398547414 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.662 | 6.662 | 6.662 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 20000 -1819.1404 -1819.1404 -1906.4888 -1906.4888 338.0476 338.0476 91421.928 91421.928 -150.46479 -150.46479 21000 -1824.038 -1824.038 -1908.8716 -1908.8716 328.31496 328.31496 91236.574 91236.574 -124.35417 -124.35417 Loop time of 42.9762 on 1 procs for 1000 steps with 2000 atoms Performance: 2.010 ns/day, 11.938 hours/ns, 23.269 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 | 41.927 | 41.927 | 41.927 | 0.0 | 97.56 Neigh | 0.68262 | 0.68262 | 0.68262 | 0.0 | 1.59 Comm | 0.092149 | 0.092149 | 0.092149 | 0.0 | 0.21 Output | 2.6941e-05 | 2.6941e-05 | 2.6941e-05 | 0.0 | 0.00 Modify | 0.26072 | 0.26072 | 0.26072 | 0.0 | 0.61 Other | | 0.01371 | | | 0.03 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8652 ave 8652 max 8652 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: 781940 ave 781940 max 781940 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 781940 Ave neighs/atom = 390.97 Neighbor list builds = 13 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 = 333.319761203453, Press = 0.376658376521645 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.662 | 6.662 | 6.662 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 21000 -1824.038 -1824.038 -1908.8716 -1908.8716 328.31496 328.31496 91236.574 91236.574 -124.35417 -124.35417 22000 -1815.6963 -1815.6963 -1902.6392 -1902.6392 336.4781 336.4781 91845.029 91845.029 -310.19204 -310.19204 Loop time of 44.5491 on 1 procs for 1000 steps with 2000 atoms Performance: 1.939 ns/day, 12.375 hours/ns, 22.447 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 | 43.356 | 43.356 | 43.356 | 0.0 | 97.32 Neigh | 0.70306 | 0.70306 | 0.70306 | 0.0 | 1.58 Comm | 0.091935 | 0.091935 | 0.091935 | 0.0 | 0.21 Output | 5.722e-05 | 5.722e-05 | 5.722e-05 | 0.0 | 0.00 Modify | 0.36144 | 0.36144 | 0.36144 | 0.0 | 0.81 Other | | 0.03634 | | | 0.08 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8602 ave 8602 max 8602 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: 776016 ave 776016 max 776016 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 776016 Ave neighs/atom = 388.008 Neighbor list builds = 14 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 = 333.212582876845, Press = 0.58141834986149 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.662 | 6.662 | 6.662 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 22000 -1815.6963 -1815.6963 -1902.6392 -1902.6392 336.4781 336.4781 91845.029 91845.029 -310.19204 -310.19204 23000 -1821.9995 -1821.9995 -1907.5651 -1907.5651 331.14758 331.14758 91267.29 91267.29 -118.17536 -118.17536 Loop time of 41.7822 on 1 procs for 1000 steps with 2000 atoms Performance: 2.068 ns/day, 11.606 hours/ns, 23.934 timesteps/s 44.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 | 40.834 | 40.834 | 40.834 | 0.0 | 97.73 Neigh | 0.65102 | 0.65102 | 0.65102 | 0.0 | 1.56 Comm | 0.11214 | 0.11214 | 0.11214 | 0.0 | 0.27 Output | 2.8133e-05 | 2.8133e-05 | 2.8133e-05 | 0.0 | 0.00 Modify | 0.15117 | 0.15117 | 0.15117 | 0.0 | 0.36 Other | | 0.0335 | | | 0.08 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8679 ave 8679 max 8679 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: 783604 ave 783604 max 783604 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 783604 Ave neighs/atom = 391.802 Neighbor list builds = 14 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 = 333.375758886177, Press = 0.999526444894618 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.662 | 6.662 | 6.662 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 23000 -1821.9995 -1821.9995 -1907.5651 -1907.5651 331.14758 331.14758 91267.29 91267.29 -118.17536 -118.17536 24000 -1822.9206 -1822.9206 -1909.3382 -1909.3382 334.44504 334.44504 91207.733 91207.733 -107.2608 -107.2608 Loop time of 42.3733 on 1 procs for 1000 steps with 2000 atoms Performance: 2.039 ns/day, 11.770 hours/ns, 23.600 timesteps/s 44.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 | 41.32 | 41.32 | 41.32 | 0.0 | 97.51 Neigh | 0.64505 | 0.64505 | 0.64505 | 0.0 | 1.52 Comm | 0.10825 | 0.10825 | 0.10825 | 0.0 | 0.26 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.26622 | 0.26622 | 0.26622 | 0.0 | 0.63 Other | | 0.0337 | | | 0.08 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8629 ave 8629 max 8629 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: 782956 ave 782956 max 782956 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 782956 Ave neighs/atom = 391.478 Neighbor list builds = 14 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 = 333.352977620371, Press = 0.748660022054693 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.662 | 6.662 | 6.662 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 24000 -1822.9206 -1822.9206 -1909.3382 -1909.3382 334.44504 334.44504 91207.733 91207.733 -107.2608 -107.2608 25000 -1818.8852 -1818.8852 -1905.9107 -1905.9107 336.79746 336.79746 91451.649 91451.649 -176.39878 -176.39878 Loop time of 42.7834 on 1 procs for 1000 steps with 2000 atoms Performance: 2.019 ns/day, 11.884 hours/ns, 23.374 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 | 41.675 | 41.675 | 41.675 | 0.0 | 97.41 Neigh | 0.65141 | 0.65141 | 0.65141 | 0.0 | 1.52 Comm | 0.16192 | 0.16192 | 0.16192 | 0.0 | 0.38 Output | 2.8133e-05 | 2.8133e-05 | 2.8133e-05 | 0.0 | 0.00 Modify | 0.24112 | 0.24112 | 0.24112 | 0.0 | 0.56 Other | | 0.05357 | | | 0.13 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8625 ave 8625 max 8625 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: 780878 ave 780878 max 780878 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 780878 Ave neighs/atom = 390.439 Neighbor list builds = 13 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 = 333.143805968814, Press = 0.390296370443535 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.662 | 6.662 | 6.662 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 25000 -1818.8852 -1818.8852 -1905.9107 -1905.9107 336.79746 336.79746 91451.649 91451.649 -176.39878 -176.39878 26000 -1821.9155 -1821.9155 -1908.4261 -1908.4261 334.80517 334.80517 90986.645 90986.645 22.342685 22.342685 Loop time of 42.8141 on 1 procs for 1000 steps with 2000 atoms Performance: 2.018 ns/day, 11.893 hours/ns, 23.357 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 | 41.835 | 41.835 | 41.835 | 0.0 | 97.71 Neigh | 0.66202 | 0.66202 | 0.66202 | 0.0 | 1.55 Comm | 0.052223 | 0.052223 | 0.052223 | 0.0 | 0.12 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.25154 | 0.25154 | 0.25154 | 0.0 | 0.59 Other | | 0.01368 | | | 0.03 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8656 ave 8656 max 8656 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: 784592 ave 784592 max 784592 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 784592 Ave neighs/atom = 392.296 Neighbor list builds = 14 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 = 333.163358879602, Press = 1.02425747529239 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.662 | 6.662 | 6.662 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 26000 -1821.9155 -1821.9155 -1908.4261 -1908.4261 334.80517 334.80517 90986.645 90986.645 22.342685 22.342685 27000 -1821.5011 -1821.5011 -1906.0904 -1906.0904 327.36962 327.36962 90926.745 90926.745 79.936977 79.936977 Loop time of 41.2732 on 1 procs for 1000 steps with 2000 atoms Performance: 2.093 ns/day, 11.465 hours/ns, 24.229 timesteps/s 44.7% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 40.227 | 40.227 | 40.227 | 0.0 | 97.47 Neigh | 0.61868 | 0.61868 | 0.61868 | 0.0 | 1.50 Comm | 0.17206 | 0.17206 | 0.17206 | 0.0 | 0.42 Output | 2.8133e-05 | 2.8133e-05 | 2.8133e-05 | 0.0 | 0.00 Modify | 0.24131 | 0.24131 | 0.24131 | 0.0 | 0.58 Other | | 0.01396 | | | 0.03 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8626 ave 8626 max 8626 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: 784614 ave 784614 max 784614 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 784614 Ave neighs/atom = 392.307 Neighbor list builds = 14 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 = 333.243576028046, Press = 0.434639509164518 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.662 | 6.662 | 6.662 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 27000 -1821.5011 -1821.5011 -1906.0904 -1906.0904 327.36962 327.36962 90926.745 90926.745 79.936977 79.936977 28000 -1822.0403 -1822.0403 -1908.8019 -1908.8019 335.7766 335.7766 90558.987 90558.987 257.06245 257.06245 Loop time of 39.9426 on 1 procs for 1000 steps with 2000 atoms Performance: 2.163 ns/day, 11.095 hours/ns, 25.036 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 | 39.039 | 39.039 | 39.039 | 0.0 | 97.74 Neigh | 0.58655 | 0.58655 | 0.58655 | 0.0 | 1.47 Comm | 0.11176 | 0.11176 | 0.11176 | 0.0 | 0.28 Output | 4.22e-05 | 4.22e-05 | 4.22e-05 | 0.0 | 0.00 Modify | 0.15163 | 0.15163 | 0.15163 | 0.0 | 0.38 Other | | 0.0537 | | | 0.13 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8684 ave 8684 max 8684 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: 788460 ave 788460 max 788460 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 788460 Ave neighs/atom = 394.23 Neighbor list builds = 13 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 = 333.287460278427, Press = 0.681290640947777 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.662 | 6.662 | 6.662 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 28000 -1822.0403 -1822.0403 -1908.8019 -1908.8019 335.7766 335.7766 90558.987 90558.987 257.06245 257.06245 29000 -1816.1537 -1816.1537 -1903.9392 -1903.9392 339.73903 339.73903 90669.104 90669.104 298.85631 298.85631 Loop time of 39.0732 on 1 procs for 1000 steps with 2000 atoms Performance: 2.211 ns/day, 10.854 hours/ns, 25.593 timesteps/s 47.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 | 38.256 | 38.256 | 38.256 | 0.0 | 97.91 Neigh | 0.62074 | 0.62074 | 0.62074 | 0.0 | 1.59 Comm | 0.051595 | 0.051595 | 0.051595 | 0.0 | 0.13 Output | 2.8849e-05 | 2.8849e-05 | 2.8849e-05 | 0.0 | 0.00 Modify | 0.13159 | 0.13159 | 0.13159 | 0.0 | 0.34 Other | | 0.01343 | | | 0.03 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8645 ave 8645 max 8645 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: 787004 ave 787004 max 787004 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 787004 Ave neighs/atom = 393.502 Neighbor list builds = 14 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 = 333.325615947342, Press = 0.480873575897443 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.662 | 6.662 | 6.662 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 29000 -1816.1537 -1816.1537 -1903.9392 -1903.9392 339.73903 339.73903 90669.104 90669.104 298.85631 298.85631 30000 -1825.6599 -1825.6599 -1909.5683 -1909.5683 324.73418 324.73418 90572.442 90572.442 198.90905 198.90905 Loop time of 39.0906 on 1 procs for 1000 steps with 2000 atoms Performance: 2.210 ns/day, 10.858 hours/ns, 25.582 timesteps/s 47.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 | 38.041 | 38.041 | 38.041 | 0.0 | 97.32 Neigh | 0.6805 | 0.6805 | 0.6805 | 0.0 | 1.74 Comm | 0.071934 | 0.071934 | 0.071934 | 0.0 | 0.18 Output | 2.8133e-05 | 2.8133e-05 | 2.8133e-05 | 0.0 | 0.00 Modify | 0.24323 | 0.24323 | 0.24323 | 0.0 | 0.62 Other | | 0.05372 | | | 0.14 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8686 ave 8686 max 8686 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: 787292 ave 787292 max 787292 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 787292 Ave neighs/atom = 393.646 Neighbor list builds = 14 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" jump SELF break # Write final averaged volume to file if temperature and volume have converged; otherwise wirte a # flag to indicate non-convergence. variable myStep equal step if "${myStep} < 2000000" then "print '${V}' file output/vol_T333.15.out" else "print 'not_converged' file output/vol_T333.15.out" print '${V}' file output/vol_T333.15.out 91086.2516820844 print "LAMMPS calculation completed" LAMMPS calculation completed quit 0