# 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.1435002833604813*${_u_distance} variable latticeconst_converted equal 3.1435002833604813*1 lattice bcc ${latticeconst_converted} lattice bcc 3.14350028336048 Lattice spacing in x,y,z = 3.1435 3.1435 3.1435 region simbox block 0 10 0 10 0 10 units lattice create_box 1 simbox Created orthogonal box = (0 0 0) to (31.435 31.435 31.435) 1 by 1 by 1 MPI processor grid create_atoms 1 box Created 2000 atoms create_atoms CPU = 0.00032115 secs variable mass_converted equal 95.94*${_u_mass} variable mass_converted equal 95.94*1 # specify which KIM Model to use pair_style kim Morse_Shifted_GirifalcoWeizer_1959MedCutoff_Mo__MO_534363225491_003 WARNING: KIM Model does not provide `partialParticleVirial'; virial per atom will be zero (src/KIM/pair_kim.cpp:979) pair_coeff * * Mo mass 1 ${mass_converted} mass 1 95.94 # initial volume variable v equal vol # assign formula variable V0 equal ${v} # evaluate initial value variable V0 equal 31062.7936380339 variable V0_metal equal ${V0}/(${_u_distance}*${_u_distance}*${_u_distance}) variable V0_metal equal 31062.7936380339/(${_u_distance}*${_u_distance}*${_u_distance}) variable V0_metal equal 31062.7936380339/(1*${_u_distance}*${_u_distance}) variable V0_metal equal 31062.7936380339/(1*1*${_u_distance}) variable V0_metal equal 31062.7936380339/(1*1*1) variable V0_metal_times1000 equal ${V0_metal}*1000 variable V0_metal_times1000 equal 31062.7936380339*1000 print "Initial system volume: ${V0_metal} Angstroms^3" Initial system volume: 31062.7936380339 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 = 10.0166 ghost atom cutoff = 10.0166 binsize = 5.00828, bins = 7 7 7 1 neighbor lists, perpetual/occasional/extra = 1 0 0 (1) pair kim, perpetual attributes: full, newton off, cut 10.0166 pair build: full/bin/atomonly stencil: full/bin/3d bin: standard Per MPI rank memory allocation (min/avg/max) = 5.424 | 5.424 | 5.424 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 0 -13316.847 -13316.847 -13387.426 -13387.426 273.15 273.15 31062.794 31062.794 2426.8994 2426.8994 1000 -13246.921 -13246.921 -13317.166 -13317.166 271.85395 271.85395 31217.741 31217.741 -1858.0109 -1858.0109 Loop time of 15.3474 on 1 procs for 1000 steps with 2000 atoms Performance: 5.630 ns/day, 4.263 hours/ns, 65.158 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 | 15.113 | 15.113 | 15.113 | 0.0 | 98.47 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.060792 | 0.060792 | 0.060792 | 0.0 | 0.40 Output | 3.9101e-05 | 3.9101e-05 | 3.9101e-05 | 0.0 | 0.00 Modify | 0.14088 | 0.14088 | 0.14088 | 0.0 | 0.92 Other | | 0.03298 | | | 0.21 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 7009 ave 7009 max 7009 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 564000 ave 564000 max 564000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 564000 Ave neighs/atom = 282 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 0, Press = 0 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.426 | 5.426 | 5.426 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 1000 -13246.921 -13246.921 -13317.166 -13317.166 271.85395 271.85395 31217.741 31217.741 -1858.0109 -1858.0109 2000 -13251.508 -13251.508 -13323.786 -13323.786 279.72532 279.72532 31188.286 31188.286 1222.5162 1222.5162 Loop time of 17.1702 on 1 procs for 1000 steps with 2000 atoms Performance: 5.032 ns/day, 4.770 hours/ns, 58.240 timesteps/s 57.3% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 16.974 | 16.974 | 16.974 | 0.0 | 98.86 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.040784 | 0.040784 | 0.040784 | 0.0 | 0.24 Output | 3.1948e-05 | 3.1948e-05 | 3.1948e-05 | 0.0 | 0.00 Modify | 0.14046 | 0.14046 | 0.14046 | 0.0 | 0.82 Other | | 0.01462 | | | 0.09 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 7009 ave 7009 max 7009 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 546904 ave 546904 max 546904 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 546904 Ave neighs/atom = 273.452 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 0, Press = 0 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.426 | 5.426 | 5.426 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 2000 -13251.508 -13251.508 -13323.786 -13323.786 279.72532 279.72532 31188.286 31188.286 1222.5162 1222.5162 3000 -13270.843 -13270.843 -13341.016 -13341.016 271.57919 271.57919 31242.393 31242.393 -372.25234 -372.25234 Loop time of 17.2452 on 1 procs for 1000 steps with 2000 atoms Performance: 5.010 ns/day, 4.790 hours/ns, 57.987 timesteps/s 57.3% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 16.936 | 16.936 | 16.936 | 0.0 | 98.21 Neigh | 0.033841 | 0.033841 | 0.033841 | 0.0 | 0.20 Comm | 0.061449 | 0.061449 | 0.061449 | 0.0 | 0.36 Output | 3.4094e-05 | 3.4094e-05 | 3.4094e-05 | 0.0 | 0.00 Modify | 0.20061 | 0.20061 | 0.20061 | 0.0 | 1.16 Other | | 0.01293 | | | 0.07 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6879 ave 6879 max 6879 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: 550660 ave 550660 max 550660 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 550660 Ave neighs/atom = 275.33 Neighbor list builds = 1 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 0, Press = 0 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.426 | 5.426 | 5.426 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 3000 -13270.843 -13270.843 -13341.016 -13341.016 271.57919 271.57919 31242.393 31242.393 -372.25234 -372.25234 4000 -13278.668 -13278.668 -13349.395 -13349.395 273.7203 273.7203 31232.09 31232.09 364.1486 364.1486 Loop time of 16.1411 on 1 procs for 1000 steps with 2000 atoms Performance: 5.353 ns/day, 4.484 hours/ns, 61.954 timesteps/s 60.0% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 15.827 | 15.827 | 15.827 | 0.0 | 98.05 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.079728 | 0.079728 | 0.079728 | 0.0 | 0.49 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.2013 | 0.2013 | 0.2013 | 0.0 | 1.25 Other | | 0.03296 | | | 0.20 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6849 ave 6849 max 6849 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: 550664 ave 550664 max 550664 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 550664 Ave neighs/atom = 275.332 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 0, Press = 0 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.426 | 5.426 | 5.426 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 4000 -13278.668 -13278.668 -13349.395 -13349.395 273.7203 273.7203 31232.09 31232.09 364.1486 364.1486 5000 -13280.429 -13280.429 -13350.059 -13350.059 269.47419 269.47419 31238.055 31238.055 -467.94723 -467.94723 Loop time of 14.133 on 1 procs for 1000 steps with 2000 atoms Performance: 6.113 ns/day, 3.926 hours/ns, 70.756 timesteps/s 69.1% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 13.84 | 13.84 | 13.84 | 0.0 | 97.93 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.13817 | 0.13817 | 0.13817 | 0.0 | 0.98 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.1216 | 0.1216 | 0.1216 | 0.0 | 0.86 Other | | 0.03282 | | | 0.23 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6812 ave 6812 max 6812 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: 552838 ave 552838 max 552838 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 552838 Ave neighs/atom = 276.419 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 = 271.816759907598, Press = -6.88816140371558 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.426 | 5.426 | 5.426 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 5000 -13280.429 -13280.429 -13350.059 -13350.059 269.47419 269.47419 31238.055 31238.055 -467.94723 -467.94723 6000 -13275.63 -13275.63 -13346.495 -13346.495 274.25717 274.25717 31241.204 31241.204 117.56041 117.56041 Loop time of 13.4113 on 1 procs for 1000 steps with 2000 atoms Performance: 6.442 ns/day, 3.725 hours/ns, 74.564 timesteps/s 72.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 | 13.233 | 13.233 | 13.233 | 0.0 | 98.67 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.059577 | 0.059577 | 0.059577 | 0.0 | 0.44 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.10633 | 0.10633 | 0.10633 | 0.0 | 0.79 Other | | 0.01258 | | | 0.09 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6832 ave 6832 max 6832 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: 551904 ave 551904 max 551904 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 551904 Ave neighs/atom = 275.952 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 272.995372390977, Press = -13.8219015830002 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.426 | 5.426 | 5.426 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 6000 -13275.63 -13275.63 -13346.495 -13346.495 274.25717 274.25717 31241.204 31241.204 117.56041 117.56041 7000 -13278.359 -13278.359 -13350.006 -13350.006 277.28254 277.28254 31240.31 31240.31 -230.03469 -230.03469 Loop time of 16.3575 on 1 procs for 1000 steps with 2000 atoms Performance: 5.282 ns/day, 4.544 hours/ns, 61.134 timesteps/s 59.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 | 16.162 | 16.162 | 16.162 | 0.0 | 98.80 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.05857 | 0.05857 | 0.05857 | 0.0 | 0.36 Output | 2.5988e-05 | 2.5988e-05 | 2.5988e-05 | 0.0 | 0.00 Modify | 0.1242 | 0.1242 | 0.1242 | 0.0 | 0.76 Other | | 0.0127 | | | 0.08 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6810 ave 6810 max 6810 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: 552592 ave 552592 max 552592 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 552592 Ave neighs/atom = 276.296 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.963044690061, Press = -1.76015446238481 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.426 | 5.426 | 5.426 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 7000 -13278.359 -13278.359 -13350.006 -13350.006 277.28254 277.28254 31240.31 31240.31 -230.03469 -230.03469 8000 -13277.933 -13277.933 -13349.368 -13349.368 276.46029 276.46029 31233.963 31233.963 250.11895 250.11895 Loop time of 14.2585 on 1 procs for 1000 steps with 2000 atoms Performance: 6.060 ns/day, 3.961 hours/ns, 70.134 timesteps/s 68.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.022 | 14.022 | 14.022 | 0.0 | 98.34 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.059849 | 0.059849 | 0.059849 | 0.0 | 0.42 Output | 2.3127e-05 | 2.3127e-05 | 2.3127e-05 | 0.0 | 0.00 Modify | 0.14339 | 0.14339 | 0.14339 | 0.0 | 1.01 Other | | 0.03278 | | | 0.23 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6813 ave 6813 max 6813 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: 552454 ave 552454 max 552454 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 552454 Ave neighs/atom = 276.227 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.131582512633, Press = -4.82153442576566 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.426 | 5.426 | 5.426 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 8000 -13277.933 -13277.933 -13349.368 -13349.368 276.46029 276.46029 31233.963 31233.963 250.11895 250.11895 9000 -13280.333 -13280.333 -13348.611 -13348.611 264.24202 264.24202 31231.826 31231.826 765.24663 765.24663 Loop time of 13.7046 on 1 procs for 1000 steps with 2000 atoms Performance: 6.304 ns/day, 3.807 hours/ns, 72.968 timesteps/s 70.6% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 13.489 | 13.489 | 13.489 | 0.0 | 98.43 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.079448 | 0.079448 | 0.079448 | 0.0 | 0.58 Output | 2.6941e-05 | 2.6941e-05 | 2.6941e-05 | 0.0 | 0.00 Modify | 0.12323 | 0.12323 | 0.12323 | 0.0 | 0.90 Other | | 0.01259 | | | 0.09 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6828 ave 6828 max 6828 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: 552526 ave 552526 max 552526 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 552526 Ave neighs/atom = 276.263 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.226932868483, Press = 5.46057981176248 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.426 | 5.426 | 5.426 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 9000 -13280.333 -13280.333 -13348.611 -13348.611 264.24202 264.24202 31231.826 31231.826 765.24663 765.24663 10000 -13280.754 -13280.754 -13349.815 -13349.815 267.2711 267.2711 31252.802 31252.802 -1573.4231 -1573.4231 Loop time of 14.6445 on 1 procs for 1000 steps with 2000 atoms Performance: 5.900 ns/day, 4.068 hours/ns, 68.285 timesteps/s 66.4% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 14.479 | 14.479 | 14.479 | 0.0 | 98.87 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.0603 | 0.0603 | 0.0603 | 0.0 | 0.41 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.092368 | 0.092368 | 0.092368 | 0.0 | 0.63 Other | | 0.01278 | | | 0.09 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6813 ave 6813 max 6813 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: 552520 ave 552520 max 552520 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 552520 Ave neighs/atom = 276.26 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.097805953016, Press = -10.1548583618669 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.426 | 5.426 | 5.426 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 10000 -13280.754 -13280.754 -13349.815 -13349.815 267.2711 267.2711 31252.802 31252.802 -1573.4231 -1573.4231 11000 -13279.021 -13279.021 -13351.488 -13351.488 280.45372 280.45372 31212.933 31212.933 2078.0838 2078.0838 Loop time of 13.5365 on 1 procs for 1000 steps with 2000 atoms Performance: 6.383 ns/day, 3.760 hours/ns, 73.874 timesteps/s 71.4% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 13.261 | 13.261 | 13.261 | 0.0 | 97.96 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.059093 | 0.059093 | 0.059093 | 0.0 | 0.44 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.1838 | 0.1838 | 0.1838 | 0.0 | 1.36 Other | | 0.03273 | | | 0.24 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6810 ave 6810 max 6810 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: 552298 ave 552298 max 552298 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 552298 Ave neighs/atom = 276.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 = 273.511714792531, Press = 4.04701871413333 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.426 | 5.426 | 5.426 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 11000 -13279.021 -13279.021 -13351.488 -13351.488 280.45372 280.45372 31212.933 31212.933 2078.0838 2078.0838 12000 -13278.985 -13278.985 -13349.928 -13349.928 274.55909 274.55909 31270.596 31270.596 -2933.3349 -2933.3349 Loop time of 12.506 on 1 procs for 1000 steps with 2000 atoms Performance: 6.909 ns/day, 3.474 hours/ns, 79.961 timesteps/s 77.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.351 | 12.351 | 12.351 | 0.0 | 98.76 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.039338 | 0.039338 | 0.039338 | 0.0 | 0.31 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.10315 | 0.10315 | 0.10315 | 0.0 | 0.82 Other | | 0.01271 | | | 0.10 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6811 ave 6811 max 6811 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: 553106 ave 553106 max 553106 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 553106 Ave neighs/atom = 276.553 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.161256718817, Press = -4.22063025453337 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.426 | 5.426 | 5.426 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 12000 -13278.985 -13278.985 -13349.928 -13349.928 274.55909 274.55909 31270.596 31270.596 -2933.3349 -2933.3349 13000 -13281.103 -13281.103 -13352.189 -13352.189 275.10894 275.10894 31222.692 31222.692 987.0837 987.0837 Loop time of 11.6138 on 1 procs for 1000 steps with 2000 atoms Performance: 7.439 ns/day, 3.226 hours/ns, 86.104 timesteps/s 83.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.48 | 11.48 | 11.48 | 0.0 | 98.84 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.038873 | 0.038873 | 0.038873 | 0.0 | 0.33 Output | 2.8133e-05 | 2.8133e-05 | 2.8133e-05 | 0.0 | 0.00 Modify | 0.082664 | 0.082664 | 0.082664 | 0.0 | 0.71 Other | | 0.01259 | | | 0.11 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6795 ave 6795 max 6795 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: 552360 ave 552360 max 552360 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 552360 Ave neighs/atom = 276.18 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.320947817522, Press = -0.992949558014295 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.426 | 5.426 | 5.426 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 13000 -13281.103 -13281.103 -13352.189 -13352.189 275.10894 275.10894 31222.692 31222.692 987.0837 987.0837 14000 -13279.58 -13279.58 -13350.185 -13350.185 273.24762 273.24762 31245.121 31245.121 -523.21117 -523.21117 Loop time of 14.8757 on 1 procs for 1000 steps with 2000 atoms Performance: 5.808 ns/day, 4.132 hours/ns, 67.224 timesteps/s 65.5% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 14.677 | 14.677 | 14.677 | 0.0 | 98.66 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.042176 | 0.042176 | 0.042176 | 0.0 | 0.28 Output | 0.0014539 | 0.0014539 | 0.0014539 | 0.0 | 0.01 Modify | 0.13836 | 0.13836 | 0.13836 | 0.0 | 0.93 Other | | 0.01667 | | | 0.11 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6824 ave 6824 max 6824 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: 552950 ave 552950 max 552950 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 552950 Ave neighs/atom = 276.475 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.281226204121, Press = -1.65882370958366 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.426 | 5.426 | 5.426 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 14000 -13279.58 -13279.58 -13350.185 -13350.185 273.24762 273.24762 31245.121 31245.121 -523.21117 -523.21117 15000 -13278.533 -13278.533 -13349.743 -13349.743 275.59195 275.59195 31240.084 31240.084 -56.550999 -56.550999 Loop time of 11.1576 on 1 procs for 1000 steps with 2000 atoms Performance: 7.744 ns/day, 3.099 hours/ns, 89.625 timesteps/s 86.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 | 10.964 | 10.964 | 10.964 | 0.0 | 98.27 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.039311 | 0.039311 | 0.039311 | 0.0 | 0.35 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.1214 | 0.1214 | 0.1214 | 0.0 | 1.09 Other | | 0.03264 | | | 0.29 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6814 ave 6814 max 6814 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: 553396 ave 553396 max 553396 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 553396 Ave neighs/atom = 276.698 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.361757885418, Press = -2.21909538532429 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.426 | 5.426 | 5.426 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 15000 -13278.533 -13278.533 -13349.743 -13349.743 275.59195 275.59195 31240.084 31240.084 -56.550999 -56.550999 16000 -13277.643 -13277.643 -13348.759 -13348.759 275.22916 275.22916 31237.175 31237.175 83.208602 83.208602 Loop time of 10.5479 on 1 procs for 1000 steps with 2000 atoms Performance: 8.191 ns/day, 2.930 hours/ns, 94.805 timesteps/s 91.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.413 | 10.413 | 10.413 | 0.0 | 98.72 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.039037 | 0.039037 | 0.039037 | 0.0 | 0.37 Output | 4.5061e-05 | 4.5061e-05 | 4.5061e-05 | 0.0 | 0.00 Modify | 0.083172 | 0.083172 | 0.083172 | 0.0 | 0.79 Other | | 0.0126 | | | 0.12 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6807 ave 6807 max 6807 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: 553264 ave 553264 max 553264 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 553264 Ave neighs/atom = 276.632 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.222925644345, Press = 1.18174371954402 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.426 | 5.426 | 5.426 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 16000 -13277.643 -13277.643 -13348.759 -13348.759 275.22916 275.22916 31237.175 31237.175 83.208602 83.208602 17000 -13280.362 -13280.362 -13350.406 -13350.406 271.07842 271.07842 31255.49 31255.49 -1427.3 -1427.3 Loop time of 12.3742 on 1 procs for 1000 steps with 2000 atoms Performance: 6.982 ns/day, 3.437 hours/ns, 80.813 timesteps/s 78.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.198 | 12.198 | 12.198 | 0.0 | 98.58 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.039991 | 0.039991 | 0.039991 | 0.0 | 0.32 Output | 2.718e-05 | 2.718e-05 | 2.718e-05 | 0.0 | 0.00 Modify | 0.1231 | 0.1231 | 0.1231 | 0.0 | 0.99 Other | | 0.01265 | | | 0.10 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6821 ave 6821 max 6821 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: 553122 ave 553122 max 553122 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 553122 Ave neighs/atom = 276.561 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.373582923157, Press = -6.80980529556533 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.426 | 5.426 | 5.426 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 17000 -13280.362 -13280.362 -13350.406 -13350.406 271.07842 271.07842 31255.49 31255.49 -1427.3 -1427.3 18000 -13278.413 -13278.413 -13348.159 -13348.159 269.92632 269.92632 31219.721 31219.721 1867.9948 1867.9948 Loop time of 16.4875 on 1 procs for 1000 steps with 2000 atoms Performance: 5.240 ns/day, 4.580 hours/ns, 60.652 timesteps/s 58.7% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 16.161 | 16.161 | 16.161 | 0.0 | 98.02 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.090051 | 0.090051 | 0.090051 | 0.0 | 0.55 Output | 2.6941e-05 | 2.6941e-05 | 2.6941e-05 | 0.0 | 0.00 Modify | 0.22389 | 0.22389 | 0.22389 | 0.0 | 1.36 Other | | 0.01266 | | | 0.08 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6808 ave 6808 max 6808 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: 553264 ave 553264 max 553264 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 553264 Ave neighs/atom = 276.632 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.455895787868, Press = 3.08321438227003 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.426 | 5.426 | 5.426 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 18000 -13278.413 -13278.413 -13348.159 -13348.159 269.92632 269.92632 31219.721 31219.721 1867.9948 1867.9948 19000 -13278.059 -13278.059 -13350.287 -13350.287 279.5278 279.5278 31262.483 31262.483 -2325.4531 -2325.4531 Loop time of 14.8756 on 1 procs for 1000 steps with 2000 atoms Performance: 5.808 ns/day, 4.132 hours/ns, 67.224 timesteps/s 64.7% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 14.735 | 14.735 | 14.735 | 0.0 | 99.06 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.040165 | 0.040165 | 0.040165 | 0.0 | 0.27 Output | 2.408e-05 | 2.408e-05 | 2.408e-05 | 0.0 | 0.00 Modify | 0.087537 | 0.087537 | 0.087537 | 0.0 | 0.59 Other | | 0.01261 | | | 0.08 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6812 ave 6812 max 6812 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: 553270 ave 553270 max 553270 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 553270 Ave neighs/atom = 276.635 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.34236033303, Press = -1.88994676656013 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.426 | 5.426 | 5.426 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 19000 -13278.059 -13278.059 -13350.287 -13350.287 279.5278 279.5278 31262.483 31262.483 -2325.4531 -2325.4531 20000 -13281.775 -13281.775 -13351.71 -13351.71 270.65588 270.65588 31223.682 31223.682 1159.6535 1159.6535 Loop time of 17.4069 on 1 procs for 1000 steps with 2000 atoms Performance: 4.964 ns/day, 4.835 hours/ns, 57.449 timesteps/s 55.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 | 17.206 | 17.206 | 17.206 | 0.0 | 98.85 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.039553 | 0.039553 | 0.039553 | 0.0 | 0.23 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.12866 | 0.12866 | 0.12866 | 0.0 | 0.74 Other | | 0.03278 | | | 0.19 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6828 ave 6828 max 6828 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: 552214 ave 552214 max 552214 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 552214 Ave neighs/atom = 276.107 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.219889010459, Press = -1.14848603744032 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.426 | 5.426 | 5.426 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 20000 -13281.775 -13281.775 -13351.71 -13351.71 270.65588 270.65588 31223.682 31223.682 1159.6535 1159.6535 21000 -13278.373 -13278.373 -13351.59 -13351.59 283.35914 283.35914 31237.991 31237.991 -215.98912 -215.98912 Loop time of 14.5577 on 1 procs for 1000 steps with 2000 atoms Performance: 5.935 ns/day, 4.044 hours/ns, 68.692 timesteps/s 66.4% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 14.362 | 14.362 | 14.362 | 0.0 | 98.66 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.079285 | 0.079285 | 0.079285 | 0.0 | 0.54 Output | 2.5034e-05 | 2.5034e-05 | 2.5034e-05 | 0.0 | 0.00 Modify | 0.10333 | 0.10333 | 0.10333 | 0.0 | 0.71 Other | | 0.01271 | | | 0.09 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6815 ave 6815 max 6815 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: 553542 ave 553542 max 553542 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 553542 Ave neighs/atom = 276.771 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.187504862996, Press = -0.979889984979374 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.426 | 5.426 | 5.426 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 21000 -13278.373 -13278.373 -13351.59 -13351.59 283.35914 283.35914 31237.991 31237.991 -215.98912 -215.98912 22000 -13276.439 -13276.439 -13348.634 -13348.634 279.40128 279.40128 31230.165 31230.165 930.3348 930.3348 Loop time of 14.7751 on 1 procs for 1000 steps with 2000 atoms Performance: 5.848 ns/day, 4.104 hours/ns, 67.681 timesteps/s 65.4% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 14.62 | 14.62 | 14.62 | 0.0 | 98.95 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.059651 | 0.059651 | 0.059651 | 0.0 | 0.40 Output | 3.9101e-05 | 3.9101e-05 | 3.9101e-05 | 0.0 | 0.00 Modify | 0.082736 | 0.082736 | 0.082736 | 0.0 | 0.56 Other | | 0.01308 | | | 0.09 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6817 ave 6817 max 6817 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: 552904 ave 552904 max 552904 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 552904 Ave neighs/atom = 276.452 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.196743592798, Press = -0.89726106758657 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.426 | 5.426 | 5.426 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 22000 -13276.439 -13276.439 -13348.634 -13348.634 279.40128 279.40128 31230.165 31230.165 930.3348 930.3348 23000 -13280.373 -13280.373 -13348.167 -13348.167 262.37083 262.37083 31254.437 31254.437 -1285.07 -1285.07 Loop time of 15.2939 on 1 procs for 1000 steps with 2000 atoms Performance: 5.649 ns/day, 4.248 hours/ns, 65.386 timesteps/s 63.5% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 15.037 | 15.037 | 15.037 | 0.0 | 98.32 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.079522 | 0.079522 | 0.079522 | 0.0 | 0.52 Output | 2.6941e-05 | 2.6941e-05 | 2.6941e-05 | 0.0 | 0.00 Modify | 0.1442 | 0.1442 | 0.1442 | 0.0 | 0.94 Other | | 0.03287 | | | 0.21 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6822 ave 6822 max 6822 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: 553236 ave 553236 max 553236 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 553236 Ave neighs/atom = 276.618 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 31237.8185208255 print "LAMMPS calculation completed" LAMMPS calculation completed quit 0