# 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.474051356315613*${_u_distance} variable latticeconst_converted equal 5.474051356315613*1 lattice diamond ${latticeconst_converted} lattice diamond 5.47405135631561 Lattice spacing in x,y,z = 5.47405 5.47405 5.47405 region simbox block 0 10 0 10 0 10 units lattice create_box 1 simbox Created orthogonal box = (0 0 0) to (54.7405 54.7405 54.7405) 1 by 1 by 1 MPI processor grid create_atoms 1 box Created 8000 atoms create_atoms CPU = 0.0108681 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 SNAP_ZuoChenLi_2019_Si__MO_869330304805_000 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 164031.253093386 variable V0_metal equal ${V0}/(${_u_distance}*${_u_distance}*${_u_distance}) variable V0_metal equal 164031.253093386/(${_u_distance}*${_u_distance}*${_u_distance}) variable V0_metal equal 164031.253093386/(1*${_u_distance}*${_u_distance}) variable V0_metal equal 164031.253093386/(1*1*${_u_distance}) variable V0_metal equal 164031.253093386/(1*1*1) variable V0_metal_times1000 equal ${V0_metal}*1000 variable V0_metal_times1000 equal 164031.253093386*1000 print "Initial system volume: ${V0_metal} Angstroms^3" Initial system volume: 164031.253093386 Angstroms^3 # set the time step to 0.001 picoseconds variable timestep_converted equal 0.001*${_u_time} variable timestep_converted equal 0.001*1 timestep ${timestep_converted} timestep 0.001 variable temp_converted equal 273.15*${_u_temperature} variable temp_converted equal 273.15*1 variable Tdamp_converted equal 0.1*${_u_time} variable Tdamp_converted equal 0.1*1 variable press_converted equal 0.0*${_u_pressure} variable press_converted equal 0.0*1 variable Pdamp_converted equal 1*${_u_time} variable Pdamp_converted equal 1*1 # create initial velocities consistent with the chosen temperature velocity all create ${temp_converted} 17 mom yes rot yes velocity all create 273.15 17 mom yes rot yes # set NPT ensemble for all atoms fix ensemble all npt temp ${temp_converted} ${temp_converted} ${Tdamp_converted} iso ${press_converted} ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 273.15 ${temp_converted} ${Tdamp_converted} iso ${press_converted} ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 273.15 273.15 ${Tdamp_converted} iso ${press_converted} ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 273.15 273.15 0.1 iso ${press_converted} ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 273.15 273.15 0.1 iso 0 ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 273.15 273.15 0.1 iso 0 0 ${Pdamp_converted} fix ensemble all npt temp 273.15 273.15 0.1 iso 0 0 1 # compute the time averages of pressure, temperature, and volume, respectively # ignore the first 5000 timesteps variable etotal_metal equal etotal/${_u_energy} variable etotal_metal equal etotal/1 variable pe_metal equal pe/${_u_energy} variable pe_metal equal pe/1 variable T_metal equal temp/${_u_temperature} variable T_metal equal temp/1 variable V_metal equal vol/(${_u_distance}*${_u_distance}*${_u_distance}) variable V_metal equal vol/(1*${_u_distance}*${_u_distance}) variable V_metal equal vol/(1*1*${_u_distance}) variable V_metal equal vol/(1*1*1) variable P_metal equal press/${_u_pressure} variable P_metal equal press/1 fix avgmyTemp all ave/time 5 20 100 v_T_metal ave running start 5000 fix avgmyPress all ave/time 5 20 100 v_P_metal ave running start 5000 fix avgmyVol all ave/time 5 20 100 v_V_metal ave running start 5000 # extract fix quantities into variables so they can be used in if-else logic later. variable T equal f_avgmyTemp variable P equal f_avgmyPress variable V equal f_avgmyVol # set error bounds for temperature and pressure in original metal units (K and bar) variable T_low equal "273.15 - 0.2" variable T_up equal "273.15 + 0.2" variable P_low equal "0.0 - 0.2" variable P_up equal "0.0 + 0.2" # print to logfile every 1000 timesteps thermo_style custom step etotal v_etotal_metal pe v_pe_metal temp v_T_metal vol v_V_metal press v_P_metal thermo 1000 # Run a simulation for at most 2000*1000 timesteps. At each 1000th time step, check # whether the temperature and pressure have converged. If yes, break. label top variable a loop 2000 run 1000 Neighbor list info ... update every 1 steps, delay 10 steps, check yes max neighbors/atom: 2000, page size: 100000 master list distance cutoff = 6.9 ghost atom cutoff = 6.9 binsize = 3.45, bins = 16 16 16 1 neighbor lists, perpetual/occasional/extra = 1 0 0 (1) pair kim, perpetual attributes: full, newton off, cut 6.9 pair build: full/bin/atomonly stencil: full/bin/3d bin: standard Per MPI rank memory allocation (min/avg/max) = 7.894 | 7.894 | 7.894 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 0 -43064.486 -43064.486 -43346.91 -43346.91 273.15 273.15 164031.25 164031.25 1839.0243 1839.0243 1000 -42756.343 -42756.343 -43050.023 -43050.023 284.03671 284.03671 164487.13 164487.13 -945.70227 -945.70227 Loop time of 6407.59 on 1 procs for 1000 steps with 8000 atoms Performance: 0.013 ns/day, 1779.885 hours/ns, 0.156 timesteps/s 62.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 | 6407 | 6407 | 6407 | 0.0 | 99.99 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.098741 | 0.098741 | 0.098741 | 0.0 | 0.00 Output | 4.5061e-05 | 4.5061e-05 | 4.5061e-05 | 0.0 | 0.00 Modify | 0.47139 | 0.47139 | 0.47139 | 0.0 | 0.01 Other | | 0.05205 | | | 0.00 Nlocal: 8000 ave 8000 max 8000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8601 ave 8601 max 8601 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: 560000 ave 560000 max 560000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 560000 Ave neighs/atom = 70 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 0, Press = 0 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.896 | 7.896 | 7.896 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 1000 -42756.343 -42756.343 -43050.023 -43050.023 284.03671 284.03671 164487.13 164487.13 -945.70227 -945.70227 2000 -42786.137 -42786.137 -43064.059 -43064.059 268.79579 268.79579 164404.81 164404.81 -627.91748 -627.91748 Loop time of 6376.37 on 1 procs for 1000 steps with 8000 atoms Performance: 0.014 ns/day, 1771.213 hours/ns, 0.157 timesteps/s 62.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 | 6375.8 | 6375.8 | 6375.8 | 0.0 | 99.99 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.076443 | 0.076443 | 0.076443 | 0.0 | 0.00 Output | 4.2915e-05 | 4.2915e-05 | 4.2915e-05 | 0.0 | 0.00 Modify | 0.43102 | 0.43102 | 0.43102 | 0.0 | 0.01 Other | | 0.05165 | | | 0.00 Nlocal: 8000 ave 8000 max 8000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8162 ave 8162 max 8162 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: 556798 ave 556798 max 556798 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 556798 Ave neighs/atom = 69.5998 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 0, Press = 0 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.896 | 7.896 | 7.896 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 2000 -42786.137 -42786.137 -43064.059 -43064.059 268.79579 268.79579 164404.81 164404.81 -627.91748 -627.91748 3000 -42770.629 -42770.629 -43062.663 -43062.663 282.44511 282.44511 164310.85 164310.85 208.71728 208.71728 Loop time of 5972.01 on 1 procs for 1000 steps with 8000 atoms Performance: 0.014 ns/day, 1658.892 hours/ns, 0.167 timesteps/s 66.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 | 5971.4 | 5971.4 | 5971.4 | 0.0 | 99.99 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.076068 | 0.076068 | 0.076068 | 0.0 | 0.00 Output | 5.1975e-05 | 5.1975e-05 | 5.1975e-05 | 0.0 | 0.00 Modify | 0.49917 | 0.49917 | 0.49917 | 0.0 | 0.01 Other | | 0.03139 | | | 0.00 Nlocal: 8000 ave 8000 max 8000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8123 ave 8123 max 8123 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: 557394 ave 557394 max 557394 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 557394 Ave neighs/atom = 69.6743 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 0, Press = 0 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.896 | 7.896 | 7.896 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 3000 -42770.629 -42770.629 -43062.663 -43062.663 282.44511 282.44511 164310.85 164310.85 208.71728 208.71728 4000 -42777.938 -42777.938 -43063.086 -43063.086 275.7847 275.7847 164189.08 164189.08 452.65391 452.65391 Loop time of 5594.16 on 1 procs for 1000 steps with 8000 atoms Performance: 0.015 ns/day, 1553.932 hours/ns, 0.179 timesteps/s 71.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 | 5593.6 | 5593.6 | 5593.6 | 0.0 | 99.99 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.056626 | 0.056626 | 0.056626 | 0.0 | 0.00 Output | 5.1975e-05 | 5.1975e-05 | 5.1975e-05 | 0.0 | 0.00 Modify | 0.41326 | 0.41326 | 0.41326 | 0.0 | 0.01 Other | | 0.05182 | | | 0.00 Nlocal: 8000 ave 8000 max 8000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8177 ave 8177 max 8177 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: 557456 ave 557456 max 557456 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 557456 Ave neighs/atom = 69.682 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 0, Press = 0 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.896 | 7.896 | 7.896 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 4000 -42777.938 -42777.938 -43063.086 -43063.086 275.7847 275.7847 164189.08 164189.08 452.65391 452.65391 5000 -42776.916 -42776.916 -43061.439 -43061.439 275.18002 275.18002 164245.75 164245.75 395.52904 395.52904 Loop time of 5621.85 on 1 procs for 1000 steps with 8000 atoms Performance: 0.015 ns/day, 1561.624 hours/ns, 0.178 timesteps/s 71.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 | 5621.2 | 5621.2 | 5621.2 | 0.0 | 99.99 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.13664 | 0.13664 | 0.13664 | 0.0 | 0.00 Output | 4.1962e-05 | 4.1962e-05 | 4.1962e-05 | 0.0 | 0.00 Modify | 0.44057 | 0.44057 | 0.44057 | 0.0 | 0.01 Other | | 0.03391 | | | 0.00 Nlocal: 8000 ave 8000 max 8000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8167 ave 8167 max 8167 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: 557772 ave 557772 max 557772 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 557772 Ave neighs/atom = 69.7215 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.751751286888, Press = 521.25240847995 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.896 | 7.896 | 7.896 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 5000 -42776.916 -42776.916 -43061.439 -43061.439 275.18002 275.18002 164245.75 164245.75 395.52904 395.52904 6000 -42775.518 -42775.518 -43054.083 -43054.083 269.41838 269.41838 164341.19 164341.19 -499.72026 -499.72026 Loop time of 5632.77 on 1 procs for 1000 steps with 8000 atoms Performance: 0.015 ns/day, 1564.658 hours/ns, 0.178 timesteps/s 71.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 | 5632.2 | 5632.2 | 5632.2 | 0.0 | 99.99 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.076333 | 0.076333 | 0.076333 | 0.0 | 0.00 Output | 4.2915e-05 | 4.2915e-05 | 4.2915e-05 | 0.0 | 0.00 Modify | 0.45813 | 0.45813 | 0.45813 | 0.0 | 0.01 Other | | 0.05165 | | | 0.00 Nlocal: 8000 ave 8000 max 8000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8164 ave 8164 max 8164 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: 557668 ave 557668 max 557668 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 557668 Ave neighs/atom = 69.7085 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 272.756460589591, Press = 20.4907063126795 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.896 | 7.896 | 7.896 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 6000 -42775.518 -42775.518 -43054.083 -43054.083 269.41838 269.41838 164341.19 164341.19 -499.72026 -499.72026 7000 -42779.836 -42779.836 -43058.357 -43058.357 269.3754 269.3754 164321.25 164321.25 -143.98248 -143.98248 Loop time of 5598.18 on 1 procs for 1000 steps with 8000 atoms Performance: 0.015 ns/day, 1555.049 hours/ns, 0.179 timesteps/s 71.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 | 5597.7 | 5597.7 | 5597.7 | 0.0 | 99.99 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.056391 | 0.056391 | 0.056391 | 0.0 | 0.00 Output | 4.1008e-05 | 4.1008e-05 | 4.1008e-05 | 0.0 | 0.00 Modify | 0.40546 | 0.40546 | 0.40546 | 0.0 | 0.01 Other | | 0.03363 | | | 0.00 Nlocal: 8000 ave 8000 max 8000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8193 ave 8193 max 8193 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: 557114 ave 557114 max 557114 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 557114 Ave neighs/atom = 69.6393 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.151767948904, Press = 7.52649643970779 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.896 | 7.896 | 7.896 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 7000 -42779.836 -42779.836 -43058.357 -43058.357 269.3754 269.3754 164321.25 164321.25 -143.98248 -143.98248 8000 -42773.189 -42773.189 -43066.354 -43066.354 283.53849 283.53849 164184.8 164184.8 799.23907 799.23907 Loop time of 5604.84 on 1 procs for 1000 steps with 8000 atoms Performance: 0.015 ns/day, 1556.901 hours/ns, 0.178 timesteps/s 71.4% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 5604.1 | 5604.1 | 5604.1 | 0.0 | 99.99 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.1462 | 0.1462 | 0.1462 | 0.0 | 0.00 Output | 4.1008e-05 | 4.1008e-05 | 4.1008e-05 | 0.0 | 0.00 Modify | 0.50738 | 0.50738 | 0.50738 | 0.0 | 0.01 Other | | 0.05207 | | | 0.00 Nlocal: 8000 ave 8000 max 8000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8106 ave 8106 max 8106 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: 557432 ave 557432 max 557432 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 557432 Ave neighs/atom = 69.679 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.050675252891, Press = 1.69597083341956 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.896 | 7.896 | 7.896 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 8000 -42773.189 -42773.189 -43066.354 -43066.354 283.53849 283.53849 164184.8 164184.8 799.23907 799.23907 9000 -42781.188 -42781.188 -43061.827 -43061.827 271.42339 271.42339 164188.15 164188.15 594.91515 594.91515 Loop time of 5184.47 on 1 procs for 1000 steps with 8000 atoms Performance: 0.017 ns/day, 1440.130 hours/ns, 0.193 timesteps/s 77.2% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 5184 | 5184 | 5184 | 0.0 | 99.99 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.056799 | 0.056799 | 0.056799 | 0.0 | 0.00 Output | 4.1008e-05 | 4.1008e-05 | 4.1008e-05 | 0.0 | 0.00 Modify | 0.36754 | 0.36754 | 0.36754 | 0.0 | 0.01 Other | | 0.03198 | | | 0.00 Nlocal: 8000 ave 8000 max 8000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8131 ave 8131 max 8131 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: 557824 ave 557824 max 557824 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 557824 Ave neighs/atom = 69.728 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.114703875512, Press = 1.29118951262147 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.896 | 7.896 | 7.896 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 9000 -42781.188 -42781.188 -43061.827 -43061.827 271.42339 271.42339 164188.15 164188.15 594.91515 594.91515 10000 -42774.885 -42774.885 -43056.079 -43056.079 271.96096 271.96096 164268.51 164268.51 117.44484 117.44484 Loop time of 5214.05 on 1 procs for 1000 steps with 8000 atoms Performance: 0.017 ns/day, 1448.347 hours/ns, 0.192 timesteps/s 76.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 | 5213.6 | 5213.6 | 5213.6 | 0.0 | 99.99 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.076296 | 0.076296 | 0.076296 | 0.0 | 0.00 Output | 6.2943e-05 | 6.2943e-05 | 6.2943e-05 | 0.0 | 0.00 Modify | 0.35718 | 0.35718 | 0.35718 | 0.0 | 0.01 Other | | 0.03155 | | | 0.00 Nlocal: 8000 ave 8000 max 8000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8165 ave 8165 max 8165 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: 557632 ave 557632 max 557632 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 557632 Ave neighs/atom = 69.704 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.133495730233, Press = 2.44677864203438 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.896 | 7.896 | 7.896 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 10000 -42774.885 -42774.885 -43056.079 -43056.079 271.96096 271.96096 164268.51 164268.51 117.44484 117.44484 11000 -42782.862 -42782.862 -43056.933 -43056.933 265.07171 265.07171 164251.05 164251.05 107.93132 107.93132 Loop time of 4911.23 on 1 procs for 1000 steps with 8000 atoms Performance: 0.018 ns/day, 1364.230 hours/ns, 0.204 timesteps/s 81.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 | 4910.7 | 4910.7 | 4910.7 | 0.0 | 99.99 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.055418 | 0.055418 | 0.055418 | 0.0 | 0.00 Output | 4.1962e-05 | 4.1962e-05 | 4.1962e-05 | 0.0 | 0.00 Modify | 0.3971 | 0.3971 | 0.3971 | 0.0 | 0.01 Other | | 0.0317 | | | 0.00 Nlocal: 8000 ave 8000 max 8000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8093 ave 8093 max 8093 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: 557476 ave 557476 max 557476 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 557476 Ave neighs/atom = 69.6845 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.055188570443, Press = 0.793549942505922 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.896 | 7.896 | 7.896 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 11000 -42782.862 -42782.862 -43056.933 -43056.933 265.07171 265.07171 164251.05 164251.05 107.93132 107.93132 12000 -42774.173 -42774.173 -43054.269 -43054.269 270.8982 270.8982 164234.79 164234.79 275.13317 275.13317 Loop time of 4446.76 on 1 procs for 1000 steps with 8000 atoms Performance: 0.019 ns/day, 1235.210 hours/ns, 0.225 timesteps/s 90.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 | 4446.3 | 4446.3 | 4446.3 | 0.0 | 99.99 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.076203 | 0.076203 | 0.076203 | 0.0 | 0.00 Output | 4.1962e-05 | 4.1962e-05 | 4.1962e-05 | 0.0 | 0.00 Modify | 0.31763 | 0.31763 | 0.31763 | 0.0 | 0.01 Other | | 0.03155 | | | 0.00 Nlocal: 8000 ave 8000 max 8000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8104 ave 8104 max 8104 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: 557442 ave 557442 max 557442 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 557442 Ave neighs/atom = 69.6803 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 273.042301784948, Press = 0.850583810565696 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.896 | 7.896 | 7.896 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 12000 -42774.173 -42774.173 -43054.269 -43054.269 270.8982 270.8982 164234.79 164234.79 275.13317 275.13317 13000 -42780.777 -42780.777 -43065.978 -43065.978 275.83561 275.83561 164248.59 164248.59 287.64275 287.64275 Loop time of 4392.91 on 1 procs for 1000 steps with 8000 atoms Performance: 0.020 ns/day, 1220.254 hours/ns, 0.228 timesteps/s 91.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 | 4392.5 | 4392.5 | 4392.5 | 0.0 | 99.99 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.075989 | 0.075989 | 0.075989 | 0.0 | 0.00 Output | 4.1008e-05 | 4.1008e-05 | 4.1008e-05 | 0.0 | 0.00 Modify | 0.29656 | 0.29656 | 0.29656 | 0.0 | 0.01 Other | | 0.03167 | | | 0.00 Nlocal: 8000 ave 8000 max 8000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8147 ave 8147 max 8147 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: 557528 ave 557528 max 557528 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 557528 Ave neighs/atom = 69.691 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" jump SELF break # Write final averaged volume to file if temperature and volume have converged; otherwise wirte a # flag to indicate non-convergence. variable myStep equal step if "${myStep} < 2000000" then "print '${V}' file output/vol_T273.15.out" else "print 'not_converged' file output/vol_T273.15.out" print '${V}' file output/vol_T273.15.out 164295.651766748 print "LAMMPS calculation completed" LAMMPS calculation completed quit 0