# 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.518121123313904*${_u_distance} variable latticeconst_converted equal 3.518121123313904*1 lattice fcc ${latticeconst_converted} lattice fcc 3.5181211233139 Lattice spacing in x,y,z = 3.51812 3.51812 3.51812 region simbox block 0 10 0 10 0 10 units lattice create_box 1 simbox Created orthogonal box = (0 0 0) to (35.1812 35.1812 35.1812) 1 by 1 by 1 MPI processor grid create_atoms 1 box Created 4000 atoms create_atoms CPU = 0.000452042 secs variable mass_converted equal 58.6934*${_u_mass} variable mass_converted equal 58.6934*1 # specify which KIM Model to use pair_style kim EAM_Dynamo_MendelevKramerHao_2012_NiZr__MO_149104665840_005 pair_coeff * * Ni mass 1 ${mass_converted} mass 1 58.6934 # initial volume variable v equal vol # assign formula variable V0 equal ${v} # evaluate initial value variable V0 equal 43544.4051709683 variable V0_metal equal ${V0}/(${_u_distance}*${_u_distance}*${_u_distance}) variable V0_metal equal 43544.4051709683/(${_u_distance}*${_u_distance}*${_u_distance}) variable V0_metal equal 43544.4051709683/(1*${_u_distance}*${_u_distance}) variable V0_metal equal 43544.4051709683/(1*1*${_u_distance}) variable V0_metal equal 43544.4051709683/(1*1*1) variable V0_metal_times1000 equal ${V0_metal}*1000 variable V0_metal_times1000 equal 43544.4051709683*1000 print "Initial system volume: ${V0_metal} Angstroms^3" Initial system volume: 43544.4051709683 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 253.15*${_u_temperature} variable temp_converted equal 253.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 253.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 253.15 ${temp_converted} ${Tdamp_converted} iso ${press_converted} ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 253.15 253.15 ${Tdamp_converted} iso ${press_converted} ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 253.15 253.15 0.1 iso ${press_converted} ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 253.15 253.15 0.1 iso 0 ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 253.15 253.15 0.1 iso 0 0 ${Pdamp_converted} fix ensemble all npt temp 253.15 253.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 "253.15 - 0.2" variable T_up equal "253.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 = 9.6 ghost atom cutoff = 9.6 binsize = 4.8, bins = 8 8 8 1 neighbor lists, perpetual/occasional/extra = 1 0 0 (1) pair kim, perpetual attributes: full, newton off, cut 9.6 pair build: full/bin/atomonly stencil: full/bin/3d bin: standard Per MPI rank memory allocation (min/avg/max) = 8.671 | 8.671 | 8.671 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 0 -17411.179 -17411.179 -17542.035 -17542.035 253.15 253.15 43544.405 43544.405 3209.8296 3209.8296 1000 -17275.696 -17275.696 -17406.302 -17406.302 252.6657 252.6657 43862.136 43862.136 -719.20834 -719.20834 Loop time of 82.2631 on 1 procs for 1000 steps with 4000 atoms Performance: 1.050 ns/day, 22.851 hours/ns, 12.156 timesteps/s 38.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 | 81.584 | 81.584 | 81.584 | 0.0 | 99.17 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.26747 | 0.26747 | 0.26747 | 0.0 | 0.33 Output | 7.5102e-05 | 7.5102e-05 | 7.5102e-05 | 0.0 | 0.00 Modify | 0.3886 | 0.3886 | 0.3886 | 0.0 | 0.47 Other | | 0.02307 | | | 0.03 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.28e+06 ave 1.28e+06 max 1.28e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1280000 Ave neighs/atom = 320 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${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) = 8.673 | 8.673 | 8.673 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 1000 -17275.696 -17275.696 -17406.302 -17406.302 252.6657 252.6657 43862.136 43862.136 -719.20834 -719.20834 2000 -17282.473 -17282.473 -17411.594 -17411.594 249.79383 249.79383 43832.128 43832.128 -6.650013 -6.650013 Loop time of 85.8813 on 1 procs for 1000 steps with 4000 atoms Performance: 1.006 ns/day, 23.856 hours/ns, 11.644 timesteps/s 37.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 | 85.083 | 85.083 | 85.083 | 0.0 | 99.07 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.10728 | 0.10728 | 0.10728 | 0.0 | 0.12 Output | 4.1008e-05 | 4.1008e-05 | 4.1008e-05 | 0.0 | 0.00 Modify | 0.66798 | 0.66798 | 0.66798 | 0.0 | 0.78 Other | | 0.02303 | | | 0.03 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.3286e+06 ave 1.3286e+06 max 1.3286e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1328596 Ave neighs/atom = 332.149 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${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) = 8.673 | 8.673 | 8.673 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 2000 -17282.473 -17282.473 -17411.594 -17411.594 249.79383 249.79383 43832.128 43832.128 -6.650013 -6.650013 3000 -17282.807 -17282.807 -17412.602 -17412.602 251.09746 251.09746 43796.965 43796.965 1242.2148 1242.2148 Loop time of 89.1441 on 1 procs for 1000 steps with 4000 atoms Performance: 0.969 ns/day, 24.762 hours/ns, 11.218 timesteps/s 36.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 | 88.449 | 88.449 | 88.449 | 0.0 | 99.22 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.14739 | 0.14739 | 0.14739 | 0.0 | 0.17 Output | 4.6015e-05 | 4.6015e-05 | 4.6015e-05 | 0.0 | 0.00 Modify | 0.42719 | 0.42719 | 0.42719 | 0.0 | 0.48 Other | | 0.1209 | | | 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.32968e+06 ave 1.32968e+06 max 1.32968e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1329678 Ave neighs/atom = 332.42 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${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) = 8.673 | 8.673 | 8.673 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 3000 -17282.807 -17282.807 -17412.602 -17412.602 251.09746 251.09746 43796.965 43796.965 1242.2148 1242.2148 4000 -17279.48 -17279.48 -17407.542 -17407.542 247.7448 247.7448 43864.952 43864.952 -1021.1242 -1021.1242 Loop time of 92.5057 on 1 procs for 1000 steps with 4000 atoms Performance: 0.934 ns/day, 25.696 hours/ns, 10.810 timesteps/s 35.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 | 91.715 | 91.715 | 91.715 | 0.0 | 99.15 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.22739 | 0.22739 | 0.22739 | 0.0 | 0.25 Output | 4.4823e-05 | 4.4823e-05 | 4.4823e-05 | 0.0 | 0.00 Modify | 0.53982 | 0.53982 | 0.53982 | 0.0 | 0.58 Other | | 0.02302 | | | 0.02 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.33075e+06 ave 1.33075e+06 max 1.33075e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1330754 Ave neighs/atom = 332.688 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${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) = 8.673 | 8.673 | 8.673 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 4000 -17279.48 -17279.48 -17407.542 -17407.542 247.7448 247.7448 43864.952 43864.952 -1021.1242 -1021.1242 5000 -17283.778 -17283.778 -17414.308 -17414.308 252.51775 252.51775 43831.94 43831.94 -61.321173 -61.321173 Loop time of 88.4877 on 1 procs for 1000 steps with 4000 atoms Performance: 0.976 ns/day, 24.580 hours/ns, 11.301 timesteps/s 36.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 | 87.785 | 87.785 | 87.785 | 0.0 | 99.21 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.22771 | 0.22771 | 0.22771 | 0.0 | 0.26 Output | 3.314e-05 | 3.314e-05 | 3.314e-05 | 0.0 | 0.00 Modify | 0.39095 | 0.39095 | 0.39095 | 0.0 | 0.44 Other | | 0.08348 | | | 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.32882e+06 ave 1.32882e+06 max 1.32882e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1328824 Ave neighs/atom = 332.206 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 251.06516860266, Press = -330.373543788987 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 8.673 | 8.673 | 8.673 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 5000 -17283.778 -17283.778 -17414.308 -17414.308 252.51775 252.51775 43831.94 43831.94 -61.321173 -61.321173 6000 -17279.684 -17279.684 -17411.11 -17411.11 254.25339 254.25339 43821.943 43821.943 426.74223 426.74223 Loop time of 87.7204 on 1 procs for 1000 steps with 4000 atoms Performance: 0.985 ns/day, 24.367 hours/ns, 11.400 timesteps/s 37.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 | 87.076 | 87.076 | 87.076 | 0.0 | 99.27 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.16063 | 0.16063 | 0.16063 | 0.0 | 0.18 Output | 3.4809e-05 | 3.4809e-05 | 3.4809e-05 | 0.0 | 0.00 Modify | 0.42078 | 0.42078 | 0.42078 | 0.0 | 0.48 Other | | 0.06314 | | | 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.32879e+06 ave 1.32879e+06 max 1.32879e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1328794 Ave neighs/atom = 332.199 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.688433400299, Press = 32.8360577668612 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 8.673 | 8.673 | 8.673 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 6000 -17279.684 -17279.684 -17411.11 -17411.11 254.25339 254.25339 43821.943 43821.943 426.74223 426.74223 7000 -17284.44 -17284.44 -17410.801 -17410.801 244.45413 244.45413 43897.433 43897.433 -2544.9996 -2544.9996 Loop time of 81.5737 on 1 procs for 1000 steps with 4000 atoms Performance: 1.059 ns/day, 22.659 hours/ns, 12.259 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 | 80.892 | 80.892 | 80.892 | 0.0 | 99.16 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.19286 | 0.19286 | 0.19286 | 0.0 | 0.24 Output | 3.5048e-05 | 3.5048e-05 | 3.5048e-05 | 0.0 | 0.00 Modify | 0.38512 | 0.38512 | 0.38512 | 0.0 | 0.47 Other | | 0.1035 | | | 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.32976e+06 ave 1.32976e+06 max 1.32976e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1329756 Ave neighs/atom = 332.439 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.973259683054, Press = -32.1089400867064 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 8.673 | 8.673 | 8.673 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 7000 -17284.44 -17284.44 -17410.801 -17410.801 244.45413 244.45413 43897.433 43897.433 -2544.9996 -2544.9996 8000 -17281.467 -17281.467 -17409.403 -17409.403 247.49929 247.49929 43792.836 43792.836 1614.5658 1614.5658 Loop time of 84.8939 on 1 procs for 1000 steps with 4000 atoms Performance: 1.018 ns/day, 23.582 hours/ns, 11.779 timesteps/s 38.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 | 84.1 | 84.1 | 84.1 | 0.0 | 99.06 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.30547 | 0.30547 | 0.30547 | 0.0 | 0.36 Output | 3.3855e-05 | 3.3855e-05 | 3.3855e-05 | 0.0 | 0.00 Modify | 0.39543 | 0.39543 | 0.39543 | 0.0 | 0.47 Other | | 0.09323 | | | 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.32735e+06 ave 1.32735e+06 max 1.32735e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1327348 Ave neighs/atom = 331.837 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.84746835963, Press = -4.46869930974223 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 8.673 | 8.673 | 8.673 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 8000 -17281.467 -17281.467 -17409.403 -17409.403 247.49929 247.49929 43792.836 43792.836 1614.5658 1614.5658 9000 -17276.654 -17276.654 -17413.994 -17413.994 265.69225 265.69225 43835.561 43835.561 -129.13676 -129.13676 Loop time of 80.3632 on 1 procs for 1000 steps with 4000 atoms Performance: 1.075 ns/day, 22.323 hours/ns, 12.444 timesteps/s 40.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 | 79.727 | 79.727 | 79.727 | 0.0 | 99.21 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.14815 | 0.14815 | 0.14815 | 0.0 | 0.18 Output | 3.4094e-05 | 3.4094e-05 | 3.4094e-05 | 0.0 | 0.00 Modify | 0.40452 | 0.40452 | 0.40452 | 0.0 | 0.50 Other | | 0.08328 | | | 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.33195e+06 ave 1.33195e+06 max 1.33195e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1331954 Ave neighs/atom = 332.988 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.942473768385, Press = -1.71732919225255 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 8.673 | 8.673 | 8.673 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 9000 -17276.654 -17276.654 -17413.994 -17413.994 265.69225 265.69225 43835.561 43835.561 -129.13676 -129.13676 10000 -17282.86 -17282.86 -17410.628 -17410.628 247.17584 247.17584 43863.108 43863.108 -1135.6829 -1135.6829 Loop time of 88.6294 on 1 procs for 1000 steps with 4000 atoms Performance: 0.975 ns/day, 24.619 hours/ns, 11.283 timesteps/s 36.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 | 88 | 88 | 88 | 0.0 | 99.29 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.16781 | 0.16781 | 0.16781 | 0.0 | 0.19 Output | 2.6941e-05 | 2.6941e-05 | 2.6941e-05 | 0.0 | 0.00 Modify | 0.41872 | 0.41872 | 0.41872 | 0.0 | 0.47 Other | | 0.04329 | | | 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.32879e+06 ave 1.32879e+06 max 1.32879e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1328794 Ave neighs/atom = 332.199 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.173844636121, Press = -0.725494153533387 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 8.673 | 8.673 | 8.673 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 10000 -17282.86 -17282.86 -17410.628 -17410.628 247.17584 247.17584 43863.108 43863.108 -1135.6829 -1135.6829 11000 -17282.313 -17282.313 -17412.742 -17412.742 252.32468 252.32468 43824.572 43824.572 321.80798 321.80798 Loop time of 94.1473 on 1 procs for 1000 steps with 4000 atoms Performance: 0.918 ns/day, 26.152 hours/ns, 10.622 timesteps/s 34.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 | 93.556 | 93.556 | 93.556 | 0.0 | 99.37 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.18792 | 0.18792 | 0.18792 | 0.0 | 0.20 Output | 2.6941e-05 | 2.6941e-05 | 2.6941e-05 | 0.0 | 0.00 Modify | 0.38026 | 0.38026 | 0.38026 | 0.0 | 0.40 Other | | 0.02303 | | | 0.02 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.32807e+06 ave 1.32807e+06 max 1.32807e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1328068 Ave neighs/atom = 332.017 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.072287307043, Press = -6.46807513972292 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 8.673 | 8.673 | 8.673 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 11000 -17282.313 -17282.313 -17412.742 -17412.742 252.32468 252.32468 43824.572 43824.572 321.80798 321.80798 12000 -17285.287 -17285.287 -17416.996 -17416.996 254.79888 254.79888 43796.052 43796.052 1088.8746 1088.8746 Loop time of 90.7526 on 1 procs for 1000 steps with 4000 atoms Performance: 0.952 ns/day, 25.209 hours/ns, 11.019 timesteps/s 35.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 | 90.064 | 90.064 | 90.064 | 0.0 | 99.24 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.20804 | 0.20804 | 0.20804 | 0.0 | 0.23 Output | 2.5988e-05 | 2.5988e-05 | 2.5988e-05 | 0.0 | 0.00 Modify | 0.41726 | 0.41726 | 0.41726 | 0.0 | 0.46 Other | | 0.06339 | | | 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.32938e+06 ave 1.32938e+06 max 1.32938e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1329384 Ave neighs/atom = 332.346 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.773061152593, Press = 5.92306125210073 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 8.673 | 8.673 | 8.673 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 12000 -17285.287 -17285.287 -17416.996 -17416.996 254.79888 254.79888 43796.052 43796.052 1088.8746 1088.8746 13000 -17281.454 -17281.454 -17411.485 -17411.485 251.55283 251.55283 43883.52 43883.52 -1903.1005 -1903.1005 Loop time of 91.6603 on 1 procs for 1000 steps with 4000 atoms Performance: 0.943 ns/day, 25.461 hours/ns, 10.910 timesteps/s 35.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 | 90.751 | 90.751 | 90.751 | 0.0 | 99.01 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.27858 | 0.27858 | 0.27858 | 0.0 | 0.30 Output | 3.6001e-05 | 3.6001e-05 | 3.6001e-05 | 0.0 | 0.00 Modify | 0.58676 | 0.58676 | 0.58676 | 0.0 | 0.64 Other | | 0.04355 | | | 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.33058e+06 ave 1.33058e+06 max 1.33058e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1330578 Ave neighs/atom = 332.644 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.758311267336, Press = 0.171420839564896 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 8.673 | 8.673 | 8.673 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 13000 -17281.454 -17281.454 -17411.485 -17411.485 251.55283 251.55283 43883.52 43883.52 -1903.1005 -1903.1005 14000 -17284.365 -17284.365 -17413.43 -17413.43 249.68602 249.68602 43815.982 43815.982 421.02143 421.02143 Loop time of 97.8725 on 1 procs for 1000 steps with 4000 atoms Performance: 0.883 ns/day, 27.187 hours/ns, 10.217 timesteps/s 33.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 | 97.046 | 97.046 | 97.046 | 0.0 | 99.16 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.16817 | 0.16817 | 0.16817 | 0.0 | 0.17 Output | 2.5988e-05 | 2.5988e-05 | 2.5988e-05 | 0.0 | 0.00 Modify | 0.61508 | 0.61508 | 0.61508 | 0.0 | 0.63 Other | | 0.04342 | | | 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.32684e+06 ave 1.32684e+06 max 1.32684e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1326836 Ave neighs/atom = 331.709 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.598341340531, Press = -5.74274439037932 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 8.673 | 8.673 | 8.673 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 14000 -17284.365 -17284.365 -17413.43 -17413.43 249.68602 249.68602 43815.982 43815.982 421.02143 421.02143 15000 -17281.246 -17281.246 -17409.929 -17409.929 248.94502 248.94502 43801 43801 1272.5276 1272.5276 Loop time of 105.148 on 1 procs for 1000 steps with 4000 atoms Performance: 0.822 ns/day, 29.208 hours/ns, 9.510 timesteps/s 31.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 | 104.1 | 104.1 | 104.1 | 0.0 | 99.01 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.21846 | 0.21846 | 0.21846 | 0.0 | 0.21 Output | 3.4094e-05 | 3.4094e-05 | 3.4094e-05 | 0.0 | 0.00 Modify | 0.72195 | 0.72195 | 0.72195 | 0.0 | 0.69 Other | | 0.1035 | | | 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.33001e+06 ave 1.33001e+06 max 1.33001e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1330008 Ave neighs/atom = 332.502 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.683811889362, Press = 1.54854763560488 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 8.673 | 8.673 | 8.673 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 15000 -17281.246 -17281.246 -17409.929 -17409.929 248.94502 248.94502 43801 43801 1272.5276 1272.5276 16000 -17283.928 -17283.928 -17413.848 -17413.848 251.33837 251.33837 43862.443 43862.443 -1227.8898 -1227.8898 Loop time of 105.432 on 1 procs for 1000 steps with 4000 atoms Performance: 0.819 ns/day, 29.287 hours/ns, 9.485 timesteps/s 31.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 | 104.54 | 104.54 | 104.54 | 0.0 | 99.16 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.23879 | 0.23879 | 0.23879 | 0.0 | 0.23 Output | 3.4094e-05 | 3.4094e-05 | 3.4094e-05 | 0.0 | 0.00 Modify | 0.60569 | 0.60569 | 0.60569 | 0.0 | 0.57 Other | | 0.04332 | | | 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.33201e+06 ave 1.33201e+06 max 1.33201e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1332008 Ave neighs/atom = 333.002 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.686499365533, Press = -0.374638637459048 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 8.673 | 8.673 | 8.673 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 16000 -17283.928 -17283.928 -17413.848 -17413.848 251.33837 251.33837 43862.443 43862.443 -1227.8898 -1227.8898 17000 -17280.285 -17280.285 -17412.372 -17412.372 255.53075 255.53075 43826.478 43826.478 272.44912 272.44912 Loop time of 104.652 on 1 procs for 1000 steps with 4000 atoms Performance: 0.826 ns/day, 29.070 hours/ns, 9.556 timesteps/s 31.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 | 103.84 | 103.84 | 103.84 | 0.0 | 99.22 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.32477 | 0.32477 | 0.32477 | 0.0 | 0.31 Output | 3.4094e-05 | 3.4094e-05 | 3.4094e-05 | 0.0 | 0.00 Modify | 0.39656 | 0.39656 | 0.39656 | 0.0 | 0.38 Other | | 0.09325 | | | 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.32774e+06 ave 1.32774e+06 max 1.32774e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1327736 Ave neighs/atom = 331.934 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.631821276152, Press = -4.6919365019888 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 8.673 | 8.673 | 8.673 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 17000 -17280.285 -17280.285 -17412.372 -17412.372 255.53075 255.53075 43826.478 43826.478 272.44912 272.44912 18000 -17283.079 -17283.079 -17412.817 -17412.817 250.98605 250.98605 43752.172 43752.172 3096.2829 3096.2829 Loop time of 103.62 on 1 procs for 1000 steps with 4000 atoms Performance: 0.834 ns/day, 28.783 hours/ns, 9.651 timesteps/s 31.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 | 102.57 | 102.57 | 102.57 | 0.0 | 98.98 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.27154 | 0.27154 | 0.27154 | 0.0 | 0.26 Output | 3.5048e-05 | 3.5048e-05 | 3.5048e-05 | 0.0 | 0.00 Modify | 0.6991 | 0.6991 | 0.6991 | 0.0 | 0.67 Other | | 0.08357 | | | 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.32945e+06 ave 1.32945e+06 max 1.32945e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1329448 Ave neighs/atom = 332.362 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.555103893564, Press = 5.28133944220247 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 8.673 | 8.673 | 8.673 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 18000 -17283.079 -17283.079 -17412.817 -17412.817 250.98605 250.98605 43752.172 43752.172 3096.2829 3096.2829 19000 -17278.388 -17278.388 -17410.321 -17410.321 255.23247 255.23247 43874.18 43874.18 -1613.0969 -1613.0969 Loop time of 105.065 on 1 procs for 1000 steps with 4000 atoms Performance: 0.822 ns/day, 29.185 hours/ns, 9.518 timesteps/s 31.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 | 104.29 | 104.29 | 104.29 | 0.0 | 99.26 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.28863 | 0.28863 | 0.28863 | 0.0 | 0.27 Output | 3.3855e-05 | 3.3855e-05 | 3.3855e-05 | 0.0 | 0.00 Modify | 0.42587 | 0.42587 | 0.42587 | 0.0 | 0.41 Other | | 0.0633 | | | 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.33367e+06 ave 1.33367e+06 max 1.33367e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1333670 Ave neighs/atom = 333.418 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.656892384539, Press = -0.474500410294258 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 8.673 | 8.673 | 8.673 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 19000 -17278.388 -17278.388 -17410.321 -17410.321 255.23247 255.23247 43874.18 43874.18 -1613.0969 -1613.0969 20000 -17280.167 -17280.167 -17411.171 -17411.171 253.43713 253.43713 43819.648 43819.648 488.43792 488.43792 Loop time of 103.146 on 1 procs for 1000 steps with 4000 atoms Performance: 0.838 ns/day, 28.652 hours/ns, 9.695 timesteps/s 31.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 | 102.24 | 102.24 | 102.24 | 0.0 | 99.12 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.20871 | 0.20871 | 0.20871 | 0.0 | 0.20 Output | 3.5048e-05 | 3.5048e-05 | 3.5048e-05 | 0.0 | 0.00 Modify | 0.56649 | 0.56649 | 0.56649 | 0.0 | 0.55 Other | | 0.1336 | | | 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.32673e+06 ave 1.32673e+06 max 1.32673e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1326730 Ave neighs/atom = 331.683 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.712230322403, Press = -1.72173286131908 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 8.673 | 8.673 | 8.673 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 20000 -17280.167 -17280.167 -17411.171 -17411.171 253.43713 253.43713 43819.648 43819.648 488.43792 488.43792 21000 -17279.869 -17279.869 -17409.918 -17409.918 251.58857 251.58857 43829.599 43829.599 82.834117 82.834117 Loop time of 100.314 on 1 procs for 1000 steps with 4000 atoms Performance: 0.861 ns/day, 27.865 hours/ns, 9.969 timesteps/s 32.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 | 99.371 | 99.371 | 99.371 | 0.0 | 99.06 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.28082 | 0.28082 | 0.28082 | 0.0 | 0.28 Output | 3.2902e-05 | 3.2902e-05 | 3.2902e-05 | 0.0 | 0.00 Modify | 0.6188 | 0.6188 | 0.6188 | 0.0 | 0.62 Other | | 0.04334 | | | 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.3297e+06 ave 1.3297e+06 max 1.3297e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1329698 Ave neighs/atom = 332.425 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.874589149789, Press = -0.11935375644336 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 8.673 | 8.673 | 8.673 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 21000 -17279.869 -17279.869 -17409.918 -17409.918 251.58857 251.58857 43829.599 43829.599 82.834117 82.834117 22000 -17279.027 -17279.027 -17410.616 -17410.616 254.56611 254.56611 43869.017 43869.017 -1350.4117 -1350.4117 Loop time of 101.33 on 1 procs for 1000 steps with 4000 atoms Performance: 0.853 ns/day, 28.147 hours/ns, 9.869 timesteps/s 32.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 | 100.49 | 100.49 | 100.49 | 0.0 | 99.17 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.21839 | 0.21839 | 0.21839 | 0.0 | 0.22 Output | 2.5988e-05 | 2.5988e-05 | 2.5988e-05 | 0.0 | 0.00 Modify | 0.54596 | 0.54596 | 0.54596 | 0.0 | 0.54 Other | | 0.07338 | | | 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.32948e+06 ave 1.32948e+06 max 1.32948e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1329484 Ave neighs/atom = 332.371 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.899330618833, Press = -0.357419298069821 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 8.673 | 8.673 | 8.673 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 22000 -17279.027 -17279.027 -17410.616 -17410.616 254.56611 254.56611 43869.017 43869.017 -1350.4117 -1350.4117 23000 -17280.492 -17280.492 -17411.516 -17411.516 253.47611 253.47611 43811.352 43811.352 872.42138 872.42138 Loop time of 98.6489 on 1 procs for 1000 steps with 4000 atoms Performance: 0.876 ns/day, 27.402 hours/ns, 10.137 timesteps/s 33.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 | 97.811 | 97.811 | 97.811 | 0.0 | 99.15 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.16837 | 0.16837 | 0.16837 | 0.0 | 0.17 Output | 6.3896e-05 | 6.3896e-05 | 6.3896e-05 | 0.0 | 0.00 Modify | 0.60591 | 0.60591 | 0.60591 | 0.0 | 0.61 Other | | 0.06345 | | | 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.32746e+06 ave 1.32746e+06 max 1.32746e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1327456 Ave neighs/atom = 331.864 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.854931473428, Press = -3.72347791161569 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 8.673 | 8.673 | 8.673 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 23000 -17280.492 -17280.492 -17411.516 -17411.516 253.47611 253.47611 43811.352 43811.352 872.42138 872.42138 24000 -17281.566 -17281.566 -17411.235 -17411.235 250.85428 250.85428 43790.066 43790.066 1611.2702 1611.2702 Loop time of 98.3063 on 1 procs for 1000 steps with 4000 atoms Performance: 0.879 ns/day, 27.307 hours/ns, 10.172 timesteps/s 33.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 | 97.549 | 97.549 | 97.549 | 0.0 | 99.23 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.22848 | 0.22848 | 0.22848 | 0.0 | 0.23 Output | 2.5988e-05 | 2.5988e-05 | 2.5988e-05 | 0.0 | 0.00 Modify | 0.46528 | 0.46528 | 0.46528 | 0.0 | 0.47 Other | | 0.06346 | | | 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.33013e+06 ave 1.33013e+06 max 1.33013e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1330126 Ave neighs/atom = 332.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 = 252.825923596535, Press = 1.26003253281003 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 8.673 | 8.673 | 8.673 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 24000 -17281.566 -17281.566 -17411.235 -17411.235 250.85428 250.85428 43790.066 43790.066 1611.2702 1611.2702 25000 -17283.083 -17283.083 -17412.188 -17412.188 249.76309 249.76309 43871.606 43871.606 -1632.37 -1632.37 Loop time of 92.4478 on 1 procs for 1000 steps with 4000 atoms Performance: 0.935 ns/day, 25.680 hours/ns, 10.817 timesteps/s 35.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 | 91.62 | 91.62 | 91.62 | 0.0 | 99.10 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.22727 | 0.22727 | 0.22727 | 0.0 | 0.25 Output | 3.4094e-05 | 3.4094e-05 | 3.4094e-05 | 0.0 | 0.00 Modify | 0.53746 | 0.53746 | 0.53746 | 0.0 | 0.58 Other | | 0.06341 | | | 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.3315e+06 ave 1.3315e+06 max 1.3315e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1331502 Ave neighs/atom = 332.875 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.749188688148, Press = 0.191294837407123 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 8.673 | 8.673 | 8.673 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 25000 -17283.083 -17283.083 -17412.188 -17412.188 249.76309 249.76309 43871.606 43871.606 -1632.37 -1632.37 26000 -17281.603 -17281.603 -17408.908 -17408.908 246.27998 246.27998 43821.184 43821.184 435.48329 435.48329 Loop time of 90.9969 on 1 procs for 1000 steps with 4000 atoms Performance: 0.949 ns/day, 25.277 hours/ns, 10.989 timesteps/s 36.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 | 90.434 | 90.434 | 90.434 | 0.0 | 99.38 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.1503 | 0.1503 | 0.1503 | 0.0 | 0.17 Output | 2.5988e-05 | 2.5988e-05 | 2.5988e-05 | 0.0 | 0.00 Modify | 0.32846 | 0.32846 | 0.32846 | 0.0 | 0.36 Other | | 0.08365 | | | 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.3273e+06 ave 1.3273e+06 max 1.3273e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1327296 Ave neighs/atom = 331.824 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.762265715964, Press = -1.85414453199875 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 8.673 | 8.673 | 8.673 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 26000 -17281.603 -17281.603 -17408.908 -17408.908 246.27998 246.27998 43821.184 43821.184 435.48329 435.48329 27000 -17283.61 -17283.61 -17412.42 -17412.42 249.19175 249.19175 43808.685 43808.685 765.60643 765.60643 Loop time of 87.9021 on 1 procs for 1000 steps with 4000 atoms Performance: 0.983 ns/day, 24.417 hours/ns, 11.376 timesteps/s 37.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 | 87.243 | 87.243 | 87.243 | 0.0 | 99.25 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.20851 | 0.20851 | 0.20851 | 0.0 | 0.24 Output | 3.3855e-05 | 3.3855e-05 | 3.3855e-05 | 0.0 | 0.00 Modify | 0.34664 | 0.34664 | 0.34664 | 0.0 | 0.39 Other | | 0.1035 | | | 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.3297e+06 ave 1.3297e+06 max 1.3297e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1329704 Ave neighs/atom = 332.426 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.696327273212, Press = 1.15380656054785 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 8.673 | 8.673 | 8.673 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 27000 -17283.61 -17283.61 -17412.42 -17412.42 249.19175 249.19175 43808.685 43808.685 765.60643 765.60643 28000 -17277.222 -17277.222 -17409.02 -17409.02 254.97171 254.97171 43874.68 43874.68 -1438.8453 -1438.8453 Loop time of 88.0865 on 1 procs for 1000 steps with 4000 atoms Performance: 0.981 ns/day, 24.468 hours/ns, 11.352 timesteps/s 36.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 | 87.446 | 87.446 | 87.446 | 0.0 | 99.27 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.092843 | 0.092843 | 0.092843 | 0.0 | 0.11 Output | 2.5988e-05 | 2.5988e-05 | 2.5988e-05 | 0.0 | 0.00 Modify | 0.4648 | 0.4648 | 0.4648 | 0.0 | 0.53 Other | | 0.0832 | | | 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.3302e+06 ave 1.3302e+06 max 1.3302e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1330202 Ave neighs/atom = 332.55 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.736161263894, Press = -0.666551273031923 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 8.673 | 8.673 | 8.673 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 28000 -17277.222 -17277.222 -17409.02 -17409.02 254.97171 254.97171 43874.68 43874.68 -1438.8453 -1438.8453 29000 -17282.841 -17282.841 -17412.094 -17412.094 250.0491 250.0491 43808.547 43808.547 908.07666 908.07666 Loop time of 87.3419 on 1 procs for 1000 steps with 4000 atoms Performance: 0.989 ns/day, 24.262 hours/ns, 11.449 timesteps/s 37.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 | 86.632 | 86.632 | 86.632 | 0.0 | 99.19 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.1682 | 0.1682 | 0.1682 | 0.0 | 0.19 Output | 3.4094e-05 | 3.4094e-05 | 3.4094e-05 | 0.0 | 0.00 Modify | 0.43996 | 0.43996 | 0.43996 | 0.0 | 0.50 Other | | 0.1019 | | | 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.32764e+06 ave 1.32764e+06 max 1.32764e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1327638 Ave neighs/atom = 331.909 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.814756068387, Press = -1.25003508325616 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 8.673 | 8.673 | 8.673 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 29000 -17282.841 -17282.841 -17412.094 -17412.094 250.0491 250.0491 43808.547 43808.547 908.07666 908.07666 30000 -17277.789 -17277.789 -17410.785 -17410.785 257.28996 257.28996 43834.219 43834.219 92.545553 92.545553 Loop time of 84.762 on 1 procs for 1000 steps with 4000 atoms Performance: 1.019 ns/day, 23.545 hours/ns, 11.798 timesteps/s 38.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 | 83.847 | 83.847 | 83.847 | 0.0 | 98.92 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.28599 | 0.28599 | 0.28599 | 0.0 | 0.34 Output | 3.1948e-05 | 3.1948e-05 | 3.1948e-05 | 0.0 | 0.00 Modify | 0.5662 | 0.5662 | 0.5662 | 0.0 | 0.67 Other | | 0.06332 | | | 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.33063e+06 ave 1.33063e+06 max 1.33063e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1330632 Ave neighs/atom = 332.658 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.862760956377, Press = 2.59489828531862 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 8.673 | 8.673 | 8.673 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 30000 -17277.789 -17277.789 -17410.785 -17410.785 257.28996 257.28996 43834.219 43834.219 92.545553 92.545553 31000 -17282.902 -17282.902 -17411.879 -17411.879 249.51373 249.51373 43892.324 43892.324 -2356.1474 -2356.1474 Loop time of 89.3432 on 1 procs for 1000 steps with 4000 atoms Performance: 0.967 ns/day, 24.818 hours/ns, 11.193 timesteps/s 36.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 | 88.687 | 88.687 | 88.687 | 0.0 | 99.27 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.14756 | 0.14756 | 0.14756 | 0.0 | 0.17 Output | 3.3855e-05 | 3.3855e-05 | 3.3855e-05 | 0.0 | 0.00 Modify | 0.42532 | 0.42532 | 0.42532 | 0.0 | 0.48 Other | | 0.08315 | | | 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.32912e+06 ave 1.32912e+06 max 1.32912e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1329122 Ave neighs/atom = 332.281 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.946370983741, Press = -2.24023271684235 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 8.673 | 8.673 | 8.673 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 31000 -17282.902 -17282.902 -17411.879 -17411.879 249.51373 249.51373 43892.324 43892.324 -2356.1474 -2356.1474 32000 -17278.818 -17278.818 -17411.349 -17411.349 256.38895 256.38895 43813.212 43813.212 766.86503 766.86503 Loop time of 82.9963 on 1 procs for 1000 steps with 4000 atoms Performance: 1.041 ns/day, 23.055 hours/ns, 12.049 timesteps/s 39.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 | 82.218 | 82.218 | 82.218 | 0.0 | 99.06 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.14776 | 0.14776 | 0.14776 | 0.0 | 0.18 Output | 3.4094e-05 | 3.4094e-05 | 3.4094e-05 | 0.0 | 0.00 Modify | 0.56535 | 0.56535 | 0.56535 | 0.0 | 0.68 Other | | 0.06497 | | | 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.32573e+06 ave 1.32573e+06 max 1.32573e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1325726 Ave neighs/atom = 331.432 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.95703528038, Press = -0.604991614179519 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 8.673 | 8.673 | 8.673 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 32000 -17278.818 -17278.818 -17411.349 -17411.349 256.38895 256.38895 43813.212 43813.212 766.86503 766.86503 33000 -17284.44 -17284.44 -17413.074 -17413.074 248.85122 248.85122 43821.89 43821.89 285.57239 285.57239 Loop time of 79.738 on 1 procs for 1000 steps with 4000 atoms Performance: 1.084 ns/day, 22.149 hours/ns, 12.541 timesteps/s 40.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 | 79.093 | 79.093 | 79.093 | 0.0 | 99.19 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.18789 | 0.18789 | 0.18789 | 0.0 | 0.24 Output | 3.4094e-05 | 3.4094e-05 | 3.4094e-05 | 0.0 | 0.00 Modify | 0.39396 | 0.39396 | 0.39396 | 0.0 | 0.49 Other | | 0.06319 | | | 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.33017e+06 ave 1.33017e+06 max 1.33017e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1330174 Ave neighs/atom = 332.543 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.933383727317, Press = 0.576748942163752 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 8.673 | 8.673 | 8.673 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 33000 -17284.44 -17284.44 -17413.074 -17413.074 248.85122 248.85122 43821.89 43821.89 285.57239 285.57239 34000 -17280.762 -17280.762 -17412.594 -17412.594 255.03807 255.03807 43847.565 43847.565 -547.93633 -547.93633 Loop time of 78.4386 on 1 procs for 1000 steps with 4000 atoms Performance: 1.101 ns/day, 21.789 hours/ns, 12.749 timesteps/s 41.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 | 77.691 | 77.691 | 77.691 | 0.0 | 99.05 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.2582 | 0.2582 | 0.2582 | 0.0 | 0.33 Output | 3.4094e-05 | 3.4094e-05 | 3.4094e-05 | 0.0 | 0.00 Modify | 0.44608 | 0.44608 | 0.44608 | 0.0 | 0.57 Other | | 0.04321 | | | 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.3295e+06 ave 1.3295e+06 max 1.3295e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1329504 Ave neighs/atom = 332.376 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.932439399167, Press = -1.17229752308697 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 8.673 | 8.673 | 8.673 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 34000 -17280.762 -17280.762 -17412.594 -17412.594 255.03807 255.03807 43847.565 43847.565 -547.93633 -547.93633 35000 -17286.314 -17286.314 -17414.507 -17414.507 247.99661 247.99661 43764.384 43764.384 2483.0664 2483.0664 Loop time of 78.7544 on 1 procs for 1000 steps with 4000 atoms Performance: 1.097 ns/day, 21.876 hours/ns, 12.698 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 | 78.12 | 78.12 | 78.12 | 0.0 | 99.19 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.15762 | 0.15762 | 0.15762 | 0.0 | 0.20 Output | 5.1022e-05 | 5.1022e-05 | 5.1022e-05 | 0.0 | 0.00 Modify | 0.38383 | 0.38383 | 0.38383 | 0.0 | 0.49 Other | | 0.09284 | | | 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.3288e+06 ave 1.3288e+06 max 1.3288e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1328800 Ave neighs/atom = 332.2 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.894540688593, Press = 0.626617398976725 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 8.673 | 8.673 | 8.673 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 35000 -17286.314 -17286.314 -17414.507 -17414.507 247.99661 247.99661 43764.384 43764.384 2483.0664 2483.0664 36000 -17280.545 -17280.545 -17412.151 -17412.151 254.60023 254.60023 43889.369 43889.369 -2205.2246 -2205.2246 Loop time of 92.4242 on 1 procs for 1000 steps with 4000 atoms Performance: 0.935 ns/day, 25.673 hours/ns, 10.820 timesteps/s 35.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 | 91.806 | 91.806 | 91.806 | 0.0 | 99.33 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.16796 | 0.16796 | 0.16796 | 0.0 | 0.18 Output | 2.6941e-05 | 2.6941e-05 | 2.6941e-05 | 0.0 | 0.00 Modify | 0.37702 | 0.37702 | 0.37702 | 0.0 | 0.41 Other | | 0.07323 | | | 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.33262e+06 ave 1.33262e+06 max 1.33262e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1332616 Ave neighs/atom = 333.154 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.870071229705, Press = 1.17132931212129 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 8.673 | 8.673 | 8.673 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 36000 -17280.545 -17280.545 -17412.151 -17412.151 254.60023 254.60023 43889.369 43889.369 -2205.2246 -2205.2246 37000 -17281.156 -17281.156 -17410.801 -17410.801 250.80687 250.80687 43841.241 43841.241 -362.76111 -362.76111 Loop time of 90.9948 on 1 procs for 1000 steps with 4000 atoms Performance: 0.950 ns/day, 25.276 hours/ns, 10.990 timesteps/s 36.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 | 90.071 | 90.071 | 90.071 | 0.0 | 98.98 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.17831 | 0.17831 | 0.17831 | 0.0 | 0.20 Output | 3.5048e-05 | 3.5048e-05 | 3.5048e-05 | 0.0 | 0.00 Modify | 0.68241 | 0.68241 | 0.68241 | 0.0 | 0.75 Other | | 0.06325 | | | 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.32635e+06 ave 1.32635e+06 max 1.32635e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1326354 Ave neighs/atom = 331.589 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.872743181805, Press = -1.11360453015961 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 8.673 | 8.673 | 8.673 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 37000 -17281.156 -17281.156 -17410.801 -17410.801 250.80687 250.80687 43841.241 43841.241 -362.76111 -362.76111 38000 -17285.165 -17285.165 -17414.397 -17414.397 250.00743 250.00743 43810.157 43810.157 628.31225 628.31225 Loop time of 88.4541 on 1 procs for 1000 steps with 4000 atoms Performance: 0.977 ns/day, 24.571 hours/ns, 11.305 timesteps/s 37.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 | 87.678 | 87.678 | 87.678 | 0.0 | 99.12 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.18474 | 0.18474 | 0.18474 | 0.0 | 0.21 Output | 5.1022e-05 | 5.1022e-05 | 5.1022e-05 | 0.0 | 0.00 Modify | 0.50723 | 0.50723 | 0.50723 | 0.0 | 0.57 Other | | 0.08359 | | | 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.32861e+06 ave 1.32861e+06 max 1.32861e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1328606 Ave neighs/atom = 332.151 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.874396973445, Press = 0.505715092608817 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 8.673 | 8.673 | 8.673 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 38000 -17285.165 -17285.165 -17414.397 -17414.397 250.00743 250.00743 43810.157 43810.157 628.31225 628.31225 39000 -17280.317 -17280.317 -17410.265 -17410.265 251.39377 251.39377 43853.311 43853.311 -684.24072 -684.24072 Loop time of 84.6987 on 1 procs for 1000 steps with 4000 atoms Performance: 1.020 ns/day, 23.527 hours/ns, 11.807 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 | 84.113 | 84.113 | 84.113 | 0.0 | 99.31 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.16776 | 0.16776 | 0.16776 | 0.0 | 0.20 Output | 3.2902e-05 | 3.2902e-05 | 3.2902e-05 | 0.0 | 0.00 Modify | 0.3748 | 0.3748 | 0.3748 | 0.0 | 0.44 Other | | 0.04336 | | | 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.32998e+06 ave 1.32998e+06 max 1.32998e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1329984 Ave neighs/atom = 332.496 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.841031516893, Press = -0.175641071221315 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 8.673 | 8.673 | 8.673 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 39000 -17280.317 -17280.317 -17410.265 -17410.265 251.39377 251.39377 43853.311 43853.311 -684.24072 -684.24072 40000 -17283.103 -17283.103 -17414.23 -17414.23 253.67462 253.67462 43822.164 43822.164 262.59784 262.59784 Loop time of 86.2677 on 1 procs for 1000 steps with 4000 atoms Performance: 1.002 ns/day, 23.963 hours/ns, 11.592 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 | 85.59 | 85.59 | 85.59 | 0.0 | 99.21 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.16834 | 0.16834 | 0.16834 | 0.0 | 0.20 Output | 3.4094e-05 | 3.4094e-05 | 3.4094e-05 | 0.0 | 0.00 Modify | 0.46622 | 0.46622 | 0.46622 | 0.0 | 0.54 Other | | 0.04341 | | | 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.32891e+06 ave 1.32891e+06 max 1.32891e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1328906 Ave neighs/atom = 332.226 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.859978447509, Press = -1.04824175152191 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 8.673 | 8.673 | 8.673 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 40000 -17283.103 -17283.103 -17414.23 -17414.23 253.67462 253.67462 43822.164 43822.164 262.59784 262.59784 41000 -17279.243 -17279.243 -17412.291 -17412.291 257.38925 257.38925 43795.134 43795.134 1477.2338 1477.2338 Loop time of 81.9797 on 1 procs for 1000 steps with 4000 atoms Performance: 1.054 ns/day, 22.772 hours/ns, 12.198 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 | 81.227 | 81.227 | 81.227 | 0.0 | 99.08 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.21826 | 0.21826 | 0.21826 | 0.0 | 0.27 Output | 6.6042e-05 | 6.6042e-05 | 6.6042e-05 | 0.0 | 0.00 Modify | 0.43128 | 0.43128 | 0.43128 | 0.0 | 0.53 Other | | 0.1035 | | | 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.32914e+06 ave 1.32914e+06 max 1.32914e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1329136 Ave neighs/atom = 332.284 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.907385513046, Press = 1.06033878053543 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 8.673 | 8.673 | 8.673 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 41000 -17279.243 -17279.243 -17412.291 -17412.291 257.38925 257.38925 43795.134 43795.134 1477.2338 1477.2338 42000 -17279.116 -17279.116 -17411.742 -17411.742 256.57352 256.57352 43891.85 43891.85 -2161.4487 -2161.4487 Loop time of 82.2814 on 1 procs for 1000 steps with 4000 atoms Performance: 1.050 ns/day, 22.856 hours/ns, 12.153 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 | 81.458 | 81.458 | 81.458 | 0.0 | 99.00 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.25782 | 0.25782 | 0.25782 | 0.0 | 0.31 Output | 3.4094e-05 | 3.4094e-05 | 3.4094e-05 | 0.0 | 0.00 Modify | 0.54281 | 0.54281 | 0.54281 | 0.0 | 0.66 Other | | 0.02295 | | | 0.03 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.3311e+06 ave 1.3311e+06 max 1.3311e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1331102 Ave neighs/atom = 332.776 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.927794410026, Press = 0.00754293394659912 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 8.673 | 8.673 | 8.673 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 42000 -17279.116 -17279.116 -17411.742 -17411.742 256.57352 256.57352 43891.85 43891.85 -2161.4487 -2161.4487 43000 -17282.422 -17282.422 -17414.584 -17414.584 255.67688 255.67688 43816.723 43816.723 601.6667 601.6667 Loop time of 81.9713 on 1 procs for 1000 steps with 4000 atoms Performance: 1.054 ns/day, 22.770 hours/ns, 12.199 timesteps/s 39.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 | 81.302 | 81.302 | 81.302 | 0.0 | 99.18 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.18806 | 0.18806 | 0.18806 | 0.0 | 0.23 Output | 2.6941e-05 | 2.6941e-05 | 2.6941e-05 | 0.0 | 0.00 Modify | 0.43779 | 0.43779 | 0.43779 | 0.0 | 0.53 Other | | 0.04317 | | | 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.32638e+06 ave 1.32638e+06 max 1.32638e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1326376 Ave neighs/atom = 331.594 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.930442721443, Press = -0.944428591699113 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 8.673 | 8.673 | 8.673 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 43000 -17282.422 -17282.422 -17414.584 -17414.584 255.67688 255.67688 43816.723 43816.723 601.6667 601.6667 44000 -17283.935 -17283.935 -17413.786 -17413.786 251.20457 251.20457 43825.431 43825.431 225.86817 225.86817 Loop time of 82.7126 on 1 procs for 1000 steps with 4000 atoms Performance: 1.045 ns/day, 22.976 hours/ns, 12.090 timesteps/s 39.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 | 82.164 | 82.164 | 82.164 | 0.0 | 99.34 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.14854 | 0.14854 | 0.14854 | 0.0 | 0.18 Output | 3.5048e-05 | 3.5048e-05 | 3.5048e-05 | 0.0 | 0.00 Modify | 0.35581 | 0.35581 | 0.35581 | 0.0 | 0.43 Other | | 0.04412 | | | 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.32994e+06 ave 1.32994e+06 max 1.32994e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1329936 Ave neighs/atom = 332.484 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.920855948495, Press = 0.443886062043602 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 8.673 | 8.673 | 8.673 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 44000 -17283.935 -17283.935 -17413.786 -17413.786 251.20457 251.20457 43825.431 43825.431 225.86817 225.86817 45000 -17279.376 -17279.376 -17411.93 -17411.93 256.43448 256.43448 43867.445 43867.445 -1233.0742 -1233.0742 Loop time of 81.8223 on 1 procs for 1000 steps with 4000 atoms Performance: 1.056 ns/day, 22.728 hours/ns, 12.222 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 | 81.136 | 81.136 | 81.136 | 0.0 | 99.16 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.11785 | 0.11785 | 0.11785 | 0.0 | 0.14 Output | 3.6001e-05 | 3.6001e-05 | 3.6001e-05 | 0.0 | 0.00 Modify | 0.50534 | 0.50534 | 0.50534 | 0.0 | 0.62 Other | | 0.06322 | | | 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.32944e+06 ave 1.32944e+06 max 1.32944e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1329438 Ave neighs/atom = 332.36 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.888721651663, Press = -0.37464677031991 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 8.673 | 8.673 | 8.673 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 45000 -17279.376 -17279.376 -17411.93 -17411.93 256.43448 256.43448 43867.445 43867.445 -1233.0742 -1233.0742 46000 -17281.511 -17281.511 -17412.819 -17412.819 254.02453 254.02453 43774.096 43774.096 2388.3609 2388.3609 Loop time of 77.2003 on 1 procs for 1000 steps with 4000 atoms Performance: 1.119 ns/day, 21.445 hours/ns, 12.953 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 | 76.541 | 76.541 | 76.541 | 0.0 | 99.15 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.21713 | 0.21713 | 0.21713 | 0.0 | 0.28 Output | 3.2902e-05 | 3.2902e-05 | 3.2902e-05 | 0.0 | 0.00 Modify | 0.36944 | 0.36944 | 0.36944 | 0.0 | 0.48 Other | | 0.07308 | | | 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.3275e+06 ave 1.3275e+06 max 1.3275e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1327500 Ave neighs/atom = 331.875 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.887442286043, Press = -1.08361352457588 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 8.673 | 8.673 | 8.673 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 46000 -17281.511 -17281.511 -17412.819 -17412.819 254.02453 254.02453 43774.096 43774.096 2388.3609 2388.3609 47000 -17276.416 -17276.416 -17407.492 -17407.492 253.57616 253.57616 43843.901 43843.901 -72.128513 -72.128513 Loop time of 84.1112 on 1 procs for 1000 steps with 4000 atoms Performance: 1.027 ns/day, 23.364 hours/ns, 11.889 timesteps/s 39.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 | 83.485 | 83.485 | 83.485 | 0.0 | 99.26 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.13776 | 0.13776 | 0.13776 | 0.0 | 0.16 Output | 2.5988e-05 | 2.5988e-05 | 2.5988e-05 | 0.0 | 0.00 Modify | 0.38493 | 0.38493 | 0.38493 | 0.0 | 0.46 Other | | 0.1035 | | | 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.33224e+06 ave 1.33224e+06 max 1.33224e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1332242 Ave neighs/atom = 333.06 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.920554714145, Press = 1.56366755657488 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 8.673 | 8.673 | 8.673 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 47000 -17276.416 -17276.416 -17407.492 -17407.492 253.57616 253.57616 43843.901 43843.901 -72.128513 -72.128513 48000 -17284.767 -17284.767 -17412.447 -17412.447 247.00582 247.00582 43863.483 43863.483 -1153.2191 -1153.2191 Loop time of 85.0836 on 1 procs for 1000 steps with 4000 atoms Performance: 1.015 ns/day, 23.634 hours/ns, 11.753 timesteps/s 38.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 | 84.377 | 84.377 | 84.377 | 0.0 | 99.17 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.15809 | 0.15809 | 0.15809 | 0.0 | 0.19 Output | 3.2902e-05 | 3.2902e-05 | 3.2902e-05 | 0.0 | 0.00 Modify | 0.52528 | 0.52528 | 0.52528 | 0.0 | 0.62 Other | | 0.02324 | | | 0.03 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.32969e+06 ave 1.32969e+06 max 1.32969e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1329686 Ave neighs/atom = 332.421 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.935736537396, Press = -0.588469974652909 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 8.673 | 8.673 | 8.673 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 48000 -17284.767 -17284.767 -17412.447 -17412.447 247.00582 247.00582 43863.483 43863.483 -1153.2191 -1153.2191 49000 -17282.915 -17282.915 -17412.616 -17412.616 250.91457 250.91457 43804.364 43804.364 1036.1629 1036.1629 Loop time of 82.3419 on 1 procs for 1000 steps with 4000 atoms Performance: 1.049 ns/day, 22.873 hours/ns, 12.144 timesteps/s 39.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 | 81.675 | 81.675 | 81.675 | 0.0 | 99.19 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.18804 | 0.18804 | 0.18804 | 0.0 | 0.23 Output | 3.2902e-05 | 3.2902e-05 | 3.2902e-05 | 0.0 | 0.00 Modify | 0.4356 | 0.4356 | 0.4356 | 0.0 | 0.53 Other | | 0.04332 | | | 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.32762e+06 ave 1.32762e+06 max 1.32762e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1327620 Ave neighs/atom = 331.905 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.9524621875, Press = -0.307354267679592 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 8.673 | 8.673 | 8.673 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 49000 -17282.915 -17282.915 -17412.616 -17412.616 250.91457 250.91457 43804.364 43804.364 1036.1629 1036.1629 50000 -17280.322 -17280.322 -17410.92 -17410.92 252.6506 252.6506 43819.661 43819.661 517.24806 517.24806 Loop time of 81.91 on 1 procs for 1000 steps with 4000 atoms Performance: 1.055 ns/day, 22.753 hours/ns, 12.209 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 | 81.163 | 81.163 | 81.163 | 0.0 | 99.09 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.16839 | 0.16839 | 0.16839 | 0.0 | 0.21 Output | 3.2902e-05 | 3.2902e-05 | 3.2902e-05 | 0.0 | 0.00 Modify | 0.41535 | 0.41535 | 0.41535 | 0.0 | 0.51 Other | | 0.1635 | | | 0.20 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.3307e+06 ave 1.3307e+06 max 1.3307e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1330702 Ave neighs/atom = 332.675 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.977254149475, Press = 0.39164250307158 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 8.673 | 8.673 | 8.673 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 50000 -17280.322 -17280.322 -17410.92 -17410.92 252.6506 252.6506 43819.661 43819.661 517.24806 517.24806 51000 -17279.791 -17279.791 -17412.342 -17412.342 256.42838 256.42838 43866.25 43866.25 -1313.3649 -1313.3649 Loop time of 81.9968 on 1 procs for 1000 steps with 4000 atoms Performance: 1.054 ns/day, 22.777 hours/ns, 12.196 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 | 81.249 | 81.249 | 81.249 | 0.0 | 99.09 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.18808 | 0.18808 | 0.18808 | 0.0 | 0.23 Output | 3.5048e-05 | 3.5048e-05 | 3.5048e-05 | 0.0 | 0.00 Modify | 0.51626 | 0.51626 | 0.51626 | 0.0 | 0.63 Other | | 0.04334 | | | 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.33005e+06 ave 1.33005e+06 max 1.33005e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1330046 Ave neighs/atom = 332.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 = 253.004473254877, Press = -0.469629460167349 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 8.673 | 8.673 | 8.673 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 51000 -17279.791 -17279.791 -17412.342 -17412.342 256.42838 256.42838 43866.25 43866.25 -1313.3649 -1313.3649 52000 -17282.922 -17282.922 -17410.68 -17410.68 247.15663 247.15663 43763.822 43763.822 2770.3303 2770.3303 Loop time of 82.4204 on 1 procs for 1000 steps with 4000 atoms Performance: 1.048 ns/day, 22.895 hours/ns, 12.133 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 | 81.852 | 81.852 | 81.852 | 0.0 | 99.31 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.14787 | 0.14787 | 0.14787 | 0.0 | 0.18 Output | 2.6941e-05 | 2.6941e-05 | 2.6941e-05 | 0.0 | 0.00 Modify | 0.3568 | 0.3568 | 0.3568 | 0.0 | 0.43 Other | | 0.06341 | | | 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.32762e+06 ave 1.32762e+06 max 1.32762e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1327616 Ave neighs/atom = 331.904 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${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_T253.15.out" else "print 'not_converged' file output/vol_T253.15.out" print '${V}' file output/vol_T253.15.out 43832.4023803337 print "LAMMPS calculation completed" LAMMPS calculation completed quit 0