# 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.158251941204071*${_u_distance} variable latticeconst_converted equal 3.158251941204071*1 lattice bcc ${latticeconst_converted} lattice bcc 3.15825194120407 Lattice spacing in x,y,z = 3.15825 3.15825 3.15825 region simbox block 0 10 0 10 0 10 units lattice create_box 1 simbox Created orthogonal box = (0 0 0) to (31.5825 31.5825 31.5825) 1 by 1 by 1 MPI processor grid create_atoms 1 box Created 2000 atoms create_atoms CPU = 0.000311136 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_1959LowCutoff_Mo__MO_228581001644_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 31502.1587150471 variable V0_metal equal ${V0}/(${_u_distance}*${_u_distance}*${_u_distance}) variable V0_metal equal 31502.1587150471/(${_u_distance}*${_u_distance}*${_u_distance}) variable V0_metal equal 31502.1587150471/(1*${_u_distance}*${_u_distance}) variable V0_metal equal 31502.1587150471/(1*1*${_u_distance}) variable V0_metal equal 31502.1587150471/(1*1*1) variable V0_metal_times1000 equal ${V0_metal}*1000 variable V0_metal_times1000 equal 31502.1587150471*1000 print "Initial system volume: ${V0_metal} Angstroms^3" Initial system volume: 31502.1587150471 Angstroms^3 # set the time step to 0.001 picoseconds variable timestep_converted equal 0.001*${_u_time} variable timestep_converted equal 0.001*1 timestep ${timestep_converted} timestep 0.001 variable temp_converted equal 333.15*${_u_temperature} variable temp_converted equal 333.15*1 variable Tdamp_converted equal 0.1*${_u_time} variable Tdamp_converted equal 0.1*1 variable press_converted equal 0.0*${_u_pressure} variable press_converted equal 0.0*1 variable Pdamp_converted equal 1*${_u_time} variable Pdamp_converted equal 1*1 # create initial velocities consistent with the chosen temperature velocity all create ${temp_converted} 17 mom yes rot yes velocity all create 333.15 17 mom yes rot yes # set NPT ensemble for all atoms fix ensemble all npt temp ${temp_converted} ${temp_converted} ${Tdamp_converted} iso ${press_converted} ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 333.15 ${temp_converted} ${Tdamp_converted} iso ${press_converted} ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 333.15 333.15 ${Tdamp_converted} iso ${press_converted} ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 333.15 333.15 0.1 iso ${press_converted} ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 333.15 333.15 0.1 iso 0 ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 333.15 333.15 0.1 iso 0 0 ${Pdamp_converted} fix ensemble all npt temp 333.15 333.15 0.1 iso 0 0 1 # compute the time averages of pressure, temperature, and volume, respectively # ignore the first 5000 timesteps variable etotal_metal equal etotal/${_u_energy} variable etotal_metal equal etotal/1 variable pe_metal equal pe/${_u_energy} variable pe_metal equal pe/1 variable T_metal equal temp/${_u_temperature} variable T_metal equal temp/1 variable V_metal equal vol/(${_u_distance}*${_u_distance}*${_u_distance}) variable V_metal equal vol/(1*${_u_distance}*${_u_distance}) variable V_metal equal vol/(1*1*${_u_distance}) variable V_metal equal vol/(1*1*1) variable P_metal equal press/${_u_pressure} variable P_metal equal press/1 fix avgmyTemp all ave/time 5 20 100 v_T_metal ave running start 5000 fix avgmyPress all ave/time 5 20 100 v_P_metal ave running start 5000 fix avgmyVol all ave/time 5 20 100 v_V_metal ave running start 5000 # extract fix quantities into variables so they can be used in if-else logic later. variable T equal f_avgmyTemp variable P equal f_avgmyPress variable V equal f_avgmyVol # set error bounds for temperature and pressure in original metal units (K and bar) variable T_low equal "333.15 - 0.2" variable T_up equal "333.15 + 0.2" variable P_low equal "0.0 - 0.2" variable P_up equal "0.0 + 0.2" # print to logfile every 1000 timesteps thermo_style custom step etotal v_etotal_metal pe v_pe_metal temp v_T_metal vol v_V_metal press v_P_metal thermo 1000 # Run a simulation for at most 2000*1000 timesteps. At each 1000th time step, check # whether the temperature and pressure have converged. If yes, break. label top variable a loop 2000 run 1000 Neighbor list info ... update every 1 steps, delay 10 steps, check yes max neighbors/atom: 2000, page size: 100000 master list distance cutoff = 8.48804 ghost atom cutoff = 8.48804 binsize = 4.24402, bins = 8 8 8 1 neighbor lists, perpetual/occasional/extra = 1 0 0 (1) pair kim, perpetual attributes: full, newton off, cut 8.48804 pair build: full/bin/atomonly stencil: full/bin/3d bin: standard Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 0 -12674.08 -12674.08 -12760.163 -12760.163 333.15 333.15 31502.159 31502.159 2918.8155 2918.8155 1000 -12588.031 -12588.031 -12675.454 -12675.454 338.3391 338.3391 31732.23 31732.23 -4148.0283 -4148.0283 Loop time of 6.50993 on 1 procs for 1000 steps with 2000 atoms Performance: 13.272 ns/day, 1.808 hours/ns, 153.612 timesteps/s 73.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 | 6.3667 | 6.3667 | 6.3667 | 0.0 | 97.80 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031765 | 0.031765 | 0.031765 | 0.0 | 0.49 Output | 3.7909e-05 | 3.7909e-05 | 3.7909e-05 | 0.0 | 0.00 Modify | 0.099539 | 0.099539 | 0.099539 | 0.0 | 1.53 Other | | 0.01188 | | | 0.18 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 336000 ave 336000 max 336000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 336000 Ave neighs/atom = 168 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) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 1000 -12588.031 -12588.031 -12675.454 -12675.454 338.3391 338.3391 31732.23 31732.23 -4148.0283 -4148.0283 2000 -12585.076 -12585.076 -12671.56 -12671.56 334.69917 334.69917 31659.406 31659.406 3046.1379 3046.1379 Loop time of 8.48446 on 1 procs for 1000 steps with 2000 atoms Performance: 10.183 ns/day, 2.357 hours/ns, 117.862 timesteps/s 56.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 | 8.3422 | 8.3422 | 8.3422 | 0.0 | 98.32 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031556 | 0.031556 | 0.031556 | 0.0 | 0.37 Output | 3.0994e-05 | 3.0994e-05 | 3.0994e-05 | 0.0 | 0.00 Modify | 0.098772 | 0.098772 | 0.098772 | 0.0 | 1.16 Other | | 0.01195 | | | 0.14 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 334314 ave 334314 max 334314 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 334314 Ave neighs/atom = 167.157 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) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 2000 -12585.076 -12585.076 -12671.56 -12671.56 334.69917 334.69917 31659.406 31659.406 3046.1379 3046.1379 3000 -12590.492 -12590.492 -12674.553 -12674.553 325.32344 325.32344 31696.308 31696.308 -1210.6061 -1210.6061 Loop time of 6.77077 on 1 procs for 1000 steps with 2000 atoms Performance: 12.761 ns/day, 1.881 hours/ns, 147.694 timesteps/s 71.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 | 6.648 | 6.648 | 6.648 | 0.0 | 98.19 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031662 | 0.031662 | 0.031662 | 0.0 | 0.47 Output | 2.8849e-05 | 2.8849e-05 | 2.8849e-05 | 0.0 | 0.00 Modify | 0.079163 | 0.079163 | 0.079163 | 0.0 | 1.17 Other | | 0.01194 | | | 0.18 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 334188 ave 334188 max 334188 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 334188 Ave neighs/atom = 167.094 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) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 3000 -12590.492 -12590.492 -12674.553 -12674.553 325.32344 325.32344 31696.308 31696.308 -1210.6061 -1210.6061 4000 -12584.824 -12584.824 -12672.945 -12672.945 341.03716 341.03716 31676.374 31676.374 1074.3786 1074.3786 Loop time of 6.3376 on 1 procs for 1000 steps with 2000 atoms Performance: 13.633 ns/day, 1.760 hours/ns, 157.788 timesteps/s 76.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 | 6.2136 | 6.2136 | 6.2136 | 0.0 | 98.04 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031311 | 0.031311 | 0.031311 | 0.0 | 0.49 Output | 3.7909e-05 | 3.7909e-05 | 3.7909e-05 | 0.0 | 0.00 Modify | 0.080485 | 0.080485 | 0.080485 | 0.0 | 1.27 Other | | 0.01219 | | | 0.19 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 335282 ave 335282 max 335282 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 335282 Ave neighs/atom = 167.641 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) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 4000 -12584.824 -12584.824 -12672.945 -12672.945 341.03716 341.03716 31676.374 31676.374 1074.3786 1074.3786 5000 -12589.21 -12589.21 -12673.112 -12673.112 324.70843 324.70843 31709.256 31709.256 -2002.8642 -2002.8642 Loop time of 6.18245 on 1 procs for 1000 steps with 2000 atoms Performance: 13.975 ns/day, 1.717 hours/ns, 161.748 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 | 6.058 | 6.058 | 6.058 | 0.0 | 97.99 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.033026 | 0.033026 | 0.033026 | 0.0 | 0.53 Output | 2.5034e-05 | 2.5034e-05 | 2.5034e-05 | 0.0 | 0.00 Modify | 0.079568 | 0.079568 | 0.079568 | 0.0 | 1.29 Other | | 0.01181 | | | 0.19 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 334952 ave 334952 max 334952 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 334952 Ave neighs/atom = 167.476 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 = 327.44393395383, Press = 45.8701137403491 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 5000 -12589.21 -12589.21 -12673.112 -12673.112 324.70843 324.70843 31709.256 31709.256 -2002.8642 -2002.8642 6000 -12590.612 -12590.612 -12674.456 -12674.456 324.4861 324.4861 31636.641 31636.641 3951.0157 3951.0157 Loop time of 6.47141 on 1 procs for 1000 steps with 2000 atoms Performance: 13.351 ns/day, 1.798 hours/ns, 154.526 timesteps/s 74.0% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 6.3265 | 6.3265 | 6.3265 | 0.0 | 97.76 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031389 | 0.031389 | 0.031389 | 0.0 | 0.49 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.10183 | 0.10183 | 0.10183 | 0.0 | 1.57 Other | | 0.0117 | | | 0.18 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 334730 ave 334730 max 334730 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 334730 Ave neighs/atom = 167.365 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 = 332.925026394863, Press = 91.8188223849054 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 6000 -12590.612 -12590.612 -12674.456 -12674.456 324.4861 324.4861 31636.641 31636.641 3951.0157 3951.0157 7000 -12585.625 -12585.625 -12671.138 -12671.138 330.94573 330.94573 31725.716 31725.716 -2840.0117 -2840.0117 Loop time of 6.4965 on 1 procs for 1000 steps with 2000 atoms Performance: 13.299 ns/day, 1.805 hours/ns, 153.929 timesteps/s 74.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 | 6.3104 | 6.3104 | 6.3104 | 0.0 | 97.14 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031374 | 0.031374 | 0.031374 | 0.0 | 0.48 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.14277 | 0.14277 | 0.14277 | 0.0 | 2.20 Other | | 0.01195 | | | 0.18 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 335276 ave 335276 max 335276 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 335276 Ave neighs/atom = 167.638 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 = 331.519975401748, Press = 6.31697396241788 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 7000 -12585.625 -12585.625 -12671.138 -12671.138 330.94573 330.94573 31725.716 31725.716 -2840.0117 -2840.0117 8000 -12588.323 -12588.323 -12675.683 -12675.683 338.09568 338.09568 31662.433 31662.433 1618.8792 1618.8792 Loop time of 7.94675 on 1 procs for 1000 steps with 2000 atoms Performance: 10.872 ns/day, 2.207 hours/ns, 125.838 timesteps/s 61.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 | 7.7999 | 7.7999 | 7.7999 | 0.0 | 98.15 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031783 | 0.031783 | 0.031783 | 0.0 | 0.40 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.10276 | 0.10276 | 0.10276 | 0.0 | 1.29 Other | | 0.01224 | | | 0.15 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 333960 ave 333960 max 333960 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 333960 Ave neighs/atom = 166.98 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 = 331.885036408338, Press = 20.5017226661131 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 8000 -12588.323 -12588.323 -12675.683 -12675.683 338.09568 338.09568 31662.433 31662.433 1618.8792 1618.8792 9000 -12584.317 -12584.317 -12671.63 -12671.63 337.91091 337.91091 31703.899 31703.899 -1419.3457 -1419.3457 Loop time of 6.05086 on 1 procs for 1000 steps with 2000 atoms Performance: 14.279 ns/day, 1.681 hours/ns, 165.266 timesteps/s 79.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 | 5.9065 | 5.9065 | 5.9065 | 0.0 | 97.61 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.030956 | 0.030956 | 0.030956 | 0.0 | 0.51 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.10169 | 0.10169 | 0.10169 | 0.0 | 1.68 Other | | 0.01168 | | | 0.19 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 335394 ave 335394 max 335394 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 335394 Ave neighs/atom = 167.697 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 = 332.749480318489, Press = 3.56654774228228 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 9000 -12584.317 -12584.317 -12671.63 -12671.63 337.91091 337.91091 31703.899 31703.899 -1419.3457 -1419.3457 10000 -12588.611 -12588.611 -12672.769 -12672.769 325.69969 325.69969 31666.688 31666.688 1581.3265 1581.3265 Loop time of 6.38469 on 1 procs for 1000 steps with 2000 atoms Performance: 13.532 ns/day, 1.774 hours/ns, 156.625 timesteps/s 75.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 | 6.1985 | 6.1985 | 6.1985 | 0.0 | 97.08 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.051804 | 0.051804 | 0.051804 | 0.0 | 0.81 Output | 2.1935e-05 | 2.1935e-05 | 2.1935e-05 | 0.0 | 0.00 Modify | 0.12259 | 0.12259 | 0.12259 | 0.0 | 1.92 Other | | 0.01179 | | | 0.18 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 335184 ave 335184 max 335184 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 335184 Ave neighs/atom = 167.592 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 = 333.029091570566, Press = 14.9977863039692 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 10000 -12588.611 -12588.611 -12672.769 -12672.769 325.69969 325.69969 31666.688 31666.688 1581.3265 1581.3265 11000 -12585.68 -12585.68 -12672.941 -12672.941 337.70859 337.70859 31707.74 31707.74 -2057.199 -2057.199 Loop time of 7.92506 on 1 procs for 1000 steps with 2000 atoms Performance: 10.902 ns/day, 2.201 hours/ns, 126.182 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 | 7.7605 | 7.7605 | 7.7605 | 0.0 | 97.92 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.051239 | 0.051239 | 0.051239 | 0.0 | 0.65 Output | 4.4823e-05 | 4.4823e-05 | 4.4823e-05 | 0.0 | 0.00 Modify | 0.10166 | 0.10166 | 0.10166 | 0.0 | 1.28 Other | | 0.01166 | | | 0.15 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 335356 ave 335356 max 335356 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 335356 Ave neighs/atom = 167.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 = 333.69918697475, Press = 2.03112472319209 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 11000 -12585.68 -12585.68 -12672.941 -12672.941 337.70859 337.70859 31707.74 31707.74 -2057.199 -2057.199 12000 -12586.304 -12586.304 -12674.904 -12674.904 342.89274 342.89274 31653.67 31653.67 2666.9258 2666.9258 Loop time of 5.63306 on 1 procs for 1000 steps with 2000 atoms Performance: 15.338 ns/day, 1.565 hours/ns, 177.523 timesteps/s 85.2% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 5.5088 | 5.5088 | 5.5088 | 0.0 | 97.79 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.030985 | 0.030985 | 0.030985 | 0.0 | 0.55 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.081628 | 0.081628 | 0.081628 | 0.0 | 1.45 Other | | 0.01158 | | | 0.21 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 335438 ave 335438 max 335438 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 335438 Ave neighs/atom = 167.719 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 = 333.654852767717, Press = 18.2981809155453 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 12000 -12586.304 -12586.304 -12674.904 -12674.904 342.89274 342.89274 31653.67 31653.67 2666.9258 2666.9258 13000 -12587.231 -12587.231 -12673.383 -12673.383 333.4157 333.4157 31710.249 31710.249 -2554.3374 -2554.3374 Loop time of 7.1393 on 1 procs for 1000 steps with 2000 atoms Performance: 12.102 ns/day, 1.983 hours/ns, 140.070 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 | 6.9407 | 6.9407 | 6.9407 | 0.0 | 97.22 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.053201 | 0.053201 | 0.053201 | 0.0 | 0.75 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.1336 | 0.1336 | 0.1336 | 0.0 | 1.87 Other | | 0.01181 | | | 0.17 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 335128 ave 335128 max 335128 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 335128 Ave neighs/atom = 167.564 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 = 334.068122080452, Press = -2.75817353526574 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 13000 -12587.231 -12587.231 -12673.383 -12673.383 333.4157 333.4157 31710.249 31710.249 -2554.3374 -2554.3374 14000 -12584.717 -12584.717 -12671.863 -12671.863 337.26386 337.26386 31668.497 31668.497 1367.1567 1367.1567 Loop time of 7.46339 on 1 procs for 1000 steps with 2000 atoms Performance: 11.577 ns/day, 2.073 hours/ns, 133.987 timesteps/s 64.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 | 7.2988 | 7.2988 | 7.2988 | 0.0 | 97.79 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031122 | 0.031122 | 0.031122 | 0.0 | 0.42 Output | 2.5034e-05 | 2.5034e-05 | 2.5034e-05 | 0.0 | 0.00 Modify | 0.12173 | 0.12173 | 0.12173 | 0.0 | 1.63 Other | | 0.01173 | | | 0.16 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 335520 ave 335520 max 335520 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 335520 Ave neighs/atom = 167.76 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 = 334.051725363501, Press = 10.331143695874 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 14000 -12584.717 -12584.717 -12671.863 -12671.863 337.26386 337.26386 31668.497 31668.497 1367.1567 1367.1567 15000 -12588.646 -12588.646 -12673.983 -12673.983 330.26266 330.26266 31683.683 31683.683 -129.27785 -129.27785 Loop time of 8.08733 on 1 procs for 1000 steps with 2000 atoms Performance: 10.683 ns/day, 2.246 hours/ns, 123.650 timesteps/s 59.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 | 7.9225 | 7.9225 | 7.9225 | 0.0 | 97.96 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.051239 | 0.051239 | 0.051239 | 0.0 | 0.63 Output | 2.3127e-05 | 2.3127e-05 | 2.3127e-05 | 0.0 | 0.00 Modify | 0.1017 | 0.1017 | 0.1017 | 0.0 | 1.26 Other | | 0.01187 | | | 0.15 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 335748 ave 335748 max 335748 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 335748 Ave neighs/atom = 167.874 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 = 333.844697611412, Press = 2.94684673173122 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 15000 -12588.646 -12588.646 -12673.983 -12673.983 330.26266 330.26266 31683.683 31683.683 -129.27785 -129.27785 16000 -12587.827 -12587.827 -12673.86 -12673.86 332.95736 332.95736 31674.484 31674.484 635.29117 635.29117 Loop time of 5.83689 on 1 procs for 1000 steps with 2000 atoms Performance: 14.802 ns/day, 1.621 hours/ns, 171.324 timesteps/s 82.7% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 5.6731 | 5.6731 | 5.6731 | 0.0 | 97.19 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.03124 | 0.03124 | 0.03124 | 0.0 | 0.54 Output | 2.5988e-05 | 2.5988e-05 | 2.5988e-05 | 0.0 | 0.00 Modify | 0.12079 | 0.12079 | 0.12079 | 0.0 | 2.07 Other | | 0.01175 | | | 0.20 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 335452 ave 335452 max 335452 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 335452 Ave neighs/atom = 167.726 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 = 333.762539056231, Press = 7.71202880345454 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 16000 -12587.827 -12587.827 -12673.86 -12673.86 332.95736 332.95736 31674.484 31674.484 635.29117 635.29117 17000 -12585.396 -12585.396 -12672.782 -12672.782 338.19522 338.19522 31686.829 31686.829 -323.79529 -323.79529 Loop time of 7.32946 on 1 procs for 1000 steps with 2000 atoms Performance: 11.788 ns/day, 2.036 hours/ns, 136.436 timesteps/s 66.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 | 7.1047 | 7.1047 | 7.1047 | 0.0 | 96.93 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.051571 | 0.051571 | 0.051571 | 0.0 | 0.70 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.16141 | 0.16141 | 0.16141 | 0.0 | 2.20 Other | | 0.01173 | | | 0.16 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 335594 ave 335594 max 335594 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 335594 Ave neighs/atom = 167.797 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 = 333.620715034363, Press = 0.674766637401402 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 17000 -12585.396 -12585.396 -12672.782 -12672.782 338.19522 338.19522 31686.829 31686.829 -323.79529 -323.79529 18000 -12589.481 -12589.481 -12674.04 -12674.04 327.25234 327.25234 31682.342 31682.342 -225.08218 -225.08218 Loop time of 7.27291 on 1 procs for 1000 steps with 2000 atoms Performance: 11.880 ns/day, 2.020 hours/ns, 137.497 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 | 7.0881 | 7.0881 | 7.0881 | 0.0 | 97.46 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.071272 | 0.071272 | 0.071272 | 0.0 | 0.98 Output | 2.5988e-05 | 2.5988e-05 | 2.5988e-05 | 0.0 | 0.00 Modify | 0.081832 | 0.081832 | 0.081832 | 0.0 | 1.13 Other | | 0.03172 | | | 0.44 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 335626 ave 335626 max 335626 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 335626 Ave neighs/atom = 167.813 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 = 333.519381993368, Press = 11.7756162328049 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 18000 -12589.481 -12589.481 -12674.04 -12674.04 327.25234 327.25234 31682.342 31682.342 -225.08218 -225.08218 19000 -12589.228 -12589.228 -12675.038 -12675.038 332.09352 332.09352 31682.864 31682.864 -521.29969 -521.29969 Loop time of 7.189 on 1 procs for 1000 steps with 2000 atoms Performance: 12.018 ns/day, 1.997 hours/ns, 139.101 timesteps/s 67.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 | 6.9438 | 6.9438 | 6.9438 | 0.0 | 96.59 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031152 | 0.031152 | 0.031152 | 0.0 | 0.43 Output | 3.0041e-05 | 3.0041e-05 | 3.0041e-05 | 0.0 | 0.00 Modify | 0.14234 | 0.14234 | 0.14234 | 0.0 | 1.98 Other | | 0.07173 | | | 1.00 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 335666 ave 335666 max 335666 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 335666 Ave neighs/atom = 167.833 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 = 333.359180197575, Press = -0.676157368927005 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 19000 -12589.228 -12589.228 -12675.038 -12675.038 332.09352 332.09352 31682.864 31682.864 -521.29969 -521.29969 20000 -12585.071 -12585.071 -12672.126 -12672.126 336.91243 336.91243 31687.719 31687.719 -498.22309 -498.22309 Loop time of 6.85329 on 1 procs for 1000 steps with 2000 atoms Performance: 12.607 ns/day, 1.904 hours/ns, 145.915 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 | 6.6884 | 6.6884 | 6.6884 | 0.0 | 97.59 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.051261 | 0.051261 | 0.051261 | 0.0 | 0.75 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.10186 | 0.10186 | 0.10186 | 0.0 | 1.49 Other | | 0.01173 | | | 0.17 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 335644 ave 335644 max 335644 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 335644 Ave neighs/atom = 167.822 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 = 333.32808821234, Press = 6.44531983466965 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 20000 -12585.071 -12585.071 -12672.126 -12672.126 336.91243 336.91243 31687.719 31687.719 -498.22309 -498.22309 21000 -12584.173 -12584.173 -12672.136 -12672.136 340.42795 340.42795 31679.37 31679.37 444.11795 444.11795 Loop time of 5.65662 on 1 procs for 1000 steps with 2000 atoms Performance: 15.274 ns/day, 1.571 hours/ns, 176.784 timesteps/s 85.2% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 5.4813 | 5.4813 | 5.4813 | 0.0 | 96.90 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031148 | 0.031148 | 0.031148 | 0.0 | 0.55 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.10226 | 0.10226 | 0.10226 | 0.0 | 1.81 Other | | 0.04185 | | | 0.74 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 335658 ave 335658 max 335658 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 335658 Ave neighs/atom = 167.829 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 = 333.307081048365, Press = 0.649157953938299 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 21000 -12584.173 -12584.173 -12672.136 -12672.136 340.42795 340.42795 31679.37 31679.37 444.11795 444.11795 22000 -12586.841 -12586.841 -12673.382 -12673.382 334.9232 334.9232 31700.781 31700.781 -1719.1778 -1719.1778 Loop time of 6.81287 on 1 procs for 1000 steps with 2000 atoms Performance: 12.682 ns/day, 1.892 hours/ns, 146.781 timesteps/s 70.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 | 6.6477 | 6.6477 | 6.6477 | 0.0 | 97.58 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031487 | 0.031487 | 0.031487 | 0.0 | 0.46 Output | 4.6968e-05 | 4.6968e-05 | 4.6968e-05 | 0.0 | 0.00 Modify | 0.12181 | 0.12181 | 0.12181 | 0.0 | 1.79 Other | | 0.01179 | | | 0.17 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 335538 ave 335538 max 335538 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 335538 Ave neighs/atom = 167.769 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 = 333.504678273097, Press = 5.17490719650232 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 22000 -12586.841 -12586.841 -12673.382 -12673.382 334.9232 334.9232 31700.781 31700.781 -1719.1778 -1719.1778 23000 -12586.4 -12586.4 -12674.953 -12674.953 342.71033 342.71033 31651.248 31651.248 2454.1711 2454.1711 Loop time of 6.8594 on 1 procs for 1000 steps with 2000 atoms Performance: 12.596 ns/day, 1.905 hours/ns, 145.785 timesteps/s 70.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 | 6.7135 | 6.7135 | 6.7135 | 0.0 | 97.87 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.05148 | 0.05148 | 0.05148 | 0.0 | 0.75 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.08253 | 0.08253 | 0.08253 | 0.0 | 1.20 Other | | 0.0119 | | | 0.17 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 335620 ave 335620 max 335620 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 335620 Ave neighs/atom = 167.81 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 = 333.472764578087, Press = 1.3403100886222 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 23000 -12586.4 -12586.4 -12674.953 -12674.953 342.71033 342.71033 31651.248 31651.248 2454.1711 2454.1711 24000 -12587.071 -12587.071 -12672.698 -12672.698 331.38728 331.38728 31742.204 31742.204 -5035.7584 -5035.7584 Loop time of 6.78072 on 1 procs for 1000 steps with 2000 atoms Performance: 12.742 ns/day, 1.884 hours/ns, 147.477 timesteps/s 70.9% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 6.636 | 6.636 | 6.636 | 0.0 | 97.87 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031189 | 0.031189 | 0.031189 | 0.0 | 0.46 Output | 2.6226e-05 | 2.6226e-05 | 2.6226e-05 | 0.0 | 0.00 Modify | 0.10179 | 0.10179 | 0.10179 | 0.0 | 1.50 Other | | 0.01173 | | | 0.17 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 335680 ave 335680 max 335680 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 335680 Ave neighs/atom = 167.84 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 = 333.644277693258, Press = 7.21190212038531 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 24000 -12587.071 -12587.071 -12672.698 -12672.698 331.38728 331.38728 31742.204 31742.204 -5035.7584 -5035.7584 25000 -12583.825 -12583.825 -12672.771 -12672.771 344.22841 344.22841 31652.815 31652.815 2699.1102 2699.1102 Loop time of 6.9581 on 1 procs for 1000 steps with 2000 atoms Performance: 12.417 ns/day, 1.933 hours/ns, 143.717 timesteps/s 69.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 | 6.8116 | 6.8116 | 6.8116 | 0.0 | 97.89 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.052779 | 0.052779 | 0.052779 | 0.0 | 0.76 Output | 2.8849e-05 | 2.8849e-05 | 2.8849e-05 | 0.0 | 0.00 Modify | 0.081999 | 0.081999 | 0.081999 | 0.0 | 1.18 Other | | 0.01168 | | | 0.17 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 335106 ave 335106 max 335106 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 335106 Ave neighs/atom = 167.553 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 = 333.654989490696, Press = 1.44262311565224 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 25000 -12583.825 -12583.825 -12672.771 -12672.771 344.22841 344.22841 31652.815 31652.815 2699.1102 2699.1102 26000 -12587.612 -12587.612 -12671.57 -12671.57 324.92635 324.92635 31713.344 31713.344 -2287.2366 -2287.2366 Loop time of 6.41773 on 1 procs for 1000 steps with 2000 atoms Performance: 13.463 ns/day, 1.783 hours/ns, 155.818 timesteps/s 75.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 | 6.1625 | 6.1625 | 6.1625 | 0.0 | 96.02 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.051253 | 0.051253 | 0.051253 | 0.0 | 0.80 Output | 2.0027e-05 | 2.0027e-05 | 2.0027e-05 | 0.0 | 0.00 Modify | 0.19211 | 0.19211 | 0.19211 | 0.0 | 2.99 Other | | 0.01181 | | | 0.18 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 335688 ave 335688 max 335688 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 335688 Ave neighs/atom = 167.844 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 = 333.595982892547, Press = 3.77745270782607 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 26000 -12587.612 -12587.612 -12671.57 -12671.57 324.92635 324.92635 31713.344 31713.344 -2287.2366 -2287.2366 27000 -12588.308 -12588.308 -12673.034 -12673.034 327.90144 327.90144 31653.448 31653.448 2601.6124 2601.6124 Loop time of 6.22593 on 1 procs for 1000 steps with 2000 atoms Performance: 13.877 ns/day, 1.729 hours/ns, 160.619 timesteps/s 77.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 | 6.0608 | 6.0608 | 6.0608 | 0.0 | 97.35 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.05148 | 0.05148 | 0.05148 | 0.0 | 0.83 Output | 4.6015e-05 | 4.6015e-05 | 4.6015e-05 | 0.0 | 0.00 Modify | 0.081817 | 0.081817 | 0.081817 | 0.0 | 1.31 Other | | 0.0318 | | | 0.51 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 335122 ave 335122 max 335122 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 335122 Ave neighs/atom = 167.561 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 = 333.466153892541, Press = 3.40346716221984 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 27000 -12588.308 -12588.308 -12673.034 -12673.034 327.90144 327.90144 31653.448 31653.448 2601.6124 2601.6124 28000 -12587.223 -12587.223 -12672.749 -12672.749 330.99529 330.99529 31706.158 31706.158 -1832.1765 -1832.1765 Loop time of 6.02838 on 1 procs for 1000 steps with 2000 atoms Performance: 14.332 ns/day, 1.675 hours/ns, 165.882 timesteps/s 79.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 | 5.8649 | 5.8649 | 5.8649 | 0.0 | 97.29 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.030754 | 0.030754 | 0.030754 | 0.0 | 0.51 Output | 2.8849e-05 | 2.8849e-05 | 2.8849e-05 | 0.0 | 0.00 Modify | 0.10105 | 0.10105 | 0.10105 | 0.0 | 1.68 Other | | 0.03166 | | | 0.53 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 335534 ave 335534 max 335534 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 335534 Ave neighs/atom = 167.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 = 333.485758023222, Press = 2.78542993404439 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 28000 -12587.223 -12587.223 -12672.749 -12672.749 330.99529 330.99529 31706.158 31706.158 -1832.1765 -1832.1765 29000 -12582.57 -12582.57 -12673.427 -12673.427 351.62521 351.62521 31658.659 31658.659 2247.916 2247.916 Loop time of 5.45579 on 1 procs for 1000 steps with 2000 atoms Performance: 15.836 ns/day, 1.515 hours/ns, 183.292 timesteps/s 88.7% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 5.3269 | 5.3269 | 5.3269 | 0.0 | 97.64 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.030992 | 0.030992 | 0.030992 | 0.0 | 0.57 Output | 2.8849e-05 | 2.8849e-05 | 2.8849e-05 | 0.0 | 0.00 Modify | 0.086194 | 0.086194 | 0.086194 | 0.0 | 1.58 Other | | 0.01171 | | | 0.21 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 335162 ave 335162 max 335162 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 335162 Ave neighs/atom = 167.581 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 = 333.527766711254, Press = 2.37913565723524 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 29000 -12582.57 -12582.57 -12673.427 -12673.427 351.62521 351.62521 31658.659 31658.659 2247.916 2247.916 30000 -12588.283 -12588.283 -12674.41 -12674.41 333.32339 333.32339 31747.813 31747.813 -5622.0406 -5622.0406 Loop time of 5.47563 on 1 procs for 1000 steps with 2000 atoms Performance: 15.779 ns/day, 1.521 hours/ns, 182.627 timesteps/s 88.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 | 5.3091 | 5.3091 | 5.3091 | 0.0 | 96.96 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031226 | 0.031226 | 0.031226 | 0.0 | 0.57 Output | 2.8849e-05 | 2.8849e-05 | 2.8849e-05 | 0.0 | 0.00 Modify | 0.083512 | 0.083512 | 0.083512 | 0.0 | 1.53 Other | | 0.05178 | | | 0.95 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 335660 ave 335660 max 335660 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 335660 Ave neighs/atom = 167.83 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 = 333.580967262196, Press = 1.26727040224492 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 30000 -12588.283 -12588.283 -12674.41 -12674.41 333.32339 333.32339 31747.813 31747.813 -5622.0406 -5622.0406 31000 -12583.67 -12583.67 -12672.134 -12672.134 342.36735 342.36735 31646.453 31646.453 3568.5077 3568.5077 Loop time of 5.14239 on 1 procs for 1000 steps with 2000 atoms Performance: 16.802 ns/day, 1.428 hours/ns, 194.462 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 | 5.0163 | 5.0163 | 5.0163 | 0.0 | 97.55 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031354 | 0.031354 | 0.031354 | 0.0 | 0.61 Output | 2.1935e-05 | 2.1935e-05 | 2.1935e-05 | 0.0 | 0.00 Modify | 0.082916 | 0.082916 | 0.082916 | 0.0 | 1.61 Other | | 0.01175 | | | 0.23 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 334972 ave 334972 max 334972 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 334972 Ave neighs/atom = 167.486 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 = 333.679508174866, Press = 3.44268203542947 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 31000 -12583.67 -12583.67 -12672.134 -12672.134 342.36735 342.36735 31646.453 31646.453 3568.5077 3568.5077 32000 -12589.901 -12589.901 -12675.692 -12675.692 332.01799 332.01799 31704.824 31704.824 -2074.3311 -2074.3311 Loop time of 5.15162 on 1 procs for 1000 steps with 2000 atoms Performance: 16.771 ns/day, 1.431 hours/ns, 194.114 timesteps/s 94.9% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 5.0253 | 5.0253 | 5.0253 | 0.0 | 97.55 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031371 | 0.031371 | 0.031371 | 0.0 | 0.61 Output | 2.718e-05 | 2.718e-05 | 2.718e-05 | 0.0 | 0.00 Modify | 0.08303 | 0.08303 | 0.08303 | 0.0 | 1.61 Other | | 0.01189 | | | 0.23 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 335266 ave 335266 max 335266 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 335266 Ave neighs/atom = 167.633 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 = 333.682412744097, Press = 1.83484178597213 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 32000 -12589.901 -12589.901 -12675.692 -12675.692 332.01799 332.01799 31704.824 31704.824 -2074.3311 -2074.3311 33000 -12587.879 -12587.879 -12673.035 -12673.035 329.56269 329.56269 31667.33 31667.33 1573.0836 1573.0836 Loop time of 5.4545 on 1 procs for 1000 steps with 2000 atoms Performance: 15.840 ns/day, 1.515 hours/ns, 183.335 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 | 5.3092 | 5.3092 | 5.3092 | 0.0 | 97.34 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031331 | 0.031331 | 0.031331 | 0.0 | 0.57 Output | 2.8849e-05 | 2.8849e-05 | 2.8849e-05 | 0.0 | 0.00 Modify | 0.10225 | 0.10225 | 0.10225 | 0.0 | 1.87 Other | | 0.0117 | | | 0.21 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 335110 ave 335110 max 335110 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 335110 Ave neighs/atom = 167.555 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 = 333.725501943688, Press = 3.2653765676618 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 33000 -12587.879 -12587.879 -12673.035 -12673.035 329.56269 329.56269 31667.33 31667.33 1573.0836 1573.0836 34000 -12583.985 -12583.985 -12670.958 -12670.958 336.59219 336.59219 31702.996 31702.996 -1170.6078 -1170.6078 Loop time of 4.8918 on 1 procs for 1000 steps with 2000 atoms Performance: 17.662 ns/day, 1.359 hours/ns, 204.424 timesteps/s 98.1% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 4.7642 | 4.7642 | 4.7642 | 0.0 | 97.39 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031387 | 0.031387 | 0.031387 | 0.0 | 0.64 Output | 2.718e-05 | 2.718e-05 | 2.718e-05 | 0.0 | 0.00 Modify | 0.084455 | 0.084455 | 0.084455 | 0.0 | 1.73 Other | | 0.01175 | | | 0.24 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 335064 ave 335064 max 335064 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 335064 Ave neighs/atom = 167.532 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 = 333.754739610826, Press = 1.37369079095817 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 34000 -12583.985 -12583.985 -12670.958 -12670.958 336.59219 336.59219 31702.996 31702.996 -1170.6078 -1170.6078 35000 -12588.022 -12588.022 -12674.378 -12674.378 334.20405 334.20405 31684.787 31684.787 -42.957545 -42.957545 Loop time of 6.27654 on 1 procs for 1000 steps with 2000 atoms Performance: 13.766 ns/day, 1.743 hours/ns, 159.323 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 | 6.1509 | 6.1509 | 6.1509 | 0.0 | 98.00 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031065 | 0.031065 | 0.031065 | 0.0 | 0.49 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.082196 | 0.082196 | 0.082196 | 0.0 | 1.31 Other | | 0.01231 | | | 0.20 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 335166 ave 335166 max 335166 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 335166 Ave neighs/atom = 167.583 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 = 333.771450471834, Press = 2.59946278442647 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 35000 -12588.022 -12588.022 -12674.378 -12674.378 334.20405 334.20405 31684.787 31684.787 -42.957545 -42.957545 36000 -12590.792 -12590.792 -12674.648 -12674.648 324.53041 324.53041 31699.394 31699.394 -1666.8195 -1666.8195 Loop time of 6.21181 on 1 procs for 1000 steps with 2000 atoms Performance: 13.909 ns/day, 1.726 hours/ns, 160.984 timesteps/s 77.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 | 5.9916 | 5.9916 | 5.9916 | 0.0 | 96.45 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031327 | 0.031327 | 0.031327 | 0.0 | 0.50 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.1771 | 0.1771 | 0.1771 | 0.0 | 2.85 Other | | 0.01176 | | | 0.19 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 334900 ave 334900 max 334900 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 334900 Ave neighs/atom = 167.45 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 = 333.756749882059, Press = 0.448194949205632 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 36000 -12590.792 -12590.792 -12674.648 -12674.648 324.53041 324.53041 31699.394 31699.394 -1666.8195 -1666.8195 37000 -12585.628 -12585.628 -12671.249 -12671.249 331.36162 331.36162 31676.262 31676.262 1173.8723 1173.8723 Loop time of 5.40583 on 1 procs for 1000 steps with 2000 atoms Performance: 15.983 ns/day, 1.502 hours/ns, 184.986 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 | 5.2613 | 5.2613 | 5.2613 | 0.0 | 97.33 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031015 | 0.031015 | 0.031015 | 0.0 | 0.57 Output | 2.1935e-05 | 2.1935e-05 | 2.1935e-05 | 0.0 | 0.00 Modify | 0.10197 | 0.10197 | 0.10197 | 0.0 | 1.89 Other | | 0.01156 | | | 0.21 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 335648 ave 335648 max 335648 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 335648 Ave neighs/atom = 167.824 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 = 333.695007405306, Press = 3.43771951929412 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 37000 -12585.628 -12585.628 -12671.249 -12671.249 331.36162 331.36162 31676.262 31676.262 1173.8723 1173.8723 38000 -12587.86 -12587.86 -12672.644 -12672.644 328.11993 328.11993 31700.712 31700.712 -1480.7444 -1480.7444 Loop time of 5.94409 on 1 procs for 1000 steps with 2000 atoms Performance: 14.535 ns/day, 1.651 hours/ns, 168.234 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 | 5.7992 | 5.7992 | 5.7992 | 0.0 | 97.56 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031118 | 0.031118 | 0.031118 | 0.0 | 0.52 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.10184 | 0.10184 | 0.10184 | 0.0 | 1.71 Other | | 0.01185 | | | 0.20 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 334712 ave 334712 max 334712 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 334712 Ave neighs/atom = 167.356 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 333.683361750552, Press = 0.307072951970863 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 38000 -12587.86 -12587.86 -12672.644 -12672.644 328.11993 328.11993 31700.712 31700.712 -1480.7444 -1480.7444 39000 -12585.806 -12585.806 -12672.659 -12672.659 336.13264 336.13264 31670.119 31670.119 1286.2603 1286.2603 Loop time of 5.398 on 1 procs for 1000 steps with 2000 atoms Performance: 16.006 ns/day, 1.499 hours/ns, 185.254 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 | 5.2724 | 5.2724 | 5.2724 | 0.0 | 97.67 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031179 | 0.031179 | 0.031179 | 0.0 | 0.58 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.082679 | 0.082679 | 0.082679 | 0.0 | 1.53 Other | | 0.01168 | | | 0.22 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 335348 ave 335348 max 335348 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 335348 Ave neighs/atom = 167.674 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 = 333.722992723805, Press = 3.14443396990758 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 39000 -12585.806 -12585.806 -12672.659 -12672.659 336.13264 336.13264 31670.119 31670.119 1286.2603 1286.2603 40000 -12589.038 -12589.038 -12672.646 -12672.646 323.57076 323.57076 31703.321 31703.321 -1137.5482 -1137.5482 Loop time of 5.03405 on 1 procs for 1000 steps with 2000 atoms Performance: 17.163 ns/day, 1.398 hours/ns, 198.647 timesteps/s 94.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 | 4.9099 | 4.9099 | 4.9099 | 0.0 | 97.53 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031083 | 0.031083 | 0.031083 | 0.0 | 0.62 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.081326 | 0.081326 | 0.081326 | 0.0 | 1.62 Other | | 0.01168 | | | 0.23 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 335230 ave 335230 max 335230 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 335230 Ave neighs/atom = 167.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 = 333.724203615085, Press = 0.639940429527301 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 40000 -12589.038 -12589.038 -12672.646 -12672.646 323.57076 323.57076 31703.321 31703.321 -1137.5482 -1137.5482 41000 -12588.386 -12588.386 -12674.751 -12674.751 334.24532 334.24532 31674.748 31674.748 556.69107 556.69107 Loop time of 5.00842 on 1 procs for 1000 steps with 2000 atoms Performance: 17.251 ns/day, 1.391 hours/ns, 199.664 timesteps/s 96.2% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 4.8834 | 4.8834 | 4.8834 | 0.0 | 97.50 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031099 | 0.031099 | 0.031099 | 0.0 | 0.62 Output | 2.408e-05 | 2.408e-05 | 2.408e-05 | 0.0 | 0.00 Modify | 0.082132 | 0.082132 | 0.082132 | 0.0 | 1.64 Other | | 0.01181 | | | 0.24 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 333874 ave 333874 max 333874 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 333874 Ave neighs/atom = 166.937 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 = 333.667320606499, Press = 2.40251502895372 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 41000 -12588.386 -12588.386 -12674.751 -12674.751 334.24532 334.24532 31674.748 31674.748 556.69107 556.69107 42000 -12588.943 -12588.943 -12673.562 -12673.562 327.48326 327.48326 31693.596 31693.596 -493.39143 -493.39143 Loop time of 5.08076 on 1 procs for 1000 steps with 2000 atoms Performance: 17.005 ns/day, 1.411 hours/ns, 196.821 timesteps/s 95.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 | 4.9548 | 4.9548 | 4.9548 | 0.0 | 97.52 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031658 | 0.031658 | 0.031658 | 0.0 | 0.62 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.082395 | 0.082395 | 0.082395 | 0.0 | 1.62 Other | | 0.01189 | | | 0.23 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 335474 ave 335474 max 335474 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 335474 Ave neighs/atom = 167.737 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 = 333.651182367436, Press = 1.15254068473082 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 42000 -12588.943 -12588.943 -12673.562 -12673.562 327.48326 327.48326 31693.596 31693.596 -493.39143 -493.39143 43000 -12580.877 -12580.877 -12667.776 -12667.776 336.30693 336.30693 31682.246 31682.246 1058.4432 1058.4432 Loop time of 5.05921 on 1 procs for 1000 steps with 2000 atoms Performance: 17.078 ns/day, 1.405 hours/ns, 197.659 timesteps/s 94.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 | 4.9349 | 4.9349 | 4.9349 | 0.0 | 97.54 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.030999 | 0.030999 | 0.030999 | 0.0 | 0.61 Output | 2.1935e-05 | 2.1935e-05 | 2.1935e-05 | 0.0 | 0.00 Modify | 0.081555 | 0.081555 | 0.081555 | 0.0 | 1.61 Other | | 0.01168 | | | 0.23 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 334390 ave 334390 max 334390 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 334390 Ave neighs/atom = 167.195 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 = 333.688719494002, Press = 2.3176797295843 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 43000 -12580.877 -12580.877 -12667.776 -12667.776 336.30693 336.30693 31682.246 31682.246 1058.4432 1058.4432 44000 -12587.587 -12587.587 -12674.378 -12674.378 335.89064 335.89064 31691.677 31691.677 -822.91138 -822.91138 Loop time of 4.86372 on 1 procs for 1000 steps with 2000 atoms Performance: 17.764 ns/day, 1.351 hours/ns, 205.604 timesteps/s 99.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 | 4.739 | 4.739 | 4.739 | 0.0 | 97.44 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031078 | 0.031078 | 0.031078 | 0.0 | 0.64 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.081977 | 0.081977 | 0.081977 | 0.0 | 1.69 Other | | 0.01161 | | | 0.24 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 335064 ave 335064 max 335064 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 335064 Ave neighs/atom = 167.532 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 = 333.743115406238, Press = -0.466718331365762 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 44000 -12587.587 -12587.587 -12674.378 -12674.378 335.89064 335.89064 31691.677 31691.677 -822.91138 -822.91138 45000 -12586.313 -12586.313 -12672.503 -12672.503 333.56585 333.56585 31684.297 31684.297 312.15978 312.15978 Loop time of 5.14849 on 1 procs for 1000 steps with 2000 atoms Performance: 16.782 ns/day, 1.430 hours/ns, 194.232 timesteps/s 92.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 | 5.0235 | 5.0235 | 5.0235 | 0.0 | 97.57 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.030964 | 0.030964 | 0.030964 | 0.0 | 0.60 Output | 2.6941e-05 | 2.6941e-05 | 2.6941e-05 | 0.0 | 0.00 Modify | 0.082116 | 0.082116 | 0.082116 | 0.0 | 1.59 Other | | 0.01193 | | | 0.23 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 335230 ave 335230 max 335230 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 335230 Ave neighs/atom = 167.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 = 333.715812235096, Press = 2.53361791371962 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 45000 -12586.313 -12586.313 -12672.503 -12672.503 333.56585 333.56585 31684.297 31684.297 312.15978 312.15978 46000 -12592.077 -12592.077 -12676.48 -12676.48 326.64824 326.64824 31664.148 31664.148 889.24109 889.24109 Loop time of 5.03542 on 1 procs for 1000 steps with 2000 atoms Performance: 17.158 ns/day, 1.399 hours/ns, 198.593 timesteps/s 94.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 | 4.912 | 4.912 | 4.912 | 0.0 | 97.55 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.030962 | 0.030962 | 0.030962 | 0.0 | 0.61 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.080936 | 0.080936 | 0.080936 | 0.0 | 1.61 Other | | 0.01154 | | | 0.23 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 334658 ave 334658 max 334658 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 334658 Ave neighs/atom = 167.329 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 = 333.646203877484, Press = 0.196201674604227 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 46000 -12592.077 -12592.077 -12676.48 -12676.48 326.64824 326.64824 31664.148 31664.148 889.24109 889.24109 47000 -12585.108 -12585.108 -12669.427 -12669.427 326.32151 326.32151 31709.016 31709.016 -1231.7571 -1231.7571 Loop time of 5.89287 on 1 procs for 1000 steps with 2000 atoms Performance: 14.662 ns/day, 1.637 hours/ns, 169.697 timesteps/s 81.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 | 5.7478 | 5.7478 | 5.7478 | 0.0 | 97.54 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031231 | 0.031231 | 0.031231 | 0.0 | 0.53 Output | 6.2943e-05 | 6.2943e-05 | 6.2943e-05 | 0.0 | 0.00 Modify | 0.08202 | 0.08202 | 0.08202 | 0.0 | 1.39 Other | | 0.03178 | | | 0.54 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 335724 ave 335724 max 335724 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 335724 Ave neighs/atom = 167.862 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 = 333.614312243054, Press = 2.00400436504283 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 47000 -12585.108 -12585.108 -12669.427 -12669.427 326.32151 326.32151 31709.016 31709.016 -1231.7571 -1231.7571 48000 -12588.774 -12588.774 -12673.78 -12673.78 328.9853 328.9853 31666.277 31666.277 1123.8866 1123.8866 Loop time of 5.14728 on 1 procs for 1000 steps with 2000 atoms Performance: 16.786 ns/day, 1.430 hours/ns, 194.277 timesteps/s 94.2% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 5.0204 | 5.0204 | 5.0204 | 0.0 | 97.54 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031465 | 0.031465 | 0.031465 | 0.0 | 0.61 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.08358 | 0.08358 | 0.08358 | 0.0 | 1.62 Other | | 0.0118 | | | 0.23 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 333992 ave 333992 max 333992 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 333992 Ave neighs/atom = 166.996 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 = 333.650497282154, Press = 1.06371351091988 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 48000 -12588.774 -12588.774 -12673.78 -12673.78 328.9853 328.9853 31666.277 31666.277 1123.8866 1123.8866 49000 -12586.954 -12586.954 -12672.951 -12672.951 332.81662 332.81662 31708.038 31708.038 -1575.7203 -1575.7203 Loop time of 5.83364 on 1 procs for 1000 steps with 2000 atoms Performance: 14.811 ns/day, 1.620 hours/ns, 171.420 timesteps/s 83.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 | 5.6684 | 5.6684 | 5.6684 | 0.0 | 97.17 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.05122 | 0.05122 | 0.05122 | 0.0 | 0.88 Output | 2.2173e-05 | 2.2173e-05 | 2.2173e-05 | 0.0 | 0.00 Modify | 0.10224 | 0.10224 | 0.10224 | 0.0 | 1.75 Other | | 0.01173 | | | 0.20 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 335730 ave 335730 max 335730 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 335730 Ave neighs/atom = 167.865 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 = 333.694100447746, Press = 2.0115550247692 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 49000 -12586.954 -12586.954 -12672.951 -12672.951 332.81662 332.81662 31708.038 31708.038 -1575.7203 -1575.7203 50000 -12589.524 -12589.524 -12674.032 -12674.032 327.05472 327.05472 31658.729 31658.729 2078.4622 2078.4622 Loop time of 5.55735 on 1 procs for 1000 steps with 2000 atoms Performance: 15.547 ns/day, 1.544 hours/ns, 179.942 timesteps/s 86.2% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 5.433 | 5.433 | 5.433 | 0.0 | 97.76 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.03136 | 0.03136 | 0.03136 | 0.0 | 0.56 Output | 2.6941e-05 | 2.6941e-05 | 2.6941e-05 | 0.0 | 0.00 Modify | 0.08132 | 0.08132 | 0.08132 | 0.0 | 1.46 Other | | 0.01161 | | | 0.21 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 334166 ave 334166 max 334166 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 334166 Ave neighs/atom = 167.083 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 333.686589508753, Press = 0.719849347066673 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 50000 -12589.524 -12589.524 -12674.032 -12674.032 327.05472 327.05472 31658.729 31658.729 2078.4622 2078.4622 51000 -12583.532 -12583.532 -12671.258 -12671.258 339.51163 339.51163 31743.756 31743.756 -4644.3044 -4644.3044 Loop time of 5.1846 on 1 procs for 1000 steps with 2000 atoms Performance: 16.665 ns/day, 1.440 hours/ns, 192.879 timesteps/s 93.7% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 5.0191 | 5.0191 | 5.0191 | 0.0 | 96.81 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.051317 | 0.051317 | 0.051317 | 0.0 | 0.99 Output | 2.6941e-05 | 2.6941e-05 | 2.6941e-05 | 0.0 | 0.00 Modify | 0.10255 | 0.10255 | 0.10255 | 0.0 | 1.98 Other | | 0.01165 | | | 0.22 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 335286 ave 335286 max 335286 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 335286 Ave neighs/atom = 167.643 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 = 333.714399634449, Press = 2.27863805278233 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 51000 -12583.532 -12583.532 -12671.258 -12671.258 339.51163 339.51163 31743.756 31743.756 -4644.3044 -4644.3044 52000 -12584.392 -12584.392 -12671.602 -12671.602 337.50892 337.50892 31651.241 31651.241 3529.325 3529.325 Loop time of 4.99545 on 1 procs for 1000 steps with 2000 atoms Performance: 17.296 ns/day, 1.388 hours/ns, 200.182 timesteps/s 96.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 | 4.8692 | 4.8692 | 4.8692 | 0.0 | 97.47 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031364 | 0.031364 | 0.031364 | 0.0 | 0.63 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.082959 | 0.082959 | 0.082959 | 0.0 | 1.66 Other | | 0.01186 | | | 0.24 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 334812 ave 334812 max 334812 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 334812 Ave neighs/atom = 167.406 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 = 333.713423907051, Press = 0.633296532610324 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 52000 -12584.392 -12584.392 -12671.602 -12671.602 337.50892 337.50892 31651.241 31651.241 3529.325 3529.325 53000 -12585.235 -12585.235 -12671.673 -12671.673 334.52445 334.52445 31707.875 31707.875 -2071.2829 -2071.2829 Loop time of 5.64026 on 1 procs for 1000 steps with 2000 atoms Performance: 15.318 ns/day, 1.567 hours/ns, 177.297 timesteps/s 85.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 | 5.4754 | 5.4754 | 5.4754 | 0.0 | 97.08 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.051294 | 0.051294 | 0.051294 | 0.0 | 0.91 Output | 2.2888e-05 | 2.2888e-05 | 2.2888e-05 | 0.0 | 0.00 Modify | 0.10175 | 0.10175 | 0.10175 | 0.0 | 1.80 Other | | 0.0118 | | | 0.21 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 334594 ave 334594 max 334594 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 334594 Ave neighs/atom = 167.297 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 = 333.68491903069, Press = 1.61916893662633 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 53000 -12585.235 -12585.235 -12671.673 -12671.673 334.52445 334.52445 31707.875 31707.875 -2071.2829 -2071.2829 54000 -12587.356 -12587.356 -12674.792 -12674.792 338.38487 338.38487 31669.656 31669.656 1147.8704 1147.8704 Loop time of 6.18165 on 1 procs for 1000 steps with 2000 atoms Performance: 13.977 ns/day, 1.717 hours/ns, 161.769 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 | 5.9965 | 5.9965 | 5.9965 | 0.0 | 97.01 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.071158 | 0.071158 | 0.071158 | 0.0 | 1.15 Output | 4.0054e-05 | 4.0054e-05 | 4.0054e-05 | 0.0 | 0.00 Modify | 0.10215 | 0.10215 | 0.10215 | 0.0 | 1.65 Other | | 0.01176 | | | 0.19 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 335652 ave 335652 max 335652 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 335652 Ave neighs/atom = 167.826 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 = 333.708887262999, Press = 1.21137384631055 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 54000 -12587.356 -12587.356 -12674.792 -12674.792 338.38487 338.38487 31669.656 31669.656 1147.8704 1147.8704 55000 -12584.534 -12584.534 -12669.463 -12669.463 328.68367 328.68367 31693.564 31693.564 -458.0405 -458.0405 Loop time of 5.09221 on 1 procs for 1000 steps with 2000 atoms Performance: 16.967 ns/day, 1.415 hours/ns, 196.378 timesteps/s 95.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 | 4.927 | 4.927 | 4.927 | 0.0 | 96.76 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031381 | 0.031381 | 0.031381 | 0.0 | 0.62 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.10203 | 0.10203 | 0.10203 | 0.0 | 2.00 Other | | 0.03174 | | | 0.62 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 335318 ave 335318 max 335318 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 335318 Ave neighs/atom = 167.659 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 = 333.760014210121, Press = 1.32559656630674 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 55000 -12584.534 -12584.534 -12669.463 -12669.463 328.68367 328.68367 31693.564 31693.564 -458.0405 -458.0405 56000 -12584.946 -12584.946 -12670.353 -12670.353 330.53359 330.53359 31682.213 31682.213 773.31019 773.31019 Loop time of 5.2132 on 1 procs for 1000 steps with 2000 atoms Performance: 16.573 ns/day, 1.448 hours/ns, 191.821 timesteps/s 93.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 | 5.0876 | 5.0876 | 5.0876 | 0.0 | 97.59 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031312 | 0.031312 | 0.031312 | 0.0 | 0.60 Output | 2.5988e-05 | 2.5988e-05 | 2.5988e-05 | 0.0 | 0.00 Modify | 0.082479 | 0.082479 | 0.082479 | 0.0 | 1.58 Other | | 0.0118 | | | 0.23 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 335500 ave 335500 max 335500 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 335500 Ave neighs/atom = 167.75 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 = 333.744662781491, Press = 0.683208446806198 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 56000 -12584.946 -12584.946 -12670.353 -12670.353 330.53359 330.53359 31682.213 31682.213 773.31019 773.31019 57000 -12587.473 -12587.473 -12673.941 -12673.941 334.63924 334.63924 31690.867 31690.867 -977.76859 -977.76859 Loop time of 4.90318 on 1 procs for 1000 steps with 2000 atoms Performance: 17.621 ns/day, 1.362 hours/ns, 203.949 timesteps/s 98.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 | 4.7765 | 4.7765 | 4.7765 | 0.0 | 97.42 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031314 | 0.031314 | 0.031314 | 0.0 | 0.64 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.083171 | 0.083171 | 0.083171 | 0.0 | 1.70 Other | | 0.01214 | | | 0.25 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 334786 ave 334786 max 334786 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 334786 Ave neighs/atom = 167.393 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 = 333.730844058214, Press = 1.91815106792111 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 57000 -12587.473 -12587.473 -12673.941 -12673.941 334.63924 334.63924 31690.867 31690.867 -977.76859 -977.76859 58000 -12584.052 -12584.052 -12671.81 -12671.81 339.63575 339.63575 31688.448 31688.448 -183.55983 -183.55983 Loop time of 4.92411 on 1 procs for 1000 steps with 2000 atoms Performance: 17.546 ns/day, 1.368 hours/ns, 203.082 timesteps/s 98.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 | 4.7982 | 4.7982 | 4.7982 | 0.0 | 97.44 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031317 | 0.031317 | 0.031317 | 0.0 | 0.64 Output | 2.9802e-05 | 2.9802e-05 | 2.9802e-05 | 0.0 | 0.00 Modify | 0.082726 | 0.082726 | 0.082726 | 0.0 | 1.68 Other | | 0.01181 | | | 0.24 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 335758 ave 335758 max 335758 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 335758 Ave neighs/atom = 167.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 = 333.721912992431, Press = 0.219010044847704 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 58000 -12584.052 -12584.052 -12671.81 -12671.81 339.63575 339.63575 31688.448 31688.448 -183.55983 -183.55983 59000 -12585.828 -12585.828 -12671.98 -12671.98 333.42045 333.42045 31692.423 31692.423 -597.40806 -597.40806 Loop time of 4.89057 on 1 procs for 1000 steps with 2000 atoms Performance: 17.667 ns/day, 1.358 hours/ns, 204.475 timesteps/s 99.2% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 4.7655 | 4.7655 | 4.7655 | 0.0 | 97.44 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031506 | 0.031506 | 0.031506 | 0.0 | 0.64 Output | 2.1219e-05 | 2.1219e-05 | 2.1219e-05 | 0.0 | 0.00 Modify | 0.081916 | 0.081916 | 0.081916 | 0.0 | 1.67 Other | | 0.01165 | | | 0.24 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 335348 ave 335348 max 335348 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 335348 Ave neighs/atom = 167.674 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 = 333.690541406655, Press = 2.44364736389811 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 59000 -12585.828 -12585.828 -12671.98 -12671.98 333.42045 333.42045 31692.423 31692.423 -597.40806 -597.40806 60000 -12591.843 -12591.843 -12675.247 -12675.247 322.78201 322.78201 31667.903 31667.903 1081.0322 1081.0322 Loop time of 5.02065 on 1 procs for 1000 steps with 2000 atoms Performance: 17.209 ns/day, 1.395 hours/ns, 199.178 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 | 4.8907 | 4.8907 | 4.8907 | 0.0 | 97.41 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.032668 | 0.032668 | 0.032668 | 0.0 | 0.65 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.085048 | 0.085048 | 0.085048 | 0.0 | 1.69 Other | | 0.01218 | | | 0.24 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 335398 ave 335398 max 335398 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 335398 Ave neighs/atom = 167.699 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 = 333.638654724051, Press = 0.111841998722563 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 60000 -12591.843 -12591.843 -12675.247 -12675.247 322.78201 322.78201 31667.903 31667.903 1081.0322 1081.0322 61000 -12586.661 -12586.661 -12671.778 -12671.778 329.41208 329.41208 31691.805 31691.805 32.763054 32.763054 Loop time of 5.13201 on 1 procs for 1000 steps with 2000 atoms Performance: 16.836 ns/day, 1.426 hours/ns, 194.855 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 | 4.998 | 4.998 | 4.998 | 0.0 | 97.39 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.035144 | 0.035144 | 0.035144 | 0.0 | 0.68 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.086374 | 0.086374 | 0.086374 | 0.0 | 1.68 Other | | 0.01246 | | | 0.24 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 335402 ave 335402 max 335402 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 335402 Ave neighs/atom = 167.701 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 = 333.604967965356, Press = 1.49449772633995 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 61000 -12586.661 -12586.661 -12671.778 -12671.778 329.41208 329.41208 31691.805 31691.805 32.763054 32.763054 62000 -12586.944 -12586.944 -12674.334 -12674.334 338.20698 338.20698 31680.816 31680.816 170.72713 170.72713 Loop time of 4.94472 on 1 procs for 1000 steps with 2000 atoms Performance: 17.473 ns/day, 1.374 hours/ns, 202.236 timesteps/s 97.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 | 4.8162 | 4.8162 | 4.8162 | 0.0 | 97.40 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.032092 | 0.032092 | 0.032092 | 0.0 | 0.65 Output | 2.6941e-05 | 2.6941e-05 | 2.6941e-05 | 0.0 | 0.00 Modify | 0.084479 | 0.084479 | 0.084479 | 0.0 | 1.71 Other | | 0.01194 | | | 0.24 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 334138 ave 334138 max 334138 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 334138 Ave neighs/atom = 167.069 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 = 333.588975695068, Press = 0.656498704040715 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 62000 -12586.944 -12586.944 -12674.334 -12674.334 338.20698 338.20698 31680.816 31680.816 170.72713 170.72713 63000 -12589.985 -12589.985 -12675.202 -12675.202 329.7956 329.7956 31687.28 31687.28 -85.945258 -85.945258 Loop time of 4.94004 on 1 procs for 1000 steps with 2000 atoms Performance: 17.490 ns/day, 1.372 hours/ns, 202.427 timesteps/s 98.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 | 4.8131 | 4.8131 | 4.8131 | 0.0 | 97.43 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031992 | 0.031992 | 0.031992 | 0.0 | 0.65 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.083126 | 0.083126 | 0.083126 | 0.0 | 1.68 Other | | 0.01175 | | | 0.24 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 335336 ave 335336 max 335336 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 335336 Ave neighs/atom = 167.668 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 = 333.548271902916, Press = 1.41924392384013 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 63000 -12589.985 -12589.985 -12675.202 -12675.202 329.7956 329.7956 31687.28 31687.28 -85.945258 -85.945258 64000 -12586.264 -12586.264 -12675.155 -12675.155 344.01721 344.01721 31681.364 31681.364 326.74071 326.74071 Loop time of 6.93086 on 1 procs for 1000 steps with 2000 atoms Performance: 12.466 ns/day, 1.925 hours/ns, 144.282 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 | 6.7654 | 6.7654 | 6.7654 | 0.0 | 97.61 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.040454 | 0.040454 | 0.040454 | 0.0 | 0.58 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.11007 | 0.11007 | 0.11007 | 0.0 | 1.59 Other | | 0.01491 | | | 0.22 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 334134 ave 334134 max 334134 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 334134 Ave neighs/atom = 167.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 = 333.520588778909, Press = 0.321399037191971 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 64000 -12586.264 -12586.264 -12675.155 -12675.155 344.01721 344.01721 31681.364 31681.364 326.74071 326.74071 65000 -12589.672 -12589.672 -12674.465 -12674.465 328.15474 328.15474 31700.249 31700.249 -1560.2563 -1560.2563 Loop time of 5.55941 on 1 procs for 1000 steps with 2000 atoms Performance: 15.541 ns/day, 1.544 hours/ns, 179.875 timesteps/s 98.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 | 5.4144 | 5.4144 | 5.4144 | 0.0 | 97.39 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.035344 | 0.035344 | 0.035344 | 0.0 | 0.64 Output | 2.0027e-05 | 2.0027e-05 | 2.0027e-05 | 0.0 | 0.00 Modify | 0.095914 | 0.095914 | 0.095914 | 0.0 | 1.73 Other | | 0.01375 | | | 0.25 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 334952 ave 334952 max 334952 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 334952 Ave neighs/atom = 167.476 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 = 333.478136421632, Press = 1.87765204243037 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 65000 -12589.672 -12589.672 -12674.465 -12674.465 328.15474 328.15474 31700.249 31700.249 -1560.2563 -1560.2563 66000 -12582.422 -12582.422 -12671.215 -12671.215 343.63729 343.63729 31680.335 31680.335 1155.0943 1155.0943 Loop time of 5.36464 on 1 procs for 1000 steps with 2000 atoms Performance: 16.105 ns/day, 1.490 hours/ns, 186.406 timesteps/s 98.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 | 5.2275 | 5.2275 | 5.2275 | 0.0 | 97.44 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.03449 | 0.03449 | 0.03449 | 0.0 | 0.64 Output | 4.6015e-05 | 4.6015e-05 | 4.6015e-05 | 0.0 | 0.00 Modify | 0.089358 | 0.089358 | 0.089358 | 0.0 | 1.67 Other | | 0.01321 | | | 0.25 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 335230 ave 335230 max 335230 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 335230 Ave neighs/atom = 167.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 = 333.513408437085, Press = -0.238549111579351 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 66000 -12582.422 -12582.422 -12671.215 -12671.215 343.63729 343.63729 31680.335 31680.335 1155.0943 1155.0943 67000 -12590.026 -12590.026 -12676.264 -12676.264 333.74848 333.74848 31692.529 31692.529 -1281.7052 -1281.7052 Loop time of 4.97935 on 1 procs for 1000 steps with 2000 atoms Performance: 17.352 ns/day, 1.383 hours/ns, 200.830 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 | 4.8502 | 4.8502 | 4.8502 | 0.0 | 97.41 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031934 | 0.031934 | 0.031934 | 0.0 | 0.64 Output | 2.3127e-05 | 2.3127e-05 | 2.3127e-05 | 0.0 | 0.00 Modify | 0.083848 | 0.083848 | 0.083848 | 0.0 | 1.68 Other | | 0.01333 | | | 0.27 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 334530 ave 334530 max 334530 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 334530 Ave neighs/atom = 167.265 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 = 333.514357792904, Press = 1.53889212172418 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 67000 -12590.026 -12590.026 -12676.264 -12676.264 333.74848 333.74848 31692.529 31692.529 -1281.7052 -1281.7052 68000 -12585.689 -12585.689 -12673.089 -12673.089 338.24748 338.24748 31674.086 31674.086 1055.443 1055.443 Loop time of 4.97257 on 1 procs for 1000 steps with 2000 atoms Performance: 17.375 ns/day, 1.381 hours/ns, 201.103 timesteps/s 98.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 | 4.8431 | 4.8431 | 4.8431 | 0.0 | 97.40 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.032025 | 0.032025 | 0.032025 | 0.0 | 0.64 Output | 4.4107e-05 | 4.4107e-05 | 4.4107e-05 | 0.0 | 0.00 Modify | 0.085009 | 0.085009 | 0.085009 | 0.0 | 1.71 Other | | 0.01238 | | | 0.25 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 335484 ave 335484 max 335484 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 335484 Ave neighs/atom = 167.742 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 = 333.539777978501, Press = 0.432796777202057 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 68000 -12585.689 -12585.689 -12673.089 -12673.089 338.24748 338.24748 31674.086 31674.086 1055.443 1055.443 69000 -12588.617 -12588.617 -12672.743 -12672.743 325.57783 325.57783 31696.266 31696.266 -1175.2922 -1175.2922 Loop time of 4.91683 on 1 procs for 1000 steps with 2000 atoms Performance: 17.572 ns/day, 1.366 hours/ns, 203.383 timesteps/s 98.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 | 4.7906 | 4.7906 | 4.7906 | 0.0 | 97.43 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031143 | 0.031143 | 0.031143 | 0.0 | 0.63 Output | 2.8133e-05 | 2.8133e-05 | 2.8133e-05 | 0.0 | 0.00 Modify | 0.083103 | 0.083103 | 0.083103 | 0.0 | 1.69 Other | | 0.01199 | | | 0.24 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 335152 ave 335152 max 335152 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 335152 Ave neighs/atom = 167.576 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 = 333.568894226067, Press = 1.21135545833752 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 69000 -12588.617 -12588.617 -12672.743 -12672.743 325.57783 325.57783 31696.266 31696.266 -1175.2922 -1175.2922 70000 -12583.809 -12583.809 -12672.151 -12672.151 341.89455 341.89455 31678.046 31678.046 1240.5182 1240.5182 Loop time of 4.88451 on 1 procs for 1000 steps with 2000 atoms Performance: 17.689 ns/day, 1.357 hours/ns, 204.729 timesteps/s 98.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 | 4.7578 | 4.7578 | 4.7578 | 0.0 | 97.41 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031298 | 0.031298 | 0.031298 | 0.0 | 0.64 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.082644 | 0.082644 | 0.082644 | 0.0 | 1.69 Other | | 0.01273 | | | 0.26 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 335414 ave 335414 max 335414 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 335414 Ave neighs/atom = 167.707 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 = 333.574629655515, Press = 0.575598129229866 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 70000 -12583.809 -12583.809 -12672.151 -12672.151 341.89455 341.89455 31678.046 31678.046 1240.5182 1240.5182 71000 -12586.309 -12586.309 -12670.141 -12670.141 324.44177 324.44177 31718.359 31718.359 -2603.8861 -2603.8861 Loop time of 4.81942 on 1 procs for 1000 steps with 2000 atoms Performance: 17.927 ns/day, 1.339 hours/ns, 207.494 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 | 4.6946 | 4.6946 | 4.6946 | 0.0 | 97.41 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.03145 | 0.03145 | 0.03145 | 0.0 | 0.65 Output | 2.1935e-05 | 2.1935e-05 | 2.1935e-05 | 0.0 | 0.00 Modify | 0.081892 | 0.081892 | 0.081892 | 0.0 | 1.70 Other | | 0.01146 | | | 0.24 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 333966 ave 333966 max 333966 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 333966 Ave neighs/atom = 166.983 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 = 333.583164177523, Press = 0.932055157067086 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 71000 -12586.309 -12586.309 -12670.141 -12670.141 324.44177 324.44177 31718.359 31718.359 -2603.8861 -2603.8861 72000 -12587.175 -12587.175 -12671.292 -12671.292 325.54128 325.54128 31639.673 31639.673 4183.8931 4183.8931 Loop time of 4.90692 on 1 procs for 1000 steps with 2000 atoms Performance: 17.608 ns/day, 1.363 hours/ns, 203.794 timesteps/s 98.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 | 4.7811 | 4.7811 | 4.7811 | 0.0 | 97.44 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031457 | 0.031457 | 0.031457 | 0.0 | 0.64 Output | 2.8133e-05 | 2.8133e-05 | 2.8133e-05 | 0.0 | 0.00 Modify | 0.082083 | 0.082083 | 0.082083 | 0.0 | 1.67 Other | | 0.01223 | | | 0.25 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 335208 ave 335208 max 335208 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 335208 Ave neighs/atom = 167.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 = 333.629821163402, Press = 1.10778030872214 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 72000 -12587.175 -12587.175 -12671.292 -12671.292 325.54128 325.54128 31639.673 31639.673 4183.8931 4183.8931 73000 -12584.987 -12584.987 -12670.969 -12670.969 332.7615 332.7615 31711.859 31711.859 -1972.9473 -1972.9473 Loop time of 4.89152 on 1 procs for 1000 steps with 2000 atoms Performance: 17.663 ns/day, 1.359 hours/ns, 204.436 timesteps/s 98.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 | 4.7653 | 4.7653 | 4.7653 | 0.0 | 97.42 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031997 | 0.031997 | 0.031997 | 0.0 | 0.65 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.082357 | 0.082357 | 0.082357 | 0.0 | 1.68 Other | | 0.01185 | | | 0.24 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 335428 ave 335428 max 335428 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 335428 Ave neighs/atom = 167.714 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 = 333.624290684935, Press = 0.494834164289054 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 73000 -12584.987 -12584.987 -12670.969 -12670.969 332.7615 332.7615 31711.859 31711.859 -1972.9473 -1972.9473 74000 -12590.313 -12590.313 -12675.247 -12675.247 328.70325 328.70325 31662.415 31662.415 1236.1079 1236.1079 Loop time of 4.86123 on 1 procs for 1000 steps with 2000 atoms Performance: 17.773 ns/day, 1.350 hours/ns, 205.709 timesteps/s 98.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 | 4.7348 | 4.7348 | 4.7348 | 0.0 | 97.40 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.030918 | 0.030918 | 0.030918 | 0.0 | 0.64 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.083808 | 0.083808 | 0.083808 | 0.0 | 1.72 Other | | 0.01172 | | | 0.24 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 334926 ave 334926 max 334926 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 334926 Ave neighs/atom = 167.463 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 = 333.591919188191, Press = 0.924220068943808 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 74000 -12590.313 -12590.313 -12675.247 -12675.247 328.70325 328.70325 31662.415 31662.415 1236.1079 1236.1079 75000 -12586.146 -12586.146 -12671.511 -12671.511 330.36846 330.36846 31695.034 31695.034 -843.80268 -843.80268 Loop time of 4.92144 on 1 procs for 1000 steps with 2000 atoms Performance: 17.556 ns/day, 1.367 hours/ns, 203.192 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 | 4.7963 | 4.7963 | 4.7963 | 0.0 | 97.46 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031227 | 0.031227 | 0.031227 | 0.0 | 0.63 Output | 2.5034e-05 | 2.5034e-05 | 2.5034e-05 | 0.0 | 0.00 Modify | 0.081719 | 0.081719 | 0.081719 | 0.0 | 1.66 Other | | 0.01214 | | | 0.25 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 335806 ave 335806 max 335806 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 335806 Ave neighs/atom = 167.903 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 = 333.574763970929, Press = 0.430966066216989 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 75000 -12586.146 -12586.146 -12671.511 -12671.511 330.36846 330.36846 31695.034 31695.034 -843.80268 -843.80268 76000 -12586.454 -12586.454 -12670.19 -12670.19 324.0686 324.0686 31673.128 31673.128 1065.3593 1065.3593 Loop time of 4.86986 on 1 procs for 1000 steps with 2000 atoms Performance: 17.742 ns/day, 1.353 hours/ns, 205.345 timesteps/s 98.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 | 4.7455 | 4.7455 | 4.7455 | 0.0 | 97.45 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031043 | 0.031043 | 0.031043 | 0.0 | 0.64 Output | 2.1935e-05 | 2.1935e-05 | 2.1935e-05 | 0.0 | 0.00 Modify | 0.081589 | 0.081589 | 0.081589 | 0.0 | 1.68 Other | | 0.01167 | | | 0.24 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 335482 ave 335482 max 335482 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 335482 Ave neighs/atom = 167.741 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 = 333.536800385746, Press = 1.20947100054479 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 76000 -12586.454 -12586.454 -12670.19 -12670.19 324.0686 324.0686 31673.128 31673.128 1065.3593 1065.3593 77000 -12587.335 -12587.335 -12674.173 -12674.173 336.07229 336.07229 31688.368 31688.368 -51.681988 -51.681988 Loop time of 4.92476 on 1 procs for 1000 steps with 2000 atoms Performance: 17.544 ns/day, 1.368 hours/ns, 203.056 timesteps/s 98.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 | 4.7991 | 4.7991 | 4.7991 | 0.0 | 97.45 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031588 | 0.031588 | 0.031588 | 0.0 | 0.64 Output | 2.6941e-05 | 2.6941e-05 | 2.6941e-05 | 0.0 | 0.00 Modify | 0.082191 | 0.082191 | 0.082191 | 0.0 | 1.67 Other | | 0.01189 | | | 0.24 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 335778 ave 335778 max 335778 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 335778 Ave neighs/atom = 167.889 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 = 333.529772844581, Press = 0.17205316753589 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 77000 -12587.335 -12587.335 -12674.173 -12674.173 336.07229 336.07229 31688.368 31688.368 -51.681988 -51.681988 78000 -12587.148 -12587.148 -12673.011 -12673.011 332.29842 332.29842 31703.449 31703.449 -1437.578 -1437.578 Loop time of 4.89701 on 1 procs for 1000 steps with 2000 atoms Performance: 17.643 ns/day, 1.360 hours/ns, 204.206 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 | 4.7707 | 4.7707 | 4.7707 | 0.0 | 97.42 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031555 | 0.031555 | 0.031555 | 0.0 | 0.64 Output | 2.8133e-05 | 2.8133e-05 | 2.8133e-05 | 0.0 | 0.00 Modify | 0.082929 | 0.082929 | 0.082929 | 0.0 | 1.69 Other | | 0.01183 | | | 0.24 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 334396 ave 334396 max 334396 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 334396 Ave neighs/atom = 167.198 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 = 333.490825239309, Press = 1.5595927002598 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 78000 -12587.148 -12587.148 -12673.011 -12673.011 332.29842 332.29842 31703.449 31703.449 -1437.578 -1437.578 79000 -12587.304 -12587.304 -12674.001 -12674.001 335.52526 335.52526 31665.57 31665.57 1681.6821 1681.6821 Loop time of 4.88436 on 1 procs for 1000 steps with 2000 atoms Performance: 17.689 ns/day, 1.357 hours/ns, 204.735 timesteps/s 98.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 | 4.757 | 4.757 | 4.757 | 0.0 | 97.39 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.032321 | 0.032321 | 0.032321 | 0.0 | 0.66 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.083168 | 0.083168 | 0.083168 | 0.0 | 1.70 Other | | 0.01183 | | | 0.24 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 334734 ave 334734 max 334734 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 334734 Ave neighs/atom = 167.367 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 = 333.45611243208, Press = -0.0126244494489994 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 79000 -12587.304 -12587.304 -12674.001 -12674.001 335.52526 335.52526 31665.57 31665.57 1681.6821 1681.6821 80000 -12590.005 -12590.005 -12675.632 -12675.632 331.38338 331.38338 31692.985 31692.985 -1009.0643 -1009.0643 Loop time of 4.86191 on 1 procs for 1000 steps with 2000 atoms Performance: 17.771 ns/day, 1.351 hours/ns, 205.681 timesteps/s 98.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 | 4.7373 | 4.7373 | 4.7373 | 0.0 | 97.44 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.030789 | 0.030789 | 0.030789 | 0.0 | 0.63 Output | 2.5034e-05 | 2.5034e-05 | 2.5034e-05 | 0.0 | 0.00 Modify | 0.082139 | 0.082139 | 0.082139 | 0.0 | 1.69 Other | | 0.01167 | | | 0.24 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 335212 ave 335212 max 335212 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 335212 Ave neighs/atom = 167.606 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 = 333.4152484256, Press = 1.15013983862167 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 80000 -12590.005 -12590.005 -12675.632 -12675.632 331.38338 331.38338 31692.985 31692.985 -1009.0643 -1009.0643 81000 -12587.604 -12587.604 -12673.664 -12673.664 333.06216 333.06216 31675.924 31675.924 617.14816 617.14816 Loop time of 4.89702 on 1 procs for 1000 steps with 2000 atoms Performance: 17.643 ns/day, 1.360 hours/ns, 204.206 timesteps/s 99.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 | 4.7714 | 4.7714 | 4.7714 | 0.0 | 97.43 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.030977 | 0.030977 | 0.030977 | 0.0 | 0.63 Output | 2.8849e-05 | 2.8849e-05 | 2.8849e-05 | 0.0 | 0.00 Modify | 0.082809 | 0.082809 | 0.082809 | 0.0 | 1.69 Other | | 0.01182 | | | 0.24 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 335298 ave 335298 max 335298 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 335298 Ave neighs/atom = 167.649 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 = 333.399458908667, Press = 0.558564196608582 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 81000 -12587.604 -12587.604 -12673.664 -12673.664 333.06216 333.06216 31675.924 31675.924 617.14816 617.14816 82000 -12584.375 -12584.375 -12673.234 -12673.234 343.89724 343.89724 31705.446 31705.446 -1258.1486 -1258.1486 Loop time of 4.91188 on 1 procs for 1000 steps with 2000 atoms Performance: 17.590 ns/day, 1.364 hours/ns, 203.588 timesteps/s 98.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 | 4.7837 | 4.7837 | 4.7837 | 0.0 | 97.39 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.032475 | 0.032475 | 0.032475 | 0.0 | 0.66 Output | 2.6941e-05 | 2.6941e-05 | 2.6941e-05 | 0.0 | 0.00 Modify | 0.083722 | 0.083722 | 0.083722 | 0.0 | 1.70 Other | | 0.01192 | | | 0.24 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 335460 ave 335460 max 335460 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 335460 Ave neighs/atom = 167.73 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 = 333.391023106147, Press = 0.684258191081599 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 82000 -12584.375 -12584.375 -12673.234 -12673.234 343.89724 343.89724 31705.446 31705.446 -1258.1486 -1258.1486 83000 -12587.985 -12587.985 -12671.775 -12671.775 324.27249 324.27249 31672.729 31672.729 1180.899 1180.899 Loop time of 4.89974 on 1 procs for 1000 steps with 2000 atoms Performance: 17.634 ns/day, 1.361 hours/ns, 204.093 timesteps/s 98.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 | 4.7718 | 4.7718 | 4.7718 | 0.0 | 97.39 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.032197 | 0.032197 | 0.032197 | 0.0 | 0.66 Output | 2.8133e-05 | 2.8133e-05 | 2.8133e-05 | 0.0 | 0.00 Modify | 0.083986 | 0.083986 | 0.083986 | 0.0 | 1.71 Other | | 0.01173 | | | 0.24 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 334288 ave 334288 max 334288 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 334288 Ave neighs/atom = 167.144 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 = 333.415769758805, Press = 1.12262807417259 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 83000 -12587.985 -12587.985 -12671.775 -12671.775 324.27249 324.27249 31672.729 31672.729 1180.899 1180.899 84000 -12581.759 -12581.759 -12671.422 -12671.422 347.00528 347.00528 31705.787 31705.787 -1441.96 -1441.96 Loop time of 4.87427 on 1 procs for 1000 steps with 2000 atoms Performance: 17.726 ns/day, 1.354 hours/ns, 205.159 timesteps/s 98.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 | 4.7487 | 4.7487 | 4.7487 | 0.0 | 97.42 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031008 | 0.031008 | 0.031008 | 0.0 | 0.64 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.082845 | 0.082845 | 0.082845 | 0.0 | 1.70 Other | | 0.01174 | | | 0.24 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 335360 ave 335360 max 335360 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 335360 Ave neighs/atom = 167.68 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 = 333.445882109467, Press = -0.101869683647422 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 84000 -12581.759 -12581.759 -12671.422 -12671.422 347.00528 347.00528 31705.787 31705.787 -1441.96 -1441.96 85000 -12588.605 -12588.605 -12674.629 -12674.629 332.92432 332.92432 31658.717 31658.717 1991.8721 1991.8721 Loop time of 4.90718 on 1 procs for 1000 steps with 2000 atoms Performance: 17.607 ns/day, 1.363 hours/ns, 203.783 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 | 4.7804 | 4.7804 | 4.7804 | 0.0 | 97.42 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031939 | 0.031939 | 0.031939 | 0.0 | 0.65 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.082893 | 0.082893 | 0.082893 | 0.0 | 1.69 Other | | 0.01188 | | | 0.24 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 335166 ave 335166 max 335166 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 335166 Ave neighs/atom = 167.583 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 = 333.455831358906, Press = 1.72110282667422 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 85000 -12588.605 -12588.605 -12674.629 -12674.629 332.92432 332.92432 31658.717 31658.717 1991.8721 1991.8721 86000 -12583.435 -12583.435 -12671.533 -12671.533 340.9506 340.9506 31695.714 31695.714 -663.55189 -663.55189 Loop time of 4.90058 on 1 procs for 1000 steps with 2000 atoms Performance: 17.631 ns/day, 1.361 hours/ns, 204.057 timesteps/s 99.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 | 4.7755 | 4.7755 | 4.7755 | 0.0 | 97.45 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031638 | 0.031638 | 0.031638 | 0.0 | 0.65 Output | 2.1935e-05 | 2.1935e-05 | 2.1935e-05 | 0.0 | 0.00 Modify | 0.081759 | 0.081759 | 0.081759 | 0.0 | 1.67 Other | | 0.01171 | | | 0.24 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 335552 ave 335552 max 335552 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 335552 Ave neighs/atom = 167.776 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 = 333.486639178013, Press = 0.0181076665516551 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 86000 -12583.435 -12583.435 -12671.533 -12671.533 340.9506 340.9506 31695.714 31695.714 -663.55189 -663.55189 87000 -12587.356 -12587.356 -12672.664 -12672.664 330.14977 330.14977 31682.253 31682.253 67.879546 67.879546 Loop time of 4.87188 on 1 procs for 1000 steps with 2000 atoms Performance: 17.734 ns/day, 1.353 hours/ns, 205.260 timesteps/s 99.1% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 4.747 | 4.747 | 4.747 | 0.0 | 97.44 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031235 | 0.031235 | 0.031235 | 0.0 | 0.64 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.081534 | 0.081534 | 0.081534 | 0.0 | 1.67 Other | | 0.01203 | | | 0.25 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 335226 ave 335226 max 335226 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 335226 Ave neighs/atom = 167.613 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 = 333.466142116342, Press = 1.11292289124201 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 87000 -12587.356 -12587.356 -12672.664 -12672.664 330.14977 330.14977 31682.253 31682.253 67.879546 67.879546 88000 -12590.705 -12590.705 -12675.383 -12675.383 327.71176 327.71176 31682.872 31682.872 -260.73408 -260.73408 Loop time of 4.90012 on 1 procs for 1000 steps with 2000 atoms Performance: 17.632 ns/day, 1.361 hours/ns, 204.077 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 | 4.7732 | 4.7732 | 4.7732 | 0.0 | 97.41 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.032043 | 0.032043 | 0.032043 | 0.0 | 0.65 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.083042 | 0.083042 | 0.083042 | 0.0 | 1.69 Other | | 0.01183 | | | 0.24 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 335412 ave 335412 max 335412 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 335412 Ave neighs/atom = 167.706 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 = 333.443607856889, Press = 0.204369593511928 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 88000 -12590.705 -12590.705 -12675.383 -12675.383 327.71176 327.71176 31682.872 31682.872 -260.73408 -260.73408 89000 -12586.807 -12586.807 -12673.601 -12673.601 335.89967 335.89967 31684.387 31684.387 -329.80545 -329.80545 Loop time of 4.93617 on 1 procs for 1000 steps with 2000 atoms Performance: 17.503 ns/day, 1.371 hours/ns, 202.586 timesteps/s 98.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 | 4.8096 | 4.8096 | 4.8096 | 0.0 | 97.44 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031965 | 0.031965 | 0.031965 | 0.0 | 0.65 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.082858 | 0.082858 | 0.082858 | 0.0 | 1.68 Other | | 0.01171 | | | 0.24 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 335380 ave 335380 max 335380 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 335380 Ave neighs/atom = 167.69 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 = 333.410490086018, Press = 1.06014647685572 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 89000 -12586.807 -12586.807 -12673.601 -12673.601 335.89967 335.89967 31684.387 31684.387 -329.80545 -329.80545 90000 -12589.048 -12589.048 -12673.865 -12673.865 328.25405 328.25405 31673.327 31673.327 655.15697 655.15697 Loop time of 4.94951 on 1 procs for 1000 steps with 2000 atoms Performance: 17.456 ns/day, 1.375 hours/ns, 202.040 timesteps/s 98.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 | 4.8231 | 4.8231 | 4.8231 | 0.0 | 97.45 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.030923 | 0.030923 | 0.030923 | 0.0 | 0.62 Output | 2.6941e-05 | 2.6941e-05 | 2.6941e-05 | 0.0 | 0.00 Modify | 0.083676 | 0.083676 | 0.083676 | 0.0 | 1.69 Other | | 0.01181 | | | 0.24 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 335734 ave 335734 max 335734 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 335734 Ave neighs/atom = 167.867 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 = 333.400429714277, Press = 0.0969586938767764 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 90000 -12589.048 -12589.048 -12673.865 -12673.865 328.25405 328.25405 31673.327 31673.327 655.15697 655.15697 91000 -12589.23 -12589.23 -12676.291 -12676.291 336.93476 336.93476 31695.696 31695.696 -1622.5025 -1622.5025 Loop time of 4.84442 on 1 procs for 1000 steps with 2000 atoms Performance: 17.835 ns/day, 1.346 hours/ns, 206.423 timesteps/s 98.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 | 4.7183 | 4.7183 | 4.7183 | 0.0 | 97.40 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.032063 | 0.032063 | 0.032063 | 0.0 | 0.66 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.082372 | 0.082372 | 0.082372 | 0.0 | 1.70 Other | | 0.01168 | | | 0.24 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 335540 ave 335540 max 335540 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 335540 Ave neighs/atom = 167.77 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 = 333.348960770164, Press = 0.930221483810695 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.577 | 4.577 | 4.577 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 91000 -12589.23 -12589.23 -12676.291 -12676.291 336.93476 336.93476 31695.696 31695.696 -1622.5025 -1622.5025 92000 -12588.158 -12588.158 -12675.994 -12675.994 339.93511 339.93511 31674.877 31674.877 531.77321 531.77321 Loop time of 4.91057 on 1 procs for 1000 steps with 2000 atoms Performance: 17.595 ns/day, 1.364 hours/ns, 203.642 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 | 4.7803 | 4.7803 | 4.7803 | 0.0 | 97.35 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031661 | 0.031661 | 0.031661 | 0.0 | 0.64 Output | 2.8849e-05 | 2.8849e-05 | 2.8849e-05 | 0.0 | 0.00 Modify | 0.086592 | 0.086592 | 0.086592 | 0.0 | 1.76 Other | | 0.01201 | | | 0.24 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 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: 335672 ave 335672 max 335672 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 335672 Ave neighs/atom = 167.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" jump SELF break # Write final averaged volume to file if temperature and volume have converged; otherwise wirte a # flag to indicate non-convergence. variable myStep equal step if "${myStep} < 2000000" then "print '${V}' file output/vol_T333.15.out" else "print 'not_converged' file output/vol_T333.15.out" print '${V}' file output/vol_T333.15.out 31684.309682491 print "LAMMPS calculation completed" LAMMPS calculation completed quit 0