# 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 5.432005196809769*${_u_distance} variable latticeconst_converted equal 5.432005196809769*1 lattice diamond ${latticeconst_converted} lattice diamond 5.43200519680977 Lattice spacing in x,y,z = 5.43201 5.43201 5.43201 region simbox block 0 10 0 10 0 10 units lattice create_box 1 simbox Created orthogonal box = (0 0 0) to (54.3201 54.3201 54.3201) 1 by 1 by 1 MPI processor grid create_atoms 1 box Created 8000 atoms create_atoms CPU = 0.000808954 secs variable mass_converted equal 28.0855*${_u_mass} variable mass_converted equal 28.0855*1 # specify which KIM Model to use pair_style kim Tersoff_LAMMPS_Tersoff_1989_SiGe__MO_350526375143_002 pair_coeff * * Si mass 1 ${mass_converted} mass 1 28.0855 # initial volume variable v equal vol # assign formula variable V0 equal ${v} # evaluate initial value variable V0 equal 160280.441589376 variable V0_metal equal ${V0}/(${_u_distance}*${_u_distance}*${_u_distance}) variable V0_metal equal 160280.441589376/(${_u_distance}*${_u_distance}*${_u_distance}) variable V0_metal equal 160280.441589376/(1*${_u_distance}*${_u_distance}) variable V0_metal equal 160280.441589376/(1*1*${_u_distance}) variable V0_metal equal 160280.441589376/(1*1*1) variable V0_metal_times1000 equal ${V0_metal}*1000 variable V0_metal_times1000 equal 160280.441589376*1000 print "Initial system volume: ${V0_metal} Angstroms^3" Initial system volume: 160280.441589376 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 333.15*${_u_temperature} variable temp_converted equal 333.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 333.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 333.15 ${temp_converted} ${Tdamp_converted} iso ${press_converted} ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 333.15 333.15 ${Tdamp_converted} iso ${press_converted} ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 333.15 333.15 0.1 iso ${press_converted} ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 333.15 333.15 0.1 iso 0 ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 333.15 333.15 0.1 iso 0 0 ${Pdamp_converted} fix ensemble all npt temp 333.15 333.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 "333.15 - 0.2" variable T_up equal "333.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 = 5.1 ghost atom cutoff = 5.1 binsize = 2.55, bins = 22 22 22 1 neighbor lists, perpetual/occasional/extra = 1 0 0 (1) pair kim, perpetual attributes: full, newton off, ghost, cut 5.1 pair build: full/bin/ghost stencil: full/ghost/bin/3d bin: standard Per MPI rank memory allocation (min/avg/max) = 4.616 | 4.616 | 4.616 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 0 -36692.299 -36692.299 -37036.76 -37036.76 333.15 333.15 160280.44 160280.44 2295.5114 2295.5114 1000 -36317.04 -36317.04 -36662.713 -36662.713 334.32197 334.32197 161401.14 161401.14 -381.08105 -381.08105 Loop time of 64.906 on 1 procs for 1000 steps with 8000 atoms Performance: 1.331 ns/day, 18.029 hours/ns, 15.407 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 | 64.153 | 64.153 | 64.153 | 0.0 | 98.84 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.065383 | 0.065383 | 0.065383 | 0.0 | 0.10 Output | 5.6028e-05 | 5.6028e-05 | 5.6028e-05 | 0.0 | 0.00 Modify | 0.61144 | 0.61144 | 0.61144 | 0.0 | 0.94 Other | | 0.07613 | | | 0.12 Nlocal: 8000 ave 8000 max 8000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4995 ave 4995 max 4995 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224000 ave 224000 max 224000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224000 Ave neighs/atom = 28 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 0, Press = 0 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.616 | 4.616 | 4.616 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 1000 -36317.04 -36317.04 -36662.713 -36662.713 334.32197 334.32197 161401.14 161401.14 -381.08105 -381.08105 2000 -36352.275 -36352.275 -36694.418 -36694.418 330.90753 330.90753 161268.17 161268.17 190.39947 190.39947 Loop time of 64.8804 on 1 procs for 1000 steps with 8000 atoms Performance: 1.332 ns/day, 18.022 hours/ns, 15.413 timesteps/s 50.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 | 63.98 | 63.98 | 63.98 | 0.0 | 98.61 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.10432 | 0.10432 | 0.10432 | 0.0 | 0.16 Output | 5.9128e-05 | 5.9128e-05 | 5.9128e-05 | 0.0 | 0.00 Modify | 0.72089 | 0.72089 | 0.72089 | 0.0 | 1.11 Other | | 0.07534 | | | 0.12 Nlocal: 8000 ave 8000 max 8000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4995 ave 4995 max 4995 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: 224010 ave 224010 max 224010 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224010 Ave neighs/atom = 28.0012 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 0, Press = 0 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.616 | 4.616 | 4.616 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 2000 -36352.275 -36352.275 -36694.418 -36694.418 330.90753 330.90753 161268.17 161268.17 190.39947 190.39947 3000 -36335.535 -36335.535 -36688.974 -36688.974 341.83298 341.83298 161281.1 161281.1 -39.567033 -39.567033 Loop time of 61.9342 on 1 procs for 1000 steps with 8000 atoms Performance: 1.395 ns/day, 17.204 hours/ns, 16.146 timesteps/s 53.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 | 61.181 | 61.181 | 61.181 | 0.0 | 98.78 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.065804 | 0.065804 | 0.065804 | 0.0 | 0.11 Output | 4.4107e-05 | 4.4107e-05 | 4.4107e-05 | 0.0 | 0.00 Modify | 0.59195 | 0.59195 | 0.59195 | 0.0 | 0.96 Other | | 0.09552 | | | 0.15 Nlocal: 8000 ave 8000 max 8000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4995 ave 4995 max 4995 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224006 ave 224006 max 224006 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224006 Ave neighs/atom = 28.0008 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 0, Press = 0 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.616 | 4.616 | 4.616 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 3000 -36335.535 -36335.535 -36688.974 -36688.974 341.83298 341.83298 161281.1 161281.1 -39.567033 -39.567033 4000 -36343.034 -36343.034 -36688.121 -36688.121 333.75501 333.75501 161341.49 161341.49 -397.51658 -397.51658 Loop time of 63.2662 on 1 procs for 1000 steps with 8000 atoms Performance: 1.366 ns/day, 17.574 hours/ns, 15.806 timesteps/s 52.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 | 62.472 | 62.472 | 62.472 | 0.0 | 98.75 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.065374 | 0.065374 | 0.065374 | 0.0 | 0.10 Output | 5.5075e-05 | 5.5075e-05 | 5.5075e-05 | 0.0 | 0.00 Modify | 0.61142 | 0.61142 | 0.61142 | 0.0 | 0.97 Other | | 0.1171 | | | 0.19 Nlocal: 8000 ave 8000 max 8000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4995 ave 4995 max 4995 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224006 ave 224006 max 224006 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224006 Ave neighs/atom = 28.0008 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 0, Press = 0 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.616 | 4.616 | 4.616 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 4000 -36343.034 -36343.034 -36688.121 -36688.121 333.75501 333.75501 161341.49 161341.49 -397.51658 -397.51658 5000 -36343.047 -36343.047 -36685.316 -36685.316 331.02924 331.02924 161253.23 161253.23 336.49084 336.49084 Loop time of 59.9826 on 1 procs for 1000 steps with 8000 atoms Performance: 1.440 ns/day, 16.662 hours/ns, 16.672 timesteps/s 54.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 | 59.208 | 59.208 | 59.208 | 0.0 | 98.71 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.066255 | 0.066255 | 0.066255 | 0.0 | 0.11 Output | 4.2915e-05 | 4.2915e-05 | 4.2915e-05 | 0.0 | 0.00 Modify | 0.6121 | 0.6121 | 0.6121 | 0.0 | 1.02 Other | | 0.09618 | | | 0.16 Nlocal: 8000 ave 8000 max 8000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4995 ave 4995 max 4995 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224006 ave 224006 max 224006 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224006 Ave neighs/atom = 28.0008 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 = 333.741957420298, Press = -204.585655053581 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.616 | 4.616 | 4.616 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 5000 -36343.047 -36343.047 -36685.316 -36685.316 331.02924 331.02924 161253.23 161253.23 336.49084 336.49084 6000 -36338.565 -36338.565 -36683.156 -36683.156 333.2759 333.2759 161435.18 161435.18 -704.72345 -704.72345 Loop time of 63.2433 on 1 procs for 1000 steps with 8000 atoms Performance: 1.366 ns/day, 17.568 hours/ns, 15.812 timesteps/s 52.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 | 62.51 | 62.51 | 62.51 | 0.0 | 98.84 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.065598 | 0.065598 | 0.065598 | 0.0 | 0.10 Output | 4.3869e-05 | 4.3869e-05 | 4.3869e-05 | 0.0 | 0.00 Modify | 0.63146 | 0.63146 | 0.63146 | 0.0 | 1.00 Other | | 0.03608 | | | 0.06 Nlocal: 8000 ave 8000 max 8000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4995 ave 4995 max 4995 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224004 ave 224004 max 224004 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224004 Ave neighs/atom = 28.0005 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 = 332.652232132524, Press = -16.5304454339046 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.616 | 4.616 | 4.616 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 6000 -36338.565 -36338.565 -36683.156 -36683.156 333.2759 333.2759 161435.18 161435.18 -704.72345 -704.72345 7000 -36346.993 -36346.993 -36679.801 -36679.801 321.87972 321.87972 161303.65 161303.65 -227.91903 -227.91903 Loop time of 66.6794 on 1 procs for 1000 steps with 8000 atoms Performance: 1.296 ns/day, 18.522 hours/ns, 14.997 timesteps/s 49.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 | 65.96 | 65.96 | 65.96 | 0.0 | 98.92 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.085018 | 0.085018 | 0.085018 | 0.0 | 0.13 Output | 4.3154e-05 | 4.3154e-05 | 4.3154e-05 | 0.0 | 0.00 Modify | 0.59853 | 0.59853 | 0.59853 | 0.0 | 0.90 Other | | 0.03574 | | | 0.05 Nlocal: 8000 ave 8000 max 8000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4995 ave 4995 max 4995 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224008 ave 224008 max 224008 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224008 Ave neighs/atom = 28.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 = 333.136930652214, Press = 14.6181627715384 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.616 | 4.616 | 4.616 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 7000 -36346.993 -36346.993 -36679.801 -36679.801 321.87972 321.87972 161303.65 161303.65 -227.91903 -227.91903 8000 -36337.138 -36337.138 -36686.484 -36686.484 337.87424 337.87424 161194.82 161194.82 629.42784 629.42784 Loop time of 71.8419 on 1 procs for 1000 steps with 8000 atoms Performance: 1.203 ns/day, 19.956 hours/ns, 13.919 timesteps/s 45.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 | 71.163 | 71.163 | 71.163 | 0.0 | 99.06 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.043546 | 0.043546 | 0.043546 | 0.0 | 0.06 Output | 4.4107e-05 | 4.4107e-05 | 4.4107e-05 | 0.0 | 0.00 Modify | 0.58052 | 0.58052 | 0.58052 | 0.0 | 0.81 Other | | 0.05467 | | | 0.08 Nlocal: 8000 ave 8000 max 8000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4995 ave 4995 max 4995 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: 224012 ave 224012 max 224012 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224012 Ave neighs/atom = 28.0015 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 = 333.148756148161, Press = -7.83646541311617 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.616 | 4.616 | 4.616 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 8000 -36337.138 -36337.138 -36686.484 -36686.484 337.87424 337.87424 161194.82 161194.82 629.42784 629.42784 9000 -36347.213 -36347.213 -36688.994 -36688.994 330.55837 330.55837 161432.51 161432.51 -913.08008 -913.08008 Loop time of 74.0804 on 1 procs for 1000 steps with 8000 atoms Performance: 1.166 ns/day, 20.578 hours/ns, 13.499 timesteps/s 44.3% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 72.982 | 72.982 | 72.982 | 0.0 | 98.52 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.20402 | 0.20402 | 0.20402 | 0.0 | 0.28 Output | 4.3869e-05 | 4.3869e-05 | 4.3869e-05 | 0.0 | 0.00 Modify | 0.7995 | 0.7995 | 0.7995 | 0.0 | 1.08 Other | | 0.09518 | | | 0.13 Nlocal: 8000 ave 8000 max 8000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4995 ave 4995 max 4995 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224006 ave 224006 max 224006 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224006 Ave neighs/atom = 28.0008 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 = 333.112814899518, Press = -3.00519568305135 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.616 | 4.616 | 4.616 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 9000 -36347.213 -36347.213 -36688.994 -36688.994 330.55837 330.55837 161432.51 161432.51 -913.08008 -913.08008 10000 -36339.702 -36339.702 -36681.898 -36681.898 330.95946 330.95946 161255.57 161255.57 292.79941 292.79941 Loop time of 72.3165 on 1 procs for 1000 steps with 8000 atoms Performance: 1.195 ns/day, 20.088 hours/ns, 13.828 timesteps/s 45.4% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 71.527 | 71.527 | 71.527 | 0.0 | 98.91 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.08199 | 0.08199 | 0.08199 | 0.0 | 0.11 Output | 7.1049e-05 | 7.1049e-05 | 7.1049e-05 | 0.0 | 0.00 Modify | 0.61309 | 0.61309 | 0.61309 | 0.0 | 0.85 Other | | 0.09473 | | | 0.13 Nlocal: 8000 ave 8000 max 8000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4995 ave 4995 max 4995 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224008 ave 224008 max 224008 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224008 Ave neighs/atom = 28.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 = 333.129345322375, Press = 0.864032922092074 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.616 | 4.616 | 4.616 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 10000 -36339.702 -36339.702 -36681.898 -36681.898 330.95946 330.95946 161255.57 161255.57 292.79941 292.79941 11000 -36341.142 -36341.142 -36686.652 -36686.652 334.16512 334.16512 161302.67 161302.67 66.035705 66.035705 Loop time of 73.9873 on 1 procs for 1000 steps with 8000 atoms Performance: 1.168 ns/day, 20.552 hours/ns, 13.516 timesteps/s 44.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 | 72.992 | 72.992 | 72.992 | 0.0 | 98.66 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.083584 | 0.083584 | 0.083584 | 0.0 | 0.11 Output | 4.2915e-05 | 4.2915e-05 | 4.2915e-05 | 0.0 | 0.00 Modify | 0.81654 | 0.81654 | 0.81654 | 0.0 | 1.10 Other | | 0.09492 | | | 0.13 Nlocal: 8000 ave 8000 max 8000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4995 ave 4995 max 4995 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224002 ave 224002 max 224002 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224002 Ave neighs/atom = 28.0003 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 = 333.175558904712, Press = -5.21745099051849 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.616 | 4.616 | 4.616 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 11000 -36341.142 -36341.142 -36686.652 -36686.652 334.16512 334.16512 161302.67 161302.67 66.035705 66.035705 12000 -36340.387 -36340.387 -36688.31 -36688.31 336.49883 336.49883 161388.21 161388.21 -530.20124 -530.20124 Loop time of 73.7324 on 1 procs for 1000 steps with 8000 atoms Performance: 1.172 ns/day, 20.481 hours/ns, 13.563 timesteps/s 44.3% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 72.788 | 72.788 | 72.788 | 0.0 | 98.72 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.083483 | 0.083483 | 0.083483 | 0.0 | 0.11 Output | 4.2915e-05 | 4.2915e-05 | 4.2915e-05 | 0.0 | 0.00 Modify | 0.82618 | 0.82618 | 0.82618 | 0.0 | 1.12 Other | | 0.03476 | | | 0.05 Nlocal: 8000 ave 8000 max 8000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4995 ave 4995 max 4995 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: 224010 ave 224010 max 224010 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224010 Ave neighs/atom = 28.0012 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 = 333.411227881072, Press = -0.285842817742282 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.616 | 4.616 | 4.616 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 12000 -36340.387 -36340.387 -36688.31 -36688.31 336.49883 336.49883 161388.21 161388.21 -530.20124 -530.20124 13000 -36341.805 -36341.805 -36681.674 -36681.674 328.70905 328.70905 161113.62 161113.62 1172.907 1172.907 Loop time of 74.255 on 1 procs for 1000 steps with 8000 atoms Performance: 1.164 ns/day, 20.626 hours/ns, 13.467 timesteps/s 44.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 | 73.33 | 73.33 | 73.33 | 0.0 | 98.75 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.063671 | 0.063671 | 0.063671 | 0.0 | 0.09 Output | 4.1962e-05 | 4.1962e-05 | 4.1962e-05 | 0.0 | 0.00 Modify | 0.80657 | 0.80657 | 0.80657 | 0.0 | 1.09 Other | | 0.05457 | | | 0.07 Nlocal: 8000 ave 8000 max 8000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4995 ave 4995 max 4995 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224002 ave 224002 max 224002 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224002 Ave neighs/atom = 28.0003 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 = 333.335691553139, Press = 1.39300736463567 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.616 | 4.616 | 4.616 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 13000 -36341.805 -36341.805 -36681.674 -36681.674 328.70905 328.70905 161113.62 161113.62 1172.907 1172.907 14000 -36345.115 -36345.115 -36689.376 -36689.376 332.95661 332.95661 161328.26 161328.26 -104.74536 -104.74536 Loop time of 71.6557 on 1 procs for 1000 steps with 8000 atoms Performance: 1.206 ns/day, 19.904 hours/ns, 13.956 timesteps/s 45.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 | 70.813 | 70.813 | 70.813 | 0.0 | 98.82 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.12408 | 0.12408 | 0.12408 | 0.0 | 0.17 Output | 3.6001e-05 | 3.6001e-05 | 3.6001e-05 | 0.0 | 0.00 Modify | 0.64375 | 0.64375 | 0.64375 | 0.0 | 0.90 Other | | 0.07474 | | | 0.10 Nlocal: 8000 ave 8000 max 8000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4995 ave 4995 max 4995 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224006 ave 224006 max 224006 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224006 Ave neighs/atom = 28.0008 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 = 333.384655560888, Press = -4.80358433343041 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.616 | 4.616 | 4.616 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 14000 -36345.115 -36345.115 -36689.376 -36689.376 332.95661 332.95661 161328.26 161328.26 -104.74536 -104.74536 15000 -36340.602 -36340.602 -36682.076 -36682.076 330.26018 330.26018 161362 161362 -454.63066 -454.63066 Loop time of 64.8856 on 1 procs for 1000 steps with 8000 atoms Performance: 1.332 ns/day, 18.024 hours/ns, 15.412 timesteps/s 50.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 | 64.161 | 64.161 | 64.161 | 0.0 | 98.88 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.064111 | 0.064111 | 0.064111 | 0.0 | 0.10 Output | 4.4823e-05 | 4.4823e-05 | 4.4823e-05 | 0.0 | 0.00 Modify | 0.52503 | 0.52503 | 0.52503 | 0.0 | 0.81 Other | | 0.1353 | | | 0.21 Nlocal: 8000 ave 8000 max 8000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4995 ave 4995 max 4995 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224006 ave 224006 max 224006 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224006 Ave neighs/atom = 28.0008 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 = 333.290534747456, Press = 0.433109177178313 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.616 | 4.616 | 4.616 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 15000 -36340.602 -36340.602 -36682.076 -36682.076 330.26018 330.26018 161362 161362 -454.63066 -454.63066 16000 -36352.664 -36352.664 -36690.231 -36690.231 326.48309 326.48309 161233.6 161233.6 165.98771 165.98771 Loop time of 68.4438 on 1 procs for 1000 steps with 8000 atoms Performance: 1.262 ns/day, 19.012 hours/ns, 14.611 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 | 67.523 | 67.523 | 67.523 | 0.0 | 98.66 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.064181 | 0.064181 | 0.064181 | 0.0 | 0.09 Output | 4.4107e-05 | 4.4107e-05 | 4.4107e-05 | 0.0 | 0.00 Modify | 0.76992 | 0.76992 | 0.76992 | 0.0 | 1.12 Other | | 0.08639 | | | 0.13 Nlocal: 8000 ave 8000 max 8000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4995 ave 4995 max 4995 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: 224012 ave 224012 max 224012 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224012 Ave neighs/atom = 28.0015 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 = 333.130820198354, Press = -1.1769603105158 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.616 | 4.616 | 4.616 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 16000 -36352.664 -36352.664 -36690.231 -36690.231 326.48309 326.48309 161233.6 161233.6 165.98771 165.98771 17000 -36341.184 -36341.184 -36682.014 -36682.014 329.63834 329.63834 161403.08 161403.08 -717.35997 -717.35997 Loop time of 75.246 on 1 procs for 1000 steps with 8000 atoms Performance: 1.148 ns/day, 20.902 hours/ns, 13.290 timesteps/s 43.5% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 74.408 | 74.408 | 74.408 | 0.0 | 98.89 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.093035 | 0.093035 | 0.093035 | 0.0 | 0.12 Output | 3.5048e-05 | 3.5048e-05 | 3.5048e-05 | 0.0 | 0.00 Modify | 0.67112 | 0.67112 | 0.67112 | 0.0 | 0.89 Other | | 0.07415 | | | 0.10 Nlocal: 8000 ave 8000 max 8000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4995 ave 4995 max 4995 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224002 ave 224002 max 224002 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224002 Ave neighs/atom = 28.0003 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 = 333.12310214168, Press = -1.22281111737092 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.616 | 4.616 | 4.616 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 17000 -36341.184 -36341.184 -36682.014 -36682.014 329.63834 329.63834 161403.08 161403.08 -717.35997 -717.35997 18000 -36337.805 -36337.805 -36679.385 -36679.385 330.36367 330.36367 161251.1 161251.1 393.61551 393.61551 Loop time of 78.4461 on 1 procs for 1000 steps with 8000 atoms Performance: 1.101 ns/day, 21.791 hours/ns, 12.748 timesteps/s 41.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 | 77.66 | 77.66 | 77.66 | 0.0 | 99.00 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.063048 | 0.063048 | 0.063048 | 0.0 | 0.08 Output | 3.6955e-05 | 3.6955e-05 | 3.6955e-05 | 0.0 | 0.00 Modify | 0.64914 | 0.64914 | 0.64914 | 0.0 | 0.83 Other | | 0.07369 | | | 0.09 Nlocal: 8000 ave 8000 max 8000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4995 ave 4995 max 4995 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: 224012 ave 224012 max 224012 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224012 Ave neighs/atom = 28.0015 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 = 333.164209918583, Press = 1.39592224125251 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.616 | 4.616 | 4.616 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 18000 -36337.805 -36337.805 -36679.385 -36679.385 330.36367 330.36367 161251.1 161251.1 393.61551 393.61551 19000 -36341.409 -36341.409 -36686.911 -36686.911 334.15725 334.15725 161164.03 161164.03 780.03304 780.03304 Loop time of 78.7051 on 1 procs for 1000 steps with 8000 atoms Performance: 1.098 ns/day, 21.863 hours/ns, 12.706 timesteps/s 41.6% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 77.81 | 77.81 | 77.81 | 0.0 | 98.86 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.06245 | 0.06245 | 0.06245 | 0.0 | 0.08 Output | 4.2915e-05 | 4.2915e-05 | 4.2915e-05 | 0.0 | 0.00 Modify | 0.77881 | 0.77881 | 0.77881 | 0.0 | 0.99 Other | | 0.05399 | | | 0.07 Nlocal: 8000 ave 8000 max 8000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4995 ave 4995 max 4995 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: 224012 ave 224012 max 224012 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224012 Ave neighs/atom = 28.0015 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 = 333.281943648514, Press = -2.83429549874173 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.616 | 4.616 | 4.616 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 19000 -36341.409 -36341.409 -36686.911 -36686.911 334.15725 334.15725 161164.03 161164.03 780.03304 780.03304 20000 -36345.687 -36345.687 -36684.549 -36684.549 327.73484 327.73484 161480.94 161480.94 -1030.8513 -1030.8513 Loop time of 79.3721 on 1 procs for 1000 steps with 8000 atoms Performance: 1.089 ns/day, 22.048 hours/ns, 12.599 timesteps/s 41.3% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 78.463 | 78.463 | 78.463 | 0.0 | 98.85 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.062711 | 0.062711 | 0.062711 | 0.0 | 0.08 Output | 4.3154e-05 | 4.3154e-05 | 4.3154e-05 | 0.0 | 0.00 Modify | 0.77246 | 0.77246 | 0.77246 | 0.0 | 0.97 Other | | 0.07375 | | | 0.09 Nlocal: 8000 ave 8000 max 8000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4995 ave 4995 max 4995 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224008 ave 224008 max 224008 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224008 Ave neighs/atom = 28.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_T333.15.out" else "print 'not_converged' file output/vol_T333.15.out" print '${V}' file output/vol_T333.15.out 161304.054817346 print "LAMMPS calculation completed" LAMMPS calculation completed quit 0