# Variables that can be adjusted by kim-lammps-preprocessor to switch unit sets for # Simulator Models variable _u_distance equal 1.0 variable _u_energy equal 1.0 variable _u_mass equal 1.0 variable _u_time equal 1.0 variable _u_pressure equal 1.0 variable _u_temperature equal 1.0 # This line may be swapped out by kim-lammps-preprocessor if running against a Simulator # Model whose atom_style is not 'atomic' atom_style atomic # periodic boundary conditions along all three dimensions boundary p p p # Set neighbor skin variable neigh_skin equal 2.0*${_u_distance} variable neigh_skin equal 2.0*1 neighbor ${neigh_skin} bin neighbor 2 bin # create a supercell with cubic lattice (fcc, bcc, sc, or diamond) # using 10*10*10 conventional (orthogonal) unit cells variable latticeconst_converted equal 2.882650256156921*${_u_distance} variable latticeconst_converted equal 2.882650256156921*1 lattice bcc ${latticeconst_converted} lattice bcc 2.88265025615692 Lattice spacing in x,y,z = 2.88265 2.88265 2.88265 region simbox block 0 10 0 10 0 10 units lattice create_box 1 simbox Created orthogonal box = (0 0 0) to (28.8265 28.8265 28.8265) 1 by 1 by 1 MPI processor grid create_atoms 1 box Created 2000 atoms create_atoms CPU = 0.000312805 secs variable mass_converted equal 55.845*${_u_mass} variable mass_converted equal 55.845*1 # specify which KIM Model to use pair_style kim Morse_Shifted_GirifalcoWeizer_1959LowCutoff_Fe__MO_331285495617_002 WARNING: KIM Model does not provide `partialParticleVirial'; virial per atom will be zero (src/KIM/pair_kim.cpp:1089) pair_coeff * * Fe mass 1 ${mass_converted} mass 1 55.845 # initial volume variable v equal vol # assign formula variable V0 equal ${v} # evaluate initial value variable V0 equal 23953.8795587494 variable V0_metal equal ${V0}/(${_u_distance}*${_u_distance}*${_u_distance}) variable V0_metal equal 23953.8795587494/(${_u_distance}*${_u_distance}*${_u_distance}) variable V0_metal equal 23953.8795587494/(1*${_u_distance}*${_u_distance}) variable V0_metal equal 23953.8795587494/(1*1*${_u_distance}) variable V0_metal equal 23953.8795587494/(1*1*1) variable V0_metal_times1000 equal ${V0_metal}*1000 variable V0_metal_times1000 equal 23953.8795587494*1000 print "Initial system volume: ${V0_metal} Angstroms^3" Initial system volume: 23953.8795587494 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 313.15*${_u_temperature} variable temp_converted equal 313.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 313.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 313.15 ${temp_converted} ${Tdamp_converted} iso ${press_converted} ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 313.15 313.15 ${Tdamp_converted} iso ${press_converted} ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 313.15 313.15 0.1 iso ${press_converted} ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 313.15 313.15 0.1 iso 0 ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 313.15 313.15 0.1 iso 0 0 ${Pdamp_converted} fix ensemble all npt temp 313.15 313.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 "313.15 - 0.2" variable T_up equal "313.15 + 0.2" variable P_low equal "0.0 - 0.2" variable P_up equal "0.0 + 0.2" # print to logfile every 1000 timesteps thermo_style custom step etotal v_etotal_metal pe v_pe_metal temp v_T_metal vol v_V_metal press v_P_metal thermo 1000 # Run a simulation for at most 2000*1000 timesteps. At each 1000th time step, check # whether the temperature and pressure have converged. If yes, break. label top variable a loop 2000 run 1000 Neighbor list info ... update every 1 steps, delay 10 steps, check yes max neighbors/atom: 2000, page size: 100000 master list distance cutoff = 8.65905 ghost atom cutoff = 8.65905 binsize = 4.32953, bins = 7 7 7 1 neighbor lists, perpetual/occasional/extra = 1 0 0 (1) pair kim, perpetual attributes: full, newton off, cut 8.65905 pair build: full/bin/atomonly stencil: full/bin/3d bin: standard Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 0 -7679.04 -7679.04 -7759.9552 -7759.9552 313.15 313.15 23953.88 23953.88 3608.0341 3608.0341 1000 -7596.7585 -7596.7585 -7679.5726 -7679.5726 320.49909 320.49909 24157.25 24157.25 1320.6428 1320.6428 Loop time of 19.2477 on 1 procs for 1000 steps with 2000 atoms Performance: 4.489 ns/day, 5.347 hours/ns, 51.954 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 | 18.908 | 18.908 | 18.908 | 0.0 | 98.24 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.06332 | 0.06332 | 0.06332 | 0.0 | 0.33 Output | 3.1948e-05 | 3.1948e-05 | 3.1948e-05 | 0.0 | 0.00 Modify | 0.22239 | 0.22239 | 0.22239 | 0.0 | 1.16 Other | | 0.05353 | | | 0.28 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 7009 ave 7009 max 7009 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 516000 ave 516000 max 516000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 516000 Ave neighs/atom = 258 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${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) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 1000 -7596.7585 -7596.7585 -7679.5726 -7679.5726 320.49909 320.49909 24157.25 24157.25 1320.6428 1320.6428 2000 -7594.971 -7594.971 -7676.0081 -7676.0081 313.62218 313.62218 24182.578 24182.578 178.10865 178.10865 Loop time of 18.7107 on 1 procs for 1000 steps with 2000 atoms Performance: 4.618 ns/day, 5.197 hours/ns, 53.445 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 | 18.427 | 18.427 | 18.427 | 0.0 | 98.48 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.1177 | 0.1177 | 0.1177 | 0.0 | 0.63 Output | 3.6955e-05 | 3.6955e-05 | 3.6955e-05 | 0.0 | 0.00 Modify | 0.15298 | 0.15298 | 0.15298 | 0.0 | 0.82 Other | | 0.01296 | | | 0.07 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6089 ave 6089 max 6089 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 468138 ave 468138 max 468138 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 468138 Ave neighs/atom = 234.069 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 0, Press = 0 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 2000 -7594.971 -7594.971 -7676.0081 -7676.0081 313.62218 313.62218 24182.578 24182.578 178.10865 178.10865 3000 -7599.3075 -7599.3075 -7678.5633 -7678.5633 306.72833 306.72833 24198.755 24198.755 -1308.5657 -1308.5657 Loop time of 17.7489 on 1 procs for 1000 steps with 2000 atoms Performance: 4.868 ns/day, 4.930 hours/ns, 56.342 timesteps/s 44.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 | 17.456 | 17.456 | 17.456 | 0.0 | 98.35 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.077544 | 0.077544 | 0.077544 | 0.0 | 0.44 Output | 4.1008e-05 | 4.1008e-05 | 4.1008e-05 | 0.0 | 0.00 Modify | 0.1822 | 0.1822 | 0.1822 | 0.0 | 1.03 Other | | 0.03278 | | | 0.18 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6055 ave 6055 max 6055 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 465904 ave 465904 max 465904 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 465904 Ave neighs/atom = 232.952 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${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) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 3000 -7599.3075 -7599.3075 -7678.5633 -7678.5633 306.72833 306.72833 24198.755 24198.755 -1308.5657 -1308.5657 4000 -7593.9737 -7593.9737 -7675.2479 -7675.2479 314.53936 314.53936 24221.275 24221.275 -2036.5246 -2036.5246 Loop time of 18.0794 on 1 procs for 1000 steps with 2000 atoms Performance: 4.779 ns/day, 5.022 hours/ns, 55.311 timesteps/s 44.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 | 17.765 | 17.765 | 17.765 | 0.0 | 98.26 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.057667 | 0.057667 | 0.057667 | 0.0 | 0.32 Output | 3.7909e-05 | 3.7909e-05 | 3.7909e-05 | 0.0 | 0.00 Modify | 0.24339 | 0.24339 | 0.24339 | 0.0 | 1.35 Other | | 0.01303 | | | 0.07 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6076 ave 6076 max 6076 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 465254 ave 465254 max 465254 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 465254 Ave neighs/atom = 232.627 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${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) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 4000 -7593.9737 -7593.9737 -7675.2479 -7675.2479 314.53936 314.53936 24221.275 24221.275 -2036.5246 -2036.5246 5000 -7599.2958 -7599.2958 -7679.2514 -7679.2514 309.4362 309.4362 24201.307 24201.307 -1446.6918 -1446.6918 Loop time of 17.0486 on 1 procs for 1000 steps with 2000 atoms Performance: 5.068 ns/day, 4.736 hours/ns, 58.656 timesteps/s 46.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 | 16.724 | 16.724 | 16.724 | 0.0 | 98.10 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.098291 | 0.098291 | 0.098291 | 0.0 | 0.58 Output | 2.8849e-05 | 2.8849e-05 | 2.8849e-05 | 0.0 | 0.00 Modify | 0.21314 | 0.21314 | 0.21314 | 0.0 | 1.25 Other | | 0.01279 | | | 0.08 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6045 ave 6045 max 6045 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 462656 ave 462656 max 462656 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 462656 Ave neighs/atom = 231.328 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 310.801710161096, Press = 1635.37106979521 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 5000 -7599.2958 -7599.2958 -7679.2514 -7679.2514 309.4362 309.4362 24201.307 24201.307 -1446.6918 -1446.6918 6000 -7596.2615 -7596.2615 -7679.0622 -7679.0622 320.44758 320.44758 24160.429 24160.429 1406.6342 1406.6342 Loop time of 18.3101 on 1 procs for 1000 steps with 2000 atoms Performance: 4.719 ns/day, 5.086 hours/ns, 54.615 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 | 17.972 | 17.972 | 17.972 | 0.0 | 98.15 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.11762 | 0.11762 | 0.11762 | 0.0 | 0.64 Output | 2.8133e-05 | 2.8133e-05 | 2.8133e-05 | 0.0 | 0.00 Modify | 0.14685 | 0.14685 | 0.14685 | 0.0 | 0.80 Other | | 0.07386 | | | 0.40 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6080 ave 6080 max 6080 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 464500 ave 464500 max 464500 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 464500 Ave neighs/atom = 232.25 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 312.018384413857, Press = 145.598860375364 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 6000 -7596.2615 -7596.2615 -7679.0622 -7679.0622 320.44758 320.44758 24160.429 24160.429 1406.6342 1406.6342 7000 -7595.0278 -7595.0278 -7675.6179 -7675.6179 311.89195 311.89195 24163.277 24163.277 1588.1934 1588.1934 Loop time of 17.8667 on 1 procs for 1000 steps with 2000 atoms Performance: 4.836 ns/day, 4.963 hours/ns, 55.970 timesteps/s 44.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 | 17.487 | 17.487 | 17.487 | 0.0 | 97.88 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.15879 | 0.15879 | 0.15879 | 0.0 | 0.89 Output | 2.8849e-05 | 2.8849e-05 | 2.8849e-05 | 0.0 | 0.00 Modify | 0.20749 | 0.20749 | 0.20749 | 0.0 | 1.16 Other | | 0.01324 | | | 0.07 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6106 ave 6106 max 6106 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 467066 ave 467066 max 467066 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 467066 Ave neighs/atom = 233.533 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 311.274387272191, Press = 52.602983624816 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 7000 -7595.0278 -7595.0278 -7675.6179 -7675.6179 311.89195 311.89195 24163.277 24163.277 1588.1934 1588.1934 8000 -7597.7605 -7597.7605 -7679.4543 -7679.4543 316.16322 316.16322 24174.538 24174.538 287.56893 287.56893 Loop time of 16.7287 on 1 procs for 1000 steps with 2000 atoms Performance: 5.165 ns/day, 4.647 hours/ns, 59.778 timesteps/s 47.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 | 16.329 | 16.329 | 16.329 | 0.0 | 97.61 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.10879 | 0.10879 | 0.10879 | 0.0 | 0.65 Output | 2.6941e-05 | 2.6941e-05 | 2.6941e-05 | 0.0 | 0.00 Modify | 0.25727 | 0.25727 | 0.25727 | 0.0 | 1.54 Other | | 0.03321 | | | 0.20 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6047 ave 6047 max 6047 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 466890 ave 466890 max 466890 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 466890 Ave neighs/atom = 233.445 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 311.93354753861, Press = 27.0015950836933 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 8000 -7597.7605 -7597.7605 -7679.4543 -7679.4543 316.16322 316.16322 24174.538 24174.538 287.56893 287.56893 9000 -7595.7204 -7595.7204 -7678.0593 -7678.0593 318.65995 318.65995 24178.342 24178.342 281.65925 281.65925 Loop time of 17.6137 on 1 procs for 1000 steps with 2000 atoms Performance: 4.905 ns/day, 4.893 hours/ns, 56.774 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 | 17.285 | 17.285 | 17.285 | 0.0 | 98.14 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.098346 | 0.098346 | 0.098346 | 0.0 | 0.56 Output | 2.3127e-05 | 2.3127e-05 | 2.3127e-05 | 0.0 | 0.00 Modify | 0.15698 | 0.15698 | 0.15698 | 0.0 | 0.89 Other | | 0.07308 | | | 0.41 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6087 ave 6087 max 6087 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 466658 ave 466658 max 466658 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 466658 Ave neighs/atom = 233.329 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 312.384966637739, Press = 14.135593679741 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 9000 -7595.7204 -7595.7204 -7678.0593 -7678.0593 318.65995 318.65995 24178.342 24178.342 281.65925 281.65925 10000 -7593.8465 -7593.8465 -7675.4509 -7675.4509 315.81739 315.81739 24192.802 24192.802 -350.08755 -350.08755 Loop time of 17.7168 on 1 procs for 1000 steps with 2000 atoms Performance: 4.877 ns/day, 4.921 hours/ns, 56.444 timesteps/s 45.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 | 17.388 | 17.388 | 17.388 | 0.0 | 98.15 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.15851 | 0.15851 | 0.15851 | 0.0 | 0.89 Output | 2.8133e-05 | 2.8133e-05 | 2.8133e-05 | 0.0 | 0.00 Modify | 0.12729 | 0.12729 | 0.12729 | 0.0 | 0.72 Other | | 0.04277 | | | 0.24 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6076 ave 6076 max 6076 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 465820 ave 465820 max 465820 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 465820 Ave neighs/atom = 232.91 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 312.676072092091, Press = 14.8577685771872 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 10000 -7593.8465 -7593.8465 -7675.4509 -7675.4509 315.81739 315.81739 24192.802 24192.802 -350.08755 -350.08755 11000 -7595.6786 -7595.6786 -7675.9831 -7675.9831 310.78674 310.78674 24205.826 24205.826 -1240.5003 -1240.5003 Loop time of 18.2488 on 1 procs for 1000 steps with 2000 atoms Performance: 4.735 ns/day, 5.069 hours/ns, 54.798 timesteps/s 44.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 | 17.965 | 17.965 | 17.965 | 0.0 | 98.45 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.058902 | 0.058902 | 0.058902 | 0.0 | 0.32 Output | 2.9802e-05 | 2.9802e-05 | 2.9802e-05 | 0.0 | 0.00 Modify | 0.17118 | 0.17118 | 0.17118 | 0.0 | 0.94 Other | | 0.05354 | | | 0.29 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6105 ave 6105 max 6105 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 465448 ave 465448 max 465448 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 465448 Ave neighs/atom = 232.724 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.451913591532, Press = 12.088774680287 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 11000 -7595.6786 -7595.6786 -7675.9831 -7675.9831 310.78674 310.78674 24205.826 24205.826 -1240.5003 -1240.5003 12000 -7597.7214 -7597.7214 -7678.6155 -7678.6155 313.06867 313.06867 24210.403 24210.403 -2066.8875 -2066.8875 Loop time of 16.8456 on 1 procs for 1000 steps with 2000 atoms Performance: 5.129 ns/day, 4.679 hours/ns, 59.363 timesteps/s 47.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 | 16.556 | 16.556 | 16.556 | 0.0 | 98.28 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.088315 | 0.088315 | 0.088315 | 0.0 | 0.52 Output | 2.3127e-05 | 2.3127e-05 | 2.3127e-05 | 0.0 | 0.00 Modify | 0.18809 | 0.18809 | 0.18809 | 0.0 | 1.12 Other | | 0.01283 | | | 0.08 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6072 ave 6072 max 6072 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 464394 ave 464394 max 464394 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 464394 Ave neighs/atom = 232.197 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.352108469857, Press = 20.9654411446435 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 12000 -7597.7214 -7597.7214 -7678.6155 -7678.6155 313.06867 313.06867 24210.403 24210.403 -2066.8875 -2066.8875 13000 -7595.575 -7595.575 -7679.4341 -7679.4341 324.5431 324.5431 24172.316 24172.316 530.26766 530.26766 Loop time of 18.3784 on 1 procs for 1000 steps with 2000 atoms Performance: 4.701 ns/day, 5.105 hours/ns, 54.412 timesteps/s 43.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 | 18.085 | 18.085 | 18.085 | 0.0 | 98.40 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.057332 | 0.057332 | 0.057332 | 0.0 | 0.31 Output | 2.8849e-05 | 2.8849e-05 | 2.8849e-05 | 0.0 | 0.00 Modify | 0.18239 | 0.18239 | 0.18239 | 0.0 | 0.99 Other | | 0.05348 | | | 0.29 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6051 ave 6051 max 6051 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 464810 ave 464810 max 464810 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 464810 Ave neighs/atom = 232.405 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.132886248582, Press = 20.7077005208489 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 13000 -7595.575 -7595.575 -7679.4341 -7679.4341 324.5431 324.5431 24172.316 24172.316 530.26766 530.26766 14000 -7597.69 -7597.69 -7678.0607 -7678.0607 311.043 311.043 24155.268 24155.268 1772.3138 1772.3138 Loop time of 17.633 on 1 procs for 1000 steps with 2000 atoms Performance: 4.900 ns/day, 4.898 hours/ns, 56.712 timesteps/s 45.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 | 17.375 | 17.375 | 17.375 | 0.0 | 98.54 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.037879 | 0.037879 | 0.037879 | 0.0 | 0.21 Output | 3.0041e-05 | 3.0041e-05 | 3.0041e-05 | 0.0 | 0.00 Modify | 0.18689 | 0.18689 | 0.18689 | 0.0 | 1.06 Other | | 0.03289 | | | 0.19 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6043 ave 6043 max 6043 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 466470 ave 466470 max 466470 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 466470 Ave neighs/atom = 233.235 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.033409934853, Press = 11.8161888527076 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 14000 -7597.69 -7597.69 -7678.0607 -7678.0607 311.043 311.043 24155.268 24155.268 1772.3138 1772.3138 15000 -7597.4588 -7597.4588 -7677.0739 -7677.0739 308.11885 308.11885 24167.385 24167.385 1068.7089 1068.7089 Loop time of 17.9566 on 1 procs for 1000 steps with 2000 atoms Performance: 4.812 ns/day, 4.988 hours/ns, 55.690 timesteps/s 44.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 | 17.678 | 17.678 | 17.678 | 0.0 | 98.45 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.098254 | 0.098254 | 0.098254 | 0.0 | 0.55 Output | 2.2888e-05 | 2.2888e-05 | 2.2888e-05 | 0.0 | 0.00 Modify | 0.16696 | 0.16696 | 0.16696 | 0.0 | 0.93 Other | | 0.01333 | | | 0.07 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6103 ave 6103 max 6103 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 467230 ave 467230 max 467230 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 467230 Ave neighs/atom = 233.615 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.208198761425, Press = 7.65835443245173 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 15000 -7597.4588 -7597.4588 -7677.0739 -7677.0739 308.11885 308.11885 24167.385 24167.385 1068.7089 1068.7089 16000 -7594.0655 -7594.0655 -7674.0683 -7674.0683 309.6192 309.6192 24177.887 24177.887 950.10199 950.10199 Loop time of 17.4979 on 1 procs for 1000 steps with 2000 atoms Performance: 4.938 ns/day, 4.861 hours/ns, 57.150 timesteps/s 45.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 | 17.128 | 17.128 | 17.128 | 0.0 | 97.89 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.098707 | 0.098707 | 0.098707 | 0.0 | 0.56 Output | 3.1948e-05 | 3.1948e-05 | 3.1948e-05 | 0.0 | 0.00 Modify | 0.25797 | 0.25797 | 0.25797 | 0.0 | 1.47 Other | | 0.01302 | | | 0.07 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6093 ave 6093 max 6093 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 466218 ave 466218 max 466218 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 466218 Ave neighs/atom = 233.109 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.298501825401, Press = 6.06025217852962 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 16000 -7594.0655 -7594.0655 -7674.0683 -7674.0683 309.6192 309.6192 24177.887 24177.887 950.10199 950.10199 17000 -7598.4653 -7598.4653 -7677.8379 -7677.8379 307.18022 307.18022 24179.251 24179.251 185.13336 185.13336 Loop time of 18.7897 on 1 procs for 1000 steps with 2000 atoms Performance: 4.598 ns/day, 5.219 hours/ns, 53.221 timesteps/s 42.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 | 18.533 | 18.533 | 18.533 | 0.0 | 98.63 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.097903 | 0.097903 | 0.097903 | 0.0 | 0.52 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.12609 | 0.12609 | 0.12609 | 0.0 | 0.67 Other | | 0.03297 | | | 0.18 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6076 ave 6076 max 6076 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 465398 ave 465398 max 465398 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 465398 Ave neighs/atom = 232.699 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.338308472743, Press = 4.30935352544406 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 17000 -7598.4653 -7598.4653 -7677.8379 -7677.8379 307.18022 307.18022 24179.251 24179.251 185.13336 185.13336 18000 -7593.5052 -7593.5052 -7675.6073 -7675.6073 317.74361 317.74361 24237.916 24237.916 -3448.9918 -3448.9918 Loop time of 17.0147 on 1 procs for 1000 steps with 2000 atoms Performance: 5.078 ns/day, 4.726 hours/ns, 58.773 timesteps/s 46.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 | 16.799 | 16.799 | 16.799 | 0.0 | 98.73 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.036948 | 0.036948 | 0.036948 | 0.0 | 0.22 Output | 2.8849e-05 | 2.8849e-05 | 2.8849e-05 | 0.0 | 0.00 Modify | 0.16607 | 0.16607 | 0.16607 | 0.0 | 0.98 Other | | 0.01284 | | | 0.08 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6037 ave 6037 max 6037 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 465430 ave 465430 max 465430 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 465430 Ave neighs/atom = 232.715 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.553634241214, Press = 0.879757463266654 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 18000 -7593.5052 -7593.5052 -7675.6073 -7675.6073 317.74361 317.74361 24237.916 24237.916 -3448.9918 -3448.9918 19000 -7595.3096 -7595.3096 -7674.4032 -7674.4032 306.10014 306.10014 24218.812 24218.812 -2096.8418 -2096.8418 Loop time of 17.5118 on 1 procs for 1000 steps with 2000 atoms Performance: 4.934 ns/day, 4.864 hours/ns, 57.104 timesteps/s 45.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 | 17.254 | 17.254 | 17.254 | 0.0 | 98.53 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.037804 | 0.037804 | 0.037804 | 0.0 | 0.22 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.18694 | 0.18694 | 0.18694 | 0.0 | 1.07 Other | | 0.0333 | | | 0.19 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6025 ave 6025 max 6025 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 463342 ave 463342 max 463342 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 463342 Ave neighs/atom = 231.671 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.598937496741, Press = 7.7852812318775 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 19000 -7595.3096 -7595.3096 -7674.4032 -7674.4032 306.10014 306.10014 24218.812 24218.812 -2096.8418 -2096.8418 20000 -7598.143 -7598.143 -7678.3648 -7678.3648 310.46655 310.46655 24187.011 24187.011 -592.36144 -592.36144 Loop time of 18.2938 on 1 procs for 1000 steps with 2000 atoms Performance: 4.723 ns/day, 5.082 hours/ns, 54.663 timesteps/s 43.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 | 17.851 | 17.851 | 17.851 | 0.0 | 97.58 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.07834 | 0.07834 | 0.07834 | 0.0 | 0.43 Output | 2.2888e-05 | 2.2888e-05 | 2.2888e-05 | 0.0 | 0.00 Modify | 0.29154 | 0.29154 | 0.29154 | 0.0 | 1.59 Other | | 0.07306 | | | 0.40 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6035 ave 6035 max 6035 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 463702 ave 463702 max 463702 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 463702 Ave neighs/atom = 231.851 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.612584244843, Press = 7.43474871681159 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 20000 -7598.143 -7598.143 -7678.3648 -7678.3648 310.46655 310.46655 24187.011 24187.011 -592.36144 -592.36144 21000 -7594.8837 -7594.8837 -7678.2642 -7678.2642 322.69131 322.69131 24173.083 24173.083 844.41384 844.41384 Loop time of 17.6399 on 1 procs for 1000 steps with 2000 atoms Performance: 4.898 ns/day, 4.900 hours/ns, 56.690 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 | 17.398 | 17.398 | 17.398 | 0.0 | 98.63 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.080673 | 0.080673 | 0.080673 | 0.0 | 0.46 Output | 3.0041e-05 | 3.0041e-05 | 3.0041e-05 | 0.0 | 0.00 Modify | 0.1487 | 0.1487 | 0.1487 | 0.0 | 0.84 Other | | 0.0128 | | | 0.07 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6013 ave 6013 max 6013 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 466446 ave 466446 max 466446 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 466446 Ave neighs/atom = 233.223 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.412088759476, Press = 6.9568093653702 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 21000 -7594.8837 -7594.8837 -7678.2642 -7678.2642 322.69131 322.69131 24173.083 24173.083 844.41384 844.41384 22000 -7597.4371 -7597.4371 -7678.0919 -7678.0919 312.14247 312.14247 24168.369 24168.369 1070.9185 1070.9185 Loop time of 15.9675 on 1 procs for 1000 steps with 2000 atoms Performance: 5.411 ns/day, 4.435 hours/ns, 62.627 timesteps/s 49.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 | 15.748 | 15.748 | 15.748 | 0.0 | 98.63 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.058151 | 0.058151 | 0.058151 | 0.0 | 0.36 Output | 4.6968e-05 | 4.6968e-05 | 4.6968e-05 | 0.0 | 0.00 Modify | 0.14783 | 0.14783 | 0.14783 | 0.0 | 0.93 Other | | 0.01299 | | | 0.08 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6118 ave 6118 max 6118 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 465700 ave 465700 max 465700 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 465700 Ave neighs/atom = 232.85 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.45472287527, Press = 3.10766746951229 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 22000 -7597.4371 -7597.4371 -7678.0919 -7678.0919 312.14247 312.14247 24168.369 24168.369 1070.9185 1070.9185 23000 -7600.3888 -7600.3888 -7680.0315 -7680.0315 308.22523 308.22523 24200.39 24200.39 -1347.2721 -1347.2721 Loop time of 15.8661 on 1 procs for 1000 steps with 2000 atoms Performance: 5.446 ns/day, 4.407 hours/ns, 63.027 timesteps/s 49.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 | 15.599 | 15.599 | 15.599 | 0.0 | 98.32 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.037667 | 0.037667 | 0.037667 | 0.0 | 0.24 Output | 2.8133e-05 | 2.8133e-05 | 2.8133e-05 | 0.0 | 0.00 Modify | 0.1968 | 0.1968 | 0.1968 | 0.0 | 1.24 Other | | 0.03274 | | | 0.21 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6084 ave 6084 max 6084 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 465546 ave 465546 max 465546 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 465546 Ave neighs/atom = 232.773 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.473964768285, Press = -0.111018975683067 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 23000 -7600.3888 -7600.3888 -7680.0315 -7680.0315 308.22523 308.22523 24200.39 24200.39 -1347.2721 -1347.2721 24000 -7596.4201 -7596.4201 -7675.3736 -7675.3736 305.55804 305.55804 24251.842 24251.842 -4037.8997 -4037.8997 Loop time of 17.4874 on 1 procs for 1000 steps with 2000 atoms Performance: 4.941 ns/day, 4.858 hours/ns, 57.184 timesteps/s 45.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 | 17.114 | 17.114 | 17.114 | 0.0 | 97.86 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.098065 | 0.098065 | 0.098065 | 0.0 | 0.56 Output | 0.000139 | 0.000139 | 0.000139 | 0.0 | 0.00 Modify | 0.20233 | 0.20233 | 0.20233 | 0.0 | 1.16 Other | | 0.0729 | | | 0.42 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6027 ave 6027 max 6027 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 463706 ave 463706 max 463706 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 463706 Ave neighs/atom = 231.853 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.353273085176, Press = 2.25076100778837 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 24000 -7596.4201 -7596.4201 -7675.3736 -7675.3736 305.55804 305.55804 24251.842 24251.842 -4037.8997 -4037.8997 25000 -7598.9093 -7598.9093 -7679.4504 -7679.4504 311.70228 311.70228 24201.141 24201.141 -1472.74 -1472.74 Loop time of 17.883 on 1 procs for 1000 steps with 2000 atoms Performance: 4.831 ns/day, 4.968 hours/ns, 55.919 timesteps/s 45.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 | 17.664 | 17.664 | 17.664 | 0.0 | 98.77 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.058962 | 0.058962 | 0.058962 | 0.0 | 0.33 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.14724 | 0.14724 | 0.14724 | 0.0 | 0.82 Other | | 0.01308 | | | 0.07 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6031 ave 6031 max 6031 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 460842 ave 460842 max 460842 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 460842 Ave neighs/atom = 230.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 = 313.3794829928, Press = 5.60906631048273 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 25000 -7598.9093 -7598.9093 -7679.4504 -7679.4504 311.70228 311.70228 24201.141 24201.141 -1472.74 -1472.74 26000 -7597.3815 -7597.3815 -7678.5631 -7678.5631 314.18094 314.18094 24182.635 24182.635 -112.46948 -112.46948 Loop time of 17.0907 on 1 procs for 1000 steps with 2000 atoms Performance: 5.055 ns/day, 4.747 hours/ns, 58.511 timesteps/s 48.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 | 16.799 | 16.799 | 16.799 | 0.0 | 98.29 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.099582 | 0.099582 | 0.099582 | 0.0 | 0.58 Output | 2.9802e-05 | 2.9802e-05 | 2.9802e-05 | 0.0 | 0.00 Modify | 0.15149 | 0.15149 | 0.15149 | 0.0 | 0.89 Other | | 0.04049 | | | 0.24 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6107 ave 6107 max 6107 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 464846 ave 464846 max 464846 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 464846 Ave neighs/atom = 232.423 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.183973017203, Press = 5.68672071659555 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 26000 -7597.3815 -7597.3815 -7678.5631 -7678.5631 314.18094 314.18094 24182.635 24182.635 -112.46948 -112.46948 27000 -7598.5737 -7598.5737 -7678.9762 -7678.9762 311.16589 311.16589 24165.111 24165.111 1093.8725 1093.8725 Loop time of 18.1461 on 1 procs for 1000 steps with 2000 atoms Performance: 4.761 ns/day, 5.041 hours/ns, 55.108 timesteps/s 45.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 | 17.902 | 17.902 | 17.902 | 0.0 | 98.65 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.079492 | 0.079492 | 0.079492 | 0.0 | 0.44 Output | 2.3127e-05 | 2.3127e-05 | 2.3127e-05 | 0.0 | 0.00 Modify | 0.13107 | 0.13107 | 0.13107 | 0.0 | 0.72 Other | | 0.03364 | | | 0.19 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6048 ave 6048 max 6048 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 465710 ave 465710 max 465710 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 465710 Ave neighs/atom = 232.855 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.174657707476, Press = 5.60809749157949 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 27000 -7598.5737 -7598.5737 -7678.9762 -7678.9762 311.16589 311.16589 24165.111 24165.111 1093.8725 1093.8725 28000 -7593.4581 -7593.4581 -7676.869 -7676.869 322.80858 322.80858 24150.53 24150.53 2444.8014 2444.8014 Loop time of 17.0566 on 1 procs for 1000 steps with 2000 atoms Performance: 5.065 ns/day, 4.738 hours/ns, 58.628 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 | 16.818 | 16.818 | 16.818 | 0.0 | 98.60 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.078736 | 0.078736 | 0.078736 | 0.0 | 0.46 Output | 2.2888e-05 | 2.2888e-05 | 2.2888e-05 | 0.0 | 0.00 Modify | 0.147 | 0.147 | 0.147 | 0.0 | 0.86 Other | | 0.01308 | | | 0.08 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6070 ave 6070 max 6070 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 466280 ave 466280 max 466280 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 466280 Ave neighs/atom = 233.14 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.144453905266, Press = 4.17995884470931 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 28000 -7593.4581 -7593.4581 -7676.869 -7676.869 322.80858 322.80858 24150.53 24150.53 2444.8014 2444.8014 29000 -7597.6001 -7597.6001 -7676.8327 -7676.8327 306.63839 306.63839 24151.417 24151.417 2150.2572 2150.2572 Loop time of 16.887 on 1 procs for 1000 steps with 2000 atoms Performance: 5.116 ns/day, 4.691 hours/ns, 59.217 timesteps/s 47.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.607 | 16.607 | 16.607 | 0.0 | 98.34 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.098625 | 0.098625 | 0.098625 | 0.0 | 0.58 Output | 2.3127e-05 | 2.3127e-05 | 2.3127e-05 | 0.0 | 0.00 Modify | 0.16778 | 0.16778 | 0.16778 | 0.0 | 0.99 Other | | 0.01354 | | | 0.08 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6075 ave 6075 max 6075 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 467046 ave 467046 max 467046 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 467046 Ave neighs/atom = 233.523 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.306069795727, Press = 1.39136153442406 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 29000 -7597.6001 -7597.6001 -7676.8327 -7676.8327 306.63839 306.63839 24151.417 24151.417 2150.2572 2150.2572 30000 -7596.3913 -7596.3913 -7678.2823 -7678.2823 316.92645 316.92645 24199.398 24199.398 -1039.4133 -1039.4133 Loop time of 16.171 on 1 procs for 1000 steps with 2000 atoms Performance: 5.343 ns/day, 4.492 hours/ns, 61.839 timesteps/s 49.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 | 15.881 | 15.881 | 15.881 | 0.0 | 98.20 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.058474 | 0.058474 | 0.058474 | 0.0 | 0.36 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.19862 | 0.19862 | 0.19862 | 0.0 | 1.23 Other | | 0.03339 | | | 0.21 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6115 ave 6115 max 6115 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 467026 ave 467026 max 467026 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 467026 Ave neighs/atom = 233.513 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.272471348248, Press = -3.38667007361319 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 30000 -7596.3913 -7596.3913 -7678.2823 -7678.2823 316.92645 316.92645 24199.398 24199.398 -1039.4133 -1039.4133 31000 -7600.7486 -7600.7486 -7681.5499 -7681.5499 312.70945 312.70945 24199.554 24199.554 -1741.2771 -1741.2771 Loop time of 15.9721 on 1 procs for 1000 steps with 2000 atoms Performance: 5.409 ns/day, 4.437 hours/ns, 62.609 timesteps/s 50.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 | 15.734 | 15.734 | 15.734 | 0.0 | 98.51 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.057911 | 0.057911 | 0.057911 | 0.0 | 0.36 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.14728 | 0.14728 | 0.14728 | 0.0 | 0.92 Other | | 0.03316 | | | 0.21 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6045 ave 6045 max 6045 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 464160 ave 464160 max 464160 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 464160 Ave neighs/atom = 232.08 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.1516899117, Press = 2.41102639727932 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 31000 -7600.7486 -7600.7486 -7681.5499 -7681.5499 312.70945 312.70945 24199.554 24199.554 -1741.2771 -1741.2771 32000 -7596.2389 -7596.2389 -7677.4482 -7677.4482 314.28822 314.28822 24205.491 24205.491 -1558.6323 -1558.6323 Loop time of 16.5577 on 1 procs for 1000 steps with 2000 atoms Performance: 5.218 ns/day, 4.599 hours/ns, 60.395 timesteps/s 49.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 | 16.163 | 16.163 | 16.163 | 0.0 | 97.62 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.12925 | 0.12925 | 0.12925 | 0.0 | 0.78 Output | 3.5048e-05 | 3.5048e-05 | 3.5048e-05 | 0.0 | 0.00 Modify | 0.2117 | 0.2117 | 0.2117 | 0.0 | 1.28 Other | | 0.05382 | | | 0.33 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6060 ave 6060 max 6060 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 465288 ave 465288 max 465288 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 465288 Ave neighs/atom = 232.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 = 313.130945262035, Press = 3.45580944291424 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 32000 -7596.2389 -7596.2389 -7677.4482 -7677.4482 314.28822 314.28822 24205.491 24205.491 -1558.6323 -1558.6323 33000 -7599.1148 -7599.1148 -7679.0948 -7679.0948 309.53079 309.53079 24186.082 24186.082 -421.41785 -421.41785 Loop time of 16.6559 on 1 procs for 1000 steps with 2000 atoms Performance: 5.187 ns/day, 4.627 hours/ns, 60.039 timesteps/s 49.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 | 16.343 | 16.343 | 16.343 | 0.0 | 98.12 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.06077 | 0.06077 | 0.06077 | 0.0 | 0.36 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.23894 | 0.23894 | 0.23894 | 0.0 | 1.43 Other | | 0.01352 | | | 0.08 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6020 ave 6020 max 6020 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 465090 ave 465090 max 465090 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 465090 Ave neighs/atom = 232.545 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.027619679176, Press = 4.87675175015521 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 33000 -7599.1148 -7599.1148 -7679.0948 -7679.0948 309.53079 309.53079 24186.082 24186.082 -421.41785 -421.41785 34000 -7598.0229 -7598.0229 -7678.6213 -7678.6213 311.92411 311.92411 24147.712 24147.712 2259.6606 2259.6606 Loop time of 16.4273 on 1 procs for 1000 steps with 2000 atoms Performance: 5.260 ns/day, 4.563 hours/ns, 60.874 timesteps/s 50.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 | 16.225 | 16.225 | 16.225 | 0.0 | 98.77 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.059045 | 0.059045 | 0.059045 | 0.0 | 0.36 Output | 2.6941e-05 | 2.6941e-05 | 2.6941e-05 | 0.0 | 0.00 Modify | 0.12982 | 0.12982 | 0.12982 | 0.0 | 0.79 Other | | 0.01343 | | | 0.08 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6072 ave 6072 max 6072 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 465234 ave 465234 max 465234 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 465234 Ave neighs/atom = 232.617 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.001357191415, Press = 5.544630573081 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 34000 -7598.0229 -7598.0229 -7678.6213 -7678.6213 311.92411 311.92411 24147.712 24147.712 2259.6606 2259.6606 35000 -7597.5718 -7597.5718 -7676.4112 -7676.4112 305.11648 305.11648 24119.051 24119.051 4339.2474 4339.2474 Loop time of 16.5466 on 1 procs for 1000 steps with 2000 atoms Performance: 5.222 ns/day, 4.596 hours/ns, 60.435 timesteps/s 49.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 | 16.262 | 16.262 | 16.262 | 0.0 | 98.28 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.079538 | 0.079538 | 0.079538 | 0.0 | 0.48 Output | 2.8133e-05 | 2.8133e-05 | 2.8133e-05 | 0.0 | 0.00 Modify | 0.19158 | 0.19158 | 0.19158 | 0.0 | 1.16 Other | | 0.01347 | | | 0.08 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6109 ave 6109 max 6109 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 467148 ave 467148 max 467148 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 467148 Ave neighs/atom = 233.574 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 312.910409971906, Press = 3.89505407190926 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 35000 -7597.5718 -7597.5718 -7676.4112 -7676.4112 305.11648 305.11648 24119.051 24119.051 4339.2474 4339.2474 36000 -7597.0608 -7597.0608 -7675.494 -7675.494 303.54446 303.54446 24162.229 24162.229 1581.217 1581.217 Loop time of 16.4465 on 1 procs for 1000 steps with 2000 atoms Performance: 5.253 ns/day, 4.568 hours/ns, 60.803 timesteps/s 50.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 | 16.224 | 16.224 | 16.224 | 0.0 | 98.65 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.05949 | 0.05949 | 0.05949 | 0.0 | 0.36 Output | 2.8849e-05 | 2.8849e-05 | 2.8849e-05 | 0.0 | 0.00 Modify | 0.13016 | 0.13016 | 0.13016 | 0.0 | 0.79 Other | | 0.03311 | | | 0.20 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6124 ave 6124 max 6124 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 469018 ave 469018 max 469018 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 469018 Ave neighs/atom = 234.509 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 312.877692793773, Press = 2.15718581763207 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 36000 -7597.0608 -7597.0608 -7675.494 -7675.494 303.54446 303.54446 24162.229 24162.229 1581.217 1581.217 37000 -7594.7742 -7594.7742 -7676.1718 -7676.1718 315.01701 315.01701 24180.617 24180.617 303.33984 303.33984 Loop time of 15.7059 on 1 procs for 1000 steps with 2000 atoms Performance: 5.501 ns/day, 4.363 hours/ns, 63.670 timesteps/s 51.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 | 15.398 | 15.398 | 15.398 | 0.0 | 98.04 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.058475 | 0.058475 | 0.058475 | 0.0 | 0.37 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.23606 | 0.23606 | 0.23606 | 0.0 | 1.50 Other | | 0.01311 | | | 0.08 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6079 ave 6079 max 6079 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 467036 ave 467036 max 467036 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 467036 Ave neighs/atom = 233.518 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 312.87381281725, Press = 1.97510428370606 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 37000 -7594.7742 -7594.7742 -7676.1718 -7676.1718 315.01701 315.01701 24180.617 24180.617 303.33984 303.33984 38000 -7597.4154 -7597.4154 -7677.8263 -7677.8263 311.19851 311.19851 24209.634 24209.634 -1963.2713 -1963.2713 Loop time of 15.6656 on 1 procs for 1000 steps with 2000 atoms Performance: 5.515 ns/day, 4.352 hours/ns, 63.834 timesteps/s 51.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 | 15.465 | 15.465 | 15.465 | 0.0 | 98.72 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.098813 | 0.098813 | 0.098813 | 0.0 | 0.63 Output | 3.6955e-05 | 3.6955e-05 | 3.6955e-05 | 0.0 | 0.00 Modify | 0.088843 | 0.088843 | 0.088843 | 0.0 | 0.57 Other | | 0.01306 | | | 0.08 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6068 ave 6068 max 6068 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 466336 ave 466336 max 466336 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 466336 Ave neighs/atom = 233.168 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 312.900948517269, Press = 2.00707174779962 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 38000 -7597.4154 -7597.4154 -7677.8263 -7677.8263 311.19851 311.19851 24209.634 24209.634 -1963.2713 -1963.2713 39000 -7594.1974 -7594.1974 -7675.3946 -7675.3946 314.2415 314.2415 24217.485 24217.485 -1894.547 -1894.547 Loop time of 14.5483 on 1 procs for 1000 steps with 2000 atoms Performance: 5.939 ns/day, 4.041 hours/ns, 68.737 timesteps/s 54.4% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 14.27 | 14.27 | 14.27 | 0.0 | 98.09 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.058182 | 0.058182 | 0.058182 | 0.0 | 0.40 Output | 4.9114e-05 | 4.9114e-05 | 4.9114e-05 | 0.0 | 0.00 Modify | 0.18699 | 0.18699 | 0.18699 | 0.0 | 1.29 Other | | 0.03297 | | | 0.23 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6063 ave 6063 max 6063 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 464656 ave 464656 max 464656 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 464656 Ave neighs/atom = 232.328 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 312.953030510233, Press = 3.21423697241502 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 39000 -7594.1974 -7594.1974 -7675.3946 -7675.3946 314.2415 314.2415 24217.485 24217.485 -1894.547 -1894.547 40000 -7597.3882 -7597.3882 -7677.6538 -7677.6538 310.63644 310.63644 24196.295 24196.295 -856.54533 -856.54533 Loop time of 15.4583 on 1 procs for 1000 steps with 2000 atoms Performance: 5.589 ns/day, 4.294 hours/ns, 64.690 timesteps/s 51.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 | 15.18 | 15.18 | 15.18 | 0.0 | 98.20 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.078249 | 0.078249 | 0.078249 | 0.0 | 0.51 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.16712 | 0.16712 | 0.16712 | 0.0 | 1.08 Other | | 0.03302 | | | 0.21 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6058 ave 6058 max 6058 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 463180 ave 463180 max 463180 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 463180 Ave neighs/atom = 231.59 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.002109024484, Press = 6.01962247294076 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 40000 -7597.3882 -7597.3882 -7677.6538 -7677.6538 310.63644 310.63644 24196.295 24196.295 -856.54533 -856.54533 41000 -7596.8006 -7596.8006 -7676.3055 -7676.3055 307.69216 307.69216 24155.926 24155.926 1913.9008 1913.9008 Loop time of 11.6083 on 1 procs for 1000 steps with 2000 atoms Performance: 7.443 ns/day, 3.225 hours/ns, 86.145 timesteps/s 68.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.39 | 11.39 | 11.39 | 0.0 | 98.12 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.058032 | 0.058032 | 0.058032 | 0.0 | 0.50 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.14702 | 0.14702 | 0.14702 | 0.0 | 1.27 Other | | 0.01285 | | | 0.11 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6097 ave 6097 max 6097 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 464772 ave 464772 max 464772 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 464772 Ave neighs/atom = 232.386 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.009821639327, Press = 4.34211300227888 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 41000 -7596.8006 -7596.8006 -7676.3055 -7676.3055 307.69216 307.69216 24155.926 24155.926 1913.9008 1913.9008 42000 -7597.7129 -7597.7129 -7677.7961 -7677.7961 309.9304 309.9304 24168.095 24168.095 1031.2589 1031.2589 Loop time of 13.4229 on 1 procs for 1000 steps with 2000 atoms Performance: 6.437 ns/day, 3.729 hours/ns, 74.500 timesteps/s 59.5% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 13.023 | 13.023 | 13.023 | 0.0 | 97.02 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.1181 | 0.1181 | 0.1181 | 0.0 | 0.88 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.22906 | 0.22906 | 0.22906 | 0.0 | 1.71 Other | | 0.0531 | | | 0.40 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6135 ave 6135 max 6135 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 467152 ave 467152 max 467152 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 467152 Ave neighs/atom = 233.576 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.034775313047, Press = 2.52583403350649 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 42000 -7597.7129 -7597.7129 -7677.7961 -7677.7961 309.9304 309.9304 24168.095 24168.095 1031.2589 1031.2589 43000 -7592.6836 -7592.6836 -7675.5429 -7675.5429 320.67437 320.67437 24184.096 24184.096 330.19469 330.19469 Loop time of 14.895 on 1 procs for 1000 steps with 2000 atoms Performance: 5.801 ns/day, 4.137 hours/ns, 67.137 timesteps/s 53.3% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 14.657 | 14.657 | 14.657 | 0.0 | 98.40 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.037859 | 0.037859 | 0.037859 | 0.0 | 0.25 Output | 2.6941e-05 | 2.6941e-05 | 2.6941e-05 | 0.0 | 0.00 Modify | 0.18699 | 0.18699 | 0.18699 | 0.0 | 1.26 Other | | 0.01287 | | | 0.09 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6079 ave 6079 max 6079 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 466244 ave 466244 max 466244 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 466244 Ave neighs/atom = 233.122 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.096027829577, Press = 2.31459966907561 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 43000 -7592.6836 -7592.6836 -7675.5429 -7675.5429 320.67437 320.67437 24184.096 24184.096 330.19469 330.19469 44000 -7597.1672 -7597.1672 -7677.2407 -7677.2407 309.89269 309.89269 24185.587 24185.587 -233.93113 -233.93113 Loop time of 12.1157 on 1 procs for 1000 steps with 2000 atoms Performance: 7.131 ns/day, 3.365 hours/ns, 82.537 timesteps/s 65.9% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 11.937 | 11.937 | 11.937 | 0.0 | 98.52 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.05831 | 0.05831 | 0.05831 | 0.0 | 0.48 Output | 2.2888e-05 | 2.2888e-05 | 2.2888e-05 | 0.0 | 0.00 Modify | 0.10742 | 0.10742 | 0.10742 | 0.0 | 0.89 Other | | 0.0132 | | | 0.11 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6077 ave 6077 max 6077 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 465508 ave 465508 max 465508 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 465508 Ave neighs/atom = 232.754 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.107532774772, Press = 2.29142674567639 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 44000 -7597.1672 -7597.1672 -7677.2407 -7677.2407 309.89269 309.89269 24185.587 24185.587 -233.93113 -233.93113 45000 -7595.6658 -7595.6658 -7678.1503 -7678.1503 319.22338 319.22338 24191.048 24191.048 -569.05282 -569.05282 Loop time of 12.9281 on 1 procs for 1000 steps with 2000 atoms Performance: 6.683 ns/day, 3.591 hours/ns, 77.351 timesteps/s 62.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 | 12.688 | 12.688 | 12.688 | 0.0 | 98.15 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.078475 | 0.078475 | 0.078475 | 0.0 | 0.61 Output | 6.6996e-05 | 6.6996e-05 | 6.6996e-05 | 0.0 | 0.00 Modify | 0.14789 | 0.14789 | 0.14789 | 0.0 | 1.14 Other | | 0.0133 | | | 0.10 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6089 ave 6089 max 6089 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 465688 ave 465688 max 465688 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 465688 Ave neighs/atom = 232.844 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.06541416578, Press = 2.31759338473567 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 45000 -7595.6658 -7595.6658 -7678.1503 -7678.1503 319.22338 319.22338 24191.048 24191.048 -569.05282 -569.05282 46000 -7593.6941 -7593.6941 -7676.1283 -7676.1283 319.02881 319.02881 24204.584 24204.584 -1165.8763 -1165.8763 Loop time of 14.8451 on 1 procs for 1000 steps with 2000 atoms Performance: 5.820 ns/day, 4.124 hours/ns, 67.362 timesteps/s 54.0% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 14.606 | 14.606 | 14.606 | 0.0 | 98.39 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.11853 | 0.11853 | 0.11853 | 0.0 | 0.80 Output | 2.1935e-05 | 2.1935e-05 | 2.1935e-05 | 0.0 | 0.00 Modify | 0.087428 | 0.087428 | 0.087428 | 0.0 | 0.59 Other | | 0.03312 | | | 0.22 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6047 ave 6047 max 6047 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 465110 ave 465110 max 465110 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 465110 Ave neighs/atom = 232.555 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.025142851556, Press = 2.40310925115863 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 46000 -7593.6941 -7593.6941 -7676.1283 -7676.1283 319.02881 319.02881 24204.584 24204.584 -1165.8763 -1165.8763 47000 -7599.236 -7599.236 -7678.2463 -7678.2463 305.77801 305.77801 24198.527 24198.527 -1131.7486 -1131.7486 Loop time of 13.7826 on 1 procs for 1000 steps with 2000 atoms Performance: 6.269 ns/day, 3.828 hours/ns, 72.555 timesteps/s 57.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 | 13.524 | 13.524 | 13.524 | 0.0 | 98.12 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.057344 | 0.057344 | 0.057344 | 0.0 | 0.42 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.16848 | 0.16848 | 0.16848 | 0.0 | 1.22 Other | | 0.03296 | | | 0.24 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6020 ave 6020 max 6020 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 464722 ave 464722 max 464722 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 464722 Ave neighs/atom = 232.361 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.037177464177, Press = 3.04692579818625 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 47000 -7599.236 -7599.236 -7678.2463 -7678.2463 305.77801 305.77801 24198.527 24198.527 -1131.7486 -1131.7486 48000 -7592.6336 -7592.6336 -7675.2139 -7675.2139 319.59432 319.59432 24180.703 24180.703 554.38895 554.38895 Loop time of 13.34 on 1 procs for 1000 steps with 2000 atoms Performance: 6.477 ns/day, 3.706 hours/ns, 74.963 timesteps/s 59.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 | 13.122 | 13.122 | 13.122 | 0.0 | 98.36 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.078179 | 0.078179 | 0.078179 | 0.0 | 0.59 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.10706 | 0.10706 | 0.10706 | 0.0 | 0.80 Other | | 0.03298 | | | 0.25 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6063 ave 6063 max 6063 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 464116 ave 464116 max 464116 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 464116 Ave neighs/atom = 232.058 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.042106655949, Press = 3.93263498939349 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 48000 -7592.6336 -7592.6336 -7675.2139 -7675.2139 319.59432 319.59432 24180.703 24180.703 554.38895 554.38895 49000 -7598.367 -7598.367 -7677.4533 -7677.4533 306.07221 306.07221 24134.385 24134.385 3254.3804 3254.3804 Loop time of 14.3564 on 1 procs for 1000 steps with 2000 atoms Performance: 6.018 ns/day, 3.988 hours/ns, 69.655 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 | 14.091 | 14.091 | 14.091 | 0.0 | 98.15 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.057674 | 0.057674 | 0.057674 | 0.0 | 0.40 Output | 3.314e-05 | 3.314e-05 | 3.314e-05 | 0.0 | 0.00 Modify | 0.17443 | 0.17443 | 0.17443 | 0.0 | 1.22 Other | | 0.03314 | | | 0.23 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6032 ave 6032 max 6032 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 466136 ave 466136 max 466136 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 466136 Ave neighs/atom = 233.068 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.111078169437, Press = 3.68776031372482 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 49000 -7598.367 -7598.367 -7677.4533 -7677.4533 306.07221 306.07221 24134.385 24134.385 3254.3804 3254.3804 50000 -7598.3144 -7598.3144 -7679.0581 -7679.0581 312.48674 312.48674 24162.558 24162.558 1121.7277 1121.7277 Loop time of 12.547 on 1 procs for 1000 steps with 2000 atoms Performance: 6.886 ns/day, 3.485 hours/ns, 79.700 timesteps/s 63.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 | 12.323 | 12.323 | 12.323 | 0.0 | 98.22 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.082903 | 0.082903 | 0.082903 | 0.0 | 0.66 Output | 2.8133e-05 | 2.8133e-05 | 2.8133e-05 | 0.0 | 0.00 Modify | 0.12776 | 0.12776 | 0.12776 | 0.0 | 1.02 Other | | 0.01293 | | | 0.10 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6081 ave 6081 max 6081 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 467708 ave 467708 max 467708 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 467708 Ave neighs/atom = 233.854 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.114085287826, Press = 1.78487848181405 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 50000 -7598.3144 -7598.3144 -7679.0581 -7679.0581 312.48674 312.48674 24162.558 24162.558 1121.7277 1121.7277 51000 -7594.4651 -7594.4651 -7675.4271 -7675.4271 313.33111 313.33111 24185.056 24185.056 169.4039 169.4039 Loop time of 10.829 on 1 procs for 1000 steps with 2000 atoms Performance: 7.979 ns/day, 3.008 hours/ns, 92.345 timesteps/s 73.5% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 10.67 | 10.67 | 10.67 | 0.0 | 98.53 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.038079 | 0.038079 | 0.038079 | 0.0 | 0.35 Output | 2.8133e-05 | 2.8133e-05 | 2.8133e-05 | 0.0 | 0.00 Modify | 0.10807 | 0.10807 | 0.10807 | 0.0 | 1.00 Other | | 0.01286 | | | 0.12 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6065 ave 6065 max 6065 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 467032 ave 467032 max 467032 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 467032 Ave neighs/atom = 233.516 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.098331519949, Press = 1.1991488154832 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 51000 -7594.4651 -7594.4651 -7675.4271 -7675.4271 313.33111 313.33111 24185.056 24185.056 169.4039 169.4039 52000 -7594.3094 -7594.3094 -7676.2525 -7676.2525 317.12846 317.12846 24199.065 24199.065 -913.77201 -913.77201 Loop time of 15.6023 on 1 procs for 1000 steps with 2000 atoms Performance: 5.538 ns/day, 4.334 hours/ns, 64.093 timesteps/s 51.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 | 15.324 | 15.324 | 15.324 | 0.0 | 98.22 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.048135 | 0.048135 | 0.048135 | 0.0 | 0.31 Output | 5.2929e-05 | 5.2929e-05 | 5.2929e-05 | 0.0 | 0.00 Modify | 0.21675 | 0.21675 | 0.21675 | 0.0 | 1.39 Other | | 0.01303 | | | 0.08 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6070 ave 6070 max 6070 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 465294 ave 465294 max 465294 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 465294 Ave neighs/atom = 232.647 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.109986214243, Press = 0.92539717516273 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 52000 -7594.3094 -7594.3094 -7676.2525 -7676.2525 317.12846 317.12846 24199.065 24199.065 -913.77201 -913.77201 53000 -7599.7886 -7599.7886 -7680.3481 -7680.3481 311.77341 311.77341 24233.988 24233.988 -3981.9958 -3981.9958 Loop time of 15.6532 on 1 procs for 1000 steps with 2000 atoms Performance: 5.520 ns/day, 4.348 hours/ns, 63.885 timesteps/s 50.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 | 15.394 | 15.394 | 15.394 | 0.0 | 98.35 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.0974 | 0.0974 | 0.0974 | 0.0 | 0.62 Output | 3.0041e-05 | 3.0041e-05 | 3.0041e-05 | 0.0 | 0.00 Modify | 0.14861 | 0.14861 | 0.14861 | 0.0 | 0.95 Other | | 0.01286 | | | 0.08 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5999 ave 5999 max 5999 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 465108 ave 465108 max 465108 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 465108 Ave neighs/atom = 232.554 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.104260584777, Press = 1.93837135989515 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 53000 -7599.7886 -7599.7886 -7680.3481 -7680.3481 311.77341 311.77341 24233.988 24233.988 -3981.9958 -3981.9958 54000 -7595.5189 -7595.5189 -7678.0734 -7678.0734 319.4945 319.4945 24203.505 24203.505 -1411.992 -1411.992 Loop time of 15.78 on 1 procs for 1000 steps with 2000 atoms Performance: 5.475 ns/day, 4.383 hours/ns, 63.371 timesteps/s 49.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 | 15.482 | 15.482 | 15.482 | 0.0 | 98.11 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.079408 | 0.079408 | 0.079408 | 0.0 | 0.50 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.20572 | 0.20572 | 0.20572 | 0.0 | 1.30 Other | | 0.01285 | | | 0.08 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6045 ave 6045 max 6045 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 463546 ave 463546 max 463546 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 463546 Ave neighs/atom = 231.773 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.098972953132, Press = 2.85067623694128 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 54000 -7595.5189 -7595.5189 -7678.0734 -7678.0734 319.4945 319.4945 24203.505 24203.505 -1411.992 -1411.992 55000 -7597.536 -7597.536 -7678.7932 -7678.7932 314.47394 314.47394 24170.377 24170.377 578.25215 578.25215 Loop time of 15.9101 on 1 procs for 1000 steps with 2000 atoms Performance: 5.431 ns/day, 4.419 hours/ns, 62.853 timesteps/s 49.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 | 15.633 | 15.633 | 15.633 | 0.0 | 98.26 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.078228 | 0.078228 | 0.078228 | 0.0 | 0.49 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.18592 | 0.18592 | 0.18592 | 0.0 | 1.17 Other | | 0.01291 | | | 0.08 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6081 ave 6081 max 6081 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 464660 ave 464660 max 464660 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 464660 Ave neighs/atom = 232.33 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.029333003322, Press = 2.99901191428596 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 55000 -7597.536 -7597.536 -7678.7932 -7678.7932 314.47394 314.47394 24170.377 24170.377 578.25215 578.25215 56000 -7596.7104 -7596.7104 -7677.208 -7677.208 311.53376 311.53376 24162.479 24162.479 1366.7393 1366.7393 Loop time of 15.6638 on 1 procs for 1000 steps with 2000 atoms Performance: 5.516 ns/day, 4.351 hours/ns, 63.841 timesteps/s 51.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 | 15.295 | 15.295 | 15.295 | 0.0 | 97.65 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.077892 | 0.077892 | 0.077892 | 0.0 | 0.50 Output | 5.0068e-05 | 5.0068e-05 | 5.0068e-05 | 0.0 | 0.00 Modify | 0.27749 | 0.27749 | 0.27749 | 0.0 | 1.77 Other | | 0.01306 | | | 0.08 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6042 ave 6042 max 6042 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 466816 ave 466816 max 466816 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 466816 Ave neighs/atom = 233.408 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.035676317649, Press = 2.18051685801636 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 56000 -7596.7104 -7596.7104 -7677.208 -7677.208 311.53376 311.53376 24162.479 24162.479 1366.7393 1366.7393 57000 -7591.3429 -7591.3429 -7675.5216 -7675.5216 325.78027 325.78027 24184.564 24184.564 325.17228 325.17228 Loop time of 14.0207 on 1 procs for 1000 steps with 2000 atoms Performance: 6.162 ns/day, 3.895 hours/ns, 71.323 timesteps/s 56.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.781 | 13.781 | 13.781 | 0.0 | 98.29 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.078271 | 0.078271 | 0.078271 | 0.0 | 0.56 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.14806 | 0.14806 | 0.14806 | 0.0 | 1.06 Other | | 0.01315 | | | 0.09 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6094 ave 6094 max 6094 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 467080 ave 467080 max 467080 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 467080 Ave neighs/atom = 233.54 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.057257864074, Press = 1.22640889855369 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 57000 -7591.3429 -7591.3429 -7675.5216 -7675.5216 325.78027 325.78027 24184.564 24184.564 325.17228 325.17228 58000 -7597.658 -7597.658 -7680.0683 -7680.0683 318.93661 318.93661 24192.859 24192.859 -1070.0299 -1070.0299 Loop time of 14.6224 on 1 procs for 1000 steps with 2000 atoms Performance: 5.909 ns/day, 4.062 hours/ns, 68.388 timesteps/s 54.4% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 14.405 | 14.405 | 14.405 | 0.0 | 98.52 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.057523 | 0.057523 | 0.057523 | 0.0 | 0.39 Output | 0.00012302 | 0.00012302 | 0.00012302 | 0.0 | 0.00 Modify | 0.14668 | 0.14668 | 0.14668 | 0.0 | 1.00 Other | | 0.01281 | | | 0.09 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6070 ave 6070 max 6070 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 465738 ave 465738 max 465738 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 465738 Ave neighs/atom = 232.869 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.110627507566, Press = 1.05205632592028 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 58000 -7597.658 -7597.658 -7680.0683 -7680.0683 318.93661 318.93661 24192.859 24192.859 -1070.0299 -1070.0299 59000 -7595.399 -7595.399 -7676.7813 -7676.7813 314.958 314.958 24201.728 24201.728 -1114.8527 -1114.8527 Loop time of 15.1555 on 1 procs for 1000 steps with 2000 atoms Performance: 5.701 ns/day, 4.210 hours/ns, 65.983 timesteps/s 52.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 | 14.856 | 14.856 | 14.856 | 0.0 | 98.02 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.058215 | 0.058215 | 0.058215 | 0.0 | 0.38 Output | 2.1935e-05 | 2.1935e-05 | 2.1935e-05 | 0.0 | 0.00 Modify | 0.20811 | 0.20811 | 0.20811 | 0.0 | 1.37 Other | | 0.03312 | | | 0.22 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6051 ave 6051 max 6051 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 465782 ave 465782 max 465782 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 465782 Ave neighs/atom = 232.891 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.132185333059, Press = 1.23937961176808 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 59000 -7595.399 -7595.399 -7676.7813 -7676.7813 314.958 314.958 24201.728 24201.728 -1114.8527 -1114.8527 60000 -7598.057 -7598.057 -7678.8615 -7678.8615 312.7215 312.7215 24216.557 24216.557 -2521.9596 -2521.9596 Loop time of 14.4272 on 1 procs for 1000 steps with 2000 atoms Performance: 5.989 ns/day, 4.008 hours/ns, 69.314 timesteps/s 55.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 | 14.209 | 14.209 | 14.209 | 0.0 | 98.49 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.057515 | 0.057515 | 0.057515 | 0.0 | 0.40 Output | 2.1935e-05 | 2.1935e-05 | 2.1935e-05 | 0.0 | 0.00 Modify | 0.14721 | 0.14721 | 0.14721 | 0.0 | 1.02 Other | | 0.01346 | | | 0.09 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6037 ave 6037 max 6037 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 464494 ave 464494 max 464494 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 464494 Ave neighs/atom = 232.247 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.131407616735, Press = 2.55870766761274 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 60000 -7598.057 -7598.057 -7678.8615 -7678.8615 312.7215 312.7215 24216.557 24216.557 -2521.9596 -2521.9596 61000 -7594.3592 -7594.3592 -7675.5954 -7675.5954 314.3925 314.3925 24183.852 24183.852 173.17504 173.17504 Loop time of 12.2231 on 1 procs for 1000 steps with 2000 atoms Performance: 7.069 ns/day, 3.395 hours/ns, 81.812 timesteps/s 65.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 | 12.025 | 12.025 | 12.025 | 0.0 | 98.38 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.077514 | 0.077514 | 0.077514 | 0.0 | 0.63 Output | 2.9802e-05 | 2.9802e-05 | 2.9802e-05 | 0.0 | 0.00 Modify | 0.10714 | 0.10714 | 0.10714 | 0.0 | 0.88 Other | | 0.01297 | | | 0.11 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6008 ave 6008 max 6008 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 464390 ave 464390 max 464390 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 464390 Ave neighs/atom = 232.195 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.150693142929, Press = 3.28065095989477 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 61000 -7594.3592 -7594.3592 -7675.5954 -7675.5954 314.3925 314.3925 24183.852 24183.852 173.17504 173.17504 62000 -7599.2374 -7599.2374 -7679.5889 -7679.5889 310.96882 310.96882 24154.189 24154.189 1479.1844 1479.1844 Loop time of 12.3125 on 1 procs for 1000 steps with 2000 atoms Performance: 7.017 ns/day, 3.420 hours/ns, 81.218 timesteps/s 64.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 | 12.054 | 12.054 | 12.054 | 0.0 | 97.90 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.077675 | 0.077675 | 0.077675 | 0.0 | 0.63 Output | 2.8849e-05 | 2.8849e-05 | 2.8849e-05 | 0.0 | 0.00 Modify | 0.16772 | 0.16772 | 0.16772 | 0.0 | 1.36 Other | | 0.01303 | | | 0.11 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6065 ave 6065 max 6065 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 465832 ave 465832 max 465832 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 465832 Ave neighs/atom = 232.916 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.138103650583, Press = 2.18052631411886 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 62000 -7599.2374 -7599.2374 -7679.5889 -7679.5889 310.96882 310.96882 24154.189 24154.189 1479.1844 1479.1844 63000 -7594.8751 -7594.8751 -7674.5537 -7674.5537 308.36443 308.36443 24172.859 24172.859 1056.8411 1056.8411 Loop time of 13.5524 on 1 procs for 1000 steps with 2000 atoms Performance: 6.375 ns/day, 3.765 hours/ns, 73.788 timesteps/s 58.7% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 13.335 | 13.335 | 13.335 | 0.0 | 98.40 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.077895 | 0.077895 | 0.077895 | 0.0 | 0.57 Output | 2.8133e-05 | 2.8133e-05 | 2.8133e-05 | 0.0 | 0.00 Modify | 0.10635 | 0.10635 | 0.10635 | 0.0 | 0.78 Other | | 0.0331 | | | 0.24 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6105 ave 6105 max 6105 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 468234 ave 468234 max 468234 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 468234 Ave neighs/atom = 234.117 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.153131983689, Press = 1.36667945109038 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 63000 -7594.8751 -7594.8751 -7674.5537 -7674.5537 308.36443 308.36443 24172.859 24172.859 1056.8411 1056.8411 64000 -7597.0585 -7597.0585 -7676.2669 -7676.2669 306.54492 306.54492 24183.578 24183.578 -19.335457 -19.335457 Loop time of 14.8445 on 1 procs for 1000 steps with 2000 atoms Performance: 5.820 ns/day, 4.123 hours/ns, 67.365 timesteps/s 53.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 | 14.548 | 14.548 | 14.548 | 0.0 | 98.00 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.077787 | 0.077787 | 0.077787 | 0.0 | 0.52 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.20548 | 0.20548 | 0.20548 | 0.0 | 1.38 Other | | 0.01287 | | | 0.09 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6076 ave 6076 max 6076 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 466004 ave 466004 max 466004 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 466004 Ave neighs/atom = 233.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 = 313.166914590635, Press = 0.876254243013944 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 64000 -7597.0585 -7597.0585 -7676.2669 -7676.2669 306.54492 306.54492 24183.578 24183.578 -19.335457 -19.335457 65000 -7598.3021 -7598.3021 -7679.4037 -7679.4037 313.87143 313.87143 24194.124 24194.124 -1070.9725 -1070.9725 Loop time of 14.0314 on 1 procs for 1000 steps with 2000 atoms Performance: 6.158 ns/day, 3.898 hours/ns, 71.269 timesteps/s 59.9% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 13.699 | 13.699 | 13.699 | 0.0 | 97.63 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.082189 | 0.082189 | 0.082189 | 0.0 | 0.59 Output | 3.0041e-05 | 3.0041e-05 | 3.0041e-05 | 0.0 | 0.00 Modify | 0.21662 | 0.21662 | 0.21662 | 0.0 | 1.54 Other | | 0.03389 | | | 0.24 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6102 ave 6102 max 6102 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 466596 ave 466596 max 466596 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 466596 Ave neighs/atom = 233.298 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.168949352706, Press = 0.898784918096259 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 65000 -7598.3021 -7598.3021 -7679.4037 -7679.4037 313.87143 313.87143 24194.124 24194.124 -1070.9725 -1070.9725 66000 -7593.9542 -7593.9542 -7677.2855 -7677.2855 322.50052 322.50052 24240.589 24240.589 -3734.8251 -3734.8251 Loop time of 14.1755 on 1 procs for 1000 steps with 2000 atoms Performance: 6.095 ns/day, 3.938 hours/ns, 70.544 timesteps/s 56.5% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 13.907 | 13.907 | 13.907 | 0.0 | 98.10 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.057685 | 0.057685 | 0.057685 | 0.0 | 0.41 Output | 2.8133e-05 | 2.8133e-05 | 2.8133e-05 | 0.0 | 0.00 Modify | 0.19812 | 0.19812 | 0.19812 | 0.0 | 1.40 Other | | 0.01292 | | | 0.09 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6027 ave 6027 max 6027 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 465970 ave 465970 max 465970 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 465970 Ave neighs/atom = 232.985 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.181824961307, Press = 1.09213364054513 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 66000 -7593.9542 -7593.9542 -7677.2855 -7677.2855 322.50052 322.50052 24240.589 24240.589 -3734.8251 -3734.8251 67000 -7596.4515 -7596.4515 -7677.9488 -7677.9488 315.40299 315.40299 24214.361 24214.361 -2145.0504 -2145.0504 Loop time of 11.3186 on 1 procs for 1000 steps with 2000 atoms Performance: 7.633 ns/day, 3.144 hours/ns, 88.350 timesteps/s 70.2% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 11.081 | 11.081 | 11.081 | 0.0 | 97.90 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.057142 | 0.057142 | 0.057142 | 0.0 | 0.50 Output | 2.3127e-05 | 2.3127e-05 | 2.3127e-05 | 0.0 | 0.00 Modify | 0.16729 | 0.16729 | 0.16729 | 0.0 | 1.48 Other | | 0.01284 | | | 0.11 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6044 ave 6044 max 6044 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 462662 ave 462662 max 462662 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 462662 Ave neighs/atom = 231.331 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.181431420993, Press = 2.52734134748684 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 67000 -7596.4515 -7596.4515 -7677.9488 -7677.9488 315.40299 315.40299 24214.361 24214.361 -2145.0504 -2145.0504 68000 -7597.347 -7597.347 -7677.6785 -7677.6785 310.89105 310.89105 24172.151 24172.151 766.43925 766.43925 Loop time of 13.9195 on 1 procs for 1000 steps with 2000 atoms Performance: 6.207 ns/day, 3.867 hours/ns, 71.842 timesteps/s 57.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 | 13.723 | 13.723 | 13.723 | 0.0 | 98.59 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.077547 | 0.077547 | 0.077547 | 0.0 | 0.56 Output | 2.8849e-05 | 2.8849e-05 | 2.8849e-05 | 0.0 | 0.00 Modify | 0.10583 | 0.10583 | 0.10583 | 0.0 | 0.76 Other | | 0.01282 | | | 0.09 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6045 ave 6045 max 6045 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 463782 ave 463782 max 463782 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 463782 Ave neighs/atom = 231.891 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.198183444948, Press = 2.27855606938906 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 68000 -7597.347 -7597.347 -7677.6785 -7677.6785 310.89105 310.89105 24172.151 24172.151 766.43925 766.43925 69000 -7594.1905 -7594.1905 -7674.839 -7674.839 312.1177 312.1177 24172.237 24172.237 1320.5114 1320.5114 Loop time of 13.3023 on 1 procs for 1000 steps with 2000 atoms Performance: 6.495 ns/day, 3.695 hours/ns, 75.175 timesteps/s 59.8% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 13.044 | 13.044 | 13.044 | 0.0 | 98.06 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.078224 | 0.078224 | 0.078224 | 0.0 | 0.59 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.16676 | 0.16676 | 0.16676 | 0.0 | 1.25 Other | | 0.01277 | | | 0.10 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6053 ave 6053 max 6053 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 465836 ave 465836 max 465836 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 465836 Ave neighs/atom = 232.918 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.20902456794, Press = 1.62552548141551 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 69000 -7594.1905 -7594.1905 -7674.839 -7674.839 312.1177 312.1177 24172.237 24172.237 1320.5114 1320.5114 70000 -7600.3774 -7600.3774 -7679.5037 -7679.5037 306.22691 306.22691 24152.248 24152.248 1710.7467 1710.7467 Loop time of 13.0311 on 1 procs for 1000 steps with 2000 atoms Performance: 6.630 ns/day, 3.620 hours/ns, 76.739 timesteps/s 61.2% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 12.792 | 12.792 | 12.792 | 0.0 | 98.17 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.058481 | 0.058481 | 0.058481 | 0.0 | 0.45 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.14734 | 0.14734 | 0.14734 | 0.0 | 1.13 Other | | 0.03325 | | | 0.26 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6108 ave 6108 max 6108 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 465280 ave 465280 max 465280 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 465280 Ave neighs/atom = 232.64 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.18407787826, Press = 1.23999778552667 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 70000 -7600.3774 -7600.3774 -7679.5037 -7679.5037 306.22691 306.22691 24152.248 24152.248 1710.7467 1710.7467 71000 -7594.9754 -7594.9754 -7676.7669 -7676.7669 316.54167 316.54167 24164.694 24164.694 1428.1545 1428.1545 Loop time of 14.8395 on 1 procs for 1000 steps with 2000 atoms Performance: 5.822 ns/day, 4.122 hours/ns, 67.388 timesteps/s 53.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 | 14.591 | 14.591 | 14.591 | 0.0 | 98.33 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.067654 | 0.067654 | 0.067654 | 0.0 | 0.46 Output | 2.8849e-05 | 2.8849e-05 | 2.8849e-05 | 0.0 | 0.00 Modify | 0.14765 | 0.14765 | 0.14765 | 0.0 | 0.99 Other | | 0.03275 | | | 0.22 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6043 ave 6043 max 6043 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 467502 ave 467502 max 467502 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 467502 Ave neighs/atom = 233.751 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.176689194476, Press = 0.274722371947737 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 71000 -7594.9754 -7594.9754 -7676.7669 -7676.7669 316.54167 316.54167 24164.694 24164.694 1428.1545 1428.1545 72000 -7598.0165 -7598.0165 -7677.1921 -7677.1921 306.41762 306.41762 24219.55 24219.55 -2472.896 -2472.896 Loop time of 13.8793 on 1 procs for 1000 steps with 2000 atoms Performance: 6.225 ns/day, 3.855 hours/ns, 72.050 timesteps/s 57.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 | 13.602 | 13.602 | 13.602 | 0.0 | 98.00 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.098396 | 0.098396 | 0.098396 | 0.0 | 0.71 Output | 2.8849e-05 | 2.8849e-05 | 2.8849e-05 | 0.0 | 0.00 Modify | 0.14631 | 0.14631 | 0.14631 | 0.0 | 1.05 Other | | 0.0329 | | | 0.24 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6067 ave 6067 max 6067 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 466528 ave 466528 max 466528 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 466528 Ave neighs/atom = 233.264 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.203407105808, Press = -0.795374396106813 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 72000 -7598.0165 -7598.0165 -7677.1921 -7677.1921 306.41762 306.41762 24219.55 24219.55 -2472.896 -2472.896 73000 -7593.2444 -7593.2444 -7674.4265 -7674.4265 314.18311 314.18311 24225.105 24225.105 -2284.4365 -2284.4365 Loop time of 14.7073 on 1 procs for 1000 steps with 2000 atoms Performance: 5.875 ns/day, 4.085 hours/ns, 67.994 timesteps/s 54.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 | 14.469 | 14.469 | 14.469 | 0.0 | 98.38 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.057836 | 0.057836 | 0.057836 | 0.0 | 0.39 Output | 2.3127e-05 | 2.3127e-05 | 2.3127e-05 | 0.0 | 0.00 Modify | 0.12708 | 0.12708 | 0.12708 | 0.0 | 0.86 Other | | 0.053 | | | 0.36 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6027 ave 6027 max 6027 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 463512 ave 463512 max 463512 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 463512 Ave neighs/atom = 231.756 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.231730470584, Press = 1.07271507074766 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 73000 -7593.2444 -7593.2444 -7674.4265 -7674.4265 314.18311 314.18311 24225.105 24225.105 -2284.4365 -2284.4365 74000 -7597.7519 -7597.7519 -7679.1025 -7679.1025 314.83499 314.83499 24204.204 24204.204 -1740.7619 -1740.7619 Loop time of 14.8784 on 1 procs for 1000 steps with 2000 atoms Performance: 5.807 ns/day, 4.133 hours/ns, 67.211 timesteps/s 54.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 | 14.559 | 14.559 | 14.559 | 0.0 | 97.85 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.078044 | 0.078044 | 0.078044 | 0.0 | 0.52 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.16824 | 0.16824 | 0.16824 | 0.0 | 1.13 Other | | 0.0732 | | | 0.49 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6081 ave 6081 max 6081 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 462702 ave 462702 max 462702 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 462702 Ave neighs/atom = 231.351 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.266821355849, Press = 1.71481781072206 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 74000 -7597.7519 -7597.7519 -7679.1025 -7679.1025 314.83499 314.83499 24204.204 24204.204 -1740.7619 -1740.7619 75000 -7594.4516 -7594.4516 -7675.1416 -7675.1416 312.27847 312.27847 24183.324 24183.324 399.68864 399.68864 Loop time of 12.3712 on 1 procs for 1000 steps with 2000 atoms Performance: 6.984 ns/day, 3.436 hours/ns, 80.833 timesteps/s 64.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 | 12.152 | 12.152 | 12.152 | 0.0 | 98.22 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.05819 | 0.05819 | 0.05819 | 0.0 | 0.47 Output | 2.8849e-05 | 2.8849e-05 | 2.8849e-05 | 0.0 | 0.00 Modify | 0.14841 | 0.14841 | 0.14841 | 0.0 | 1.20 Other | | 0.01309 | | | 0.11 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6024 ave 6024 max 6024 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 464784 ave 464784 max 464784 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 464784 Ave neighs/atom = 232.392 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.27309995005, Press = 2.27666526655941 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 75000 -7594.4516 -7594.4516 -7675.1416 -7675.1416 312.27847 312.27847 24183.324 24183.324 399.68864 399.68864 76000 -7592.2302 -7592.2302 -7675.5459 -7675.5459 322.44006 322.44006 24154.613 24154.613 2366.6695 2366.6695 Loop time of 13.0336 on 1 procs for 1000 steps with 2000 atoms Performance: 6.629 ns/day, 3.620 hours/ns, 76.725 timesteps/s 61.1% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 12.795 | 12.795 | 12.795 | 0.0 | 98.17 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.098203 | 0.098203 | 0.098203 | 0.0 | 0.75 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.12725 | 0.12725 | 0.12725 | 0.0 | 0.98 Other | | 0.01296 | | | 0.10 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6101 ave 6101 max 6101 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 464866 ave 464866 max 464866 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 464866 Ave neighs/atom = 232.433 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.268735606086, Press = 2.4000651208901 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 76000 -7592.2302 -7592.2302 -7675.5459 -7675.5459 322.44006 322.44006 24154.613 24154.613 2366.6695 2366.6695 77000 -7597.1333 -7597.1333 -7678.105 -7678.105 313.36905 313.36905 24138.341 24138.341 2942.4215 2942.4215 Loop time of 13.9576 on 1 procs for 1000 steps with 2000 atoms Performance: 6.190 ns/day, 3.877 hours/ns, 71.646 timesteps/s 57.4% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 13.739 | 13.739 | 13.739 | 0.0 | 98.43 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.098507 | 0.098507 | 0.098507 | 0.0 | 0.71 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.10759 | 0.10759 | 0.10759 | 0.0 | 0.77 Other | | 0.01287 | | | 0.09 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6107 ave 6107 max 6107 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 466738 ave 466738 max 466738 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 466738 Ave neighs/atom = 233.369 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.278363574816, Press = 1.25342874400334 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 77000 -7597.1333 -7597.1333 -7678.105 -7678.105 313.36905 313.36905 24138.341 24138.341 2942.4215 2942.4215 78000 -7592.3682 -7592.3682 -7674.5358 -7674.5358 317.997 317.997 24179.914 24179.914 712.20045 712.20045 Loop time of 12.0297 on 1 procs for 1000 steps with 2000 atoms Performance: 7.182 ns/day, 3.342 hours/ns, 83.127 timesteps/s 66.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 | 11.81 | 11.81 | 11.81 | 0.0 | 98.17 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.058725 | 0.058725 | 0.058725 | 0.0 | 0.49 Output | 2.8133e-05 | 2.8133e-05 | 2.8133e-05 | 0.0 | 0.00 Modify | 0.12789 | 0.12789 | 0.12789 | 0.0 | 1.06 Other | | 0.03307 | | | 0.27 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6102 ave 6102 max 6102 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 468306 ave 468306 max 468306 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 468306 Ave neighs/atom = 234.153 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.27954209322, Press = 0.897449950285422 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 78000 -7592.3682 -7592.3682 -7674.5358 -7674.5358 317.997 317.997 24179.914 24179.914 712.20045 712.20045 79000 -7597.6359 -7597.6359 -7677.9269 -7677.9269 310.73477 310.73477 24189.011 24189.011 -488.50539 -488.50539 Loop time of 13.2119 on 1 procs for 1000 steps with 2000 atoms Performance: 6.540 ns/day, 3.670 hours/ns, 75.689 timesteps/s 60.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 | 12.993 | 12.993 | 12.993 | 0.0 | 98.34 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.038951 | 0.038951 | 0.038951 | 0.0 | 0.29 Output | 2.8849e-05 | 2.8849e-05 | 2.8849e-05 | 0.0 | 0.00 Modify | 0.16719 | 0.16719 | 0.16719 | 0.0 | 1.27 Other | | 0.01321 | | | 0.10 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6040 ave 6040 max 6040 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 465434 ave 465434 max 465434 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 465434 Ave neighs/atom = 232.717 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.297489773824, Press = 0.876515913910581 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 79000 -7597.6359 -7597.6359 -7677.9269 -7677.9269 310.73477 310.73477 24189.011 24189.011 -488.50539 -488.50539 80000 -7594.9747 -7594.9747 -7679.092 -7679.092 325.54257 325.54257 24197.372 24197.372 -1178.06 -1178.06 Loop time of 13.2078 on 1 procs for 1000 steps with 2000 atoms Performance: 6.542 ns/day, 3.669 hours/ns, 75.713 timesteps/s 59.9% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 12.99 | 12.99 | 12.99 | 0.0 | 98.35 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.078204 | 0.078204 | 0.078204 | 0.0 | 0.59 Output | 2.2888e-05 | 2.2888e-05 | 2.2888e-05 | 0.0 | 0.00 Modify | 0.12691 | 0.12691 | 0.12691 | 0.0 | 0.96 Other | | 0.01272 | | | 0.10 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6124 ave 6124 max 6124 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 465694 ave 465694 max 465694 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 465694 Ave neighs/atom = 232.847 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.295364666323, Press = 0.897862635595135 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 80000 -7594.9747 -7594.9747 -7679.092 -7679.092 325.54257 325.54257 24197.372 24197.372 -1178.06 -1178.06 81000 -7599.0716 -7599.0716 -7679.137 -7679.137 309.86158 309.86158 24230.703 24230.703 -3509.5378 -3509.5378 Loop time of 11.3791 on 1 procs for 1000 steps with 2000 atoms Performance: 7.593 ns/day, 3.161 hours/ns, 87.880 timesteps/s 69.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 | 11.219 | 11.219 | 11.219 | 0.0 | 98.59 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.037516 | 0.037516 | 0.037516 | 0.0 | 0.33 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.10865 | 0.10865 | 0.10865 | 0.0 | 0.95 Other | | 0.01388 | | | 0.12 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6044 ave 6044 max 6044 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 465412 ave 465412 max 465412 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 465412 Ave neighs/atom = 232.706 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.246323063256, Press = 1.00456214996882 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 81000 -7599.0716 -7599.0716 -7679.137 -7679.137 309.86158 309.86158 24230.703 24230.703 -3509.5378 -3509.5378 82000 -7595.8221 -7595.8221 -7678.7301 -7678.7301 320.86261 320.86261 24222.927 24222.927 -2735.2832 -2735.2832 Loop time of 12.8877 on 1 procs for 1000 steps with 2000 atoms Performance: 6.704 ns/day, 3.580 hours/ns, 77.593 timesteps/s 62.1% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 12.62 | 12.62 | 12.62 | 0.0 | 97.92 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.037816 | 0.037816 | 0.037816 | 0.0 | 0.29 Output | 2.3127e-05 | 2.3127e-05 | 2.3127e-05 | 0.0 | 0.00 Modify | 0.15667 | 0.15667 | 0.15667 | 0.0 | 1.22 Other | | 0.07324 | | | 0.57 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5982 ave 5982 max 5982 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 463490 ave 463490 max 463490 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 463490 Ave neighs/atom = 231.745 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.235641792741, Press = 2.04281579815769 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 82000 -7595.8221 -7595.8221 -7678.7301 -7678.7301 320.86261 320.86261 24222.927 24222.927 -2735.2832 -2735.2832 83000 -7598.8053 -7598.8053 -7680.002 -7680.002 314.23973 314.23973 24181.289 24181.289 -279.77604 -279.77604 Loop time of 13.0801 on 1 procs for 1000 steps with 2000 atoms Performance: 6.605 ns/day, 3.633 hours/ns, 76.452 timesteps/s 60.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 | 12.833 | 12.833 | 12.833 | 0.0 | 98.11 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.097313 | 0.097313 | 0.097313 | 0.0 | 0.74 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.10656 | 0.10656 | 0.10656 | 0.0 | 0.81 Other | | 0.04294 | | | 0.33 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6053 ave 6053 max 6053 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 463336 ave 463336 max 463336 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 463336 Ave neighs/atom = 231.668 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.185328959648, Press = 2.01702448335733 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 83000 -7598.8053 -7598.8053 -7680.002 -7680.002 314.23973 314.23973 24181.289 24181.289 -279.77604 -279.77604 84000 -7597.2878 -7597.2878 -7677.095 -7677.095 308.8622 308.8622 24171.849 24171.849 791.58268 791.58268 Loop time of 13.1233 on 1 procs for 1000 steps with 2000 atoms Performance: 6.584 ns/day, 3.645 hours/ns, 76.200 timesteps/s 60.4% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 12.912 | 12.912 | 12.912 | 0.0 | 98.39 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.091405 | 0.091405 | 0.091405 | 0.0 | 0.70 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.10658 | 0.10658 | 0.10658 | 0.0 | 0.81 Other | | 0.01293 | | | 0.10 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6035 ave 6035 max 6035 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 465868 ave 465868 max 465868 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 465868 Ave neighs/atom = 232.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 = 313.173498239541, Press = 1.28182722687518 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 84000 -7597.2878 -7597.2878 -7677.095 -7677.095 308.8622 308.8622 24171.849 24171.849 791.58268 791.58268 85000 -7595.3846 -7595.3846 -7676.4768 -7676.4768 313.83536 313.83536 24163.528 24163.528 1755.9247 1755.9247 Loop time of 14.3049 on 1 procs for 1000 steps with 2000 atoms Performance: 6.040 ns/day, 3.974 hours/ns, 69.906 timesteps/s 55.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 | 14.048 | 14.048 | 14.048 | 0.0 | 98.21 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.057257 | 0.057257 | 0.057257 | 0.0 | 0.40 Output | 6.1035e-05 | 6.1035e-05 | 6.1035e-05 | 0.0 | 0.00 Modify | 0.14627 | 0.14627 | 0.14627 | 0.0 | 1.02 Other | | 0.05302 | | | 0.37 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6054 ave 6054 max 6054 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 466016 ave 466016 max 466016 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 466016 Ave neighs/atom = 233.008 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.143601426055, Press = 1.1739146593001 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 85000 -7595.3846 -7595.3846 -7676.4768 -7676.4768 313.83536 313.83536 24163.528 24163.528 1755.9247 1755.9247 86000 -7597.1171 -7597.1171 -7678.1374 -7678.1374 313.55661 313.55661 24147.23 24147.23 2262.1071 2262.1071 Loop time of 12.025 on 1 procs for 1000 steps with 2000 atoms Performance: 7.185 ns/day, 3.340 hours/ns, 83.160 timesteps/s 65.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 | 11.848 | 11.848 | 11.848 | 0.0 | 98.53 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.057514 | 0.057514 | 0.057514 | 0.0 | 0.48 Output | 2.8133e-05 | 2.8133e-05 | 2.8133e-05 | 0.0 | 0.00 Modify | 0.10636 | 0.10636 | 0.10636 | 0.0 | 0.88 Other | | 0.01279 | | | 0.11 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6136 ave 6136 max 6136 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 465392 ave 465392 max 465392 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 465392 Ave neighs/atom = 232.696 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${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_T313.15.out" else "print 'not_converged' file output/vol_T313.15.out" print '${V}' file output/vol_T313.15.out 24182.9726801167 print "LAMMPS calculation completed" LAMMPS calculation completed quit 0