# Variables that can be adjusted by kim-lammps-preprocessor to switch unit sets for # Simulator Models variable _u_distance equal 1.0 variable _u_energy equal 1.0 variable _u_mass equal 1.0 variable _u_time equal 1.0 variable _u_pressure equal 1.0 variable _u_temperature equal 1.0 # This line may be swapped out by kim-lammps-preprocessor if running against a Simulator # Model whose atom_style is not 'atomic' atom_style atomic # periodic boundary conditions along all three dimensions boundary p p p # Set neighbor skin variable neigh_skin equal 2.0*${_u_distance} variable neigh_skin equal 2.0*1 neighbor ${neigh_skin} bin neighbor 2 bin # create a supercell with cubic lattice (fcc, bcc, sc, or diamond) # using 10*10*10 conventional (orthogonal) unit cells variable latticeconst_converted equal 3.139999896287918*${_u_distance} variable latticeconst_converted equal 3.139999896287918*1 lattice bcc ${latticeconst_converted} lattice bcc 3.13999989628792 Lattice spacing in x,y,z = 3.14 3.14 3.14 region simbox block 0 10 0 10 0 10 units lattice create_box 1 simbox Created orthogonal box = (0 0 0) to (31.4 31.4 31.4) 1 by 1 by 1 MPI processor grid create_atoms 1 box Created 2000 atoms create_atoms CPU = 0.000332117 secs variable mass_converted equal 183.84*${_u_mass} variable mass_converted equal 183.84*1 # specify which KIM Model to use pair_style kim EAM_Dynamo_MarinicaVentelonGilbert_2013EAM2_W__MO_204305659515_000 pair_coeff * * W mass 1 ${mass_converted} mass 1 183.84 # initial volume variable v equal vol # assign formula variable V0 equal ${v} # evaluate initial value variable V0 equal 30959.1409323212 variable V0_metal equal ${V0}/(${_u_distance}*${_u_distance}*${_u_distance}) variable V0_metal equal 30959.1409323212/(${_u_distance}*${_u_distance}*${_u_distance}) variable V0_metal equal 30959.1409323212/(1*${_u_distance}*${_u_distance}) variable V0_metal equal 30959.1409323212/(1*1*${_u_distance}) variable V0_metal equal 30959.1409323212/(1*1*1) variable V0_metal_times1000 equal ${V0_metal}*1000 variable V0_metal_times1000 equal 30959.1409323212*1000 print "Initial system volume: ${V0_metal} Angstroms^3" Initial system volume: 30959.1409323212 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 273.15*${_u_temperature} variable temp_converted equal 273.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 273.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 273.15 ${temp_converted} ${Tdamp_converted} iso ${press_converted} ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 273.15 273.15 ${Tdamp_converted} iso ${press_converted} ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 273.15 273.15 0.1 iso ${press_converted} ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 273.15 273.15 0.1 iso 0 ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 273.15 273.15 0.1 iso 0 0 ${Pdamp_converted} fix ensemble all npt temp 273.15 273.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 "273.15 - 0.2" variable T_up equal "273.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.5 ghost atom cutoff = 7.5 binsize = 3.75, bins = 9 9 9 1 neighbor lists, perpetual/occasional/extra = 1 0 0 (1) pair kim, perpetual attributes: full, newton off, cut 7.5 pair build: full/bin/atomonly stencil: full/bin/3d bin: standard Per MPI rank memory allocation (min/avg/max) = 4.133 | 4.133 | 4.133 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 0 -17729.381 -17729.381 -17799.96 -17799.96 273.15 273.15 30959.141 30959.141 2435.0135 2435.0135 1000 -17674.213 -17674.213 -17742.85 -17742.85 265.63243 265.63243 31178.898 31178.898 839.26459 839.26459 Loop time of 12.6761 on 1 procs for 1000 steps with 2000 atoms Performance: 6.816 ns/day, 3.521 hours/ns, 78.888 timesteps/s 53.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.491 | 12.491 | 12.491 | 0.0 | 98.54 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.02685 | 0.02685 | 0.02685 | 0.0 | 0.21 Output | 3.0994e-05 | 3.0994e-05 | 3.0994e-05 | 0.0 | 0.00 Modify | 0.12628 | 0.12628 | 0.12628 | 0.0 | 1.00 Other | | 0.03184 | | | 0.25 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4119 ave 4119 max 4119 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224000 ave 224000 max 224000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224000 Ave neighs/atom = 112 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.133 | 4.133 | 4.133 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 1000 -17674.213 -17674.213 -17742.85 -17742.85 265.63243 265.63243 31178.898 31178.898 839.26459 839.26459 2000 -17666.574 -17666.574 -17741.031 -17741.031 288.15422 288.15422 31206.44 31206.44 -1550.2611 -1550.2611 Loop time of 12.0468 on 1 procs for 1000 steps with 2000 atoms Performance: 7.172 ns/day, 3.346 hours/ns, 83.010 timesteps/s 57.2% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 11.743 | 11.743 | 11.743 | 0.0 | 97.48 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.066484 | 0.066484 | 0.066484 | 0.0 | 0.55 Output | 3.5048e-05 | 3.5048e-05 | 3.5048e-05 | 0.0 | 0.00 Modify | 0.22597 | 0.22597 | 0.22597 | 0.0 | 1.88 Other | | 0.01163 | | | 0.10 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4119 ave 4119 max 4119 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224002 ave 224002 max 224002 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224002 Ave neighs/atom = 112.001 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.133 | 4.133 | 4.133 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 2000 -17666.574 -17666.574 -17741.031 -17741.031 288.15422 288.15422 31206.44 31206.44 -1550.2611 -1550.2611 3000 -17671.138 -17671.138 -17742.855 -17742.855 277.55043 277.55043 31179.953 31179.953 713.60381 713.60381 Loop time of 12.5967 on 1 procs for 1000 steps with 2000 atoms Performance: 6.859 ns/day, 3.499 hours/ns, 79.386 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 | 12.43 | 12.43 | 12.43 | 0.0 | 98.68 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.048219 | 0.048219 | 0.048219 | 0.0 | 0.38 Output | 3.7909e-05 | 3.7909e-05 | 3.7909e-05 | 0.0 | 0.00 Modify | 0.10651 | 0.10651 | 0.10651 | 0.0 | 0.85 Other | | 0.01176 | | | 0.09 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4119 ave 4119 max 4119 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224006 ave 224006 max 224006 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224006 Ave neighs/atom = 112.003 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.133 | 4.133 | 4.133 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 3000 -17671.138 -17671.138 -17742.855 -17742.855 277.55043 277.55043 31179.953 31179.953 713.60381 713.60381 4000 -17670.891 -17670.891 -17741.549 -17741.549 273.45432 273.45432 31221.947 31221.947 -4309.8901 -4309.8901 Loop time of 11.8582 on 1 procs for 1000 steps with 2000 atoms Performance: 7.286 ns/day, 3.294 hours/ns, 84.330 timesteps/s 58.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 | 11.655 | 11.655 | 11.655 | 0.0 | 98.29 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.026774 | 0.026774 | 0.026774 | 0.0 | 0.23 Output | 3.9101e-05 | 3.9101e-05 | 3.9101e-05 | 0.0 | 0.00 Modify | 0.16443 | 0.16443 | 0.16443 | 0.0 | 1.39 Other | | 0.01189 | | | 0.10 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4119 ave 4119 max 4119 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224002 ave 224002 max 224002 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224002 Ave neighs/atom = 112.001 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.133 | 4.133 | 4.133 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 4000 -17670.891 -17670.891 -17741.549 -17741.549 273.45432 273.45432 31221.947 31221.947 -4309.8901 -4309.8901 5000 -17667.97 -17667.97 -17739.838 -17739.838 278.13606 278.13606 31179.449 31179.449 2019.5206 2019.5206 Loop time of 12.3457 on 1 procs for 1000 steps with 2000 atoms Performance: 6.998 ns/day, 3.429 hours/ns, 81.000 timesteps/s 56.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 | 12.095 | 12.095 | 12.095 | 0.0 | 97.97 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.046471 | 0.046471 | 0.046471 | 0.0 | 0.38 Output | 2.3127e-05 | 2.3127e-05 | 2.3127e-05 | 0.0 | 0.00 Modify | 0.17207 | 0.17207 | 0.17207 | 0.0 | 1.39 Other | | 0.03167 | | | 0.26 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4119 ave 4119 max 4119 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224002 ave 224002 max 224002 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224002 Ave neighs/atom = 112.001 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 = 278.297113461303, Press = -53.3536191053601 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.133 | 4.133 | 4.133 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 5000 -17667.97 -17667.97 -17739.838 -17739.838 278.13606 278.13606 31179.449 31179.449 2019.5206 2019.5206 6000 -17669.995 -17669.995 -17741.531 -17741.531 276.85055 276.85055 31195.998 31195.998 -541.88903 -541.88903 Loop time of 10.1921 on 1 procs for 1000 steps with 2000 atoms Performance: 8.477 ns/day, 2.831 hours/ns, 98.115 timesteps/s 68.1% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 9.9831 | 9.9831 | 9.9831 | 0.0 | 97.95 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.026372 | 0.026372 | 0.026372 | 0.0 | 0.26 Output | 4.1962e-05 | 4.1962e-05 | 4.1962e-05 | 0.0 | 0.00 Modify | 0.15016 | 0.15016 | 0.15016 | 0.0 | 1.47 Other | | 0.03251 | | | 0.32 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4119 ave 4119 max 4119 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224004 ave 224004 max 224004 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224004 Ave neighs/atom = 112.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 = 273.064436252428, Press = 18.0463009717728 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.133 | 4.133 | 4.133 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 6000 -17669.995 -17669.995 -17741.531 -17741.531 276.85055 276.85055 31195.998 31195.998 -541.88903 -541.88903 7000 -17671.861 -17671.861 -17741.59 -17741.59 269.8555 269.8555 31184.433 31184.433 536.8151 536.8151 Loop time of 12.9589 on 1 procs for 1000 steps with 2000 atoms Performance: 6.667 ns/day, 3.600 hours/ns, 77.167 timesteps/s 54.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.749 | 12.749 | 12.749 | 0.0 | 98.38 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.046531 | 0.046531 | 0.046531 | 0.0 | 0.36 Output | 3.4094e-05 | 3.4094e-05 | 3.4094e-05 | 0.0 | 0.00 Modify | 0.1508 | 0.1508 | 0.1508 | 0.0 | 1.16 Other | | 0.01211 | | | 0.09 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4119 ave 4119 max 4119 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224000 ave 224000 max 224000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224000 Ave neighs/atom = 112 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 = 274.274973653511, Press = 5.95849253072587 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.133 | 4.133 | 4.133 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 7000 -17671.861 -17671.861 -17741.59 -17741.59 269.8555 269.8555 31184.433 31184.433 536.8151 536.8151 8000 -17669.67 -17669.67 -17740.864 -17740.864 275.52806 275.52806 31228.672 31228.672 -4695.0122 -4695.0122 Loop time of 12.4194 on 1 procs for 1000 steps with 2000 atoms Performance: 6.957 ns/day, 3.450 hours/ns, 80.519 timesteps/s 56.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.172 | 12.172 | 12.172 | 0.0 | 98.00 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.086369 | 0.086369 | 0.086369 | 0.0 | 0.70 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.12968 | 0.12968 | 0.12968 | 0.0 | 1.04 Other | | 0.03172 | | | 0.26 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4119 ave 4119 max 4119 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224004 ave 224004 max 224004 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224004 Ave neighs/atom = 112.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 = 273.659561491206, Press = 4.3873668211127 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.133 | 4.133 | 4.133 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 8000 -17669.67 -17669.67 -17740.864 -17740.864 275.52806 275.52806 31228.672 31228.672 -4695.0122 -4695.0122 9000 -17670.797 -17670.797 -17740.112 -17740.112 268.25495 268.25495 31183.478 31183.478 1261.1019 1261.1019 Loop time of 11.9002 on 1 procs for 1000 steps with 2000 atoms Performance: 7.260 ns/day, 3.306 hours/ns, 84.032 timesteps/s 58.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 | 11.652 | 11.652 | 11.652 | 0.0 | 97.92 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.086666 | 0.086666 | 0.086666 | 0.0 | 0.73 Output | 2.8133e-05 | 2.8133e-05 | 2.8133e-05 | 0.0 | 0.00 Modify | 0.14946 | 0.14946 | 0.14946 | 0.0 | 1.26 Other | | 0.0117 | | | 0.10 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4119 ave 4119 max 4119 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224004 ave 224004 max 224004 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224004 Ave neighs/atom = 112.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 = 273.190242830989, Press = 3.47924829883985 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.133 | 4.133 | 4.133 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 9000 -17670.797 -17670.797 -17740.112 -17740.112 268.25495 268.25495 31183.478 31183.478 1261.1019 1261.1019 10000 -17670.923 -17670.923 -17740.2 -17740.2 268.11259 268.11259 31206.309 31206.309 -1554.4963 -1554.4963 Loop time of 11.3467 on 1 procs for 1000 steps with 2000 atoms Performance: 7.615 ns/day, 3.152 hours/ns, 88.131 timesteps/s 61.7% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 11.138 | 11.138 | 11.138 | 0.0 | 98.16 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.046474 | 0.046474 | 0.046474 | 0.0 | 0.41 Output | 5.7936e-05 | 5.7936e-05 | 5.7936e-05 | 0.0 | 0.00 Modify | 0.15005 | 0.15005 | 0.15005 | 0.0 | 1.32 Other | | 0.01174 | | | 0.10 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4119 ave 4119 max 4119 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224002 ave 224002 max 224002 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224002 Ave neighs/atom = 112.001 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 = 272.909983960187, Press = 4.4637740417864 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.133 | 4.133 | 4.133 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 10000 -17670.923 -17670.923 -17740.2 -17740.2 268.11259 268.11259 31206.309 31206.309 -1554.4963 -1554.4963 11000 -17667.606 -17667.606 -17738.434 -17738.434 274.10873 274.10873 31216.171 31216.171 -1765.9948 -1765.9948 Loop time of 10.2865 on 1 procs for 1000 steps with 2000 atoms Performance: 8.399 ns/day, 2.857 hours/ns, 97.215 timesteps/s 67.7% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 10.139 | 10.139 | 10.139 | 0.0 | 98.56 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.026575 | 0.026575 | 0.026575 | 0.0 | 0.26 Output | 2.8133e-05 | 2.8133e-05 | 2.8133e-05 | 0.0 | 0.00 Modify | 0.10946 | 0.10946 | 0.10946 | 0.0 | 1.06 Other | | 0.01181 | | | 0.11 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4119 ave 4119 max 4119 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224006 ave 224006 max 224006 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224006 Ave neighs/atom = 112.003 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 = 272.84164302053, Press = -4.35805151743223 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.133 | 4.133 | 4.133 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 11000 -17667.606 -17667.606 -17738.434 -17738.434 274.10873 274.10873 31216.171 31216.171 -1765.9948 -1765.9948 12000 -17671.028 -17671.028 -17741.902 -17741.902 274.29119 274.29119 31202.221 31202.221 -2360.786 -2360.786 Loop time of 12.3646 on 1 procs for 1000 steps with 2000 atoms Performance: 6.988 ns/day, 3.435 hours/ns, 80.876 timesteps/s 56.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 | 12.155 | 12.155 | 12.155 | 0.0 | 98.30 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.02624 | 0.02624 | 0.02624 | 0.0 | 0.21 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.17205 | 0.17205 | 0.17205 | 0.0 | 1.39 Other | | 0.01168 | | | 0.09 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4119 ave 4119 max 4119 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224002 ave 224002 max 224002 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224002 Ave neighs/atom = 112.001 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 = 273.125318898785, Press = -0.980110872160028 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.133 | 4.133 | 4.133 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 12000 -17671.028 -17671.028 -17741.902 -17741.902 274.29119 274.29119 31202.221 31202.221 -2360.786 -2360.786 13000 -17667.946 -17667.946 -17738.649 -17738.649 273.62539 273.62539 31197.234 31197.234 35.994991 35.994991 Loop time of 12.391 on 1 procs for 1000 steps with 2000 atoms Performance: 6.973 ns/day, 3.442 hours/ns, 80.704 timesteps/s 55.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.221 | 12.221 | 12.221 | 0.0 | 98.63 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.046335 | 0.046335 | 0.046335 | 0.0 | 0.37 Output | 5.9128e-05 | 5.9128e-05 | 5.9128e-05 | 0.0 | 0.00 Modify | 0.11176 | 0.11176 | 0.11176 | 0.0 | 0.90 Other | | 0.01174 | | | 0.09 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4119 ave 4119 max 4119 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224002 ave 224002 max 224002 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224002 Ave neighs/atom = 112.001 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 = 273.353058155487, Press = -1.5540672827507 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.133 | 4.133 | 4.133 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 13000 -17667.946 -17667.946 -17738.649 -17738.649 273.62539 273.62539 31197.234 31197.234 35.994991 35.994991 14000 -17670.723 -17670.723 -17740.052 -17740.052 268.3082 268.3082 31162.169 31162.169 3410.5874 3410.5874 Loop time of 11.0983 on 1 procs for 1000 steps with 2000 atoms Performance: 7.785 ns/day, 3.083 hours/ns, 90.104 timesteps/s 63.3% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 10.868 | 10.868 | 10.868 | 0.0 | 97.93 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.026353 | 0.026353 | 0.026353 | 0.0 | 0.24 Output | 2.9802e-05 | 2.9802e-05 | 2.9802e-05 | 0.0 | 0.00 Modify | 0.19163 | 0.19163 | 0.19163 | 0.0 | 1.73 Other | | 0.01204 | | | 0.11 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4119 ave 4119 max 4119 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224006 ave 224006 max 224006 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224006 Ave neighs/atom = 112.003 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 = 273.416360214425, Press = 5.83265601958804 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.133 | 4.133 | 4.133 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 14000 -17670.723 -17670.723 -17740.052 -17740.052 268.3082 268.3082 31162.169 31162.169 3410.5874 3410.5874 15000 -17670.725 -17670.725 -17742.034 -17742.034 275.97328 275.97328 31204.72 31204.72 -2147.7456 -2147.7456 Loop time of 12.7542 on 1 procs for 1000 steps with 2000 atoms Performance: 6.774 ns/day, 3.543 hours/ns, 78.406 timesteps/s 55.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.564 | 12.564 | 12.564 | 0.0 | 98.51 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.046378 | 0.046378 | 0.046378 | 0.0 | 0.36 Output | 2.1935e-05 | 2.1935e-05 | 2.1935e-05 | 0.0 | 0.00 Modify | 0.13166 | 0.13166 | 0.13166 | 0.0 | 1.03 Other | | 0.01183 | | | 0.09 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4119 ave 4119 max 4119 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224006 ave 224006 max 224006 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224006 Ave neighs/atom = 112.003 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 = 273.623160439631, Press = -1.01037214564581 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.133 | 4.133 | 4.133 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 15000 -17670.725 -17670.725 -17742.034 -17742.034 275.97328 275.97328 31204.72 31204.72 -2147.7456 -2147.7456 16000 -17667.594 -17667.594 -17740.244 -17740.244 281.16115 281.16115 31182.137 31182.137 1142.9254 1142.9254 Loop time of 14.4853 on 1 procs for 1000 steps with 2000 atoms Performance: 5.965 ns/day, 4.024 hours/ns, 69.035 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 | 14.134 | 14.134 | 14.134 | 0.0 | 97.58 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.02668 | 0.02668 | 0.02668 | 0.0 | 0.18 Output | 3.0041e-05 | 3.0041e-05 | 3.0041e-05 | 0.0 | 0.00 Modify | 0.31225 | 0.31225 | 0.31225 | 0.0 | 2.16 Other | | 0.01192 | | | 0.08 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4119 ave 4119 max 4119 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224002 ave 224002 max 224002 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224002 Ave neighs/atom = 112.001 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 = 273.729169384027, Press = 5.8207666216719 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.133 | 4.133 | 4.133 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 16000 -17667.594 -17667.594 -17740.244 -17740.244 281.16115 281.16115 31182.137 31182.137 1142.9254 1142.9254 17000 -17671.514 -17671.514 -17742.345 -17742.345 274.12466 274.12466 31193.171 31193.171 -1869.1943 -1869.1943 Loop time of 15.1974 on 1 procs for 1000 steps with 2000 atoms Performance: 5.685 ns/day, 4.222 hours/ns, 65.801 timesteps/s 49.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 | 14.944 | 14.944 | 14.944 | 0.0 | 98.33 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.06743 | 0.06743 | 0.06743 | 0.0 | 0.44 Output | 2.3127e-05 | 2.3127e-05 | 2.3127e-05 | 0.0 | 0.00 Modify | 0.15362 | 0.15362 | 0.15362 | 0.0 | 1.01 Other | | 0.0323 | | | 0.21 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4119 ave 4119 max 4119 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224000 ave 224000 max 224000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224000 Ave neighs/atom = 112 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 = 273.483566059415, Press = 5.04554605758829 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.133 | 4.133 | 4.133 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 17000 -17671.514 -17671.514 -17742.345 -17742.345 274.12466 274.12466 31193.171 31193.171 -1869.1943 -1869.1943 18000 -17670.76 -17670.76 -17739.578 -17739.578 266.33285 266.33285 31205.557 31205.557 -2089.6707 -2089.6707 Loop time of 15.6795 on 1 procs for 1000 steps with 2000 atoms Performance: 5.510 ns/day, 4.355 hours/ns, 63.778 timesteps/s 49.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 | 15.4 | 15.4 | 15.4 | 0.0 | 98.21 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.093669 | 0.093669 | 0.093669 | 0.0 | 0.60 Output | 2.2888e-05 | 2.2888e-05 | 2.2888e-05 | 0.0 | 0.00 Modify | 0.15377 | 0.15377 | 0.15377 | 0.0 | 0.98 Other | | 0.03244 | | | 0.21 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4119 ave 4119 max 4119 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224002 ave 224002 max 224002 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224002 Ave neighs/atom = 112.001 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 = 273.429759194952, Press = 2.32416954423586 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.133 | 4.133 | 4.133 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 18000 -17670.76 -17670.76 -17739.578 -17739.578 266.33285 266.33285 31205.557 31205.557 -2089.6707 -2089.6707 19000 -17668.711 -17668.711 -17740.886 -17740.886 279.32646 279.32646 31200.487 31200.487 -1659.3353 -1659.3353 Loop time of 16.3881 on 1 procs for 1000 steps with 2000 atoms Performance: 5.272 ns/day, 4.552 hours/ns, 61.020 timesteps/s 45.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 | 16.086 | 16.086 | 16.086 | 0.0 | 98.16 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.026906 | 0.026906 | 0.026906 | 0.0 | 0.16 Output | 3.3855e-05 | 3.3855e-05 | 3.3855e-05 | 0.0 | 0.00 Modify | 0.26296 | 0.26296 | 0.26296 | 0.0 | 1.60 Other | | 0.01243 | | | 0.08 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4119 ave 4119 max 4119 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224000 ave 224000 max 224000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224000 Ave neighs/atom = 112 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 = 273.226129892001, Press = 1.49668489197575 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.133 | 4.133 | 4.133 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 19000 -17668.711 -17668.711 -17740.886 -17740.886 279.32646 279.32646 31200.487 31200.487 -1659.3353 -1659.3353 20000 -17671.237 -17671.237 -17741.47 -17741.47 271.81086 271.81086 31197.764 31197.764 -1276.799 -1276.799 Loop time of 16.69 on 1 procs for 1000 steps with 2000 atoms Performance: 5.177 ns/day, 4.636 hours/ns, 59.916 timesteps/s 45.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 | 16.356 | 16.356 | 16.356 | 0.0 | 98.00 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.027125 | 0.027125 | 0.027125 | 0.0 | 0.16 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.29432 | 0.29432 | 0.29432 | 0.0 | 1.76 Other | | 0.01239 | | | 0.07 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4119 ave 4119 max 4119 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224008 ave 224008 max 224008 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224008 Ave neighs/atom = 112.004 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 = 273.229915070278, Press = 4.46132138513913 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.133 | 4.133 | 4.133 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 20000 -17671.237 -17671.237 -17741.47 -17741.47 271.81086 271.81086 31197.764 31197.764 -1276.799 -1276.799 21000 -17668.527 -17668.527 -17742.815 -17742.815 287.50265 287.50265 31191.273 31191.273 -952.65613 -952.65613 Loop time of 16.7113 on 1 procs for 1000 steps with 2000 atoms Performance: 5.170 ns/day, 4.642 hours/ns, 59.840 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 | 16.399 | 16.399 | 16.399 | 0.0 | 98.13 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.027066 | 0.027066 | 0.027066 | 0.0 | 0.16 Output | 2.2888e-05 | 2.2888e-05 | 2.2888e-05 | 0.0 | 0.00 Modify | 0.21297 | 0.21297 | 0.21297 | 0.0 | 1.27 Other | | 0.07242 | | | 0.43 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4119 ave 4119 max 4119 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224004 ave 224004 max 224004 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224004 Ave neighs/atom = 112.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 = 273.238414433894, Press = 2.98341520981558 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.133 | 4.133 | 4.133 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 21000 -17668.527 -17668.527 -17742.815 -17742.815 287.50265 287.50265 31191.273 31191.273 -952.65613 -952.65613 22000 -17668.9 -17668.9 -17740.853 -17740.853 278.46383 278.46383 31197.515 31197.515 -878.42837 -878.42837 Loop time of 16.1187 on 1 procs for 1000 steps with 2000 atoms Performance: 5.360 ns/day, 4.477 hours/ns, 62.040 timesteps/s 47.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 | 15.837 | 15.837 | 15.837 | 0.0 | 98.25 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.087166 | 0.087166 | 0.087166 | 0.0 | 0.54 Output | 2.8849e-05 | 2.8849e-05 | 2.8849e-05 | 0.0 | 0.00 Modify | 0.18268 | 0.18268 | 0.18268 | 0.0 | 1.13 Other | | 0.01213 | | | 0.08 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4119 ave 4119 max 4119 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224000 ave 224000 max 224000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224000 Ave neighs/atom = 112 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 = 273.29059983326, Press = 2.66029129870954 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.133 | 4.133 | 4.133 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 22000 -17668.9 -17668.9 -17740.853 -17740.853 278.46383 278.46383 31197.515 31197.515 -878.42837 -878.42837 23000 -17670.738 -17670.738 -17739.466 -17739.466 265.98714 265.98714 31193.765 31193.765 -598.1531 -598.1531 Loop time of 16.6224 on 1 procs for 1000 steps with 2000 atoms Performance: 5.198 ns/day, 4.617 hours/ns, 60.160 timesteps/s 46.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 | 16.339 | 16.339 | 16.339 | 0.0 | 98.30 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.067421 | 0.067421 | 0.067421 | 0.0 | 0.41 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.20347 | 0.20347 | 0.20347 | 0.0 | 1.22 Other | | 0.01243 | | | 0.07 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4119 ave 4119 max 4119 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224008 ave 224008 max 224008 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224008 Ave neighs/atom = 112.004 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 = 273.461867835673, Press = 1.07910373970324 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.133 | 4.133 | 4.133 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 23000 -17670.738 -17670.738 -17739.466 -17739.466 265.98714 265.98714 31193.765 31193.765 -598.1531 -598.1531 24000 -17668.992 -17668.992 -17738.809 -17738.809 270.19907 270.19907 31202.736 31202.736 -1315.0813 -1315.0813 Loop time of 14.79 on 1 procs for 1000 steps with 2000 atoms Performance: 5.842 ns/day, 4.108 hours/ns, 67.613 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 | 14.468 | 14.468 | 14.468 | 0.0 | 97.82 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.067227 | 0.067227 | 0.067227 | 0.0 | 0.45 Output | 2.8849e-05 | 2.8849e-05 | 2.8849e-05 | 0.0 | 0.00 Modify | 0.24314 | 0.24314 | 0.24314 | 0.0 | 1.64 Other | | 0.01213 | | | 0.08 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4119 ave 4119 max 4119 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224002 ave 224002 max 224002 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224002 Ave neighs/atom = 112.001 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 = 273.461133881103, Press = 2.17760682104045 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.133 | 4.133 | 4.133 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 24000 -17668.992 -17668.992 -17738.809 -17738.809 270.19907 270.19907 31202.736 31202.736 -1315.0813 -1315.0813 25000 -17671.684 -17671.684 -17740.01 -17740.01 264.42958 264.42958 31233.33 31233.33 -4673.9993 -4673.9993 Loop time of 14.6007 on 1 procs for 1000 steps with 2000 atoms Performance: 5.918 ns/day, 4.056 hours/ns, 68.490 timesteps/s 50.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.37 | 14.37 | 14.37 | 0.0 | 98.42 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.026381 | 0.026381 | 0.026381 | 0.0 | 0.18 Output | 4.8876e-05 | 4.8876e-05 | 4.8876e-05 | 0.0 | 0.00 Modify | 0.17233 | 0.17233 | 0.17233 | 0.0 | 1.18 Other | | 0.032 | | | 0.22 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4119 ave 4119 max 4119 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224006 ave 224006 max 224006 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224006 Ave neighs/atom = 112.003 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 = 273.397934680242, Press = -1.76899275376454 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.133 | 4.133 | 4.133 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 25000 -17671.684 -17671.684 -17740.01 -17740.01 264.42958 264.42958 31233.33 31233.33 -4673.9993 -4673.9993 26000 -17668.478 -17668.478 -17739.481 -17739.481 274.78753 274.78753 31208.056 31208.056 -1498.8334 -1498.8334 Loop time of 14.7636 on 1 procs for 1000 steps with 2000 atoms Performance: 5.852 ns/day, 4.101 hours/ns, 67.734 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 | 14.512 | 14.512 | 14.512 | 0.0 | 98.30 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.046751 | 0.046751 | 0.046751 | 0.0 | 0.32 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.19275 | 0.19275 | 0.19275 | 0.0 | 1.31 Other | | 0.01217 | | | 0.08 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4119 ave 4119 max 4119 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224006 ave 224006 max 224006 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224006 Ave neighs/atom = 112.003 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 = 273.227659833692, Press = 1.92008226666138 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.133 | 4.133 | 4.133 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 26000 -17668.478 -17668.478 -17739.481 -17739.481 274.78753 274.78753 31208.056 31208.056 -1498.8334 -1498.8334 27000 -17670.138 -17670.138 -17742.099 -17742.099 278.49965 278.49965 31166.846 31166.846 1879.2344 1879.2344 Loop time of 14.9007 on 1 procs for 1000 steps with 2000 atoms Performance: 5.798 ns/day, 4.139 hours/ns, 67.111 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 | 14.667 | 14.667 | 14.667 | 0.0 | 98.43 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.028993 | 0.028993 | 0.028993 | 0.0 | 0.19 Output | 4.8161e-05 | 4.8161e-05 | 4.8161e-05 | 0.0 | 0.00 Modify | 0.19263 | 0.19263 | 0.19263 | 0.0 | 1.29 Other | | 0.01209 | | | 0.08 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4119 ave 4119 max 4119 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224004 ave 224004 max 224004 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224004 Ave neighs/atom = 112.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 = 273.244383931127, Press = 1.33535728216928 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.133 | 4.133 | 4.133 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 27000 -17670.138 -17670.138 -17742.099 -17742.099 278.49965 278.49965 31166.846 31166.846 1879.2344 1879.2344 28000 -17673.87 -17673.87 -17744.118 -17744.118 271.86562 271.86562 31183.78 31183.78 -458.49358 -458.49358 Loop time of 17.9658 on 1 procs for 1000 steps with 2000 atoms Performance: 4.809 ns/day, 4.991 hours/ns, 55.661 timesteps/s 43.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.697 | 17.697 | 17.697 | 0.0 | 98.50 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.027773 | 0.027773 | 0.027773 | 0.0 | 0.15 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.22887 | 0.22887 | 0.22887 | 0.0 | 1.27 Other | | 0.0126 | | | 0.07 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4119 ave 4119 max 4119 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224004 ave 224004 max 224004 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224004 Ave neighs/atom = 112.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 = 273.213331365948, Press = 0.828709334553643 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.133 | 4.133 | 4.133 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 28000 -17673.87 -17673.87 -17744.118 -17744.118 271.86562 271.86562 31183.78 31183.78 -458.49358 -458.49358 29000 -17669.452 -17669.452 -17740.891 -17740.891 276.47658 276.47658 31149.392 31149.392 6031.6718 6031.6718 Loop time of 18.7078 on 1 procs for 1000 steps with 2000 atoms Performance: 4.618 ns/day, 5.197 hours/ns, 53.454 timesteps/s 42.9% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 18.333 | 18.333 | 18.333 | 0.0 | 98.00 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.087994 | 0.087994 | 0.087994 | 0.0 | 0.47 Output | 3.0041e-05 | 3.0041e-05 | 3.0041e-05 | 0.0 | 0.00 Modify | 0.25414 | 0.25414 | 0.25414 | 0.0 | 1.36 Other | | 0.03245 | | | 0.17 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4119 ave 4119 max 4119 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224002 ave 224002 max 224002 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224002 Ave neighs/atom = 112.001 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 = 273.149397536694, Press = 1.66373124111469 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.133 | 4.133 | 4.133 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 29000 -17669.452 -17669.452 -17740.891 -17740.891 276.47658 276.47658 31149.392 31149.392 6031.6718 6031.6718 30000 -17669.988 -17669.988 -17741.436 -17741.436 276.51097 276.51097 31196.669 31196.669 -1307.4038 -1307.4038 Loop time of 18.5807 on 1 procs for 1000 steps with 2000 atoms Performance: 4.650 ns/day, 5.161 hours/ns, 53.819 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 | 18.316 | 18.316 | 18.316 | 0.0 | 98.58 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.067814 | 0.067814 | 0.067814 | 0.0 | 0.36 Output | 2.8849e-05 | 2.8849e-05 | 2.8849e-05 | 0.0 | 0.00 Modify | 0.18393 | 0.18393 | 0.18393 | 0.0 | 0.99 Other | | 0.01253 | | | 0.07 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4119 ave 4119 max 4119 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224004 ave 224004 max 224004 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224004 Ave neighs/atom = 112.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 = 273.129041025698, Press = 0.613761807763769 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.133 | 4.133 | 4.133 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 30000 -17669.988 -17669.988 -17741.436 -17741.436 276.51097 276.51097 31196.669 31196.669 -1307.4038 -1307.4038 31000 -17668.073 -17668.073 -17740.217 -17740.217 279.20522 279.20522 31175.508 31175.508 1660.4981 1660.4981 Loop time of 21.7266 on 1 procs for 1000 steps with 2000 atoms Performance: 3.977 ns/day, 6.035 hours/ns, 46.027 timesteps/s 36.6% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 21.438 | 21.438 | 21.438 | 0.0 | 98.67 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.049989 | 0.049989 | 0.049989 | 0.0 | 0.23 Output | 2.6226e-05 | 2.6226e-05 | 2.6226e-05 | 0.0 | 0.00 Modify | 0.22565 | 0.22565 | 0.22565 | 0.0 | 1.04 Other | | 0.0126 | | | 0.06 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4119 ave 4119 max 4119 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224006 ave 224006 max 224006 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224006 Ave neighs/atom = 112.003 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 = 273.186637111075, Press = 0.231385502484938 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.133 | 4.133 | 4.133 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 31000 -17668.073 -17668.073 -17740.217 -17740.217 279.20522 279.20522 31175.508 31175.508 1660.4981 1660.4981 32000 -17668.64 -17668.64 -17740.18 -17740.18 276.869 276.869 31206.998 31206.998 -2169.9128 -2169.9128 Loop time of 21.5848 on 1 procs for 1000 steps with 2000 atoms Performance: 4.003 ns/day, 5.996 hours/ns, 46.329 timesteps/s 36.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 | 21.262 | 21.262 | 21.262 | 0.0 | 98.50 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.067384 | 0.067384 | 0.067384 | 0.0 | 0.31 Output | 3.0041e-05 | 3.0041e-05 | 3.0041e-05 | 0.0 | 0.00 Modify | 0.24316 | 0.24316 | 0.24316 | 0.0 | 1.13 Other | | 0.01261 | | | 0.06 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4119 ave 4119 max 4119 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224006 ave 224006 max 224006 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224006 Ave neighs/atom = 112.003 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 = 273.202919082681, Press = 0.832859309881744 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.133 | 4.133 | 4.133 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 32000 -17668.64 -17668.64 -17740.18 -17740.18 276.869 276.869 31206.998 31206.998 -2169.9128 -2169.9128 33000 -17670.187 -17670.187 -17739.036 -17739.036 266.45259 266.45259 31202.582 31202.582 -1221.6431 -1221.6431 Loop time of 21.5033 on 1 procs for 1000 steps with 2000 atoms Performance: 4.018 ns/day, 5.973 hours/ns, 46.505 timesteps/s 36.6% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 21.2 | 21.2 | 21.2 | 0.0 | 98.59 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.047645 | 0.047645 | 0.047645 | 0.0 | 0.22 Output | 2.8849e-05 | 2.8849e-05 | 2.8849e-05 | 0.0 | 0.00 Modify | 0.24367 | 0.24367 | 0.24367 | 0.0 | 1.13 Other | | 0.01221 | | | 0.06 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4119 ave 4119 max 4119 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224002 ave 224002 max 224002 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224002 Ave neighs/atom = 112.001 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 = 273.301978108676, Press = 0.496072083210502 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.133 | 4.133 | 4.133 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 33000 -17670.187 -17670.187 -17739.036 -17739.036 266.45259 266.45259 31202.582 31202.582 -1221.6431 -1221.6431 34000 -17667.347 -17667.347 -17739.931 -17739.931 280.90748 280.90748 31231.972 31231.972 -5242.1628 -5242.1628 Loop time of 19.5829 on 1 procs for 1000 steps with 2000 atoms Performance: 4.412 ns/day, 5.440 hours/ns, 51.065 timesteps/s 39.1% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 19.271 | 19.271 | 19.271 | 0.0 | 98.41 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.047195 | 0.047195 | 0.047195 | 0.0 | 0.24 Output | 3.0041e-05 | 3.0041e-05 | 3.0041e-05 | 0.0 | 0.00 Modify | 0.23256 | 0.23256 | 0.23256 | 0.0 | 1.19 Other | | 0.03231 | | | 0.17 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4119 ave 4119 max 4119 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224000 ave 224000 max 224000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224000 Ave neighs/atom = 112 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 = 273.350753533648, Press = 1.00816412860475 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.133 | 4.133 | 4.133 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 34000 -17667.347 -17667.347 -17739.931 -17739.931 280.90748 280.90748 31231.972 31231.972 -5242.1628 -5242.1628 35000 -17669.569 -17669.569 -17740.991 -17740.991 276.41163 276.41163 31212.229 31212.229 -2447.9692 -2447.9692 Loop time of 20.3397 on 1 procs for 1000 steps with 2000 atoms Performance: 4.248 ns/day, 5.650 hours/ns, 49.165 timesteps/s 37.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 | 20.068 | 20.068 | 20.068 | 0.0 | 98.67 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.047195 | 0.047195 | 0.047195 | 0.0 | 0.23 Output | 2.9802e-05 | 2.9802e-05 | 2.9802e-05 | 0.0 | 0.00 Modify | 0.19202 | 0.19202 | 0.19202 | 0.0 | 0.94 Other | | 0.03223 | | | 0.16 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4119 ave 4119 max 4119 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224000 ave 224000 max 224000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224000 Ave neighs/atom = 112 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 = 273.284298464996, Press = 0.301787218530485 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.133 | 4.133 | 4.133 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 35000 -17669.569 -17669.569 -17740.991 -17740.991 276.41163 276.41163 31212.229 31212.229 -2447.9692 -2447.9692 36000 -17668.707 -17668.707 -17741.524 -17741.524 281.80905 281.80905 31195.107 31195.107 -901.6102 -901.6102 Loop time of 20.0758 on 1 procs for 1000 steps with 2000 atoms Performance: 4.304 ns/day, 5.577 hours/ns, 49.811 timesteps/s 39.1% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 19.802 | 19.802 | 19.802 | 0.0 | 98.63 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.068042 | 0.068042 | 0.068042 | 0.0 | 0.34 Output | 2.8849e-05 | 2.8849e-05 | 2.8849e-05 | 0.0 | 0.00 Modify | 0.19371 | 0.19371 | 0.19371 | 0.0 | 0.96 Other | | 0.01238 | | | 0.06 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4119 ave 4119 max 4119 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224002 ave 224002 max 224002 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224002 Ave neighs/atom = 112.001 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 = 273.246826532817, Press = -0.711019737634926 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.133 | 4.133 | 4.133 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 36000 -17668.707 -17668.707 -17741.524 -17741.524 281.80905 281.80905 31195.107 31195.107 -901.6102 -901.6102 37000 -17671.923 -17671.923 -17744.361 -17744.361 280.3436 280.3436 31164.466 31164.466 2101.8082 2101.8082 Loop time of 19.3619 on 1 procs for 1000 steps with 2000 atoms Performance: 4.462 ns/day, 5.378 hours/ns, 51.648 timesteps/s 39.8% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 19.103 | 19.103 | 19.103 | 0.0 | 98.66 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.027635 | 0.027635 | 0.027635 | 0.0 | 0.14 Output | 3.0994e-05 | 3.0994e-05 | 3.0994e-05 | 0.0 | 0.00 Modify | 0.18914 | 0.18914 | 0.18914 | 0.0 | 0.98 Other | | 0.0425 | | | 0.22 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4119 ave 4119 max 4119 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224002 ave 224002 max 224002 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224002 Ave neighs/atom = 112.001 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 = 273.257714660815, Press = 0.755064571173312 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.133 | 4.133 | 4.133 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 37000 -17671.923 -17671.923 -17744.361 -17744.361 280.3436 280.3436 31164.466 31164.466 2101.8082 2101.8082 38000 -17669.124 -17669.124 -17740.509 -17740.509 276.26399 276.26399 31190.974 31190.974 114.81373 114.81373 Loop time of 18.6727 on 1 procs for 1000 steps with 2000 atoms Performance: 4.627 ns/day, 5.187 hours/ns, 53.554 timesteps/s 40.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 | 18.287 | 18.287 | 18.287 | 0.0 | 97.94 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.10221 | 0.10221 | 0.10221 | 0.0 | 0.55 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.21083 | 0.21083 | 0.21083 | 0.0 | 1.13 Other | | 0.07223 | | | 0.39 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4119 ave 4119 max 4119 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224004 ave 224004 max 224004 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224004 Ave neighs/atom = 112.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" 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_T273.15.out" else "print 'not_converged' file output/vol_T273.15.out" print '${V}' file output/vol_T273.15.out 31191.2134280375 print "LAMMPS calculation completed" LAMMPS calculation completed quit 0