# Variables that can be adjusted by kim-lammps-preprocessor to switch unit sets for # Simulator Models variable _u_distance equal 1.0 variable _u_energy equal 1.0 variable _u_mass equal 1.0 variable _u_time equal 1.0 variable _u_pressure equal 1.0 variable _u_temperature equal 1.0 # This line may be swapped out by kim-lammps-preprocessor if running against a Simulator # Model whose atom_style is not 'atomic' atom_style atomic # periodic boundary conditions along all three dimensions boundary p p p # Set neighbor skin variable neigh_skin equal 2.0*${_u_distance} variable neigh_skin equal 2.0*1 neighbor ${neigh_skin} bin neighbor 2 bin # create a supercell with cubic lattice (fcc, bcc, sc, or diamond) # using 10*10*10 conventional (orthogonal) unit cells variable latticeconst_converted equal 4.229680836200714*${_u_distance} variable latticeconst_converted equal 4.229680836200714*1 lattice fcc ${latticeconst_converted} lattice fcc 4.22968083620071 Lattice spacing in x,y,z = 4.22968 4.22968 4.22968 region simbox block 0 10 0 10 0 10 units lattice create_box 1 simbox Created orthogonal box = (0 0 0) to (42.2968 42.2968 42.2968) 1 by 1 by 1 MPI processor grid create_atoms 1 box Created 4000 atoms create_atoms CPU = 0.000582933 secs variable mass_converted equal 20.1797*${_u_mass} variable mass_converted equal 20.1797*1 # specify which KIM Model to use pair_style kim LJ_Shifted_Bernardes_1958MedCutoff_Ne__MO_160637895352_003 WARNING: KIM Model does not provide `partialParticleVirial'; virial per atom will be zero (src/KIM/pair_kim.cpp:1089) pair_coeff * * Ne mass 1 ${mass_converted} mass 1 20.1797 # initial volume variable v equal vol # assign formula variable V0 equal ${v} # evaluate initial value variable V0 equal 75669.8359948081 variable V0_metal equal ${V0}/(${_u_distance}*${_u_distance}*${_u_distance}) variable V0_metal equal 75669.8359948081/(${_u_distance}*${_u_distance}*${_u_distance}) variable V0_metal equal 75669.8359948081/(1*${_u_distance}*${_u_distance}) variable V0_metal equal 75669.8359948081/(1*1*${_u_distance}) variable V0_metal equal 75669.8359948081/(1*1*1) variable V0_metal_times1000 equal ${V0_metal}*1000 variable V0_metal_times1000 equal 75669.8359948081*1000 print "Initial system volume: ${V0_metal} Angstroms^3" Initial system volume: 75669.8359948081 Angstroms^3 # set the time step to 0.001 picoseconds variable timestep_converted equal 0.001*${_u_time} variable timestep_converted equal 0.001*1 timestep ${timestep_converted} timestep 0.001 variable temp_converted equal 333.15*${_u_temperature} variable temp_converted equal 333.15*1 variable Tdamp_converted equal 0.1*${_u_time} variable Tdamp_converted equal 0.1*1 variable press_converted equal 0.0*${_u_pressure} variable press_converted equal 0.0*1 variable Pdamp_converted equal 1*${_u_time} variable Pdamp_converted equal 1*1 # create initial velocities consistent with the chosen temperature velocity all create ${temp_converted} 17 mom yes rot yes velocity all create 333.15 17 mom yes rot yes # set NPT ensemble for all atoms fix ensemble all npt temp ${temp_converted} ${temp_converted} ${Tdamp_converted} iso ${press_converted} ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 333.15 ${temp_converted} ${Tdamp_converted} iso ${press_converted} ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 333.15 333.15 ${Tdamp_converted} iso ${press_converted} ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 333.15 333.15 0.1 iso ${press_converted} ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 333.15 333.15 0.1 iso 0 ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 333.15 333.15 0.1 iso 0 0 ${Pdamp_converted} fix ensemble all npt temp 333.15 333.15 0.1 iso 0 0 1 # compute the time averages of pressure, temperature, and volume, respectively # ignore the first 5000 timesteps variable etotal_metal equal etotal/${_u_energy} variable etotal_metal equal etotal/1 variable pe_metal equal pe/${_u_energy} variable pe_metal equal pe/1 variable T_metal equal temp/${_u_temperature} variable T_metal equal temp/1 variable V_metal equal vol/(${_u_distance}*${_u_distance}*${_u_distance}) variable V_metal equal vol/(1*${_u_distance}*${_u_distance}) variable V_metal equal vol/(1*1*${_u_distance}) variable V_metal equal vol/(1*1*1) variable P_metal equal press/${_u_pressure} variable P_metal equal press/1 fix avgmyTemp all ave/time 5 20 100 v_T_metal ave running start 5000 fix avgmyPress all ave/time 5 20 100 v_P_metal ave running start 5000 fix avgmyVol all ave/time 5 20 100 v_V_metal ave running start 5000 # extract fix quantities into variables so they can be used in if-else logic later. variable T equal f_avgmyTemp variable P equal f_avgmyPress variable V equal f_avgmyVol # set error bounds for temperature and pressure in original metal units (K and bar) variable T_low equal "333.15 - 0.2" variable T_up equal "333.15 + 0.2" variable P_low equal "0.0 - 0.2" variable P_up equal "0.0 + 0.2" # print to logfile every 1000 timesteps thermo_style custom step etotal v_etotal_metal pe v_pe_metal temp v_T_metal vol v_V_metal press v_P_metal thermo 1000 # Run a simulation for at most 2000*1000 timesteps. At each 1000th time step, check # whether the temperature and pressure have converged. If yes, break. label top variable a loop 2000 run 1000 Neighbor list info ... update every 1 steps, delay 10 steps, check yes max neighbors/atom: 2000, page size: 100000 master list distance cutoff = 12.9 ghost atom cutoff = 12.9 binsize = 6.45, bins = 7 7 7 1 neighbor lists, perpetual/occasional/extra = 1 0 0 (1) pair kim, perpetual attributes: full, newton off, cut 12.9 pair build: full/bin/atomonly stencil: full/bin/3d bin: standard Per MPI rank memory allocation (min/avg/max) = 13.12 | 13.12 | 13.12 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 0 69.044991 69.044991 -103.16402 -103.16402 333.15 333.15 75669.836 75669.836 2430.8167 2430.8167 1000 157.17992 157.17992 -15.659447 -15.659447 334.36948 334.36948 112145.52 112145.52 4940.5027 4940.5027 Loop time of 76.0912 on 1 procs for 1000 steps with 4000 atoms Performance: 1.135 ns/day, 21.136 hours/ns, 13.142 timesteps/s 39.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 | 73.426 | 73.426 | 73.426 | 0.0 | 96.50 Neigh | 2.0626 | 2.0626 | 2.0626 | 0.0 | 2.71 Comm | 0.11334 | 0.11334 | 0.11334 | 0.0 | 0.15 Output | 4.5061e-05 | 4.5061e-05 | 4.5061e-05 | 0.0 | 0.00 Modify | 0.40761 | 0.40761 | 0.40761 | 0.0 | 0.54 Other | | 0.08155 | | | 0.11 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10492 ave 10492 max 10492 min Histogram: 1 0 0 0 0 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.28525e+06 ave 1.28525e+06 max 1.28525e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1285248 Ave neighs/atom = 321.312 Neighbor list builds = 20 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${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) = 13.12 | 13.12 | 13.12 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 1000 157.17992 157.17992 -15.659447 -15.659447 334.36948 334.36948 112145.52 112145.52 4940.5027 4940.5027 2000 153.0069 153.0069 -18.971122 -18.971122 332.70315 332.70315 152479.11 152479.11 2442.9433 2442.9433 Loop time of 55.2531 on 1 procs for 1000 steps with 4000 atoms Performance: 1.564 ns/day, 15.348 hours/ns, 18.099 timesteps/s 39.2% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 52.828 | 52.828 | 52.828 | 0.0 | 95.61 Neigh | 1.7389 | 1.7389 | 1.7389 | 0.0 | 3.15 Comm | 0.18902 | 0.18902 | 0.18902 | 0.0 | 0.34 Output | 4.3869e-05 | 4.3869e-05 | 4.3869e-05 | 0.0 | 0.00 Modify | 0.39679 | 0.39679 | 0.39679 | 0.0 | 0.72 Other | | 0.1004 | | | 0.18 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 9167 ave 9167 max 9167 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 947570 ave 947570 max 947570 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 947570 Ave neighs/atom = 236.893 Neighbor list builds = 21 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${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) = 13.12 | 13.12 | 13.12 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 2000 153.0069 153.0069 -18.971122 -18.971122 332.70315 332.70315 152479.11 152479.11 2442.9433 2442.9433 3000 156.08467 156.08467 -15.777517 -15.777517 332.47906 332.47906 196098.98 196098.98 1583.9375 1583.9375 Loop time of 41.3553 on 1 procs for 1000 steps with 4000 atoms Performance: 2.089 ns/day, 11.488 hours/ns, 24.181 timesteps/s 39.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.297 | 39.297 | 39.297 | 0.0 | 95.02 Neigh | 1.4117 | 1.4117 | 1.4117 | 0.0 | 3.41 Comm | 0.15981 | 0.15981 | 0.15981 | 0.0 | 0.39 Output | 4.3869e-05 | 4.3869e-05 | 4.3869e-05 | 0.0 | 0.00 Modify | 0.4171 | 0.4171 | 0.4171 | 0.0 | 1.01 Other | | 0.06949 | | | 0.17 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8113 ave 8113 max 8113 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 735120 ave 735120 max 735120 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 735120 Ave neighs/atom = 183.78 Neighbor list builds = 22 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${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) = 13.12 | 13.12 | 13.12 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 3000 156.08467 156.08467 -15.777517 -15.777517 332.47906 332.47906 196098.98 196098.98 1583.9375 1583.9375 4000 156.35351 156.35351 -13.556217 -13.556217 328.70188 328.70188 245598.37 245598.37 1102.9684 1102.9684 Loop time of 32.568 on 1 procs for 1000 steps with 4000 atoms Performance: 2.653 ns/day, 9.047 hours/ns, 30.705 timesteps/s 40.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 | 30.779 | 30.779 | 30.779 | 0.0 | 94.51 Neigh | 1.1043 | 1.1043 | 1.1043 | 0.0 | 3.39 Comm | 0.17464 | 0.17464 | 0.17464 | 0.0 | 0.54 Output | 4.2915e-05 | 4.2915e-05 | 4.2915e-05 | 0.0 | 0.00 Modify | 0.49123 | 0.49123 | 0.49123 | 0.0 | 1.51 Other | | 0.01905 | | | 0.06 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 7339 ave 7339 max 7339 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 585800 ave 585800 max 585800 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 585800 Ave neighs/atom = 146.45 Neighbor list builds = 21 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${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) = 13.12 | 13.12 | 13.12 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 4000 156.35351 156.35351 -13.556217 -13.556217 328.70188 328.70188 245598.37 245598.37 1102.9684 1102.9684 5000 160.75049 160.75049 -11.817905 -11.817905 333.84525 333.84525 302440.85 302440.85 816.92798 816.92798 Loop time of 27.5165 on 1 procs for 1000 steps with 4000 atoms Performance: 3.140 ns/day, 7.643 hours/ns, 36.342 timesteps/s 39.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 | 26.004 | 26.004 | 26.004 | 0.0 | 94.50 Neigh | 0.88549 | 0.88549 | 0.88549 | 0.0 | 3.22 Comm | 0.13062 | 0.13062 | 0.13062 | 0.0 | 0.47 Output | 2.718e-05 | 2.718e-05 | 2.718e-05 | 0.0 | 0.00 Modify | 0.47782 | 0.47782 | 0.47782 | 0.0 | 1.74 Other | | 0.01855 | | | 0.07 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6684 ave 6684 max 6684 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 473540 ave 473540 max 473540 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 473540 Ave neighs/atom = 118.385 Neighbor list builds = 21 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 331.563157373031, Press = 835.401098029264 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 13.13 | 13.13 | 13.13 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 5000 160.75049 160.75049 -11.817905 -11.817905 333.84525 333.84525 302440.85 302440.85 816.92798 816.92798 6000 161.62898 161.62898 -9.5955048 -9.5955048 331.24538 331.24538 368693.39 368693.39 630.17338 630.17338 Loop time of 21.5798 on 1 procs for 1000 steps with 4000 atoms Performance: 4.004 ns/day, 5.994 hours/ns, 46.340 timesteps/s 41.5% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 20.297 | 20.297 | 20.297 | 0.0 | 94.05 Neigh | 0.77628 | 0.77628 | 0.77628 | 0.0 | 3.60 Comm | 0.09684 | 0.09684 | 0.09684 | 0.0 | 0.45 Output | 3.1948e-05 | 3.1948e-05 | 3.1948e-05 | 0.0 | 0.00 Modify | 0.35149 | 0.35149 | 0.35149 | 0.0 | 1.63 Other | | 0.05845 | | | 0.27 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6161 ave 6161 max 6161 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 388462 ave 388462 max 388462 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 388462 Ave neighs/atom = 97.1155 Neighbor list builds = 22 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 333.242799538665, Press = 735.75140378981 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 13.13 | 13.13 | 13.13 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 6000 161.62898 161.62898 -9.5955048 -9.5955048 331.24538 331.24538 368693.39 368693.39 630.17338 630.17338 7000 164.24521 164.24521 -8.1928152 -8.1928152 333.59304 333.59304 445887.96 445887.96 504.15749 504.15749 Loop time of 17.4433 on 1 procs for 1000 steps with 4000 atoms Performance: 4.953 ns/day, 4.845 hours/ns, 57.328 timesteps/s 42.4% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 16.308 | 16.308 | 16.308 | 0.0 | 93.49 Neigh | 0.6248 | 0.6248 | 0.6248 | 0.0 | 3.58 Comm | 0.083053 | 0.083053 | 0.083053 | 0.0 | 0.48 Output | 3.0994e-05 | 3.0994e-05 | 3.0994e-05 | 0.0 | 0.00 Modify | 0.31948 | 0.31948 | 0.31948 | 0.0 | 1.83 Other | | 0.1078 | | | 0.62 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5637 ave 5637 max 5637 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 322526 ave 322526 max 322526 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 322526 Ave neighs/atom = 80.6315 Neighbor list builds = 22 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 333.125675455856, Press = 654.213053306585 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 13.13 | 13.13 | 13.13 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 7000 164.24521 164.24521 -8.1928152 -8.1928152 333.59304 333.59304 445887.96 445887.96 504.15749 504.15749 8000 165.64667 165.64667 -6.6341872 -6.6341872 333.289 333.289 536748.33 536748.33 399.15572 399.15572 Loop time of 14.7489 on 1 procs for 1000 steps with 4000 atoms Performance: 5.858 ns/day, 4.097 hours/ns, 67.802 timesteps/s 42.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 | 13.723 | 13.723 | 13.723 | 0.0 | 93.04 Neigh | 0.58943 | 0.58943 | 0.58943 | 0.0 | 4.00 Comm | 0.079962 | 0.079962 | 0.079962 | 0.0 | 0.54 Output | 2.5034e-05 | 2.5034e-05 | 2.5034e-05 | 0.0 | 0.00 Modify | 0.2794 | 0.2794 | 0.2794 | 0.0 | 1.89 Other | | 0.07752 | | | 0.53 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5323 ave 5323 max 5323 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 268338 ave 268338 max 268338 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 268338 Ave neighs/atom = 67.0845 Neighbor list builds = 21 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 333.197303684324, Press = 589.110737748297 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 13.13 | 13.13 | 13.13 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 8000 165.64667 165.64667 -6.6341872 -6.6341872 333.289 333.289 536748.33 536748.33 399.15572 399.15572 9000 165.6062 165.6062 -5.4636322 -5.4636322 330.9462 330.9462 642016.58 642016.58 326.96582 326.96582 Loop time of 12.7812 on 1 procs for 1000 steps with 4000 atoms Performance: 6.760 ns/day, 3.550 hours/ns, 78.240 timesteps/s 41.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 | 11.865 | 11.865 | 11.865 | 0.0 | 92.83 Neigh | 0.44535 | 0.44535 | 0.44535 | 0.0 | 3.48 Comm | 0.056627 | 0.056627 | 0.056627 | 0.0 | 0.44 Output | 2.5988e-05 | 2.5988e-05 | 2.5988e-05 | 0.0 | 0.00 Modify | 0.39766 | 0.39766 | 0.39766 | 0.0 | 3.11 Other | | 0.01694 | | | 0.13 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4871 ave 4871 max 4871 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224288 ave 224288 max 224288 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224288 Ave neighs/atom = 56.072 Neighbor list builds = 21 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 333.136309643123, Press = 533.018680192728 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 13.14 | 13.14 | 13.14 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 9000 165.6062 165.6062 -5.4636322 -5.4636322 330.9462 330.9462 642016.58 642016.58 326.96582 326.96582 10000 166.16155 166.16155 -4.3730528 -4.3730528 329.91075 329.91075 765565.94 765565.94 270.46677 270.46677 Loop time of 11.007 on 1 procs for 1000 steps with 4000 atoms Performance: 7.850 ns/day, 3.058 hours/ns, 90.851 timesteps/s 41.5% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 10.151 | 10.151 | 10.151 | 0.0 | 92.22 Neigh | 0.43575 | 0.43575 | 0.43575 | 0.0 | 3.96 Comm | 0.05483 | 0.05483 | 0.05483 | 0.0 | 0.50 Output | 3.2902e-05 | 3.2902e-05 | 3.2902e-05 | 0.0 | 0.00 Modify | 0.34868 | 0.34868 | 0.34868 | 0.0 | 3.17 Other | | 0.01675 | | | 0.15 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4621 ave 4621 max 4621 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 188298 ave 188298 max 188298 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 188298 Ave neighs/atom = 47.0745 Neighbor list builds = 22 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 333.093470920544, Press = 486.086195814962 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 13.14 | 13.14 | 13.14 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 10000 166.16155 166.16155 -4.3730528 -4.3730528 329.91075 329.91075 765565.94 765565.94 270.46677 270.46677 11000 167.3969 167.3969 -3.5169841 -3.5169841 330.6445 330.6445 912110.68 912110.68 224.14685 224.14685 Loop time of 9.1523 on 1 procs for 1000 steps with 4000 atoms Performance: 9.440 ns/day, 2.542 hours/ns, 109.262 timesteps/s 43.5% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 8.206 | 8.206 | 8.206 | 0.0 | 89.66 Neigh | 0.46793 | 0.46793 | 0.46793 | 0.0 | 5.11 Comm | 0.092977 | 0.092977 | 0.092977 | 0.0 | 1.02 Output | 3.314e-05 | 3.314e-05 | 3.314e-05 | 0.0 | 0.00 Modify | 0.32855 | 0.32855 | 0.32855 | 0.0 | 3.59 Other | | 0.05683 | | | 0.62 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4272 ave 4272 max 4272 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 157544 ave 157544 max 157544 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 157544 Ave neighs/atom = 39.386 Neighbor list builds = 21 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 333.327224412804, Press = 446.672697834581 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 13.14 | 13.14 | 13.14 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 11000 167.3969 167.3969 -3.5169841 -3.5169841 330.6445 330.6445 912110.68 912110.68 224.14685 224.14685 12000 169.14398 169.14398 -3.3308203 -3.3308203 333.6642 333.6642 1082627 1082627 184.08493 184.08493 Loop time of 7.91522 on 1 procs for 1000 steps with 4000 atoms Performance: 10.916 ns/day, 2.199 hours/ns, 126.339 timesteps/s 42.6% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 7.0307 | 7.0307 | 7.0307 | 0.0 | 88.83 Neigh | 0.42092 | 0.42092 | 0.42092 | 0.0 | 5.32 Comm | 0.11092 | 0.11092 | 0.11092 | 0.0 | 1.40 Output | 2.5034e-05 | 2.5034e-05 | 2.5034e-05 | 0.0 | 0.00 Modify | 0.33649 | 0.33649 | 0.33649 | 0.0 | 4.25 Other | | 0.01614 | | | 0.20 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 3925 ave 3925 max 3925 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 132532 ave 132532 max 132532 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 132532 Ave neighs/atom = 33.133 Neighbor list builds = 21 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 333.379859737047, Press = 412.029447436205 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 13.14 | 13.14 | 13.14 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 12000 169.14398 169.14398 -3.3308203 -3.3308203 333.6642 333.6642 1082627 1082627 184.08493 184.08493 13000 169.21454 169.21454 -2.9593961 -2.9593961 333.08215 333.08215 1281702.9 1281702.9 151.76468 151.76468 Loop time of 7.60459 on 1 procs for 1000 steps with 4000 atoms Performance: 11.362 ns/day, 2.112 hours/ns, 131.500 timesteps/s 39.2% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 6.7382 | 6.7382 | 6.7382 | 0.0 | 88.61 Neigh | 0.33633 | 0.33633 | 0.33633 | 0.0 | 4.42 Comm | 0.11045 | 0.11045 | 0.11045 | 0.0 | 1.45 Output | 3.314e-05 | 3.314e-05 | 3.314e-05 | 0.0 | 0.00 Modify | 0.36352 | 0.36352 | 0.36352 | 0.0 | 4.78 Other | | 0.05606 | | | 0.74 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 3661 ave 3661 max 3661 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 112114 ave 112114 max 112114 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 112114 Ave neighs/atom = 28.0285 Neighbor list builds = 22 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 333.087424229093, Press = 381.620302217955 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 13.15 | 13.15 | 13.15 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 13000 169.21454 169.21454 -2.9593961 -2.9593961 333.08215 333.08215 1281702.9 1281702.9 151.76468 151.76468 14000 170.09807 170.09807 -2.1557089 -2.1557089 333.23661 333.23661 1515558.3 1515558.3 128.44136 128.44136 Loop time of 6.15279 on 1 procs for 1000 steps with 4000 atoms Performance: 14.042 ns/day, 1.709 hours/ns, 162.528 timesteps/s 42.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 | 5.4161 | 5.4161 | 5.4161 | 0.0 | 88.03 Neigh | 0.33855 | 0.33855 | 0.33855 | 0.0 | 5.50 Comm | 0.10704 | 0.10704 | 0.10704 | 0.0 | 1.74 Output | 3.1948e-05 | 3.1948e-05 | 3.1948e-05 | 0.0 | 0.00 Modify | 0.25562 | 0.25562 | 0.25562 | 0.0 | 4.15 Other | | 0.03547 | | | 0.58 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 3333 ave 3333 max 3333 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 94392 ave 94392 max 94392 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 94392 Ave neighs/atom = 23.598 Neighbor list builds = 24 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 332.945858458975, Press = 354.991491081076 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 13.16 | 13.16 | 13.16 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 14000 170.09807 170.09807 -2.1557089 -2.1557089 333.23661 333.23661 1515558.3 1515558.3 128.44136 128.44136 15000 172.22102 172.22102 -2.110581 -2.110581 337.25631 337.25631 1790828.4 1790828.4 108.91073 108.91073 Loop time of 5.48848 on 1 procs for 1000 steps with 4000 atoms Performance: 15.742 ns/day, 1.525 hours/ns, 182.200 timesteps/s 41.9% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 4.5776 | 4.5776 | 4.5776 | 0.0 | 83.40 Neigh | 0.44248 | 0.44248 | 0.44248 | 0.0 | 8.06 Comm | 0.02551 | 0.02551 | 0.02551 | 0.0 | 0.46 Output | 3.1948e-05 | 3.1948e-05 | 3.1948e-05 | 0.0 | 0.00 Modify | 0.40769 | 0.40769 | 0.40769 | 0.0 | 7.43 Other | | 0.03521 | | | 0.64 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 3118 ave 3118 max 3118 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 79868 ave 79868 max 79868 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 79868 Ave neighs/atom = 19.967 Neighbor list builds = 25 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 332.893301125296, Press = 331.470412114936 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 13.16 | 13.16 | 13.16 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 15000 172.22102 172.22102 -2.110581 -2.110581 337.25631 337.25631 1790828.4 1790828.4 108.91073 108.91073 16000 173.03252 173.03252 -1.7713233 -1.7713233 338.16988 338.16988 2112200.3 2112200.3 92.118226 92.118226 Loop time of 4.96169 on 1 procs for 1000 steps with 4000 atoms Performance: 17.413 ns/day, 1.378 hours/ns, 201.544 timesteps/s 40.1% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 4.061 | 4.061 | 4.061 | 0.0 | 81.85 Neigh | 0.34577 | 0.34577 | 0.34577 | 0.0 | 6.97 Comm | 0.06422 | 0.06422 | 0.06422 | 0.0 | 1.29 Output | 2.5988e-05 | 2.5988e-05 | 2.5988e-05 | 0.0 | 0.00 Modify | 0.41579 | 0.41579 | 0.41579 | 0.0 | 8.38 Other | | 0.07492 | | | 1.51 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 2953 ave 2953 max 2953 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 67994 ave 67994 max 67994 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 67994 Ave neighs/atom = 16.9985 Neighbor list builds = 26 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 332.88654827845, Press = 310.455877179262 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 13.17 | 13.17 | 13.17 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 16000 173.03252 173.03252 -1.7713233 -1.7713233 338.16988 338.16988 2112200.3 2112200.3 92.118226 92.118226 17000 165.40091 165.40091 -1.4177091 -1.4177091 322.72193 322.72193 2489748.4 2489748.4 74.055637 74.055637 Loop time of 4.25171 on 1 procs for 1000 steps with 4000 atoms Performance: 20.321 ns/day, 1.181 hours/ns, 235.200 timesteps/s 41.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 | 3.4756 | 3.4756 | 3.4756 | 0.0 | 81.74 Neigh | 0.25394 | 0.25394 | 0.25394 | 0.0 | 5.97 Comm | 0.043112 | 0.043112 | 0.043112 | 0.0 | 1.01 Output | 3.4094e-05 | 3.4094e-05 | 3.4094e-05 | 0.0 | 0.00 Modify | 0.44458 | 0.44458 | 0.44458 | 0.0 | 10.46 Other | | 0.03448 | | | 0.81 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 2773 ave 2773 max 2773 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 57600 ave 57600 max 57600 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 57600 Ave neighs/atom = 14.4 Neighbor list builds = 27 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 332.849429113123, Press = 291.654784296238 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 13.18 | 13.18 | 13.18 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 17000 165.40091 165.40091 -1.4177091 -1.4177091 322.72193 322.72193 2489748.4 2489748.4 74.055637 74.055637 18000 169.91522 169.91522 -1.2670441 -1.2670441 331.16369 331.16369 2930447.4 2930447.4 64.171034 64.171034 Loop time of 3.40166 on 1 procs for 1000 steps with 4000 atoms Performance: 25.399 ns/day, 0.945 hours/ns, 293.974 timesteps/s 47.0% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 2.7938 | 2.7938 | 2.7938 | 0.0 | 82.13 Neigh | 0.26483 | 0.26483 | 0.26483 | 0.0 | 7.79 Comm | 0.051949 | 0.051949 | 0.051949 | 0.0 | 1.53 Output | 3.4094e-05 | 3.4094e-05 | 3.4094e-05 | 0.0 | 0.00 Modify | 0.25649 | 0.25649 | 0.25649 | 0.0 | 7.54 Other | | 0.03454 | | | 1.02 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 2553 ave 2553 max 2553 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 49066 ave 49066 max 49066 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 49066 Ave neighs/atom = 12.2665 Neighbor list builds = 25 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 332.750014871877, Press = 274.727675182766 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 13.19 | 13.19 | 13.19 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 18000 169.91522 169.91522 -1.2670441 -1.2670441 331.16369 331.16369 2930447.4 2930447.4 64.171034 64.171034 19000 171.48302 171.48302 -0.98412226 -0.98412226 333.64939 333.64939 3448832.5 3448832.5 55.072214 55.072214 Loop time of 3.41672 on 1 procs for 1000 steps with 4000 atoms Performance: 25.287 ns/day, 0.949 hours/ns, 292.679 timesteps/s 42.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 | 2.872 | 2.872 | 2.872 | 0.0 | 84.06 Neigh | 0.19476 | 0.19476 | 0.19476 | 0.0 | 5.70 Comm | 0.020597 | 0.020597 | 0.020597 | 0.0 | 0.60 Output | 2.5988e-05 | 2.5988e-05 | 2.5988e-05 | 0.0 | 0.00 Modify | 0.31478 | 0.31478 | 0.31478 | 0.0 | 9.21 Other | | 0.01452 | | | 0.42 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 2431 ave 2431 max 2431 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 41860 ave 41860 max 41860 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 41860 Ave neighs/atom = 10.465 Neighbor list builds = 25 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 332.72695026764, Press = 259.456892464784 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 13.2 | 13.2 | 13.2 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 19000 171.48302 171.48302 -0.98412226 -0.98412226 333.64939 333.64939 3448832.5 3448832.5 55.072214 55.072214 20000 170.65805 170.65805 -0.85386816 -0.85386816 331.80143 331.80143 4056190.3 4056190.3 46.1879 46.1879 Loop time of 3.37195 on 1 procs for 1000 steps with 4000 atoms Performance: 25.623 ns/day, 0.937 hours/ns, 296.564 timesteps/s 40.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 | 2.5346 | 2.5346 | 2.5346 | 0.0 | 75.17 Neigh | 0.28723 | 0.28723 | 0.28723 | 0.0 | 8.52 Comm | 0.094949 | 0.094949 | 0.094949 | 0.0 | 2.82 Output | 6.4135e-05 | 6.4135e-05 | 6.4135e-05 | 0.0 | 0.00 Modify | 0.41774 | 0.41774 | 0.41774 | 0.0 | 12.39 Other | | 0.03733 | | | 1.11 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 2249 ave 2249 max 2249 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 35244 ave 35244 max 35244 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 35244 Ave neighs/atom = 8.811 Neighbor list builds = 26 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 332.778768785219, Press = 245.609399495882 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 13.21 | 13.21 | 13.21 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 20000 170.65805 170.65805 -0.85386816 -0.85386816 331.80143 331.80143 4056190.3 4056190.3 46.1879 46.1879 21000 171.62193 171.62193 -0.42439683 -0.42439683 332.83528 332.83528 4765224.8 4765224.8 39.797661 39.797661 Loop time of 3.03121 on 1 procs for 1000 steps with 4000 atoms Performance: 28.503 ns/day, 0.842 hours/ns, 329.901 timesteps/s 40.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 | 2.1987 | 2.1987 | 2.1987 | 0.0 | 72.54 Neigh | 0.26007 | 0.26007 | 0.26007 | 0.0 | 8.58 Comm | 0.019321 | 0.019321 | 0.019321 | 0.0 | 0.64 Output | 3.2902e-05 | 3.2902e-05 | 3.2902e-05 | 0.0 | 0.00 Modify | 0.49872 | 0.49872 | 0.49872 | 0.0 | 16.45 Other | | 0.05436 | | | 1.79 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 2092 ave 2092 max 2092 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 29752 ave 29752 max 29752 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 29752 Ave neighs/atom = 7.438 Neighbor list builds = 27 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 332.6915533718, Press = 232.992698675185 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 13.23 | 13.23 | 13.23 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 21000 171.62193 171.62193 -0.42439683 -0.42439683 332.83528 332.83528 4765224.8 4765224.8 39.797661 39.797661 22000 174.17703 174.17703 -0.59905116 -0.59905116 338.11618 338.11618 5594266.9 5594266.9 33.950875 33.950875 Loop time of 2.63151 on 1 procs for 1000 steps with 4000 atoms Performance: 32.833 ns/day, 0.731 hours/ns, 380.009 timesteps/s 41.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 | 1.9957 | 1.9957 | 1.9957 | 0.0 | 75.84 Neigh | 0.16447 | 0.16447 | 0.16447 | 0.0 | 6.25 Comm | 0.055219 | 0.055219 | 0.055219 | 0.0 | 2.10 Output | 5.0068e-05 | 5.0068e-05 | 5.0068e-05 | 0.0 | 0.00 Modify | 0.40196 | 0.40196 | 0.40196 | 0.0 | 15.27 Other | | 0.01406 | | | 0.53 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 1953 ave 1953 max 1953 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 25346 ave 25346 max 25346 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 25346 Ave neighs/atom = 6.3365 Neighbor list builds = 28 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 332.679514741402, Press = 221.476518796601 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 13.25 | 13.25 | 13.25 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 22000 174.17703 174.17703 -0.59905116 -0.59905116 338.11618 338.11618 5594266.9 5594266.9 33.950875 33.950875 23000 172.72247 172.72247 -0.48540077 -0.48540077 335.08237 335.08237 6567046.7 6567046.7 28.600557 28.600557 Loop time of 2.5163 on 1 procs for 1000 steps with 4000 atoms Performance: 34.336 ns/day, 0.699 hours/ns, 397.409 timesteps/s 39.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 | 1.873 | 1.873 | 1.873 | 0.0 | 74.44 Neigh | 0.16886 | 0.16886 | 0.16886 | 0.0 | 6.71 Comm | 0.017361 | 0.017361 | 0.017361 | 0.0 | 0.69 Output | 2.5988e-05 | 2.5988e-05 | 2.5988e-05 | 0.0 | 0.00 Modify | 0.44352 | 0.44352 | 0.44352 | 0.0 | 17.63 Other | | 0.0135 | | | 0.54 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 1867 ave 1867 max 1867 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 21632 ave 21632 max 21632 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 21632 Ave neighs/atom = 5.408 Neighbor list builds = 29 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 332.697979819229, Press = 210.940706219566 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 13.27 | 13.27 | 13.27 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 23000 172.72247 172.72247 -0.48540077 -0.48540077 335.08237 335.08237 6567046.7 6567046.7 28.600557 28.600557 24000 168.34386 168.34386 -0.55814539 -0.55814539 326.75238 326.75238 7698867.9 7698867.9 23.626524 23.626524 Loop time of 2.39199 on 1 procs for 1000 steps with 4000 atoms Performance: 36.121 ns/day, 0.664 hours/ns, 418.062 timesteps/s 38.5% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 1.6823 | 1.6823 | 1.6823 | 0.0 | 70.33 Neigh | 0.16523 | 0.16523 | 0.16523 | 0.0 | 6.91 Comm | 0.066843 | 0.066843 | 0.066843 | 0.0 | 2.79 Output | 3.2902e-05 | 3.2902e-05 | 3.2902e-05 | 0.0 | 0.00 Modify | 0.42408 | 0.42408 | 0.42408 | 0.0 | 17.73 Other | | 0.05352 | | | 2.24 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 1738 ave 1738 max 1738 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 18634 ave 18634 max 18634 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 18634 Ave neighs/atom = 4.6585 Neighbor list builds = 29 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 332.577965001708, Press = 201.258503949577 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 13.29 | 13.29 | 13.29 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 24000 168.34386 168.34386 -0.55814539 -0.55814539 326.75238 326.75238 7698867.9 7698867.9 23.626524 23.626524 25000 171.80756 171.80756 -0.44941395 -0.44941395 333.24279 333.24279 9025678.1 9025678.1 20.490634 20.490634 Loop time of 2.14318 on 1 procs for 1000 steps with 4000 atoms Performance: 40.314 ns/day, 0.595 hours/ns, 466.596 timesteps/s 42.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 | 1.5192 | 1.5192 | 1.5192 | 0.0 | 70.88 Neigh | 0.12353 | 0.12353 | 0.12353 | 0.0 | 5.76 Comm | 0.036208 | 0.036208 | 0.036208 | 0.0 | 1.69 Output | 3.2902e-05 | 3.2902e-05 | 3.2902e-05 | 0.0 | 0.00 Modify | 0.45085 | 0.45085 | 0.45085 | 0.0 | 21.04 Other | | 0.01339 | | | 0.62 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 1625 ave 1625 max 1625 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 15768 ave 15768 max 15768 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 15768 Ave neighs/atom = 3.942 Neighbor list builds = 31 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 332.544178797531, Press = 192.351481379524 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 13.35 | 13.35 | 13.35 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 25000 171.80756 171.80756 -0.44941395 -0.44941395 333.24279 333.24279 9025678.1 9025678.1 20.490634 20.490634 26000 172.03508 172.03508 -0.34794211 -0.34794211 333.48666 333.48666 10578499 10578499 17.525855 17.525855 Loop time of 1.965 on 1 procs for 1000 steps with 4000 atoms Performance: 43.970 ns/day, 0.546 hours/ns, 508.907 timesteps/s 41.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 | 1.4984 | 1.4984 | 1.4984 | 0.0 | 76.25 Neigh | 0.099758 | 0.099758 | 0.099758 | 0.0 | 5.08 Comm | 0.035592 | 0.035592 | 0.035592 | 0.0 | 1.81 Output | 3.314e-05 | 3.314e-05 | 3.314e-05 | 0.0 | 0.00 Modify | 0.29781 | 0.29781 | 0.29781 | 0.0 | 15.16 Other | | 0.03343 | | | 1.70 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 1569 ave 1569 max 1569 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 13336 ave 13336 max 13336 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 13336 Ave neighs/atom = 3.334 Neighbor list builds = 32 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 332.554005007676, Press = 184.133507384076 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 13.35 | 13.35 | 13.35 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 26000 172.03508 172.03508 -0.34794211 -0.34794211 333.48666 333.48666 10578499 10578499 17.525855 17.525855 27000 173.98088 173.98088 -0.21470155 -0.21470155 336.99316 336.99316 12393414 12393414 15.161798 15.161798 Loop time of 1.78545 on 1 procs for 1000 steps with 4000 atoms Performance: 48.391 ns/day, 0.496 hours/ns, 560.083 timesteps/s 42.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 | 1.237 | 1.237 | 1.237 | 0.0 | 69.28 Neigh | 0.16072 | 0.16072 | 0.16072 | 0.0 | 9.00 Comm | 0.035015 | 0.035015 | 0.035015 | 0.0 | 1.96 Output | 2.5988e-05 | 2.5988e-05 | 2.5988e-05 | 0.0 | 0.00 Modify | 0.32007 | 0.32007 | 0.32007 | 0.0 | 17.93 Other | | 0.03261 | | | 1.83 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 1460 ave 1460 max 1460 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 11596 ave 11596 max 11596 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 11596 Ave neighs/atom = 2.899 Neighbor list builds = 32 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 332.582791438444, Press = 176.533193363055 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 13.37 | 13.37 | 13.37 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 27000 173.98088 173.98088 -0.21470155 -0.21470155 336.99316 336.99316 12393414 12393414 15.161798 15.161798 28000 167.96976 167.96976 -0.34503972 -0.34503972 325.61639 325.61639 14521036 14521036 12.397423 12.397423 Loop time of 1.2785 on 1 procs for 1000 steps with 4000 atoms Performance: 67.579 ns/day, 0.355 hours/ns, 782.165 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 | 0.96464 | 0.96464 | 0.96464 | 0.0 | 75.45 Neigh | 0.055862 | 0.055862 | 0.055862 | 0.0 | 4.37 Comm | 0.03411 | 0.03411 | 0.03411 | 0.0 | 2.67 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.21136 | 0.21136 | 0.21136 | 0.0 | 16.53 Other | | 0.01251 | | | 0.98 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 1385 ave 1385 max 1385 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 9934 ave 9934 max 9934 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 9934 Ave neighs/atom = 2.4835 Neighbor list builds = 33 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 332.630435462686, Press = 169.48977830699 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 13.41 | 13.41 | 13.41 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 28000 167.96976 167.96976 -0.34503972 -0.34503972 325.61639 325.61639 14521036 14521036 12.397423 12.397423 29000 165.95194 165.95194 -0.29089734 -0.29089734 321.60805 321.60805 16990580 16990580 10.466966 10.466966 Loop time of 1.68361 on 1 procs for 1000 steps with 4000 atoms Performance: 51.318 ns/day, 0.468 hours/ns, 593.960 timesteps/s 40.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 | 1.0955 | 1.0955 | 1.0955 | 0.0 | 65.07 Neigh | 0.13007 | 0.13007 | 0.13007 | 0.0 | 7.73 Comm | 0.03376 | 0.03376 | 0.03376 | 0.0 | 2.01 Output | 5.1022e-05 | 5.1022e-05 | 5.1022e-05 | 0.0 | 0.00 Modify | 0.41147 | 0.41147 | 0.41147 | 0.0 | 24.44 Other | | 0.01279 | | | 0.76 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 1336 ave 1336 max 1336 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 8528 ave 8528 max 8528 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 8528 Ave neighs/atom = 2.132 Neighbor list builds = 31 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 332.558720529748, Press = 162.942091978327 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 13.46 | 13.46 | 13.46 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 29000 165.95194 165.95194 -0.29089734 -0.29089734 321.60805 321.60805 16990580 16990580 10.466966 10.466966 30000 171.36464 171.36464 -0.21607293 -0.21607293 331.93452 331.93452 19879433 19879433 9.2508662 9.2508662 Loop time of 1.45174 on 1 procs for 1000 steps with 4000 atoms Performance: 59.515 ns/day, 0.403 hours/ns, 688.827 timesteps/s 44.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 | 0.95337 | 0.95337 | 0.95337 | 0.0 | 65.67 Neigh | 0.079896 | 0.079896 | 0.079896 | 0.0 | 5.50 Comm | 0.013336 | 0.013336 | 0.013336 | 0.0 | 0.92 Output | 3.314e-05 | 3.314e-05 | 3.314e-05 | 0.0 | 0.00 Modify | 0.31258 | 0.31258 | 0.31258 | 0.0 | 21.53 Other | | 0.09252 | | | 6.37 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 1275 ave 1275 max 1275 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 7312 ave 7312 max 7312 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 7312 Ave neighs/atom = 1.828 Neighbor list builds = 33 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 332.545148997318, Press = 156.849922543626 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 13.51 | 13.51 | 13.51 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 30000 171.36464 171.36464 -0.21607293 -0.21607293 331.93452 331.93452 19879433 19879433 9.2508662 9.2508662 31000 173.09507 173.09507 -0.15047712 -0.15047712 335.15525 335.15525 23250299 23250299 8.0011442 8.0011442 Loop time of 1.50684 on 1 procs for 1000 steps with 4000 atoms Performance: 57.338 ns/day, 0.419 hours/ns, 663.640 timesteps/s 39.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 | 0.95143 | 0.95143 | 0.95143 | 0.0 | 63.14 Neigh | 0.15056 | 0.15056 | 0.15056 | 0.0 | 9.99 Comm | 0.05301 | 0.05301 | 0.05301 | 0.0 | 3.52 Output | 5.0068e-05 | 5.0068e-05 | 5.0068e-05 | 0.0 | 0.00 Modify | 0.27935 | 0.27935 | 0.27935 | 0.0 | 18.54 Other | | 0.07244 | | | 4.81 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 1190 ave 1190 max 1190 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 6132 ave 6132 max 6132 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 6132 Ave neighs/atom = 1.533 Neighbor list builds = 35 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 332.510720554264, Press = 151.168158765474 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 13.59 | 13.59 | 13.59 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 31000 173.09507 173.09507 -0.15047712 -0.15047712 335.15525 335.15525 23250299 23250299 8.0011442 8.0011442 32000 172.56015 172.56015 -0.15663312 -0.15663312 334.13233 334.13233 27193362 27193362 6.7999359 6.7999359 Loop time of 1.37971 on 1 procs for 1000 steps with 4000 atoms Performance: 62.622 ns/day, 0.383 hours/ns, 724.793 timesteps/s 42.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 | 0.84169 | 0.84169 | 0.84169 | 0.0 | 61.01 Neigh | 0.13095 | 0.13095 | 0.13095 | 0.0 | 9.49 Comm | 0.01248 | 0.01248 | 0.01248 | 0.0 | 0.90 Output | 3.1948e-05 | 3.1948e-05 | 3.1948e-05 | 0.0 | 0.00 Modify | 0.38238 | 0.38238 | 0.38238 | 0.0 | 27.71 Other | | 0.01217 | | | 0.88 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 1122 ave 1122 max 1122 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 5228 ave 5228 max 5228 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 5228 Ave neighs/atom = 1.307 Neighbor list builds = 36 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 332.507285850061, Press = 145.86025989333 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 13.65 | 13.65 | 13.65 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 32000 172.56015 172.56015 -0.15663312 -0.15663312 334.13233 334.13233 27193362 27193362 6.7999359 6.7999359 33000 175.22845 175.22845 0.065763504 0.065763504 338.86409 338.86409 31801544 31801544 5.9405744 5.9405744 Loop time of 1.3995 on 1 procs for 1000 steps with 4000 atoms Performance: 61.736 ns/day, 0.389 hours/ns, 714.542 timesteps/s 40.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 | 0.7958 | 0.7958 | 0.7958 | 0.0 | 56.86 Neigh | 0.11138 | 0.11138 | 0.11138 | 0.0 | 7.96 Comm | 0.011925 | 0.011925 | 0.011925 | 0.0 | 0.85 Output | 3.1948e-05 | 3.1948e-05 | 3.1948e-05 | 0.0 | 0.00 Modify | 0.46851 | 0.46851 | 0.46851 | 0.0 | 33.48 Other | | 0.01185 | | | 0.85 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 1057 ave 1057 max 1057 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 4532 ave 4532 max 4532 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 4532 Ave neighs/atom = 1.133 Neighbor list builds = 37 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 332.548184780769, Press = 140.892954685708 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 13.74 | 13.74 | 13.74 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 33000 175.22845 175.22845 0.065763504 0.065763504 338.86409 338.86409 31801544 31801544 5.9405744 5.9405744 34000 172.70333 172.70333 -0.14359645 -0.14359645 334.3841 334.3841 37179366 37179366 4.9720164 4.9720164 Loop time of 1.28481 on 1 procs for 1000 steps with 4000 atoms Performance: 67.247 ns/day, 0.357 hours/ns, 778.323 timesteps/s 45.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 | 0.68889 | 0.68889 | 0.68889 | 0.0 | 53.62 Neigh | 0.13433 | 0.13433 | 0.13433 | 0.0 | 10.46 Comm | 0.032229 | 0.032229 | 0.032229 | 0.0 | 2.51 Output | 3.0041e-05 | 3.0041e-05 | 3.0041e-05 | 0.0 | 0.00 Modify | 0.41692 | 0.41692 | 0.41692 | 0.0 | 32.45 Other | | 0.01241 | | | 0.97 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 990 ave 990 max 990 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 3774 ave 3774 max 3774 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 3774 Ave neighs/atom = 0.9435 Neighbor list builds = 38 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 332.552587845913, Press = 136.235474731249 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 13.82 | 13.82 | 13.82 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 34000 172.70333 172.70333 -0.14359645 -0.14359645 334.3841 334.3841 37179366 37179366 4.9720164 4.9720164 35000 173.43425 173.43425 -0.12755759 -0.12755759 335.76708 335.76708 43459655 43459655 4.2655469 4.2655469 Loop time of 1.47178 on 1 procs for 1000 steps with 4000 atoms Performance: 58.705 ns/day, 0.409 hours/ns, 679.452 timesteps/s 36.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 | 0.89356 | 0.89356 | 0.89356 | 0.0 | 60.71 Neigh | 0.18423 | 0.18423 | 0.18423 | 0.0 | 12.52 Comm | 0.051308 | 0.051308 | 0.051308 | 0.0 | 3.49 Output | 2.5988e-05 | 2.5988e-05 | 2.5988e-05 | 0.0 | 0.00 Modify | 0.33105 | 0.33105 | 0.33105 | 0.0 | 22.49 Other | | 0.0116 | | | 0.79 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 932 ave 932 max 932 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 3160 ave 3160 max 3160 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 3160 Ave neighs/atom = 0.79 Neighbor list builds = 40 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 332.582170726896, Press = 131.861870656814 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 13.93 | 13.93 | 13.93 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 35000 173.43425 173.43425 -0.12755759 -0.12755759 335.76708 335.76708 43459655 43459655 4.2655469 4.2655469 36000 169.90737 169.90737 -0.11592725 -0.11592725 328.9216 328.9216 50795226 50795226 3.5734425 3.5734425 Loop time of 1.31662 on 1 procs for 1000 steps with 4000 atoms Performance: 65.622 ns/day, 0.366 hours/ns, 759.518 timesteps/s 41.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 | 0.63025 | 0.63025 | 0.63025 | 0.0 | 47.87 Neigh | 0.11958 | 0.11958 | 0.11958 | 0.0 | 9.08 Comm | 0.057854 | 0.057854 | 0.057854 | 0.0 | 4.39 Output | 2.5988e-05 | 2.5988e-05 | 2.5988e-05 | 0.0 | 0.00 Modify | 0.45672 | 0.45672 | 0.45672 | 0.0 | 34.69 Other | | 0.0522 | | | 3.96 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 893 ave 893 max 893 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 2706 ave 2706 max 2706 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 2706 Ave neighs/atom = 0.6765 Neighbor list builds = 42 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 332.611400210189, Press = 127.748300783643 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 14.06 | 14.06 | 14.06 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 36000 169.90737 169.90737 -0.11592725 -0.11592725 328.9216 328.9216 50795226 50795226 3.5734425 3.5734425 37000 172.26924 172.26924 0.033518205 0.033518205 333.20168 333.20168 59348190 59348190 3.1192248 3.1192248 Loop time of 1.39025 on 1 procs for 1000 steps with 4000 atoms Performance: 62.147 ns/day, 0.386 hours/ns, 719.297 timesteps/s 38.1% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 0.70716 | 0.70716 | 0.70716 | 0.0 | 50.87 Neigh | 0.12412 | 0.12412 | 0.12412 | 0.0 | 8.93 Comm | 0.031411 | 0.031411 | 0.031411 | 0.0 | 2.26 Output | 2.5988e-05 | 2.5988e-05 | 2.5988e-05 | 0.0 | 0.00 Modify | 0.49558 | 0.49558 | 0.49558 | 0.0 | 35.65 Other | | 0.03195 | | | 2.30 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 853 ave 853 max 853 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 2426 ave 2426 max 2426 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 2426 Ave neighs/atom = 0.6065 Neighbor list builds = 45 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 332.647588428945, Press = 123.873352135779 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 14.21 | 14.21 | 14.21 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 37000 172.26924 172.26924 0.033518205 0.033518205 333.20168 333.20168 59348190 59348190 3.1192248 3.1192248 38000 169.94129 169.94129 -0.074240543 -0.074240543 328.90658 328.90658 69258142 69258142 2.6237099 2.6237099 Loop time of 1.17674 on 1 procs for 1000 steps with 4000 atoms Performance: 73.423 ns/day, 0.327 hours/ns, 849.805 timesteps/s 43.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 | 0.66815 | 0.66815 | 0.66815 | 0.0 | 56.78 Neigh | 0.12209 | 0.12209 | 0.12209 | 0.0 | 10.38 Comm | 0.010766 | 0.010766 | 0.010766 | 0.0 | 0.91 Output | 3.3855e-05 | 3.3855e-05 | 3.3855e-05 | 0.0 | 0.00 Modify | 0.34384 | 0.34384 | 0.34384 | 0.0 | 29.22 Other | | 0.03186 | | | 2.71 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 815 ave 815 max 815 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 2038 ave 2038 max 2038 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 2038 Ave neighs/atom = 0.5095 Neighbor list builds = 44 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 332.580014888512, Press = 120.217128206156 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 14.36 | 14.36 | 14.36 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 38000 169.94129 169.94129 -0.074240543 -0.074240543 328.90658 328.90658 69258142 69258142 2.6237099 2.6237099 39000 171.9203 171.9203 -0.079323809 -0.079323809 332.74494 332.74494 80844832 80844832 2.2707334 2.2707334 Loop time of 1.14108 on 1 procs for 1000 steps with 4000 atoms Performance: 75.718 ns/day, 0.317 hours/ns, 876.366 timesteps/s 42.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 | 0.55512 | 0.55512 | 0.55512 | 0.0 | 48.65 Neigh | 0.16276 | 0.16276 | 0.16276 | 0.0 | 14.26 Comm | 0.030368 | 0.030368 | 0.030368 | 0.0 | 2.66 Output | 3.2902e-05 | 3.2902e-05 | 3.2902e-05 | 0.0 | 0.00 Modify | 0.38168 | 0.38168 | 0.38168 | 0.0 | 33.45 Other | | 0.01112 | | | 0.97 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 765 ave 765 max 765 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 1786 ave 1786 max 1786 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1786 Ave neighs/atom = 0.4465 Neighbor list builds = 46 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" jump SELF unstable print "ERROR: System volume ${V_metal} A^3 has become larger than ${V0_metal_times1000} A^3. Aborting calculation." ERROR: System volume 80844831.9027271 A^3 has become larger than 75669835.9948081 A^3. Aborting calculation. Total wall time: 0:06:40