# 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 2.897539623081684*${_u_distance} variable latticeconst_converted equal 2.897539623081684*1 lattice bcc ${latticeconst_converted} lattice bcc 2.89753962308168 Lattice spacing in x,y,z = 2.89754 2.89754 2.89754 region simbox block 0 10 0 10 0 10 units lattice create_box 1 simbox Created orthogonal box = (0 0 0) to (28.9754 28.9754 28.9754) 1 by 1 by 1 MPI processor grid create_atoms 1 box Created 2000 atoms create_atoms CPU = 0.000240088 secs variable mass_converted equal 51.9961*${_u_mass} variable mass_converted equal 51.9961*1 # specify which KIM Model to use pair_style kim Morse_Shifted_GirifalcoWeizer_1959LowCutoff_Cr__MO_483480726117_003 WARNING: KIM Model does not provide `partialParticleVirial'; virial per atom will be zero (src/KIM/pair_kim.cpp:979) pair_coeff * * Cr mass 1 ${mass_converted} mass 1 51.9961 # initial volume variable v equal vol # assign formula variable V0 equal ${v} # evaluate initial value variable V0 equal 24326.9773405119 variable V0_metal equal ${V0}/(${_u_distance}*${_u_distance}*${_u_distance}) variable V0_metal equal 24326.9773405119/(${_u_distance}*${_u_distance}*${_u_distance}) variable V0_metal equal 24326.9773405119/(1*${_u_distance}*${_u_distance}) variable V0_metal equal 24326.9773405119/(1*1*${_u_distance}) variable V0_metal equal 24326.9773405119/(1*1*1) variable V0_metal_times1000 equal ${V0_metal}*1000 variable V0_metal_times1000 equal 24326.9773405119*1000 print "Initial system volume: ${V0_metal} Angstroms^3" Initial system volume: 24326.9773405119 Angstroms^3 # set the time step to 0.001 picoseconds variable timestep_converted equal 0.001*${_u_time} variable timestep_converted equal 0.001*1 timestep ${timestep_converted} timestep 0.001 variable temp_converted equal 293.15*${_u_temperature} variable temp_converted equal 293.15*1 variable Tdamp_converted equal 0.1*${_u_time} variable Tdamp_converted equal 0.1*1 variable press_converted equal 0.0*${_u_pressure} variable press_converted equal 0.0*1 variable Pdamp_converted equal 1*${_u_time} variable Pdamp_converted equal 1*1 # create initial velocities consistent with the chosen temperature velocity all create ${temp_converted} 17 mom yes rot yes velocity all create 293.15 17 mom yes rot yes # set NPT ensemble for all atoms fix ensemble all npt temp ${temp_converted} ${temp_converted} ${Tdamp_converted} iso ${press_converted} ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 293.15 ${temp_converted} ${Tdamp_converted} iso ${press_converted} ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 293.15 293.15 ${Tdamp_converted} iso ${press_converted} ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 293.15 293.15 0.1 iso ${press_converted} ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 293.15 293.15 0.1 iso 0 ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 293.15 293.15 0.1 iso 0 0 ${Pdamp_converted} fix ensemble all npt temp 293.15 293.15 0.1 iso 0 0 1 # compute the time averages of pressure, temperature, and volume, respectively # ignore the first 5000 timesteps variable etotal_metal equal etotal/${_u_energy} variable etotal_metal equal etotal/1 variable pe_metal equal pe/${_u_energy} variable pe_metal equal pe/1 variable T_metal equal temp/${_u_temperature} variable T_metal equal temp/1 variable V_metal equal vol/(${_u_distance}*${_u_distance}*${_u_distance}) variable V_metal equal vol/(1*${_u_distance}*${_u_distance}) variable V_metal equal vol/(1*1*${_u_distance}) variable V_metal equal vol/(1*1*1) variable P_metal equal press/${_u_pressure} variable P_metal equal press/1 fix avgmyTemp all ave/time 5 20 100 v_T_metal ave running start 5000 fix avgmyPress all ave/time 5 20 100 v_P_metal ave running start 5000 fix avgmyVol all ave/time 5 20 100 v_V_metal ave running start 5000 # extract fix quantities into variables so they can be used in if-else logic later. variable T equal f_avgmyTemp variable P equal f_avgmyPress variable V equal f_avgmyVol # set error bounds for temperature and pressure in original metal units (K and bar) variable T_low equal "293.15 - 0.2" variable T_up equal "293.15 + 0.2" variable P_low equal "0.0 - 0.2" variable P_up equal "0.0 + 0.2" # print to logfile every 1000 timesteps thermo_style custom step etotal v_etotal_metal pe v_pe_metal temp v_T_metal vol v_V_metal press v_P_metal thermo 1000 # Run a simulation for at most 2000*1000 timesteps. At each 1000th time step, check # whether the temperature and pressure have converged. If yes, break. label top variable a loop 2000 run 1000 Neighbor list info ... update every 1 steps, delay 10 steps, check yes max neighbors/atom: 2000, page size: 100000 master list distance cutoff = 8.12262 ghost atom cutoff = 8.12262 binsize = 4.06131, bins = 8 8 8 1 neighbor lists, perpetual/occasional/extra = 1 0 0 (1) pair kim, perpetual attributes: full, newton off, cut 8.12262 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 -7208.2399 -7208.2399 -7283.9872 -7283.9872 293.15 293.15 24326.977 24326.977 3325.8076 3325.8076 1000 -7132.3658 -7132.3658 -7207.7771 -7207.7771 291.84969 291.84969 24569.128 24569.128 -2797.1873 -2797.1873 Loop time of 7.68622 on 1 procs for 1000 steps with 2000 atoms Performance: 11.241 ns/day, 2.135 hours/ns, 130.103 timesteps/s 62.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 | 7.4843 | 7.4843 | 7.4843 | 0.0 | 97.37 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.071161 | 0.071161 | 0.071161 | 0.0 | 0.93 Output | 3.0994e-05 | 3.0994e-05 | 3.0994e-05 | 0.0 | 0.00 Modify | 0.098969 | 0.098969 | 0.098969 | 0.0 | 1.29 Other | | 0.03181 | | | 0.41 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 -7132.3658 -7132.3658 -7207.7771 -7207.7771 291.84969 291.84969 24569.128 24569.128 -2797.1873 -2797.1873 2000 -7129.8005 -7129.8005 -7207.135 -7207.135 299.29259 299.29259 24522.646 24522.646 1032.2321 1032.2321 Loop time of 8.16699 on 1 procs for 1000 steps with 2000 atoms Performance: 10.579 ns/day, 2.269 hours/ns, 122.444 timesteps/s 60.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 | 7.9456 | 7.9456 | 7.9456 | 0.0 | 97.29 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.071397 | 0.071397 | 0.071397 | 0.0 | 0.87 Output | 3.5048e-05 | 3.5048e-05 | 3.5048e-05 | 0.0 | 0.00 Modify | 0.13825 | 0.13825 | 0.13825 | 0.0 | 1.69 Other | | 0.01171 | | | 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: 339794 ave 339794 max 339794 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 339794 Ave neighs/atom = 169.897 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 -7129.8005 -7129.8005 -7207.135 -7207.135 299.29259 299.29259 24522.646 24522.646 1032.2321 1032.2321 3000 -7134.0956 -7134.0956 -7208.1419 -7208.1419 286.56681 286.56681 24549.481 24549.481 -1328.9304 -1328.9304 Loop time of 7.87026 on 1 procs for 1000 steps with 2000 atoms Performance: 10.978 ns/day, 2.186 hours/ns, 127.061 timesteps/s 62.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.7279 | 7.7279 | 7.7279 | 0.0 | 98.19 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031469 | 0.031469 | 0.031469 | 0.0 | 0.40 Output | 3.4094e-05 | 3.4094e-05 | 3.4094e-05 | 0.0 | 0.00 Modify | 0.099187 | 0.099187 | 0.099187 | 0.0 | 1.26 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: 339950 ave 339950 max 339950 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 339950 Ave neighs/atom = 169.975 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 -7134.0956 -7134.0956 -7208.1419 -7208.1419 286.56681 286.56681 24549.481 24549.481 -1328.9304 -1328.9304 4000 -7128.9213 -7128.9213 -7206.058 -7206.058 298.5269 298.5269 24524.072 24524.072 1058.453 1058.453 Loop time of 8.79775 on 1 procs for 1000 steps with 2000 atoms Performance: 9.821 ns/day, 2.444 hours/ns, 113.665 timesteps/s 55.9% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 8.5737 | 8.5737 | 8.5737 | 0.0 | 97.45 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.091459 | 0.091459 | 0.091459 | 0.0 | 1.04 Output | 3.314e-05 | 3.314e-05 | 3.314e-05 | 0.0 | 0.00 Modify | 0.12077 | 0.12077 | 0.12077 | 0.0 | 1.37 Other | | 0.01183 | | | 0.13 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: 339796 ave 339796 max 339796 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 339796 Ave neighs/atom = 169.898 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 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 -7128.9213 -7128.9213 -7206.058 -7206.058 298.5269 298.5269 24524.072 24524.072 1058.453 1058.453 5000 -7133.106 -7133.106 -7209.2134 -7209.2134 294.54341 294.54341 24549.213 24549.213 -1412.7779 -1412.7779 Loop time of 8.61105 on 1 procs for 1000 steps with 2000 atoms Performance: 10.034 ns/day, 2.392 hours/ns, 116.130 timesteps/s 57.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 | 8.4681 | 8.4681 | 8.4681 | 0.0 | 98.34 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.051515 | 0.051515 | 0.051515 | 0.0 | 0.60 Output | 2.2888e-05 | 2.2888e-05 | 2.2888e-05 | 0.0 | 0.00 Modify | 0.079648 | 0.079648 | 0.079648 | 0.0 | 0.92 Other | | 0.0118 | | | 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: 339878 ave 339878 max 339878 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 339878 Ave neighs/atom = 169.939 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 = 290.090878679249, Press = -529.581047958325 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 -7133.106 -7133.106 -7209.2134 -7209.2134 294.54341 294.54341 24549.213 24549.213 -1412.7779 -1412.7779 6000 -7131.2366 -7131.2366 -7207.2407 -7207.2407 294.14348 294.14348 24528.947 24528.947 479.30192 479.30192 Loop time of 8.74534 on 1 procs for 1000 steps with 2000 atoms Performance: 9.880 ns/day, 2.429 hours/ns, 114.347 timesteps/s 56.1% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 8.4796 | 8.4796 | 8.4796 | 0.0 | 96.96 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.071511 | 0.071511 | 0.071511 | 0.0 | 0.82 Output | 2.8133e-05 | 2.8133e-05 | 2.8133e-05 | 0.0 | 0.00 Modify | 0.18253 | 0.18253 | 0.18253 | 0.0 | 2.09 Other | | 0.0117 | | | 0.13 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: 339450 ave 339450 max 339450 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 339450 Ave neighs/atom = 169.725 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 292.109023578155, Press = 94.6554444245816 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 -7131.2366 -7131.2366 -7207.2407 -7207.2407 294.14348 294.14348 24528.947 24528.947 479.30192 479.30192 7000 -7136.8674 -7136.8674 -7209.6528 -7209.6528 281.68702 281.68702 24515.234 24515.234 980.18688 980.18688 Loop time of 8.62278 on 1 procs for 1000 steps with 2000 atoms Performance: 10.020 ns/day, 2.395 hours/ns, 115.972 timesteps/s 57.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 | 8.4531 | 8.4531 | 8.4531 | 0.0 | 98.03 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031358 | 0.031358 | 0.031358 | 0.0 | 0.36 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.12646 | 0.12646 | 0.12646 | 0.0 | 1.47 Other | | 0.01181 | | | 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: 339884 ave 339884 max 339884 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 339884 Ave neighs/atom = 169.942 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 = 291.183924529709, Press = -23.1557839186466 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 -7136.8674 -7136.8674 -7209.6528 -7209.6528 281.68702 281.68702 24515.234 24515.234 980.18688 980.18688 8000 -7131.0328 -7131.0328 -7205.4084 -7205.4084 287.84115 287.84115 24549.57 24549.57 -946.10969 -946.10969 Loop time of 6.59411 on 1 procs for 1000 steps with 2000 atoms Performance: 13.103 ns/day, 1.832 hours/ns, 151.650 timesteps/s 74.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.4284 | 6.4284 | 6.4284 | 0.0 | 97.49 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.071139 | 0.071139 | 0.071139 | 0.0 | 1.08 Output | 2.8849e-05 | 2.8849e-05 | 2.8849e-05 | 0.0 | 0.00 Modify | 0.082573 | 0.082573 | 0.082573 | 0.0 | 1.25 Other | | 0.01199 | | | 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: 339730 ave 339730 max 339730 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 339730 Ave neighs/atom = 169.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 = 291.419254231917, Press = 6.40108447718254 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 -7131.0328 -7131.0328 -7205.4084 -7205.4084 287.84115 287.84115 24549.57 24549.57 -946.10969 -946.10969 9000 -7134.9537 -7134.9537 -7209.5417 -7209.5417 288.66343 288.66343 24505.495 24505.495 1813.0908 1813.0908 Loop time of 7.36997 on 1 procs for 1000 steps with 2000 atoms Performance: 11.723 ns/day, 2.047 hours/ns, 135.686 timesteps/s 67.2% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 7.2228 | 7.2228 | 7.2228 | 0.0 | 98.00 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.032599 | 0.032599 | 0.032599 | 0.0 | 0.44 Output | 2.8133e-05 | 2.8133e-05 | 2.8133e-05 | 0.0 | 0.00 Modify | 0.10195 | 0.10195 | 0.10195 | 0.0 | 1.38 Other | | 0.01258 | | | 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: 339570 ave 339570 max 339570 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 339570 Ave neighs/atom = 169.785 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 291.326675336495, Press = -1.76258095088266 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 -7134.9537 -7134.9537 -7209.5417 -7209.5417 288.66343 288.66343 24505.495 24505.495 1813.0908 1813.0908 10000 -7132.3923 -7132.3923 -7204.8283 -7204.8283 280.33504 280.33504 24560.037 24560.037 -1760.571 -1760.571 Loop time of 9.11751 on 1 procs for 1000 steps with 2000 atoms Performance: 9.476 ns/day, 2.533 hours/ns, 109.679 timesteps/s 54.1% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 8.8918 | 8.8918 | 8.8918 | 0.0 | 97.52 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031398 | 0.031398 | 0.031398 | 0.0 | 0.34 Output | 2.0981e-05 | 2.0981e-05 | 2.0981e-05 | 0.0 | 0.00 Modify | 0.1423 | 0.1423 | 0.1423 | 0.0 | 1.56 Other | | 0.05196 | | | 0.57 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: 339802 ave 339802 max 339802 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 339802 Ave neighs/atom = 169.901 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 = 291.841386804499, Press = -3.51587215517416 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 -7132.3923 -7132.3923 -7204.8283 -7204.8283 280.33504 280.33504 24560.037 24560.037 -1760.571 -1760.571 11000 -7127.4803 -7127.4803 -7205.8222 -7205.8222 303.19142 303.19142 24506.618 24506.618 2463.4459 2463.4459 Loop time of 6.9039 on 1 procs for 1000 steps with 2000 atoms Performance: 12.515 ns/day, 1.918 hours/ns, 144.846 timesteps/s 70.8% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 6.6792 | 6.6792 | 6.6792 | 0.0 | 96.74 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.051102 | 0.051102 | 0.051102 | 0.0 | 0.74 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.16196 | 0.16196 | 0.16196 | 0.0 | 2.35 Other | | 0.01165 | | | 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: 339708 ave 339708 max 339708 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 339708 Ave neighs/atom = 169.854 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 = 292.413672066697, Press = 9.68715284536104 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 -7127.4803 -7127.4803 -7205.8222 -7205.8222 303.19142 303.19142 24506.618 24506.618 2463.4459 2463.4459 12000 -7131.4743 -7131.4743 -7206.4853 -7206.4853 290.30043 290.30043 24565.01 24565.01 -2178.9885 -2178.9885 Loop time of 7.29349 on 1 procs for 1000 steps with 2000 atoms Performance: 11.846 ns/day, 2.026 hours/ns, 137.109 timesteps/s 67.9% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 7.1479 | 7.1479 | 7.1479 | 0.0 | 98.00 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031276 | 0.031276 | 0.031276 | 0.0 | 0.43 Output | 2.2888e-05 | 2.2888e-05 | 2.2888e-05 | 0.0 | 0.00 Modify | 0.082583 | 0.082583 | 0.082583 | 0.0 | 1.13 Other | | 0.03171 | | | 0.43 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: 339772 ave 339772 max 339772 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 339772 Ave neighs/atom = 169.886 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 = 292.718994432411, Press = -14.0127924445343 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 -7131.4743 -7131.4743 -7206.4853 -7206.4853 290.30043 290.30043 24565.01 24565.01 -2178.9885 -2178.9885 13000 -7131.7306 -7131.7306 -7207.633 -7207.633 293.75032 293.75032 24531.94 24531.94 164.17623 164.17623 Loop time of 7.90009 on 1 procs for 1000 steps with 2000 atoms Performance: 10.937 ns/day, 2.194 hours/ns, 126.581 timesteps/s 62.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 | 7.7151 | 7.7151 | 7.7151 | 0.0 | 97.66 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.051183 | 0.051183 | 0.051183 | 0.0 | 0.65 Output | 2.5034e-05 | 2.5034e-05 | 2.5034e-05 | 0.0 | 0.00 Modify | 0.10199 | 0.10199 | 0.10199 | 0.0 | 1.29 Other | | 0.0318 | | | 0.40 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: 339446 ave 339446 max 339446 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 339446 Ave neighs/atom = 169.723 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 = 292.918843307658, Press = 8.89693113327676 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 -7131.7306 -7131.7306 -7207.633 -7207.633 293.75032 293.75032 24531.94 24531.94 164.17623 164.17623 14000 -7132.9416 -7132.9416 -7207.4665 -7207.4665 288.41897 288.41897 24529.4 24529.4 271.53113 271.53113 Loop time of 6.48447 on 1 procs for 1000 steps with 2000 atoms Performance: 13.324 ns/day, 1.801 hours/ns, 154.215 timesteps/s 75.7% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 6.3086 | 6.3086 | 6.3086 | 0.0 | 97.29 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.032008 | 0.032008 | 0.032008 | 0.0 | 0.49 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.13216 | 0.13216 | 0.13216 | 0.0 | 2.04 Other | | 0.01168 | | | 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: 339768 ave 339768 max 339768 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 339768 Ave neighs/atom = 169.884 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 292.725324588166, Press = -2.25089350886558 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 -7132.9416 -7132.9416 -7207.4665 -7207.4665 288.41897 288.41897 24529.4 24529.4 271.53113 271.53113 15000 -7129.8183 -7129.8183 -7204.9985 -7204.9985 290.95515 290.95515 24549.049 24549.049 -813.48731 -813.48731 Loop time of 7.1895 on 1 procs for 1000 steps with 2000 atoms Performance: 12.018 ns/day, 1.997 hours/ns, 139.092 timesteps/s 68.7% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 7.0038 | 7.0038 | 7.0038 | 0.0 | 97.42 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.071365 | 0.071365 | 0.071365 | 0.0 | 0.99 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.10253 | 0.10253 | 0.10253 | 0.0 | 1.43 Other | | 0.01176 | | | 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: 340100 ave 340100 max 340100 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 340100 Ave neighs/atom = 170.05 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 = 292.760432500807, Press = 2.67320419298597 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 -7129.8183 -7129.8183 -7204.9985 -7204.9985 290.95515 290.95515 24549.049 24549.049 -813.48731 -813.48731 16000 -7134.3127 -7134.3127 -7210.0262 -7210.0262 293.01903 293.01903 24514.854 24514.854 1066.4366 1066.4366 Loop time of 7.16947 on 1 procs for 1000 steps with 2000 atoms Performance: 12.051 ns/day, 1.992 hours/ns, 139.480 timesteps/s 68.6% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 7.0039 | 7.0039 | 7.0039 | 0.0 | 97.69 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031328 | 0.031328 | 0.031328 | 0.0 | 0.44 Output | 4.2915e-05 | 4.2915e-05 | 4.2915e-05 | 0.0 | 0.00 Modify | 0.12244 | 0.12244 | 0.12244 | 0.0 | 1.71 Other | | 0.01171 | | | 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: 339920 ave 339920 max 339920 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 339920 Ave neighs/atom = 169.96 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 = 292.612923791372, Press = -1.85019503930127 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 -7134.3127 -7134.3127 -7210.0262 -7210.0262 293.01903 293.01903 24514.854 24514.854 1066.4366 1066.4366 17000 -7130.6966 -7130.6966 -7206.7329 -7206.7329 294.26816 294.26816 24595.924 24595.924 -4564.3316 -4564.3316 Loop time of 7.20301 on 1 procs for 1000 steps with 2000 atoms Performance: 11.995 ns/day, 2.001 hours/ns, 138.831 timesteps/s 68.4% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 7.0381 | 7.0381 | 7.0381 | 0.0 | 97.71 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.051194 | 0.051194 | 0.051194 | 0.0 | 0.71 Output | 2.6941e-05 | 2.6941e-05 | 2.6941e-05 | 0.0 | 0.00 Modify | 0.10197 | 0.10197 | 0.10197 | 0.0 | 1.42 Other | | 0.01169 | | | 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: 339930 ave 339930 max 339930 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 339930 Ave neighs/atom = 169.965 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 = 292.520102238834, Press = 3.83014217519756 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 -7130.6966 -7130.6966 -7206.7329 -7206.7329 294.26816 294.26816 24595.924 24595.924 -4564.3316 -4564.3316 18000 -7132.0701 -7132.0701 -7207.703 -7207.703 292.70709 292.70709 24489.135 24489.135 3446.5118 3446.5118 Loop time of 7.5915 on 1 procs for 1000 steps with 2000 atoms Performance: 11.381 ns/day, 2.109 hours/ns, 131.726 timesteps/s 64.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 | 7.3359 | 7.3359 | 7.3359 | 0.0 | 96.63 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031229 | 0.031229 | 0.031229 | 0.0 | 0.41 Output | 2.6941e-05 | 2.6941e-05 | 2.6941e-05 | 0.0 | 0.00 Modify | 0.19251 | 0.19251 | 0.19251 | 0.0 | 2.54 Other | | 0.03186 | | | 0.42 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: 339410 ave 339410 max 339410 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 339410 Ave neighs/atom = 169.705 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 = 292.571902104374, Press = 1.42891240371963 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 -7132.0701 -7132.0701 -7207.703 -7207.703 292.70709 292.70709 24489.135 24489.135 3446.5118 3446.5118 19000 -7130.6485 -7130.6485 -7206.4567 -7206.4567 293.38549 293.38549 24562.107 24562.107 -2018.3058 -2018.3058 Loop time of 7.58671 on 1 procs for 1000 steps with 2000 atoms Performance: 11.388 ns/day, 2.107 hours/ns, 131.809 timesteps/s 65.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.4409 | 7.4409 | 7.4409 | 0.0 | 98.08 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031343 | 0.031343 | 0.031343 | 0.0 | 0.41 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.1026 | 0.1026 | 0.1026 | 0.0 | 1.35 Other | | 0.01179 | | | 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: 340012 ave 340012 max 340012 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 340012 Ave neighs/atom = 170.006 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 292.6663541554, Press = -0.837008290271125 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 -7130.6485 -7130.6485 -7206.4567 -7206.4567 293.38549 293.38549 24562.107 24562.107 -2018.3058 -2018.3058 20000 -7130.9091 -7130.9091 -7206.6602 -7206.6602 293.1645 293.1645 24520.727 24520.727 1141.1736 1141.1736 Loop time of 8.36632 on 1 procs for 1000 steps with 2000 atoms Performance: 10.327 ns/day, 2.324 hours/ns, 119.527 timesteps/s 59.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 | 8.1816 | 8.1816 | 8.1816 | 0.0 | 97.79 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031037 | 0.031037 | 0.031037 | 0.0 | 0.37 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.14205 | 0.14205 | 0.14205 | 0.0 | 1.70 Other | | 0.01159 | | | 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: 339714 ave 339714 max 339714 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 339714 Ave neighs/atom = 169.857 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 = 292.692787493032, Press = 3.12276528465012 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 -7130.9091 -7130.9091 -7206.6602 -7206.6602 293.1645 293.1645 24520.727 24520.727 1141.1736 1141.1736 21000 -7131.0585 -7131.0585 -7205.0392 -7205.0392 286.31306 286.31306 24539.252 24539.252 -88.826726 -88.826726 Loop time of 6.94482 on 1 procs for 1000 steps with 2000 atoms Performance: 12.441 ns/day, 1.929 hours/ns, 143.992 timesteps/s 70.8% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 6.7794 | 6.7794 | 6.7794 | 0.0 | 97.62 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031058 | 0.031058 | 0.031058 | 0.0 | 0.45 Output | 2.5988e-05 | 2.5988e-05 | 2.5988e-05 | 0.0 | 0.00 Modify | 0.12252 | 0.12252 | 0.12252 | 0.0 | 1.76 Other | | 0.01177 | | | 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: 339892 ave 339892 max 339892 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 339892 Ave neighs/atom = 169.946 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 292.878305981526, Press = -2.67676358851834 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 -7131.0585 -7131.0585 -7205.0392 -7205.0392 286.31306 286.31306 24539.252 24539.252 -88.826726 -88.826726 22000 -7131.1148 -7131.1148 -7206.0169 -7206.0169 289.87885 289.87885 24542.222 24542.222 -437.0384 -437.0384 Loop time of 7.51227 on 1 procs for 1000 steps with 2000 atoms Performance: 11.501 ns/day, 2.087 hours/ns, 133.116 timesteps/s 65.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 | 7.337 | 7.337 | 7.337 | 0.0 | 97.67 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031184 | 0.031184 | 0.031184 | 0.0 | 0.42 Output | 4.5061e-05 | 4.5061e-05 | 4.5061e-05 | 0.0 | 0.00 Modify | 0.13219 | 0.13219 | 0.13219 | 0.0 | 1.76 Other | | 0.01189 | | | 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: 339856 ave 339856 max 339856 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 339856 Ave neighs/atom = 169.928 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 = 292.905949168107, Press = 6.32102737596338 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 -7131.1148 -7131.1148 -7206.0169 -7206.0169 289.87885 289.87885 24542.222 24542.222 -437.0384 -437.0384 23000 -7130.3172 -7130.3172 -7207.5477 -7207.5477 298.88994 298.88994 24515.887 24515.887 1506.126 1506.126 Loop time of 7.48654 on 1 procs for 1000 steps with 2000 atoms Performance: 11.541 ns/day, 2.080 hours/ns, 133.573 timesteps/s 65.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 | 7.2785 | 7.2785 | 7.2785 | 0.0 | 97.22 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031548 | 0.031548 | 0.031548 | 0.0 | 0.42 Output | 2.8849e-05 | 2.8849e-05 | 2.8849e-05 | 0.0 | 0.00 Modify | 0.16449 | 0.16449 | 0.16449 | 0.0 | 2.20 Other | | 0.01197 | | | 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: 339846 ave 339846 max 339846 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 339846 Ave neighs/atom = 169.923 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 = 292.946992636217, Press = -3.7513571429611 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 -7130.3172 -7130.3172 -7207.5477 -7207.5477 298.88994 298.88994 24515.887 24515.887 1506.126 1506.126 24000 -7129.6738 -7129.6738 -7205.1794 -7205.1794 292.21454 292.21454 24556.394 24556.394 -1325.5902 -1325.5902 Loop time of 8.22966 on 1 procs for 1000 steps with 2000 atoms Performance: 10.499 ns/day, 2.286 hours/ns, 121.512 timesteps/s 59.8% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 8.0643 | 8.0643 | 8.0643 | 0.0 | 97.99 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031268 | 0.031268 | 0.031268 | 0.0 | 0.38 Output | 2.0027e-05 | 2.0027e-05 | 2.0027e-05 | 0.0 | 0.00 Modify | 0.12234 | 0.12234 | 0.12234 | 0.0 | 1.49 Other | | 0.01178 | | | 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: 339856 ave 339856 max 339856 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 339856 Ave neighs/atom = 169.928 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 = 292.922666065823, Press = 2.04982250939367 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 -7129.6738 -7129.6738 -7205.1794 -7205.1794 292.21454 292.21454 24556.394 24556.394 -1325.5902 -1325.5902 25000 -7132.7627 -7132.7627 -7206.4076 -7206.4076 285.01368 285.01368 24510.971 24510.971 1803.4724 1803.4724 Loop time of 8.84575 on 1 procs for 1000 steps with 2000 atoms Performance: 9.767 ns/day, 2.457 hours/ns, 113.049 timesteps/s 56.1% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 8.7201 | 8.7201 | 8.7201 | 0.0 | 98.58 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031467 | 0.031467 | 0.031467 | 0.0 | 0.36 Output | 2.2888e-05 | 2.2888e-05 | 2.2888e-05 | 0.0 | 0.00 Modify | 0.082521 | 0.082521 | 0.082521 | 0.0 | 0.93 Other | | 0.01166 | | | 0.13 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: 339656 ave 339656 max 339656 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 339656 Ave neighs/atom = 169.828 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 = 292.832010654788, Press = -0.124365918045703 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 -7132.7627 -7132.7627 -7206.4076 -7206.4076 285.01368 285.01368 24510.971 24510.971 1803.4724 1803.4724 26000 -7130.2627 -7130.2627 -7206.2315 -7206.2315 294.0069 294.0069 24560.772 24560.772 -1862.9741 -1862.9741 Loop time of 6.73408 on 1 procs for 1000 steps with 2000 atoms Performance: 12.830 ns/day, 1.871 hours/ns, 148.498 timesteps/s 73.2% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 6.529 | 6.529 | 6.529 | 0.0 | 96.96 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.030962 | 0.030962 | 0.030962 | 0.0 | 0.46 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.14206 | 0.14206 | 0.14206 | 0.0 | 2.11 Other | | 0.032 | | | 0.48 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: 339858 ave 339858 max 339858 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 339858 Ave neighs/atom = 169.929 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 292.73382656753, Press = -0.569952768552776 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 -7130.2627 -7130.2627 -7206.2315 -7206.2315 294.0069 294.0069 24560.772 24560.772 -1862.9741 -1862.9741 27000 -7131.1551 -7131.1551 -7207.6122 -7207.6122 295.89704 295.89704 24522.53 24522.53 947.0414 947.0414 Loop time of 7.41824 on 1 procs for 1000 steps with 2000 atoms Performance: 11.647 ns/day, 2.061 hours/ns, 134.803 timesteps/s 66.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 | 7.2289 | 7.2289 | 7.2289 | 0.0 | 97.45 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.071293 | 0.071293 | 0.071293 | 0.0 | 0.96 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.086058 | 0.086058 | 0.086058 | 0.0 | 1.16 Other | | 0.03198 | | | 0.43 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: 339652 ave 339652 max 339652 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 339652 Ave neighs/atom = 169.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 = 292.673646455877, Press = 2.03919876048752 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 -7131.1551 -7131.1551 -7207.6122 -7207.6122 295.89704 295.89704 24522.53 24522.53 947.0414 947.0414 28000 -7131.8317 -7131.8317 -7206.7869 -7206.7869 290.08403 290.08403 24540.246 24540.246 -402.40468 -402.40468 Loop time of 6.88914 on 1 procs for 1000 steps with 2000 atoms Performance: 12.541 ns/day, 1.914 hours/ns, 145.156 timesteps/s 70.8% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 6.6819 | 6.6819 | 6.6819 | 0.0 | 96.99 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.051339 | 0.051339 | 0.051339 | 0.0 | 0.75 Output | 2.6941e-05 | 2.6941e-05 | 2.6941e-05 | 0.0 | 0.00 Modify | 0.14419 | 0.14419 | 0.14419 | 0.0 | 2.09 Other | | 0.01169 | | | 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: 339772 ave 339772 max 339772 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 339772 Ave neighs/atom = 169.886 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 = 292.682600211374, Press = -3.36417636079021 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 -7131.8317 -7131.8317 -7206.7869 -7206.7869 290.08403 290.08403 24540.246 24540.246 -402.40468 -402.40468 29000 -7130.1696 -7130.1696 -7206.0354 -7206.0354 293.60858 293.60858 24575.99 24575.99 -2903.7944 -2903.7944 Loop time of 7.11288 on 1 procs for 1000 steps with 2000 atoms Performance: 12.147 ns/day, 1.976 hours/ns, 140.590 timesteps/s 69.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.9668 | 6.9668 | 6.9668 | 0.0 | 97.95 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.051446 | 0.051446 | 0.051446 | 0.0 | 0.72 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.082771 | 0.082771 | 0.082771 | 0.0 | 1.16 Other | | 0.01183 | | | 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: 339860 ave 339860 max 339860 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 339860 Ave neighs/atom = 169.93 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 = 292.839469817279, Press = 8.09682139326492 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 -7130.1696 -7130.1696 -7206.0354 -7206.0354 293.60858 293.60858 24575.99 24575.99 -2903.7944 -2903.7944 30000 -7132.1298 -7132.1298 -7207.6891 -7207.6891 292.42243 292.42243 24504.324 24504.324 2228.1697 2228.1697 Loop time of 6.82228 on 1 procs for 1000 steps with 2000 atoms Performance: 12.664 ns/day, 1.895 hours/ns, 146.579 timesteps/s 72.0% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 6.6763 | 6.6763 | 6.6763 | 0.0 | 97.86 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.051482 | 0.051482 | 0.051482 | 0.0 | 0.75 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.082312 | 0.082312 | 0.082312 | 0.0 | 1.21 Other | | 0.01216 | | | 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: 339464 ave 339464 max 339464 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 339464 Ave neighs/atom = 169.732 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 = 292.856099423267, Press = -1.09165692829227 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 -7132.1298 -7132.1298 -7207.6891 -7207.6891 292.42243 292.42243 24504.324 24504.324 2228.1697 2228.1697 31000 -7131.5092 -7131.5092 -7207.9106 -7207.9106 295.68143 295.68143 24562.444 24562.444 -2167.0957 -2167.0957 Loop time of 7.58314 on 1 procs for 1000 steps with 2000 atoms Performance: 11.394 ns/day, 2.106 hours/ns, 131.871 timesteps/s 65.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.3594 | 7.3594 | 7.3594 | 0.0 | 97.05 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.0546 | 0.0546 | 0.0546 | 0.0 | 0.72 Output | 2.8133e-05 | 2.8133e-05 | 2.8133e-05 | 0.0 | 0.00 Modify | 0.14387 | 0.14387 | 0.14387 | 0.0 | 1.90 Other | | 0.02528 | | | 0.33 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: 339994 ave 339994 max 339994 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 339994 Ave neighs/atom = 169.997 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 = 292.808802111553, Press = 1.51803503563242 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 -7131.5092 -7131.5092 -7207.9106 -7207.9106 295.68143 295.68143 24562.444 24562.444 -2167.0957 -2167.0957 32000 -7132.0673 -7132.0673 -7206.6849 -7206.6849 288.77767 288.77767 24505.43 24505.43 2317.2165 2317.2165 Loop time of 7.07736 on 1 procs for 1000 steps with 2000 atoms Performance: 12.208 ns/day, 1.966 hours/ns, 141.296 timesteps/s 70.2% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 6.9109 | 6.9109 | 6.9109 | 0.0 | 97.65 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.051704 | 0.051704 | 0.051704 | 0.0 | 0.73 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.10289 | 0.10289 | 0.10289 | 0.0 | 1.45 Other | | 0.01183 | | | 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: 339582 ave 339582 max 339582 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 339582 Ave neighs/atom = 169.791 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 = 292.722926003348, Press = 0.734355022127804 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 -7132.0673 -7132.0673 -7206.6849 -7206.6849 288.77767 288.77767 24505.43 24505.43 2317.2165 2317.2165 33000 -7133.763 -7133.763 -7209.5762 -7209.5762 293.40498 293.40498 24554.464 24554.464 -1886.4751 -1886.4751 Loop time of 8.60417 on 1 procs for 1000 steps with 2000 atoms Performance: 10.042 ns/day, 2.390 hours/ns, 116.223 timesteps/s 57.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 | 8.4382 | 8.4382 | 8.4382 | 0.0 | 98.07 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.071437 | 0.071437 | 0.071437 | 0.0 | 0.83 Output | 2.8133e-05 | 2.8133e-05 | 2.8133e-05 | 0.0 | 0.00 Modify | 0.082657 | 0.082657 | 0.082657 | 0.0 | 0.96 Other | | 0.01189 | | | 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: 340176 ave 340176 max 340176 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 340176 Ave neighs/atom = 170.088 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 292.701254922042, Press = 0.00117732411567456 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 -7133.763 -7133.763 -7209.5762 -7209.5762 293.40498 293.40498 24554.464 24554.464 -1886.4751 -1886.4751 34000 -7130.6169 -7130.6169 -7206.8203 -7206.8203 294.91481 294.91481 24521.408 24521.408 1057.3382 1057.3382 Loop time of 7.77977 on 1 procs for 1000 steps with 2000 atoms Performance: 11.106 ns/day, 2.161 hours/ns, 128.539 timesteps/s 63.0% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 7.5555 | 7.5555 | 7.5555 | 0.0 | 97.12 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.09103 | 0.09103 | 0.09103 | 0.0 | 1.17 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.12148 | 0.12148 | 0.12148 | 0.0 | 1.56 Other | | 0.0117 | | | 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: 339490 ave 339490 max 339490 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 339490 Ave neighs/atom = 169.745 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 = 292.683153942865, Press = 1.77630655175475 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 -7130.6169 -7130.6169 -7206.8203 -7206.8203 294.91481 294.91481 24521.408 24521.408 1057.3382 1057.3382 35000 -7138.3598 -7138.3598 -7210.6795 -7210.6795 279.88471 279.88471 24531.418 24531.418 -507.15824 -507.15824 Loop time of 6.65824 on 1 procs for 1000 steps with 2000 atoms Performance: 12.976 ns/day, 1.850 hours/ns, 150.190 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.4125 | 6.4125 | 6.4125 | 0.0 | 96.31 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031518 | 0.031518 | 0.031518 | 0.0 | 0.47 Output | 2.5988e-05 | 2.5988e-05 | 2.5988e-05 | 0.0 | 0.00 Modify | 0.18248 | 0.18248 | 0.18248 | 0.0 | 2.74 Other | | 0.03171 | | | 0.48 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: 339752 ave 339752 max 339752 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 339752 Ave neighs/atom = 169.876 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 = 292.634898975316, Press = -0.57641106707103 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 -7138.3598 -7138.3598 -7210.6795 -7210.6795 279.88471 279.88471 24531.418 24531.418 -507.15824 -507.15824 36000 -7131.3199 -7131.3199 -7207.1468 -7207.1468 293.45829 293.45829 24527.898 24527.898 489.64624 489.64624 Loop time of 7.31685 on 1 procs for 1000 steps with 2000 atoms Performance: 11.808 ns/day, 2.032 hours/ns, 136.671 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 | 7.1302 | 7.1302 | 7.1302 | 0.0 | 97.45 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.03168 | 0.03168 | 0.03168 | 0.0 | 0.43 Output | 2.2173e-05 | 2.2173e-05 | 2.2173e-05 | 0.0 | 0.00 Modify | 0.14299 | 0.14299 | 0.14299 | 0.0 | 1.95 Other | | 0.01196 | | | 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: 339652 ave 339652 max 339652 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 339652 Ave neighs/atom = 169.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 = 292.570394272411, Press = 3.31891350573803 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 -7131.3199 -7131.3199 -7207.1468 -7207.1468 293.45829 293.45829 24527.898 24527.898 489.64624 489.64624 37000 -7135.4565 -7135.4565 -7208.955 -7208.955 284.4468 284.4468 24518.104 24518.104 870.04316 870.04316 Loop time of 6.31557 on 1 procs for 1000 steps with 2000 atoms Performance: 13.680 ns/day, 1.754 hours/ns, 158.339 timesteps/s 78.2% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 6.1696 | 6.1696 | 6.1696 | 0.0 | 97.69 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031426 | 0.031426 | 0.031426 | 0.0 | 0.50 Output | 2.8133e-05 | 2.8133e-05 | 2.8133e-05 | 0.0 | 0.00 Modify | 0.10262 | 0.10262 | 0.10262 | 0.0 | 1.62 Other | | 0.0119 | | | 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: 339830 ave 339830 max 339830 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 339830 Ave neighs/atom = 169.915 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 = 292.524447960931, Press = -1.81779127821535 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 -7135.4565 -7135.4565 -7208.955 -7208.955 284.4468 284.4468 24518.104 24518.104 870.04316 870.04316 38000 -7131.937 -7131.937 -7207.6476 -7207.6476 293.00789 293.00789 24554.263 24554.263 -1581.4273 -1581.4273 Loop time of 7.01969 on 1 procs for 1000 steps with 2000 atoms Performance: 12.308 ns/day, 1.950 hours/ns, 142.456 timesteps/s 70.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.8136 | 6.8136 | 6.8136 | 0.0 | 97.06 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.071505 | 0.071505 | 0.071505 | 0.0 | 1.02 Output | 2.3127e-05 | 2.3127e-05 | 2.3127e-05 | 0.0 | 0.00 Modify | 0.10265 | 0.10265 | 0.10265 | 0.0 | 1.46 Other | | 0.03193 | | | 0.45 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: 339820 ave 339820 max 339820 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 339820 Ave neighs/atom = 169.91 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 = 292.511262703317, Press = 1.87958666114219 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 -7131.937 -7131.937 -7207.6476 -7207.6476 293.00789 293.00789 24554.263 24554.263 -1581.4273 -1581.4273 39000 -7131.2654 -7131.2654 -7206.6323 -7206.6323 291.67767 291.67767 24519.66 24519.66 1218.8797 1218.8797 Loop time of 7.38655 on 1 procs for 1000 steps with 2000 atoms Performance: 11.697 ns/day, 2.052 hours/ns, 135.381 timesteps/s 67.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.2405 | 7.2405 | 7.2405 | 0.0 | 98.02 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031427 | 0.031427 | 0.031427 | 0.0 | 0.43 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.08272 | 0.08272 | 0.08272 | 0.0 | 1.12 Other | | 0.03189 | | | 0.43 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: 339728 ave 339728 max 339728 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 339728 Ave neighs/atom = 169.864 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 = 292.493641949268, Press = 0.576694222752611 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 -7131.2654 -7131.2654 -7206.6323 -7206.6323 291.67767 291.67767 24519.66 24519.66 1218.8797 1218.8797 40000 -7134.8341 -7134.8341 -7208.3965 -7208.3965 284.69403 284.69403 24532.861 24532.861 -138.64839 -138.64839 Loop time of 9.13886 on 1 procs for 1000 steps with 2000 atoms Performance: 9.454 ns/day, 2.539 hours/ns, 109.423 timesteps/s 54.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 | 8.9523 | 8.9523 | 8.9523 | 0.0 | 97.96 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031719 | 0.031719 | 0.031719 | 0.0 | 0.35 Output | 2.2173e-05 | 2.2173e-05 | 2.2173e-05 | 0.0 | 0.00 Modify | 0.10286 | 0.10286 | 0.10286 | 0.0 | 1.13 Other | | 0.05196 | | | 0.57 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: 339900 ave 339900 max 339900 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 339900 Ave neighs/atom = 169.95 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 = 292.501602685001, Press = 0.657017102566394 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 -7134.8341 -7134.8341 -7208.3965 -7208.3965 284.69403 284.69403 24532.861 24532.861 -138.64839 -138.64839 41000 -7129.5326 -7129.5326 -7205.4161 -7205.4161 293.67698 293.67698 24533.463 24533.463 442.7943 442.7943 Loop time of 6.47199 on 1 procs for 1000 steps with 2000 atoms Performance: 13.350 ns/day, 1.798 hours/ns, 154.512 timesteps/s 76.0% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 6.3154 | 6.3154 | 6.3154 | 0.0 | 97.58 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.032974 | 0.032974 | 0.032974 | 0.0 | 0.51 Output | 2.1935e-05 | 2.1935e-05 | 2.1935e-05 | 0.0 | 0.00 Modify | 0.11168 | 0.11168 | 0.11168 | 0.0 | 1.73 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: 339752 ave 339752 max 339752 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 339752 Ave neighs/atom = 169.876 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 = 292.425221926771, Press = 0.693079576417904 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 -7129.5326 -7129.5326 -7205.4161 -7205.4161 293.67698 293.67698 24533.463 24533.463 442.7943 442.7943 42000 -7132.2963 -7132.2963 -7207.3626 -7207.3626 290.51407 290.51407 24528.602 24528.602 394.71152 394.71152 Loop time of 7.68308 on 1 procs for 1000 steps with 2000 atoms Performance: 11.245 ns/day, 2.134 hours/ns, 130.156 timesteps/s 64.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 | 7.4369 | 7.4369 | 7.4369 | 0.0 | 96.80 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.071512 | 0.071512 | 0.071512 | 0.0 | 0.93 Output | 2.718e-05 | 2.718e-05 | 2.718e-05 | 0.0 | 0.00 Modify | 0.12273 | 0.12273 | 0.12273 | 0.0 | 1.60 Other | | 0.05194 | | | 0.68 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: 339978 ave 339978 max 339978 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 339978 Ave neighs/atom = 169.989 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 = 292.479634559658, Press = 0.473718327440249 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 -7132.2963 -7132.2963 -7207.3626 -7207.3626 290.51407 290.51407 24528.602 24528.602 394.71152 394.71152 43000 -7128.7835 -7128.7835 -7205.2645 -7205.2645 295.98919 295.98919 24548.038 24548.038 -712.95282 -712.95282 Loop time of 7.34743 on 1 procs for 1000 steps with 2000 atoms Performance: 11.759 ns/day, 2.041 hours/ns, 136.102 timesteps/s 67.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 | 7.1309 | 7.1309 | 7.1309 | 0.0 | 97.05 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031752 | 0.031752 | 0.031752 | 0.0 | 0.43 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.17286 | 0.17286 | 0.17286 | 0.0 | 2.35 Other | | 0.01189 | | | 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: 340050 ave 340050 max 340050 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 340050 Ave neighs/atom = 170.025 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 = 292.564739450902, Press = 0.484597386480567 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 -7128.7835 -7128.7835 -7205.2645 -7205.2645 295.98919 295.98919 24548.038 24548.038 -712.95282 -712.95282 44000 -7132.7479 -7132.7479 -7208.9158 -7208.9158 294.77755 294.77755 24516.011 24516.011 1170.2676 1170.2676 Loop time of 6.73193 on 1 procs for 1000 steps with 2000 atoms Performance: 12.834 ns/day, 1.870 hours/ns, 148.546 timesteps/s 72.6% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 6.565 | 6.565 | 6.565 | 0.0 | 97.52 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.051751 | 0.051751 | 0.051751 | 0.0 | 0.77 Output | 2.6941e-05 | 2.6941e-05 | 2.6941e-05 | 0.0 | 0.00 Modify | 0.10336 | 0.10336 | 0.10336 | 0.0 | 1.54 Other | | 0.01183 | | | 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: 339786 ave 339786 max 339786 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 339786 Ave neighs/atom = 169.893 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 = 292.623541647008, Press = 0.467879180461802 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 -7132.7479 -7132.7479 -7208.9158 -7208.9158 294.77755 294.77755 24516.011 24516.011 1170.2676 1170.2676 45000 -7128.2907 -7128.2907 -7205.9868 -7205.9868 300.69172 300.69172 24563.044 24563.044 -1936.6978 -1936.6978 Loop time of 5.90382 on 1 procs for 1000 steps with 2000 atoms Performance: 14.635 ns/day, 1.640 hours/ns, 169.382 timesteps/s 83.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.7378 | 5.7378 | 5.7378 | 0.0 | 97.19 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031236 | 0.031236 | 0.031236 | 0.0 | 0.53 Output | 2.6941e-05 | 2.6941e-05 | 2.6941e-05 | 0.0 | 0.00 Modify | 0.10292 | 0.10292 | 0.10292 | 0.0 | 1.74 Other | | 0.03183 | | | 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: 339886 ave 339886 max 339886 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 339886 Ave neighs/atom = 169.943 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 = 292.69055813764, Press = -0.156851477125812 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 -7128.2907 -7128.2907 -7205.9868 -7205.9868 300.69172 300.69172 24563.044 24563.044 -1936.6978 -1936.6978 46000 -7131.747 -7131.747 -7207.5477 -7207.5477 293.35665 293.35665 24507.311 24507.311 2031.7871 2031.7871 Loop time of 5.90696 on 1 procs for 1000 steps with 2000 atoms Performance: 14.627 ns/day, 1.641 hours/ns, 169.292 timesteps/s 83.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.7404 | 5.7404 | 5.7404 | 0.0 | 97.18 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.071324 | 0.071324 | 0.071324 | 0.0 | 1.21 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.083022 | 0.083022 | 0.083022 | 0.0 | 1.41 Other | | 0.01217 | | | 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: 339628 ave 339628 max 339628 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 339628 Ave neighs/atom = 169.814 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 = 292.715685867889, Press = 1.56734464562574 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 -7131.747 -7131.747 -7207.5477 -7207.5477 293.35665 293.35665 24507.311 24507.311 2031.7871 2031.7871 47000 -7128.5986 -7128.5986 -7206.1252 -7206.1252 300.03588 300.03588 24558.393 24558.393 -1581.1951 -1581.1951 Loop time of 5.54625 on 1 procs for 1000 steps with 2000 atoms Performance: 15.578 ns/day, 1.541 hours/ns, 180.302 timesteps/s 88.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.4207 | 5.4207 | 5.4207 | 0.0 | 97.74 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031428 | 0.031428 | 0.031428 | 0.0 | 0.57 Output | 2.6941e-05 | 2.6941e-05 | 2.6941e-05 | 0.0 | 0.00 Modify | 0.082383 | 0.082383 | 0.082383 | 0.0 | 1.49 Other | | 0.01175 | | | 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: 340236 ave 340236 max 340236 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 340236 Ave neighs/atom = 170.118 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 = 292.802318345549, Press = -1.86410113943806 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 -7128.5986 -7128.5986 -7206.1252 -7206.1252 300.03588 300.03588 24558.393 24558.393 -1581.1951 -1581.1951 48000 -7131.8379 -7131.8379 -7207.4788 -7207.4788 292.73831 292.73831 24534.619 24534.619 -98.353175 -98.353175 Loop time of 5.67225 on 1 procs for 1000 steps with 2000 atoms Performance: 15.232 ns/day, 1.576 hours/ns, 176.297 timesteps/s 86.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.5263 | 5.5263 | 5.5263 | 0.0 | 97.43 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.051383 | 0.051383 | 0.051383 | 0.0 | 0.91 Output | 2.1935e-05 | 2.1935e-05 | 2.1935e-05 | 0.0 | 0.00 Modify | 0.082644 | 0.082644 | 0.082644 | 0.0 | 1.46 Other | | 0.0119 | | | 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: 340034 ave 340034 max 340034 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 340034 Ave neighs/atom = 170.017 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 = 292.823182714732, Press = 1.29241526408221 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 -7131.8379 -7131.8379 -7207.4788 -7207.4788 292.73831 292.73831 24534.619 24534.619 -98.353175 -98.353175 49000 -7132.9792 -7132.9792 -7208.1818 -7208.1818 291.04209 291.04209 24528.898 24528.898 211.7415 211.7415 Loop time of 6.72447 on 1 procs for 1000 steps with 2000 atoms Performance: 12.849 ns/day, 1.868 hours/ns, 148.711 timesteps/s 72.6% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 6.5604 | 6.5604 | 6.5604 | 0.0 | 97.56 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031102 | 0.031102 | 0.031102 | 0.0 | 0.46 Output | 2.2888e-05 | 2.2888e-05 | 2.2888e-05 | 0.0 | 0.00 Modify | 0.12127 | 0.12127 | 0.12127 | 0.0 | 1.80 Other | | 0.01164 | | | 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: 339890 ave 339890 max 339890 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 339890 Ave neighs/atom = 169.945 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 = 292.832760389857, Press = -0.122284189219985 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 -7132.9792 -7132.9792 -7208.1818 -7208.1818 291.04209 291.04209 24528.898 24528.898 211.7415 211.7415 50000 -7131.6046 -7131.6046 -7206.4027 -7206.4027 289.47625 289.47625 24540.007 24540.007 -334.81612 -334.81612 Loop time of 6.03912 on 1 procs for 1000 steps with 2000 atoms Performance: 14.307 ns/day, 1.678 hours/ns, 165.587 timesteps/s 81.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 | 5.8725 | 5.8725 | 5.8725 | 0.0 | 97.24 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.051406 | 0.051406 | 0.051406 | 0.0 | 0.85 Output | 2.8849e-05 | 2.8849e-05 | 2.8849e-05 | 0.0 | 0.00 Modify | 0.1034 | 0.1034 | 0.1034 | 0.0 | 1.71 Other | | 0.01178 | | | 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: 340128 ave 340128 max 340128 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 340128 Ave neighs/atom = 170.064 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 292.774526906264, Press = 0.377675784081472 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 -7131.6046 -7131.6046 -7206.4027 -7206.4027 289.47625 289.47625 24540.007 24540.007 -334.81612 -334.81612 51000 -7133.9732 -7133.9732 -7208.4509 -7208.4509 288.23658 288.23658 24514.644 24514.644 1322.6081 1322.6081 Loop time of 6.44215 on 1 procs for 1000 steps with 2000 atoms Performance: 13.412 ns/day, 1.789 hours/ns, 155.228 timesteps/s 76.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.2851 | 6.2851 | 6.2851 | 0.0 | 97.56 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.052201 | 0.052201 | 0.052201 | 0.0 | 0.81 Output | 3.7909e-05 | 3.7909e-05 | 3.7909e-05 | 0.0 | 0.00 Modify | 0.09296 | 0.09296 | 0.09296 | 0.0 | 1.44 Other | | 0.01183 | | | 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: 339996 ave 339996 max 339996 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 339996 Ave neighs/atom = 169.998 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 = 292.781307471674, Press = -0.320604600451106 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 -7133.9732 -7133.9732 -7208.4509 -7208.4509 288.23658 288.23658 24514.644 24514.644 1322.6081 1322.6081 52000 -7136.263 -7136.263 -7209.1806 -7209.1806 282.19883 282.19883 24570.701 24570.701 -3195.8446 -3195.8446 Loop time of 5.97103 on 1 procs for 1000 steps with 2000 atoms Performance: 14.470 ns/day, 1.659 hours/ns, 167.475 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.8026 | 5.8026 | 5.8026 | 0.0 | 97.18 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031335 | 0.031335 | 0.031335 | 0.0 | 0.52 Output | 5.6028e-05 | 5.6028e-05 | 5.6028e-05 | 0.0 | 0.00 Modify | 0.12457 | 0.12457 | 0.12457 | 0.0 | 2.09 Other | | 0.01249 | | | 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: 339918 ave 339918 max 339918 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 339918 Ave neighs/atom = 169.959 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 = 292.764487850457, Press = 0.346756247446371 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 -7136.263 -7136.263 -7209.1806 -7209.1806 282.19883 282.19883 24570.701 24570.701 -3195.8446 -3195.8446 53000 -7129.9263 -7129.9263 -7207.1059 -7207.1059 298.69302 298.69302 24492.214 24492.214 3361.076 3361.076 Loop time of 5.0045 on 1 procs for 1000 steps with 2000 atoms Performance: 17.264 ns/day, 1.390 hours/ns, 199.820 timesteps/s 97.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.8594 | 4.8594 | 4.8594 | 0.0 | 97.10 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.030943 | 0.030943 | 0.030943 | 0.0 | 0.62 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.10253 | 0.10253 | 0.10253 | 0.0 | 2.05 Other | | 0.01162 | | | 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: 339628 ave 339628 max 339628 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 339628 Ave neighs/atom = 169.814 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 = 292.740103543981, Press = 0.495054176753509 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 -7129.9263 -7129.9263 -7207.1059 -7207.1059 298.69302 298.69302 24492.214 24492.214 3361.076 3361.076 54000 -7132.7445 -7132.7445 -7208.4016 -7208.4016 292.80071 292.80071 24563.311 24563.311 -2442.3 -2442.3 Loop time of 4.93935 on 1 procs for 1000 steps with 2000 atoms Performance: 17.492 ns/day, 1.372 hours/ns, 202.456 timesteps/s 100.0% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 4.8138 | 4.8138 | 4.8138 | 0.0 | 97.46 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031412 | 0.031412 | 0.031412 | 0.0 | 0.64 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.082368 | 0.082368 | 0.082368 | 0.0 | 1.67 Other | | 0.01177 | | | 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: 340162 ave 340162 max 340162 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 340162 Ave neighs/atom = 170.081 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 = 292.732098198907, Press = -0.372634895748017 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 -7132.7445 -7132.7445 -7208.4016 -7208.4016 292.80071 292.80071 24563.311 24563.311 -2442.3 -2442.3 55000 -7129.9941 -7129.9941 -7207.4859 -7207.4859 299.90143 299.90143 24522.954 24522.954 907.52719 907.52719 Loop time of 4.92728 on 1 procs for 1000 steps with 2000 atoms Performance: 17.535 ns/day, 1.369 hours/ns, 202.952 timesteps/s 99.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.8022 | 4.8022 | 4.8022 | 0.0 | 97.46 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031512 | 0.031512 | 0.031512 | 0.0 | 0.64 Output | 2.6941e-05 | 2.6941e-05 | 2.6941e-05 | 0.0 | 0.00 Modify | 0.081921 | 0.081921 | 0.081921 | 0.0 | 1.66 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: 339370 ave 339370 max 339370 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 339370 Ave neighs/atom = 169.685 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 = 292.794999300172, Press = 1.06246832011183 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 -7129.9941 -7129.9941 -7207.4859 -7207.4859 299.90143 299.90143 24522.954 24522.954 907.52719 907.52719 56000 -7133.084 -7133.084 -7208.9747 -7208.9747 293.70489 293.70489 24534.476 24534.476 -263.09618 -263.09618 Loop time of 4.93842 on 1 procs for 1000 steps with 2000 atoms Performance: 17.495 ns/day, 1.372 hours/ns, 202.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.8137 | 4.8137 | 4.8137 | 0.0 | 97.47 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.030855 | 0.030855 | 0.030855 | 0.0 | 0.62 Output | 2.6941e-05 | 2.6941e-05 | 2.6941e-05 | 0.0 | 0.00 Modify | 0.081966 | 0.081966 | 0.081966 | 0.0 | 1.66 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: 339730 ave 339730 max 339730 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 339730 Ave neighs/atom = 169.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 = 292.845551901384, Press = -0.564438444410453 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 -7133.084 -7133.084 -7208.9747 -7208.9747 293.70489 293.70489 24534.476 24534.476 -263.09618 -263.09618 57000 -7129.2075 -7129.2075 -7205.2508 -7205.2508 294.29526 294.29526 24549.46 24549.46 -860.89365 -860.89365 Loop time of 5.29235 on 1 procs for 1000 steps with 2000 atoms Performance: 16.325 ns/day, 1.470 hours/ns, 188.952 timesteps/s 93.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.165 | 5.165 | 5.165 | 0.0 | 97.59 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031534 | 0.031534 | 0.031534 | 0.0 | 0.60 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.083894 | 0.083894 | 0.083894 | 0.0 | 1.59 Other | | 0.01192 | | | 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: 339744 ave 339744 max 339744 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 339744 Ave neighs/atom = 169.872 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 = 292.88760990161, Press = 0.864282167001419 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 -7129.2075 -7129.2075 -7205.2508 -7205.2508 294.29526 294.29526 24549.46 24549.46 -860.89365 -860.89365 58000 -7133.3579 -7133.3579 -7207.9356 -7207.9356 288.62376 288.62376 24519.203 24519.203 969.35103 969.35103 Loop time of 5.13189 on 1 procs for 1000 steps with 2000 atoms Performance: 16.836 ns/day, 1.426 hours/ns, 194.860 timesteps/s 96.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 | 4.9981 | 4.9981 | 4.9981 | 0.0 | 97.39 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.035736 | 0.035736 | 0.035736 | 0.0 | 0.70 Output | 3.0041e-05 | 3.0041e-05 | 3.0041e-05 | 0.0 | 0.00 Modify | 0.086258 | 0.086258 | 0.086258 | 0.0 | 1.68 Other | | 0.01177 | | | 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: 339630 ave 339630 max 339630 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 339630 Ave neighs/atom = 169.815 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 = 292.892316931069, Press = -0.0620813811789587 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 -7133.3579 -7133.3579 -7207.9356 -7207.9356 288.62376 288.62376 24519.203 24519.203 969.35103 969.35103 59000 -7128.9096 -7128.9096 -7206.3533 -7206.3533 299.71533 299.71533 24550.53 24550.53 -936.23184 -936.23184 Loop time of 7.24907 on 1 procs for 1000 steps with 2000 atoms Performance: 11.919 ns/day, 2.014 hours/ns, 137.949 timesteps/s 67.9% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 7.1009 | 7.1009 | 7.1009 | 0.0 | 97.96 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031919 | 0.031919 | 0.031919 | 0.0 | 0.44 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.10455 | 0.10455 | 0.10455 | 0.0 | 1.44 Other | | 0.0117 | | | 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: 339648 ave 339648 max 339648 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 339648 Ave neighs/atom = 169.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 = 292.904718559493, Press = 0.344377957049417 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 -7128.9096 -7128.9096 -7206.3533 -7206.3533 299.71533 299.71533 24550.53 24550.53 -936.23184 -936.23184 60000 -7136.8522 -7136.8522 -7210.2176 -7210.2176 283.9318 283.9318 24496.693 24496.693 2328.0032 2328.0032 Loop time of 6.56337 on 1 procs for 1000 steps with 2000 atoms Performance: 13.164 ns/day, 1.823 hours/ns, 152.361 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.438 | 6.438 | 6.438 | 0.0 | 98.09 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031327 | 0.031327 | 0.031327 | 0.0 | 0.48 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.082188 | 0.082188 | 0.082188 | 0.0 | 1.25 Other | | 0.01182 | | | 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: 339718 ave 339718 max 339718 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 339718 Ave neighs/atom = 169.859 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 = 292.882126592934, Press = -0.380575160607709 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 -7136.8522 -7136.8522 -7210.2176 -7210.2176 283.9318 283.9318 24496.693 24496.693 2328.0032 2328.0032 61000 -7130.3443 -7130.3443 -7208.8687 -7208.8687 303.89773 303.89773 24588.439 24588.439 -4262.4791 -4262.4791 Loop time of 7.37296 on 1 procs for 1000 steps with 2000 atoms Performance: 11.718 ns/day, 2.048 hours/ns, 135.631 timesteps/s 66.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 | 7.1368 | 7.1368 | 7.1368 | 0.0 | 96.80 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.071921 | 0.071921 | 0.071921 | 0.0 | 0.98 Output | 2.8133e-05 | 2.8133e-05 | 2.8133e-05 | 0.0 | 0.00 Modify | 0.15236 | 0.15236 | 0.15236 | 0.0 | 2.07 Other | | 0.01182 | | | 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: 339884 ave 339884 max 339884 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 339884 Ave neighs/atom = 169.942 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 = 292.865762121174, Press = 0.22162899636057 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 -7130.3443 -7130.3443 -7208.8687 -7208.8687 303.89773 303.89773 24588.439 24588.439 -4262.4791 -4262.4791 62000 -7133.7546 -7133.7546 -7207.5104 -7207.5104 285.44259 285.44259 24491.644 24491.644 3164.9831 3164.9831 Loop time of 7.18472 on 1 procs for 1000 steps with 2000 atoms Performance: 12.026 ns/day, 1.996 hours/ns, 139.184 timesteps/s 69.0% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 7.0375 | 7.0375 | 7.0375 | 0.0 | 97.95 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.051668 | 0.051668 | 0.051668 | 0.0 | 0.72 Output | 2.6941e-05 | 2.6941e-05 | 2.6941e-05 | 0.0 | 0.00 Modify | 0.083574 | 0.083574 | 0.083574 | 0.0 | 1.16 Other | | 0.01198 | | | 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: 339478 ave 339478 max 339478 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 339478 Ave neighs/atom = 169.739 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 292.855490718246, Press = 0.448098586775527 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 -7133.7546 -7133.7546 -7207.5104 -7207.5104 285.44259 285.44259 24491.644 24491.644 3164.9831 3164.9831 63000 -7128.614 -7128.614 -7203.4875 -7203.4875 289.76816 289.76816 24555.619 24555.619 -984.97305 -984.97305 Loop time of 7.16776 on 1 procs for 1000 steps with 2000 atoms Performance: 12.054 ns/day, 1.991 hours/ns, 139.514 timesteps/s 68.6% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 6.9884 | 6.9884 | 6.9884 | 0.0 | 97.50 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.084946 | 0.084946 | 0.084946 | 0.0 | 1.19 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.082734 | 0.082734 | 0.082734 | 0.0 | 1.15 Other | | 0.01166 | | | 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: 340220 ave 340220 max 340220 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 340220 Ave neighs/atom = 170.11 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 = 292.879961904693, Press = -0.052252520684276 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 -7128.614 -7128.614 -7203.4875 -7203.4875 289.76816 289.76816 24555.619 24555.619 -984.97305 -984.97305 64000 -7131.7561 -7131.7561 -7205.9747 -7205.9747 287.23358 287.23358 24527.655 24527.655 699.36368 699.36368 Loop time of 7.80631 on 1 procs for 1000 steps with 2000 atoms Performance: 11.068 ns/day, 2.168 hours/ns, 128.101 timesteps/s 62.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 | 7.6012 | 7.6012 | 7.6012 | 0.0 | 97.37 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.051232 | 0.051232 | 0.051232 | 0.0 | 0.66 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.12201 | 0.12201 | 0.12201 | 0.0 | 1.56 Other | | 0.03181 | | | 0.41 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: 339676 ave 339676 max 339676 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 339676 Ave neighs/atom = 169.838 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 = 292.852799641049, Press = 0.419497437683305 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 -7131.7561 -7131.7561 -7205.9747 -7205.9747 287.23358 287.23358 24527.655 24527.655 699.36368 699.36368 65000 -7133.9288 -7133.9288 -7209.3142 -7209.3142 291.74932 291.74932 24535.059 24535.059 -331.93766 -331.93766 Loop time of 6.30676 on 1 procs for 1000 steps with 2000 atoms Performance: 13.700 ns/day, 1.752 hours/ns, 158.560 timesteps/s 78.2% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 6.1801 | 6.1801 | 6.1801 | 0.0 | 97.99 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031432 | 0.031432 | 0.031432 | 0.0 | 0.50 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.083282 | 0.083282 | 0.083282 | 0.0 | 1.32 Other | | 0.01188 | | | 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: 340012 ave 340012 max 340012 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 340012 Ave neighs/atom = 170.006 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 292.8357076962, Press = -0.31978164473817 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 -7133.9288 -7133.9288 -7209.3142 -7209.3142 291.74932 291.74932 24535.059 24535.059 -331.93766 -331.93766 66000 -7129.4246 -7129.4246 -7204.8791 -7204.8791 292.01706 292.01706 24546.925 24546.925 -577.89849 -577.89849 Loop time of 6.4876 on 1 procs for 1000 steps with 2000 atoms Performance: 13.318 ns/day, 1.802 hours/ns, 154.140 timesteps/s 75.7% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 6.3408 | 6.3408 | 6.3408 | 0.0 | 97.74 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.0325 | 0.0325 | 0.0325 | 0.0 | 0.50 Output | 2.0981e-05 | 2.0981e-05 | 2.0981e-05 | 0.0 | 0.00 Modify | 0.08255 | 0.08255 | 0.08255 | 0.0 | 1.27 Other | | 0.03173 | | | 0.49 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: 339898 ave 339898 max 339898 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 339898 Ave neighs/atom = 169.949 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 = 292.816465363578, Press = 0.727919904964722 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 -7129.4246 -7129.4246 -7204.8791 -7204.8791 292.01706 292.01706 24546.925 24546.925 -577.89849 -577.89849 67000 -7130.8293 -7130.8293 -7207.4534 -7207.4534 296.54323 296.54323 24507.648 24507.648 2077.3072 2077.3072 Loop time of 7.30352 on 1 procs for 1000 steps with 2000 atoms Performance: 11.830 ns/day, 2.029 hours/ns, 136.920 timesteps/s 67.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 | 7.0843 | 7.0843 | 7.0843 | 0.0 | 97.00 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.052788 | 0.052788 | 0.052788 | 0.0 | 0.72 Output | 2.3127e-05 | 2.3127e-05 | 2.3127e-05 | 0.0 | 0.00 Modify | 0.15457 | 0.15457 | 0.15457 | 0.0 | 2.12 Other | | 0.01183 | | | 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: 339852 ave 339852 max 339852 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 339852 Ave neighs/atom = 169.926 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 = 292.826833555384, Press = -0.567512022438205 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 -7130.8293 -7130.8293 -7207.4534 -7207.4534 296.54323 296.54323 24507.648 24507.648 2077.3072 2077.3072 68000 -7131.5969 -7131.5969 -7208.4342 -7208.4342 297.36826 297.36826 24575.118 24575.118 -3225.1405 -3225.1405 Loop time of 6.79839 on 1 procs for 1000 steps with 2000 atoms Performance: 12.709 ns/day, 1.888 hours/ns, 147.094 timesteps/s 72.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.6115 | 6.6115 | 6.6115 | 0.0 | 97.25 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031292 | 0.031292 | 0.031292 | 0.0 | 0.46 Output | 6.9857e-05 | 6.9857e-05 | 6.9857e-05 | 0.0 | 0.00 Modify | 0.12351 | 0.12351 | 0.12351 | 0.0 | 1.82 Other | | 0.03202 | | | 0.47 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: 340098 ave 340098 max 340098 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 340098 Ave neighs/atom = 170.049 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 = 292.878337714498, Press = 0.383458696060528 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 -7131.5969 -7131.5969 -7208.4342 -7208.4342 297.36826 297.36826 24575.118 24575.118 -3225.1405 -3225.1405 69000 -7129.0964 -7129.0964 -7205.592 -7205.592 296.04563 296.04563 24501.958 24501.958 2870.1137 2870.1137 Loop time of 6.66895 on 1 procs for 1000 steps with 2000 atoms Performance: 12.956 ns/day, 1.852 hours/ns, 149.949 timesteps/s 74.2% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 6.512 | 6.512 | 6.512 | 0.0 | 97.65 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031488 | 0.031488 | 0.031488 | 0.0 | 0.47 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.11343 | 0.11343 | 0.11343 | 0.0 | 1.70 Other | | 0.01197 | | | 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: 339538 ave 339538 max 339538 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 339538 Ave neighs/atom = 169.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 = 292.901307439566, Press = 0.388738226787591 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 -7129.0964 -7129.0964 -7205.592 -7205.592 296.04563 296.04563 24501.958 24501.958 2870.1137 2870.1137 70000 -7134.6957 -7134.6957 -7208.9734 -7208.9734 287.46249 287.46249 24555.743 24555.743 -1983.3352 -1983.3352 Loop time of 6.1973 on 1 procs for 1000 steps with 2000 atoms Performance: 13.942 ns/day, 1.721 hours/ns, 161.361 timesteps/s 79.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.0111 | 6.0111 | 6.0111 | 0.0 | 97.00 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031337 | 0.031337 | 0.031337 | 0.0 | 0.51 Output | 2.1935e-05 | 2.1935e-05 | 2.1935e-05 | 0.0 | 0.00 Modify | 0.14295 | 0.14295 | 0.14295 | 0.0 | 2.31 Other | | 0.01186 | | | 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: 340004 ave 340004 max 340004 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 340004 Ave neighs/atom = 170.002 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 = 292.899758950688, Press = -0.300816862530735 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 -7134.6957 -7134.6957 -7208.9734 -7208.9734 287.46249 287.46249 24555.743 24555.743 -1983.3352 -1983.3352 71000 -7130.7001 -7130.7001 -7206.1348 -7206.1348 291.94009 291.94009 24517.232 24517.232 1502.2507 1502.2507 Loop time of 8.02674 on 1 procs for 1000 steps with 2000 atoms Performance: 10.764 ns/day, 2.230 hours/ns, 124.584 timesteps/s 61.5% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 7.8005 | 7.8005 | 7.8005 | 0.0 | 97.18 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031386 | 0.031386 | 0.031386 | 0.0 | 0.39 Output | 2.0027e-05 | 2.0027e-05 | 2.0027e-05 | 0.0 | 0.00 Modify | 0.18298 | 0.18298 | 0.18298 | 0.0 | 2.28 Other | | 0.01184 | | | 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: 339608 ave 339608 max 339608 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 339608 Ave neighs/atom = 169.804 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 = 292.866921959561, Press = 0.867934106318584 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 -7130.7001 -7130.7001 -7206.1348 -7206.1348 291.94009 291.94009 24517.232 24517.232 1502.2507 1502.2507 72000 -7132.1187 -7132.1187 -7207.7586 -7207.7586 292.73411 292.73411 24539.633 24539.633 -375.82887 -375.82887 Loop time of 6.8917 on 1 procs for 1000 steps with 2000 atoms Performance: 12.537 ns/day, 1.914 hours/ns, 145.102 timesteps/s 72.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.7244 | 6.7244 | 6.7244 | 0.0 | 97.57 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031684 | 0.031684 | 0.031684 | 0.0 | 0.46 Output | 2.2173e-05 | 2.2173e-05 | 2.2173e-05 | 0.0 | 0.00 Modify | 0.10346 | 0.10346 | 0.10346 | 0.0 | 1.50 Other | | 0.03215 | | | 0.47 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: 339844 ave 339844 max 339844 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 339844 Ave neighs/atom = 169.922 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 = 292.859257959057, Press = -0.901918185624976 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 -7132.1187 -7132.1187 -7207.7586 -7207.7586 292.73411 292.73411 24539.633 24539.633 -375.82887 -375.82887 73000 -7130.9627 -7130.9627 -7209.0626 -7209.0626 302.25483 302.25483 24546.319 24546.319 -1150.6832 -1150.6832 Loop time of 7.44964 on 1 procs for 1000 steps with 2000 atoms Performance: 11.598 ns/day, 2.069 hours/ns, 134.235 timesteps/s 65.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.3042 | 7.3042 | 7.3042 | 0.0 | 98.05 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.051528 | 0.051528 | 0.051528 | 0.0 | 0.69 Output | 2.8133e-05 | 2.8133e-05 | 2.8133e-05 | 0.0 | 0.00 Modify | 0.082119 | 0.082119 | 0.082119 | 0.0 | 1.10 Other | | 0.01176 | | | 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: 339702 ave 339702 max 339702 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 339702 Ave neighs/atom = 169.851 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 = 292.870640594599, Press = 1.76167917589382 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 -7130.9627 -7130.9627 -7209.0626 -7209.0626 302.25483 302.25483 24546.319 24546.319 -1150.6832 -1150.6832 74000 -7131.437 -7131.437 -7206.7317 -7206.7317 291.39859 291.39859 24505.907 24505.907 2245.7274 2245.7274 Loop time of 6.34997 on 1 procs for 1000 steps with 2000 atoms Performance: 13.606 ns/day, 1.764 hours/ns, 157.481 timesteps/s 76.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.1948 | 6.1948 | 6.1948 | 0.0 | 97.56 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.041291 | 0.041291 | 0.041291 | 0.0 | 0.65 Output | 2.0027e-05 | 2.0027e-05 | 2.0027e-05 | 0.0 | 0.00 Modify | 0.10206 | 0.10206 | 0.10206 | 0.0 | 1.61 Other | | 0.01175 | | | 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: 339466 ave 339466 max 339466 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 339466 Ave neighs/atom = 169.733 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 = 292.883757971685, Press = -0.928204971841399 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 -7131.437 -7131.437 -7206.7317 -7206.7317 291.39859 291.39859 24505.907 24505.907 2245.7274 2245.7274 75000 -7131.8365 -7131.8365 -7205.8388 -7205.8388 286.39647 286.39647 24553.177 24553.177 -1282.3111 -1282.3111 Loop time of 6.82675 on 1 procs for 1000 steps with 2000 atoms Performance: 12.656 ns/day, 1.896 hours/ns, 146.483 timesteps/s 72.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.6597 | 6.6597 | 6.6597 | 0.0 | 97.55 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.031415 | 0.031415 | 0.031415 | 0.0 | 0.46 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.1238 | 0.1238 | 0.1238 | 0.0 | 1.81 Other | | 0.01182 | | | 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: 339782 ave 339782 max 339782 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 339782 Ave neighs/atom = 169.891 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 292.925632221186, Press = 0.461324565629859 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 -7131.8365 -7131.8365 -7205.8388 -7205.8388 286.39647 286.39647 24553.177 24553.177 -1282.3111 -1282.3111 76000 -7132.1461 -7132.1461 -7207.9081 -7207.9081 293.20698 293.20698 24504.714 24504.714 2205.8597 2205.8597 Loop time of 6.78256 on 1 procs for 1000 steps with 2000 atoms Performance: 12.739 ns/day, 1.884 hours/ns, 147.437 timesteps/s 73.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.5369 | 6.5369 | 6.5369 | 0.0 | 96.38 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.11139 | 0.11139 | 0.11139 | 0.0 | 1.64 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.12251 | 0.12251 | 0.12251 | 0.0 | 1.81 Other | | 0.01174 | | | 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: 339870 ave 339870 max 339870 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 339870 Ave neighs/atom = 169.935 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 = 292.949476323902, Press = 0.144947857984815 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 -7132.1461 -7132.1461 -7207.9081 -7207.9081 293.20698 293.20698 24504.714 24504.714 2205.8597 2205.8597 77000 -7134.2464 -7134.2464 -7208.3958 -7208.3958 286.96609 286.96609 24555.423 24555.423 -1882.3625 -1882.3625 Loop time of 6.85704 on 1 procs for 1000 steps with 2000 atoms Performance: 12.600 ns/day, 1.905 hours/ns, 145.836 timesteps/s 72.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.6813 | 6.6813 | 6.6813 | 0.0 | 97.44 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.06044 | 0.06044 | 0.06044 | 0.0 | 0.88 Output | 2.0027e-05 | 2.0027e-05 | 2.0027e-05 | 0.0 | 0.00 Modify | 0.10333 | 0.10333 | 0.10333 | 0.0 | 1.51 Other | | 0.01199 | | | 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: 339908 ave 339908 max 339908 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 339908 Ave neighs/atom = 169.954 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_T293.15.out" else "print 'not_converged' file output/vol_T293.15.out" print '${V}' file output/vol_T293.15.out 24534.3220635423 print "LAMMPS calculation completed" LAMMPS calculation completed quit 0