# Variables that can be adjusted by kim-lammps-preprocessor to switch unit sets for # Simulator Models variable _u_distance equal 1.0 variable _u_energy equal 1.0 variable _u_mass equal 1.0 variable _u_time equal 1.0 variable _u_pressure equal 1.0 variable _u_temperature equal 1.0 # This line may be swapped out by kim-lammps-preprocessor if running against a Simulator # Model whose atom_style is not 'atomic' atom_style atomic # periodic boundary conditions along all three dimensions boundary p p p # Set neighbor skin variable neigh_skin equal 2.0*${_u_distance} variable neigh_skin equal 2.0*1 neighbor ${neigh_skin} bin neighbor 2 bin # create a supercell with cubic lattice (fcc, bcc, sc, or diamond) # using 10*10*10 conventional (orthogonal) unit cells variable latticeconst_converted equal 3.6131481304764748*${_u_distance} variable latticeconst_converted equal 3.6131481304764748*1 lattice fcc ${latticeconst_converted} lattice fcc 3.61314813047647 Lattice spacing in x,y,z = 3.61315 3.61315 3.61315 region simbox block 0 10 0 10 0 10 units lattice create_box 1 simbox Created orthogonal box = (0 0 0) to (36.1315 36.1315 36.1315) 1 by 1 by 1 MPI processor grid create_atoms 1 box Created 4000 atoms create_atoms CPU = 0.000344992 secs variable mass_converted equal 63.546*${_u_mass} variable mass_converted equal 63.546*1 # specify which KIM Model to use pair_style kim Morse_Shifted_GirifalcoWeizer_1959MedCutoff_Cu__MO_173787283511_003 WARNING: KIM Model does not provide `partialParticleVirial'; virial per atom will be zero (src/KIM/pair_kim.cpp:1089) pair_coeff * * Cu mass 1 ${mass_converted} mass 1 63.546 # initial volume variable v equal vol # assign formula variable V0 equal ${v} # evaluate initial value variable V0 equal 47169.0686179046 variable V0_metal equal ${V0}/(${_u_distance}*${_u_distance}*${_u_distance}) variable V0_metal equal 47169.0686179046/(${_u_distance}*${_u_distance}*${_u_distance}) variable V0_metal equal 47169.0686179046/(1*${_u_distance}*${_u_distance}) variable V0_metal equal 47169.0686179046/(1*1*${_u_distance}) variable V0_metal equal 47169.0686179046/(1*1*1) variable V0_metal_times1000 equal ${V0_metal}*1000 variable V0_metal_times1000 equal 47169.0686179046*1000 print "Initial system volume: ${V0_metal} Angstroms^3" Initial system volume: 47169.0686179046 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 = 10.4596 ghost atom cutoff = 10.4596 binsize = 5.22982, bins = 7 7 7 1 neighbor lists, perpetual/occasional/extra = 1 0 0 (1) pair kim, perpetual attributes: full, newton off, cut 10.4596 pair build: full/bin/atomonly stencil: full/bin/3d bin: standard Per MPI rank memory allocation (min/avg/max) = 9.433 | 9.433 | 9.433 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 0 -13827.528 -13827.528 -13979.06 -13979.06 293.15 293.15 47169.069 47169.069 3431.3683 3431.3683 1000 -13665.92 -13665.92 -13819.773 -13819.773 297.63958 297.63958 47688.478 47688.478 -1885.8296 -1885.8296 Loop time of 56.8971 on 1 procs for 1000 steps with 4000 atoms Performance: 1.519 ns/day, 15.805 hours/ns, 17.576 timesteps/s 47.2% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 56.354 | 56.354 | 56.354 | 0.0 | 99.05 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.10549 | 0.10549 | 0.10549 | 0.0 | 0.19 Output | 4.4107e-05 | 4.4107e-05 | 4.4107e-05 | 0.0 | 0.00 Modify | 0.39566 | 0.39566 | 0.39566 | 0.0 | 0.70 Other | | 0.04154 | | | 0.07 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.52e+06 ave 1.52e+06 max 1.52e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1520000 Ave neighs/atom = 380 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${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) = 9.435 | 9.435 | 9.435 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 1000 -13665.92 -13665.92 -13819.773 -13819.773 297.63958 297.63958 47688.478 47688.478 -1885.8296 -1885.8296 2000 -13675.307 -13675.307 -13828.941 -13828.941 297.21651 297.21651 47560.089 47560.089 1054.4741 1054.4741 Loop time of 59.2209 on 1 procs for 1000 steps with 4000 atoms Performance: 1.459 ns/day, 16.450 hours/ns, 16.886 timesteps/s 46.3% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 58.724 | 58.724 | 58.724 | 0.0 | 99.16 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.14634 | 0.14634 | 0.14634 | 0.0 | 0.25 Output | 3.4094e-05 | 3.4094e-05 | 3.4094e-05 | 0.0 | 0.00 Modify | 0.30257 | 0.30257 | 0.30257 | 0.0 | 0.51 Other | | 0.0475 | | | 0.08 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.53999e+06 ave 1.53999e+06 max 1.53999e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1539988 Ave neighs/atom = 384.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 = 0, Press = 0 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 9.435 | 9.435 | 9.435 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 2000 -13675.307 -13675.307 -13828.941 -13828.941 297.21651 297.21651 47560.089 47560.089 1054.4741 1054.4741 3000 -13673.373 -13673.373 -13827.424 -13827.424 298.02054 298.02054 47624.455 47624.455 -601.93387 -601.93387 Loop time of 57.2377 on 1 procs for 1000 steps with 4000 atoms Performance: 1.509 ns/day, 15.899 hours/ns, 17.471 timesteps/s 47.8% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 56.534 | 56.534 | 56.534 | 0.0 | 98.77 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.2052 | 0.2052 | 0.2052 | 0.0 | 0.36 Output | 3.6001e-05 | 3.6001e-05 | 3.6001e-05 | 0.0 | 0.00 Modify | 0.45685 | 0.45685 | 0.45685 | 0.0 | 0.80 Other | | 0.04158 | | | 0.07 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.54265e+06 ave 1.54265e+06 max 1.54265e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1542652 Ave neighs/atom = 385.663 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${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) = 9.435 | 9.435 | 9.435 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 3000 -13673.373 -13673.373 -13827.424 -13827.424 298.02054 298.02054 47624.455 47624.455 -601.93387 -601.93387 4000 -13672.184 -13672.184 -13823.087 -13823.087 291.93315 291.93315 47588.004 47588.004 617.45698 617.45698 Loop time of 58.4674 on 1 procs for 1000 steps with 4000 atoms Performance: 1.478 ns/day, 16.241 hours/ns, 17.104 timesteps/s 46.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 | 58.028 | 58.028 | 58.028 | 0.0 | 99.25 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.09506 | 0.09506 | 0.09506 | 0.0 | 0.16 Output | 3.4809e-05 | 3.4809e-05 | 3.4809e-05 | 0.0 | 0.00 Modify | 0.32238 | 0.32238 | 0.32238 | 0.0 | 0.55 Other | | 0.02159 | | | 0.04 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.54155e+06 ave 1.54155e+06 max 1.54155e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1541554 Ave neighs/atom = 385.389 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${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) = 9.435 | 9.435 | 9.435 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 4000 -13672.184 -13672.184 -13823.087 -13823.087 291.93315 291.93315 47588.004 47588.004 617.45698 617.45698 5000 -13676.137 -13676.137 -13826.001 -13826.001 289.92203 289.92203 47616.712 47616.712 -413.15381 -413.15381 Loop time of 56.0263 on 1 procs for 1000 steps with 4000 atoms Performance: 1.542 ns/day, 15.563 hours/ns, 17.849 timesteps/s 48.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 | 55.583 | 55.583 | 55.583 | 0.0 | 99.21 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.10887 | 0.10887 | 0.10887 | 0.0 | 0.19 Output | 5.1022e-05 | 5.1022e-05 | 5.1022e-05 | 0.0 | 0.00 Modify | 0.31246 | 0.31246 | 0.31246 | 0.0 | 0.56 Other | | 0.02181 | | | 0.04 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.54272e+06 ave 1.54272e+06 max 1.54272e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1542722 Ave neighs/atom = 385.68 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 291.990941133818, Press = 613.416262439844 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 9.435 | 9.435 | 9.435 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 5000 -13676.137 -13676.137 -13826.001 -13826.001 289.92203 289.92203 47616.712 47616.712 -413.15381 -413.15381 6000 -13669.908 -13669.908 -13823.148 -13823.148 296.45405 296.45405 47590.461 47590.461 565.9703 565.9703 Loop time of 53.8944 on 1 procs for 1000 steps with 4000 atoms Performance: 1.603 ns/day, 14.971 hours/ns, 18.555 timesteps/s 50.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 | 53.31 | 53.31 | 53.31 | 0.0 | 98.92 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.16557 | 0.16557 | 0.16557 | 0.0 | 0.31 Output | 3.314e-05 | 3.314e-05 | 3.314e-05 | 0.0 | 0.00 Modify | 0.35691 | 0.35691 | 0.35691 | 0.0 | 0.66 Other | | 0.0617 | | | 0.11 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.5415e+06 ave 1.5415e+06 max 1.5415e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1541498 Ave neighs/atom = 385.375 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${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.717010847345, Press = -22.9346599851268 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 9.435 | 9.435 | 9.435 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 6000 -13669.908 -13669.908 -13823.148 -13823.148 296.45405 296.45405 47590.461 47590.461 565.9703 565.9703 7000 -13676.622 -13676.622 -13825.628 -13825.628 288.26281 288.26281 47593.338 47593.338 257.17281 257.17281 Loop time of 53.5475 on 1 procs for 1000 steps with 4000 atoms Performance: 1.614 ns/day, 14.874 hours/ns, 18.675 timesteps/s 51.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 | 53.019 | 53.019 | 53.019 | 0.0 | 99.01 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.12592 | 0.12592 | 0.12592 | 0.0 | 0.24 Output | 3.2902e-05 | 3.2902e-05 | 3.2902e-05 | 0.0 | 0.00 Modify | 0.3607 | 0.3607 | 0.3607 | 0.0 | 0.67 Other | | 0.04188 | | | 0.08 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.54281e+06 ave 1.54281e+06 max 1.54281e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1542810 Ave neighs/atom = 385.702 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 292.921201415414, Press = 50.2946615146227 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 9.435 | 9.435 | 9.435 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 7000 -13676.622 -13676.622 -13825.628 -13825.628 288.26281 288.26281 47593.338 47593.338 257.17281 257.17281 8000 -13671.192 -13671.192 -13826.983 -13826.983 301.38802 301.38802 47622.546 47622.546 -516.31579 -516.31579 Loop time of 51.0073 on 1 procs for 1000 steps with 4000 atoms Performance: 1.694 ns/day, 14.169 hours/ns, 19.605 timesteps/s 54.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 | 50.615 | 50.615 | 50.615 | 0.0 | 99.23 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.13891 | 0.13891 | 0.13891 | 0.0 | 0.27 Output | 3.314e-05 | 3.314e-05 | 3.314e-05 | 0.0 | 0.00 Modify | 0.23142 | 0.23142 | 0.23142 | 0.0 | 0.45 Other | | 0.02169 | | | 0.04 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.54231e+06 ave 1.54231e+06 max 1.54231e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1542306 Ave neighs/atom = 385.577 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 293.157047738627, Press = 0.361544015864267 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 9.435 | 9.435 | 9.435 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 8000 -13671.192 -13671.192 -13826.983 -13826.983 301.38802 301.38802 47622.546 47622.546 -516.31579 -516.31579 9000 -13672.162 -13672.162 -13824.952 -13824.952 295.58252 295.58252 47587.217 47587.217 533.47287 533.47287 Loop time of 48.7194 on 1 procs for 1000 steps with 4000 atoms Performance: 1.773 ns/day, 13.533 hours/ns, 20.526 timesteps/s 56.3% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 48.314 | 48.314 | 48.314 | 0.0 | 99.17 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.10525 | 0.10525 | 0.10525 | 0.0 | 0.22 Output | 4.5776e-05 | 4.5776e-05 | 4.5776e-05 | 0.0 | 0.00 Modify | 0.27883 | 0.27883 | 0.27883 | 0.0 | 0.57 Other | | 0.02162 | | | 0.04 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.54134e+06 ave 1.54134e+06 max 1.54134e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1541338 Ave neighs/atom = 385.334 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 293.142897744835, Press = 14.1383000735169 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 9.435 | 9.435 | 9.435 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 9000 -13672.162 -13672.162 -13824.952 -13824.952 295.58252 295.58252 47587.217 47587.217 533.47287 533.47287 10000 -13672.332 -13672.332 -13824.253 -13824.253 293.90069 293.90069 47631.228 47631.228 -662.79929 -662.79929 Loop time of 49.5948 on 1 procs for 1000 steps with 4000 atoms Performance: 1.742 ns/day, 13.776 hours/ns, 20.163 timesteps/s 55.6% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 49.21 | 49.21 | 49.21 | 0.0 | 99.22 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.10534 | 0.10534 | 0.10534 | 0.0 | 0.21 Output | 3.2902e-05 | 3.2902e-05 | 3.2902e-05 | 0.0 | 0.00 Modify | 0.25754 | 0.25754 | 0.25754 | 0.0 | 0.52 Other | | 0.02178 | | | 0.04 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.54338e+06 ave 1.54338e+06 max 1.54338e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1543382 Ave neighs/atom = 385.846 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 293.024081803485, Press = 3.85495779738947 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 9.435 | 9.435 | 9.435 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 10000 -13672.332 -13672.332 -13824.253 -13824.253 293.90069 293.90069 47631.228 47631.228 -662.79929 -662.79929 11000 -13676.713 -13676.713 -13826.271 -13826.271 289.33055 289.33055 47564.146 47564.146 1056.0773 1056.0773 Loop time of 50.0014 on 1 procs for 1000 steps with 4000 atoms Performance: 1.728 ns/day, 13.889 hours/ns, 19.999 timesteps/s 54.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 | 49.476 | 49.476 | 49.476 | 0.0 | 98.95 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.12528 | 0.12528 | 0.12528 | 0.0 | 0.25 Output | 3.4094e-05 | 3.4094e-05 | 3.4094e-05 | 0.0 | 0.00 Modify | 0.37743 | 0.37743 | 0.37743 | 0.0 | 0.75 Other | | 0.02226 | | | 0.04 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.54164e+06 ave 1.54164e+06 max 1.54164e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1541638 Ave neighs/atom = 385.409 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 293.106658364645, Press = 6.8318489515605 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 9.435 | 9.435 | 9.435 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 11000 -13676.713 -13676.713 -13826.271 -13826.271 289.33055 289.33055 47564.146 47564.146 1056.0773 1056.0773 12000 -13672.337 -13672.337 -13827.42 -13827.42 300.01936 300.01936 47674.552 47674.552 -2048.5311 -2048.5311 Loop time of 47.4205 on 1 procs for 1000 steps with 4000 atoms Performance: 1.822 ns/day, 13.172 hours/ns, 21.088 timesteps/s 57.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 | 46.976 | 46.976 | 46.976 | 0.0 | 99.06 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.14515 | 0.14515 | 0.14515 | 0.0 | 0.31 Output | 4.7922e-05 | 4.7922e-05 | 4.7922e-05 | 0.0 | 0.00 Modify | 0.25719 | 0.25719 | 0.25719 | 0.0 | 0.54 Other | | 0.04168 | | | 0.09 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.54369e+06 ave 1.54369e+06 max 1.54369e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1543688 Ave neighs/atom = 385.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 = 293.006340405802, Press = 4.55536929785921 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 9.435 | 9.435 | 9.435 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 12000 -13672.337 -13672.337 -13827.42 -13827.42 300.01936 300.01936 47674.552 47674.552 -2048.5311 -2048.5311 13000 -13677.654 -13677.654 -13828.887 -13828.887 292.57148 292.57148 47535.665 47535.665 1732.0147 1732.0147 Loop time of 43.2224 on 1 procs for 1000 steps with 4000 atoms Performance: 1.999 ns/day, 12.006 hours/ns, 23.136 timesteps/s 63.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 | 42.808 | 42.808 | 42.808 | 0.0 | 99.04 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.065298 | 0.065298 | 0.065298 | 0.0 | 0.15 Output | 3.2187e-05 | 3.2187e-05 | 3.2187e-05 | 0.0 | 0.00 Modify | 0.28786 | 0.28786 | 0.28786 | 0.0 | 0.67 Other | | 0.06174 | | | 0.14 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.53987e+06 ave 1.53987e+06 max 1.53987e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1539874 Ave neighs/atom = 384.969 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${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.851166568922, Press = 2.26885720398803 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 9.435 | 9.435 | 9.435 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 13000 -13677.654 -13677.654 -13828.887 -13828.887 292.57148 292.57148 47535.665 47535.665 1732.0147 1732.0147 14000 -13671.299 -13671.299 -13824.78 -13824.78 296.91883 296.91883 47658.445 47658.445 -1429.0892 -1429.0892 Loop time of 39.5102 on 1 procs for 1000 steps with 4000 atoms Performance: 2.187 ns/day, 10.975 hours/ns, 25.310 timesteps/s 69.6% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 39.105 | 39.105 | 39.105 | 0.0 | 98.98 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.1451 | 0.1451 | 0.1451 | 0.0 | 0.37 Output | 3.1948e-05 | 3.1948e-05 | 3.1948e-05 | 0.0 | 0.00 Modify | 0.23809 | 0.23809 | 0.23809 | 0.0 | 0.60 Other | | 0.02164 | | | 0.05 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.5436e+06 ave 1.5436e+06 max 1.5436e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1543600 Ave neighs/atom = 385.9 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${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.730174730936, Press = 5.94185641730287 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 9.435 | 9.435 | 9.435 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 14000 -13671.299 -13671.299 -13824.78 -13824.78 296.91883 296.91883 47658.445 47658.445 -1429.0892 -1429.0892 15000 -13675.671 -13675.671 -13827.33 -13827.33 293.39312 293.39312 47571.402 47571.402 822.01299 822.01299 Loop time of 46.4425 on 1 procs for 1000 steps with 4000 atoms Performance: 1.860 ns/day, 12.901 hours/ns, 21.532 timesteps/s 59.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 | 45.986 | 45.986 | 45.986 | 0.0 | 99.02 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.09543 | 0.09543 | 0.09543 | 0.0 | 0.21 Output | 3.3855e-05 | 3.3855e-05 | 3.3855e-05 | 0.0 | 0.00 Modify | 0.31874 | 0.31874 | 0.31874 | 0.0 | 0.69 Other | | 0.04181 | | | 0.09 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.5402e+06 ave 1.5402e+06 max 1.5402e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1540202 Ave neighs/atom = 385.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.771331516256, Press = 0.560796784971718 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 9.435 | 9.435 | 9.435 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 15000 -13675.671 -13675.671 -13827.33 -13827.33 293.39312 293.39312 47571.402 47571.402 822.01299 822.01299 16000 -13671.643 -13671.643 -13824.943 -13824.943 296.56909 296.56909 47629.023 47629.023 -596.14261 -596.14261 Loop time of 43.0749 on 1 procs for 1000 steps with 4000 atoms Performance: 2.006 ns/day, 11.965 hours/ns, 23.215 timesteps/s 63.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 | 42.73 | 42.73 | 42.73 | 0.0 | 99.20 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.065184 | 0.065184 | 0.065184 | 0.0 | 0.15 Output | 3.314e-05 | 3.314e-05 | 3.314e-05 | 0.0 | 0.00 Modify | 0.25839 | 0.25839 | 0.25839 | 0.0 | 0.60 Other | | 0.02161 | | | 0.05 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.54333e+06 ave 1.54333e+06 max 1.54333e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1543332 Ave neighs/atom = 385.833 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 292.704434216351, Press = 5.69657496909953 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 9.435 | 9.435 | 9.435 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 16000 -13671.643 -13671.643 -13824.943 -13824.943 296.56909 296.56909 47629.023 47629.023 -596.14261 -596.14261 17000 -13678.528 -13678.528 -13826.597 -13826.597 286.45007 286.45007 47596.649 47596.649 98.749276 98.749276 Loop time of 43.6745 on 1 procs for 1000 steps with 4000 atoms Performance: 1.978 ns/day, 12.132 hours/ns, 22.897 timesteps/s 62.5% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 43.161 | 43.161 | 43.161 | 0.0 | 98.82 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.085657 | 0.085657 | 0.085657 | 0.0 | 0.20 Output | 5.1022e-05 | 5.1022e-05 | 5.1022e-05 | 0.0 | 0.00 Modify | 0.40606 | 0.40606 | 0.40606 | 0.0 | 0.93 Other | | 0.0217 | | | 0.05 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.54141e+06 ave 1.54141e+06 max 1.54141e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1541414 Ave neighs/atom = 385.353 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${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.623560522934, Press = 1.67543423514178 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 9.435 | 9.435 | 9.435 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 17000 -13678.528 -13678.528 -13826.597 -13826.597 286.45007 286.45007 47596.649 47596.649 98.749276 98.749276 18000 -13671.187 -13671.187 -13822.266 -13822.266 292.27345 292.27345 47613.901 47613.901 -63.408841 -63.408841 Loop time of 44.1526 on 1 procs for 1000 steps with 4000 atoms Performance: 1.957 ns/day, 12.265 hours/ns, 22.649 timesteps/s 61.7% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 43.779 | 43.779 | 43.779 | 0.0 | 99.15 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.085272 | 0.085272 | 0.085272 | 0.0 | 0.19 Output | 3.0994e-05 | 3.0994e-05 | 3.0994e-05 | 0.0 | 0.00 Modify | 0.24712 | 0.24712 | 0.24712 | 0.0 | 0.56 Other | | 0.04155 | | | 0.09 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.54221e+06 ave 1.54221e+06 max 1.54221e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1542206 Ave neighs/atom = 385.551 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${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.615174023092, Press = 3.66695124413913 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 9.435 | 9.435 | 9.435 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 18000 -13671.187 -13671.187 -13822.266 -13822.266 292.27345 292.27345 47613.901 47613.901 -63.408841 -63.408841 19000 -13673.796 -13673.796 -13824.469 -13824.469 291.48783 291.48783 47601.01 47601.01 157.4475 157.4475 Loop time of 42.663 on 1 procs for 1000 steps with 4000 atoms Performance: 2.025 ns/day, 11.851 hours/ns, 23.440 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 | 42.278 | 42.278 | 42.278 | 0.0 | 99.10 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.065123 | 0.065123 | 0.065123 | 0.0 | 0.15 Output | 3.314e-05 | 3.314e-05 | 3.314e-05 | 0.0 | 0.00 Modify | 0.27789 | 0.27789 | 0.27789 | 0.0 | 0.65 Other | | 0.04161 | | | 0.10 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.54253e+06 ave 1.54253e+06 max 1.54253e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1542530 Ave neighs/atom = 385.632 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${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.6019915533, Press = 1.05315928998515 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 9.435 | 9.435 | 9.435 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 19000 -13673.796 -13673.796 -13824.469 -13824.469 291.48783 291.48783 47601.01 47601.01 157.4475 157.4475 20000 -13672.215 -13672.215 -13824.393 -13824.393 294.39962 294.39962 47598.258 47598.258 271.84283 271.84283 Loop time of 45.1972 on 1 procs for 1000 steps with 4000 atoms Performance: 1.912 ns/day, 12.555 hours/ns, 22.125 timesteps/s 61.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 | 44.894 | 44.894 | 44.894 | 0.0 | 99.33 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.10436 | 0.10436 | 0.10436 | 0.0 | 0.23 Output | 3.4094e-05 | 3.4094e-05 | 3.4094e-05 | 0.0 | 0.00 Modify | 0.17733 | 0.17733 | 0.17733 | 0.0 | 0.39 Other | | 0.0216 | | | 0.05 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.54218e+06 ave 1.54218e+06 max 1.54218e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1542182 Ave neighs/atom = 385.546 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${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.553455156508, Press = 5.35713212674899 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 9.435 | 9.435 | 9.435 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 20000 -13672.215 -13672.215 -13824.393 -13824.393 294.39962 294.39962 47598.258 47598.258 271.84283 271.84283 21000 -13675.798 -13675.798 -13827.715 -13827.715 293.89534 293.89534 47639.218 47639.218 -1116.6321 -1116.6321 Loop time of 42.5502 on 1 procs for 1000 steps with 4000 atoms Performance: 2.031 ns/day, 11.819 hours/ns, 23.502 timesteps/s 64.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 | 42.145 | 42.145 | 42.145 | 0.0 | 99.05 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.14526 | 0.14526 | 0.14526 | 0.0 | 0.34 Output | 3.2187e-05 | 3.2187e-05 | 3.2187e-05 | 0.0 | 0.00 Modify | 0.21772 | 0.21772 | 0.21772 | 0.0 | 0.51 Other | | 0.04172 | | | 0.10 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.54296e+06 ave 1.54296e+06 max 1.54296e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1542964 Ave neighs/atom = 385.741 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 292.587277189703, Press = -2.66139971037207 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 9.435 | 9.435 | 9.435 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 21000 -13675.798 -13675.798 -13827.715 -13827.715 293.89534 293.89534 47639.218 47639.218 -1116.6321 -1116.6321 22000 -13670.741 -13670.741 -13827.237 -13827.237 302.75238 302.75238 47572.755 47572.755 879.58859 879.58859 Loop time of 43.1292 on 1 procs for 1000 steps with 4000 atoms Performance: 2.003 ns/day, 11.980 hours/ns, 23.186 timesteps/s 63.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 | 42.784 | 42.784 | 42.784 | 0.0 | 99.20 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.10547 | 0.10547 | 0.10547 | 0.0 | 0.24 Output | 3.2902e-05 | 3.2902e-05 | 3.2902e-05 | 0.0 | 0.00 Modify | 0.19826 | 0.19826 | 0.19826 | 0.0 | 0.46 Other | | 0.04174 | | | 0.10 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.5404e+06 ave 1.5404e+06 max 1.5404e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1540402 Ave neighs/atom = 385.101 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${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.74509655761, Press = 4.59963577797673 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 9.435 | 9.435 | 9.435 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 22000 -13670.741 -13670.741 -13827.237 -13827.237 302.75238 302.75238 47572.755 47572.755 879.58859 879.58859 23000 -13674.982 -13674.982 -13825.214 -13825.214 290.63498 290.63498 47635.57 47635.57 -908.4919 -908.4919 Loop time of 40.3561 on 1 procs for 1000 steps with 4000 atoms Performance: 2.141 ns/day, 11.210 hours/ns, 24.779 timesteps/s 67.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 | 39.98 | 39.98 | 39.98 | 0.0 | 99.07 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.11807 | 0.11807 | 0.11807 | 0.0 | 0.29 Output | 3.4094e-05 | 3.4094e-05 | 3.4094e-05 | 0.0 | 0.00 Modify | 0.23686 | 0.23686 | 0.23686 | 0.0 | 0.59 Other | | 0.02158 | | | 0.05 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.54324e+06 ave 1.54324e+06 max 1.54324e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1543238 Ave neighs/atom = 385.81 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 292.750927632829, Press = 0.324272239392959 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 9.435 | 9.435 | 9.435 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 23000 -13674.982 -13674.982 -13825.214 -13825.214 290.63498 290.63498 47635.57 47635.57 -908.4919 -908.4919 24000 -13673.625 -13673.625 -13826.401 -13826.401 295.55548 295.55548 47566.203 47566.203 1042.0574 1042.0574 Loop time of 40.4676 on 1 procs for 1000 steps with 4000 atoms Performance: 2.135 ns/day, 11.241 hours/ns, 24.711 timesteps/s 67.7% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 40.123 | 40.123 | 40.123 | 0.0 | 99.15 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.10536 | 0.10536 | 0.10536 | 0.0 | 0.26 Output | 4.6968e-05 | 4.6968e-05 | 4.6968e-05 | 0.0 | 0.00 Modify | 0.19748 | 0.19748 | 0.19748 | 0.0 | 0.49 Other | | 0.04165 | | | 0.10 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.54205e+06 ave 1.54205e+06 max 1.54205e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1542048 Ave neighs/atom = 385.512 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${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.712774647983, Press = 2.9472684089411 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 9.435 | 9.435 | 9.435 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 24000 -13673.625 -13673.625 -13826.401 -13826.401 295.55548 295.55548 47566.203 47566.203 1042.0574 1042.0574 25000 -13676.846 -13676.846 -13826.757 -13826.757 290.01285 290.01285 47649.106 47649.106 -1355.2502 -1355.2502 Loop time of 41.1889 on 1 procs for 1000 steps with 4000 atoms Performance: 2.098 ns/day, 11.441 hours/ns, 24.278 timesteps/s 66.7% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 40.864 | 40.864 | 40.864 | 0.0 | 99.21 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.065108 | 0.065108 | 0.065108 | 0.0 | 0.16 Output | 3.2902e-05 | 3.2902e-05 | 3.2902e-05 | 0.0 | 0.00 Modify | 0.23796 | 0.23796 | 0.23796 | 0.0 | 0.58 Other | | 0.02216 | | | 0.05 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.54361e+06 ave 1.54361e+06 max 1.54361e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1543610 Ave neighs/atom = 385.902 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 292.716195606783, Press = 1.00796699330941 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 9.435 | 9.435 | 9.435 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 25000 -13676.846 -13676.846 -13826.757 -13826.757 290.01285 290.01285 47649.106 47649.106 -1355.2502 -1355.2502 26000 -13670.834 -13670.834 -13827.051 -13827.051 302.21225 302.21225 47514.606 47514.606 2558.3531 2558.3531 Loop time of 39.3403 on 1 procs for 1000 steps with 4000 atoms Performance: 2.196 ns/day, 10.928 hours/ns, 25.419 timesteps/s 69.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 | 39.056 | 39.056 | 39.056 | 0.0 | 99.28 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.065083 | 0.065083 | 0.065083 | 0.0 | 0.17 Output | 2.5988e-05 | 2.5988e-05 | 2.5988e-05 | 0.0 | 0.00 Modify | 0.19754 | 0.19754 | 0.19754 | 0.0 | 0.50 Other | | 0.02171 | | | 0.06 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.54108e+06 ave 1.54108e+06 max 1.54108e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1541078 Ave neighs/atom = 385.269 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${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.788700690406, Press = 1.53957843009491 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 9.435 | 9.435 | 9.435 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 26000 -13670.834 -13670.834 -13827.051 -13827.051 302.21225 302.21225 47514.606 47514.606 2558.3531 2558.3531 27000 -13672.903 -13672.903 -13823.748 -13823.748 291.81957 291.81957 47691.292 47691.292 -2312.0799 -2312.0799 Loop time of 49.2633 on 1 procs for 1000 steps with 4000 atoms Performance: 1.754 ns/day, 13.684 hours/ns, 20.299 timesteps/s 56.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 | 48.812 | 48.812 | 48.812 | 0.0 | 99.08 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.12682 | 0.12682 | 0.12682 | 0.0 | 0.26 Output | 3.5048e-05 | 3.5048e-05 | 3.5048e-05 | 0.0 | 0.00 Modify | 0.26326 | 0.26326 | 0.26326 | 0.0 | 0.53 Other | | 0.06096 | | | 0.12 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.54542e+06 ave 1.54542e+06 max 1.54542e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1545424 Ave neighs/atom = 386.356 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 292.784386762432, Press = 2.96353856266827 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 9.435 | 9.435 | 9.435 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 27000 -13672.903 -13672.903 -13823.748 -13823.748 291.81957 291.81957 47691.292 47691.292 -2312.0799 -2312.0799 28000 -13674.919 -13674.919 -13825.453 -13825.453 291.21702 291.21702 47568.485 47568.485 1017.0624 1017.0624 Loop time of 50.9703 on 1 procs for 1000 steps with 4000 atoms Performance: 1.695 ns/day, 14.158 hours/ns, 19.619 timesteps/s 54.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 | 50.56 | 50.56 | 50.56 | 0.0 | 99.19 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.087197 | 0.087197 | 0.087197 | 0.0 | 0.17 Output | 3.2902e-05 | 3.2902e-05 | 3.2902e-05 | 0.0 | 0.00 Modify | 0.30074 | 0.30074 | 0.30074 | 0.0 | 0.59 Other | | 0.0225 | | | 0.04 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.54003e+06 ave 1.54003e+06 max 1.54003e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1540032 Ave neighs/atom = 385.008 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${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.824704803998, Press = 0.851041883811899 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 9.435 | 9.435 | 9.435 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 28000 -13674.919 -13674.919 -13825.453 -13825.453 291.21702 291.21702 47568.485 47568.485 1017.0624 1017.0624 29000 -13673.598 -13673.598 -13824.905 -13824.905 292.71376 292.71376 47624.53 47624.53 -518.90012 -518.90012 Loop time of 46.0037 on 1 procs for 1000 steps with 4000 atoms Performance: 1.878 ns/day, 12.779 hours/ns, 21.737 timesteps/s 61.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 | 45.553 | 45.553 | 45.553 | 0.0 | 99.02 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.087976 | 0.087976 | 0.087976 | 0.0 | 0.19 Output | 5.1975e-05 | 5.1975e-05 | 5.1975e-05 | 0.0 | 0.00 Modify | 0.32248 | 0.32248 | 0.32248 | 0.0 | 0.70 Other | | 0.04046 | | | 0.09 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.54346e+06 ave 1.54346e+06 max 1.54346e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1543462 Ave neighs/atom = 385.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.787121360502, Press = 2.32636313440532 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 9.435 | 9.435 | 9.435 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 29000 -13673.598 -13673.598 -13824.905 -13824.905 292.71376 292.71376 47624.53 47624.53 -518.90012 -518.90012 30000 -13673.634 -13673.634 -13826.171 -13826.171 295.09236 295.09236 47590.428 47590.428 363.81538 363.81538 Loop time of 43.5627 on 1 procs for 1000 steps with 4000 atoms Performance: 1.983 ns/day, 12.101 hours/ns, 22.955 timesteps/s 64.6% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 43.219 | 43.219 | 43.219 | 0.0 | 99.21 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.088265 | 0.088265 | 0.088265 | 0.0 | 0.20 Output | 3.314e-05 | 3.314e-05 | 3.314e-05 | 0.0 | 0.00 Modify | 0.23283 | 0.23283 | 0.23283 | 0.0 | 0.53 Other | | 0.02236 | | | 0.05 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.54232e+06 ave 1.54232e+06 max 1.54232e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1542324 Ave neighs/atom = 385.581 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 292.756680958047, Press = 0.384535071471173 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 9.435 | 9.435 | 9.435 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 30000 -13673.634 -13673.634 -13826.171 -13826.171 295.09236 295.09236 47590.428 47590.428 363.81538 363.81538 31000 -13672.81 -13672.81 -13822.814 -13822.814 290.19404 290.19404 47628.32 47628.32 -515.01979 -515.01979 Loop time of 40.3754 on 1 procs for 1000 steps with 4000 atoms Performance: 2.140 ns/day, 11.215 hours/ns, 24.768 timesteps/s 69.4% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 39.902 | 39.902 | 39.902 | 0.0 | 98.83 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.12781 | 0.12781 | 0.12781 | 0.0 | 0.32 Output | 3.4094e-05 | 3.4094e-05 | 3.4094e-05 | 0.0 | 0.00 Modify | 0.30208 | 0.30208 | 0.30208 | 0.0 | 0.75 Other | | 0.04304 | | | 0.11 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.54278e+06 ave 1.54278e+06 max 1.54278e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1542776 Ave neighs/atom = 385.694 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${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.749026294602, Press = 3.80013218420542 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 9.435 | 9.435 | 9.435 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 31000 -13672.81 -13672.81 -13822.814 -13822.814 290.19404 290.19404 47628.32 47628.32 -515.01979 -515.01979 32000 -13677.505 -13677.505 -13827.868 -13827.868 290.88652 290.88652 47604.081 47604.081 -174.42214 -174.42214 Loop time of 41.6846 on 1 procs for 1000 steps with 4000 atoms Performance: 2.073 ns/day, 11.579 hours/ns, 23.990 timesteps/s 67.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 | 41.271 | 41.271 | 41.271 | 0.0 | 99.01 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.10792 | 0.10792 | 0.10792 | 0.0 | 0.26 Output | 2.718e-05 | 2.718e-05 | 2.718e-05 | 0.0 | 0.00 Modify | 0.28285 | 0.28285 | 0.28285 | 0.0 | 0.68 Other | | 0.02266 | | | 0.05 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.54215e+06 ave 1.54215e+06 max 1.54215e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1542146 Ave neighs/atom = 385.536 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${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.755195170611, Press = -1.56151204192107 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 9.435 | 9.435 | 9.435 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 32000 -13677.505 -13677.505 -13827.868 -13827.868 290.88652 290.88652 47604.081 47604.081 -174.42214 -174.42214 33000 -13673.065 -13673.065 -13824.813 -13824.813 293.56786 293.56786 47591.953 47591.953 395.24775 395.24775 Loop time of 42.3707 on 1 procs for 1000 steps with 4000 atoms Performance: 2.039 ns/day, 11.770 hours/ns, 23.601 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 | 41.977 | 41.977 | 41.977 | 0.0 | 99.07 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.08792 | 0.08792 | 0.08792 | 0.0 | 0.21 Output | 2.5988e-05 | 2.5988e-05 | 2.5988e-05 | 0.0 | 0.00 Modify | 0.28327 | 0.28327 | 0.28327 | 0.0 | 0.67 Other | | 0.02271 | | | 0.05 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.54223e+06 ave 1.54223e+06 max 1.54223e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1542232 Ave neighs/atom = 385.558 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${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.70260859867, Press = 3.14213724260916 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 9.435 | 9.435 | 9.435 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 33000 -13673.065 -13673.065 -13824.813 -13824.813 293.56786 293.56786 47591.953 47591.953 395.24775 395.24775 34000 -13677.316 -13677.316 -13827.34 -13827.34 290.23161 290.23161 47622.467 47622.467 -660.35822 -660.35822 Loop time of 40.7817 on 1 procs for 1000 steps with 4000 atoms Performance: 2.119 ns/day, 11.328 hours/ns, 24.521 timesteps/s 68.8% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 40.489 | 40.489 | 40.489 | 0.0 | 99.28 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.087911 | 0.087911 | 0.087911 | 0.0 | 0.22 Output | 3.3855e-05 | 3.3855e-05 | 3.3855e-05 | 0.0 | 0.00 Modify | 0.18216 | 0.18216 | 0.18216 | 0.0 | 0.45 Other | | 0.02262 | | | 0.06 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.54324e+06 ave 1.54324e+06 max 1.54324e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1543240 Ave neighs/atom = 385.81 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 292.679130085216, Press = 0.141873586885585 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 9.435 | 9.435 | 9.435 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 34000 -13677.316 -13677.316 -13827.34 -13827.34 290.23161 290.23161 47622.467 47622.467 -660.35822 -660.35822 35000 -13673.03 -13673.03 -13826.928 -13826.928 297.72734 297.72734 47577.788 47577.788 708.8561 708.8561 Loop time of 41.2902 on 1 procs for 1000 steps with 4000 atoms Performance: 2.093 ns/day, 11.469 hours/ns, 24.219 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 | 40.857 | 40.857 | 40.857 | 0.0 | 98.95 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.12781 | 0.12781 | 0.12781 | 0.0 | 0.31 Output | 2.6941e-05 | 2.6941e-05 | 2.6941e-05 | 0.0 | 0.00 Modify | 0.28253 | 0.28253 | 0.28253 | 0.0 | 0.68 Other | | 0.02258 | | | 0.05 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.54173e+06 ave 1.54173e+06 max 1.54173e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1541730 Ave neighs/atom = 385.433 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${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.693785900461, Press = 2.11433897618504 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 9.435 | 9.435 | 9.435 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 35000 -13673.03 -13673.03 -13826.928 -13826.928 297.72734 297.72734 47577.788 47577.788 708.8561 708.8561 36000 -13674.463 -13674.463 -13825.805 -13825.805 292.78065 292.78065 47659.684 47659.684 -1555.9937 -1555.9937 Loop time of 39.721 on 1 procs for 1000 steps with 4000 atoms Performance: 2.175 ns/day, 11.034 hours/ns, 25.176 timesteps/s 71.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 | 39.399 | 39.399 | 39.399 | 0.0 | 99.19 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.087809 | 0.087809 | 0.087809 | 0.0 | 0.22 Output | 3.3855e-05 | 3.3855e-05 | 3.3855e-05 | 0.0 | 0.00 Modify | 0.19217 | 0.19217 | 0.19217 | 0.0 | 0.48 Other | | 0.04246 | | | 0.11 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.54315e+06 ave 1.54315e+06 max 1.54315e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1543154 Ave neighs/atom = 385.788 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${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.690306074341, Press = 0.302332443223769 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 9.435 | 9.435 | 9.435 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 36000 -13674.463 -13674.463 -13825.805 -13825.805 292.78065 292.78065 47659.684 47659.684 -1555.9937 -1555.9937 37000 -13671.155 -13671.155 -13823.258 -13823.258 294.2527 294.2527 47492.346 47492.346 3306.6341 3306.6341 Loop time of 38.4828 on 1 procs for 1000 steps with 4000 atoms Performance: 2.245 ns/day, 10.690 hours/ns, 25.986 timesteps/s 73.3% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 38.129 | 38.129 | 38.129 | 0.0 | 99.08 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.10816 | 0.10816 | 0.10816 | 0.0 | 0.28 Output | 3.4809e-05 | 3.4809e-05 | 3.4809e-05 | 0.0 | 0.00 Modify | 0.22316 | 0.22316 | 0.22316 | 0.0 | 0.58 Other | | 0.0229 | | | 0.06 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.54057e+06 ave 1.54057e+06 max 1.54057e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1540568 Ave neighs/atom = 385.142 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${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.756604520464, Press = 2.35893407605611 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 9.435 | 9.435 | 9.435 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 37000 -13671.155 -13671.155 -13823.258 -13823.258 294.2527 294.2527 47492.346 47492.346 3306.6341 3306.6341 38000 -13676.756 -13676.756 -13824.45 -13824.45 285.72308 285.72308 47664.188 47664.188 -1708.1839 -1708.1839 Loop time of 34.1653 on 1 procs for 1000 steps with 4000 atoms Performance: 2.529 ns/day, 9.490 hours/ns, 29.269 timesteps/s 82.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 | 33.892 | 33.892 | 33.892 | 0.0 | 99.20 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.068047 | 0.068047 | 0.068047 | 0.0 | 0.20 Output | 3.314e-05 | 3.314e-05 | 3.314e-05 | 0.0 | 0.00 Modify | 0.18259 | 0.18259 | 0.18259 | 0.0 | 0.53 Other | | 0.02255 | | | 0.07 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.54718e+06 ave 1.54718e+06 max 1.54718e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1547180 Ave neighs/atom = 386.795 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${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.780285783943, Press = 1.15062854281748 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 9.435 | 9.435 | 9.435 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 38000 -13676.756 -13676.756 -13824.45 -13824.45 285.72308 285.72308 47664.188 47664.188 -1708.1839 -1708.1839 39000 -13674.032 -13674.032 -13825.826 -13825.826 293.65494 293.65494 47564.857 47564.857 1113.6328 1113.6328 Loop time of 36.0547 on 1 procs for 1000 steps with 4000 atoms Performance: 2.396 ns/day, 10.015 hours/ns, 27.736 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 | 35.709 | 35.709 | 35.709 | 0.0 | 99.04 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.099597 | 0.099597 | 0.099597 | 0.0 | 0.28 Output | 3.2187e-05 | 3.2187e-05 | 3.2187e-05 | 0.0 | 0.00 Modify | 0.223 | 0.223 | 0.223 | 0.0 | 0.62 Other | | 0.02263 | | | 0.06 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.54062e+06 ave 1.54062e+06 max 1.54062e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1540624 Ave neighs/atom = 385.156 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 292.780604769215, Press = 1.28114470084586 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 9.435 | 9.435 | 9.435 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 39000 -13674.032 -13674.032 -13825.826 -13825.826 293.65494 293.65494 47564.857 47564.857 1113.6328 1113.6328 40000 -13672.924 -13672.924 -13825.536 -13825.536 295.23801 295.23801 47644.101 47644.101 -1073.3636 -1073.3636 Loop time of 32.698 on 1 procs for 1000 steps with 4000 atoms Performance: 2.642 ns/day, 9.083 hours/ns, 30.583 timesteps/s 87.0% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 32.403 | 32.403 | 32.403 | 0.0 | 99.10 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.068533 | 0.068533 | 0.068533 | 0.0 | 0.21 Output | 3.4094e-05 | 3.4094e-05 | 3.4094e-05 | 0.0 | 0.00 Modify | 0.20404 | 0.20404 | 0.20404 | 0.0 | 0.62 Other | | 0.02274 | | | 0.07 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.54352e+06 ave 1.54352e+06 max 1.54352e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1543524 Ave neighs/atom = 385.881 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${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.771585506429, Press = 1.31831643687201 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 9.435 | 9.435 | 9.435 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 40000 -13672.924 -13672.924 -13825.536 -13825.536 295.23801 295.23801 47644.101 47644.101 -1073.3636 -1073.3636 41000 -13674.171 -13674.171 -13825.32 -13825.32 292.40842 292.40842 47559.895 47559.895 1287.8245 1287.8245 Loop time of 46.9274 on 1 procs for 1000 steps with 4000 atoms Performance: 1.841 ns/day, 13.035 hours/ns, 21.310 timesteps/s 61.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 | 46.493 | 46.493 | 46.493 | 0.0 | 99.08 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.090714 | 0.090714 | 0.090714 | 0.0 | 0.19 Output | 3.1948e-05 | 3.1948e-05 | 3.1948e-05 | 0.0 | 0.00 Modify | 0.28166 | 0.28166 | 0.28166 | 0.0 | 0.60 Other | | 0.06165 | | | 0.13 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.54062e+06 ave 1.54062e+06 max 1.54062e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1540622 Ave neighs/atom = 385.156 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 292.727784284212, Press = 0.574987685192644 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 9.435 | 9.435 | 9.435 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 41000 -13674.171 -13674.171 -13825.32 -13825.32 292.40842 292.40842 47559.895 47559.895 1287.8245 1287.8245 42000 -13677.664 -13677.664 -13828.011 -13828.011 290.85714 290.85714 47664.233 47664.233 -1884.8497 -1884.8497 Loop time of 44.3702 on 1 procs for 1000 steps with 4000 atoms Performance: 1.947 ns/day, 12.325 hours/ns, 22.538 timesteps/s 64.8% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 44.069 | 44.069 | 44.069 | 0.0 | 99.32 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.091227 | 0.091227 | 0.091227 | 0.0 | 0.21 Output | 3.2187e-05 | 3.2187e-05 | 3.2187e-05 | 0.0 | 0.00 Modify | 0.1867 | 0.1867 | 0.1867 | 0.0 | 0.42 Other | | 0.0237 | | | 0.05 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.54389e+06 ave 1.54389e+06 max 1.54389e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1543888 Ave neighs/atom = 385.972 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${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.721412149198, Press = 2.46004447565967 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 9.435 | 9.435 | 9.435 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 42000 -13677.664 -13677.664 -13828.011 -13828.011 290.85714 290.85714 47664.233 47664.233 -1884.8497 -1884.8497 43000 -13671.667 -13671.667 -13822.009 -13822.009 290.84657 290.84657 47569.269 47569.269 1230.3321 1230.3321 Loop time of 46.5573 on 1 procs for 1000 steps with 4000 atoms Performance: 1.856 ns/day, 12.933 hours/ns, 21.479 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 | 46.136 | 46.136 | 46.136 | 0.0 | 99.09 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.13134 | 0.13134 | 0.13134 | 0.0 | 0.28 Output | 3.314e-05 | 3.314e-05 | 3.314e-05 | 0.0 | 0.00 Modify | 0.26637 | 0.26637 | 0.26637 | 0.0 | 0.57 Other | | 0.02372 | | | 0.05 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.54037e+06 ave 1.54037e+06 max 1.54037e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1540374 Ave neighs/atom = 385.094 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 292.71427209073, Press = -0.134276126904292 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 9.435 | 9.435 | 9.435 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 43000 -13671.667 -13671.667 -13822.009 -13822.009 290.84657 290.84657 47569.269 47569.269 1230.3321 1230.3321 44000 -13672.246 -13672.246 -13825.088 -13825.088 295.68261 295.68261 47619.361 47619.361 -340.75686 -340.75686 Loop time of 49.1324 on 1 procs for 1000 steps with 4000 atoms Performance: 1.759 ns/day, 13.648 hours/ns, 20.353 timesteps/s 58.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 | 48.808 | 48.808 | 48.808 | 0.0 | 99.34 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.11258 | 0.11258 | 0.11258 | 0.0 | 0.23 Output | 3.5048e-05 | 3.5048e-05 | 3.5048e-05 | 0.0 | 0.00 Modify | 0.18828 | 0.18828 | 0.18828 | 0.0 | 0.38 Other | | 0.02371 | | | 0.05 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.54387e+06 ave 1.54387e+06 max 1.54387e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1543866 Ave neighs/atom = 385.966 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${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.728745899345, Press = 1.82239776701315 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 9.435 | 9.435 | 9.435 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 44000 -13672.246 -13672.246 -13825.088 -13825.088 295.68261 295.68261 47619.361 47619.361 -340.75686 -340.75686 45000 -13675.487 -13675.487 -13825.004 -13825.004 289.25092 289.25092 47602.56 47602.56 42.939565 42.939565 Loop time of 46.1136 on 1 procs for 1000 steps with 4000 atoms Performance: 1.874 ns/day, 12.809 hours/ns, 21.686 timesteps/s 62.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 | 45.73 | 45.73 | 45.73 | 0.0 | 99.17 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.13177 | 0.13177 | 0.13177 | 0.0 | 0.29 Output | 3.4809e-05 | 3.4809e-05 | 3.4809e-05 | 0.0 | 0.00 Modify | 0.22823 | 0.22823 | 0.22823 | 0.0 | 0.49 Other | | 0.02383 | | | 0.05 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.54233e+06 ave 1.54233e+06 max 1.54233e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1542326 Ave neighs/atom = 385.582 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 292.746934887388, Press = 0.396454536095316 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 9.435 | 9.435 | 9.435 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 45000 -13675.487 -13675.487 -13825.004 -13825.004 289.25092 289.25092 47602.56 47602.56 42.939565 42.939565 46000 -13671.995 -13671.995 -13824.78 -13824.78 295.57383 295.57383 47604.602 47604.602 113.60623 113.60623 Loop time of 46.2893 on 1 procs for 1000 steps with 4000 atoms Performance: 1.867 ns/day, 12.858 hours/ns, 21.603 timesteps/s 62.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 | 45.922 | 45.922 | 45.922 | 0.0 | 99.21 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.11122 | 0.11122 | 0.11122 | 0.0 | 0.24 Output | 2.718e-05 | 2.718e-05 | 2.718e-05 | 0.0 | 0.00 Modify | 0.23266 | 0.23266 | 0.23266 | 0.0 | 0.50 Other | | 0.02378 | | | 0.05 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.54247e+06 ave 1.54247e+06 max 1.54247e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1542470 Ave neighs/atom = 385.618 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${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.712416971809, Press = 1.84165655856845 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 9.435 | 9.435 | 9.435 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 46000 -13671.995 -13671.995 -13824.78 -13824.78 295.57383 295.57383 47604.602 47604.602 113.60623 113.60623 47000 -13676.465 -13676.465 -13825.656 -13825.656 288.61932 288.61932 47628.189 47628.189 -712.24295 -712.24295 Loop time of 45.632 on 1 procs for 1000 steps with 4000 atoms Performance: 1.893 ns/day, 12.676 hours/ns, 21.914 timesteps/s 63.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 | 45.029 | 45.029 | 45.029 | 0.0 | 98.68 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.09122 | 0.09122 | 0.09122 | 0.0 | 0.20 Output | 2.6941e-05 | 2.6941e-05 | 2.6941e-05 | 0.0 | 0.00 Modify | 0.48805 | 0.48805 | 0.48805 | 0.0 | 1.07 Other | | 0.02359 | | | 0.05 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.54237e+06 ave 1.54237e+06 max 1.54237e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1542372 Ave neighs/atom = 385.593 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${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.709895923802, Press = -0.592677293840263 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 9.435 | 9.435 | 9.435 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 47000 -13676.465 -13676.465 -13825.656 -13825.656 288.61932 288.61932 47628.189 47628.189 -712.24295 -712.24295 48000 -13675.633 -13675.633 -13825.979 -13825.979 290.85324 290.85324 47547.34 47547.34 1597.8097 1597.8097 Loop time of 46.7697 on 1 procs for 1000 steps with 4000 atoms Performance: 1.847 ns/day, 12.992 hours/ns, 21.381 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 | 46.337 | 46.337 | 46.337 | 0.0 | 99.07 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.12142 | 0.12142 | 0.12142 | 0.0 | 0.26 Output | 2.6941e-05 | 2.6941e-05 | 2.6941e-05 | 0.0 | 0.00 Modify | 0.28795 | 0.28795 | 0.28795 | 0.0 | 0.62 Other | | 0.02369 | | | 0.05 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.54146e+06 ave 1.54146e+06 max 1.54146e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1541456 Ave neighs/atom = 385.364 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${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.703702065978, Press = 2.53920568383956 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 9.435 | 9.435 | 9.435 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 48000 -13675.633 -13675.633 -13825.979 -13825.979 290.85324 290.85324 47547.34 47547.34 1597.8097 1597.8097 49000 -13675.14 -13675.14 -13825.428 -13825.428 290.74164 290.74164 47627.782 47627.782 -659.57626 -659.57626 Loop time of 45.7983 on 1 procs for 1000 steps with 4000 atoms Performance: 1.887 ns/day, 12.722 hours/ns, 21.835 timesteps/s 62.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 | 45.497 | 45.497 | 45.497 | 0.0 | 99.34 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.11065 | 0.11065 | 0.11065 | 0.0 | 0.24 Output | 6.1989e-05 | 6.1989e-05 | 6.1989e-05 | 0.0 | 0.00 Modify | 0.16686 | 0.16686 | 0.16686 | 0.0 | 0.36 Other | | 0.02367 | | | 0.05 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.54384e+06 ave 1.54384e+06 max 1.54384e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1543840 Ave neighs/atom = 385.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.665889222648, Press = 0.648430328406298 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 9.435 | 9.435 | 9.435 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 49000 -13675.14 -13675.14 -13825.428 -13825.428 290.74164 290.74164 47627.782 47627.782 -659.57626 -659.57626 50000 -13670.326 -13670.326 -13824.196 -13824.196 297.67283 297.67283 47584.96 47584.96 710.94584 710.94584 Loop time of 41.5834 on 1 procs for 1000 steps with 4000 atoms Performance: 2.078 ns/day, 11.551 hours/ns, 24.048 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 | 41.121 | 41.121 | 41.121 | 0.0 | 98.89 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.11035 | 0.11035 | 0.11035 | 0.0 | 0.27 Output | 3.3855e-05 | 3.3855e-05 | 3.3855e-05 | 0.0 | 0.00 Modify | 0.30844 | 0.30844 | 0.30844 | 0.0 | 0.74 Other | | 0.04353 | | | 0.10 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.54157e+06 ave 1.54157e+06 max 1.54157e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1541570 Ave neighs/atom = 385.392 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${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.691745698296, Press = 1.1817546380021 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 9.435 | 9.435 | 9.435 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 50000 -13670.326 -13670.326 -13824.196 -13824.196 297.67283 297.67283 47584.96 47584.96 710.94584 710.94584 51000 -13674.679 -13674.679 -13825.257 -13825.257 291.3029 291.3029 47644.692 47644.692 -1127.6037 -1127.6037 Loop time of 46.7375 on 1 procs for 1000 steps with 4000 atoms Performance: 1.849 ns/day, 12.983 hours/ns, 21.396 timesteps/s 61.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 | 46.276 | 46.276 | 46.276 | 0.0 | 99.01 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.071107 | 0.071107 | 0.071107 | 0.0 | 0.15 Output | 3.4809e-05 | 3.4809e-05 | 3.4809e-05 | 0.0 | 0.00 Modify | 0.34686 | 0.34686 | 0.34686 | 0.0 | 0.74 Other | | 0.04356 | | | 0.09 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.54341e+06 ave 1.54341e+06 max 1.54341e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1543414 Ave neighs/atom = 385.853 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${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.730066749004, Press = 0.745099440050625 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 9.435 | 9.435 | 9.435 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 51000 -13674.679 -13674.679 -13825.257 -13825.257 291.3029 291.3029 47644.692 47644.692 -1127.6037 -1127.6037 52000 -13672.046 -13672.046 -13823.346 -13823.346 292.70085 292.70085 47545.508 47545.508 1779.6807 1779.6807 Loop time of 51.9476 on 1 procs for 1000 steps with 4000 atoms Performance: 1.663 ns/day, 14.430 hours/ns, 19.250 timesteps/s 54.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 | 51.491 | 51.491 | 51.491 | 0.0 | 99.12 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.11032 | 0.11032 | 0.11032 | 0.0 | 0.21 Output | 3.4094e-05 | 3.4094e-05 | 3.4094e-05 | 0.0 | 0.00 Modify | 0.30245 | 0.30245 | 0.30245 | 0.0 | 0.58 Other | | 0.04337 | | | 0.08 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.54116e+06 ave 1.54116e+06 max 1.54116e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1541164 Ave neighs/atom = 385.291 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${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.756080523884, Press = 1.07939101728766 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 9.435 | 9.435 | 9.435 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 52000 -13672.046 -13672.046 -13823.346 -13823.346 292.70085 292.70085 47545.508 47545.508 1779.6807 1779.6807 53000 -13671.649 -13671.649 -13821.614 -13821.614 290.11645 290.11645 47696.346 47696.346 -2346.1144 -2346.1144 Loop time of 49.8653 on 1 procs for 1000 steps with 4000 atoms Performance: 1.733 ns/day, 13.851 hours/ns, 20.054 timesteps/s 57.2% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 49.405 | 49.405 | 49.405 | 0.0 | 99.08 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.21102 | 0.21102 | 0.21102 | 0.0 | 0.42 Output | 3.5048e-05 | 3.5048e-05 | 3.5048e-05 | 0.0 | 0.00 Modify | 0.22469 | 0.22469 | 0.22469 | 0.0 | 0.45 Other | | 0.02418 | | | 0.05 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.54513e+06 ave 1.54513e+06 max 1.54513e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1545132 Ave neighs/atom = 386.283 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${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.729487886694, Press = 0.897007354070158 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 9.435 | 9.435 | 9.435 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 53000 -13671.649 -13671.649 -13821.614 -13821.614 290.11645 290.11645 47696.346 47696.346 -2346.1144 -2346.1144 54000 -13674.998 -13674.998 -13827.434 -13827.434 294.89743 294.89743 47554.566 47554.566 1319.7495 1319.7495 Loop time of 50.3514 on 1 procs for 1000 steps with 4000 atoms Performance: 1.716 ns/day, 13.987 hours/ns, 19.860 timesteps/s 56.7% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 49.954 | 49.954 | 49.954 | 0.0 | 99.21 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.069576 | 0.069576 | 0.069576 | 0.0 | 0.14 Output | 2.6941e-05 | 2.6941e-05 | 2.6941e-05 | 0.0 | 0.00 Modify | 0.30412 | 0.30412 | 0.30412 | 0.0 | 0.60 Other | | 0.02326 | | | 0.05 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.54027e+06 ave 1.54027e+06 max 1.54027e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1540268 Ave neighs/atom = 385.067 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 292.736111441147, Press = 0.708230701451588 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 9.435 | 9.435 | 9.435 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 54000 -13674.998 -13674.998 -13827.434 -13827.434 294.89743 294.89743 47554.566 47554.566 1319.7495 1319.7495 55000 -13674.28 -13674.28 -13825.135 -13825.135 291.83878 291.83878 47626.991 47626.991 -639.4621 -639.4621 Loop time of 52.5169 on 1 procs for 1000 steps with 4000 atoms Performance: 1.645 ns/day, 14.588 hours/ns, 19.041 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 | 51.987 | 51.987 | 51.987 | 0.0 | 98.99 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.090213 | 0.090213 | 0.090213 | 0.0 | 0.17 Output | 3.5048e-05 | 3.5048e-05 | 3.5048e-05 | 0.0 | 0.00 Modify | 0.37623 | 0.37623 | 0.37623 | 0.0 | 0.72 Other | | 0.06339 | | | 0.12 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.5439e+06 ave 1.5439e+06 max 1.5439e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1543898 Ave neighs/atom = 385.974 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${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.743493715997, Press = 1.1918910641211 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 9.435 | 9.435 | 9.435 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 55000 -13674.28 -13674.28 -13825.135 -13825.135 291.83878 291.83878 47626.991 47626.991 -639.4621 -639.4621 56000 -13671.326 -13671.326 -13823.955 -13823.955 295.27123 295.27123 47594.246 47594.246 395.57612 395.57612 Loop time of 51.0839 on 1 procs for 1000 steps with 4000 atoms Performance: 1.691 ns/day, 14.190 hours/ns, 19.576 timesteps/s 55.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 | 50.658 | 50.658 | 50.658 | 0.0 | 99.17 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.1107 | 0.1107 | 0.1107 | 0.0 | 0.22 Output | 2.6941e-05 | 2.6941e-05 | 2.6941e-05 | 0.0 | 0.00 Modify | 0.26204 | 0.26204 | 0.26204 | 0.0 | 0.51 Other | | 0.05321 | | | 0.10 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.54252e+06 ave 1.54252e+06 max 1.54252e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1542522 Ave neighs/atom = 385.63 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${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.753211308032, Press = 0.526308497129036 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 9.435 | 9.435 | 9.435 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 56000 -13671.326 -13671.326 -13823.955 -13823.955 295.27123 295.27123 47594.246 47594.246 395.57612 395.57612 57000 -13677.47 -13677.47 -13826.857 -13826.857 288.99766 288.99766 47605.399 47605.399 -162.75341 -162.75341 Loop time of 48.4566 on 1 procs for 1000 steps with 4000 atoms Performance: 1.783 ns/day, 13.460 hours/ns, 20.637 timesteps/s 58.8% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 47.995 | 47.995 | 47.995 | 0.0 | 99.05 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.1716 | 0.1716 | 0.1716 | 0.0 | 0.35 Output | 3.5048e-05 | 3.5048e-05 | 3.5048e-05 | 0.0 | 0.00 Modify | 0.24655 | 0.24655 | 0.24655 | 0.0 | 0.51 Other | | 0.04342 | | | 0.09 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.54324e+06 ave 1.54324e+06 max 1.54324e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1543236 Ave neighs/atom = 385.809 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${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.748837324498, Press = 1.27398446463708 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 9.435 | 9.435 | 9.435 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 57000 -13677.47 -13677.47 -13826.857 -13826.857 288.99766 288.99766 47605.399 47605.399 -162.75341 -162.75341 58000 -13673.441 -13673.441 -13825.982 -13825.982 295.10027 295.10027 47610.327 47610.327 -157.90483 -157.90483 Loop time of 53.2014 on 1 procs for 1000 steps with 4000 atoms Performance: 1.624 ns/day, 14.778 hours/ns, 18.797 timesteps/s 53.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 | 52.705 | 52.705 | 52.705 | 0.0 | 99.07 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.16925 | 0.16925 | 0.16925 | 0.0 | 0.32 Output | 3.4094e-05 | 3.4094e-05 | 3.4094e-05 | 0.0 | 0.00 Modify | 0.28424 | 0.28424 | 0.28424 | 0.0 | 0.53 Other | | 0.0433 | | | 0.08 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.54221e+06 ave 1.54221e+06 max 1.54221e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1542214 Ave neighs/atom = 385.553 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 292.73481773162, Press = -0.0641574553227508 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 9.435 | 9.435 | 9.435 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 58000 -13673.441 -13673.441 -13825.982 -13825.982 295.10027 295.10027 47610.327 47610.327 -157.90483 -157.90483 59000 -13675.438 -13675.438 -13826.519 -13826.519 292.27546 292.27546 47575.447 47575.447 756.0375 756.0375 Loop time of 49.6448 on 1 procs for 1000 steps with 4000 atoms Performance: 1.740 ns/day, 13.790 hours/ns, 20.143 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 | 49.265 | 49.265 | 49.265 | 0.0 | 99.23 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.11049 | 0.11049 | 0.11049 | 0.0 | 0.22 Output | 3.5048e-05 | 3.5048e-05 | 3.5048e-05 | 0.0 | 0.00 Modify | 0.24596 | 0.24596 | 0.24596 | 0.0 | 0.50 Other | | 0.0233 | | | 0.05 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.54192e+06 ave 1.54192e+06 max 1.54192e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1541920 Ave neighs/atom = 385.48 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${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.706596884424, Press = 1.91871741261895 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 9.435 | 9.435 | 9.435 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 59000 -13675.438 -13675.438 -13826.519 -13826.519 292.27546 292.27546 47575.447 47575.447 756.0375 756.0375 60000 -13675.982 -13675.982 -13827.166 -13827.166 292.47634 292.47634 47636.74 47636.74 -1038.2114 -1038.2114 Loop time of 53.4427 on 1 procs for 1000 steps with 4000 atoms Performance: 1.617 ns/day, 14.845 hours/ns, 18.712 timesteps/s 53.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 | 52.942 | 52.942 | 52.942 | 0.0 | 99.06 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.13152 | 0.13152 | 0.13152 | 0.0 | 0.25 Output | 2.718e-05 | 2.718e-05 | 2.718e-05 | 0.0 | 0.00 Modify | 0.34575 | 0.34575 | 0.34575 | 0.0 | 0.65 Other | | 0.02327 | | | 0.04 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.54272e+06 ave 1.54272e+06 max 1.54272e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1542722 Ave neighs/atom = 385.68 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 292.715572496906, Press = -0.0122520382442722 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 9.435 | 9.435 | 9.435 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 60000 -13675.982 -13675.982 -13827.166 -13827.166 292.47634 292.47634 47636.74 47636.74 -1038.2114 -1038.2114 61000 -13674.42 -13674.42 -13826.069 -13826.069 293.37402 293.37402 47568.344 47568.344 983.52524 983.52524 Loop time of 47.7677 on 1 procs for 1000 steps with 4000 atoms Performance: 1.809 ns/day, 13.269 hours/ns, 20.935 timesteps/s 59.5% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 47.329 | 47.329 | 47.329 | 0.0 | 99.08 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.08969 | 0.08969 | 0.08969 | 0.0 | 0.19 Output | 3.4809e-05 | 3.4809e-05 | 3.4809e-05 | 0.0 | 0.00 Modify | 0.32543 | 0.32543 | 0.32543 | 0.0 | 0.68 Other | | 0.02323 | | | 0.05 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.54084e+06 ave 1.54084e+06 max 1.54084e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1540844 Ave neighs/atom = 385.211 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${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.752780464364, Press = 1.40947378439805 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 9.435 | 9.435 | 9.435 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 61000 -13674.42 -13674.42 -13826.069 -13826.069 293.37402 293.37402 47568.344 47568.344 983.52524 983.52524 62000 -13672.939 -13672.939 -13828.022 -13828.022 300.01843 300.01843 47634.607 47634.607 -914.3431 -914.3431 Loop time of 44.9305 on 1 procs for 1000 steps with 4000 atoms Performance: 1.923 ns/day, 12.481 hours/ns, 22.257 timesteps/s 63.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 | 44.522 | 44.522 | 44.522 | 0.0 | 99.09 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.14984 | 0.14984 | 0.14984 | 0.0 | 0.33 Output | 3.4094e-05 | 3.4094e-05 | 3.4094e-05 | 0.0 | 0.00 Modify | 0.23483 | 0.23483 | 0.23483 | 0.0 | 0.52 Other | | 0.02344 | | | 0.05 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.54348e+06 ave 1.54348e+06 max 1.54348e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1543482 Ave neighs/atom = 385.87 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${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.790794310424, Press = 0.494731762462683 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 9.435 | 9.435 | 9.435 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 62000 -13672.939 -13672.939 -13828.022 -13828.022 300.01843 300.01843 47634.607 47634.607 -914.3431 -914.3431 63000 -13670.264 -13670.264 -13825.312 -13825.312 299.95122 299.95122 47600.704 47600.704 164.8523 164.8523 Loop time of 46.5177 on 1 procs for 1000 steps with 4000 atoms Performance: 1.857 ns/day, 12.922 hours/ns, 21.497 timesteps/s 61.1% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 46.138 | 46.138 | 46.138 | 0.0 | 99.18 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.10966 | 0.10966 | 0.10966 | 0.0 | 0.24 Output | 3.314e-05 | 3.314e-05 | 3.314e-05 | 0.0 | 0.00 Modify | 0.24689 | 0.24689 | 0.24689 | 0.0 | 0.53 Other | | 0.02349 | | | 0.05 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.54128e+06 ave 1.54128e+06 max 1.54128e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1541278 Ave neighs/atom = 385.32 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${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.810261648469, Press = 0.711296596692147 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 9.435 | 9.435 | 9.435 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 63000 -13670.264 -13670.264 -13825.312 -13825.312 299.95122 299.95122 47600.704 47600.704 164.8523 164.8523 64000 -13674.192 -13674.192 -13826.84 -13826.84 295.30855 295.30855 47606.491 47606.491 -135.98322 -135.98322 Loop time of 43.746 on 1 procs for 1000 steps with 4000 atoms Performance: 1.975 ns/day, 12.152 hours/ns, 22.859 timesteps/s 64.6% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 43.332 | 43.332 | 43.332 | 0.0 | 99.05 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.1084 | 0.1084 | 0.1084 | 0.0 | 0.25 Output | 3.314e-05 | 3.314e-05 | 3.314e-05 | 0.0 | 0.00 Modify | 0.26312 | 0.26312 | 0.26312 | 0.0 | 0.60 Other | | 0.04297 | | | 0.10 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.54252e+06 ave 1.54252e+06 max 1.54252e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1542522 Ave neighs/atom = 385.63 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${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.833880186701, Press = 0.735994087379135 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 9.435 | 9.435 | 9.435 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 64000 -13674.192 -13674.192 -13826.84 -13826.84 295.30855 295.30855 47606.491 47606.491 -135.98322 -135.98322 65000 -13670.457 -13670.457 -13825.58 -13825.58 300.096 300.096 47615.132 47615.132 -207.22676 -207.22676 Loop time of 37.8748 on 1 procs for 1000 steps with 4000 atoms Performance: 2.281 ns/day, 10.521 hours/ns, 26.403 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 | 37.523 | 37.523 | 37.523 | 0.0 | 99.07 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.087847 | 0.087847 | 0.087847 | 0.0 | 0.23 Output | 3.5048e-05 | 3.5048e-05 | 3.5048e-05 | 0.0 | 0.00 Modify | 0.22148 | 0.22148 | 0.22148 | 0.0 | 0.58 Other | | 0.04283 | | | 0.11 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.54196e+06 ave 1.54196e+06 max 1.54196e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1541962 Ave neighs/atom = 385.49 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${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.823596892124, Press = 0.608199501903381 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 9.435 | 9.435 | 9.435 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 65000 -13670.457 -13670.457 -13825.58 -13825.58 300.096 300.096 47615.132 47615.132 -207.22676 -207.22676 66000 -13675.232 -13675.232 -13826.502 -13826.502 292.64187 292.64187 47603.637 47603.637 -34.390161 -34.390161 Loop time of 37.1949 on 1 procs for 1000 steps with 4000 atoms Performance: 2.323 ns/day, 10.332 hours/ns, 26.885 timesteps/s 75.1% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 36.804 | 36.804 | 36.804 | 0.0 | 98.95 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.12774 | 0.12774 | 0.12774 | 0.0 | 0.34 Output | 2.718e-05 | 2.718e-05 | 2.718e-05 | 0.0 | 0.00 Modify | 0.22064 | 0.22064 | 0.22064 | 0.0 | 0.59 Other | | 0.04292 | | | 0.12 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.54171e+06 ave 1.54171e+06 max 1.54171e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1541710 Ave neighs/atom = 385.428 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${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.849801857697, Press = 0.621282995260114 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 9.435 | 9.435 | 9.435 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 66000 -13675.232 -13675.232 -13826.502 -13826.502 292.64187 292.64187 47603.637 47603.637 -34.390161 -34.390161 67000 -13668.855 -13668.855 -13822.584 -13822.584 297.39958 297.39958 47602.31 47602.31 327.89379 327.89379 Loop time of 37.6407 on 1 procs for 1000 steps with 4000 atoms Performance: 2.295 ns/day, 10.456 hours/ns, 26.567 timesteps/s 74.6% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 37.288 | 37.288 | 37.288 | 0.0 | 99.06 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.12802 | 0.12802 | 0.12802 | 0.0 | 0.34 Output | 3.5048e-05 | 3.5048e-05 | 3.5048e-05 | 0.0 | 0.00 Modify | 0.20239 | 0.20239 | 0.20239 | 0.0 | 0.54 Other | | 0.02272 | | | 0.06 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.54166e+06 ave 1.54166e+06 max 1.54166e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1541658 Ave neighs/atom = 385.414 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${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.881808192935, Press = 0.763516214519152 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 9.435 | 9.435 | 9.435 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 67000 -13668.855 -13668.855 -13822.584 -13822.584 297.39958 297.39958 47602.31 47602.31 327.89379 327.89379 68000 -13677.367 -13677.367 -13827.324 -13827.324 290.10192 290.10192 47616.724 47616.724 -478.89448 -478.89448 Loop time of 36.7504 on 1 procs for 1000 steps with 4000 atoms Performance: 2.351 ns/day, 10.208 hours/ns, 27.211 timesteps/s 76.2% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 36.397 | 36.397 | 36.397 | 0.0 | 99.04 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.089043 | 0.089043 | 0.089043 | 0.0 | 0.24 Output | 4.4107e-05 | 4.4107e-05 | 4.4107e-05 | 0.0 | 0.00 Modify | 0.24193 | 0.24193 | 0.24193 | 0.0 | 0.66 Other | | 0.02272 | | | 0.06 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.54212e+06 ave 1.54212e+06 max 1.54212e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1542124 Ave neighs/atom = 385.531 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${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.89737962461, Press = 0.451941054757127 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 9.435 | 9.435 | 9.435 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 68000 -13677.367 -13677.367 -13827.324 -13827.324 290.10192 290.10192 47616.724 47616.724 -478.89448 -478.89448 69000 -13672.444 -13672.444 -13824.328 -13824.328 293.82856 293.82856 47572.782 47572.782 998.63035 998.63035 Loop time of 34.9919 on 1 procs for 1000 steps with 4000 atoms Performance: 2.469 ns/day, 9.720 hours/ns, 28.578 timesteps/s 80.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 | 34.717 | 34.717 | 34.717 | 0.0 | 99.21 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.068668 | 0.068668 | 0.068668 | 0.0 | 0.20 Output | 3.3855e-05 | 3.3855e-05 | 3.3855e-05 | 0.0 | 0.00 Modify | 0.18346 | 0.18346 | 0.18346 | 0.0 | 0.52 Other | | 0.02289 | | | 0.07 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.54143e+06 ave 1.54143e+06 max 1.54143e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1541430 Ave neighs/atom = 385.358 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${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.903593551706, Press = 0.861062592518358 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 9.435 | 9.435 | 9.435 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 69000 -13672.444 -13672.444 -13824.328 -13824.328 293.82856 293.82856 47572.782 47572.782 998.63035 998.63035 70000 -13669.962 -13669.962 -13823.388 -13823.388 296.81359 296.81359 47672.732 47672.732 -1721.1939 -1721.1939 Loop time of 39.8757 on 1 procs for 1000 steps with 4000 atoms Performance: 2.167 ns/day, 11.077 hours/ns, 25.078 timesteps/s 69.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 | 39.604 | 39.604 | 39.604 | 0.0 | 99.32 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.067384 | 0.067384 | 0.067384 | 0.0 | 0.17 Output | 3.2902e-05 | 3.2902e-05 | 3.2902e-05 | 0.0 | 0.00 Modify | 0.18144 | 0.18144 | 0.18144 | 0.0 | 0.46 Other | | 0.02266 | | | 0.06 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.54293e+06 ave 1.54293e+06 max 1.54293e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1542932 Ave neighs/atom = 385.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.915739536366, Press = 0.317122034688032 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 9.435 | 9.435 | 9.435 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 70000 -13669.962 -13669.962 -13823.388 -13823.388 296.81359 296.81359 47672.732 47672.732 -1721.1939 -1721.1939 71000 -13673.119 -13673.119 -13826.082 -13826.082 295.91722 295.91722 47536.744 47536.744 1914.0552 1914.0552 Loop time of 39.9546 on 1 procs for 1000 steps with 4000 atoms Performance: 2.162 ns/day, 11.098 hours/ns, 25.028 timesteps/s 69.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 | 39.541 | 39.541 | 39.541 | 0.0 | 98.97 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.14786 | 0.14786 | 0.14786 | 0.0 | 0.37 Output | 3.1948e-05 | 3.1948e-05 | 3.1948e-05 | 0.0 | 0.00 Modify | 0.24252 | 0.24252 | 0.24252 | 0.0 | 0.61 Other | | 0.02301 | | | 0.06 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.53997e+06 ave 1.53997e+06 max 1.53997e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1539970 Ave neighs/atom = 384.993 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${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.954504118165, Press = 0.689427002227891 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 9.435 | 9.435 | 9.435 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 71000 -13673.119 -13673.119 -13826.082 -13826.082 295.91722 295.91722 47536.744 47536.744 1914.0552 1914.0552 72000 -13671.024 -13671.024 -13823.149 -13823.149 294.29695 294.29695 47663.358 47663.358 -1470.9614 -1470.9614 Loop time of 37.9527 on 1 procs for 1000 steps with 4000 atoms Performance: 2.277 ns/day, 10.542 hours/ns, 26.349 timesteps/s 73.5% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 37.561 | 37.561 | 37.561 | 0.0 | 98.97 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.10743 | 0.10743 | 0.10743 | 0.0 | 0.28 Output | 2.6941e-05 | 2.6941e-05 | 2.6941e-05 | 0.0 | 0.00 Modify | 0.22154 | 0.22154 | 0.22154 | 0.0 | 0.58 Other | | 0.06302 | | | 0.17 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.54451e+06 ave 1.54451e+06 max 1.54451e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1544508 Ave neighs/atom = 386.127 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${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.970630900067, Press = 0.731866574726521 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 9.435 | 9.435 | 9.435 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 72000 -13671.024 -13671.024 -13823.149 -13823.149 294.29695 294.29695 47663.358 47663.358 -1470.9614 -1470.9614 73000 -13676.211 -13676.211 -13825.642 -13825.642 289.08308 289.08308 47583.38 47583.38 570.62312 570.62312 Loop time of 38.2462 on 1 procs for 1000 steps with 4000 atoms Performance: 2.259 ns/day, 10.624 hours/ns, 26.146 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 | 37.891 | 37.891 | 37.891 | 0.0 | 99.07 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.088614 | 0.088614 | 0.088614 | 0.0 | 0.23 Output | 3.2187e-05 | 3.2187e-05 | 3.2187e-05 | 0.0 | 0.00 Modify | 0.24334 | 0.24334 | 0.24334 | 0.0 | 0.64 Other | | 0.023 | | | 0.06 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.54101e+06 ave 1.54101e+06 max 1.54101e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1541006 Ave neighs/atom = 385.252 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 293.001526471892, Press = 0.444384302613666 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 9.435 | 9.435 | 9.435 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 73000 -13676.211 -13676.211 -13825.642 -13825.642 289.08308 289.08308 47583.38 47583.38 570.62312 570.62312 74000 -13672.775 -13672.775 -13824.322 -13824.322 293.1776 293.1776 47625.057 47625.057 -519.72197 -519.72197 Loop time of 37.532 on 1 procs for 1000 steps with 4000 atoms Performance: 2.302 ns/day, 10.426 hours/ns, 26.644 timesteps/s 74.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 | 37.258 | 37.258 | 37.258 | 0.0 | 99.27 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.067989 | 0.067989 | 0.067989 | 0.0 | 0.18 Output | 3.3855e-05 | 3.3855e-05 | 3.3855e-05 | 0.0 | 0.00 Modify | 0.18341 | 0.18341 | 0.18341 | 0.0 | 0.49 Other | | 0.02281 | | | 0.06 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.54269e+06 ave 1.54269e+06 max 1.54269e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1542686 Ave neighs/atom = 385.671 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 293.003461766635, Press = 0.660989309830382 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 9.435 | 9.435 | 9.435 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 74000 -13672.775 -13672.775 -13824.322 -13824.322 293.1776 293.1776 47625.057 47625.057 -519.72197 -519.72197 75000 -13672.798 -13672.798 -13823.76 -13823.76 292.04651 292.04651 47592.08 47592.08 448.63281 448.63281 Loop time of 43.8571 on 1 procs for 1000 steps with 4000 atoms Performance: 1.970 ns/day, 12.183 hours/ns, 22.801 timesteps/s 63.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 | 43.495 | 43.495 | 43.495 | 0.0 | 99.18 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.087855 | 0.087855 | 0.087855 | 0.0 | 0.20 Output | 3.314e-05 | 3.314e-05 | 3.314e-05 | 0.0 | 0.00 Modify | 0.23114 | 0.23114 | 0.23114 | 0.0 | 0.53 Other | | 0.04269 | | | 0.10 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.54248e+06 ave 1.54248e+06 max 1.54248e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1542482 Ave neighs/atom = 385.62 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${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.972112317266, Press = 0.333614917559329 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 9.435 | 9.435 | 9.435 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 75000 -13672.798 -13672.798 -13823.76 -13823.76 292.04651 292.04651 47592.08 47592.08 448.63281 448.63281 76000 -13675.791 -13675.791 -13825.198 -13825.198 289.03827 289.03827 47611.853 47611.853 -226.24661 -226.24661 Loop time of 39.5843 on 1 procs for 1000 steps with 4000 atoms Performance: 2.183 ns/day, 10.996 hours/ns, 25.263 timesteps/s 70.7% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 39.189 | 39.189 | 39.189 | 0.0 | 99.00 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.068332 | 0.068332 | 0.068332 | 0.0 | 0.17 Output | 3.4094e-05 | 3.4094e-05 | 3.4094e-05 | 0.0 | 0.00 Modify | 0.26398 | 0.26398 | 0.26398 | 0.0 | 0.67 Other | | 0.06288 | | | 0.16 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.5432e+06 ave 1.5432e+06 max 1.5432e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1543198 Ave neighs/atom = 385.8 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${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.9715951441, Press = 0.959609315172183 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 9.435 | 9.435 | 9.435 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 76000 -13675.791 -13675.791 -13825.198 -13825.198 289.03827 289.03827 47611.853 47611.853 -226.24661 -226.24661 77000 -13670.058 -13670.058 -13822.401 -13822.401 294.71779 294.71779 47605.457 47605.457 194.41355 194.41355 Loop time of 40.2959 on 1 procs for 1000 steps with 4000 atoms Performance: 2.144 ns/day, 11.193 hours/ns, 24.816 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 | 39.972 | 39.972 | 39.972 | 0.0 | 99.20 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.08757 | 0.08757 | 0.08757 | 0.0 | 0.22 Output | 3.4809e-05 | 3.4809e-05 | 3.4809e-05 | 0.0 | 0.00 Modify | 0.21341 | 0.21341 | 0.21341 | 0.0 | 0.53 Other | | 0.02298 | | | 0.06 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.5422e+06 ave 1.5422e+06 max 1.5422e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1542204 Ave neighs/atom = 385.551 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${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.975685151497, Press = -0.211996068919841 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 9.435 | 9.435 | 9.435 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 77000 -13670.058 -13670.058 -13822.401 -13822.401 294.71779 294.71779 47605.457 47605.457 194.41355 194.41355 78000 -13676.146 -13676.146 -13827.185 -13827.185 292.1952 292.1952 47588.235 47588.235 330.72982 330.72982 Loop time of 39.5427 on 1 procs for 1000 steps with 4000 atoms Performance: 2.185 ns/day, 10.984 hours/ns, 25.289 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 | 39.208 | 39.208 | 39.208 | 0.0 | 99.15 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.088333 | 0.088333 | 0.088333 | 0.0 | 0.22 Output | 2.6941e-05 | 2.6941e-05 | 2.6941e-05 | 0.0 | 0.00 Modify | 0.22354 | 0.22354 | 0.22354 | 0.0 | 0.57 Other | | 0.02289 | | | 0.06 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.54281e+06 ave 1.54281e+06 max 1.54281e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1542806 Ave neighs/atom = 385.702 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 292.992236097036, Press = 1.23436996173014 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 9.435 | 9.435 | 9.435 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 78000 -13676.146 -13676.146 -13827.185 -13827.185 292.1952 292.1952 47588.235 47588.235 330.72982 330.72982 79000 -13671.7 -13671.7 -13823.988 -13823.988 294.61013 294.61013 47632.797 47632.797 -707.99153 -707.99153 Loop time of 46.4182 on 1 procs for 1000 steps with 4000 atoms Performance: 1.861 ns/day, 12.894 hours/ns, 21.543 timesteps/s 59.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 | 45.94 | 45.94 | 45.94 | 0.0 | 98.97 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.12286 | 0.12286 | 0.12286 | 0.0 | 0.26 Output | 3.1948e-05 | 3.1948e-05 | 3.1948e-05 | 0.0 | 0.00 Modify | 0.29273 | 0.29273 | 0.29273 | 0.0 | 0.63 Other | | 0.06271 | | | 0.14 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1.54314e+06 ave 1.54314e+06 max 1.54314e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1543142 Ave neighs/atom = 385.786 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${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 47604.8429356921 print "LAMMPS calculation completed" LAMMPS calculation completed quit 0