# Variables that can be adjusted by kim-lammps-preprocessor to switch unit sets for # Simulator Models variable _u_distance equal 1.0 variable _u_energy equal 1.0 variable _u_mass equal 1.0 variable _u_time equal 1.0 variable _u_pressure equal 1.0 variable _u_temperature equal 1.0 # This line may be swapped out by kim-lammps-preprocessor if running against a Simulator # Model whose atom_style is not 'atomic' atom_style atomic # periodic boundary conditions along all three dimensions boundary p p p # Set neighbor skin variable neigh_skin equal 2.0*${_u_distance} variable neigh_skin equal 2.0*1 neighbor ${neigh_skin} bin neighbor 2 bin # create a supercell with cubic lattice (fcc, bcc, sc, or diamond) # using 10*10*10 conventional (orthogonal) unit cells variable latticeconst_converted equal 3.140962809324265*${_u_distance} variable latticeconst_converted equal 3.140962809324265*1 lattice bcc ${latticeconst_converted} lattice bcc 3.14096280932426 Lattice spacing in x,y,z = 3.14096 3.14096 3.14096 region simbox block 0 10 0 10 0 10 units lattice create_box 1 simbox Created orthogonal box = (0 0 0) to (31.4096 31.4096 31.4096) 1 by 1 by 1 MPI processor grid create_atoms 1 box Created 2000 atoms create_atoms CPU = 0.000303984 secs variable mass_converted equal 95.94*${_u_mass} variable mass_converted equal 95.94*1 # specify which KIM Model to use pair_style kim Morse_Shifted_GirifalcoWeizer_1959HighCutoff_Mo__MO_666830945336_003 WARNING: KIM Model does not provide `partialParticleVirial'; virial per atom will be zero (src/KIM/pair_kim.cpp:979) pair_coeff * * Mo mass 1 ${mass_converted} mass 1 95.94 # initial volume variable v equal vol # assign formula variable V0 equal ${v} # evaluate initial value variable V0 equal 30987.6314776899 variable V0_metal equal ${V0}/(${_u_distance}*${_u_distance}*${_u_distance}) variable V0_metal equal 30987.6314776899/(${_u_distance}*${_u_distance}*${_u_distance}) variable V0_metal equal 30987.6314776899/(1*${_u_distance}*${_u_distance}) variable V0_metal equal 30987.6314776899/(1*1*${_u_distance}) variable V0_metal equal 30987.6314776899/(1*1*1) variable V0_metal_times1000 equal ${V0_metal}*1000 variable V0_metal_times1000 equal 30987.6314776899*1000 print "Initial system volume: ${V0_metal} Angstroms^3" Initial system volume: 30987.6314776899 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 273.15*${_u_temperature} variable temp_converted equal 273.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 273.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 273.15 ${temp_converted} ${Tdamp_converted} iso ${press_converted} ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 273.15 273.15 ${Tdamp_converted} iso ${press_converted} ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 273.15 273.15 0.1 iso ${press_converted} ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 273.15 273.15 0.1 iso 0 ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 273.15 273.15 0.1 iso 0 0 ${Pdamp_converted} fix ensemble all npt temp 273.15 273.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 "273.15 - 0.2" variable T_up equal "273.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 = 11.5437 ghost atom cutoff = 11.5437 binsize = 5.77186, bins = 6 6 6 1 neighbor lists, perpetual/occasional/extra = 1 0 0 (1) pair kim, perpetual attributes: full, newton off, cut 11.5437 pair build: full/bin/atomonly stencil: full/bin/3d bin: standard Per MPI rank memory allocation (min/avg/max) = 6.659 | 6.659 | 6.659 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 0 -13437.025 -13437.025 -13507.605 -13507.605 273.15 273.15 30987.631 30987.631 2432.8518 2432.8518 1000 -13367.306 -13367.306 -13436.724 -13436.724 268.65646 268.65646 31149.417 31149.417 -1769.7152 -1769.7152 Loop time of 28.2746 on 1 procs for 1000 steps with 2000 atoms Performance: 3.056 ns/day, 7.854 hours/ns, 35.367 timesteps/s 60.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 | 28.025 | 28.025 | 28.025 | 0.0 | 99.12 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.074686 | 0.074686 | 0.074686 | 0.0 | 0.26 Output | 3.6955e-05 | 3.6955e-05 | 3.6955e-05 | 0.0 | 0.00 Modify | 0.16109 | 0.16109 | 0.16109 | 0.0 | 0.57 Other | | 0.01407 | | | 0.05 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 820000 ave 820000 max 820000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 820000 Ave neighs/atom = 410 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 0, Press = 0 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 1000 -13367.306 -13367.306 -13436.724 -13436.724 268.65646 268.65646 31149.417 31149.417 -1769.7152 -1769.7152 2000 -13371.054 -13371.054 -13443.569 -13443.569 280.63867 280.63867 31123.018 31123.018 1470.8701 1470.8701 Loop time of 26.7731 on 1 procs for 1000 steps with 2000 atoms Performance: 3.227 ns/day, 7.437 hours/ns, 37.351 timesteps/s 63.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 | 26.448 | 26.448 | 26.448 | 0.0 | 98.79 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.10965 | 0.10965 | 0.10965 | 0.0 | 0.41 Output | 3.8862e-05 | 3.8862e-05 | 3.8862e-05 | 0.0 | 0.00 Modify | 0.20134 | 0.20134 | 0.20134 | 0.0 | 0.75 Other | | 0.01405 | | | 0.05 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 816474 ave 816474 max 816474 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 816474 Ave neighs/atom = 408.237 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 0, Press = 0 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 2000 -13371.054 -13371.054 -13443.569 -13443.569 280.63867 280.63867 31123.018 31123.018 1470.8701 1470.8701 3000 -13386.098 -13386.098 -13462.097 -13462.097 294.12381 294.12381 31196.484 31196.484 -1524.4909 -1524.4909 Loop time of 26.9361 on 1 procs for 1000 steps with 2000 atoms Performance: 3.208 ns/day, 7.482 hours/ns, 37.125 timesteps/s 60.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 | 26.691 | 26.691 | 26.691 | 0.0 | 99.09 Neigh | 0.040107 | 0.040107 | 0.040107 | 0.0 | 0.15 Comm | 0.06973 | 0.06973 | 0.06973 | 0.0 | 0.26 Output | 3.8862e-05 | 3.8862e-05 | 3.8862e-05 | 0.0 | 0.00 Modify | 0.12124 | 0.12124 | 0.12124 | 0.0 | 0.45 Other | | 0.01395 | | | 0.05 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8574 ave 8574 max 8574 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: 814826 ave 814826 max 814826 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 814826 Ave neighs/atom = 407.413 Neighbor list builds = 1 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.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 3000 -13386.098 -13386.098 -13462.097 -13462.097 294.12381 294.12381 31196.484 31196.484 -1524.4909 -1524.4909 4000 -13401.535 -13401.535 -13469.066 -13469.066 261.3502 261.3502 31165.675 31165.675 301.72916 301.72916 Loop time of 27.0125 on 1 procs for 1000 steps with 2000 atoms Performance: 3.199 ns/day, 7.503 hours/ns, 37.020 timesteps/s 59.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 | 26.751 | 26.751 | 26.751 | 0.0 | 99.03 Neigh | 0.039242 | 0.039242 | 0.039242 | 0.0 | 0.15 Comm | 0.068218 | 0.068218 | 0.068218 | 0.0 | 0.25 Output | 3.8862e-05 | 3.8862e-05 | 3.8862e-05 | 0.0 | 0.00 Modify | 0.12024 | 0.12024 | 0.12024 | 0.0 | 0.45 Other | | 0.03361 | | | 0.12 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8453 ave 8453 max 8453 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: 817456 ave 817456 max 817456 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 817456 Ave neighs/atom = 408.728 Neighbor list builds = 1 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.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 4000 -13401.535 -13401.535 -13469.066 -13469.066 261.3502 261.3502 31165.675 31165.675 301.72916 301.72916 5000 -13392.23 -13392.23 -13461.864 -13461.864 269.49449 269.49449 31182.975 31182.975 61.781709 61.781709 Loop time of 23.4146 on 1 procs for 1000 steps with 2000 atoms Performance: 3.690 ns/day, 6.504 hours/ns, 42.708 timesteps/s 68.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 | 23.13 | 23.13 | 23.13 | 0.0 | 98.78 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.10891 | 0.10891 | 0.10891 | 0.0 | 0.47 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.16169 | 0.16169 | 0.16169 | 0.0 | 0.69 Other | | 0.01422 | | | 0.06 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8498 ave 8498 max 8498 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: 815328 ave 815328 max 815328 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 815328 Ave neighs/atom = 407.664 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 270.934447381078, Press = 140.964648001519 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 5000 -13392.23 -13392.23 -13461.864 -13461.864 269.49449 269.49449 31182.975 31182.975 61.781709 61.781709 6000 -13396.623 -13396.623 -13465.763 -13465.763 267.57544 267.57544 31187.775 31187.775 -1067.2748 -1067.2748 Loop time of 25.0351 on 1 procs for 1000 steps with 2000 atoms Performance: 3.451 ns/day, 6.954 hours/ns, 39.944 timesteps/s 64.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 | 24.748 | 24.748 | 24.748 | 0.0 | 98.85 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.088313 | 0.088313 | 0.088313 | 0.0 | 0.35 Output | 2.8133e-05 | 2.8133e-05 | 2.8133e-05 | 0.0 | 0.00 Modify | 0.1847 | 0.1847 | 0.1847 | 0.0 | 0.74 Other | | 0.01385 | | | 0.06 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8453 ave 8453 max 8453 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: 816338 ave 816338 max 816338 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 816338 Ave neighs/atom = 408.169 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 274.230930690356, Press = -105.369857123582 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 6000 -13396.623 -13396.623 -13465.763 -13465.763 267.57544 267.57544 31187.775 31187.775 -1067.2748 -1067.2748 7000 -13394.754 -13394.754 -13466.724 -13466.724 278.53135 278.53135 31167.375 31167.375 1071.5978 1071.5978 Loop time of 26.2758 on 1 procs for 1000 steps with 2000 atoms Performance: 3.288 ns/day, 7.299 hours/ns, 38.058 timesteps/s 61.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 | 26.048 | 26.048 | 26.048 | 0.0 | 99.13 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.048447 | 0.048447 | 0.048447 | 0.0 | 0.18 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.14506 | 0.14506 | 0.14506 | 0.0 | 0.55 Other | | 0.03458 | | | 0.13 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8476 ave 8476 max 8476 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: 815386 ave 815386 max 815386 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 815386 Ave neighs/atom = 407.693 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 274.667887085892, Press = 5.72619466503554 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 7000 -13394.754 -13394.754 -13466.724 -13466.724 278.53135 278.53135 31167.375 31167.375 1071.5978 1071.5978 8000 -13394.743 -13394.743 -13463.873 -13463.873 267.54201 267.54201 31176.991 31176.991 -41.927384 -41.927384 Loop time of 25.2767 on 1 procs for 1000 steps with 2000 atoms Performance: 3.418 ns/day, 7.021 hours/ns, 39.562 timesteps/s 63.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 | 25.07 | 25.07 | 25.07 | 0.0 | 99.18 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.048613 | 0.048613 | 0.048613 | 0.0 | 0.19 Output | 2.8133e-05 | 2.8133e-05 | 2.8133e-05 | 0.0 | 0.00 Modify | 0.10419 | 0.10419 | 0.10419 | 0.0 | 0.41 Other | | 0.05386 | | | 0.21 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8473 ave 8473 max 8473 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: 816564 ave 816564 max 816564 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 816564 Ave neighs/atom = 408.282 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.956537064734, Press = -20.5073039169751 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 8000 -13394.743 -13394.743 -13463.873 -13463.873 267.54201 267.54201 31176.991 31176.991 -41.927384 -41.927384 9000 -13395.835 -13395.835 -13466.85 -13466.85 274.8374 274.8374 31181.476 31181.476 -245.71781 -245.71781 Loop time of 22.6354 on 1 procs for 1000 steps with 2000 atoms Performance: 3.817 ns/day, 6.288 hours/ns, 44.179 timesteps/s 70.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 | 22.429 | 22.429 | 22.429 | 0.0 | 99.09 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.068232 | 0.068232 | 0.068232 | 0.0 | 0.30 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.12398 | 0.12398 | 0.12398 | 0.0 | 0.55 Other | | 0.01373 | | | 0.06 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8514 ave 8514 max 8514 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: 815588 ave 815588 max 815588 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 815588 Ave neighs/atom = 407.794 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.589049925569, Press = -4.51051729299763 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 9000 -13395.835 -13395.835 -13466.85 -13466.85 274.8374 274.8374 31181.476 31181.476 -245.71781 -245.71781 10000 -13393.117 -13393.117 -13464.406 -13464.406 275.89641 275.89641 31191.442 31191.442 -1205.1526 -1205.1526 Loop time of 24.6428 on 1 procs for 1000 steps with 2000 atoms Performance: 3.506 ns/day, 6.845 hours/ns, 40.580 timesteps/s 65.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 | 24.455 | 24.455 | 24.455 | 0.0 | 99.24 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.068407 | 0.068407 | 0.068407 | 0.0 | 0.28 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.10545 | 0.10545 | 0.10545 | 0.0 | 0.43 Other | | 0.0139 | | | 0.06 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8470 ave 8470 max 8470 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: 816246 ave 816246 max 816246 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 816246 Ave neighs/atom = 408.123 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.684066640259, Press = -13.7455708551822 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 10000 -13393.117 -13393.117 -13464.406 -13464.406 275.89641 275.89641 31191.442 31191.442 -1205.1526 -1205.1526 11000 -13395.067 -13395.067 -13465.661 -13465.661 273.20564 273.20564 31158.201 31158.201 1947.8734 1947.8734 Loop time of 23.3218 on 1 procs for 1000 steps with 2000 atoms Performance: 3.705 ns/day, 6.478 hours/ns, 42.878 timesteps/s 69.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 | 23.113 | 23.113 | 23.113 | 0.0 | 99.10 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.070658 | 0.070658 | 0.070658 | 0.0 | 0.30 Output | 2.6941e-05 | 2.6941e-05 | 2.6941e-05 | 0.0 | 0.00 Modify | 0.10444 | 0.10444 | 0.10444 | 0.0 | 0.45 Other | | 0.03382 | | | 0.15 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8474 ave 8474 max 8474 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: 815670 ave 815670 max 815670 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 815670 Ave neighs/atom = 407.835 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 274.157635409146, Press = -0.446185051877617 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 11000 -13395.067 -13395.067 -13465.661 -13465.661 273.20564 273.20564 31158.201 31158.201 1947.8734 1947.8734 12000 -13393.833 -13393.833 -13463.293 -13463.293 268.81979 268.81979 31219.757 31219.757 -3660.166 -3660.166 Loop time of 25.2167 on 1 procs for 1000 steps with 2000 atoms Performance: 3.426 ns/day, 7.005 hours/ns, 39.656 timesteps/s 64.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 | 24.99 | 24.99 | 24.99 | 0.0 | 99.10 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.048437 | 0.048437 | 0.048437 | 0.0 | 0.19 Output | 2.8133e-05 | 2.8133e-05 | 2.8133e-05 | 0.0 | 0.00 Modify | 0.12455 | 0.12455 | 0.12455 | 0.0 | 0.49 Other | | 0.05374 | | | 0.21 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8477 ave 8477 max 8477 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: 816732 ave 816732 max 816732 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 816732 Ave neighs/atom = 408.366 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 274.090511409054, Press = -14.8973068441155 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 12000 -13393.833 -13393.833 -13463.293 -13463.293 268.81979 268.81979 31219.757 31219.757 -3660.166 -3660.166 13000 -13394.66 -13394.66 -13463.885 -13463.885 267.90585 267.90585 31151.378 31151.378 2804.8305 2804.8305 Loop time of 23.5162 on 1 procs for 1000 steps with 2000 atoms Performance: 3.674 ns/day, 6.532 hours/ns, 42.524 timesteps/s 68.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 | 23.269 | 23.269 | 23.269 | 0.0 | 98.95 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.048401 | 0.048401 | 0.048401 | 0.0 | 0.21 Output | 2.0981e-05 | 2.0981e-05 | 2.0981e-05 | 0.0 | 0.00 Modify | 0.18468 | 0.18468 | 0.18468 | 0.0 | 0.79 Other | | 0.0137 | | | 0.06 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8475 ave 8475 max 8475 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: 814478 ave 814478 max 814478 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 814478 Ave neighs/atom = 407.239 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 274.108998306617, Press = 0.173908389158962 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 13000 -13394.66 -13394.66 -13463.885 -13463.885 267.90585 267.90585 31151.378 31151.378 2804.8305 2804.8305 14000 -13395.703 -13395.703 -13463.696 -13463.696 263.14277 263.14277 31201.088 31201.088 -1816.8192 -1816.8192 Loop time of 23.786 on 1 procs for 1000 steps with 2000 atoms Performance: 3.632 ns/day, 6.607 hours/ns, 42.041 timesteps/s 67.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 | 23.579 | 23.579 | 23.579 | 0.0 | 99.13 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.068775 | 0.068775 | 0.068775 | 0.0 | 0.29 Output | 2.1935e-05 | 2.1935e-05 | 2.1935e-05 | 0.0 | 0.00 Modify | 0.12453 | 0.12453 | 0.12453 | 0.0 | 0.52 Other | | 0.01383 | | | 0.06 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8486 ave 8486 max 8486 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: 816682 ave 816682 max 816682 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 816682 Ave neighs/atom = 408.341 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.878432821576, Press = -8.41274452845706 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 14000 -13395.703 -13395.703 -13463.696 -13463.696 263.14277 263.14277 31201.088 31201.088 -1816.8192 -1816.8192 15000 -13395.629 -13395.629 -13464.834 -13464.834 267.83122 267.83122 31155.009 31155.009 2186.4907 2186.4907 Loop time of 23.53 on 1 procs for 1000 steps with 2000 atoms Performance: 3.672 ns/day, 6.536 hours/ns, 42.499 timesteps/s 68.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 | 23.324 | 23.324 | 23.324 | 0.0 | 99.12 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.048391 | 0.048391 | 0.048391 | 0.0 | 0.21 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.14409 | 0.14409 | 0.14409 | 0.0 | 0.61 Other | | 0.01374 | | | 0.06 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8486 ave 8486 max 8486 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: 815356 ave 815356 max 815356 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 815356 Ave neighs/atom = 407.678 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.722800288285, Press = -3.29700495592128 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 15000 -13395.629 -13395.629 -13464.834 -13464.834 267.83122 267.83122 31155.009 31155.009 2186.4907 2186.4907 16000 -13396.61 -13396.61 -13466.269 -13466.269 269.5851 269.5851 31194.991 31194.991 -1369.8978 -1369.8978 Loop time of 23.9753 on 1 procs for 1000 steps with 2000 atoms Performance: 3.604 ns/day, 6.660 hours/ns, 41.710 timesteps/s 67.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 | 23.746 | 23.746 | 23.746 | 0.0 | 99.05 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.069416 | 0.069416 | 0.069416 | 0.0 | 0.29 Output | 4.9114e-05 | 4.9114e-05 | 4.9114e-05 | 0.0 | 0.00 Modify | 0.14549 | 0.14549 | 0.14549 | 0.0 | 0.61 Other | | 0.01386 | | | 0.06 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8468 ave 8468 max 8468 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: 816634 ave 816634 max 816634 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 816634 Ave neighs/atom = 408.317 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.791721404486, Press = -2.52535061538673 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 16000 -13396.61 -13396.61 -13466.269 -13466.269 269.5851 269.5851 31194.991 31194.991 -1369.8978 -1369.8978 17000 -13396.922 -13396.922 -13468.397 -13468.397 276.61369 276.61369 31150.423 31150.423 2170.8791 2170.8791 Loop time of 21.1794 on 1 procs for 1000 steps with 2000 atoms Performance: 4.079 ns/day, 5.883 hours/ns, 47.216 timesteps/s 76.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 | 21.02 | 21.02 | 21.02 | 0.0 | 99.25 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.048784 | 0.048784 | 0.048784 | 0.0 | 0.23 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.096476 | 0.096476 | 0.096476 | 0.0 | 0.46 Other | | 0.01397 | | | 0.07 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8451 ave 8451 max 8451 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: 815732 ave 815732 max 815732 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 815732 Ave neighs/atom = 407.866 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.666348289472, Press = -6.32447508832025 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 17000 -13396.922 -13396.922 -13468.397 -13468.397 276.61369 276.61369 31150.423 31150.423 2170.8791 2170.8791 18000 -13394.637 -13394.637 -13466.013 -13466.013 276.23301 276.23301 31204.894 31204.894 -2317.522 -2317.522 Loop time of 23.1388 on 1 procs for 1000 steps with 2000 atoms Performance: 3.734 ns/day, 6.427 hours/ns, 43.218 timesteps/s 69.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 | 22.912 | 22.912 | 22.912 | 0.0 | 99.02 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.088676 | 0.088676 | 0.088676 | 0.0 | 0.38 Output | 2.8133e-05 | 2.8133e-05 | 2.8133e-05 | 0.0 | 0.00 Modify | 0.12402 | 0.12402 | 0.12402 | 0.0 | 0.54 Other | | 0.01365 | | | 0.06 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8479 ave 8479 max 8479 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: 815776 ave 815776 max 815776 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 815776 Ave neighs/atom = 407.888 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.651479223709, Press = 1.23488740731608 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 18000 -13394.637 -13394.637 -13466.013 -13466.013 276.23301 276.23301 31204.894 31204.894 -2317.522 -2317.522 19000 -13397.168 -13397.168 -13466.174 -13466.174 267.05916 267.05916 31166.899 31166.899 873.99055 873.99055 Loop time of 22.4042 on 1 procs for 1000 steps with 2000 atoms Performance: 3.856 ns/day, 6.223 hours/ns, 44.635 timesteps/s 71.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 | 22.197 | 22.197 | 22.197 | 0.0 | 99.08 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.068691 | 0.068691 | 0.068691 | 0.0 | 0.31 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.12463 | 0.12463 | 0.12463 | 0.0 | 0.56 Other | | 0.01386 | | | 0.06 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8469 ave 8469 max 8469 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: 815696 ave 815696 max 815696 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 815696 Ave neighs/atom = 407.848 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.470952627857, Press = -6.41013637458876 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 19000 -13397.168 -13397.168 -13466.174 -13466.174 267.05916 267.05916 31166.899 31166.899 873.99055 873.99055 20000 -13396.925 -13396.925 -13465.197 -13465.197 264.22105 264.22105 31171.159 31171.159 704.88152 704.88152 Loop time of 26.1204 on 1 procs for 1000 steps with 2000 atoms Performance: 3.308 ns/day, 7.256 hours/ns, 38.284 timesteps/s 61.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 | 25.933 | 25.933 | 25.933 | 0.0 | 99.28 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.069229 | 0.069229 | 0.069229 | 0.0 | 0.27 Output | 2.5988e-05 | 2.5988e-05 | 2.5988e-05 | 0.0 | 0.00 Modify | 0.084489 | 0.084489 | 0.084489 | 0.0 | 0.32 Other | | 0.03386 | | | 0.13 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8489 ave 8489 max 8489 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: 815782 ave 815782 max 815782 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 815782 Ave neighs/atom = 407.891 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.498003202498, Press = -1.00906399360102 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 20000 -13396.925 -13396.925 -13465.197 -13465.197 264.22105 264.22105 31171.159 31171.159 704.88152 704.88152 21000 -13395.876 -13395.876 -13467.154 -13467.154 275.85492 275.85492 31191.223 31191.223 -1281.0041 -1281.0041 Loop time of 25.8441 on 1 procs for 1000 steps with 2000 atoms Performance: 3.343 ns/day, 7.179 hours/ns, 38.694 timesteps/s 62.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 | 25.608 | 25.608 | 25.608 | 0.0 | 99.09 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.098313 | 0.098313 | 0.098313 | 0.0 | 0.38 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.12411 | 0.12411 | 0.12411 | 0.0 | 0.48 Other | | 0.01376 | | | 0.05 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8485 ave 8485 max 8485 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: 816312 ave 816312 max 816312 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 816312 Ave neighs/atom = 408.156 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.558466531752, Press = -3.80982292716542 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 21000 -13395.876 -13395.876 -13467.154 -13467.154 275.85492 275.85492 31191.223 31191.223 -1281.0041 -1281.0041 22000 -13396.341 -13396.341 -13465.619 -13465.619 268.11363 268.11363 31175.272 31175.272 189.23033 189.23033 Loop time of 21.1167 on 1 procs for 1000 steps with 2000 atoms Performance: 4.092 ns/day, 5.866 hours/ns, 47.356 timesteps/s 76.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 | 20.862 | 20.862 | 20.862 | 0.0 | 98.80 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.069026 | 0.069026 | 0.069026 | 0.0 | 0.33 Output | 4.1008e-05 | 4.1008e-05 | 4.1008e-05 | 0.0 | 0.00 Modify | 0.17136 | 0.17136 | 0.17136 | 0.0 | 0.81 Other | | 0.01385 | | | 0.07 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8488 ave 8488 max 8488 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: 815450 ave 815450 max 815450 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 815450 Ave neighs/atom = 407.725 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.533627575771, Press = -2.00663261650903 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 22000 -13396.341 -13396.341 -13465.619 -13465.619 268.11363 268.11363 31175.272 31175.272 189.23033 189.23033 23000 -13394.735 -13394.735 -13466.311 -13466.311 277.00914 277.00914 31181.23 31181.23 -231.93801 -231.93801 Loop time of 20.6002 on 1 procs for 1000 steps with 2000 atoms Performance: 4.194 ns/day, 5.722 hours/ns, 48.543 timesteps/s 78.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 | 20.412 | 20.412 | 20.412 | 0.0 | 99.09 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.069271 | 0.069271 | 0.069271 | 0.0 | 0.34 Output | 2.6941e-05 | 2.6941e-05 | 2.6941e-05 | 0.0 | 0.00 Modify | 0.10443 | 0.10443 | 0.10443 | 0.0 | 0.51 Other | | 0.01438 | | | 0.07 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8486 ave 8486 max 8486 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: 815892 ave 815892 max 815892 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 815892 Ave neighs/atom = 407.946 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.447092046189, Press = -4.03370705221086 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 23000 -13394.735 -13394.735 -13466.311 -13466.311 277.00914 277.00914 31181.23 31181.23 -231.93801 -231.93801 24000 -13393.877 -13393.877 -13464.567 -13464.567 273.58064 273.58064 31162.925 31162.925 1524.1906 1524.1906 Loop time of 21.1322 on 1 procs for 1000 steps with 2000 atoms Performance: 4.089 ns/day, 5.870 hours/ns, 47.321 timesteps/s 76.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 | 20.883 | 20.883 | 20.883 | 0.0 | 98.82 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.068441 | 0.068441 | 0.068441 | 0.0 | 0.32 Output | 4.3869e-05 | 4.3869e-05 | 4.3869e-05 | 0.0 | 0.00 Modify | 0.14648 | 0.14648 | 0.14648 | 0.0 | 0.69 Other | | 0.03382 | | | 0.16 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8479 ave 8479 max 8479 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: 815940 ave 815940 max 815940 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 815940 Ave neighs/atom = 407.97 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.420546106384, Press = 0.542929234548931 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 24000 -13393.877 -13393.877 -13464.567 -13464.567 273.58064 273.58064 31162.925 31162.925 1524.1906 1524.1906 25000 -13397.173 -13397.173 -13467.087 -13467.087 270.57413 270.57413 31198.915 31198.915 -1904.3927 -1904.3927 Loop time of 20.6638 on 1 procs for 1000 steps with 2000 atoms Performance: 4.181 ns/day, 5.740 hours/ns, 48.394 timesteps/s 78.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 | 20.455 | 20.455 | 20.455 | 0.0 | 98.99 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.048839 | 0.048839 | 0.048839 | 0.0 | 0.24 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.14606 | 0.14606 | 0.14606 | 0.0 | 0.71 Other | | 0.01407 | | | 0.07 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8504 ave 8504 max 8504 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: 815804 ave 815804 max 815804 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 815804 Ave neighs/atom = 407.902 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.337931653435, Press = -4.52999411807316 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 25000 -13397.173 -13397.173 -13467.087 -13467.087 270.57413 270.57413 31198.915 31198.915 -1904.3927 -1904.3927 26000 -13396.196 -13396.196 -13465.783 -13465.783 269.30773 269.30773 31158.575 31158.575 1808.0983 1808.0983 Loop time of 19.1646 on 1 procs for 1000 steps with 2000 atoms Performance: 4.508 ns/day, 5.323 hours/ns, 52.180 timesteps/s 83.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 | 18.978 | 18.978 | 18.978 | 0.0 | 99.03 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.048254 | 0.048254 | 0.048254 | 0.0 | 0.25 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.12478 | 0.12478 | 0.12478 | 0.0 | 0.65 Other | | 0.01375 | | | 0.07 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8467 ave 8467 max 8467 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: 815534 ave 815534 max 815534 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 815534 Ave neighs/atom = 407.767 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.310389210193, Press = -0.645989461123387 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 26000 -13396.196 -13396.196 -13465.783 -13465.783 269.30773 269.30773 31158.575 31158.575 1808.0983 1808.0983 27000 -13393.499 -13393.499 -13465.818 -13465.818 279.88025 279.88025 31189.043 31189.043 -924.57051 -924.57051 Loop time of 19.9365 on 1 procs for 1000 steps with 2000 atoms Performance: 4.334 ns/day, 5.538 hours/ns, 50.159 timesteps/s 80.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 | 19.729 | 19.729 | 19.729 | 0.0 | 98.96 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.048389 | 0.048389 | 0.048389 | 0.0 | 0.24 Output | 3.0041e-05 | 3.0041e-05 | 3.0041e-05 | 0.0 | 0.00 Modify | 0.12492 | 0.12492 | 0.12492 | 0.0 | 0.63 Other | | 0.03371 | | | 0.17 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8499 ave 8499 max 8499 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: 816440 ave 816440 max 816440 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 816440 Ave neighs/atom = 408.22 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.225268914695, Press = -2.90103627502858 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 27000 -13393.499 -13393.499 -13465.818 -13465.818 279.88025 279.88025 31189.043 31189.043 -924.57051 -924.57051 28000 -13392.848 -13392.848 -13464.175 -13464.175 276.04187 276.04187 31172.188 31172.188 998.64382 998.64382 Loop time of 18.7233 on 1 procs for 1000 steps with 2000 atoms Performance: 4.615 ns/day, 5.201 hours/ns, 53.410 timesteps/s 86.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 | 18.576 | 18.576 | 18.576 | 0.0 | 99.21 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.049147 | 0.049147 | 0.049147 | 0.0 | 0.26 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.084847 | 0.084847 | 0.084847 | 0.0 | 0.45 Other | | 0.01371 | | | 0.07 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8492 ave 8492 max 8492 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: 815368 ave 815368 max 815368 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 815368 Ave neighs/atom = 407.684 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.230795837671, Press = -1.25885889203595 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 28000 -13392.848 -13392.848 -13464.175 -13464.175 276.04187 276.04187 31172.188 31172.188 998.64382 998.64382 29000 -13396.267 -13396.267 -13465.873 -13465.873 269.38159 269.38159 31212.623 31212.623 -3179.566 -3179.566 Loop time of 18.5976 on 1 procs for 1000 steps with 2000 atoms Performance: 4.646 ns/day, 5.166 hours/ns, 53.770 timesteps/s 86.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 | 18.431 | 18.431 | 18.431 | 0.0 | 99.11 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.048191 | 0.048191 | 0.048191 | 0.0 | 0.26 Output | 2.8133e-05 | 2.8133e-05 | 2.8133e-05 | 0.0 | 0.00 Modify | 0.084165 | 0.084165 | 0.084165 | 0.0 | 0.45 Other | | 0.03374 | | | 0.18 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8475 ave 8475 max 8475 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: 815914 ave 815914 max 815914 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 815914 Ave neighs/atom = 407.957 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.302098001747, Press = -2.74312014808402 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 29000 -13396.267 -13396.267 -13465.873 -13465.873 269.38159 269.38159 31212.623 31212.623 -3179.566 -3179.566 30000 -13390.294 -13390.294 -13462.7 -13462.7 280.21739 280.21739 31155.004 31155.004 2829.819 2829.819 Loop time of 20.3857 on 1 procs for 1000 steps with 2000 atoms Performance: 4.238 ns/day, 5.663 hours/ns, 49.054 timesteps/s 79.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 | 20.113 | 20.113 | 20.113 | 0.0 | 98.66 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.094149 | 0.094149 | 0.094149 | 0.0 | 0.46 Output | 2.8133e-05 | 2.8133e-05 | 2.8133e-05 | 0.0 | 0.00 Modify | 0.15029 | 0.15029 | 0.15029 | 0.0 | 0.74 Other | | 0.02826 | | | 0.14 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8483 ave 8483 max 8483 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: 814618 ave 814618 max 814618 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 814618 Ave neighs/atom = 407.309 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.353131718171, Press = -1.35007145452441 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 30000 -13390.294 -13390.294 -13462.7 -13462.7 280.21739 280.21739 31155.004 31155.004 2829.819 2829.819 31000 -13396.686 -13396.686 -13467.099 -13467.099 272.50643 272.50643 31204.326 31204.326 -2433.5045 -2433.5045 Loop time of 23.5829 on 1 procs for 1000 steps with 2000 atoms Performance: 3.664 ns/day, 6.551 hours/ns, 42.404 timesteps/s 68.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 | 23.375 | 23.375 | 23.375 | 0.0 | 99.12 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.048678 | 0.048678 | 0.048678 | 0.0 | 0.21 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.14491 | 0.14491 | 0.14491 | 0.0 | 0.61 Other | | 0.01376 | | | 0.06 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8475 ave 8475 max 8475 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: 817010 ave 817010 max 817010 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 817010 Ave neighs/atom = 408.505 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.389640162349, Press = -1.95128544451558 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 31000 -13396.686 -13396.686 -13467.099 -13467.099 272.50643 272.50643 31204.326 31204.326 -2433.5045 -2433.5045 32000 -13394.098 -13394.098 -13465.225 -13465.225 275.27104 275.27104 31122.779 31122.779 5319.1544 5319.1544 Loop time of 27.2563 on 1 procs for 1000 steps with 2000 atoms Performance: 3.170 ns/day, 7.571 hours/ns, 36.689 timesteps/s 58.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 | 26.99 | 26.99 | 26.99 | 0.0 | 99.02 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.088248 | 0.088248 | 0.088248 | 0.0 | 0.32 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.16395 | 0.16395 | 0.16395 | 0.0 | 0.60 Other | | 0.01369 | | | 0.05 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8477 ave 8477 max 8477 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: 814838 ave 814838 max 814838 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 814838 Ave neighs/atom = 407.419 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.436000534521, Press = -1.2935685222592 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 32000 -13394.098 -13394.098 -13465.225 -13465.225 275.27104 275.27104 31122.779 31122.779 5319.1544 5319.1544 33000 -13395.553 -13395.553 -13466.144 -13466.144 273.19547 273.19547 31205.377 31205.377 -2334.7899 -2334.7899 Loop time of 26.7919 on 1 procs for 1000 steps with 2000 atoms Performance: 3.225 ns/day, 7.442 hours/ns, 37.325 timesteps/s 60.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 | 26.478 | 26.478 | 26.478 | 0.0 | 98.83 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.088588 | 0.088588 | 0.088588 | 0.0 | 0.33 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.21105 | 0.21105 | 0.21105 | 0.0 | 0.79 Other | | 0.01371 | | | 0.05 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8494 ave 8494 max 8494 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: 817468 ave 817468 max 817468 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 817468 Ave neighs/atom = 408.734 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.50368249168, Press = -1.22862640363198 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 33000 -13395.553 -13395.553 -13466.144 -13466.144 273.19547 273.19547 31205.377 31205.377 -2334.7899 -2334.7899 34000 -13393.77 -13393.77 -13466.645 -13466.645 282.0335 282.0335 31164.766 31164.766 1282.2126 1282.2126 Loop time of 21.9143 on 1 procs for 1000 steps with 2000 atoms Performance: 3.943 ns/day, 6.087 hours/ns, 45.632 timesteps/s 73.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 | 21.687 | 21.687 | 21.687 | 0.0 | 98.96 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.068878 | 0.068878 | 0.068878 | 0.0 | 0.31 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.12485 | 0.12485 | 0.12485 | 0.0 | 0.57 Other | | 0.03379 | | | 0.15 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8487 ave 8487 max 8487 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: 814904 ave 814904 max 814904 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 814904 Ave neighs/atom = 407.452 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.500038045662, Press = -1.7436624652748 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 34000 -13393.77 -13393.77 -13466.645 -13466.645 282.0335 282.0335 31164.766 31164.766 1282.2126 1282.2126 35000 -13396.947 -13396.947 -13468.314 -13468.314 276.19534 276.19534 31185.97 31185.97 -977.26863 -977.26863 Loop time of 26.3011 on 1 procs for 1000 steps with 2000 atoms Performance: 3.285 ns/day, 7.306 hours/ns, 38.021 timesteps/s 61.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 | 25.952 | 25.952 | 25.952 | 0.0 | 98.67 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.14505 | 0.14505 | 0.14505 | 0.0 | 0.55 Output | 2.8849e-05 | 2.8849e-05 | 2.8849e-05 | 0.0 | 0.00 Modify | 0.19045 | 0.19045 | 0.19045 | 0.0 | 0.72 Other | | 0.01377 | | | 0.05 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8479 ave 8479 max 8479 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: 816272 ave 816272 max 816272 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 816272 Ave neighs/atom = 408.136 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.491750119177, Press = -1.37284447327623 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 35000 -13396.947 -13396.947 -13468.314 -13468.314 276.19534 276.19534 31185.97 31185.97 -977.26863 -977.26863 36000 -13396.21 -13396.21 -13467.03 -13467.03 274.08208 274.08208 31178.036 31178.036 -74.048774 -74.048774 Loop time of 20.4858 on 1 procs for 1000 steps with 2000 atoms Performance: 4.218 ns/day, 5.690 hours/ns, 48.814 timesteps/s 78.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 | 20.259 | 20.259 | 20.259 | 0.0 | 98.89 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.068694 | 0.068694 | 0.068694 | 0.0 | 0.34 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.12428 | 0.12428 | 0.12428 | 0.0 | 0.61 Other | | 0.03391 | | | 0.17 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8477 ave 8477 max 8477 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: 815672 ave 815672 max 815672 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 815672 Ave neighs/atom = 407.836 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.475253998563, Press = -1.68533428906661 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 36000 -13396.21 -13396.21 -13467.03 -13467.03 274.08208 274.08208 31178.036 31178.036 -74.048774 -74.048774 37000 -13394.455 -13394.455 -13466.141 -13466.141 277.43511 277.43511 31189.112 31189.112 -1026.0749 -1026.0749 Loop time of 25.2811 on 1 procs for 1000 steps with 2000 atoms Performance: 3.418 ns/day, 7.023 hours/ns, 39.555 timesteps/s 63.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 | 25.095 | 25.095 | 25.095 | 0.0 | 99.26 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.048486 | 0.048486 | 0.048486 | 0.0 | 0.19 Output | 2.0981e-05 | 2.0981e-05 | 2.0981e-05 | 0.0 | 0.00 Modify | 0.12416 | 0.12416 | 0.12416 | 0.0 | 0.49 Other | | 0.01378 | | | 0.05 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8479 ave 8479 max 8479 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: 815796 ave 815796 max 815796 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 815796 Ave neighs/atom = 407.898 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.503998333468, Press = -0.774807259132249 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 37000 -13394.455 -13394.455 -13466.141 -13466.141 277.43511 277.43511 31189.112 31189.112 -1026.0749 -1026.0749 38000 -13396.842 -13396.842 -13467.007 -13467.007 271.54767 271.54767 31178.255 31178.255 -70.602737 -70.602737 Loop time of 25.1598 on 1 procs for 1000 steps with 2000 atoms Performance: 3.434 ns/day, 6.989 hours/ns, 39.746 timesteps/s 64.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 | 24.913 | 24.913 | 24.913 | 0.0 | 99.02 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.048781 | 0.048781 | 0.048781 | 0.0 | 0.19 Output | 2.8133e-05 | 2.8133e-05 | 2.8133e-05 | 0.0 | 0.00 Modify | 0.14419 | 0.14419 | 0.14419 | 0.0 | 0.57 Other | | 0.05387 | | | 0.21 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8472 ave 8472 max 8472 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: 815686 ave 815686 max 815686 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 815686 Ave neighs/atom = 407.843 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.454796537539, Press = -2.14761564211722 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 38000 -13396.842 -13396.842 -13467.007 -13467.007 271.54767 271.54767 31178.255 31178.255 -70.602737 -70.602737 39000 -13392.822 -13392.822 -13464.377 -13464.377 276.92544 276.92544 31178.284 31178.284 311.41805 311.41805 Loop time of 24.5066 on 1 procs for 1000 steps with 2000 atoms Performance: 3.526 ns/day, 6.807 hours/ns, 40.805 timesteps/s 66.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 | 24.29 | 24.29 | 24.29 | 0.0 | 99.11 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.068795 | 0.068795 | 0.068795 | 0.0 | 0.28 Output | 4.3869e-05 | 4.3869e-05 | 4.3869e-05 | 0.0 | 0.00 Modify | 0.13438 | 0.13438 | 0.13438 | 0.0 | 0.55 Other | | 0.0138 | | | 0.06 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8471 ave 8471 max 8471 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: 816000 ave 816000 max 816000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 816000 Ave neighs/atom = 408 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.456774745236, Press = 0.409048435580418 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 39000 -13392.822 -13392.822 -13464.377 -13464.377 276.92544 276.92544 31178.284 31178.284 311.41805 311.41805 40000 -13396.165 -13396.165 -13466.484 -13466.484 272.14189 272.14189 31178.704 31178.704 -130.70981 -130.70981 Loop time of 22.5515 on 1 procs for 1000 steps with 2000 atoms Performance: 3.831 ns/day, 6.264 hours/ns, 44.343 timesteps/s 71.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 | 22.322 | 22.322 | 22.322 | 0.0 | 98.98 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.089912 | 0.089912 | 0.089912 | 0.0 | 0.40 Output | 2.8133e-05 | 2.8133e-05 | 2.8133e-05 | 0.0 | 0.00 Modify | 0.10542 | 0.10542 | 0.10542 | 0.0 | 0.47 Other | | 0.03396 | | | 0.15 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8491 ave 8491 max 8491 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: 815746 ave 815746 max 815746 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 815746 Ave neighs/atom = 407.873 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.482079652538, Press = -2.64843608832732 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 40000 -13396.165 -13396.165 -13466.484 -13466.484 272.14189 272.14189 31178.704 31178.704 -130.70981 -130.70981 41000 -13394.247 -13394.247 -13465.367 -13465.367 275.23911 275.23911 31172.492 31172.492 748.80308 748.80308 Loop time of 22.5426 on 1 procs for 1000 steps with 2000 atoms Performance: 3.833 ns/day, 6.262 hours/ns, 44.360 timesteps/s 71.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 | 22.335 | 22.335 | 22.335 | 0.0 | 99.08 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.089007 | 0.089007 | 0.089007 | 0.0 | 0.39 Output | 2.6941e-05 | 2.6941e-05 | 2.6941e-05 | 0.0 | 0.00 Modify | 0.10452 | 0.10452 | 0.10452 | 0.0 | 0.46 Other | | 0.01375 | | | 0.06 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8475 ave 8475 max 8475 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: 815854 ave 815854 max 815854 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 815854 Ave neighs/atom = 407.927 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.538272804397, Press = 0.0109611810457213 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 41000 -13394.247 -13394.247 -13465.367 -13465.367 275.23911 275.23911 31172.492 31172.492 748.80308 748.80308 42000 -13394.961 -13394.961 -13464.64 -13464.64 269.66261 269.66261 31177.409 31177.409 190.38502 190.38502 Loop time of 22.3869 on 1 procs for 1000 steps with 2000 atoms Performance: 3.859 ns/day, 6.219 hours/ns, 44.669 timesteps/s 71.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 | 22.214 | 22.214 | 22.214 | 0.0 | 99.23 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.068519 | 0.068519 | 0.068519 | 0.0 | 0.31 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.090324 | 0.090324 | 0.090324 | 0.0 | 0.40 Other | | 0.01384 | | | 0.06 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8454 ave 8454 max 8454 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: 816142 ave 816142 max 816142 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 816142 Ave neighs/atom = 408.071 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.516966573087, Press = -1.87388047308484 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 42000 -13394.961 -13394.961 -13464.64 -13464.64 269.66261 269.66261 31177.409 31177.409 190.38502 190.38502 43000 -13397.701 -13397.701 -13467.38 -13467.38 269.66351 269.66351 31172.987 31172.987 409.19594 409.19594 Loop time of 23.3719 on 1 procs for 1000 steps with 2000 atoms Performance: 3.697 ns/day, 6.492 hours/ns, 42.786 timesteps/s 68.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 | 23.184 | 23.184 | 23.184 | 0.0 | 99.20 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.049377 | 0.049377 | 0.049377 | 0.0 | 0.21 Output | 2.6941e-05 | 2.6941e-05 | 2.6941e-05 | 0.0 | 0.00 Modify | 0.1245 | 0.1245 | 0.1245 | 0.0 | 0.53 Other | | 0.0139 | | | 0.06 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8481 ave 8481 max 8481 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: 815642 ave 815642 max 815642 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 815642 Ave neighs/atom = 407.821 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.515234353431, Press = -0.968788095118986 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 43000 -13397.701 -13397.701 -13467.38 -13467.38 269.66351 269.66351 31172.987 31172.987 409.19594 409.19594 44000 -13394.565 -13394.565 -13466.543 -13466.543 278.55899 278.55899 31172.307 31172.307 528.98188 528.98188 Loop time of 22.1376 on 1 procs for 1000 steps with 2000 atoms Performance: 3.903 ns/day, 6.149 hours/ns, 45.172 timesteps/s 72.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 | 21.886 | 21.886 | 21.886 | 0.0 | 98.86 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.068967 | 0.068967 | 0.068967 | 0.0 | 0.31 Output | 4.4107e-05 | 4.4107e-05 | 4.4107e-05 | 0.0 | 0.00 Modify | 0.149 | 0.149 | 0.149 | 0.0 | 0.67 Other | | 0.03405 | | | 0.15 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8479 ave 8479 max 8479 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: 816128 ave 816128 max 816128 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 816128 Ave neighs/atom = 408.064 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.442314947483, Press = -0.744288885003981 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 44000 -13394.565 -13394.565 -13466.543 -13466.543 278.55899 278.55899 31172.307 31172.307 528.98188 528.98188 45000 -13399.268 -13399.268 -13466.605 -13466.605 260.60088 260.60088 31195.599 31195.599 -1771.3423 -1771.3423 Loop time of 19.3033 on 1 procs for 1000 steps with 2000 atoms Performance: 4.476 ns/day, 5.362 hours/ns, 51.805 timesteps/s 83.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 | 19.136 | 19.136 | 19.136 | 0.0 | 99.14 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.048505 | 0.048505 | 0.048505 | 0.0 | 0.25 Output | 4.2915e-05 | 4.2915e-05 | 4.2915e-05 | 0.0 | 0.00 Modify | 0.084667 | 0.084667 | 0.084667 | 0.0 | 0.44 Other | | 0.03369 | | | 0.17 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8471 ave 8471 max 8471 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: 816176 ave 816176 max 816176 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 816176 Ave neighs/atom = 408.088 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.410301297946, Press = -0.81742271386746 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 45000 -13399.268 -13399.268 -13466.605 -13466.605 260.60088 260.60088 31195.599 31195.599 -1771.3423 -1771.3423 46000 -13394.423 -13394.423 -13464.737 -13464.737 272.12512 272.12512 31151.852 31151.852 2661.1181 2661.1181 Loop time of 17.943 on 1 procs for 1000 steps with 2000 atoms Performance: 4.815 ns/day, 4.984 hours/ns, 55.732 timesteps/s 89.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 | 17.777 | 17.777 | 17.777 | 0.0 | 99.07 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.048624 | 0.048624 | 0.048624 | 0.0 | 0.27 Output | 2.3127e-05 | 2.3127e-05 | 2.3127e-05 | 0.0 | 0.00 Modify | 0.1038 | 0.1038 | 0.1038 | 0.0 | 0.58 Other | | 0.0138 | | | 0.08 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8464 ave 8464 max 8464 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: 815424 ave 815424 max 815424 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 815424 Ave neighs/atom = 407.712 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.366703198384, Press = -1.89627796255263 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 46000 -13394.423 -13394.423 -13464.737 -13464.737 272.12512 272.12512 31151.852 31151.852 2661.1181 2661.1181 47000 -13391.945 -13391.945 -13464.87 -13464.87 282.22744 282.22744 31200.725 31200.725 -1771.9624 -1771.9624 Loop time of 16.459 on 1 procs for 1000 steps with 2000 atoms Performance: 5.249 ns/day, 4.572 hours/ns, 60.757 timesteps/s 98.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 | 16.311 | 16.311 | 16.311 | 0.0 | 99.10 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.048841 | 0.048841 | 0.048841 | 0.0 | 0.30 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.085185 | 0.085185 | 0.085185 | 0.0 | 0.52 Other | | 0.01385 | | | 0.08 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8477 ave 8477 max 8477 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: 816416 ave 816416 max 816416 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 816416 Ave neighs/atom = 408.208 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.3635501252, Press = 0.138597158845872 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 47000 -13391.945 -13391.945 -13464.87 -13464.87 282.22744 282.22744 31200.725 31200.725 -1771.9624 -1771.9624 48000 -13395.667 -13395.667 -13464.455 -13464.455 266.21937 266.21937 31154.588 31154.588 2332.1947 2332.1947 Loop time of 16.5189 on 1 procs for 1000 steps with 2000 atoms Performance: 5.230 ns/day, 4.589 hours/ns, 60.537 timesteps/s 97.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 | 16.372 | 16.372 | 16.372 | 0.0 | 99.11 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.048601 | 0.048601 | 0.048601 | 0.0 | 0.29 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.084691 | 0.084691 | 0.084691 | 0.0 | 0.51 Other | | 0.01389 | | | 0.08 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8464 ave 8464 max 8464 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: 815368 ave 815368 max 815368 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 815368 Ave neighs/atom = 407.684 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.431664660416, Press = -1.58705842867692 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 48000 -13395.667 -13395.667 -13464.455 -13464.455 266.21937 266.21937 31154.588 31154.588 2332.1947 2332.1947 49000 -13394.44 -13394.44 -13466.456 -13466.456 278.70829 278.70829 31188.97 31188.97 -933.8339 -933.8339 Loop time of 23.5996 on 1 procs for 1000 steps with 2000 atoms Performance: 3.661 ns/day, 6.555 hours/ns, 42.374 timesteps/s 68.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 | 23.332 | 23.332 | 23.332 | 0.0 | 98.87 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.078657 | 0.078657 | 0.078657 | 0.0 | 0.33 Output | 2.8849e-05 | 2.8849e-05 | 2.8849e-05 | 0.0 | 0.00 Modify | 0.17498 | 0.17498 | 0.17498 | 0.0 | 0.74 Other | | 0.01369 | | | 0.06 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8478 ave 8478 max 8478 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: 816810 ave 816810 max 816810 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 816810 Ave neighs/atom = 408.405 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.429193973318, Press = -0.789087019376209 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 49000 -13394.44 -13394.44 -13466.456 -13466.456 278.70829 278.70829 31188.97 31188.97 -933.8339 -933.8339 50000 -13397.903 -13397.903 -13467.262 -13467.262 268.42511 268.42511 31158.633 31158.633 1673.216 1673.216 Loop time of 21.447 on 1 procs for 1000 steps with 2000 atoms Performance: 4.029 ns/day, 5.957 hours/ns, 46.627 timesteps/s 75.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 | 21.239 | 21.239 | 21.239 | 0.0 | 99.03 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.069062 | 0.069062 | 0.069062 | 0.0 | 0.32 Output | 2.8849e-05 | 2.8849e-05 | 2.8849e-05 | 0.0 | 0.00 Modify | 0.10477 | 0.10477 | 0.10477 | 0.0 | 0.49 Other | | 0.03387 | | | 0.16 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8488 ave 8488 max 8488 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: 815338 ave 815338 max 815338 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 815338 Ave neighs/atom = 407.669 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.380975750415, Press = -1.49098212535381 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 50000 -13397.903 -13397.903 -13467.262 -13467.262 268.42511 268.42511 31158.633 31158.633 1673.216 1673.216 51000 -13394.944 -13394.944 -13466.831 -13466.831 278.20971 278.20971 31185.161 31185.161 -682.26546 -682.26546 Loop time of 24.6187 on 1 procs for 1000 steps with 2000 atoms Performance: 3.510 ns/day, 6.839 hours/ns, 40.620 timesteps/s 65.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 | 24.411 | 24.411 | 24.411 | 0.0 | 99.16 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.048712 | 0.048712 | 0.048712 | 0.0 | 0.20 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.14451 | 0.14451 | 0.14451 | 0.0 | 0.59 Other | | 0.01404 | | | 0.06 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8478 ave 8478 max 8478 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: 816608 ave 816608 max 816608 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 816608 Ave neighs/atom = 408.304 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.347162698883, Press = -0.80766552254119 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 51000 -13394.944 -13394.944 -13466.831 -13466.831 278.20971 278.20971 31185.161 31185.161 -682.26546 -682.26546 52000 -13397.085 -13397.085 -13466.815 -13466.815 269.86415 269.86415 31171.833 31171.833 507.35671 507.35671 Loop time of 21.2082 on 1 procs for 1000 steps with 2000 atoms Performance: 4.074 ns/day, 5.891 hours/ns, 47.152 timesteps/s 75.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 | 21.052 | 21.052 | 21.052 | 0.0 | 99.26 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.04846 | 0.04846 | 0.04846 | 0.0 | 0.23 Output | 2.2173e-05 | 2.2173e-05 | 2.2173e-05 | 0.0 | 0.00 Modify | 0.094385 | 0.094385 | 0.094385 | 0.0 | 0.45 Other | | 0.01373 | | | 0.06 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8492 ave 8492 max 8492 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: 815768 ave 815768 max 815768 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 815768 Ave neighs/atom = 407.884 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.288896371094, Press = -1.0832836043782 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 52000 -13397.085 -13397.085 -13466.815 -13466.815 269.86415 269.86415 31171.833 31171.833 507.35671 507.35671 53000 -13397.123 -13397.123 -13467.964 -13467.964 274.16308 274.16308 31170.352 31170.352 542.77831 542.77831 Loop time of 22.0945 on 1 procs for 1000 steps with 2000 atoms Performance: 3.910 ns/day, 6.137 hours/ns, 45.260 timesteps/s 73.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 | 21.928 | 21.928 | 21.928 | 0.0 | 99.25 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.048549 | 0.048549 | 0.048549 | 0.0 | 0.22 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.10413 | 0.10413 | 0.10413 | 0.0 | 0.47 Other | | 0.01362 | | | 0.06 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8479 ave 8479 max 8479 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: 816114 ave 816114 max 816114 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 816114 Ave neighs/atom = 408.057 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.280997422025, Press = -0.894226526191924 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 53000 -13397.123 -13397.123 -13467.964 -13467.964 274.16308 274.16308 31170.352 31170.352 542.77831 542.77831 54000 -13390.914 -13390.914 -13463.793 -13463.793 282.04938 282.04938 31172.018 31172.018 1015.9102 1015.9102 Loop time of 22.1423 on 1 procs for 1000 steps with 2000 atoms Performance: 3.902 ns/day, 6.151 hours/ns, 45.162 timesteps/s 72.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 | 21.916 | 21.916 | 21.916 | 0.0 | 98.98 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.10868 | 0.10868 | 0.10868 | 0.0 | 0.49 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.10416 | 0.10416 | 0.10416 | 0.0 | 0.47 Other | | 0.01375 | | | 0.06 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8477 ave 8477 max 8477 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: 816120 ave 816120 max 816120 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 816120 Ave neighs/atom = 408.06 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.321407507731, Press = -0.789275912760681 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 54000 -13390.914 -13390.914 -13463.793 -13463.793 282.04938 282.04938 31172.018 31172.018 1015.9102 1015.9102 55000 -13396.422 -13396.422 -13467.753 -13467.753 276.06089 276.06089 31212.884 31212.884 -3304.1003 -3304.1003 Loop time of 22.8913 on 1 procs for 1000 steps with 2000 atoms Performance: 3.774 ns/day, 6.359 hours/ns, 43.685 timesteps/s 70.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 | 22.585 | 22.585 | 22.585 | 0.0 | 98.66 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.12869 | 0.12869 | 0.12869 | 0.0 | 0.56 Output | 3.0041e-05 | 3.0041e-05 | 3.0041e-05 | 0.0 | 0.00 Modify | 0.12431 | 0.12431 | 0.12431 | 0.0 | 0.54 Other | | 0.05375 | | | 0.23 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8483 ave 8483 max 8483 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: 815882 ave 815882 max 815882 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 815882 Ave neighs/atom = 407.941 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.338117527687, Press = -1.59986602294703 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 55000 -13396.422 -13396.422 -13467.753 -13467.753 276.06089 276.06089 31212.884 31212.884 -3304.1003 -3304.1003 56000 -13392.087 -13392.087 -13464.728 -13464.728 281.13072 281.13072 31145.977 31145.977 3236.4279 3236.4279 Loop time of 21.5777 on 1 procs for 1000 steps with 2000 atoms Performance: 4.004 ns/day, 5.994 hours/ns, 46.344 timesteps/s 74.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 | 21.413 | 21.413 | 21.413 | 0.0 | 99.24 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.049169 | 0.049169 | 0.049169 | 0.0 | 0.23 Output | 2.8133e-05 | 2.8133e-05 | 2.8133e-05 | 0.0 | 0.00 Modify | 0.095631 | 0.095631 | 0.095631 | 0.0 | 0.44 Other | | 0.01943 | | | 0.09 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8458 ave 8458 max 8458 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: 815230 ave 815230 max 815230 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 815230 Ave neighs/atom = 407.615 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.369917859801, Press = -0.698033540369732 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 56000 -13392.087 -13392.087 -13464.728 -13464.728 281.13072 281.13072 31145.977 31145.977 3236.4279 3236.4279 57000 -13396.823 -13396.823 -13466.22 -13466.22 268.57516 268.57516 31210.457 31210.457 -2826.1921 -2826.1921 Loop time of 20.3109 on 1 procs for 1000 steps with 2000 atoms Performance: 4.254 ns/day, 5.642 hours/ns, 49.235 timesteps/s 79.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 | 20.124 | 20.124 | 20.124 | 0.0 | 99.08 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.048758 | 0.048758 | 0.048758 | 0.0 | 0.24 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.12427 | 0.12427 | 0.12427 | 0.0 | 0.61 Other | | 0.01385 | | | 0.07 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8474 ave 8474 max 8474 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: 816624 ave 816624 max 816624 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 816624 Ave neighs/atom = 408.312 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.395401592404, Press = -0.925482487363679 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 57000 -13396.823 -13396.823 -13466.22 -13466.22 268.57516 268.57516 31210.457 31210.457 -2826.1921 -2826.1921 58000 -13392.826 -13392.826 -13462.564 -13462.564 269.89194 269.89194 31168.761 31168.761 1366.1019 1366.1019 Loop time of 20.4943 on 1 procs for 1000 steps with 2000 atoms Performance: 4.216 ns/day, 5.693 hours/ns, 48.794 timesteps/s 78.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 | 20.347 | 20.347 | 20.347 | 0.0 | 99.28 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.048638 | 0.048638 | 0.048638 | 0.0 | 0.24 Output | 2.8133e-05 | 2.8133e-05 | 2.8133e-05 | 0.0 | 0.00 Modify | 0.085061 | 0.085061 | 0.085061 | 0.0 | 0.42 Other | | 0.01391 | | | 0.07 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8469 ave 8469 max 8469 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: 815080 ave 815080 max 815080 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 815080 Ave neighs/atom = 407.54 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.446403152099, Press = -1.17232111403998 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 58000 -13392.826 -13392.826 -13462.564 -13462.564 269.89194 269.89194 31168.761 31168.761 1366.1019 1366.1019 59000 -13395.125 -13395.125 -13465.184 -13465.184 271.13572 271.13572 31190.259 31190.259 -799.67996 -799.67996 Loop time of 21.1653 on 1 procs for 1000 steps with 2000 atoms Performance: 4.082 ns/day, 5.879 hours/ns, 47.247 timesteps/s 76.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 | 21.018 | 21.018 | 21.018 | 0.0 | 99.31 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.048669 | 0.048669 | 0.048669 | 0.0 | 0.23 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.084321 | 0.084321 | 0.084321 | 0.0 | 0.40 Other | | 0.01384 | | | 0.07 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8481 ave 8481 max 8481 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: 816006 ave 816006 max 816006 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 816006 Ave neighs/atom = 408.003 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.423343584693, Press = -0.726950860789617 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 59000 -13395.125 -13395.125 -13465.184 -13465.184 271.13572 271.13572 31190.259 31190.259 -799.67996 -799.67996 60000 -13397.297 -13397.297 -13468.087 -13468.087 273.96397 273.96397 31161.522 31161.522 1358.5174 1358.5174 Loop time of 18.2505 on 1 procs for 1000 steps with 2000 atoms Performance: 4.734 ns/day, 5.070 hours/ns, 54.793 timesteps/s 87.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 | 18.084 | 18.084 | 18.084 | 0.0 | 99.09 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.048431 | 0.048431 | 0.048431 | 0.0 | 0.27 Output | 6.8188e-05 | 6.8188e-05 | 6.8188e-05 | 0.0 | 0.00 Modify | 0.084088 | 0.084088 | 0.084088 | 0.0 | 0.46 Other | | 0.03381 | | | 0.19 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8471 ave 8471 max 8471 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: 815578 ave 815578 max 815578 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 815578 Ave neighs/atom = 407.789 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.403928904296, Press = -1.05750535524867 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 60000 -13397.297 -13397.297 -13468.087 -13468.087 273.96397 273.96397 31161.522 31161.522 1358.5174 1358.5174 61000 -13394.484 -13394.484 -13466.412 -13466.412 278.37052 278.37052 31199.614 31199.614 -1903.8702 -1903.8702 Loop time of 19.2229 on 1 procs for 1000 steps with 2000 atoms Performance: 4.495 ns/day, 5.340 hours/ns, 52.021 timesteps/s 83.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 | 19.054 | 19.054 | 19.054 | 0.0 | 99.12 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.049801 | 0.049801 | 0.049801 | 0.0 | 0.26 Output | 2.1935e-05 | 2.1935e-05 | 2.1935e-05 | 0.0 | 0.00 Modify | 0.10547 | 0.10547 | 0.10547 | 0.0 | 0.55 Other | | 0.01389 | | | 0.07 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8472 ave 8472 max 8472 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: 816400 ave 816400 max 816400 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 816400 Ave neighs/atom = 408.2 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.397745332965, Press = -0.0844493050006088 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 61000 -13394.484 -13394.484 -13466.412 -13466.412 278.37052 278.37052 31199.614 31199.614 -1903.8702 -1903.8702 62000 -13396.989 -13396.989 -13466.186 -13466.186 267.80117 267.80117 31171.592 31171.592 558.07241 558.07241 Loop time of 15.6462 on 1 procs for 1000 steps with 2000 atoms Performance: 5.522 ns/day, 4.346 hours/ns, 63.913 timesteps/s 99.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 | 15.504 | 15.504 | 15.504 | 0.0 | 99.09 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.046789 | 0.046789 | 0.046789 | 0.0 | 0.30 Output | 2.0981e-05 | 2.0981e-05 | 2.0981e-05 | 0.0 | 0.00 Modify | 0.082243 | 0.082243 | 0.082243 | 0.0 | 0.53 Other | | 0.01327 | | | 0.08 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8466 ave 8466 max 8466 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: 815208 ave 815208 max 815208 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 815208 Ave neighs/atom = 407.604 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.396945756933, Press = -1.76596764962959 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 62000 -13396.989 -13396.989 -13466.186 -13466.186 267.80117 267.80117 31171.592 31171.592 558.07241 558.07241 63000 -13394.943 -13394.943 -13465.412 -13465.412 272.72248 272.72248 31178.688 31178.688 30.448243 30.448243 Loop time of 15.6261 on 1 procs for 1000 steps with 2000 atoms Performance: 5.529 ns/day, 4.341 hours/ns, 63.996 timesteps/s 99.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 | 15.483 | 15.483 | 15.483 | 0.0 | 99.09 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.047464 | 0.047464 | 0.047464 | 0.0 | 0.30 Output | 2.2173e-05 | 2.2173e-05 | 2.2173e-05 | 0.0 | 0.00 Modify | 0.081812 | 0.081812 | 0.081812 | 0.0 | 0.52 Other | | 0.01328 | | | 0.08 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8486 ave 8486 max 8486 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: 816452 ave 816452 max 816452 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 816452 Ave neighs/atom = 408.226 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.434687778495, Press = 0.171864525222985 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 63000 -13394.943 -13394.943 -13465.412 -13465.412 272.72248 272.72248 31178.688 31178.688 30.448243 30.448243 64000 -13396.479 -13396.479 -13466.559 -13466.559 271.21755 271.21755 31181.282 31181.282 -339.35885 -339.35885 Loop time of 15.8869 on 1 procs for 1000 steps with 2000 atoms Performance: 5.438 ns/day, 4.413 hours/ns, 62.945 timesteps/s 98.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 | 15.742 | 15.742 | 15.742 | 0.0 | 99.09 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.048899 | 0.048899 | 0.048899 | 0.0 | 0.31 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.082389 | 0.082389 | 0.082389 | 0.0 | 0.52 Other | | 0.01358 | | | 0.09 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8493 ave 8493 max 8493 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: 816008 ave 816008 max 816008 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 816008 Ave neighs/atom = 408.004 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.452980063103, Press = -1.35276613730176 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 64000 -13396.479 -13396.479 -13466.559 -13466.559 271.21755 271.21755 31181.282 31181.282 -339.35885 -339.35885 65000 -13395.159 -13395.159 -13467.507 -13467.507 279.99515 279.99515 31167.022 31167.022 940.1712 940.1712 Loop time of 16.3813 on 1 procs for 1000 steps with 2000 atoms Performance: 5.274 ns/day, 4.550 hours/ns, 61.045 timesteps/s 97.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.236 | 16.236 | 16.236 | 0.0 | 99.11 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.04851 | 0.04851 | 0.04851 | 0.0 | 0.30 Output | 2.6941e-05 | 2.6941e-05 | 2.6941e-05 | 0.0 | 0.00 Modify | 0.083349 | 0.083349 | 0.083349 | 0.0 | 0.51 Other | | 0.0135 | | | 0.08 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8485 ave 8485 max 8485 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: 815922 ave 815922 max 815922 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 815922 Ave neighs/atom = 407.961 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.450903229212, Press = -0.685640888177897 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 65000 -13395.159 -13395.159 -13467.507 -13467.507 279.99515 279.99515 31167.022 31167.022 940.1712 940.1712 66000 -13397.789 -13397.789 -13468.185 -13468.185 272.43928 272.43928 31196.19 31196.19 -1876.96 -1876.96 Loop time of 22.4213 on 1 procs for 1000 steps with 2000 atoms Performance: 3.853 ns/day, 6.228 hours/ns, 44.600 timesteps/s 72.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 | 22.233 | 22.233 | 22.233 | 0.0 | 99.16 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.069122 | 0.069122 | 0.069122 | 0.0 | 0.31 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.10528 | 0.10528 | 0.10528 | 0.0 | 0.47 Other | | 0.014 | | | 0.06 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8482 ave 8482 max 8482 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: 816304 ave 816304 max 816304 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 816304 Ave neighs/atom = 408.152 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.445354621737, Press = -0.877476923255864 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 66000 -13397.789 -13397.789 -13468.185 -13468.185 272.43928 272.43928 31196.19 31196.19 -1876.96 -1876.96 67000 -13394.952 -13394.952 -13466.233 -13466.233 275.86206 275.86206 31170.065 31170.065 814.9782 814.9782 Loop time of 21.584 on 1 procs for 1000 steps with 2000 atoms Performance: 4.003 ns/day, 5.996 hours/ns, 46.331 timesteps/s 74.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 | 21.414 | 21.414 | 21.414 | 0.0 | 99.21 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.04856 | 0.04856 | 0.04856 | 0.0 | 0.22 Output | 2.6941e-05 | 2.6941e-05 | 2.6941e-05 | 0.0 | 0.00 Modify | 0.10754 | 0.10754 | 0.10754 | 0.0 | 0.50 Other | | 0.01359 | | | 0.06 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8470 ave 8470 max 8470 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: 815314 ave 815314 max 815314 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 815314 Ave neighs/atom = 407.657 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.43788439137, Press = -0.694616250835358 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 67000 -13394.952 -13394.952 -13466.233 -13466.233 275.86206 275.86206 31170.065 31170.065 814.9782 814.9782 68000 -13396.519 -13396.519 -13467.037 -13467.037 272.91286 272.91286 31183.573 31183.573 -572.56279 -572.56279 Loop time of 22.0365 on 1 procs for 1000 steps with 2000 atoms Performance: 3.921 ns/day, 6.121 hours/ns, 45.379 timesteps/s 73.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 | 21.789 | 21.789 | 21.789 | 0.0 | 98.88 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.088849 | 0.088849 | 0.088849 | 0.0 | 0.40 Output | 5.3883e-05 | 5.3883e-05 | 5.3883e-05 | 0.0 | 0.00 Modify | 0.1048 | 0.1048 | 0.1048 | 0.0 | 0.48 Other | | 0.05378 | | | 0.24 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8479 ave 8479 max 8479 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: 816094 ave 816094 max 816094 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 816094 Ave neighs/atom = 408.047 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.432300869808, Press = -0.86032766899222 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 68000 -13396.519 -13396.519 -13467.037 -13467.037 272.91286 272.91286 31183.573 31183.573 -572.56279 -572.56279 69000 -13394.83 -13394.83 -13464.064 -13464.064 267.94289 267.94289 31167.369 31167.369 1276.6399 1276.6399 Loop time of 23.6929 on 1 procs for 1000 steps with 2000 atoms Performance: 3.647 ns/day, 6.581 hours/ns, 42.207 timesteps/s 68.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 | 23.527 | 23.527 | 23.527 | 0.0 | 99.30 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.068706 | 0.068706 | 0.068706 | 0.0 | 0.29 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.083859 | 0.083859 | 0.083859 | 0.0 | 0.35 Other | | 0.01365 | | | 0.06 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8485 ave 8485 max 8485 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: 815858 ave 815858 max 815858 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 815858 Ave neighs/atom = 407.929 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.439508387506, Press = -0.591649797204081 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 69000 -13394.83 -13394.83 -13464.064 -13464.064 267.94289 267.94289 31167.369 31167.369 1276.6399 1276.6399 70000 -13392.398 -13392.398 -13464.607 -13464.607 279.45355 279.45355 31188.416 31188.416 -704.59209 -704.59209 Loop time of 20.6852 on 1 procs for 1000 steps with 2000 atoms Performance: 4.177 ns/day, 5.746 hours/ns, 48.344 timesteps/s 78.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 | 20.536 | 20.536 | 20.536 | 0.0 | 99.28 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.049525 | 0.049525 | 0.049525 | 0.0 | 0.24 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.085703 | 0.085703 | 0.085703 | 0.0 | 0.41 Other | | 0.0138 | | | 0.07 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8492 ave 8492 max 8492 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: 816012 ave 816012 max 816012 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 816012 Ave neighs/atom = 408.006 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.46101100748, Press = -0.497657680231805 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 70000 -13392.398 -13392.398 -13464.607 -13464.607 279.45355 279.45355 31188.416 31188.416 -704.59209 -704.59209 71000 -13395.239 -13395.239 -13466.729 -13466.729 276.67347 276.67347 31182.642 31182.642 -439.14047 -439.14047 Loop time of 23.4061 on 1 procs for 1000 steps with 2000 atoms Performance: 3.691 ns/day, 6.502 hours/ns, 42.724 timesteps/s 68.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 | 23.2 | 23.2 | 23.2 | 0.0 | 99.12 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.068697 | 0.068697 | 0.068697 | 0.0 | 0.29 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.12402 | 0.12402 | 0.12402 | 0.0 | 0.53 Other | | 0.01385 | | | 0.06 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8470 ave 8470 max 8470 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: 815662 ave 815662 max 815662 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 815662 Ave neighs/atom = 407.831 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.457878527794, Press = -1.32129567695841 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 71000 -13395.239 -13395.239 -13466.729 -13466.729 276.67347 276.67347 31182.642 31182.642 -439.14047 -439.14047 72000 -13394.362 -13394.362 -13465.59 -13465.59 275.65794 275.65794 31174.268 31174.268 522.99437 522.99437 Loop time of 20.6191 on 1 procs for 1000 steps with 2000 atoms Performance: 4.190 ns/day, 5.728 hours/ns, 48.499 timesteps/s 78.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 | 20.453 | 20.453 | 20.453 | 0.0 | 99.19 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.068558 | 0.068558 | 0.068558 | 0.0 | 0.33 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.083988 | 0.083988 | 0.083988 | 0.0 | 0.41 Other | | 0.0138 | | | 0.07 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8482 ave 8482 max 8482 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: 815536 ave 815536 max 815536 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 815536 Ave neighs/atom = 407.768 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.431439418568, Press = -0.276563417878206 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 72000 -13394.362 -13394.362 -13465.59 -13465.59 275.65794 275.65794 31174.268 31174.268 522.99437 522.99437 73000 -13399.36 -13399.36 -13468.129 -13468.129 266.14624 266.14624 31178.731 31178.731 -315.6577 -315.6577 Loop time of 20.8889 on 1 procs for 1000 steps with 2000 atoms Performance: 4.136 ns/day, 5.802 hours/ns, 47.872 timesteps/s 77.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 | 20.703 | 20.703 | 20.703 | 0.0 | 99.11 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.068453 | 0.068453 | 0.068453 | 0.0 | 0.33 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.1041 | 0.1041 | 0.1041 | 0.0 | 0.50 Other | | 0.01384 | | | 0.07 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8476 ave 8476 max 8476 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: 816326 ave 816326 max 816326 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 816326 Ave neighs/atom = 408.163 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.414779950282, Press = -1.50119378939216 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 73000 -13399.36 -13399.36 -13468.129 -13468.129 266.14624 266.14624 31178.731 31178.731 -315.6577 -315.6577 74000 -13394.051 -13394.051 -13464.927 -13464.927 274.2986 274.2986 31164.976 31164.976 1471.3808 1471.3808 Loop time of 18.1005 on 1 procs for 1000 steps with 2000 atoms Performance: 4.773 ns/day, 5.028 hours/ns, 55.247 timesteps/s 88.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 | 17.934 | 17.934 | 17.934 | 0.0 | 99.08 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.048543 | 0.048543 | 0.048543 | 0.0 | 0.27 Output | 2.0027e-05 | 2.0027e-05 | 2.0027e-05 | 0.0 | 0.00 Modify | 0.10421 | 0.10421 | 0.10421 | 0.0 | 0.58 Other | | 0.0138 | | | 0.08 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8477 ave 8477 max 8477 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: 815570 ave 815570 max 815570 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 815570 Ave neighs/atom = 407.785 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.386132194943, Press = 0.134700187581739 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 74000 -13394.051 -13394.051 -13464.927 -13464.927 274.2986 274.2986 31164.976 31164.976 1471.3808 1471.3808 75000 -13394.372 -13394.372 -13465.248 -13465.248 274.29519 274.29519 31211.55 31211.55 -2811.2887 -2811.2887 Loop time of 16.8788 on 1 procs for 1000 steps with 2000 atoms Performance: 5.119 ns/day, 4.689 hours/ns, 59.246 timesteps/s 95.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 | 16.732 | 16.732 | 16.732 | 0.0 | 99.13 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.048762 | 0.048762 | 0.048762 | 0.0 | 0.29 Output | 2.8849e-05 | 2.8849e-05 | 2.8849e-05 | 0.0 | 0.00 Modify | 0.0846 | 0.0846 | 0.0846 | 0.0 | 0.50 Other | | 0.01363 | | | 0.08 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8493 ave 8493 max 8493 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: 816358 ave 816358 max 816358 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 816358 Ave neighs/atom = 408.179 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.377605608229, Press = -1.52850819633756 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 75000 -13394.372 -13394.372 -13465.248 -13465.248 274.29519 274.29519 31211.55 31211.55 -2811.2887 -2811.2887 76000 -13395.47 -13395.47 -13465.359 -13465.359 270.47766 270.47766 31161.314 31161.314 1654.1604 1654.1604 Loop time of 17.9951 on 1 procs for 1000 steps with 2000 atoms Performance: 4.801 ns/day, 4.999 hours/ns, 55.571 timesteps/s 89.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 | 17.849 | 17.849 | 17.849 | 0.0 | 99.19 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.048498 | 0.048498 | 0.048498 | 0.0 | 0.27 Output | 2.1935e-05 | 2.1935e-05 | 2.1935e-05 | 0.0 | 0.00 Modify | 0.08387 | 0.08387 | 0.08387 | 0.0 | 0.47 Other | | 0.01389 | | | 0.08 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8477 ave 8477 max 8477 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: 815068 ave 815068 max 815068 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 815068 Ave neighs/atom = 407.534 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.420660121874, Press = -0.355271042699664 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 76000 -13395.47 -13395.47 -13465.359 -13465.359 270.47766 270.47766 31161.314 31161.314 1654.1604 1654.1604 77000 -13393.508 -13393.508 -13466.282 -13466.282 281.64178 281.64178 31196.398 31196.398 -1489.9014 -1489.9014 Loop time of 17.0065 on 1 procs for 1000 steps with 2000 atoms Performance: 5.080 ns/day, 4.724 hours/ns, 58.801 timesteps/s 95.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 | 16.82 | 16.82 | 16.82 | 0.0 | 98.90 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.048438 | 0.048438 | 0.048438 | 0.0 | 0.28 Output | 2.2173e-05 | 2.2173e-05 | 2.2173e-05 | 0.0 | 0.00 Modify | 0.12439 | 0.12439 | 0.12439 | 0.0 | 0.73 Other | | 0.01386 | | | 0.08 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8486 ave 8486 max 8486 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: 816332 ave 816332 max 816332 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 816332 Ave neighs/atom = 408.166 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.413767009241, Press = -1.04524936100285 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 77000 -13393.508 -13393.508 -13466.282 -13466.282 281.64178 281.64178 31196.398 31196.398 -1489.9014 -1489.9014 78000 -13396.248 -13396.248 -13465.408 -13465.408 267.65266 267.65266 31164.099 31164.099 1344.616 1344.616 Loop time of 18.5648 on 1 procs for 1000 steps with 2000 atoms Performance: 4.654 ns/day, 5.157 hours/ns, 53.865 timesteps/s 87.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 | 18.376 | 18.376 | 18.376 | 0.0 | 98.98 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.048635 | 0.048635 | 0.048635 | 0.0 | 0.26 Output | 1.9789e-05 | 1.9789e-05 | 1.9789e-05 | 0.0 | 0.00 Modify | 0.10596 | 0.10596 | 0.10596 | 0.0 | 0.57 Other | | 0.03383 | | | 0.18 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8489 ave 8489 max 8489 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: 815378 ave 815378 max 815378 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 815378 Ave neighs/atom = 407.689 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.408819393986, Press = -0.451961355534463 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 78000 -13396.248 -13396.248 -13465.408 -13465.408 267.65266 267.65266 31164.099 31164.099 1344.616 1344.616 79000 -13393.59 -13393.59 -13465.953 -13465.953 280.05143 280.05143 31200.773 31200.773 -1857.2049 -1857.2049 Loop time of 17.1902 on 1 procs for 1000 steps with 2000 atoms Performance: 5.026 ns/day, 4.775 hours/ns, 58.173 timesteps/s 93.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 | 17.003 | 17.003 | 17.003 | 0.0 | 98.91 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.068465 | 0.068465 | 0.068465 | 0.0 | 0.40 Output | 2.1935e-05 | 2.1935e-05 | 2.1935e-05 | 0.0 | 0.00 Modify | 0.10511 | 0.10511 | 0.10511 | 0.0 | 0.61 Other | | 0.01373 | | | 0.08 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8485 ave 8485 max 8485 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: 816134 ave 816134 max 816134 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 816134 Ave neighs/atom = 408.067 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.411732666719, Press = -1.18541073761035 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 79000 -13393.59 -13393.59 -13465.953 -13465.953 280.05143 280.05143 31200.773 31200.773 -1857.2049 -1857.2049 80000 -13397.17 -13397.17 -13467.03 -13467.03 270.36758 270.36758 31141.512 31141.512 3230.5021 3230.5021 Loop time of 18.6001 on 1 procs for 1000 steps with 2000 atoms Performance: 4.645 ns/day, 5.167 hours/ns, 53.763 timesteps/s 86.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 | 18.414 | 18.414 | 18.414 | 0.0 | 99.00 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.068501 | 0.068501 | 0.068501 | 0.0 | 0.37 Output | 2.6941e-05 | 2.6941e-05 | 2.6941e-05 | 0.0 | 0.00 Modify | 0.10363 | 0.10363 | 0.10363 | 0.0 | 0.56 Other | | 0.01362 | | | 0.07 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8471 ave 8471 max 8471 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: 815584 ave 815584 max 815584 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 815584 Ave neighs/atom = 407.792 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.395363138463, Press = -0.706699690425395 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 80000 -13397.17 -13397.17 -13467.03 -13467.03 270.36758 270.36758 31141.512 31141.512 3230.5021 3230.5021 81000 -13395.368 -13395.368 -13465.72 -13465.72 272.27136 272.27136 31210.485 31210.485 -2855.1332 -2855.1332 Loop time of 17.8245 on 1 procs for 1000 steps with 2000 atoms Performance: 4.847 ns/day, 4.951 hours/ns, 56.103 timesteps/s 90.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 | 17.578 | 17.578 | 17.578 | 0.0 | 98.62 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.088362 | 0.088362 | 0.088362 | 0.0 | 0.50 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.14465 | 0.14465 | 0.14465 | 0.0 | 0.81 Other | | 0.01368 | | | 0.08 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8477 ave 8477 max 8477 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: 816770 ave 816770 max 816770 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 816770 Ave neighs/atom = 408.385 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.389794436386, Press = -0.659596182964034 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 81000 -13395.368 -13395.368 -13465.72 -13465.72 272.27136 272.27136 31210.485 31210.485 -2855.1332 -2855.1332 82000 -13395.906 -13395.906 -13465.738 -13465.738 270.25648 270.25648 31154.828 31154.828 2300.7461 2300.7461 Loop time of 17.1621 on 1 procs for 1000 steps with 2000 atoms Performance: 5.034 ns/day, 4.767 hours/ns, 58.268 timesteps/s 94.3% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 16.995 | 16.995 | 16.995 | 0.0 | 99.03 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.048486 | 0.048486 | 0.048486 | 0.0 | 0.28 Output | 3.0041e-05 | 3.0041e-05 | 3.0041e-05 | 0.0 | 0.00 Modify | 0.10442 | 0.10442 | 0.10442 | 0.0 | 0.61 Other | | 0.01383 | | | 0.08 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8461 ave 8461 max 8461 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: 814794 ave 814794 max 814794 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 814794 Ave neighs/atom = 407.397 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.34959340725, Press = -0.992912962110322 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 82000 -13395.906 -13395.906 -13465.738 -13465.738 270.25648 270.25648 31154.828 31154.828 2300.7461 2300.7461 83000 -13397.521 -13397.521 -13468.449 -13468.449 274.50044 274.50044 31194.767 31194.767 -1694.3688 -1694.3688 Loop time of 16.8351 on 1 procs for 1000 steps with 2000 atoms Performance: 5.132 ns/day, 4.676 hours/ns, 59.400 timesteps/s 95.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 | 16.69 | 16.69 | 16.69 | 0.0 | 99.14 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.048019 | 0.048019 | 0.048019 | 0.0 | 0.29 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.083718 | 0.083718 | 0.083718 | 0.0 | 0.50 Other | | 0.01363 | | | 0.08 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8479 ave 8479 max 8479 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: 816626 ave 816626 max 816626 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 816626 Ave neighs/atom = 408.313 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.34229327422, Press = -0.302594537195961 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 83000 -13397.521 -13397.521 -13468.449 -13468.449 274.50044 274.50044 31194.767 31194.767 -1694.3688 -1694.3688 84000 -13393.483 -13393.483 -13465.86 -13465.86 280.10618 280.10618 31181.465 31181.465 -126.33297 -126.33297 Loop time of 16.5604 on 1 procs for 1000 steps with 2000 atoms Performance: 5.217 ns/day, 4.600 hours/ns, 60.385 timesteps/s 100.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.412 | 16.412 | 16.412 | 0.0 | 99.11 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.048903 | 0.048903 | 0.048903 | 0.0 | 0.30 Output | 2.1935e-05 | 2.1935e-05 | 2.1935e-05 | 0.0 | 0.00 Modify | 0.085088 | 0.085088 | 0.085088 | 0.0 | 0.51 Other | | 0.01402 | | | 0.08 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8478 ave 8478 max 8478 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: 815584 ave 815584 max 815584 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 815584 Ave neighs/atom = 407.792 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.362178824638, Press = -0.861907327667034 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 84000 -13393.483 -13393.483 -13465.86 -13465.86 280.10618 280.10618 31181.465 31181.465 -126.33297 -126.33297 85000 -13395.653 -13395.653 -13465.805 -13465.805 271.4966 271.4966 31168.279 31168.279 930.39701 930.39701 Loop time of 18.553 on 1 procs for 1000 steps with 2000 atoms Performance: 4.657 ns/day, 5.154 hours/ns, 53.900 timesteps/s 99.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 | 18.366 | 18.366 | 18.366 | 0.0 | 98.99 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.068315 | 0.068315 | 0.068315 | 0.0 | 0.37 Output | 5.722e-05 | 5.722e-05 | 5.722e-05 | 0.0 | 0.00 Modify | 0.10409 | 0.10409 | 0.10409 | 0.0 | 0.56 Other | | 0.01488 | | | 0.08 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8490 ave 8490 max 8490 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: 815784 ave 815784 max 815784 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 815784 Ave neighs/atom = 407.892 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.369428520829, Press = -0.404067492169595 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 85000 -13395.653 -13395.653 -13465.805 -13465.805 271.4966 271.4966 31168.279 31168.279 930.39701 930.39701 86000 -13396.032 -13396.032 -13466.35 -13466.35 272.13706 272.13706 31184.7 31184.7 -585.79608 -585.79608 Loop time of 16.9533 on 1 procs for 1000 steps with 2000 atoms Performance: 5.096 ns/day, 4.709 hours/ns, 58.986 timesteps/s 99.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 | 16.801 | 16.801 | 16.801 | 0.0 | 99.10 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.050649 | 0.050649 | 0.050649 | 0.0 | 0.30 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.08767 | 0.08767 | 0.08767 | 0.0 | 0.52 Other | | 0.01427 | | | 0.08 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8482 ave 8482 max 8482 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: 816416 ave 816416 max 816416 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 816416 Ave neighs/atom = 408.208 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.40319298811, Press = -0.907373780521743 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 86000 -13396.032 -13396.032 -13466.35 -13466.35 272.13706 272.13706 31184.7 31184.7 -585.79608 -585.79608 87000 -13392.92 -13392.92 -13466.405 -13466.405 284.39684 284.39684 31161.735 31161.735 1613.7936 1613.7936 Loop time of 16.2215 on 1 procs for 1000 steps with 2000 atoms Performance: 5.326 ns/day, 4.506 hours/ns, 61.646 timesteps/s 100.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.075 | 16.075 | 16.075 | 0.0 | 99.10 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.048487 | 0.048487 | 0.048487 | 0.0 | 0.30 Output | 2.8849e-05 | 2.8849e-05 | 2.8849e-05 | 0.0 | 0.00 Modify | 0.084285 | 0.084285 | 0.084285 | 0.0 | 0.52 Other | | 0.01385 | | | 0.09 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8480 ave 8480 max 8480 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: 815836 ave 815836 max 815836 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 815836 Ave neighs/atom = 407.918 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.41292235696, Press = -0.684158500595445 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 87000 -13392.92 -13392.92 -13466.405 -13466.405 284.39684 284.39684 31161.735 31161.735 1613.7936 1613.7936 88000 -13396.092 -13396.092 -13465.458 -13465.458 268.45184 268.45184 31206.127 31206.127 -2384.1115 -2384.1115 Loop time of 16.1155 on 1 procs for 1000 steps with 2000 atoms Performance: 5.361 ns/day, 4.477 hours/ns, 62.052 timesteps/s 100.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 | 15.97 | 15.97 | 15.97 | 0.0 | 99.09 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.048113 | 0.048113 | 0.048113 | 0.0 | 0.30 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.084142 | 0.084142 | 0.084142 | 0.0 | 0.52 Other | | 0.01364 | | | 0.08 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8475 ave 8475 max 8475 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: 816088 ave 816088 max 816088 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 816088 Ave neighs/atom = 408.044 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.410817972877, Press = -0.471298319912853 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 88000 -13396.092 -13396.092 -13465.458 -13465.458 268.45184 268.45184 31206.127 31206.127 -2384.1115 -2384.1115 89000 -13396.954 -13396.954 -13467.144 -13467.144 271.64361 271.64361 31154.937 31154.937 1986.2154 1986.2154 Loop time of 16.1605 on 1 procs for 1000 steps with 2000 atoms Performance: 5.346 ns/day, 4.489 hours/ns, 61.879 timesteps/s 99.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 | 16.014 | 16.014 | 16.014 | 0.0 | 99.10 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.04823 | 0.04823 | 0.04823 | 0.0 | 0.30 Output | 2.8133e-05 | 2.8133e-05 | 2.8133e-05 | 0.0 | 0.00 Modify | 0.08407 | 0.08407 | 0.08407 | 0.0 | 0.52 Other | | 0.01373 | | | 0.08 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8481 ave 8481 max 8481 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: 814820 ave 814820 max 814820 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 814820 Ave neighs/atom = 407.41 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.430332128528, Press = -1.08238257591283 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 89000 -13396.954 -13396.954 -13467.144 -13467.144 271.64361 271.64361 31154.937 31154.937 1986.2154 1986.2154 90000 -13394.914 -13394.914 -13464.983 -13464.983 271.17552 271.17552 31184.127 31184.127 -339.97744 -339.97744 Loop time of 16.1602 on 1 procs for 1000 steps with 2000 atoms Performance: 5.346 ns/day, 4.489 hours/ns, 61.881 timesteps/s 100.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.014 | 16.014 | 16.014 | 0.0 | 99.10 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.048181 | 0.048181 | 0.048181 | 0.0 | 0.30 Output | 5.0068e-05 | 5.0068e-05 | 5.0068e-05 | 0.0 | 0.00 Modify | 0.084028 | 0.084028 | 0.084028 | 0.0 | 0.52 Other | | 0.0136 | | | 0.08 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8473 ave 8473 max 8473 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: 816544 ave 816544 max 816544 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 816544 Ave neighs/atom = 408.272 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.423927089231, Press = -0.277836224891899 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 90000 -13394.914 -13394.914 -13464.983 -13464.983 271.17552 271.17552 31184.127 31184.127 -339.97744 -339.97744 91000 -13399.355 -13399.355 -13467.272 -13467.272 262.84744 262.84744 31174.137 31174.137 144.92801 144.92801 Loop time of 16.1739 on 1 procs for 1000 steps with 2000 atoms Performance: 5.342 ns/day, 4.493 hours/ns, 61.828 timesteps/s 100.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.027 | 16.027 | 16.027 | 0.0 | 99.09 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.048418 | 0.048418 | 0.048418 | 0.0 | 0.30 Output | 2.6941e-05 | 2.6941e-05 | 2.6941e-05 | 0.0 | 0.00 Modify | 0.084296 | 0.084296 | 0.084296 | 0.0 | 0.52 Other | | 0.01377 | | | 0.09 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8483 ave 8483 max 8483 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: 815758 ave 815758 max 815758 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 815758 Ave neighs/atom = 407.879 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.399130235236, Press = -0.825874432665433 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 91000 -13399.355 -13399.355 -13467.272 -13467.272 262.84744 262.84744 31174.137 31174.137 144.92801 144.92801 92000 -13397.802 -13397.802 -13466.406 -13466.406 265.50433 265.50433 31171.142 31171.142 596.66617 596.66617 Loop time of 16.2777 on 1 procs for 1000 steps with 2000 atoms Performance: 5.308 ns/day, 4.522 hours/ns, 61.434 timesteps/s 100.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.131 | 16.131 | 16.131 | 0.0 | 99.10 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.048691 | 0.048691 | 0.048691 | 0.0 | 0.30 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.084407 | 0.084407 | 0.084407 | 0.0 | 0.52 Other | | 0.01373 | | | 0.08 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8490 ave 8490 max 8490 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: 816032 ave 816032 max 816032 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 816032 Ave neighs/atom = 408.016 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.383153432524, Press = -0.396280644670917 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 92000 -13397.802 -13397.802 -13466.406 -13466.406 265.50433 265.50433 31171.142 31171.142 596.66617 596.66617 93000 -13395.482 -13395.482 -13465.609 -13465.609 271.39857 271.39857 31196.92 31196.92 -1704.1072 -1704.1072 Loop time of 16.1769 on 1 procs for 1000 steps with 2000 atoms Performance: 5.341 ns/day, 4.494 hours/ns, 61.817 timesteps/s 100.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.03 | 16.03 | 16.03 | 0.0 | 99.09 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.048496 | 0.048496 | 0.048496 | 0.0 | 0.30 Output | 2.5034e-05 | 2.5034e-05 | 2.5034e-05 | 0.0 | 0.00 Modify | 0.084316 | 0.084316 | 0.084316 | 0.0 | 0.52 Other | | 0.01366 | | | 0.08 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8476 ave 8476 max 8476 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: 816120 ave 816120 max 816120 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 816120 Ave neighs/atom = 408.06 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.382112716838, Press = -1.3280446093387 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 93000 -13395.482 -13395.482 -13465.609 -13465.609 271.39857 271.39857 31196.92 31196.92 -1704.1072 -1704.1072 94000 -13394.831 -13394.831 -13466.682 -13466.682 278.07031 278.07031 31143.898 31143.898 3088.3532 3088.3532 Loop time of 15.8368 on 1 procs for 1000 steps with 2000 atoms Performance: 5.456 ns/day, 4.399 hours/ns, 63.144 timesteps/s 100.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 | 15.693 | 15.693 | 15.693 | 0.0 | 99.09 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.047529 | 0.047529 | 0.047529 | 0.0 | 0.30 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.082844 | 0.082844 | 0.082844 | 0.0 | 0.52 Other | | 0.01351 | | | 0.09 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8467 ave 8467 max 8467 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: 815548 ave 815548 max 815548 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 815548 Ave neighs/atom = 407.774 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.376048193033, Press = -0.14953999231587 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 94000 -13394.831 -13394.831 -13466.682 -13466.682 278.07031 278.07031 31143.898 31143.898 3088.3532 3088.3532 95000 -13398.26 -13398.26 -13468.865 -13468.865 273.2506 273.2506 31194.929 31194.929 -1856.7152 -1856.7152 Loop time of 15.5983 on 1 procs for 1000 steps with 2000 atoms Performance: 5.539 ns/day, 4.333 hours/ns, 64.110 timesteps/s 99.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 | 15.455 | 15.455 | 15.455 | 0.0 | 99.08 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.047793 | 0.047793 | 0.047793 | 0.0 | 0.31 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.081904 | 0.081904 | 0.081904 | 0.0 | 0.53 Other | | 0.01314 | | | 0.08 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8484 ave 8484 max 8484 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: 816998 ave 816998 max 816998 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 816998 Ave neighs/atom = 408.499 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.362769734239, Press = -0.93332573341322 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 95000 -13398.26 -13398.26 -13468.865 -13468.865 273.2506 273.2506 31194.929 31194.929 -1856.7152 -1856.7152 96000 -13395.216 -13395.216 -13465.977 -13465.977 273.85275 273.85275 31171.528 31171.528 675.60904 675.60904 Loop time of 15.6236 on 1 procs for 1000 steps with 2000 atoms Performance: 5.530 ns/day, 4.340 hours/ns, 64.006 timesteps/s 100.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 | 15.481 | 15.481 | 15.481 | 0.0 | 99.09 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.046913 | 0.046913 | 0.046913 | 0.0 | 0.30 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.08201 | 0.08201 | 0.08201 | 0.0 | 0.52 Other | | 0.0133 | | | 0.09 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8463 ave 8463 max 8463 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: 815404 ave 815404 max 815404 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 815404 Ave neighs/atom = 407.702 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.347343641795, Press = -0.44676449923627 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 96000 -13395.216 -13395.216 -13465.977 -13465.977 273.85275 273.85275 31171.528 31171.528 675.60904 675.60904 97000 -13395.599 -13395.599 -13466.398 -13466.398 273.99992 273.99992 31182.445 31182.445 -276.46888 -276.46888 Loop time of 15.5837 on 1 procs for 1000 steps with 2000 atoms Performance: 5.544 ns/day, 4.329 hours/ns, 64.170 timesteps/s 100.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 | 15.441 | 15.441 | 15.441 | 0.0 | 99.09 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.047227 | 0.047227 | 0.047227 | 0.0 | 0.30 Output | 2.2888e-05 | 2.2888e-05 | 2.2888e-05 | 0.0 | 0.00 Modify | 0.08181 | 0.08181 | 0.08181 | 0.0 | 0.52 Other | | 0.0133 | | | 0.09 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8482 ave 8482 max 8482 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: 815902 ave 815902 max 815902 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 815902 Ave neighs/atom = 407.951 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.314756260454, Press = -0.974120079548069 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 97000 -13395.599 -13395.599 -13466.398 -13466.398 273.99992 273.99992 31182.445 31182.445 -276.46888 -276.46888 98000 -13397.564 -13397.564 -13467.886 -13467.886 272.15294 272.15294 31154.592 31154.592 1799.8256 1799.8256 Loop time of 15.5326 on 1 procs for 1000 steps with 2000 atoms Performance: 5.562 ns/day, 4.315 hours/ns, 64.381 timesteps/s 100.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 | 15.391 | 15.391 | 15.391 | 0.0 | 99.09 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.046781 | 0.046781 | 0.046781 | 0.0 | 0.30 Output | 2.1935e-05 | 2.1935e-05 | 2.1935e-05 | 0.0 | 0.00 Modify | 0.081542 | 0.081542 | 0.081542 | 0.0 | 0.52 Other | | 0.01325 | | | 0.09 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8481 ave 8481 max 8481 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: 816076 ave 816076 max 816076 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 816076 Ave neighs/atom = 408.038 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.304460764436, Press = -0.351500575431187 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 98000 -13397.564 -13397.564 -13467.886 -13467.886 272.15294 272.15294 31154.592 31154.592 1799.8256 1799.8256 99000 -13390.666 -13390.666 -13461.932 -13461.932 275.80793 275.80793 31200.307 31200.307 -1237.571 -1237.571 Loop time of 15.689 on 1 procs for 1000 steps with 2000 atoms Performance: 5.507 ns/day, 4.358 hours/ns, 63.739 timesteps/s 99.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 | 15.546 | 15.546 | 15.546 | 0.0 | 99.09 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.047139 | 0.047139 | 0.047139 | 0.0 | 0.30 Output | 2.5034e-05 | 2.5034e-05 | 2.5034e-05 | 0.0 | 0.00 Modify | 0.082125 | 0.082125 | 0.082125 | 0.0 | 0.52 Other | | 0.01335 | | | 0.09 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8489 ave 8489 max 8489 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: 816286 ave 816286 max 816286 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 816286 Ave neighs/atom = 408.143 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.318784666972, Press = -0.691211295422137 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 99000 -13390.666 -13390.666 -13461.932 -13461.932 275.80793 275.80793 31200.307 31200.307 -1237.571 -1237.571 100000 -13395.94 -13395.94 -13466.169 -13466.169 271.79371 271.79371 31158.834 31158.834 1840.9205 1840.9205 Loop time of 15.5354 on 1 procs for 1000 steps with 2000 atoms Performance: 5.562 ns/day, 4.315 hours/ns, 64.369 timesteps/s 100.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 | 15.393 | 15.393 | 15.393 | 0.0 | 99.09 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.046669 | 0.046669 | 0.046669 | 0.0 | 0.30 Output | 2.8849e-05 | 2.8849e-05 | 2.8849e-05 | 0.0 | 0.00 Modify | 0.08198 | 0.08198 | 0.08198 | 0.0 | 0.53 Other | | 0.01329 | | | 0.09 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8471 ave 8471 max 8471 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: 815356 ave 815356 max 815356 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 815356 Ave neighs/atom = 407.678 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.33551195595, Press = -0.537914563869796 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 100000 -13395.94 -13395.94 -13466.169 -13466.169 271.79371 271.79371 31158.834 31158.834 1840.9205 1840.9205 101000 -13390.644 -13390.644 -13462.839 -13462.839 279.40181 279.40181 31192.843 31192.843 -781.22033 -781.22033 Loop time of 15.4793 on 1 procs for 1000 steps with 2000 atoms Performance: 5.582 ns/day, 4.300 hours/ns, 64.603 timesteps/s 100.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 | 15.338 | 15.338 | 15.338 | 0.0 | 99.09 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.046881 | 0.046881 | 0.046881 | 0.0 | 0.30 Output | 4.2915e-05 | 4.2915e-05 | 4.2915e-05 | 0.0 | 0.00 Modify | 0.081119 | 0.081119 | 0.081119 | 0.0 | 0.52 Other | | 0.01325 | | | 0.09 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8479 ave 8479 max 8479 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: 816490 ave 816490 max 816490 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 816490 Ave neighs/atom = 408.245 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.361687502149, Press = -0.588699971096519 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 101000 -13390.644 -13390.644 -13462.839 -13462.839 279.40181 279.40181 31192.843 31192.843 -781.22033 -781.22033 102000 -13395.124 -13395.124 -13466.205 -13466.205 275.09197 275.09197 31170.424 31170.424 825.68594 825.68594 Loop time of 15.5269 on 1 procs for 1000 steps with 2000 atoms Performance: 5.565 ns/day, 4.313 hours/ns, 64.404 timesteps/s 100.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 | 15.385 | 15.385 | 15.385 | 0.0 | 99.08 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.047108 | 0.047108 | 0.047108 | 0.0 | 0.30 Output | 2.8849e-05 | 2.8849e-05 | 2.8849e-05 | 0.0 | 0.00 Modify | 0.081861 | 0.081861 | 0.081861 | 0.0 | 0.53 Other | | 0.01343 | | | 0.09 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8479 ave 8479 max 8479 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: 815164 ave 815164 max 815164 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 815164 Ave neighs/atom = 407.582 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.368922748805, Press = -0.836609839748841 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 102000 -13395.124 -13395.124 -13466.205 -13466.205 275.09197 275.09197 31170.424 31170.424 825.68594 825.68594 103000 -13398.595 -13398.595 -13467.365 -13467.365 266.14872 266.14872 31187.147 31187.147 -1116.1037 -1116.1037 Loop time of 15.3538 on 1 procs for 1000 steps with 2000 atoms Performance: 5.627 ns/day, 4.265 hours/ns, 65.130 timesteps/s 100.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 | 15.215 | 15.215 | 15.215 | 0.0 | 99.09 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.046016 | 0.046016 | 0.046016 | 0.0 | 0.30 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.080324 | 0.080324 | 0.080324 | 0.0 | 0.52 Other | | 0.01293 | | | 0.08 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8477 ave 8477 max 8477 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: 816176 ave 816176 max 816176 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 816176 Ave neighs/atom = 408.088 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.36659252825, Press = -0.359216178458144 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 103000 -13398.595 -13398.595 -13467.365 -13467.365 266.14872 266.14872 31187.147 31187.147 -1116.1037 -1116.1037 104000 -13395.053 -13395.053 -13465.681 -13465.681 273.33866 273.33866 31166.764 31166.764 1113.6793 1113.6793 Loop time of 15.0333 on 1 procs for 1000 steps with 2000 atoms Performance: 5.747 ns/day, 4.176 hours/ns, 66.519 timesteps/s 100.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 | 14.895 | 14.895 | 14.895 | 0.0 | 99.08 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.045587 | 0.045587 | 0.045587 | 0.0 | 0.30 Output | 2.8133e-05 | 2.8133e-05 | 2.8133e-05 | 0.0 | 0.00 Modify | 0.079452 | 0.079452 | 0.079452 | 0.0 | 0.53 Other | | 0.01279 | | | 0.09 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8481 ave 8481 max 8481 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: 815478 ave 815478 max 815478 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 815478 Ave neighs/atom = 407.739 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.356249362763, Press = -1.08367451278956 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.664 | 6.664 | 6.664 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 104000 -13395.053 -13395.053 -13465.681 -13465.681 273.33866 273.33866 31166.764 31166.764 1113.6793 1113.6793 105000 -13402.973 -13402.973 -13469.724 -13469.724 258.3321 258.3321 31159.108 31159.108 1080.6722 1080.6722 Loop time of 15.1206 on 1 procs for 1000 steps with 2000 atoms Performance: 5.714 ns/day, 4.200 hours/ns, 66.135 timesteps/s 100.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 | 14.983 | 14.983 | 14.983 | 0.0 | 99.09 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.045523 | 0.045523 | 0.045523 | 0.0 | 0.30 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.079329 | 0.079329 | 0.079329 | 0.0 | 0.52 Other | | 0.0128 | | | 0.08 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8473 ave 8473 max 8473 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: 816282 ave 816282 max 816282 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 816282 Ave neighs/atom = 408.141 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" jump SELF break # Write final averaged volume to file if temperature and volume have converged; otherwise wirte a # flag to indicate non-convergence. variable myStep equal step if "${myStep} < 2000000" then "print '${V}' file output/vol_T273.15.out" else "print 'not_converged' file output/vol_T273.15.out" print '${V}' file output/vol_T273.15.out 31178.8472777593 print "LAMMPS calculation completed" LAMMPS calculation completed quit 0