# 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.1811909973621373*${_u_distance} variable latticeconst_converted equal 3.1811909973621373*1 lattice bcc ${latticeconst_converted} lattice bcc 3.18119099736214 Lattice spacing in x,y,z = 3.18119 3.18119 3.18119 region simbox block 0 10 0 10 0 10 units lattice create_box 1 simbox Created orthogonal box = (0 0 0) to (31.8119 31.8119 31.8119) 1 by 1 by 1 MPI processor grid create_atoms 1 box Created 2000 atoms create_atoms CPU = 0.000226021 secs variable mass_converted equal 183.84*${_u_mass} variable mass_converted equal 183.84*1 # specify which KIM Model to use pair_style kim SNAP_LiChenZheng_2019_NbTaWMo__MO_560387080449_000 pair_coeff * * W mass 1 ${mass_converted} mass 1 183.84 # initial volume variable v equal vol # assign formula variable V0 equal ${v} # evaluate initial value variable V0 equal 32193.5770591129 variable V0_metal equal ${V0}/(${_u_distance}*${_u_distance}*${_u_distance}) variable V0_metal equal 32193.5770591129/(${_u_distance}*${_u_distance}*${_u_distance}) variable V0_metal equal 32193.5770591129/(1*${_u_distance}*${_u_distance}) variable V0_metal equal 32193.5770591129/(1*1*${_u_distance}) variable V0_metal equal 32193.5770591129/(1*1*1) variable V0_metal_times1000 equal ${V0_metal}*1000 variable V0_metal_times1000 equal 32193.5770591129*1000 print "Initial system volume: ${V0_metal} Angstroms^3" Initial system volume: 32193.5770591129 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 62.524973 62.524973 -18.390178 -18.390178 313.15 313.15 32193.577 32193.577 2684.6243 2684.6243 1000 146.96952 146.96952 61.450356 61.450356 330.96801 330.96801 32389.394 32389.394 1133.3174 1133.3174 Loop time of 1052.13 on 1 procs for 1000 steps with 2000 atoms Performance: 0.082 ns/day, 292.258 hours/ns, 0.950 timesteps/s 27.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 | 1051.5 | 1051.5 | 1051.5 | 0.0 | 99.94 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.18547 | 0.18547 | 0.18547 | 0.0 | 0.02 Output | 4.0054e-05 | 4.0054e-05 | 4.0054e-05 | 0.0 | 0.00 Modify | 0.31939 | 0.31939 | 0.31939 | 0.0 | 0.03 Other | | 0.09116 | | | 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: 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 146.96952 146.96952 61.450356 61.450356 330.96801 330.96801 32389.394 32389.394 1133.3174 1133.3174 2000 145.308 145.308 58.903764 58.903764 334.39332 334.39332 32351.759 32351.759 4751.9302 4751.9302 Loop time of 1030.86 on 1 procs for 1000 steps with 2000 atoms Performance: 0.084 ns/day, 286.350 hours/ns, 0.970 timesteps/s 28.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 | 1030.4 | 1030.4 | 1030.4 | 0.0 | 99.96 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.085131 | 0.085131 | 0.085131 | 0.0 | 0.01 Output | 3.6955e-05 | 3.6955e-05 | 3.6955e-05 | 0.0 | 0.00 Modify | 0.3188 | 0.3188 | 0.3188 | 0.0 | 0.03 Other | | 0.03123 | | | 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: 128008 ave 128008 max 128008 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 128008 Ave neighs/atom = 64.004 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 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 145.308 145.308 58.903764 58.903764 334.39332 334.39332 32351.759 32351.759 4751.9302 4751.9302 3000 144.3394 144.3394 63.377149 63.377149 313.3323 313.3323 32370.871 32370.871 3535.6672 3535.6672 Loop time of 1036.55 on 1 procs for 1000 steps with 2000 atoms Performance: 0.083 ns/day, 287.930 hours/ns, 0.965 timesteps/s 27.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 | 1036.1 | 1036.1 | 1036.1 | 0.0 | 99.96 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.075012 | 0.075012 | 0.075012 | 0.0 | 0.01 Output | 4.9829e-05 | 4.9829e-05 | 4.9829e-05 | 0.0 | 0.00 Modify | 0.30055 | 0.30055 | 0.30055 | 0.0 | 0.03 Other | | 0.07097 | | | 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: 128002 ave 128002 max 128002 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 128002 Ave neighs/atom = 64.001 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 0, Press = 0 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 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 144.3394 144.3394 63.377149 63.377149 313.3323 313.3323 32370.871 32370.871 3535.6672 3535.6672 4000 146.20804 146.20804 62.260923 62.260923 324.88403 324.88403 32375.991 32375.991 3083.1543 3083.1543 Loop time of 1057.21 on 1 procs for 1000 steps with 2000 atoms Performance: 0.082 ns/day, 293.668 hours/ns, 0.946 timesteps/s 27.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 | 1056.8 | 1056.8 | 1056.8 | 0.0 | 99.96 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.044814 | 0.044814 | 0.044814 | 0.0 | 0.00 Output | 3.0994e-05 | 3.0994e-05 | 3.0994e-05 | 0.0 | 0.00 Modify | 0.34803 | 0.34803 | 0.34803 | 0.0 | 0.03 Other | | 0.06117 | | | 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: 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 4000 146.20804 146.20804 62.260923 62.260923 324.88403 324.88403 32375.991 32375.991 3083.1543 3083.1543 5000 145.32689 145.32689 61.119604 61.119604 325.8909 325.8909 32367.49 32367.49 3440.6002 3440.6002 Loop time of 1131.6 on 1 procs for 1000 steps with 2000 atoms Performance: 0.076 ns/day, 314.334 hours/ns, 0.884 timesteps/s 25.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 | 1131.1 | 1131.1 | 1131.1 | 0.0 | 99.96 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.11511 | 0.11511 | 0.11511 | 0.0 | 0.01 Output | 2.1935e-05 | 2.1935e-05 | 2.1935e-05 | 0.0 | 0.00 Modify | 0.38081 | 0.38081 | 0.38081 | 0.0 | 0.03 Other | | 0.01106 | | | 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 = 315.911885952811, Press = -117.415764094671 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 145.32689 145.32689 61.119604 61.119604 325.8909 325.8909 32367.49 32367.49 3440.6002 3440.6002 6000 140.66927 140.66927 62.679959 62.679959 301.82671 301.82671 32442.288 32442.288 -3753.942 -3753.942 Loop time of 1076.41 on 1 procs for 1000 steps with 2000 atoms Performance: 0.080 ns/day, 299.004 hours/ns, 0.929 timesteps/s 26.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 | 1076.1 | 1076.1 | 1076.1 | 0.0 | 99.97 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.11515 | 0.11515 | 0.11515 | 0.0 | 0.01 Output | 2.1935e-05 | 2.1935e-05 | 2.1935e-05 | 0.0 | 0.00 Modify | 0.19224 | 0.19224 | 0.19224 | 0.0 | 0.02 Other | | 0.01106 | | | 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 = 311.255833235986, Press = -56.8146677269129 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 140.66927 140.66927 62.679959 62.679959 301.82671 301.82671 32442.288 32442.288 -3753.942 -3753.942 7000 147.35854 147.35854 66.352078 66.352078 313.50339 313.50339 32446.747 32446.747 -3495.9832 -3495.9832 Loop time of 1068.69 on 1 procs for 1000 steps with 2000 atoms Performance: 0.081 ns/day, 296.860 hours/ns, 0.936 timesteps/s 27.1% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 1068.2 | 1068.2 | 1068.2 | 0.0 | 99.95 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.1751 | 0.1751 | 0.1751 | 0.0 | 0.02 Output | 2.3127e-05 | 2.3127e-05 | 2.3127e-05 | 0.0 | 0.00 Modify | 0.29213 | 0.29213 | 0.29213 | 0.0 | 0.03 Other | | 0.03109 | | | 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: 128002 ave 128002 max 128002 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 128002 Ave neighs/atom = 64.001 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 311.580179584171, Press = -15.1958310771938 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 147.35854 147.35854 66.352078 66.352078 313.50339 313.50339 32446.747 32446.747 -3495.9832 -3495.9832 8000 144.86229 144.86229 60.378352 60.378352 326.96157 326.96157 32402.318 32402.318 -149.09625 -149.09625 Loop time of 1050.4 on 1 procs for 1000 steps with 2000 atoms Performance: 0.082 ns/day, 291.778 hours/ns, 0.952 timesteps/s 27.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 | 1049.9 | 1049.9 | 1049.9 | 0.0 | 99.96 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.054953 | 0.054953 | 0.054953 | 0.0 | 0.01 Output | 2.1935e-05 | 2.1935e-05 | 2.1935e-05 | 0.0 | 0.00 Modify | 0.32199 | 0.32199 | 0.32199 | 0.0 | 0.03 Other | | 0.09137 | | | 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: 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 = 312.700180044299, Press = -29.2625380462201 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 144.86229 144.86229 60.378352 60.378352 326.96157 326.96157 32402.318 32402.318 -149.09625 -149.09625 9000 144.48153 144.48153 58.914487 58.914487 331.15332 331.15332 32379.353 32379.353 1949.8486 1949.8486 Loop time of 1126.66 on 1 procs for 1000 steps with 2000 atoms Performance: 0.077 ns/day, 312.960 hours/ns, 0.888 timesteps/s 25.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 | 1126 | 1126 | 1126 | 0.0 | 99.94 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.17501 | 0.17501 | 0.17501 | 0.0 | 0.02 Output | 2.2888e-05 | 2.2888e-05 | 2.2888e-05 | 0.0 | 0.00 Modify | 0.45238 | 0.45238 | 0.45238 | 0.0 | 0.04 Other | | 0.04095 | | | 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: 128002 ave 128002 max 128002 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 128002 Ave neighs/atom = 64.001 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.331045611786, Press = -33.0060494514259 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 144.48153 144.48153 58.914487 58.914487 331.15332 331.15332 32379.353 32379.353 1949.8486 1949.8486 10000 142.23289 142.23289 66.138971 66.138971 294.49133 294.49133 32392.772 32392.772 1521.0714 1521.0714 Loop time of 1105.1 on 1 procs for 1000 steps with 2000 atoms Performance: 0.078 ns/day, 306.973 hours/ns, 0.905 timesteps/s 26.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 | 1104.8 | 1104.8 | 1104.8 | 0.0 | 99.97 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.095225 | 0.095225 | 0.095225 | 0.0 | 0.01 Output | 3.8147e-05 | 3.8147e-05 | 3.8147e-05 | 0.0 | 0.00 Modify | 0.21236 | 0.21236 | 0.21236 | 0.0 | 0.02 Other | | 0.04096 | | | 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 = 312.701154648032, Press = -9.46109751846024 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 142.23289 142.23289 66.138971 66.138971 294.49133 294.49133 32392.772 32392.772 1521.0714 1521.0714 11000 146.4221 146.4221 64.764677 64.764677 316.02268 316.02268 32398.77 32398.77 1165.6464 1165.6464 Loop time of 894.603 on 1 procs for 1000 steps with 2000 atoms Performance: 0.097 ns/day, 248.501 hours/ns, 1.118 timesteps/s 32.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 | 894.23 | 894.23 | 894.23 | 0.0 | 99.96 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.095259 | 0.095259 | 0.095259 | 0.0 | 0.01 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.23348 | 0.23348 | 0.23348 | 0.0 | 0.03 Other | | 0.04127 | | | 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: 128006 ave 128006 max 128006 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 128006 Ave neighs/atom = 64.003 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 312.420913723045, Press = 4.87688299705415 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 146.4221 146.4221 64.764677 64.764677 316.02268 316.02268 32398.77 32398.77 1165.6464 1165.6464 12000 146.64309 146.64309 59.79826 59.79826 336.09847 336.09847 32436.149 32436.149 -3654.1857 -3654.1857 Loop time of 613.812 on 1 procs for 1000 steps with 2000 atoms Performance: 0.141 ns/day, 170.503 hours/ns, 1.629 timesteps/s 47.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 | 613.6 | 613.6 | 613.6 | 0.0 | 99.97 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.024824 | 0.024824 | 0.024824 | 0.0 | 0.00 Output | 2.6941e-05 | 2.6941e-05 | 2.6941e-05 | 0.0 | 0.00 Modify | 0.15264 | 0.15264 | 0.15264 | 0.0 | 0.02 Other | | 0.03094 | | | 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: 128006 ave 128006 max 128006 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 128006 Ave neighs/atom = 64.003 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 312.497707808023, Press = -10.81440223034 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 146.64309 146.64309 59.79826 59.79826 336.09847 336.09847 32436.149 32436.149 -3654.1857 -3654.1857 13000 142.78539 142.78539 64.650105 64.650105 302.39164 302.39164 32451.424 32451.424 -4228.3809 -4228.3809 Loop time of 614.778 on 1 procs for 1000 steps with 2000 atoms Performance: 0.141 ns/day, 170.772 hours/ns, 1.627 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 | 614.51 | 614.51 | 614.51 | 0.0 | 99.96 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.044873 | 0.044873 | 0.044873 | 0.0 | 0.01 Output | 3.1948e-05 | 3.1948e-05 | 3.1948e-05 | 0.0 | 0.00 Modify | 0.1771 | 0.1771 | 0.1771 | 0.0 | 0.03 Other | | 0.05102 | | | 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: 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 = 312.384568781069, Press = 1.06442954064489 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 142.78539 142.78539 64.650105 64.650105 302.39164 302.39164 32451.424 32451.424 -4228.3809 -4228.3809 14000 143.52871 143.52871 61.08129 61.08129 319.08002 319.08002 32435.832 32435.832 -3656.343 -3656.343 Loop time of 602.464 on 1 procs for 1000 steps with 2000 atoms Performance: 0.143 ns/day, 167.351 hours/ns, 1.660 timesteps/s 48.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 | 602.2 | 602.2 | 602.2 | 0.0 | 99.96 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.084848 | 0.084848 | 0.084848 | 0.0 | 0.01 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.17217 | 0.17217 | 0.17217 | 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: 128002 ave 128002 max 128002 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 128002 Ave neighs/atom = 64.001 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 312.608486534092, Press = -9.02204482647588 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 143.52871 143.52871 61.08129 61.08129 319.08002 319.08002 32435.832 32435.832 -3656.343 -3656.343 15000 143.05967 143.05967 63.094909 63.094909 309.4719 309.4719 32447.41 32447.41 -4085.8859 -4085.8859 Loop time of 603.395 on 1 procs for 1000 steps with 2000 atoms Performance: 0.143 ns/day, 167.610 hours/ns, 1.657 timesteps/s 47.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 | 603.18 | 603.18 | 603.18 | 0.0 | 99.96 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.044937 | 0.044937 | 0.044937 | 0.0 | 0.01 Output | 2.2173e-05 | 2.2173e-05 | 2.2173e-05 | 0.0 | 0.00 Modify | 0.16253 | 0.16253 | 0.16253 | 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: 128004 ave 128004 max 128004 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 128004 Ave neighs/atom = 64.002 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 312.677796172256, Press = -6.88061985195351 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 143.05967 143.05967 63.094909 63.094909 309.4719 309.4719 32447.41 32447.41 -4085.8859 -4085.8859 16000 145.74946 145.74946 62.103163 62.103163 323.71981 323.71981 32394.504 32394.504 1044.2504 1044.2504 Loop time of 606.421 on 1 procs for 1000 steps with 2000 atoms Performance: 0.142 ns/day, 168.450 hours/ns, 1.649 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 | 606.21 | 606.21 | 606.21 | 0.0 | 99.97 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.054883 | 0.054883 | 0.054883 | 0.0 | 0.01 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.14314 | 0.14314 | 0.14314 | 0.0 | 0.02 Other | | 0.01092 | | | 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 = 312.610962940693, Press = 1.11589584192999 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 145.74946 145.74946 62.103163 62.103163 323.71981 323.71981 32394.504 32394.504 1044.2504 1044.2504 17000 144.57469 144.57469 58.510721 58.510721 333.07647 333.07647 32382.44 32382.44 1474.3426 1474.3426 Loop time of 609.76 on 1 procs for 1000 steps with 2000 atoms Performance: 0.142 ns/day, 169.378 hours/ns, 1.640 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 | 609.6 | 609.6 | 609.6 | 0.0 | 99.97 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.025008 | 0.025008 | 0.025008 | 0.0 | 0.00 Output | 4.1008e-05 | 4.1008e-05 | 4.1008e-05 | 0.0 | 0.00 Modify | 0.122 | 0.122 | 0.122 | 0.0 | 0.02 Other | | 0.01091 | | | 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: 128004 ave 128004 max 128004 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 128004 Ave neighs/atom = 64.002 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 312.60419411441, Press = -9.74008715805572 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 144.57469 144.57469 58.510721 58.510721 333.07647 333.07647 32382.44 32382.44 1474.3426 1474.3426 18000 148.71689 148.71689 68.084476 68.084476 312.05576 312.05576 32385.828 32385.828 2992.2444 2992.2444 Loop time of 605.928 on 1 procs for 1000 steps with 2000 atoms Performance: 0.143 ns/day, 168.313 hours/ns, 1.650 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 | 605.68 | 605.68 | 605.68 | 0.0 | 99.96 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.024831 | 0.024831 | 0.024831 | 0.0 | 0.00 Output | 2.2888e-05 | 2.2888e-05 | 2.2888e-05 | 0.0 | 0.00 Modify | 0.19051 | 0.19051 | 0.19051 | 0.0 | 0.03 Other | | 0.03092 | | | 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: 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 = 312.540821127096, Press = -5.47055033793333 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 148.71689 148.71689 68.084476 68.084476 312.05576 312.05576 32385.828 32385.828 2992.2444 2992.2444 19000 146.08707 146.08707 65.780935 65.780935 310.79304 310.79304 32354.062 32354.062 5756.7173 5756.7173 Loop time of 607.344 on 1 procs for 1000 steps with 2000 atoms Performance: 0.142 ns/day, 168.707 hours/ns, 1.647 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 | 607.16 | 607.16 | 607.16 | 0.0 | 99.97 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.024616 | 0.024616 | 0.024616 | 0.0 | 0.00 Output | 2.8133e-05 | 2.8133e-05 | 2.8133e-05 | 0.0 | 0.00 Modify | 0.13202 | 0.13202 | 0.13202 | 0.0 | 0.02 Other | | 0.03097 | | | 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: 128004 ave 128004 max 128004 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 128004 Ave neighs/atom = 64.002 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 312.809135164722, Press = -4.36411732375089 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 146.08707 146.08707 65.780935 65.780935 310.79304 310.79304 32354.062 32354.062 5756.7173 5756.7173 20000 142.44537 142.44537 63.256583 63.256583 306.46877 306.46877 32423.844 32423.844 -1977.6588 -1977.6588 Loop time of 608.002 on 1 procs for 1000 steps with 2000 atoms Performance: 0.142 ns/day, 168.889 hours/ns, 1.645 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 | 607.79 | 607.79 | 607.79 | 0.0 | 99.97 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.024818 | 0.024818 | 0.024818 | 0.0 | 0.00 Output | 4.2915e-05 | 4.2915e-05 | 4.2915e-05 | 0.0 | 0.00 Modify | 0.14308 | 0.14308 | 0.14308 | 0.0 | 0.02 Other | | 0.0409 | | | 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: 128002 ave 128002 max 128002 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 128002 Ave neighs/atom = 64.001 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 312.791462052902, Press = -3.03712935469325 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 142.44537 142.44537 63.256583 63.256583 306.46877 306.46877 32423.844 32423.844 -1977.6588 -1977.6588 21000 146.16708 146.16708 62.15488 62.15488 325.1359 325.1359 32462.911 32462.911 -5882.6448 -5882.6448 Loop time of 607.093 on 1 procs for 1000 steps with 2000 atoms Performance: 0.142 ns/day, 168.637 hours/ns, 1.647 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 | 606.91 | 606.91 | 606.91 | 0.0 | 99.97 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.024661 | 0.024661 | 0.024661 | 0.0 | 0.00 Output | 2.1935e-05 | 2.1935e-05 | 2.1935e-05 | 0.0 | 0.00 Modify | 0.12148 | 0.12148 | 0.12148 | 0.0 | 0.02 Other | | 0.04117 | | | 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: 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 = 312.667054215373, Press = -2.69769430001762 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 146.16708 146.16708 62.15488 62.15488 325.1359 325.1359 32462.911 32462.911 -5882.6448 -5882.6448 22000 144.2726 144.2726 64.217566 64.217566 309.82127 309.82127 32426.339 32426.339 -1978.4499 -1978.4499 Loop time of 583.106 on 1 procs for 1000 steps with 2000 atoms Performance: 0.148 ns/day, 161.974 hours/ns, 1.715 timesteps/s 49.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 | 582.89 | 582.89 | 582.89 | 0.0 | 99.96 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.044686 | 0.044686 | 0.044686 | 0.0 | 0.01 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.14211 | 0.14211 | 0.14211 | 0.0 | 0.02 Other | | 0.03096 | | | 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: 128002 ave 128002 max 128002 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 128002 Ave neighs/atom = 64.001 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 312.674145273115, Press = -9.52320151956114 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 144.2726 144.2726 64.217566 64.217566 309.82127 309.82127 32426.339 32426.339 -1978.4499 -1978.4499 23000 147.31824 147.31824 70.026015 70.026015 299.12892 299.12892 32386.587 32386.587 3106.65 3106.65 Loop time of 582.217 on 1 procs for 1000 steps with 2000 atoms Performance: 0.148 ns/day, 161.727 hours/ns, 1.718 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 | 581.99 | 581.99 | 581.99 | 0.0 | 99.96 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.024933 | 0.024933 | 0.024933 | 0.0 | 0.00 Output | 2.1935e-05 | 2.1935e-05 | 2.1935e-05 | 0.0 | 0.00 Modify | 0.17261 | 0.17261 | 0.17261 | 0.0 | 0.03 Other | | 0.03102 | | | 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: 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 = 312.634909711825, Press = -1.8258801533064 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 147.31824 147.31824 70.026015 70.026015 299.12892 299.12892 32386.587 32386.587 3106.65 3106.65 24000 144.03283 144.03283 65.810663 65.810663 302.72786 302.72786 32361.255 32361.255 4965.2884 4965.2884 Loop time of 579.749 on 1 procs for 1000 steps with 2000 atoms Performance: 0.149 ns/day, 161.041 hours/ns, 1.725 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 | 579.51 | 579.51 | 579.51 | 0.0 | 99.96 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.06504 | 0.06504 | 0.06504 | 0.0 | 0.01 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.16252 | 0.16252 | 0.16252 | 0.0 | 0.03 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: 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 = 312.715850623432, Press = -0.6603718820811 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 144.03283 144.03283 65.810663 65.810663 302.72786 302.72786 32361.255 32361.255 4965.2884 4965.2884 25000 143.86889 143.86889 63.984998 63.984998 309.15891 309.15891 32348.806 32348.806 5750.6117 5750.6117 Loop time of 576.042 on 1 procs for 1000 steps with 2000 atoms Performance: 0.150 ns/day, 160.012 hours/ns, 1.736 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 | 575.78 | 575.78 | 575.78 | 0.0 | 99.96 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.024913 | 0.024913 | 0.024913 | 0.0 | 0.00 Output | 3.2902e-05 | 3.2902e-05 | 3.2902e-05 | 0.0 | 0.00 Modify | 0.1826 | 0.1826 | 0.1826 | 0.0 | 0.03 Other | | 0.05102 | | | 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: 128002 ave 128002 max 128002 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 128002 Ave neighs/atom = 64.001 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 312.763369311517, Press = -2.61069971099014 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 25000 143.86889 143.86889 63.984998 63.984998 309.15891 309.15891 32348.806 32348.806 5750.6117 5750.6117 26000 145.81917 145.81917 60.218241 60.218241 331.28443 331.28443 32393.216 32393.216 657.18633 657.18633 Loop time of 579.475 on 1 procs for 1000 steps with 2000 atoms Performance: 0.149 ns/day, 160.965 hours/ns, 1.726 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 | 579.24 | 579.24 | 579.24 | 0.0 | 99.96 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.044996 | 0.044996 | 0.044996 | 0.0 | 0.01 Output | 2.6941e-05 | 2.6941e-05 | 2.6941e-05 | 0.0 | 0.00 Modify | 0.1826 | 0.1826 | 0.1826 | 0.0 | 0.03 Other | | 0.01104 | | | 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: 128002 ave 128002 max 128002 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 128002 Ave neighs/atom = 64.001 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 312.799670942509, Press = 0.286143597145507 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 26000 145.81917 145.81917 60.218241 60.218241 331.28443 331.28443 32393.216 32393.216 657.18633 657.18633 27000 141.86669 141.86669 63.086305 63.086305 304.88825 304.88825 32404.363 32404.363 -134.34049 -134.34049 Loop time of 579.676 on 1 procs for 1000 steps with 2000 atoms Performance: 0.149 ns/day, 161.021 hours/ns, 1.725 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 | 579.47 | 579.47 | 579.47 | 0.0 | 99.96 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.024949 | 0.024949 | 0.024949 | 0.0 | 0.00 Output | 4.8161e-05 | 4.8161e-05 | 4.8161e-05 | 0.0 | 0.00 Modify | 0.13249 | 0.13249 | 0.13249 | 0.0 | 0.02 Other | | 0.05103 | | | 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: 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 = 312.809949747145, Press = -4.30291241057213 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 27000 141.86669 141.86669 63.086305 63.086305 304.88825 304.88825 32404.363 32404.363 -134.34049 -134.34049 28000 146.26271 146.26271 63.343598 63.343598 320.90553 320.90553 32448.988 32448.988 -4363.7505 -4363.7505 Loop time of 558.85 on 1 procs for 1000 steps with 2000 atoms Performance: 0.155 ns/day, 155.236 hours/ns, 1.789 timesteps/s 51.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 | 558.58 | 558.58 | 558.58 | 0.0 | 99.95 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.084646 | 0.084646 | 0.084646 | 0.0 | 0.02 Output | 2.8133e-05 | 2.8133e-05 | 2.8133e-05 | 0.0 | 0.00 Modify | 0.14216 | 0.14216 | 0.14216 | 0.0 | 0.03 Other | | 0.04091 | | | 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: 128006 ave 128006 max 128006 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 128006 Ave neighs/atom = 64.003 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 312.83362681551, Press = -1.2747397362329 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 28000 146.26271 146.26271 63.343598 63.343598 320.90553 320.90553 32448.988 32448.988 -4363.7505 -4363.7505 29000 147.34147 147.34147 64.923343 64.923343 318.96668 318.96668 32439.565 32439.565 -3075.0386 -3075.0386 Loop time of 547.995 on 1 procs for 1000 steps with 2000 atoms Performance: 0.158 ns/day, 152.221 hours/ns, 1.825 timesteps/s 52.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 | 547.67 | 547.67 | 547.67 | 0.0 | 99.94 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.072999 | 0.072999 | 0.072999 | 0.0 | 0.01 Output | 2.2173e-05 | 2.2173e-05 | 2.2173e-05 | 0.0 | 0.00 Modify | 0.24211 | 0.24211 | 0.24211 | 0.0 | 0.04 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: 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 = 312.981893946099, Press = -1.43658832327356 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 29000 147.34147 147.34147 64.923343 64.923343 318.96668 318.96668 32439.565 32439.565 -3075.0386 -3075.0386 30000 145.11447 145.11447 63.355041 63.355041 316.41745 316.41745 32422.751 32422.751 -1699.3342 -1699.3342 Loop time of 548.019 on 1 procs for 1000 steps with 2000 atoms Performance: 0.158 ns/day, 152.227 hours/ns, 1.825 timesteps/s 52.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 | 547.84 | 547.84 | 547.84 | 0.0 | 99.97 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.044605 | 0.044605 | 0.044605 | 0.0 | 0.01 Output | 2.1935e-05 | 2.1935e-05 | 2.1935e-05 | 0.0 | 0.00 Modify | 0.12195 | 0.12195 | 0.12195 | 0.0 | 0.02 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: 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 = 313.037796772431, Press = -2.37261974034378 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 30000 145.11447 145.11447 63.355041 63.355041 316.41745 316.41745 32422.751 32422.751 -1699.3342 -1699.3342 31000 146.68997 146.68997 65.026638 65.026638 316.04555 316.04555 32337.557 32337.557 7057.3186 7057.3186 Loop time of 546.054 on 1 procs for 1000 steps with 2000 atoms Performance: 0.158 ns/day, 151.682 hours/ns, 1.831 timesteps/s 52.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 | 545.94 | 545.94 | 545.94 | 0.0 | 99.98 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.024689 | 0.024689 | 0.024689 | 0.0 | 0.00 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.082544 | 0.082544 | 0.082544 | 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: 128002 ave 128002 max 128002 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 128002 Ave neighs/atom = 64.001 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.165401120816, Press = -1.19130350951267 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 31000 146.68997 146.68997 65.026638 65.026638 316.04555 316.04555 32337.557 32337.557 7057.3186 7057.3186 32000 142.94884 142.94884 62.416648 62.416648 311.66792 311.66792 32428.922 32428.922 -2426.6261 -2426.6261 Loop time of 516.168 on 1 procs for 1000 steps with 2000 atoms Performance: 0.167 ns/day, 143.380 hours/ns, 1.937 timesteps/s 56.0% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 515.97 | 515.97 | 515.97 | 0.0 | 99.96 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.064869 | 0.064869 | 0.064869 | 0.0 | 0.01 Output | 5.0068e-05 | 5.0068e-05 | 5.0068e-05 | 0.0 | 0.00 Modify | 0.12229 | 0.12229 | 0.12229 | 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: 128004 ave 128004 max 128004 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 128004 Ave neighs/atom = 64.002 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.13098786065, Press = -2.4471375315376 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 32000 142.94884 142.94884 62.416648 62.416648 311.66792 311.66792 32428.922 32428.922 -2426.6261 -2426.6261 33000 146.3833 146.3833 64.926956 64.926956 315.24449 315.24449 32398.026 32398.026 973.93622 973.93622 Loop time of 523.668 on 1 procs for 1000 steps with 2000 atoms Performance: 0.165 ns/day, 145.463 hours/ns, 1.910 timesteps/s 55.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 | 523.38 | 523.38 | 523.38 | 0.0 | 99.95 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.05262 | 0.05262 | 0.05262 | 0.0 | 0.01 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.20244 | 0.20244 | 0.20244 | 0.0 | 0.04 Other | | 0.03103 | | | 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: 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 = 313.146017099382, Press = -0.846101075407637 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 33000 146.3833 146.3833 64.926956 64.926956 315.24449 315.24449 32398.026 32398.026 973.93622 973.93622 34000 146.44508 146.44508 61.237967 61.237967 329.76032 329.76032 32437.072 32437.072 -3426.4594 -3426.4594 Loop time of 524.646 on 1 procs for 1000 steps with 2000 atoms Performance: 0.165 ns/day, 145.735 hours/ns, 1.906 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 | 524.45 | 524.45 | 524.45 | 0.0 | 99.96 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.044735 | 0.044735 | 0.044735 | 0.0 | 0.01 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.145 | 0.145 | 0.145 | 0.0 | 0.03 Other | | 0.01091 | | | 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: 128006 ave 128006 max 128006 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 128006 Ave neighs/atom = 64.003 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.133608866614, Press = -3.03101038462002 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 34000 146.44508 146.44508 61.237967 61.237967 329.76032 329.76032 32437.072 32437.072 -3426.4594 -3426.4594 35000 145.37739 145.37739 63.801897 63.801897 315.70559 315.70559 32373.591 32373.591 3390.58 3390.58 Loop time of 514.066 on 1 procs for 1000 steps with 2000 atoms Performance: 0.168 ns/day, 142.796 hours/ns, 1.945 timesteps/s 56.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 | 513.93 | 513.93 | 513.93 | 0.0 | 99.97 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.044758 | 0.044758 | 0.044758 | 0.0 | 0.01 Output | 2.2173e-05 | 2.2173e-05 | 2.2173e-05 | 0.0 | 0.00 Modify | 0.083014 | 0.083014 | 0.083014 | 0.0 | 0.02 Other | | 0.01106 | | | 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 = 313.167104391278, Press = -1.48646176282056 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 35000 145.37739 145.37739 63.801897 63.801897 315.70559 315.70559 32373.591 32373.591 3390.58 3390.58 36000 146.58622 146.58622 63.996544 63.996544 319.63057 319.63057 32446.542 32446.542 -3882.4614 -3882.4614 Loop time of 488.409 on 1 procs for 1000 steps with 2000 atoms Performance: 0.177 ns/day, 135.669 hours/ns, 2.047 timesteps/s 59.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 | 488.17 | 488.17 | 488.17 | 0.0 | 99.95 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.074834 | 0.074834 | 0.074834 | 0.0 | 0.02 Output | 4.2915e-05 | 4.2915e-05 | 4.2915e-05 | 0.0 | 0.00 Modify | 0.15386 | 0.15386 | 0.15386 | 0.0 | 0.03 Other | | 0.01104 | | | 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: 128002 ave 128002 max 128002 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 128002 Ave neighs/atom = 64.001 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.258336282932, Press = -1.40714758000124 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 36000 146.58622 146.58622 63.996544 63.996544 319.63057 319.63057 32446.542 32446.542 -3882.4614 -3882.4614 37000 143.67389 143.67389 66.823123 66.823123 297.42041 297.42041 32421.593 32421.593 -926.24414 -926.24414 Loop time of 497.191 on 1 procs for 1000 steps with 2000 atoms Performance: 0.174 ns/day, 138.109 hours/ns, 2.011 timesteps/s 58.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 | 497.03 | 497.03 | 497.03 | 0.0 | 99.97 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.044841 | 0.044841 | 0.044841 | 0.0 | 0.01 Output | 3.8147e-05 | 3.8147e-05 | 3.8147e-05 | 0.0 | 0.00 Modify | 0.1021 | 0.1021 | 0.1021 | 0.0 | 0.02 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: 128002 ave 128002 max 128002 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 128002 Ave neighs/atom = 64.001 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.210055441565, Press = -1.67714973171045 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 37000 143.67389 143.67389 66.823123 66.823123 297.42041 297.42041 32421.593 32421.593 -926.24414 -926.24414 38000 143.28376 143.28376 65.109396 65.109396 302.54288 302.54288 32367.443 32367.443 3961.3484 3961.3484 Loop time of 481.212 on 1 procs for 1000 steps with 2000 atoms Performance: 0.180 ns/day, 133.670 hours/ns, 2.078 timesteps/s 60.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 | 481.04 | 481.04 | 481.04 | 0.0 | 99.96 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.024789 | 0.024789 | 0.024789 | 0.0 | 0.01 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.13263 | 0.13263 | 0.13263 | 0.0 | 0.03 Other | | 0.01361 | | | 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: 128002 ave 128002 max 128002 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 128002 Ave neighs/atom = 64.001 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.140319686162, Press = -1.35395197608462 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 38000 143.28376 143.28376 65.109396 65.109396 302.54288 302.54288 32367.443 32367.443 3961.3484 3961.3484 39000 144.02057 144.02057 67.133544 67.133544 297.56072 297.56072 32410.435 32410.435 103.02184 103.02184 Loop time of 462.17 on 1 procs for 1000 steps with 2000 atoms Performance: 0.187 ns/day, 128.381 hours/ns, 2.164 timesteps/s 62.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 | 461.92 | 461.92 | 461.92 | 0.0 | 99.95 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.044775 | 0.044775 | 0.044775 | 0.0 | 0.01 Output | 2.1935e-05 | 2.1935e-05 | 2.1935e-05 | 0.0 | 0.00 Modify | 0.16224 | 0.16224 | 0.16224 | 0.0 | 0.04 Other | | 0.04093 | | | 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: 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 = 313.049308146812, Press = 0.674292300077999 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 39000 144.02057 144.02057 67.133544 67.133544 297.56072 297.56072 32410.435 32410.435 103.02184 103.02184 40000 144.28793 144.28793 65.004952 65.004952 306.83334 306.83334 32377.24 32377.24 3150.0116 3150.0116 Loop time of 464.465 on 1 procs for 1000 steps with 2000 atoms Performance: 0.186 ns/day, 129.018 hours/ns, 2.153 timesteps/s 61.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 | 464.31 | 464.31 | 464.31 | 0.0 | 99.97 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.024749 | 0.024749 | 0.024749 | 0.0 | 0.01 Output | 2.8133e-05 | 2.8133e-05 | 2.8133e-05 | 0.0 | 0.00 Modify | 0.12237 | 0.12237 | 0.12237 | 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: 128002 ave 128002 max 128002 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 128002 Ave neighs/atom = 64.001 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" 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 32407.2383147375 print "LAMMPS calculation completed" LAMMPS calculation completed quit 0