# 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.166686400771141*${_u_distance} variable latticeconst_converted equal 3.166686400771141*1 lattice bcc ${latticeconst_converted} lattice bcc 3.16668640077114 Lattice spacing in x,y,z = 3.16669 3.16669 3.16669 region simbox block 0 10 0 10 0 10 units lattice create_box 1 simbox Created orthogonal box = (0 0 0) to (31.6669 31.6669 31.6669) 1 by 1 by 1 MPI processor grid create_atoms 1 box Created 2000 atoms create_atoms CPU = 0.000298977 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 SNAP_LiChenZheng_2019_NbTaWMo__MO_560387080449_000 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 31755.2233009722 variable V0_metal equal ${V0}/(${_u_distance}*${_u_distance}*${_u_distance}) variable V0_metal equal 31755.2233009722/(${_u_distance}*${_u_distance}*${_u_distance}) variable V0_metal equal 31755.2233009722/(1*${_u_distance}*${_u_distance}) variable V0_metal equal 31755.2233009722/(1*1*${_u_distance}) variable V0_metal equal 31755.2233009722/(1*1*1) variable V0_metal_times1000 equal ${V0_metal}*1000 variable V0_metal_times1000 equal 31755.2233009722*1000 print "Initial system volume: ${V0_metal} Angstroms^3" Initial system volume: 31755.2233009722 Angstroms^3 # set the time step to 0.001 picoseconds variable timestep_converted equal 0.001*${_u_time} variable timestep_converted equal 0.001*1 timestep ${timestep_converted} timestep 0.001 variable temp_converted equal 313.15*${_u_temperature} variable temp_converted equal 313.15*1 variable Tdamp_converted equal 0.1*${_u_time} variable Tdamp_converted equal 0.1*1 variable press_converted equal 0.0*${_u_pressure} variable press_converted equal 0.0*1 variable Pdamp_converted equal 1*${_u_time} variable Pdamp_converted equal 1*1 # create initial velocities consistent with the chosen temperature velocity all create ${temp_converted} 17 mom yes rot yes velocity all create 313.15 17 mom yes rot yes # set NPT ensemble for all atoms fix ensemble all npt temp ${temp_converted} ${temp_converted} ${Tdamp_converted} iso ${press_converted} ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 313.15 ${temp_converted} ${Tdamp_converted} iso ${press_converted} ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 313.15 313.15 ${Tdamp_converted} iso ${press_converted} ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 313.15 313.15 0.1 iso ${press_converted} ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 313.15 313.15 0.1 iso 0 ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 313.15 313.15 0.1 iso 0 0 ${Pdamp_converted} fix ensemble all npt temp 313.15 313.15 0.1 iso 0 0 1 # compute the time averages of pressure, temperature, and volume, respectively # ignore the first 5000 timesteps variable etotal_metal equal etotal/${_u_energy} variable etotal_metal equal etotal/1 variable pe_metal equal pe/${_u_energy} variable pe_metal equal pe/1 variable T_metal equal temp/${_u_temperature} variable T_metal equal temp/1 variable V_metal equal vol/(${_u_distance}*${_u_distance}*${_u_distance}) variable V_metal equal vol/(1*${_u_distance}*${_u_distance}) variable V_metal equal vol/(1*1*${_u_distance}) variable V_metal equal vol/(1*1*1) variable P_metal equal press/${_u_pressure} variable P_metal equal press/1 fix avgmyTemp all ave/time 5 20 100 v_T_metal ave running start 5000 fix avgmyPress all ave/time 5 20 100 v_P_metal ave running start 5000 fix avgmyVol all ave/time 5 20 100 v_V_metal ave running start 5000 # extract fix quantities into variables so they can be used in if-else logic later. variable T equal f_avgmyTemp variable P equal f_avgmyPress variable V equal f_avgmyVol # set error bounds for temperature and pressure in original metal units (K and bar) variable T_low equal "313.15 - 0.2" variable T_up equal "313.15 + 0.2" variable P_low equal "0.0 - 0.2" variable P_up equal "0.0 + 0.2" # print to logfile every 1000 timesteps thermo_style custom step etotal v_etotal_metal pe v_pe_metal temp v_T_metal vol v_V_metal press v_P_metal thermo 1000 # Run a simulation for at most 2000*1000 timesteps. At each 1000th time step, check # whether the temperature and pressure have converged. If yes, break. label top variable a loop 2000 run 1000 Neighbor list info ... update every 1 steps, delay 10 steps, check yes max neighbors/atom: 2000, page size: 100000 master list distance cutoff = 6.7012 ghost atom cutoff = 6.7012 binsize = 3.3506, bins = 10 10 10 1 neighbor lists, perpetual/occasional/extra = 1 0 0 (1) pair kim, perpetual attributes: full, newton off, cut 6.7012 pair build: full/bin/atomonly stencil: full/bin/3d bin: standard Per MPI rank memory allocation (min/avg/max) = 3.755 | 3.755 | 3.755 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 0 77.848017 77.848017 -3.0671339 -3.0671339 313.15 313.15 31755.223 31755.223 2721.6068 2721.6068 1000 160.32639 160.32639 80.176074 80.176074 310.19 310.19 31969.123 31969.123 -4343.6252 -4343.6252 Loop time of 620.186 on 1 procs for 1000 steps with 2000 atoms Performance: 0.139 ns/day, 172.274 hours/ns, 1.612 timesteps/s 54.4% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 619.92 | 619.92 | 619.92 | 0.0 | 99.96 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.065138 | 0.065138 | 0.065138 | 0.0 | 0.01 Output | 3.1948e-05 | 3.1948e-05 | 3.1948e-05 | 0.0 | 0.00 Modify | 0.18013 | 0.18013 | 0.18013 | 0.0 | 0.03 Other | | 0.02109 | | | 0.00 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: 128000 ave 128000 max 128000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 128000 Ave neighs/atom = 64 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 0, Press = 0 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 3.755 | 3.755 | 3.755 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 1000 160.32639 160.32639 80.176074 80.176074 310.19 310.19 31969.123 31969.123 -4343.6252 -4343.6252 2000 161.75857 161.75857 80.947757 80.947757 312.74618 312.74618 31919.037 31919.037 -164.49823 -164.49823 Loop time of 704.384 on 1 procs for 1000 steps with 2000 atoms Performance: 0.123 ns/day, 195.662 hours/ns, 1.420 timesteps/s 47.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 | 704.15 | 704.15 | 704.15 | 0.0 | 99.97 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.024927 | 0.024927 | 0.024927 | 0.0 | 0.00 Output | 3.7909e-05 | 3.7909e-05 | 3.7909e-05 | 0.0 | 0.00 Modify | 0.17877 | 0.17877 | 0.17877 | 0.0 | 0.03 Other | | 0.03099 | | | 0.00 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: 128074 ave 128074 max 128074 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 128074 Ave neighs/atom = 64.037 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) = 3.755 | 3.755 | 3.755 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 2000 161.75857 161.75857 80.947757 80.947757 312.74618 312.74618 31919.037 31919.037 -164.49823 -164.49823 3000 158.29412 158.29412 81.988752 81.988752 295.30964 295.30964 31895.499 31895.499 1734.2783 1734.2783 Loop time of 709.399 on 1 procs for 1000 steps with 2000 atoms Performance: 0.122 ns/day, 197.055 hours/ns, 1.410 timesteps/s 47.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 | 709.04 | 709.04 | 709.04 | 0.0 | 99.95 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.095071 | 0.095071 | 0.095071 | 0.0 | 0.01 Output | 3.7193e-05 | 3.7193e-05 | 3.7193e-05 | 0.0 | 0.00 Modify | 0.24895 | 0.24895 | 0.24895 | 0.0 | 0.04 Other | | 0.01113 | | | 0.00 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: 128122 ave 128122 max 128122 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 128122 Ave neighs/atom = 64.061 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 0, Press = 0 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 3.755 | 3.755 | 3.755 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 3000 158.29412 158.29412 81.988752 81.988752 295.30964 295.30964 31895.499 31895.499 1734.2783 1734.2783 4000 162.23941 162.23941 82.73482 82.73482 307.69098 307.69098 31902.503 31902.503 1168.2153 1168.2153 Loop time of 703.96 on 1 procs for 1000 steps with 2000 atoms Performance: 0.123 ns/day, 195.545 hours/ns, 1.421 timesteps/s 47.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 | 703.77 | 703.77 | 703.77 | 0.0 | 99.97 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.045109 | 0.045109 | 0.045109 | 0.0 | 0.01 Output | 3.8147e-05 | 3.8147e-05 | 3.8147e-05 | 0.0 | 0.00 Modify | 0.11899 | 0.11899 | 0.11899 | 0.0 | 0.02 Other | | 0.03085 | | | 0.00 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: 128120 ave 128120 max 128120 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 128120 Ave neighs/atom = 64.06 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) = 3.755 | 3.755 | 3.755 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 4000 162.23941 162.23941 82.73482 82.73482 307.69098 307.69098 31902.503 31902.503 1168.2153 1168.2153 5000 158.04371 158.04371 81.698986 81.698986 295.46197 295.46197 31920.027 31920.027 -363.27771 -363.27771 Loop time of 715.999 on 1 procs for 1000 steps with 2000 atoms Performance: 0.121 ns/day, 198.889 hours/ns, 1.397 timesteps/s 47.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 | 715.83 | 715.83 | 715.83 | 0.0 | 99.98 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.055271 | 0.055271 | 0.055271 | 0.0 | 0.01 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.09947 | 0.09947 | 0.09947 | 0.0 | 0.01 Other | | 0.01095 | | | 0.00 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: 128142 ave 128142 max 128142 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 128142 Ave neighs/atom = 64.071 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 = 308.171078378848, Press = 72.7983560953202 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 3.755 | 3.755 | 3.755 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 5000 158.04371 158.04371 81.698986 81.698986 295.46197 295.46197 31920.027 31920.027 -363.27771 -363.27771 6000 160.12654 160.12654 81.371748 81.371748 304.7892 304.7892 31879.826 31879.826 2963.4764 2963.4764 Loop time of 710.102 on 1 procs for 1000 steps with 2000 atoms Performance: 0.122 ns/day, 197.251 hours/ns, 1.408 timesteps/s 47.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 | 709.87 | 709.87 | 709.87 | 0.0 | 99.97 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.075167 | 0.075167 | 0.075167 | 0.0 | 0.01 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.12215 | 0.12215 | 0.12215 | 0.0 | 0.02 Other | | 0.03082 | | | 0.00 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: 128128 ave 128128 max 128128 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 128128 Ave neighs/atom = 64.064 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 310.329447335543, Press = 17.0655888708436 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 3.755 | 3.755 | 3.755 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 6000 160.12654 160.12654 81.371748 81.371748 304.7892 304.7892 31879.826 31879.826 2963.4764 2963.4764 7000 159.78946 159.78946 77.954886 77.954886 316.70827 316.70827 31934.846 31934.846 -1882.5863 -1882.5863 Loop time of 712.398 on 1 procs for 1000 steps with 2000 atoms Performance: 0.121 ns/day, 197.888 hours/ns, 1.404 timesteps/s 47.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 | 712.18 | 712.18 | 712.18 | 0.0 | 99.97 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.06515 | 0.06515 | 0.06515 | 0.0 | 0.01 Output | 3.4094e-05 | 3.4094e-05 | 3.4094e-05 | 0.0 | 0.00 Modify | 0.14311 | 0.14311 | 0.14311 | 0.0 | 0.02 Other | | 0.01097 | | | 0.00 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: 128156 ave 128156 max 128156 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 128156 Ave neighs/atom = 64.078 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 311.624283469811, Press = 1.40138796345141 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 3.755 | 3.755 | 3.755 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 7000 159.78946 159.78946 77.954886 77.954886 316.70827 316.70827 31934.846 31934.846 -1882.5863 -1882.5863 8000 161.19625 161.19625 78.232894 78.232894 321.07675 321.07675 31898.072 31898.072 1223.0994 1223.0994 Loop time of 705.469 on 1 procs for 1000 steps with 2000 atoms Performance: 0.122 ns/day, 195.964 hours/ns, 1.417 timesteps/s 47.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 | 705.15 | 705.15 | 705.15 | 0.0 | 99.95 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.025185 | 0.025185 | 0.025185 | 0.0 | 0.00 Output | 2.8133e-05 | 2.8133e-05 | 2.8133e-05 | 0.0 | 0.00 Modify | 0.26337 | 0.26337 | 0.26337 | 0.0 | 0.04 Other | | 0.03087 | | | 0.00 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: 128076 ave 128076 max 128076 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 128076 Ave neighs/atom = 64.038 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 312.283072299365, Press = -6.90613240402674 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 3.755 | 3.755 | 3.755 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 8000 161.19625 161.19625 78.232894 78.232894 321.07675 321.07675 31898.072 31898.072 1223.0994 1223.0994 9000 157.73474 157.73474 81.10264 81.10264 296.57415 296.57415 31898.923 31898.923 1373.1763 1373.1763 Loop time of 714.146 on 1 procs for 1000 steps with 2000 atoms Performance: 0.121 ns/day, 198.374 hours/ns, 1.400 timesteps/s 47.3% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 713.96 | 713.96 | 713.96 | 0.0 | 99.97 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.024956 | 0.024956 | 0.024956 | 0.0 | 0.00 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.13428 | 0.13428 | 0.13428 | 0.0 | 0.02 Other | | 0.03089 | | | 0.00 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: 128122 ave 128122 max 128122 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 128122 Ave neighs/atom = 64.061 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 312.62891489871, Press = 9.14423786918676 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 3.755 | 3.755 | 3.755 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 9000 157.73474 157.73474 81.10264 81.10264 296.57415 296.57415 31898.923 31898.923 1373.1763 1373.1763 10000 160.14266 160.14266 75.972788 75.972788 325.7461 325.7461 31924.602 31924.602 -1195.1519 -1195.1519 Loop time of 711.894 on 1 procs for 1000 steps with 2000 atoms Performance: 0.121 ns/day, 197.748 hours/ns, 1.405 timesteps/s 47.3% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 711.69 | 711.69 | 711.69 | 0.0 | 99.97 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.065118 | 0.065118 | 0.065118 | 0.0 | 0.01 Output | 4.6968e-05 | 4.6968e-05 | 4.6968e-05 | 0.0 | 0.00 Modify | 0.13261 | 0.13261 | 0.13261 | 0.0 | 0.02 Other | | 0.0109 | | | 0.00 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: 128124 ave 128124 max 128124 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 128124 Ave neighs/atom = 64.062 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 312.764975469085, Press = 5.78245455011689 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 3.755 | 3.755 | 3.755 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 10000 160.14266 160.14266 75.972788 75.972788 325.7461 325.7461 31924.602 31924.602 -1195.1519 -1195.1519 11000 162.81509 162.81509 85.03715 85.03715 301.00865 301.00865 31924.732 31924.732 -304.67322 -304.67322 Loop time of 709.688 on 1 procs for 1000 steps with 2000 atoms Performance: 0.122 ns/day, 197.135 hours/ns, 1.409 timesteps/s 47.3% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 709.46 | 709.46 | 709.46 | 0.0 | 99.97 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.024932 | 0.024932 | 0.024932 | 0.0 | 0.00 Output | 2.8849e-05 | 2.8849e-05 | 2.8849e-05 | 0.0 | 0.00 Modify | 0.19574 | 0.19574 | 0.19574 | 0.0 | 0.03 Other | | 0.01082 | | | 0.00 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: 128090 ave 128090 max 128090 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 128090 Ave neighs/atom = 64.045 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.397712484241, Press = 0.0342180222017782 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 3.755 | 3.755 | 3.755 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 11000 162.81509 162.81509 85.03715 85.03715 301.00865 301.00865 31924.732 31924.732 -304.67322 -304.67322 12000 159.08553 159.08553 81.73545 81.73545 299.35282 299.35282 31866.025 31866.025 3934.2898 3934.2898 Loop time of 704.109 on 1 procs for 1000 steps with 2000 atoms Performance: 0.123 ns/day, 195.586 hours/ns, 1.420 timesteps/s 47.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 | 703.81 | 703.81 | 703.81 | 0.0 | 99.96 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.025074 | 0.025074 | 0.025074 | 0.0 | 0.00 Output | 2.1935e-05 | 2.1935e-05 | 2.1935e-05 | 0.0 | 0.00 Modify | 0.23263 | 0.23263 | 0.23263 | 0.0 | 0.03 Other | | 0.04092 | | | 0.01 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: 128152 ave 128152 max 128152 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 128152 Ave neighs/atom = 64.076 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.533653719133, Press = 6.24453165453718 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 3.755 | 3.755 | 3.755 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 12000 159.08553 159.08553 81.73545 81.73545 299.35282 299.35282 31866.025 31866.025 3934.2898 3934.2898 13000 160.42615 160.42615 79.688654 79.688654 312.46244 312.46244 31995.198 31995.198 -6443.4333 -6443.4333 Loop time of 713.74 on 1 procs for 1000 steps with 2000 atoms Performance: 0.121 ns/day, 198.261 hours/ns, 1.401 timesteps/s 47.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 | 713.53 | 713.53 | 713.53 | 0.0 | 99.97 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.055319 | 0.055319 | 0.055319 | 0.0 | 0.01 Output | 2.3127e-05 | 2.3127e-05 | 2.3127e-05 | 0.0 | 0.00 Modify | 0.14198 | 0.14198 | 0.14198 | 0.0 | 0.02 Other | | 0.01089 | | | 0.00 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: 128164 ave 128164 max 128164 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 128164 Ave neighs/atom = 64.082 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.617127175484, Press = 8.05889697504281 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 3.755 | 3.755 | 3.755 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 13000 160.42615 160.42615 79.688654 79.688654 312.46244 312.46244 31995.198 31995.198 -6443.4333 -6443.4333 14000 159.54839 159.54839 79.129517 79.129517 311.22936 311.22936 31889.561 31889.561 2013.0649 2013.0649 Loop time of 714.603 on 1 procs for 1000 steps with 2000 atoms Performance: 0.121 ns/day, 198.501 hours/ns, 1.399 timesteps/s 47.3% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 714.38 | 714.38 | 714.38 | 0.0 | 99.97 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.025055 | 0.025055 | 0.025055 | 0.0 | 0.00 Output | 2.2173e-05 | 2.2173e-05 | 2.2173e-05 | 0.0 | 0.00 Modify | 0.18225 | 0.18225 | 0.18225 | 0.0 | 0.03 Other | | 0.0109 | | | 0.00 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: 128090 ave 128090 max 128090 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 128090 Ave neighs/atom = 64.045 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.194014821026, Press = -2.80829515363668 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 3.755 | 3.755 | 3.755 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 14000 159.54839 159.54839 79.129517 79.129517 311.22936 311.22936 31889.561 31889.561 2013.0649 2013.0649 15000 161.73549 161.73549 79.41012 79.41012 318.6077 318.6077 31919.512 31919.512 -470.18633 -470.18633 Loop time of 710.216 on 1 procs for 1000 steps with 2000 atoms Performance: 0.122 ns/day, 197.282 hours/ns, 1.408 timesteps/s 47.5% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 709.99 | 709.99 | 709.99 | 0.0 | 99.97 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.025146 | 0.025146 | 0.025146 | 0.0 | 0.00 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.15295 | 0.15295 | 0.15295 | 0.0 | 0.02 Other | | 0.05105 | | | 0.01 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: 128076 ave 128076 max 128076 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 128076 Ave neighs/atom = 64.038 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.265814042626, Press = 4.68157596183858 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 3.755 | 3.755 | 3.755 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 15000 161.73549 161.73549 79.41012 79.41012 318.6077 318.6077 31919.512 31919.512 -470.18633 -470.18633 16000 160.47491 160.47491 78.641002 78.641002 316.70568 316.70568 31894.857 31894.857 1665.6882 1665.6882 Loop time of 703.989 on 1 procs for 1000 steps with 2000 atoms Performance: 0.123 ns/day, 195.553 hours/ns, 1.420 timesteps/s 47.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 | 703.7 | 703.7 | 703.7 | 0.0 | 99.96 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.025118 | 0.025118 | 0.025118 | 0.0 | 0.00 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.23237 | 0.23237 | 0.23237 | 0.0 | 0.03 Other | | 0.03094 | | | 0.00 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: 128092 ave 128092 max 128092 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 128092 Ave neighs/atom = 64.046 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.36895387204, Press = 2.44143680373512 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 3.755 | 3.755 | 3.755 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 16000 160.47491 160.47491 78.641002 78.641002 316.70568 316.70568 31894.857 31894.857 1665.6882 1665.6882 17000 156.30929 156.30929 77.998704 77.998704 303.07006 303.07006 31930.543 31930.543 -1573.2838 -1573.2838 Loop time of 678.433 on 1 procs for 1000 steps with 2000 atoms Performance: 0.127 ns/day, 188.454 hours/ns, 1.474 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 | 678.17 | 678.17 | 678.17 | 0.0 | 99.96 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.025145 | 0.025145 | 0.025145 | 0.0 | 0.00 Output | 2.1935e-05 | 2.1935e-05 | 2.1935e-05 | 0.0 | 0.00 Modify | 0.20302 | 0.20302 | 0.20302 | 0.0 | 0.03 Other | | 0.03098 | | | 0.00 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: 128078 ave 128078 max 128078 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 128078 Ave neighs/atom = 64.039 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.455714202637, Press = 0.39783613745175 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 3.755 | 3.755 | 3.755 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 17000 156.30929 156.30929 77.998704 77.998704 303.07006 303.07006 31930.543 31930.543 -1573.2838 -1573.2838 18000 160.94857 160.94857 80.324959 80.324959 312.02171 312.02171 31884.978 31884.978 2487.0215 2487.0215 Loop time of 677.58 on 1 procs for 1000 steps with 2000 atoms Performance: 0.128 ns/day, 188.217 hours/ns, 1.476 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 | 677.32 | 677.32 | 677.32 | 0.0 | 99.96 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.085408 | 0.085408 | 0.085408 | 0.0 | 0.01 Output | 2.8133e-05 | 2.8133e-05 | 2.8133e-05 | 0.0 | 0.00 Modify | 0.16283 | 0.16283 | 0.16283 | 0.0 | 0.02 Other | | 0.01098 | | | 0.00 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: 128110 ave 128110 max 128110 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 128110 Ave neighs/atom = 64.055 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.285674739002, Press = -0.990060337632265 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 3.755 | 3.755 | 3.755 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 18000 160.94857 160.94857 80.324959 80.324959 312.02171 312.02171 31884.978 31884.978 2487.0215 2487.0215 19000 157.70297 157.70297 73.890561 73.890561 324.36269 324.36269 31947.248 31947.248 -3352.5157 -3352.5157 Loop time of 670.19 on 1 procs for 1000 steps with 2000 atoms Performance: 0.129 ns/day, 186.164 hours/ns, 1.492 timesteps/s 50.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 | 669.93 | 669.93 | 669.93 | 0.0 | 99.96 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.065014 | 0.065014 | 0.065014 | 0.0 | 0.01 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.18244 | 0.18244 | 0.18244 | 0.0 | 0.03 Other | | 0.01083 | | | 0.00 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: 128138 ave 128138 max 128138 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 128138 Ave neighs/atom = 64.069 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.096953981269, Press = 4.06147782972117 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 3.755 | 3.755 | 3.755 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 19000 157.70297 157.70297 73.890561 73.890561 324.36269 324.36269 31947.248 31947.248 -3352.5157 -3352.5157 20000 165.3826 165.3826 81.544441 81.544441 324.46234 324.46234 31887.36 31887.36 2445.6906 2445.6906 Loop time of 604.798 on 1 procs for 1000 steps with 2000 atoms Performance: 0.143 ns/day, 167.999 hours/ns, 1.653 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 | 604.57 | 604.57 | 604.57 | 0.0 | 99.96 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.045057 | 0.045057 | 0.045057 | 0.0 | 0.01 Output | 2.8849e-05 | 2.8849e-05 | 2.8849e-05 | 0.0 | 0.00 Modify | 0.17246 | 0.17246 | 0.17246 | 0.0 | 0.03 Other | | 0.01086 | | | 0.00 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: 128064 ave 128064 max 128064 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 128064 Ave neighs/atom = 64.032 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.171837283819, Press = -1.35375483363059 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 3.755 | 3.755 | 3.755 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 20000 165.3826 165.3826 81.544441 81.544441 324.46234 324.46234 31887.36 31887.36 2445.6906 2445.6906 21000 158.84089 158.84089 81.790394 81.790394 298.19339 298.19339 31930.413 31930.413 -1188.4677 -1188.4677 Loop time of 607.969 on 1 procs for 1000 steps with 2000 atoms Performance: 0.142 ns/day, 168.880 hours/ns, 1.645 timesteps/s 55.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 | 607.75 | 607.75 | 607.75 | 0.0 | 99.96 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.065485 | 0.065485 | 0.065485 | 0.0 | 0.01 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.14252 | 0.14252 | 0.14252 | 0.0 | 0.02 Other | | 0.01087 | | | 0.00 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: 128154 ave 128154 max 128154 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 128154 Ave neighs/atom = 64.077 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.263498498865, Press = 5.2788359163845 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 3.755 | 3.755 | 3.755 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 21000 158.84089 158.84089 81.790394 81.790394 298.19339 298.19339 31930.413 31930.413 -1188.4677 -1188.4677 22000 158.90354 158.90354 78.177879 78.177879 312.41667 312.41667 31918.754 31918.754 -655.21091 -655.21091 Loop time of 608.467 on 1 procs for 1000 steps with 2000 atoms Performance: 0.142 ns/day, 169.019 hours/ns, 1.643 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 | 608.29 | 608.29 | 608.29 | 0.0 | 99.97 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.045155 | 0.045155 | 0.045155 | 0.0 | 0.01 Output | 2.1935e-05 | 2.1935e-05 | 2.1935e-05 | 0.0 | 0.00 Modify | 0.12331 | 0.12331 | 0.12331 | 0.0 | 0.02 Other | | 0.01096 | | | 0.00 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: 128104 ave 128104 max 128104 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 128104 Ave neighs/atom = 64.052 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.253620526644, Press = -0.704733711107702 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 3.755 | 3.755 | 3.755 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 22000 158.90354 158.90354 78.177879 78.177879 312.41667 312.41667 31918.754 31918.754 -655.21091 -655.21091 23000 160.05181 160.05181 80.228657 80.228657 308.92386 308.92386 31872.669 31872.669 3486.0183 3486.0183 Loop time of 604.551 on 1 procs for 1000 steps with 2000 atoms Performance: 0.143 ns/day, 167.931 hours/ns, 1.654 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 | 604.31 | 604.31 | 604.31 | 0.0 | 99.96 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.044969 | 0.044969 | 0.044969 | 0.0 | 0.01 Output | 2.8133e-05 | 2.8133e-05 | 2.8133e-05 | 0.0 | 0.00 Modify | 0.16368 | 0.16368 | 0.16368 | 0.0 | 0.03 Other | | 0.0309 | | | 0.01 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: 128080 ave 128080 max 128080 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 128080 Ave neighs/atom = 64.04 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.102769918811, Press = 5.13705989679721 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 3.755 | 3.755 | 3.755 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 23000 160.05181 160.05181 80.228657 80.228657 308.92386 308.92386 31872.669 31872.669 3486.0183 3486.0183 24000 159.13494 159.13494 77.044862 77.044862 317.69708 317.69708 31933.965 31933.965 -1744.9927 -1744.9927 Loop time of 608.855 on 1 procs for 1000 steps with 2000 atoms Performance: 0.142 ns/day, 169.126 hours/ns, 1.642 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 | 608.61 | 608.61 | 608.61 | 0.0 | 99.96 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.065158 | 0.065158 | 0.065158 | 0.0 | 0.01 Output | 2.5988e-05 | 2.5988e-05 | 2.5988e-05 | 0.0 | 0.00 Modify | 0.16734 | 0.16734 | 0.16734 | 0.0 | 0.03 Other | | 0.01088 | | | 0.00 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: 128110 ave 128110 max 128110 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 128110 Ave neighs/atom = 64.055 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.162722747547, Press = 0.987198690276911 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 3.755 | 3.755 | 3.755 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 24000 159.13494 159.13494 77.044862 77.044862 317.69708 317.69708 31933.965 31933.965 -1744.9927 -1744.9927 25000 156.94448 156.94448 75.737237 75.737237 314.28042 314.28042 31893.957 31893.957 966.63143 966.63143 Loop time of 608.542 on 1 procs for 1000 steps with 2000 atoms Performance: 0.142 ns/day, 169.039 hours/ns, 1.643 timesteps/s 55.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 | 608.38 | 608.38 | 608.38 | 0.0 | 99.97 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.024899 | 0.024899 | 0.024899 | 0.0 | 0.00 Output | 3.2902e-05 | 3.2902e-05 | 3.2902e-05 | 0.0 | 0.00 Modify | 0.10238 | 0.10238 | 0.10238 | 0.0 | 0.02 Other | | 0.03088 | | | 0.01 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: 128092 ave 128092 max 128092 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 128092 Ave neighs/atom = 64.046 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" jump SELF break # Write final averaged volume to file if temperature and volume have converged; otherwise wirte a # flag to indicate non-convergence. variable myStep equal step if "${myStep} < 2000000" then "print '${V}' file output/vol_T313.15.out" else "print 'not_converged' file output/vol_T313.15.out" print '${V}' file output/vol_T313.15.out 31913.8328553353 print "LAMMPS calculation completed" LAMMPS calculation completed quit 0