# 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.5200000256299973*${_u_distance} variable latticeconst_converted equal 3.5200000256299973*1 lattice fcc ${latticeconst_converted} lattice fcc 3.52000002563 Lattice spacing in x,y,z = 3.52 3.52 3.52 region simbox block 0 10 0 10 0 10 units lattice create_box 1 simbox Created orthogonal box = (0 0 0) to (35.2 35.2 35.2) 1 by 1 by 1 MPI processor grid create_atoms 1 box Created 4000 atoms create_atoms CPU = 0.000466108 secs variable mass_converted equal 58.6934*${_u_mass} variable mass_converted equal 58.6934*1 # specify which KIM Model to use pair_style kim EAM_Dynamo_PunYamakovMishin_2015_NiCo__MO_010613863288_000 pair_coeff * * Ni mass 1 ${mass_converted} mass 1 58.6934 # initial volume variable v equal vol # assign formula variable V0 equal ${v} # evaluate initial value variable V0 equal 43614.2089526979 variable V0_metal equal ${V0}/(${_u_distance}*${_u_distance}*${_u_distance}) variable V0_metal equal 43614.2089526979/(${_u_distance}*${_u_distance}*${_u_distance}) variable V0_metal equal 43614.2089526979/(1*${_u_distance}*${_u_distance}) variable V0_metal equal 43614.2089526979/(1*1*${_u_distance}) variable V0_metal equal 43614.2089526979/(1*1*1) variable V0_metal_times1000 equal ${V0_metal}*1000 variable V0_metal_times1000 equal 43614.2089526979*1000 print "Initial system volume: ${V0_metal} Angstroms^3" Initial system volume: 43614.2089526979 Angstroms^3 # set the time step to 0.001 picoseconds variable timestep_converted equal 0.001*${_u_time} variable timestep_converted equal 0.001*1 timestep ${timestep_converted} timestep 0.001 variable temp_converted equal 253.15*${_u_temperature} variable temp_converted equal 253.15*1 variable Tdamp_converted equal 0.1*${_u_time} variable Tdamp_converted equal 0.1*1 variable press_converted equal 0.0*${_u_pressure} variable press_converted equal 0.0*1 variable Pdamp_converted equal 1*${_u_time} variable Pdamp_converted equal 1*1 # create initial velocities consistent with the chosen temperature velocity all create ${temp_converted} 17 mom yes rot yes velocity all create 253.15 17 mom yes rot yes # set NPT ensemble for all atoms fix ensemble all npt temp ${temp_converted} ${temp_converted} ${Tdamp_converted} iso ${press_converted} ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 253.15 ${temp_converted} ${Tdamp_converted} iso ${press_converted} ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 253.15 253.15 ${Tdamp_converted} iso ${press_converted} ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 253.15 253.15 0.1 iso ${press_converted} ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 253.15 253.15 0.1 iso 0 ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 253.15 253.15 0.1 iso 0 0 ${Pdamp_converted} fix ensemble all npt temp 253.15 253.15 0.1 iso 0 0 1 # compute the time averages of pressure, temperature, and volume, respectively # ignore the first 5000 timesteps variable etotal_metal equal etotal/${_u_energy} variable etotal_metal equal etotal/1 variable pe_metal equal pe/${_u_energy} variable pe_metal equal pe/1 variable T_metal equal temp/${_u_temperature} variable T_metal equal temp/1 variable V_metal equal vol/(${_u_distance}*${_u_distance}*${_u_distance}) variable V_metal equal vol/(1*${_u_distance}*${_u_distance}) variable V_metal equal vol/(1*1*${_u_distance}) variable V_metal equal vol/(1*1*1) variable P_metal equal press/${_u_pressure} variable P_metal equal press/1 fix avgmyTemp all ave/time 5 20 100 v_T_metal ave running start 5000 fix avgmyPress all ave/time 5 20 100 v_P_metal ave running start 5000 fix avgmyVol all ave/time 5 20 100 v_V_metal ave running start 5000 # extract fix quantities into variables so they can be used in if-else logic later. variable T equal f_avgmyTemp variable P equal f_avgmyPress variable V equal f_avgmyVol # set error bounds for temperature and pressure in original metal units (K and bar) variable T_low equal "253.15 - 0.2" variable T_up equal "253.15 + 0.2" variable P_low equal "0.0 - 0.2" variable P_up equal "0.0 + 0.2" # print to logfile every 1000 timesteps thermo_style custom step etotal v_etotal_metal pe v_pe_metal temp v_T_metal vol v_V_metal press v_P_metal thermo 1000 # Run a simulation for at most 2000*1000 timesteps. At each 1000th time step, check # whether the temperature and pressure have converged. If yes, break. label top variable a loop 2000 run 1000 Neighbor list info ... update every 1 steps, delay 10 steps, check yes max neighbors/atom: 2000, page size: 100000 master list distance cutoff = 8.49954 ghost atom cutoff = 8.49954 binsize = 4.24977, bins = 9 9 9 1 neighbor lists, perpetual/occasional/extra = 1 0 0 (1) pair kim, perpetual attributes: full, newton off, cut 8.49954 pair build: full/bin/atomonly stencil: full/bin/3d bin: standard Per MPI rank memory allocation (min/avg/max) = 7.004 | 7.004 | 7.004 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 0 -17669.144 -17669.144 -17800 -17800 253.15 253.15 43614.209 43614.209 3204.7131 3204.7131 1000 -17528.7 -17528.7 -17659.475 -17659.475 252.99223 252.99223 43922.718 43922.718 -1680.2207 -1680.2207 Loop time of 45.0739 on 1 procs for 1000 steps with 4000 atoms Performance: 1.917 ns/day, 12.521 hours/ns, 22.186 timesteps/s 40.9% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 44.497 | 44.497 | 44.497 | 0.0 | 98.72 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.12429 | 0.12429 | 0.12429 | 0.0 | 0.28 Output | 3.5048e-05 | 3.5048e-05 | 3.5048e-05 | 0.0 | 0.00 Modify | 0.41039 | 0.41039 | 0.41039 | 0.0 | 0.91 Other | | 0.04193 | | | 0.09 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8195 ave 8195 max 8195 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 896000 ave 896000 max 896000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 896000 Ave neighs/atom = 224 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 0, Press = 0 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.004 | 7.004 | 7.004 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 1000 -17528.7 -17528.7 -17659.475 -17659.475 252.99223 252.99223 43922.718 43922.718 -1680.2207 -1680.2207 2000 -17538.216 -17538.216 -17662.65 -17662.65 240.72591 240.72591 43849.358 43849.358 734.76932 734.76932 Loop time of 47.7556 on 1 procs for 1000 steps with 4000 atoms Performance: 1.809 ns/day, 13.265 hours/ns, 20.940 timesteps/s 39.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 | 47.291 | 47.291 | 47.291 | 0.0 | 99.03 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.053188 | 0.053188 | 0.053188 | 0.0 | 0.11 Output | 4.4107e-05 | 4.4107e-05 | 4.4107e-05 | 0.0 | 0.00 Modify | 0.35007 | 0.35007 | 0.35007 | 0.0 | 0.73 Other | | 0.0614 | | | 0.13 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8195 ave 8195 max 8195 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 899788 ave 899788 max 899788 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 899788 Ave neighs/atom = 224.947 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 0, Press = 0 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.004 | 7.004 | 7.004 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 2000 -17538.216 -17538.216 -17662.65 -17662.65 240.72591 240.72591 43849.358 43849.358 734.76932 734.76932 3000 -17535.387 -17535.387 -17670.432 -17670.432 261.25333 261.25333 43879.924 43879.924 -542.94951 -542.94951 Loop time of 46.5882 on 1 procs for 1000 steps with 4000 atoms Performance: 1.855 ns/day, 12.941 hours/ns, 21.465 timesteps/s 40.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 | 46.012 | 46.012 | 46.012 | 0.0 | 98.76 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.093661 | 0.093661 | 0.093661 | 0.0 | 0.20 Output | 4.3869e-05 | 4.3869e-05 | 4.3869e-05 | 0.0 | 0.00 Modify | 0.45 | 0.45 | 0.45 | 0.0 | 0.97 Other | | 0.03261 | | | 0.07 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8195 ave 8195 max 8195 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 900320 ave 900320 max 900320 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 900320 Ave neighs/atom = 225.08 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 0, Press = 0 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.004 | 7.004 | 7.004 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 3000 -17535.387 -17535.387 -17670.432 -17670.432 261.25333 261.25333 43879.924 43879.924 -542.94951 -542.94951 4000 -17534.611 -17534.611 -17663.849 -17663.849 250.01884 250.01884 43879.955 43879.955 -173.93026 -173.93026 Loop time of 47.0672 on 1 procs for 1000 steps with 4000 atoms Performance: 1.836 ns/day, 13.074 hours/ns, 21.246 timesteps/s 40.0% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 46.572 | 46.572 | 46.572 | 0.0 | 98.95 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.093591 | 0.093591 | 0.093591 | 0.0 | 0.20 Output | 4.4823e-05 | 4.4823e-05 | 4.4823e-05 | 0.0 | 0.00 Modify | 0.37975 | 0.37975 | 0.37975 | 0.0 | 0.81 Other | | 0.02139 | | | 0.05 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8195 ave 8195 max 8195 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 899484 ave 899484 max 899484 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 899484 Ave neighs/atom = 224.871 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 0, Press = 0 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.004 | 7.004 | 7.004 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 4000 -17534.611 -17534.611 -17663.849 -17663.849 250.01884 250.01884 43879.955 43879.955 -173.93026 -173.93026 5000 -17537.972 -17537.972 -17668.497 -17668.497 252.50959 252.50959 43847.745 43847.745 644.67158 644.67158 Loop time of 44.9699 on 1 procs for 1000 steps with 4000 atoms Performance: 1.921 ns/day, 12.492 hours/ns, 22.237 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 | 44.373 | 44.373 | 44.373 | 0.0 | 98.67 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.15327 | 0.15327 | 0.15327 | 0.0 | 0.34 Output | 3.3855e-05 | 3.3855e-05 | 3.3855e-05 | 0.0 | 0.00 Modify | 0.42245 | 0.42245 | 0.42245 | 0.0 | 0.94 Other | | 0.02132 | | | 0.05 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8195 ave 8195 max 8195 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 900436 ave 900436 max 900436 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 900436 Ave neighs/atom = 225.109 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 = 251.380963931528, Press = 153.426641532144 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.004 | 7.004 | 7.004 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 5000 -17537.972 -17537.972 -17668.497 -17668.497 252.50959 252.50959 43847.745 43847.745 644.67158 644.67158 6000 -17533.568 -17533.568 -17663.646 -17663.646 251.6445 251.6445 43909.465 43909.465 -1537.4424 -1537.4424 Loop time of 42.4102 on 1 procs for 1000 steps with 4000 atoms Performance: 2.037 ns/day, 11.781 hours/ns, 23.579 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 | 41.836 | 41.836 | 41.836 | 0.0 | 98.65 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.073487 | 0.073487 | 0.073487 | 0.0 | 0.17 Output | 3.5048e-05 | 3.5048e-05 | 3.5048e-05 | 0.0 | 0.00 Modify | 0.43941 | 0.43941 | 0.43941 | 0.0 | 1.04 Other | | 0.06154 | | | 0.15 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8195 ave 8195 max 8195 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 899992 ave 899992 max 899992 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 899992 Ave neighs/atom = 224.998 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.789561524611, Press = -7.80743822730334 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.004 | 7.004 | 7.004 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 6000 -17533.568 -17533.568 -17663.646 -17663.646 251.6445 251.6445 43909.465 43909.465 -1537.4424 -1537.4424 7000 -17538.648 -17538.648 -17666.864 -17666.864 248.04171 248.04171 43815.602 43815.602 1972.0472 1972.0472 Loop time of 40.4813 on 1 procs for 1000 steps with 4000 atoms Performance: 2.134 ns/day, 11.245 hours/ns, 24.703 timesteps/s 46.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 | 39.938 | 39.938 | 39.938 | 0.0 | 98.66 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.13627 | 0.13627 | 0.13627 | 0.0 | 0.34 Output | 3.4094e-05 | 3.4094e-05 | 3.4094e-05 | 0.0 | 0.00 Modify | 0.32572 | 0.32572 | 0.32572 | 0.0 | 0.80 Other | | 0.08172 | | | 0.20 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8195 ave 8195 max 8195 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 900084 ave 900084 max 900084 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 900084 Ave neighs/atom = 225.021 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.994356095945, Press = -2.69024868828023 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.004 | 7.004 | 7.004 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 7000 -17538.648 -17538.648 -17666.864 -17666.864 248.04171 248.04171 43815.602 43815.602 1972.0472 1972.0472 8000 -17535.253 -17535.253 -17667.387 -17667.387 255.62299 255.62299 43918.281 43918.281 -1958.5623 -1958.5623 Loop time of 42.6345 on 1 procs for 1000 steps with 4000 atoms Performance: 2.027 ns/day, 11.843 hours/ns, 23.455 timesteps/s 44.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 | 42.188 | 42.188 | 42.188 | 0.0 | 98.95 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.093777 | 0.093777 | 0.093777 | 0.0 | 0.22 Output | 3.5048e-05 | 3.5048e-05 | 3.5048e-05 | 0.0 | 0.00 Modify | 0.29141 | 0.29141 | 0.29141 | 0.0 | 0.68 Other | | 0.06141 | | | 0.14 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8195 ave 8195 max 8195 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 900532 ave 900532 max 900532 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 900532 Ave neighs/atom = 225.133 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.99958038711, Press = 8.2615016714624 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.004 | 7.004 | 7.004 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 8000 -17535.253 -17535.253 -17667.387 -17667.387 255.62299 255.62299 43918.281 43918.281 -1958.5623 -1958.5623 9000 -17536.169 -17536.169 -17666.709 -17666.709 252.53842 252.53842 43858.442 43858.442 392.68831 392.68831 Loop time of 45.8529 on 1 procs for 1000 steps with 4000 atoms Performance: 1.884 ns/day, 12.737 hours/ns, 21.809 timesteps/s 40.9% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 45.234 | 45.234 | 45.234 | 0.0 | 98.65 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.11334 | 0.11334 | 0.11334 | 0.0 | 0.25 Output | 3.3855e-05 | 3.3855e-05 | 3.3855e-05 | 0.0 | 0.00 Modify | 0.41452 | 0.41452 | 0.41452 | 0.0 | 0.90 Other | | 0.09141 | | | 0.20 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8195 ave 8195 max 8195 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 899846 ave 899846 max 899846 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 899846 Ave neighs/atom = 224.962 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.298604966257, Press = -3.6097971336913 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.004 | 7.004 | 7.004 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 9000 -17536.169 -17536.169 -17666.709 -17666.709 252.53842 252.53842 43858.442 43858.442 392.68831 392.68831 10000 -17535.908 -17535.908 -17666.32 -17666.32 252.29015 252.29015 43867.516 43867.516 -7.9833526 -7.9833526 Loop time of 43.8441 on 1 procs for 1000 steps with 4000 atoms Performance: 1.971 ns/day, 12.179 hours/ns, 22.808 timesteps/s 42.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 | 43.103 | 43.103 | 43.103 | 0.0 | 98.31 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.1337 | 0.1337 | 0.1337 | 0.0 | 0.30 Output | 6.1035e-05 | 6.1035e-05 | 6.1035e-05 | 0.0 | 0.00 Modify | 0.56546 | 0.56546 | 0.56546 | 0.0 | 1.29 Other | | 0.0417 | | | 0.10 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8195 ave 8195 max 8195 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 900138 ave 900138 max 900138 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 900138 Ave neighs/atom = 225.035 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.358002189626, Press = 2.10573287176357 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.004 | 7.004 | 7.004 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 10000 -17535.908 -17535.908 -17666.32 -17666.32 252.29015 252.29015 43867.516 43867.516 -7.9833526 -7.9833526 11000 -17539.744 -17539.744 -17667.726 -17667.726 247.59006 247.59006 43863.237 43863.237 120.52482 120.52482 Loop time of 43.6315 on 1 procs for 1000 steps with 4000 atoms Performance: 1.980 ns/day, 12.120 hours/ns, 22.919 timesteps/s 43.3% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 43.131 | 43.131 | 43.131 | 0.0 | 98.85 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.093586 | 0.093586 | 0.093586 | 0.0 | 0.21 Output | 3.2902e-05 | 3.2902e-05 | 3.2902e-05 | 0.0 | 0.00 Modify | 0.36549 | 0.36549 | 0.36549 | 0.0 | 0.84 Other | | 0.04167 | | | 0.10 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8195 ave 8195 max 8195 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 900100 ave 900100 max 900100 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 900100 Ave neighs/atom = 225.025 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.0338492906, Press = -0.781394878268307 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.004 | 7.004 | 7.004 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 11000 -17539.744 -17539.744 -17667.726 -17667.726 247.59006 247.59006 43863.237 43863.237 120.52482 120.52482 12000 -17534.746 -17534.746 -17665.539 -17665.539 253.02617 253.02617 43875.242 43875.242 -182.50537 -182.50537 Loop time of 43.5285 on 1 procs for 1000 steps with 4000 atoms Performance: 1.985 ns/day, 12.091 hours/ns, 22.973 timesteps/s 43.0% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 42.892 | 42.892 | 42.892 | 0.0 | 98.54 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.17317 | 0.17317 | 0.17317 | 0.0 | 0.40 Output | 3.314e-05 | 3.314e-05 | 3.314e-05 | 0.0 | 0.00 Modify | 0.39447 | 0.39447 | 0.39447 | 0.0 | 0.91 Other | | 0.06931 | | | 0.16 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8195 ave 8195 max 8195 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 900026 ave 900026 max 900026 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 900026 Ave neighs/atom = 225.006 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.90616919075, Press = 1.78772426724592 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.004 | 7.004 | 7.004 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 12000 -17534.746 -17534.746 -17665.539 -17665.539 253.02617 253.02617 43875.242 43875.242 -182.50537 -182.50537 13000 -17533.067 -17533.067 -17667.539 -17667.539 260.14433 260.14433 43875.642 43875.642 -84.914622 -84.914622 Loop time of 42.0778 on 1 procs for 1000 steps with 4000 atoms Performance: 2.053 ns/day, 11.688 hours/ns, 23.765 timesteps/s 44.7% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 41.629 | 41.629 | 41.629 | 0.0 | 98.93 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.1034 | 0.1034 | 0.1034 | 0.0 | 0.25 Output | 2.6941e-05 | 2.6941e-05 | 2.6941e-05 | 0.0 | 0.00 Modify | 0.3241 | 0.3241 | 0.3241 | 0.0 | 0.77 Other | | 0.0213 | | | 0.05 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8195 ave 8195 max 8195 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 899908 ave 899908 max 899908 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 899908 Ave neighs/atom = 224.977 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.803857977322, Press = -2.01681370791353 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.004 | 7.004 | 7.004 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 13000 -17533.067 -17533.067 -17667.539 -17667.539 260.14433 260.14433 43875.642 43875.642 -84.914622 -84.914622 14000 -17531.286 -17531.286 -17661.768 -17661.768 252.42577 252.42577 43853.803 43853.803 978.18676 978.18676 Loop time of 44.9704 on 1 procs for 1000 steps with 4000 atoms Performance: 1.921 ns/day, 12.492 hours/ns, 22.237 timesteps/s 42.0% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 44.49 | 44.49 | 44.49 | 0.0 | 98.93 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.11373 | 0.11373 | 0.11373 | 0.0 | 0.25 Output | 2.5988e-05 | 2.5988e-05 | 2.5988e-05 | 0.0 | 0.00 Modify | 0.32526 | 0.32526 | 0.32526 | 0.0 | 0.72 Other | | 0.04155 | | | 0.09 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8195 ave 8195 max 8195 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 899746 ave 899746 max 899746 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 899746 Ave neighs/atom = 224.936 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.933209912019, Press = 1.79075090340173 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.004 | 7.004 | 7.004 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 14000 -17531.286 -17531.286 -17661.768 -17661.768 252.42577 252.42577 43853.803 43853.803 978.18676 978.18676 15000 -17536.275 -17536.275 -17666.781 -17666.781 252.47198 252.47198 43906.898 43906.898 -1434.1553 -1434.1553 Loop time of 46.9225 on 1 procs for 1000 steps with 4000 atoms Performance: 1.841 ns/day, 13.034 hours/ns, 21.312 timesteps/s 40.1% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 46.453 | 46.453 | 46.453 | 0.0 | 99.00 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.12328 | 0.12328 | 0.12328 | 0.0 | 0.26 Output | 2.6941e-05 | 2.6941e-05 | 2.6941e-05 | 0.0 | 0.00 Modify | 0.30429 | 0.30429 | 0.30429 | 0.0 | 0.65 Other | | 0.04155 | | | 0.09 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8195 ave 8195 max 8195 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 900182 ave 900182 max 900182 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 900182 Ave neighs/atom = 225.046 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.048191402889, Press = -2.15729157984657 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.004 | 7.004 | 7.004 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 15000 -17536.275 -17536.275 -17666.781 -17666.781 252.47198 252.47198 43906.898 43906.898 -1434.1553 -1434.1553 16000 -17534.687 -17534.687 -17666.836 -17666.836 255.64967 255.64967 43817.098 43817.098 2187.2972 2187.2972 Loop time of 49.3849 on 1 procs for 1000 steps with 4000 atoms Performance: 1.750 ns/day, 13.718 hours/ns, 20.249 timesteps/s 38.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 | 48.801 | 48.801 | 48.801 | 0.0 | 98.82 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.15317 | 0.15317 | 0.15317 | 0.0 | 0.31 Output | 3.2902e-05 | 3.2902e-05 | 3.2902e-05 | 0.0 | 0.00 Modify | 0.389 | 0.389 | 0.389 | 0.0 | 0.79 Other | | 0.04134 | | | 0.08 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8195 ave 8195 max 8195 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 899406 ave 899406 max 899406 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 899406 Ave neighs/atom = 224.851 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.044565610378, Press = 1.47993888266583 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.004 | 7.004 | 7.004 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 16000 -17534.687 -17534.687 -17666.836 -17666.836 255.64967 255.64967 43817.098 43817.098 2187.2972 2187.2972 17000 -17537.446 -17537.446 -17669.121 -17669.121 254.73462 254.73462 43928 43928 -2376.5143 -2376.5143 Loop time of 45.833 on 1 procs for 1000 steps with 4000 atoms Performance: 1.885 ns/day, 12.731 hours/ns, 21.818 timesteps/s 41.1% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 45.291 | 45.291 | 45.291 | 0.0 | 98.82 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.11332 | 0.11332 | 0.11332 | 0.0 | 0.25 Output | 2.6941e-05 | 2.6941e-05 | 2.6941e-05 | 0.0 | 0.00 Modify | 0.34775 | 0.34775 | 0.34775 | 0.0 | 0.76 Other | | 0.08127 | | | 0.18 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8195 ave 8195 max 8195 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 900154 ave 900154 max 900154 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 900154 Ave neighs/atom = 225.038 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" jump SELF break # Write final averaged volume to file if temperature and volume have converged; otherwise wirte a # flag to indicate non-convergence. variable myStep equal step if "${myStep} < 2000000" then "print '${V}' file output/vol_T253.15.out" else "print 'not_converged' file output/vol_T253.15.out" print '${V}' file output/vol_T253.15.out 43869.6946842275 print "LAMMPS calculation completed" LAMMPS calculation completed quit 0