# 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.855312779545784*${_u_distance} variable latticeconst_converted equal 2.855312779545784*1 lattice bcc ${latticeconst_converted} lattice bcc 2.85531277954578 Lattice spacing in x,y,z = 2.85531 2.85531 2.85531 region simbox block 0 10 0 10 0 10 units lattice create_box 1 simbox Created orthogonal box = (0 0 0) to (28.5531 28.5531 28.5531) 1 by 1 by 1 MPI processor grid create_atoms 1 box Created 2000 atoms create_atoms CPU = 0.000314951 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 EAM_Dynamo_AcklandMendelevSrolovitz_2004_FeP__MO_884343146310_005 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 23278.8256346449 variable V0_metal equal ${V0}/(${_u_distance}*${_u_distance}*${_u_distance}) variable V0_metal equal 23278.8256346449/(${_u_distance}*${_u_distance}*${_u_distance}) variable V0_metal equal 23278.8256346449/(1*${_u_distance}*${_u_distance}) variable V0_metal equal 23278.8256346449/(1*1*${_u_distance}) variable V0_metal equal 23278.8256346449/(1*1*1) variable V0_metal_times1000 equal ${V0_metal}*1000 variable V0_metal_times1000 equal 23278.8256346449*1000 print "Initial system volume: ${V0_metal} Angstroms^3" Initial system volume: 23278.8256346449 Angstroms^3 # set the time step to 0.001 picoseconds variable timestep_converted equal 0.001*${_u_time} variable timestep_converted equal 0.001*1 timestep ${timestep_converted} timestep 0.001 variable temp_converted equal 253.15*${_u_temperature} variable temp_converted equal 253.15*1 variable Tdamp_converted equal 0.1*${_u_time} variable Tdamp_converted equal 0.1*1 variable press_converted equal 0.0*${_u_pressure} variable press_converted equal 0.0*1 variable Pdamp_converted equal 1*${_u_time} variable Pdamp_converted equal 1*1 # create initial velocities consistent with the chosen temperature velocity all create ${temp_converted} 17 mom yes rot yes velocity all create 253.15 17 mom yes rot yes # set NPT ensemble for all atoms fix ensemble all npt temp ${temp_converted} ${temp_converted} ${Tdamp_converted} iso ${press_converted} ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 253.15 ${temp_converted} ${Tdamp_converted} iso ${press_converted} ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 253.15 253.15 ${Tdamp_converted} iso ${press_converted} ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 253.15 253.15 0.1 iso ${press_converted} ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 253.15 253.15 0.1 iso 0 ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 253.15 253.15 0.1 iso 0 0 ${Pdamp_converted} fix ensemble all npt temp 253.15 253.15 0.1 iso 0 0 1 # compute the time averages of pressure, temperature, and volume, respectively # ignore the first 5000 timesteps variable etotal_metal equal etotal/${_u_energy} variable etotal_metal equal etotal/1 variable pe_metal equal pe/${_u_energy} variable pe_metal equal pe/1 variable T_metal equal temp/${_u_temperature} variable T_metal equal temp/1 variable V_metal equal vol/(${_u_distance}*${_u_distance}*${_u_distance}) variable V_metal equal vol/(1*${_u_distance}*${_u_distance}) variable V_metal equal vol/(1*1*${_u_distance}) variable V_metal equal vol/(1*1*1) variable P_metal equal press/${_u_pressure} variable P_metal equal press/1 fix avgmyTemp all ave/time 5 20 100 v_T_metal ave running start 5000 fix avgmyPress all ave/time 5 20 100 v_P_metal ave running start 5000 fix avgmyVol all ave/time 5 20 100 v_V_metal ave running start 5000 # extract fix quantities into variables so they can be used in if-else logic later. variable T equal f_avgmyTemp variable P equal f_avgmyPress variable V equal f_avgmyVol # set error bounds for temperature and pressure in original metal units (K and bar) variable T_low equal "253.15 - 0.2" variable T_up equal "253.15 + 0.2" variable P_low equal "0.0 - 0.2" variable P_up equal "0.0 + 0.2" # print to logfile every 1000 timesteps thermo_style custom step etotal v_etotal_metal pe v_pe_metal temp v_T_metal vol v_V_metal press v_P_metal thermo 1000 # Run a simulation for at most 2000*1000 timesteps. At each 1000th time step, check # whether the temperature and pressure have converged. If yes, break. label top variable a loop 2000 run 1000 Neighbor list info ... update every 1 steps, delay 10 steps, check yes max neighbors/atom: 2000, page size: 100000 master list distance cutoff = 7.3 ghost atom cutoff = 7.3 binsize = 3.65, bins = 8 8 8 1 neighbor lists, perpetual/occasional/extra = 1 0 0 (1) pair kim, perpetual attributes: full, newton off, cut 7.3 pair build: full/bin/atomonly stencil: full/bin/3d bin: standard Per MPI rank memory allocation (min/avg/max) = 4.195 | 4.195 | 4.195 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 0 -7960.5529 -7960.5529 -8025.9646 -8025.9646 253.15 253.15 23278.826 23278.826 3001.2705 3001.2705 1000 -7892.469 -7892.469 -7951.9353 -7951.9353 230.14065 230.14065 23408.555 23408.555 -2351.0893 -2351.0893 Loop time of 27.1826 on 1 procs for 1000 steps with 2000 atoms Performance: 3.179 ns/day, 7.551 hours/ns, 36.788 timesteps/s 22.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 | 26.689 | 26.689 | 26.689 | 0.0 | 98.18 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.13193 | 0.13193 | 0.13193 | 0.0 | 0.49 Output | 4.6015e-05 | 4.6015e-05 | 4.6015e-05 | 0.0 | 0.00 Modify | 0.28846 | 0.28846 | 0.28846 | 0.0 | 1.06 Other | | 0.07326 | | | 0.27 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 272000 ave 272000 max 272000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 272000 Ave neighs/atom = 136 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 0, Press = 0 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.195 | 4.195 | 4.195 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 1000 -7892.469 -7892.469 -7951.9353 -7951.9353 230.14065 230.14065 23408.555 23408.555 -2351.0893 -2351.0893 2000 -7891.7962 -7891.7962 -7956.7704 -7956.7704 251.45688 251.45688 23357.375 23357.375 623.44485 623.44485 Loop time of 26.1698 on 1 procs for 1000 steps with 2000 atoms Performance: 3.302 ns/day, 7.269 hours/ns, 38.212 timesteps/s 24.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 | 25.643 | 25.643 | 25.643 | 0.0 | 97.99 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.13614 | 0.13614 | 0.13614 | 0.0 | 0.52 Output | 3.6001e-05 | 3.6001e-05 | 3.6001e-05 | 0.0 | 0.00 Modify | 0.32682 | 0.32682 | 0.32682 | 0.0 | 1.25 Other | | 0.06339 | | | 0.24 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5427 ave 5427 max 5427 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 276908 ave 276908 max 276908 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 276908 Ave neighs/atom = 138.454 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 0, Press = 0 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.195 | 4.195 | 4.195 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 2000 -7891.7962 -7891.7962 -7956.7704 -7956.7704 251.45688 251.45688 23357.375 23357.375 623.44485 623.44485 3000 -7893.2622 -7893.2622 -7955.3323 -7955.3323 240.21766 240.21766 23402.639 23402.639 -2388.2826 -2388.2826 Loop time of 27.866 on 1 procs for 1000 steps with 2000 atoms Performance: 3.101 ns/day, 7.741 hours/ns, 35.886 timesteps/s 23.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 | 27.442 | 27.442 | 27.442 | 0.0 | 98.48 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.097449 | 0.097449 | 0.097449 | 0.0 | 0.35 Output | 6.7949e-05 | 6.7949e-05 | 6.7949e-05 | 0.0 | 0.00 Modify | 0.2733 | 0.2733 | 0.2733 | 0.0 | 0.98 Other | | 0.05367 | | | 0.19 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5459 ave 5459 max 5459 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 276716 ave 276716 max 276716 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 276716 Ave neighs/atom = 138.358 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 0, Press = 0 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.195 | 4.195 | 4.195 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 3000 -7893.2622 -7893.2622 -7955.3323 -7955.3323 240.21766 240.21766 23402.639 23402.639 -2388.2826 -2388.2826 4000 -7891.1324 -7891.1324 -7957.7234 -7957.7234 257.71391 257.71391 23370.422 23370.422 193.78287 193.78287 Loop time of 26.8155 on 1 procs for 1000 steps with 2000 atoms Performance: 3.222 ns/day, 7.449 hours/ns, 37.292 timesteps/s 23.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 | 26.188 | 26.188 | 26.188 | 0.0 | 97.66 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.14731 | 0.14731 | 0.14731 | 0.0 | 0.55 Output | 7.2956e-05 | 7.2956e-05 | 7.2956e-05 | 0.0 | 0.00 Modify | 0.42654 | 0.42654 | 0.42654 | 0.0 | 1.59 Other | | 0.05329 | | | 0.20 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5463 ave 5463 max 5463 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 276128 ave 276128 max 276128 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 276128 Ave neighs/atom = 138.064 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 0, Press = 0 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.195 | 4.195 | 4.195 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 4000 -7891.1324 -7891.1324 -7957.7234 -7957.7234 257.71391 257.71391 23370.422 23370.422 193.78287 193.78287 5000 -7893.6387 -7893.6387 -7958.6168 -7958.6168 251.47199 251.47199 23357.28 23357.28 952.1818 952.1818 Loop time of 26.7652 on 1 procs for 1000 steps with 2000 atoms Performance: 3.228 ns/day, 7.435 hours/ns, 37.362 timesteps/s 23.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 | 26.308 | 26.308 | 26.308 | 0.0 | 98.29 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.18621 | 0.18621 | 0.18621 | 0.0 | 0.70 Output | 2.8849e-05 | 2.8849e-05 | 2.8849e-05 | 0.0 | 0.00 Modify | 0.25697 | 0.25697 | 0.25697 | 0.0 | 0.96 Other | | 0.01365 | | | 0.05 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5463 ave 5463 max 5463 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 276246 ave 276246 max 276246 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 276246 Ave neighs/atom = 138.123 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.104922530897, Press = -382.54250431603 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.195 | 4.195 | 4.195 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 5000 -7893.6387 -7893.6387 -7958.6168 -7958.6168 251.47199 251.47199 23357.28 23357.28 952.1818 952.1818 6000 -7890.6333 -7890.6333 -7957.8436 -7957.8436 260.11072 260.11072 23372.283 23372.283 -247.15436 -247.15436 Loop time of 26.4545 on 1 procs for 1000 steps with 2000 atoms Performance: 3.266 ns/day, 7.348 hours/ns, 37.801 timesteps/s 24.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 | 25.862 | 25.862 | 25.862 | 0.0 | 97.76 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.085845 | 0.085845 | 0.085845 | 0.0 | 0.32 Output | 2.8849e-05 | 2.8849e-05 | 2.8849e-05 | 0.0 | 0.00 Modify | 0.49239 | 0.49239 | 0.49239 | 0.0 | 1.86 Other | | 0.01379 | | | 0.05 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5471 ave 5471 max 5471 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 276166 ave 276166 max 276166 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 276166 Ave neighs/atom = 138.083 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.633928395694, Press = -2.49941122190622 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.195 | 4.195 | 4.195 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 6000 -7890.6333 -7890.6333 -7957.8436 -7957.8436 260.11072 260.11072 23372.283 23372.283 -247.15436 -247.15436 7000 -7891.9419 -7891.9419 -7958.1105 -7958.1105 256.07934 256.07934 23372.321 23372.321 -189.63822 -189.63822 Loop time of 26.6279 on 1 procs for 1000 steps with 2000 atoms Performance: 3.245 ns/day, 7.397 hours/ns, 37.555 timesteps/s 24.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 | 26.084 | 26.084 | 26.084 | 0.0 | 97.96 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.1969 | 0.1969 | 0.1969 | 0.0 | 0.74 Output | 3.0041e-05 | 3.0041e-05 | 3.0041e-05 | 0.0 | 0.00 Modify | 0.33314 | 0.33314 | 0.33314 | 0.0 | 1.25 Other | | 0.01366 | | | 0.05 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5464 ave 5464 max 5464 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 276400 ave 276400 max 276400 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 276400 Ave neighs/atom = 138.2 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.993356767779, Press = -26.0628937093325 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.195 | 4.195 | 4.195 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 7000 -7891.9419 -7891.9419 -7958.1105 -7958.1105 256.07934 256.07934 23372.321 23372.321 -189.63822 -189.63822 8000 -7893.1729 -7893.1729 -7958.3557 -7958.3557 252.26422 252.26422 23359.995 23359.995 602.65509 602.65509 Loop time of 25.1586 on 1 procs for 1000 steps with 2000 atoms Performance: 3.434 ns/day, 6.989 hours/ns, 39.748 timesteps/s 25.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 | 24.526 | 24.526 | 24.526 | 0.0 | 97.48 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.14682 | 0.14682 | 0.14682 | 0.0 | 0.58 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.44232 | 0.44232 | 0.44232 | 0.0 | 1.76 Other | | 0.04382 | | | 0.17 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5460 ave 5460 max 5460 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 276166 ave 276166 max 276166 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 276166 Ave neighs/atom = 138.083 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.081526443793, Press = 3.59216281248274 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.195 | 4.195 | 4.195 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 8000 -7893.1729 -7893.1729 -7958.3557 -7958.3557 252.26422 252.26422 23359.995 23359.995 602.65509 602.65509 9000 -7889.0092 -7889.0092 -7955.726 -7955.726 258.20066 258.20066 23389.641 23389.641 -996.25863 -996.25863 Loop time of 23.1992 on 1 procs for 1000 steps with 2000 atoms Performance: 3.724 ns/day, 6.444 hours/ns, 43.105 timesteps/s 27.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 | 22.539 | 22.539 | 22.539 | 0.0 | 97.15 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.11633 | 0.11633 | 0.11633 | 0.0 | 0.50 Output | 3.0994e-05 | 3.0994e-05 | 3.0994e-05 | 0.0 | 0.00 Modify | 0.47047 | 0.47047 | 0.47047 | 0.0 | 2.03 Other | | 0.07359 | | | 0.32 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5452 ave 5452 max 5452 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 276240 ave 276240 max 276240 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 276240 Ave neighs/atom = 138.12 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.473483896587, Press = -16.012023816195 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.195 | 4.195 | 4.195 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 9000 -7889.0092 -7889.0092 -7955.726 -7955.726 258.20066 258.20066 23389.641 23389.641 -996.25863 -996.25863 10000 -7892.3748 -7892.3748 -7958.5024 -7958.5024 255.92061 255.92061 23316.193 23316.193 3991.2384 3991.2384 Loop time of 24.187 on 1 procs for 1000 steps with 2000 atoms Performance: 3.572 ns/day, 6.719 hours/ns, 41.345 timesteps/s 26.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 | 23.667 | 23.667 | 23.667 | 0.0 | 97.85 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.14603 | 0.14603 | 0.14603 | 0.0 | 0.60 Output | 6.3896e-05 | 6.3896e-05 | 6.3896e-05 | 0.0 | 0.00 Modify | 0.33072 | 0.33072 | 0.33072 | 0.0 | 1.37 Other | | 0.04317 | | | 0.18 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5453 ave 5453 max 5453 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 276298 ave 276298 max 276298 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 276298 Ave neighs/atom = 138.149 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.650122764035, Press = -3.40366536208321 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.195 | 4.195 | 4.195 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 10000 -7892.3748 -7892.3748 -7958.5024 -7958.5024 255.92061 255.92061 23316.193 23316.193 3991.2384 3991.2384 11000 -7891.588 -7891.588 -7956.2611 -7956.2611 250.29152 250.29152 23391.09 23391.09 -1777.1898 -1777.1898 Loop time of 24.4589 on 1 procs for 1000 steps with 2000 atoms Performance: 3.532 ns/day, 6.794 hours/ns, 40.885 timesteps/s 26.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 | 23.729 | 23.729 | 23.729 | 0.0 | 97.02 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.15727 | 0.15727 | 0.15727 | 0.0 | 0.64 Output | 3.0041e-05 | 3.0041e-05 | 3.0041e-05 | 0.0 | 0.00 Modify | 0.53887 | 0.53887 | 0.53887 | 0.0 | 2.20 Other | | 0.03362 | | | 0.14 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5461 ave 5461 max 5461 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 276686 ave 276686 max 276686 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 276686 Ave neighs/atom = 138.343 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.776861577494, Press = 0.22187323304221 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.195 | 4.195 | 4.195 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 11000 -7891.588 -7891.588 -7956.2611 -7956.2611 250.29152 250.29152 23391.09 23391.09 -1777.1898 -1777.1898 12000 -7893.9451 -7893.9451 -7958.1732 -7958.1732 248.56934 248.56934 23373.758 23373.758 -402.577 -402.577 Loop time of 27.0567 on 1 procs for 1000 steps with 2000 atoms Performance: 3.193 ns/day, 7.516 hours/ns, 36.959 timesteps/s 24.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 | 26.513 | 26.513 | 26.513 | 0.0 | 97.99 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.066653 | 0.066653 | 0.066653 | 0.0 | 0.25 Output | 2.8849e-05 | 2.8849e-05 | 2.8849e-05 | 0.0 | 0.00 Modify | 0.40302 | 0.40302 | 0.40302 | 0.0 | 1.49 Other | | 0.07364 | | | 0.27 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5453 ave 5453 max 5453 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 276150 ave 276150 max 276150 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 276150 Ave neighs/atom = 138.075 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.602578544683, Press = -4.30881261350625 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.195 | 4.195 | 4.195 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 12000 -7893.9451 -7893.9451 -7958.1732 -7958.1732 248.56934 248.56934 23373.758 23373.758 -402.577 -402.577 13000 -7889.1769 -7889.1769 -7956.1089 -7956.1089 259.03381 259.03381 23368.992 23368.992 291.40659 291.40659 Loop time of 26.5625 on 1 procs for 1000 steps with 2000 atoms Performance: 3.253 ns/day, 7.378 hours/ns, 37.647 timesteps/s 24.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 | 26.181 | 26.181 | 26.181 | 0.0 | 98.56 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.12612 | 0.12612 | 0.12612 | 0.0 | 0.47 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.24229 | 0.24229 | 0.24229 | 0.0 | 0.91 Other | | 0.01338 | | | 0.05 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5457 ave 5457 max 5457 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 276096 ave 276096 max 276096 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 276096 Ave neighs/atom = 138.048 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.699449568677, Press = -6.21028447020862 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.195 | 4.195 | 4.195 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 13000 -7889.1769 -7889.1769 -7956.1089 -7956.1089 259.03381 259.03381 23368.992 23368.992 291.40659 291.40659 14000 -7892.9328 -7892.9328 -7958.5349 -7958.5349 253.88676 253.88676 23346.136 23346.136 1447.0133 1447.0133 Loop time of 26.8247 on 1 procs for 1000 steps with 2000 atoms Performance: 3.221 ns/day, 7.451 hours/ns, 37.279 timesteps/s 24.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 | 26.071 | 26.071 | 26.071 | 0.0 | 97.19 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.21797 | 0.21797 | 0.21797 | 0.0 | 0.81 Output | 4.8161e-05 | 4.8161e-05 | 4.8161e-05 | 0.0 | 0.00 Modify | 0.39222 | 0.39222 | 0.39222 | 0.0 | 1.46 Other | | 0.1438 | | | 0.54 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5464 ave 5464 max 5464 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 276364 ave 276364 max 276364 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 276364 Ave neighs/atom = 138.182 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.832051346015, Press = 1.00167062059673 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.195 | 4.195 | 4.195 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 14000 -7892.9328 -7892.9328 -7958.5349 -7958.5349 253.88676 253.88676 23346.136 23346.136 1447.0133 1447.0133 15000 -7889.7063 -7889.7063 -7954.2522 -7954.2522 249.79926 249.79926 23414.906 23414.906 -2985.2919 -2985.2919 Loop time of 26.1944 on 1 procs for 1000 steps with 2000 atoms Performance: 3.298 ns/day, 7.276 hours/ns, 38.176 timesteps/s 24.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 | 25.415 | 25.415 | 25.415 | 0.0 | 97.02 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.10573 | 0.10573 | 0.10573 | 0.0 | 0.40 Output | 2.8849e-05 | 2.8849e-05 | 2.8849e-05 | 0.0 | 0.00 Modify | 0.58982 | 0.58982 | 0.58982 | 0.0 | 2.25 Other | | 0.08382 | | | 0.32 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5442 ave 5442 max 5442 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 276466 ave 276466 max 276466 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 276466 Ave neighs/atom = 138.233 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.871333770547, Press = -2.88235449672774 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.195 | 4.195 | 4.195 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 15000 -7889.7063 -7889.7063 -7954.2522 -7954.2522 249.79926 249.79926 23414.906 23414.906 -2985.2919 -2985.2919 16000 -7892.7348 -7892.7348 -7959.7922 -7959.7922 259.51895 259.51895 23333.987 23333.987 2166.8226 2166.8226 Loop time of 25.4959 on 1 procs for 1000 steps with 2000 atoms Performance: 3.389 ns/day, 7.082 hours/ns, 39.222 timesteps/s 24.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 | 24.861 | 24.861 | 24.861 | 0.0 | 97.51 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.12578 | 0.12578 | 0.12578 | 0.0 | 0.49 Output | 2.8849e-05 | 2.8849e-05 | 2.8849e-05 | 0.0 | 0.00 Modify | 0.4209 | 0.4209 | 0.4209 | 0.0 | 1.65 Other | | 0.0881 | | | 0.35 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5436 ave 5436 max 5436 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 276196 ave 276196 max 276196 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 276196 Ave neighs/atom = 138.098 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.899479165182, Press = -5.60750500620847 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.195 | 4.195 | 4.195 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 16000 -7892.7348 -7892.7348 -7959.7922 -7959.7922 259.51895 259.51895 23333.987 23333.987 2166.8226 2166.8226 17000 -7891.4917 -7891.4917 -7956.5155 -7956.5155 251.64883 251.64883 23388.823 23388.823 -1535.0987 -1535.0987 Loop time of 25.0371 on 1 procs for 1000 steps with 2000 atoms Performance: 3.451 ns/day, 6.955 hours/ns, 39.941 timesteps/s 25.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 | 24.345 | 24.345 | 24.345 | 0.0 | 97.23 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.17826 | 0.17826 | 0.17826 | 0.0 | 0.71 Output | 2.8133e-05 | 2.8133e-05 | 2.8133e-05 | 0.0 | 0.00 Modify | 0.47 | 0.47 | 0.47 | 0.0 | 1.88 Other | | 0.04414 | | | 0.18 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5449 ave 5449 max 5449 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 276510 ave 276510 max 276510 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 276510 Ave neighs/atom = 138.255 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.806989865976, Press = -1.0903968874084 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.195 | 4.195 | 4.195 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 17000 -7891.4917 -7891.4917 -7956.5155 -7956.5155 251.64883 251.64883 23388.823 23388.823 -1535.0987 -1535.0987 18000 -7893.345 -7893.345 -7958.9383 -7958.9383 253.85265 253.85265 23356.102 23356.102 1052.8575 1052.8575 Loop time of 23.607 on 1 procs for 1000 steps with 2000 atoms Performance: 3.660 ns/day, 6.557 hours/ns, 42.360 timesteps/s 26.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 | 23.224 | 23.224 | 23.224 | 0.0 | 98.38 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.1763 | 0.1763 | 0.1763 | 0.0 | 0.75 Output | 2.8133e-05 | 2.8133e-05 | 2.8133e-05 | 0.0 | 0.00 Modify | 0.16247 | 0.16247 | 0.16247 | 0.0 | 0.69 Other | | 0.04372 | | | 0.19 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5463 ave 5463 max 5463 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 276122 ave 276122 max 276122 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 276122 Ave neighs/atom = 138.061 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.780779148047, Press = -4.49562270968611 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.195 | 4.195 | 4.195 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 18000 -7893.345 -7893.345 -7958.9383 -7958.9383 253.85265 253.85265 23356.102 23356.102 1052.8575 1052.8575 19000 -7891.5604 -7891.5604 -7958.7512 -7958.7512 260.03561 260.03561 23350.219 23350.219 1649.0737 1649.0737 Loop time of 26.2584 on 1 procs for 1000 steps with 2000 atoms Performance: 3.290 ns/day, 7.294 hours/ns, 38.083 timesteps/s 24.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 | 25.617 | 25.617 | 25.617 | 0.0 | 97.56 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.036543 | 0.036543 | 0.036543 | 0.0 | 0.14 Output | 3.1948e-05 | 3.1948e-05 | 3.1948e-05 | 0.0 | 0.00 Modify | 0.54143 | 0.54143 | 0.54143 | 0.0 | 2.06 Other | | 0.06347 | | | 0.24 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5463 ave 5463 max 5463 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 276246 ave 276246 max 276246 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 276246 Ave neighs/atom = 138.123 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.706703425075, Press = 2.5501878137108 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.195 | 4.195 | 4.195 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 19000 -7891.5604 -7891.5604 -7958.7512 -7958.7512 260.03561 260.03561 23350.219 23350.219 1649.0737 1649.0737 20000 -7894.9204 -7894.9204 -7958.5876 -7958.5876 246.39868 246.39868 23417.25 23417.25 -3489.9326 -3489.9326 Loop time of 26.7656 on 1 procs for 1000 steps with 2000 atoms Performance: 3.228 ns/day, 7.435 hours/ns, 37.361 timesteps/s 24.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 | 26.058 | 26.058 | 26.058 | 0.0 | 97.36 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.1376 | 0.1376 | 0.1376 | 0.0 | 0.51 Output | 3.5048e-05 | 3.5048e-05 | 3.5048e-05 | 0.0 | 0.00 Modify | 0.47609 | 0.47609 | 0.47609 | 0.0 | 1.78 Other | | 0.09361 | | | 0.35 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5459 ave 5459 max 5459 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 276458 ave 276458 max 276458 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 276458 Ave neighs/atom = 138.229 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.622128531493, Press = -7.4032236533988 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.195 | 4.195 | 4.195 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 20000 -7894.9204 -7894.9204 -7958.5876 -7958.5876 246.39868 246.39868 23417.25 23417.25 -3489.9326 -3489.9326 21000 -7891.3759 -7891.3759 -7956.6458 -7956.6458 252.60129 252.60129 23344.248 23344.248 1987.5203 1987.5203 Loop time of 25.9424 on 1 procs for 1000 steps with 2000 atoms Performance: 3.330 ns/day, 7.206 hours/ns, 38.547 timesteps/s 24.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 | 25.086 | 25.086 | 25.086 | 0.0 | 96.70 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.23082 | 0.23082 | 0.23082 | 0.0 | 0.89 Output | 2.1935e-05 | 2.1935e-05 | 2.1935e-05 | 0.0 | 0.00 Modify | 0.49181 | 0.49181 | 0.49181 | 0.0 | 1.90 Other | | 0.1338 | | | 0.52 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5453 ave 5453 max 5453 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 275722 ave 275722 max 275722 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 275722 Ave neighs/atom = 137.861 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.446186185732, Press = -0.56674096742002 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.195 | 4.195 | 4.195 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 21000 -7891.3759 -7891.3759 -7956.6458 -7956.6458 252.60129 252.60129 23344.248 23344.248 1987.5203 1987.5203 22000 -7893.7669 -7893.7669 -7958.2009 -7958.2009 249.36608 249.36608 23395.015 23395.015 -1965.6218 -1965.6218 Loop time of 23.2844 on 1 procs for 1000 steps with 2000 atoms Performance: 3.711 ns/day, 6.468 hours/ns, 42.947 timesteps/s 27.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 | 22.807 | 22.807 | 22.807 | 0.0 | 97.95 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.11525 | 0.11525 | 0.11525 | 0.0 | 0.49 Output | 3.0041e-05 | 3.0041e-05 | 3.0041e-05 | 0.0 | 0.00 Modify | 0.2609 | 0.2609 | 0.2609 | 0.0 | 1.12 Other | | 0.1009 | | | 0.43 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5459 ave 5459 max 5459 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 276612 ave 276612 max 276612 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 276612 Ave neighs/atom = 138.306 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.38172423919, Press = -2.39447917365396 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.195 | 4.195 | 4.195 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 22000 -7893.7669 -7893.7669 -7958.2009 -7958.2009 249.36608 249.36608 23395.015 23395.015 -1965.6218 -1965.6218 23000 -7890.6667 -7890.6667 -7957.1868 -7957.1868 257.4396 257.4396 23349.589 23349.589 1580.8966 1580.8966 Loop time of 23.3686 on 1 procs for 1000 steps with 2000 atoms Performance: 3.697 ns/day, 6.491 hours/ns, 42.792 timesteps/s 26.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 | 22.979 | 22.979 | 22.979 | 0.0 | 98.33 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.15648 | 0.15648 | 0.15648 | 0.0 | 0.67 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.19031 | 0.19031 | 0.19031 | 0.0 | 0.81 Other | | 0.04307 | | | 0.18 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5461 ave 5461 max 5461 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 275952 ave 275952 max 275952 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 275952 Ave neighs/atom = 137.976 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.392802259195, Press = -1.34515623731041 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.195 | 4.195 | 4.195 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 23000 -7890.6667 -7890.6667 -7957.1868 -7957.1868 257.4396 257.4396 23349.589 23349.589 1580.8966 1580.8966 24000 -7894.2579 -7894.2579 -7958.6337 -7958.6337 249.14094 249.14094 23381.063 23381.063 -675.59982 -675.59982 Loop time of 22.2498 on 1 procs for 1000 steps with 2000 atoms Performance: 3.883 ns/day, 6.181 hours/ns, 44.944 timesteps/s 29.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 | 21.732 | 21.732 | 21.732 | 0.0 | 97.67 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.16747 | 0.16747 | 0.16747 | 0.0 | 0.75 Output | 2.8133e-05 | 2.8133e-05 | 2.8133e-05 | 0.0 | 0.00 Modify | 0.33618 | 0.33618 | 0.33618 | 0.0 | 1.51 Other | | 0.01374 | | | 0.06 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5448 ave 5448 max 5448 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 276578 ave 276578 max 276578 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 276578 Ave neighs/atom = 138.289 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.411462481805, Press = 0.737979070464946 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.195 | 4.195 | 4.195 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 24000 -7894.2579 -7894.2579 -7958.6337 -7958.6337 249.14094 249.14094 23381.063 23381.063 -675.59982 -675.59982 25000 -7892.9743 -7892.9743 -7959.0775 -7959.0775 255.82638 255.82638 23381.369 23381.369 -771.65519 -771.65519 Loop time of 22.2997 on 1 procs for 1000 steps with 2000 atoms Performance: 3.874 ns/day, 6.194 hours/ns, 44.844 timesteps/s 28.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 | 21.691 | 21.691 | 21.691 | 0.0 | 97.27 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.13672 | 0.13672 | 0.13672 | 0.0 | 0.61 Output | 2.9802e-05 | 2.9802e-05 | 2.9802e-05 | 0.0 | 0.00 Modify | 0.43823 | 0.43823 | 0.43823 | 0.0 | 1.97 Other | | 0.03363 | | | 0.15 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5466 ave 5466 max 5466 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 275934 ave 275934 max 275934 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 275934 Ave neighs/atom = 137.967 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.377699278417, Press = -6.09439412956417 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.195 | 4.195 | 4.195 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 25000 -7892.9743 -7892.9743 -7959.0775 -7959.0775 255.82638 255.82638 23381.369 23381.369 -771.65519 -771.65519 26000 -7891.3415 -7891.3415 -7957.5425 -7957.5425 256.20449 256.20449 23333.238 23333.238 2699.4673 2699.4673 Loop time of 21.1085 on 1 procs for 1000 steps with 2000 atoms Performance: 4.093 ns/day, 5.863 hours/ns, 47.374 timesteps/s 29.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 | 20.65 | 20.65 | 20.65 | 0.0 | 97.83 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.16559 | 0.16559 | 0.16559 | 0.0 | 0.78 Output | 2.1935e-05 | 2.1935e-05 | 2.1935e-05 | 0.0 | 0.00 Modify | 0.28048 | 0.28048 | 0.28048 | 0.0 | 1.33 Other | | 0.01286 | | | 0.06 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5469 ave 5469 max 5469 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 276016 ave 276016 max 276016 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 276016 Ave neighs/atom = 138.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 = 253.266265842052, Press = 2.3834570623245 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.195 | 4.195 | 4.195 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 26000 -7891.3415 -7891.3415 -7957.5425 -7957.5425 256.20449 256.20449 23333.238 23333.238 2699.4673 2699.4673 27000 -7892.9894 -7892.9894 -7957.4778 -7957.4778 249.57673 249.57673 23389.365 23389.365 -1392.1593 -1392.1593 Loop time of 19.8867 on 1 procs for 1000 steps with 2000 atoms Performance: 4.345 ns/day, 5.524 hours/ns, 50.285 timesteps/s 31.4% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 19.374 | 19.374 | 19.374 | 0.0 | 97.42 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.086338 | 0.086338 | 0.086338 | 0.0 | 0.43 Output | 0.020088 | 0.020088 | 0.020088 | 0.0 | 0.10 Modify | 0.37303 | 0.37303 | 0.37303 | 0.0 | 1.88 Other | | 0.03304 | | | 0.17 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5463 ave 5463 max 5463 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 276550 ave 276550 max 276550 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 276550 Ave neighs/atom = 138.275 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.26433533495, Press = -1.69014831350019 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.195 | 4.195 | 4.195 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 27000 -7892.9894 -7892.9894 -7957.4778 -7957.4778 249.57673 249.57673 23389.365 23389.365 -1392.1593 -1392.1593 28000 -7890.6152 -7890.6152 -7958.7505 -7958.7505 263.69072 263.69072 23365.058 23365.058 787.87719 787.87719 Loop time of 20.7391 on 1 procs for 1000 steps with 2000 atoms Performance: 4.166 ns/day, 5.761 hours/ns, 48.218 timesteps/s 31.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 | 20.355 | 20.355 | 20.355 | 0.0 | 98.15 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.057284 | 0.057284 | 0.057284 | 0.0 | 0.28 Output | 3.0994e-05 | 3.0994e-05 | 3.0994e-05 | 0.0 | 0.00 Modify | 0.25281 | 0.25281 | 0.25281 | 0.0 | 1.22 Other | | 0.07363 | | | 0.36 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5455 ave 5455 max 5455 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 275944 ave 275944 max 275944 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 275944 Ave neighs/atom = 137.972 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.189062707045, Press = -0.616059397999185 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.195 | 4.195 | 4.195 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 28000 -7890.6152 -7890.6152 -7958.7505 -7958.7505 263.69072 263.69072 23365.058 23365.058 787.87719 787.87719 29000 -7892.1563 -7892.1563 -7958.2885 -7958.2885 255.93847 255.93847 23391.284 23391.284 -1504.6647 -1504.6647 Loop time of 21.3351 on 1 procs for 1000 steps with 2000 atoms Performance: 4.050 ns/day, 5.926 hours/ns, 46.871 timesteps/s 30.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 | 20.746 | 20.746 | 20.746 | 0.0 | 97.24 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.1781 | 0.1781 | 0.1781 | 0.0 | 0.83 Output | 3.0041e-05 | 3.0041e-05 | 3.0041e-05 | 0.0 | 0.00 Modify | 0.37709 | 0.37709 | 0.37709 | 0.0 | 1.77 Other | | 0.03373 | | | 0.16 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5464 ave 5464 max 5464 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 276072 ave 276072 max 276072 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 276072 Ave neighs/atom = 138.036 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.115516750099, Press = -1.39181919782068 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.195 | 4.195 | 4.195 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 29000 -7892.1563 -7892.1563 -7958.2885 -7958.2885 255.93847 255.93847 23391.284 23391.284 -1504.6647 -1504.6647 30000 -7892.2839 -7892.2839 -7958.5689 -7958.5689 256.52964 256.52964 23325.589 23325.589 3206.9964 3206.9964 Loop time of 21.0896 on 1 procs for 1000 steps with 2000 atoms Performance: 4.097 ns/day, 5.858 hours/ns, 47.417 timesteps/s 31.7% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 20.65 | 20.65 | 20.65 | 0.0 | 97.91 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.12399 | 0.12399 | 0.12399 | 0.0 | 0.59 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.30096 | 0.30096 | 0.30096 | 0.0 | 1.43 Other | | 0.01499 | | | 0.07 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5446 ave 5446 max 5446 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 276190 ave 276190 max 276190 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 276190 Ave neighs/atom = 138.095 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.039735703962, Press = -1.66009479375333 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.195 | 4.195 | 4.195 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 30000 -7892.2839 -7892.2839 -7958.5689 -7958.5689 256.52964 256.52964 23325.589 23325.589 3206.9964 3206.9964 31000 -7891.4342 -7891.4342 -7956.8643 -7956.8643 253.22138 253.22138 23404.595 23404.595 -2339.0714 -2339.0714 Loop time of 20.821 on 1 procs for 1000 steps with 2000 atoms Performance: 4.150 ns/day, 5.784 hours/ns, 48.028 timesteps/s 30.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 | 20.39 | 20.39 | 20.39 | 0.0 | 97.93 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.086551 | 0.086551 | 0.086551 | 0.0 | 0.42 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.29143 | 0.29143 | 0.29143 | 0.0 | 1.40 Other | | 0.05351 | | | 0.26 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5454 ave 5454 max 5454 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 276732 ave 276732 max 276732 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 276732 Ave neighs/atom = 138.366 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.007102109665, Press = 1.13845957982487 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.195 | 4.195 | 4.195 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 31000 -7891.4342 -7891.4342 -7956.8643 -7956.8643 253.22138 253.22138 23404.595 23404.595 -2339.0714 -2339.0714 32000 -7894.3579 -7894.3579 -7957.741 -7957.741 245.29943 245.29943 23373.189 23373.189 -384.80499 -384.80499 Loop time of 20.4576 on 1 procs for 1000 steps with 2000 atoms Performance: 4.223 ns/day, 5.683 hours/ns, 48.882 timesteps/s 30.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 | 19.942 | 19.942 | 19.942 | 0.0 | 97.48 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.08585 | 0.08585 | 0.08585 | 0.0 | 0.42 Output | 3.6955e-05 | 3.6955e-05 | 3.6955e-05 | 0.0 | 0.00 Modify | 0.36628 | 0.36628 | 0.36628 | 0.0 | 1.79 Other | | 0.06303 | | | 0.31 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5454 ave 5454 max 5454 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 275982 ave 275982 max 275982 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 275982 Ave neighs/atom = 137.991 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.941481446417, Press = -1.2701336368002 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.195 | 4.195 | 4.195 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 32000 -7894.3579 -7894.3579 -7957.741 -7957.741 245.29943 245.29943 23373.189 23373.189 -384.80499 -384.80499 33000 -7893.7575 -7893.7575 -7958.3117 -7958.3117 249.8313 249.8313 23376.999 23376.999 -343.02211 -343.02211 Loop time of 20.2935 on 1 procs for 1000 steps with 2000 atoms Performance: 4.258 ns/day, 5.637 hours/ns, 49.277 timesteps/s 30.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 | 19.866 | 19.866 | 19.866 | 0.0 | 97.89 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.13552 | 0.13552 | 0.13552 | 0.0 | 0.67 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.14881 | 0.14881 | 0.14881 | 0.0 | 0.73 Other | | 0.1434 | | | 0.71 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5468 ave 5468 max 5468 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 276172 ave 276172 max 276172 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 276172 Ave neighs/atom = 138.086 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.958844509889, Press = -0.437071458079962 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.195 | 4.195 | 4.195 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 33000 -7893.7575 -7893.7575 -7958.3117 -7958.3117 249.8313 249.8313 23376.999 23376.999 -343.02211 -343.02211 34000 -7889.6353 -7889.6353 -7956.0406 -7956.0406 256.99547 256.99547 23364.193 23364.193 738.90201 738.90201 Loop time of 19.9366 on 1 procs for 1000 steps with 2000 atoms Performance: 4.334 ns/day, 5.538 hours/ns, 50.159 timesteps/s 31.3% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 19.548 | 19.548 | 19.548 | 0.0 | 98.05 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.1341 | 0.1341 | 0.1341 | 0.0 | 0.67 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.21176 | 0.21176 | 0.21176 | 0.0 | 1.06 Other | | 0.04309 | | | 0.22 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5462 ave 5462 max 5462 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 276072 ave 276072 max 276072 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 276072 Ave neighs/atom = 138.036 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.003542375256, Press = -1.16758240210816 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.195 | 4.195 | 4.195 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 34000 -7889.6353 -7889.6353 -7956.0406 -7956.0406 256.99547 256.99547 23364.193 23364.193 738.90201 738.90201 35000 -7892.3786 -7892.3786 -7958.1679 -7958.1679 254.61127 254.61127 23350.739 23350.739 1634.1609 1634.1609 Loop time of 20.0839 on 1 procs for 1000 steps with 2000 atoms Performance: 4.302 ns/day, 5.579 hours/ns, 49.791 timesteps/s 31.1% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 19.624 | 19.624 | 19.624 | 0.0 | 97.71 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.21597 | 0.21597 | 0.21597 | 0.0 | 1.08 Output | 2.8133e-05 | 2.8133e-05 | 2.8133e-05 | 0.0 | 0.00 Modify | 0.2311 | 0.2311 | 0.2311 | 0.0 | 1.15 Other | | 0.01324 | | | 0.07 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5455 ave 5455 max 5455 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 276544 ave 276544 max 276544 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 276544 Ave neighs/atom = 138.272 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" jump SELF break # Write final averaged volume to file if temperature and volume have converged; otherwise wirte a # flag to indicate non-convergence. variable myStep equal step if "${myStep} < 2000000" then "print '${V}' file output/vol_T253.15.out" else "print 'not_converged' file output/vol_T253.15.out" print '${V}' file output/vol_T253.15.out 23370.9715568794 print "LAMMPS calculation completed" LAMMPS calculation completed quit 0