# 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.519999995827675*${_u_distance} variable latticeconst_converted equal 3.519999995827675*1 lattice fcc ${latticeconst_converted} lattice fcc 3.51999999582767 Lattice spacing in x,y,z = 3.52 3.52 3.52 region simbox block 0 10 0 10 0 10 units lattice create_box 1 simbox Created orthogonal box = (0 0 0) to (35.2 35.2 35.2) 1 by 1 by 1 MPI processor grid create_atoms 1 box Created 4000 atoms create_atoms CPU = 0.000460148 secs variable mass_converted equal 58.6934*${_u_mass} variable mass_converted equal 58.6934*1 # specify which KIM Model to use pair_style kim EAM_Dynamo_OnatDurukanoglu_2014_CuNi__MO_592013496703_005 pair_coeff * * Ni mass 1 ${mass_converted} mass 1 58.6934 # initial volume variable v equal vol # assign formula variable V0 equal ${v} # evaluate initial value variable V0 equal 43614.2078449095 variable V0_metal equal ${V0}/(${_u_distance}*${_u_distance}*${_u_distance}) variable V0_metal equal 43614.2078449095/(${_u_distance}*${_u_distance}*${_u_distance}) variable V0_metal equal 43614.2078449095/(1*${_u_distance}*${_u_distance}) variable V0_metal equal 43614.2078449095/(1*1*${_u_distance}) variable V0_metal equal 43614.2078449095/(1*1*1) variable V0_metal_times1000 equal ${V0_metal}*1000 variable V0_metal_times1000 equal 43614.2078449095*1000 print "Initial system volume: ${V0_metal} Angstroms^3" Initial system volume: 43614.2078449095 Angstroms^3 # set the time step to 0.001 picoseconds variable timestep_converted equal 0.001*${_u_time} variable timestep_converted equal 0.001*1 timestep ${timestep_converted} timestep 0.001 variable temp_converted equal 253.15*${_u_temperature} variable temp_converted equal 253.15*1 variable Tdamp_converted equal 0.1*${_u_time} variable Tdamp_converted equal 0.1*1 variable press_converted equal 0.0*${_u_pressure} variable press_converted equal 0.0*1 variable Pdamp_converted equal 1*${_u_time} variable Pdamp_converted equal 1*1 # create initial velocities consistent with the chosen temperature velocity all create ${temp_converted} 17 mom yes rot yes velocity all create 253.15 17 mom yes rot yes # set NPT ensemble for all atoms fix ensemble all npt temp ${temp_converted} ${temp_converted} ${Tdamp_converted} iso ${press_converted} ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 253.15 ${temp_converted} ${Tdamp_converted} iso ${press_converted} ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 253.15 253.15 ${Tdamp_converted} iso ${press_converted} ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 253.15 253.15 0.1 iso ${press_converted} ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 253.15 253.15 0.1 iso 0 ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 253.15 253.15 0.1 iso 0 0 ${Pdamp_converted} fix ensemble all npt temp 253.15 253.15 0.1 iso 0 0 1 # compute the time averages of pressure, temperature, and volume, respectively # ignore the first 5000 timesteps variable etotal_metal equal etotal/${_u_energy} variable etotal_metal equal etotal/1 variable pe_metal equal pe/${_u_energy} variable pe_metal equal pe/1 variable T_metal equal temp/${_u_temperature} variable T_metal equal temp/1 variable V_metal equal vol/(${_u_distance}*${_u_distance}*${_u_distance}) variable V_metal equal vol/(1*${_u_distance}*${_u_distance}) variable V_metal equal vol/(1*1*${_u_distance}) variable V_metal equal vol/(1*1*1) variable P_metal equal press/${_u_pressure} variable P_metal equal press/1 fix avgmyTemp all ave/time 5 20 100 v_T_metal ave running start 5000 fix avgmyPress all ave/time 5 20 100 v_P_metal ave running start 5000 fix avgmyVol all ave/time 5 20 100 v_V_metal ave running start 5000 # extract fix quantities into variables so they can be used in if-else logic later. variable T equal f_avgmyTemp variable P equal f_avgmyPress variable V equal f_avgmyVol # set error bounds for temperature and pressure in original metal units (K and bar) variable T_low equal "253.15 - 0.2" variable T_up equal "253.15 + 0.2" variable P_low equal "0.0 - 0.2" variable P_up equal "0.0 + 0.2" # print to logfile every 1000 timesteps thermo_style custom step etotal v_etotal_metal pe v_pe_metal temp v_T_metal vol v_V_metal press v_P_metal thermo 1000 # Run a simulation for at most 2000*1000 timesteps. At each 1000th time step, check # whether the temperature and pressure have converged. If yes, break. label top variable a loop 2000 run 1000 Neighbor list info ... update every 1 steps, delay 10 steps, check yes max neighbors/atom: 2000, page size: 100000 master list distance cutoff = 8.4527 ghost atom cutoff = 8.4527 binsize = 4.22635, bins = 9 9 9 1 neighbor lists, perpetual/occasional/extra = 1 0 0 (1) pair kim, perpetual attributes: full, newton off, cut 8.4527 pair build: full/bin/atomonly stencil: full/bin/3d bin: standard Per MPI rank memory allocation (min/avg/max) = 7.004 | 7.004 | 7.004 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 0 -17669.144 -17669.144 -17800 -17800 253.15 253.15 43614.208 43614.208 3204.6277 3204.6277 1000 -17526.526 -17526.526 -17665.585 -17665.585 269.01887 269.01887 44205.075 44205.075 -3336.0805 -3336.0805 Loop time of 48.3953 on 1 procs for 1000 steps with 4000 atoms Performance: 1.785 ns/day, 13.443 hours/ns, 20.663 timesteps/s 36.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 | 47.78 | 47.78 | 47.78 | 0.0 | 98.73 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.17375 | 0.17375 | 0.17375 | 0.0 | 0.36 Output | 4.5061e-05 | 4.5061e-05 | 4.5061e-05 | 0.0 | 0.00 Modify | 0.35996 | 0.35996 | 0.35996 | 0.0 | 0.74 Other | | 0.08176 | | | 0.17 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8195 ave 8195 max 8195 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: 896000 ave 896000 max 896000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 896000 Ave neighs/atom = 224 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) = 7.004 | 7.004 | 7.004 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 1000 -17526.526 -17526.526 -17665.585 -17665.585 269.01887 269.01887 44205.075 44205.075 -3336.0805 -3336.0805 2000 -17538.034 -17538.034 -17667.82 -17667.82 251.08084 251.08084 44096.89 44096.89 424.4554 424.4554 Loop time of 48.0373 on 1 procs for 1000 steps with 4000 atoms Performance: 1.799 ns/day, 13.344 hours/ns, 20.817 timesteps/s 38.2% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 47.461 | 47.461 | 47.461 | 0.0 | 98.80 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.11425 | 0.11425 | 0.11425 | 0.0 | 0.24 Output | 4.3154e-05 | 4.3154e-05 | 4.3154e-05 | 0.0 | 0.00 Modify | 0.3999 | 0.3999 | 0.3999 | 0.0 | 0.83 Other | | 0.06171 | | | 0.13 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8195 ave 8195 max 8195 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: 893464 ave 893464 max 893464 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 893464 Ave neighs/atom = 223.366 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 0, Press = 0 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.004 | 7.004 | 7.004 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 2000 -17538.034 -17538.034 -17667.82 -17667.82 251.08084 251.08084 44096.89 44096.89 424.4554 424.4554 3000 -17534.108 -17534.108 -17669.237 -17669.237 261.41506 261.41506 44148.427 44148.427 -1635.6248 -1635.6248 Loop time of 46.51 on 1 procs for 1000 steps with 4000 atoms Performance: 1.858 ns/day, 12.919 hours/ns, 21.501 timesteps/s 39.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 | 45.913 | 45.913 | 45.913 | 0.0 | 98.72 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.13396 | 0.13396 | 0.13396 | 0.0 | 0.29 Output | 4.3869e-05 | 4.3869e-05 | 4.3869e-05 | 0.0 | 0.00 Modify | 0.38096 | 0.38096 | 0.38096 | 0.0 | 0.82 Other | | 0.08158 | | | 0.18 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8195 ave 8195 max 8195 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: 894460 ave 894460 max 894460 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 894460 Ave neighs/atom = 223.615 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 0, Press = 0 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.004 | 7.004 | 7.004 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 3000 -17534.108 -17534.108 -17669.237 -17669.237 261.41506 261.41506 44148.427 44148.427 -1635.6248 -1635.6248 4000 -17534.605 -17534.605 -17665.014 -17665.014 252.28471 252.28471 44105.022 44105.022 530.79083 530.79083 Loop time of 45.7274 on 1 procs for 1000 steps with 4000 atoms Performance: 1.889 ns/day, 12.702 hours/ns, 21.869 timesteps/s 40.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 | 45.096 | 45.096 | 45.096 | 0.0 | 98.62 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.13364 | 0.13364 | 0.13364 | 0.0 | 0.29 Output | 4.1962e-05 | 4.1962e-05 | 4.1962e-05 | 0.0 | 0.00 Modify | 0.38234 | 0.38234 | 0.38234 | 0.0 | 0.84 Other | | 0.1151 | | | 0.25 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8195 ave 8195 max 8195 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: 894060 ave 894060 max 894060 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 894060 Ave neighs/atom = 223.515 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) = 7.004 | 7.004 | 7.004 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 4000 -17534.605 -17534.605 -17665.014 -17665.014 252.28471 252.28471 44105.022 44105.022 530.79083 530.79083 5000 -17536.731 -17536.731 -17666.801 -17666.801 251.6305 251.6305 44111.897 44111.897 25.827293 25.827293 Loop time of 46.4904 on 1 procs for 1000 steps with 4000 atoms Performance: 1.858 ns/day, 12.914 hours/ns, 21.510 timesteps/s 39.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 | 45.824 | 45.824 | 45.824 | 0.0 | 98.57 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.1637 | 0.1637 | 0.1637 | 0.0 | 0.35 Output | 2.5988e-05 | 2.5988e-05 | 2.5988e-05 | 0.0 | 0.00 Modify | 0.42107 | 0.42107 | 0.42107 | 0.0 | 0.91 Other | | 0.08189 | | | 0.18 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8195 ave 8195 max 8195 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: 894158 ave 894158 max 894158 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 894158 Ave neighs/atom = 223.54 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 254.086272555036, Press = 168.030401925753 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.004 | 7.004 | 7.004 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 5000 -17536.731 -17536.731 -17666.801 -17666.801 251.6305 251.6305 44111.897 44111.897 25.827293 25.827293 6000 -17532.334 -17532.334 -17665.069 -17665.069 256.7846 256.7846 44102.308 44102.308 688.07251 688.07251 Loop time of 44.9155 on 1 procs for 1000 steps with 4000 atoms Performance: 1.924 ns/day, 12.477 hours/ns, 22.264 timesteps/s 41.0% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 44.353 | 44.353 | 44.353 | 0.0 | 98.75 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.11284 | 0.11284 | 0.11284 | 0.0 | 0.25 Output | 3.3855e-05 | 3.3855e-05 | 3.3855e-05 | 0.0 | 0.00 Modify | 0.37718 | 0.37718 | 0.37718 | 0.0 | 0.84 Other | | 0.07211 | | | 0.16 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8195 ave 8195 max 8195 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: 894412 ave 894412 max 894412 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 894412 Ave neighs/atom = 223.603 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.767035728444, Press = 23.6160062964074 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.004 | 7.004 | 7.004 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 6000 -17532.334 -17532.334 -17665.069 -17665.069 256.7846 256.7846 44102.308 44102.308 688.07251 688.07251 7000 -17538.084 -17538.084 -17664.473 -17664.473 244.50853 244.50853 44149.942 44149.942 -1318.8688 -1318.8688 Loop time of 45.6457 on 1 procs for 1000 steps with 4000 atoms Performance: 1.893 ns/day, 12.679 hours/ns, 21.908 timesteps/s 39.9% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 44.775 | 44.775 | 44.775 | 0.0 | 98.09 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.16376 | 0.16376 | 0.16376 | 0.0 | 0.36 Output | 3.5048e-05 | 3.5048e-05 | 3.5048e-05 | 0.0 | 0.00 Modify | 0.60481 | 0.60481 | 0.60481 | 0.0 | 1.32 Other | | 0.1018 | | | 0.22 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8195 ave 8195 max 8195 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: 894254 ave 894254 max 894254 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 894254 Ave neighs/atom = 223.564 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.948118112295, Press = 2.25161323897938 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.004 | 7.004 | 7.004 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 7000 -17538.084 -17538.084 -17664.473 -17664.473 244.50853 244.50853 44149.942 44149.942 -1318.8688 -1318.8688 8000 -17534.874 -17534.874 -17666.938 -17666.938 255.48602 255.48602 44051.267 44051.267 2476.7203 2476.7203 Loop time of 45.8992 on 1 procs for 1000 steps with 4000 atoms Performance: 1.882 ns/day, 12.750 hours/ns, 21.787 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 | 45.229 | 45.229 | 45.229 | 0.0 | 98.54 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.11355 | 0.11355 | 0.11355 | 0.0 | 0.25 Output | 3.3855e-05 | 3.3855e-05 | 3.3855e-05 | 0.0 | 0.00 Modify | 0.51474 | 0.51474 | 0.51474 | 0.0 | 1.12 Other | | 0.04165 | | | 0.09 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8195 ave 8195 max 8195 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: 893898 ave 893898 max 893898 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 893898 Ave neighs/atom = 223.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 = 252.971622316004, Press = 7.44564204163889 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.004 | 7.004 | 7.004 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 8000 -17534.874 -17534.874 -17666.938 -17666.938 255.48602 255.48602 44051.267 44051.267 2476.7203 2476.7203 9000 -17536.488 -17536.488 -17665.878 -17665.878 250.31361 250.31361 44152.077 44152.077 -1484.9809 -1484.9809 Loop time of 45.6861 on 1 procs for 1000 steps with 4000 atoms Performance: 1.891 ns/day, 12.691 hours/ns, 21.888 timesteps/s 40.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 | 45.135 | 45.135 | 45.135 | 0.0 | 98.79 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.12384 | 0.12384 | 0.12384 | 0.0 | 0.27 Output | 2.5988e-05 | 2.5988e-05 | 2.5988e-05 | 0.0 | 0.00 Modify | 0.36603 | 0.36603 | 0.36603 | 0.0 | 0.80 Other | | 0.06163 | | | 0.13 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8195 ave 8195 max 8195 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: 894584 ave 894584 max 894584 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 894584 Ave neighs/atom = 223.646 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.127830631047, Press = 3.1639784284045 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.004 | 7.004 | 7.004 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 9000 -17536.488 -17536.488 -17665.878 -17665.878 250.31361 250.31361 44152.077 44152.077 -1484.9809 -1484.9809 10000 -17535.327 -17535.327 -17666.576 -17666.576 253.9097 253.9097 44095.209 44095.209 783.40306 783.40306 Loop time of 45.8295 on 1 procs for 1000 steps with 4000 atoms Performance: 1.885 ns/day, 12.730 hours/ns, 21.820 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 | 45.258 | 45.258 | 45.258 | 0.0 | 98.75 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.10932 | 0.10932 | 0.10932 | 0.0 | 0.24 Output | 5.1975e-05 | 5.1975e-05 | 5.1975e-05 | 0.0 | 0.00 Modify | 0.42038 | 0.42038 | 0.42038 | 0.0 | 0.92 Other | | 0.04149 | | | 0.09 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8195 ave 8195 max 8195 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: 894034 ave 894034 max 894034 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 894034 Ave neighs/atom = 223.508 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.037545191105, Press = 1.62062138721725 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.004 | 7.004 | 7.004 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 10000 -17535.327 -17535.327 -17666.576 -17666.576 253.9097 253.9097 44095.209 44095.209 783.40306 783.40306 11000 -17534.772 -17534.772 -17667.196 -17667.196 256.18149 256.18149 44127.13 44127.13 -577.78786 -577.78786 Loop time of 44.713 on 1 procs for 1000 steps with 4000 atoms Performance: 1.932 ns/day, 12.420 hours/ns, 22.365 timesteps/s 40.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 | 44.146 | 44.146 | 44.146 | 0.0 | 98.73 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.15343 | 0.15343 | 0.15343 | 0.0 | 0.34 Output | 3.2902e-05 | 3.2902e-05 | 3.2902e-05 | 0.0 | 0.00 Modify | 0.36016 | 0.36016 | 0.36016 | 0.0 | 0.81 Other | | 0.05378 | | | 0.12 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8195 ave 8195 max 8195 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: 894352 ave 894352 max 894352 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 894352 Ave neighs/atom = 223.588 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.118270314834, Press = 3.4239647327974 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.004 | 7.004 | 7.004 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 11000 -17534.772 -17534.772 -17667.196 -17667.196 256.18149 256.18149 44127.13 44127.13 -577.78786 -577.78786 12000 -17534.786 -17534.786 -17667.111 -17667.111 255.99237 255.99237 44102.717 44102.717 415.15854 415.15854 Loop time of 43.0082 on 1 procs for 1000 steps with 4000 atoms Performance: 2.009 ns/day, 11.947 hours/ns, 23.251 timesteps/s 42.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 | 42.393 | 42.393 | 42.393 | 0.0 | 98.57 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.15348 | 0.15348 | 0.15348 | 0.0 | 0.36 Output | 2.5988e-05 | 2.5988e-05 | 2.5988e-05 | 0.0 | 0.00 Modify | 0.41935 | 0.41935 | 0.41935 | 0.0 | 0.98 Other | | 0.04271 | | | 0.10 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8195 ave 8195 max 8195 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: 894128 ave 894128 max 894128 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 894128 Ave neighs/atom = 223.532 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.046421704305, Press = 0.471887681957822 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.004 | 7.004 | 7.004 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 12000 -17534.786 -17534.786 -17667.111 -17667.111 255.99237 255.99237 44102.717 44102.717 415.15854 415.15854 13000 -17542.049 -17542.049 -17668.957 -17668.957 245.51126 245.51126 44133.694 44133.694 -1214.0187 -1214.0187 Loop time of 43.5414 on 1 procs for 1000 steps with 4000 atoms Performance: 1.984 ns/day, 12.095 hours/ns, 22.967 timesteps/s 42.0% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 42.91 | 42.91 | 42.91 | 0.0 | 98.55 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.18409 | 0.18409 | 0.18409 | 0.0 | 0.42 Output | 3.4094e-05 | 3.4094e-05 | 3.4094e-05 | 0.0 | 0.00 Modify | 0.38545 | 0.38545 | 0.38545 | 0.0 | 0.89 Other | | 0.0618 | | | 0.14 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8195 ave 8195 max 8195 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: 894286 ave 894286 max 894286 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 894286 Ave neighs/atom = 223.571 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.942685604146, Press = 8.26151246008746 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.004 | 7.004 | 7.004 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 13000 -17542.049 -17542.049 -17668.957 -17668.957 245.51126 245.51126 44133.694 44133.694 -1214.0187 -1214.0187 14000 -17535.987 -17535.987 -17664.656 -17664.656 248.91995 248.91995 44103.638 44103.638 561.06137 561.06137 Loop time of 44.5258 on 1 procs for 1000 steps with 4000 atoms Performance: 1.940 ns/day, 12.368 hours/ns, 22.459 timesteps/s 40.7% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 43.997 | 43.997 | 43.997 | 0.0 | 98.81 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.13301 | 0.13301 | 0.13301 | 0.0 | 0.30 Output | 3.3855e-05 | 3.3855e-05 | 3.3855e-05 | 0.0 | 0.00 Modify | 0.37383 | 0.37383 | 0.37383 | 0.0 | 0.84 Other | | 0.02165 | | | 0.05 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8195 ave 8195 max 8195 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: 894196 ave 894196 max 894196 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 894196 Ave neighs/atom = 223.549 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.870630735343, Press = -3.68316032114185 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.004 | 7.004 | 7.004 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 14000 -17535.987 -17535.987 -17664.656 -17664.656 248.91995 248.91995 44103.638 44103.638 561.06137 561.06137 15000 -17537.019 -17537.019 -17668.284 -17668.284 253.94083 253.94083 44112.194 44112.194 -161.93443 -161.93443 Loop time of 43.7764 on 1 procs for 1000 steps with 4000 atoms Performance: 1.974 ns/day, 12.160 hours/ns, 22.843 timesteps/s 41.6% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 43.156 | 43.156 | 43.156 | 0.0 | 98.58 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.15341 | 0.15341 | 0.15341 | 0.0 | 0.35 Output | 4.9114e-05 | 4.9114e-05 | 4.9114e-05 | 0.0 | 0.00 Modify | 0.40536 | 0.40536 | 0.40536 | 0.0 | 0.93 Other | | 0.06155 | | | 0.14 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8195 ave 8195 max 8195 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: 894286 ave 894286 max 894286 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 894286 Ave neighs/atom = 223.571 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.938017797013, Press = 5.75134535792653 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.004 | 7.004 | 7.004 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 15000 -17537.019 -17537.019 -17668.284 -17668.284 253.94083 253.94083 44112.194 44112.194 -161.93443 -161.93443 16000 -17534.064 -17534.064 -17667.719 -17667.719 258.56535 258.56535 44134.688 44134.688 -956.09414 -956.09414 Loop time of 42.7165 on 1 procs for 1000 steps with 4000 atoms Performance: 2.023 ns/day, 11.866 hours/ns, 23.410 timesteps/s 42.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 | 42.156 | 42.156 | 42.156 | 0.0 | 98.69 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.13367 | 0.13367 | 0.13367 | 0.0 | 0.31 Output | 3.5048e-05 | 3.5048e-05 | 3.5048e-05 | 0.0 | 0.00 Modify | 0.40515 | 0.40515 | 0.40515 | 0.0 | 0.95 Other | | 0.02167 | | | 0.05 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8195 ave 8195 max 8195 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: 894342 ave 894342 max 894342 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 894342 Ave neighs/atom = 223.585 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.948954620634, Press = -0.365742591474067 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.004 | 7.004 | 7.004 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 16000 -17534.064 -17534.064 -17667.719 -17667.719 258.56535 258.56535 44134.688 44134.688 -956.09414 -956.09414 17000 -17535.38 -17535.38 -17666.755 -17666.755 254.15318 254.15318 44084.748 44084.748 1112.9457 1112.9457 Loop time of 42.1573 on 1 procs for 1000 steps with 4000 atoms Performance: 2.049 ns/day, 11.710 hours/ns, 23.721 timesteps/s 43.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 | 41.648 | 41.648 | 41.648 | 0.0 | 98.79 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.13357 | 0.13357 | 0.13357 | 0.0 | 0.32 Output | 3.3855e-05 | 3.3855e-05 | 3.3855e-05 | 0.0 | 0.00 Modify | 0.35433 | 0.35433 | 0.35433 | 0.0 | 0.84 Other | | 0.02144 | | | 0.05 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8195 ave 8195 max 8195 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: 893990 ave 893990 max 893990 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 893990 Ave neighs/atom = 223.498 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.91934910209, Press = 3.90386853562633 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.004 | 7.004 | 7.004 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 17000 -17535.38 -17535.38 -17666.755 -17666.755 254.15318 254.15318 44084.748 44084.748 1112.9457 1112.9457 18000 -17538.325 -17538.325 -17666.604 -17666.604 248.16293 248.16293 44173.128 44173.128 -2453.6265 -2453.6265 Loop time of 40.7984 on 1 procs for 1000 steps with 4000 atoms Performance: 2.118 ns/day, 11.333 hours/ns, 24.511 timesteps/s 44.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 | 40.295 | 40.295 | 40.295 | 0.0 | 98.77 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.093179 | 0.093179 | 0.093179 | 0.0 | 0.23 Output | 3.3855e-05 | 3.3855e-05 | 3.3855e-05 | 0.0 | 0.00 Modify | 0.34854 | 0.34854 | 0.34854 | 0.0 | 0.85 Other | | 0.06152 | | | 0.15 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8195 ave 8195 max 8195 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: 894520 ave 894520 max 894520 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 894520 Ave neighs/atom = 223.63 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.901576753738, Press = -0.970571833373853 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.004 | 7.004 | 7.004 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 18000 -17538.325 -17538.325 -17666.604 -17666.604 248.16293 248.16293 44173.128 44173.128 -2453.6265 -2453.6265 19000 -17535.509 -17535.509 -17666.478 -17666.478 253.36782 253.36782 44020.902 44020.902 3725.4742 3725.4742 Loop time of 40.4142 on 1 procs for 1000 steps with 4000 atoms Performance: 2.138 ns/day, 11.226 hours/ns, 24.744 timesteps/s 45.2% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 39.785 | 39.785 | 39.785 | 0.0 | 98.44 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.19235 | 0.19235 | 0.19235 | 0.0 | 0.48 Output | 3.4094e-05 | 3.4094e-05 | 3.4094e-05 | 0.0 | 0.00 Modify | 0.3953 | 0.3953 | 0.3953 | 0.0 | 0.98 Other | | 0.04162 | | | 0.10 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8195 ave 8195 max 8195 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: 893980 ave 893980 max 893980 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 893980 Ave neighs/atom = 223.495 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.869820353356, Press = 2.08495569117663 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.004 | 7.004 | 7.004 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 19000 -17535.509 -17535.509 -17666.478 -17666.478 253.36782 253.36782 44020.902 44020.902 3725.4742 3725.4742 20000 -17533.891 -17533.891 -17666.763 -17666.763 257.05092 257.05092 44164.663 44164.663 -2058.0377 -2058.0377 Loop time of 38.4816 on 1 procs for 1000 steps with 4000 atoms Performance: 2.245 ns/day, 10.689 hours/ns, 25.986 timesteps/s 47.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 | 37.952 | 37.952 | 37.952 | 0.0 | 98.62 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.17303 | 0.17303 | 0.17303 | 0.0 | 0.45 Output | 2.6941e-05 | 2.6941e-05 | 2.6941e-05 | 0.0 | 0.00 Modify | 0.29454 | 0.29454 | 0.29454 | 0.0 | 0.77 Other | | 0.06158 | | | 0.16 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8195 ave 8195 max 8195 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: 894780 ave 894780 max 894780 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 894780 Ave neighs/atom = 223.695 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.783641917434, Press = 2.11462121639152 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.004 | 7.004 | 7.004 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 20000 -17533.891 -17533.891 -17666.763 -17666.763 257.05092 257.05092 44164.663 44164.663 -2058.0377 -2058.0377 21000 -17537.41 -17537.41 -17665.331 -17665.331 247.47193 247.47193 44079.959 44079.959 1449.4973 1449.4973 Loop time of 38.7314 on 1 procs for 1000 steps with 4000 atoms Performance: 2.231 ns/day, 10.759 hours/ns, 25.819 timesteps/s 46.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 | 38.274 | 38.274 | 38.274 | 0.0 | 98.82 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.13282 | 0.13282 | 0.13282 | 0.0 | 0.34 Output | 3.4809e-05 | 3.4809e-05 | 3.4809e-05 | 0.0 | 0.00 Modify | 0.30347 | 0.30347 | 0.30347 | 0.0 | 0.78 Other | | 0.02143 | | | 0.06 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8195 ave 8195 max 8195 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: 893804 ave 893804 max 893804 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 893804 Ave neighs/atom = 223.451 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.834377906778, Press = 0.401597822869224 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.004 | 7.004 | 7.004 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 21000 -17537.41 -17537.41 -17665.331 -17665.331 247.47193 247.47193 44079.959 44079.959 1449.4973 1449.4973 22000 -17533.405 -17533.405 -17664.533 -17664.533 253.67715 253.67715 44155.372 44155.372 -1387.9351 -1387.9351 Loop time of 38.8346 on 1 procs for 1000 steps with 4000 atoms Performance: 2.225 ns/day, 10.787 hours/ns, 25.750 timesteps/s 46.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 | 38.454 | 38.454 | 38.454 | 0.0 | 99.02 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.072895 | 0.072895 | 0.072895 | 0.0 | 0.19 Output | 3.3855e-05 | 3.3855e-05 | 3.3855e-05 | 0.0 | 0.00 Modify | 0.26587 | 0.26587 | 0.26587 | 0.0 | 0.68 Other | | 0.0413 | | | 0.11 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8195 ave 8195 max 8195 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: 894524 ave 894524 max 894524 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 894524 Ave neighs/atom = 223.631 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.948021036408, Press = 1.86140849403206 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.004 | 7.004 | 7.004 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 22000 -17533.405 -17533.405 -17664.533 -17664.533 253.67715 253.67715 44155.372 44155.372 -1387.9351 -1387.9351 23000 -17533.516 -17533.516 -17663.701 -17663.701 251.85154 251.85154 44105.448 44105.448 671.62449 671.62449 Loop time of 40.2215 on 1 procs for 1000 steps with 4000 atoms Performance: 2.148 ns/day, 11.173 hours/ns, 24.862 timesteps/s 44.7% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 39.662 | 39.662 | 39.662 | 0.0 | 98.61 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.13304 | 0.13304 | 0.13304 | 0.0 | 0.33 Output | 3.4094e-05 | 3.4094e-05 | 3.4094e-05 | 0.0 | 0.00 Modify | 0.38489 | 0.38489 | 0.38489 | 0.0 | 0.96 Other | | 0.04122 | | | 0.10 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8195 ave 8195 max 8195 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: 893976 ave 893976 max 893976 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 893976 Ave neighs/atom = 223.494 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.994476762846, Press = 0.411677020602811 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.004 | 7.004 | 7.004 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 23000 -17533.516 -17533.516 -17663.701 -17663.701 251.85154 251.85154 44105.448 44105.448 671.62449 671.62449 24000 -17537.636 -17537.636 -17668.327 -17668.327 252.83091 252.83091 44125.327 44125.327 -731.58291 -731.58291 Loop time of 43.9368 on 1 procs for 1000 steps with 4000 atoms Performance: 1.966 ns/day, 12.205 hours/ns, 22.760 timesteps/s 41.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 | 43.355 | 43.355 | 43.355 | 0.0 | 98.68 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.19331 | 0.19331 | 0.19331 | 0.0 | 0.44 Output | 2.5988e-05 | 2.5988e-05 | 2.5988e-05 | 0.0 | 0.00 Modify | 0.36649 | 0.36649 | 0.36649 | 0.0 | 0.83 Other | | 0.02147 | | | 0.05 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8195 ave 8195 max 8195 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: 894194 ave 894194 max 894194 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 894194 Ave neighs/atom = 223.548 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.062182603134, Press = 2.17592240096885 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.004 | 7.004 | 7.004 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 24000 -17537.636 -17537.636 -17668.327 -17668.327 252.83091 252.83091 44125.327 44125.327 -731.58291 -731.58291 25000 -17538.859 -17538.859 -17669.087 -17669.087 251.93386 251.93386 44105.664 44105.664 -38.933473 -38.933473 Loop time of 43.9057 on 1 procs for 1000 steps with 4000 atoms Performance: 1.968 ns/day, 12.196 hours/ns, 22.776 timesteps/s 41.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 | 43.266 | 43.266 | 43.266 | 0.0 | 98.54 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.18371 | 0.18371 | 0.18371 | 0.0 | 0.42 Output | 2.6941e-05 | 2.6941e-05 | 2.6941e-05 | 0.0 | 0.00 Modify | 0.41425 | 0.41425 | 0.41425 | 0.0 | 0.94 Other | | 0.04151 | | | 0.09 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8195 ave 8195 max 8195 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: 894312 ave 894312 max 894312 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 894312 Ave neighs/atom = 223.578 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" jump SELF break # Write final averaged volume to file if temperature and volume have converged; otherwise wirte a # flag to indicate non-convergence. variable myStep equal step if "${myStep} < 2000000" then "print '${V}' file output/vol_T253.15.out" else "print 'not_converged' file output/vol_T253.15.out" print '${V}' file output/vol_T253.15.out 44114.8989787844 print "LAMMPS calculation completed" LAMMPS calculation completed quit 0