# 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.334010653197765*${_u_distance} variable latticeconst_converted equal 5.334010653197765*1 lattice bcc ${latticeconst_converted} lattice bcc 5.33401065319777 Lattice spacing in x,y,z = 5.33401 5.33401 5.33401 region simbox block 0 10 0 10 0 10 units lattice create_box 1 simbox Created orthogonal box = (0 0 0) to (53.3401 53.3401 53.3401) 1 by 1 by 1 MPI processor grid create_atoms 1 box Created 2000 atoms create_atoms CPU = 0.000307083 secs variable mass_converted equal 39.0983*${_u_mass} variable mass_converted equal 39.0983*1 # specify which KIM Model to use pair_style kim Morse_Shifted_GirifalcoWeizer_1959LowCutoff_K__MO_749732139672_003 WARNING: KIM Model does not provide `partialParticleVirial'; virial per atom will be zero (src/KIM/pair_kim.cpp:1089) pair_coeff * * K mass 1 ${mass_converted} mass 1 39.0983 # initial volume variable v equal vol # assign formula variable V0 equal ${v} # evaluate initial value variable V0 equal 151761.509005975 variable V0_metal equal ${V0}/(${_u_distance}*${_u_distance}*${_u_distance}) variable V0_metal equal 151761.509005975/(${_u_distance}*${_u_distance}*${_u_distance}) variable V0_metal equal 151761.509005975/(1*${_u_distance}*${_u_distance}) variable V0_metal equal 151761.509005975/(1*1*${_u_distance}) variable V0_metal equal 151761.509005975/(1*1*1) variable V0_metal_times1000 equal ${V0_metal}*1000 variable V0_metal_times1000 equal 151761.509005975*1000 print "Initial system volume: ${V0_metal} Angstroms^3" Initial system volume: 151761.509005975 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 = 19.0102 ghost atom cutoff = 19.0102 binsize = 9.5051, bins = 6 6 6 1 neighbor lists, perpetual/occasional/extra = 1 0 0 (1) pair kim, perpetual attributes: full, newton off, cut 19.0102 pair build: full/bin/atomonly stencil: full/bin/3d bin: standard Per MPI rank memory allocation (min/avg/max) = 5.895 | 5.895 | 5.895 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 0 -1584.319 -1584.319 -1670.4019 -1670.4019 333.15 333.15 151761.51 151761.51 605.86305 605.86305 1000 -1473.8138 -1473.8138 -1565.4203 -1565.4203 354.52655 354.52655 163390.44 163390.44 -35.127317 -35.127317 Loop time of 37.0566 on 1 procs for 1000 steps with 2000 atoms Performance: 2.332 ns/day, 10.294 hours/ns, 26.986 timesteps/s 46.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 | 36.3 | 36.3 | 36.3 | 0.0 | 97.96 Neigh | 0.44354 | 0.44354 | 0.44354 | 0.0 | 1.20 Comm | 0.12905 | 0.12905 | 0.12905 | 0.0 | 0.35 Output | 4.1008e-05 | 4.1008e-05 | 4.1008e-05 | 0.0 | 0.00 Modify | 0.15071 | 0.15071 | 0.15071 | 0.0 | 0.41 Other | | 0.03343 | | | 0.09 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 7615 ave 7615 max 7615 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: 689688 ave 689688 max 689688 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 689688 Ave neighs/atom = 344.844 Neighbor list builds = 11 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) = 6.277 | 6.277 | 6.277 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 1000 -1473.8138 -1473.8138 -1565.4203 -1565.4203 354.52655 354.52655 163390.44 163390.44 -35.127317 -35.127317 2000 -1492.823 -1492.823 -1576.017 -1576.017 321.96941 321.96941 161723.83 161723.83 29.367746 29.367746 Loop time of 35.0524 on 1 procs for 1000 steps with 2000 atoms Performance: 2.465 ns/day, 9.737 hours/ns, 28.529 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 | 34.321 | 34.321 | 34.321 | 0.0 | 97.91 Neigh | 0.44791 | 0.44791 | 0.44791 | 0.0 | 1.28 Comm | 0.08642 | 0.08642 | 0.08642 | 0.0 | 0.25 Output | 3.6001e-05 | 3.6001e-05 | 3.6001e-05 | 0.0 | 0.00 Modify | 0.16427 | 0.16427 | 0.16427 | 0.0 | 0.47 Other | | 0.03319 | | | 0.09 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 7727 ave 7727 max 7727 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: 696974 ave 696974 max 696974 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 696974 Ave neighs/atom = 348.487 Neighbor list builds = 11 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) = 6.277 | 6.277 | 6.277 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 2000 -1492.823 -1492.823 -1576.017 -1576.017 321.96941 321.96941 161723.83 161723.83 29.367746 29.367746 3000 -1488.3101 -1488.3101 -1573.6818 -1573.6818 330.39749 330.39749 162992.89 162992.89 -104.42742 -104.42742 Loop time of 34.978 on 1 procs for 1000 steps with 2000 atoms Performance: 2.470 ns/day, 9.716 hours/ns, 28.589 timesteps/s 48.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 | 34.115 | 34.115 | 34.115 | 0.0 | 97.53 Neigh | 0.4892 | 0.4892 | 0.4892 | 0.0 | 1.40 Comm | 0.087007 | 0.087007 | 0.087007 | 0.0 | 0.25 Output | 4.1962e-05 | 4.1962e-05 | 4.1962e-05 | 0.0 | 0.00 Modify | 0.23393 | 0.23393 | 0.23393 | 0.0 | 0.67 Other | | 0.05319 | | | 0.15 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 7691 ave 7691 max 7691 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: 690734 ave 690734 max 690734 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 690734 Ave neighs/atom = 345.367 Neighbor list builds = 11 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) = 6.277 | 6.277 | 6.277 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 3000 -1488.3101 -1488.3101 -1573.6818 -1573.6818 330.39749 330.39749 162992.89 162992.89 -104.42742 -104.42742 4000 -1491.8387 -1491.8387 -1574.5606 -1574.5606 320.14215 320.14215 162452.14 162452.14 -67.241075 -67.241075 Loop time of 42.3528 on 1 procs for 1000 steps with 2000 atoms Performance: 2.040 ns/day, 11.765 hours/ns, 23.611 timesteps/s 40.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 | 41.392 | 41.392 | 41.392 | 0.0 | 97.73 Neigh | 0.57106 | 0.57106 | 0.57106 | 0.0 | 1.35 Comm | 0.12706 | 0.12706 | 0.12706 | 0.0 | 0.30 Output | 3.2187e-05 | 3.2187e-05 | 3.2187e-05 | 0.0 | 0.00 Modify | 0.25012 | 0.25012 | 0.25012 | 0.0 | 0.59 Other | | 0.01296 | | | 0.03 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 7683 ave 7683 max 7683 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: 691404 ave 691404 max 691404 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 691404 Ave neighs/atom = 345.702 Neighbor list builds = 11 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) = 6.277 | 6.277 | 6.277 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 4000 -1491.8387 -1491.8387 -1574.5606 -1574.5606 320.14215 320.14215 162452.14 162452.14 -67.241075 -67.241075 5000 -1485.7779 -1485.7779 -1571.0505 -1571.0505 330.0136 330.0136 162978.34 162978.34 -88.163304 -88.163304 Loop time of 42.9794 on 1 procs for 1000 steps with 2000 atoms Performance: 2.010 ns/day, 11.939 hours/ns, 23.267 timesteps/s 39.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 | 42.119 | 42.119 | 42.119 | 0.0 | 98.00 Neigh | 0.53751 | 0.53751 | 0.53751 | 0.0 | 1.25 Comm | 0.12704 | 0.12704 | 0.12704 | 0.0 | 0.30 Output | 2.8133e-05 | 2.8133e-05 | 2.8133e-05 | 0.0 | 0.00 Modify | 0.16326 | 0.16326 | 0.16326 | 0.0 | 0.38 Other | | 0.03303 | | | 0.08 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 7724 ave 7724 max 7724 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: 692350 ave 692350 max 692350 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 692350 Ave neighs/atom = 346.175 Neighbor list builds = 11 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 = 337.468715498676, Press = -29.7576189281895 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.277 | 6.277 | 6.277 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 5000 -1485.7779 -1485.7779 -1571.0505 -1571.0505 330.0136 330.0136 162978.34 162978.34 -88.163304 -88.163304 6000 -1490.1813 -1490.1813 -1575.4743 -1575.4743 330.09267 330.09267 161187.28 161187.28 122.8012 122.8012 Loop time of 37.9821 on 1 procs for 1000 steps with 2000 atoms Performance: 2.275 ns/day, 10.551 hours/ns, 26.328 timesteps/s 44.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 | 37.169 | 37.169 | 37.169 | 0.0 | 97.86 Neigh | 0.51671 | 0.51671 | 0.51671 | 0.0 | 1.36 Comm | 0.1071 | 0.1071 | 0.1071 | 0.0 | 0.28 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.17595 | 0.17595 | 0.17595 | 0.0 | 0.46 Other | | 0.0131 | | | 0.03 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 7772 ave 7772 max 7772 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: 696568 ave 696568 max 696568 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 696568 Ave neighs/atom = 348.284 Neighbor list builds = 11 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.365086206225, Press = -10.0560908047361 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.277 | 6.277 | 6.277 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 6000 -1490.1813 -1490.1813 -1575.4743 -1575.4743 330.09267 330.09267 161187.28 161187.28 122.8012 122.8012 7000 -1489.9591 -1489.9591 -1572.9394 -1572.9394 321.14218 321.14218 162241.88 162241.88 -22.029799 -22.029799 Loop time of 35.1778 on 1 procs for 1000 steps with 2000 atoms Performance: 2.456 ns/day, 9.772 hours/ns, 28.427 timesteps/s 48.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 | 34.461 | 34.461 | 34.461 | 0.0 | 97.96 Neigh | 0.45542 | 0.45542 | 0.45542 | 0.0 | 1.29 Comm | 0.086631 | 0.086631 | 0.086631 | 0.0 | 0.25 Output | 2.8133e-05 | 2.8133e-05 | 2.8133e-05 | 0.0 | 0.00 Modify | 0.14741 | 0.14741 | 0.14741 | 0.0 | 0.42 Other | | 0.02715 | | | 0.08 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 7688 ave 7688 max 7688 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: 692228 ave 692228 max 692228 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 692228 Ave neighs/atom = 346.114 Neighbor list builds = 11 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.833140280737, Press = -9.27190481891578 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.277 | 6.277 | 6.277 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 7000 -1489.9591 -1489.9591 -1572.9394 -1572.9394 321.14218 321.14218 162241.88 162241.88 -22.029799 -22.029799 8000 -1489.109 -1489.109 -1575.0518 -1575.0518 332.60742 332.60742 161882.94 161882.94 32.651599 32.651599 Loop time of 32.0914 on 1 procs for 1000 steps with 2000 atoms Performance: 2.692 ns/day, 8.914 hours/ns, 31.161 timesteps/s 52.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 | 31.424 | 31.424 | 31.424 | 0.0 | 97.92 Neigh | 0.42099 | 0.42099 | 0.42099 | 0.0 | 1.31 Comm | 0.12679 | 0.12679 | 0.12679 | 0.0 | 0.40 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.086761 | 0.086761 | 0.086761 | 0.0 | 0.27 Other | | 0.03292 | | | 0.10 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 7810 ave 7810 max 7810 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: 694114 ave 694114 max 694114 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 694114 Ave neighs/atom = 347.057 Neighbor list builds = 11 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.862953789744, Press = -3.24891485085374 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.277 | 6.277 | 6.277 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 8000 -1489.109 -1489.109 -1575.0518 -1575.0518 332.60742 332.60742 161882.94 161882.94 32.651599 32.651599 9000 -1484.5057 -1484.5057 -1570.2285 -1570.2285 331.7559 331.7559 162326.18 162326.18 8.99078 8.99078 Loop time of 35.8558 on 1 procs for 1000 steps with 2000 atoms Performance: 2.410 ns/day, 9.960 hours/ns, 27.889 timesteps/s 46.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 | 35.022 | 35.022 | 35.022 | 0.0 | 97.68 Neigh | 0.50547 | 0.50547 | 0.50547 | 0.0 | 1.41 Comm | 0.10931 | 0.10931 | 0.10931 | 0.0 | 0.30 Output | 5.722e-05 | 5.722e-05 | 5.722e-05 | 0.0 | 0.00 Modify | 0.16573 | 0.16573 | 0.16573 | 0.0 | 0.46 Other | | 0.05301 | | | 0.15 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 7702 ave 7702 max 7702 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: 691800 ave 691800 max 691800 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 691800 Ave neighs/atom = 345.9 Neighbor list builds = 11 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.857818987302, Press = -4.7602161103375 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.277 | 6.277 | 6.277 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 9000 -1484.5057 -1484.5057 -1570.2285 -1570.2285 331.7559 331.7559 162326.18 162326.18 8.99078 8.99078 10000 -1486.5839 -1486.5839 -1573.5036 -1573.5036 336.38797 336.38797 162602.23 162602.23 -47.155386 -47.155386 Loop time of 34.2781 on 1 procs for 1000 steps with 2000 atoms Performance: 2.521 ns/day, 9.522 hours/ns, 29.173 timesteps/s 48.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 | 33.529 | 33.529 | 33.529 | 0.0 | 97.81 Neigh | 0.44374 | 0.44374 | 0.44374 | 0.0 | 1.29 Comm | 0.086675 | 0.086675 | 0.086675 | 0.0 | 0.25 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.18579 | 0.18579 | 0.18579 | 0.0 | 0.54 Other | | 0.03298 | | | 0.10 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 7636 ave 7636 max 7636 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: 690746 ave 690746 max 690746 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 690746 Ave neighs/atom = 345.373 Neighbor list builds = 11 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.34682912521, Press = -4.26674568232975 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.277 | 6.277 | 6.277 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 10000 -1486.5839 -1486.5839 -1573.5036 -1573.5036 336.38797 336.38797 162602.23 162602.23 -47.155386 -47.155386 11000 -1486.5037 -1486.5037 -1572.1494 -1572.1494 331.45755 331.45755 163123.53 163123.53 -106.08783 -106.08783 Loop time of 35.448 on 1 procs for 1000 steps with 2000 atoms Performance: 2.437 ns/day, 9.847 hours/ns, 28.210 timesteps/s 47.7% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 34.7 | 34.7 | 34.7 | 0.0 | 97.89 Neigh | 0.45946 | 0.45946 | 0.45946 | 0.0 | 1.30 Comm | 0.086787 | 0.086787 | 0.086787 | 0.0 | 0.24 Output | 2.8849e-05 | 2.8849e-05 | 2.8849e-05 | 0.0 | 0.00 Modify | 0.16844 | 0.16844 | 0.16844 | 0.0 | 0.48 Other | | 0.03311 | | | 0.09 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 7667 ave 7667 max 7667 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: 689908 ave 689908 max 689908 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 689908 Ave neighs/atom = 344.954 Neighbor list builds = 11 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.263218688525, Press = -2.67286340311259 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.277 | 6.277 | 6.277 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 11000 -1486.5037 -1486.5037 -1572.1494 -1572.1494 331.45755 331.45755 163123.53 163123.53 -106.08783 -106.08783 12000 -1489.3522 -1489.3522 -1575.48 -1575.48 333.32346 333.32346 162680.09 162680.09 -84.330181 -84.330181 Loop time of 36.265 on 1 procs for 1000 steps with 2000 atoms Performance: 2.382 ns/day, 10.074 hours/ns, 27.575 timesteps/s 46.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 | 35.486 | 35.486 | 35.486 | 0.0 | 97.85 Neigh | 0.4909 | 0.4909 | 0.4909 | 0.0 | 1.35 Comm | 0.087076 | 0.087076 | 0.087076 | 0.0 | 0.24 Output | 2.8133e-05 | 2.8133e-05 | 2.8133e-05 | 0.0 | 0.00 Modify | 0.18806 | 0.18806 | 0.18806 | 0.0 | 0.52 Other | | 0.01309 | | | 0.04 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 7673 ave 7673 max 7673 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: 692276 ave 692276 max 692276 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 692276 Ave neighs/atom = 346.138 Neighbor list builds = 11 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.395264546339, Press = -0.180377237336841 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.277 | 6.277 | 6.277 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 12000 -1489.3522 -1489.3522 -1575.48 -1575.48 333.32346 333.32346 162680.09 162680.09 -84.330181 -84.330181 13000 -1486.1274 -1486.1274 -1573.5263 -1573.5263 338.24271 338.24271 161801.86 161801.86 64.325649 64.325649 Loop time of 33.8176 on 1 procs for 1000 steps with 2000 atoms Performance: 2.555 ns/day, 9.394 hours/ns, 29.570 timesteps/s 49.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 | 32.903 | 32.903 | 32.903 | 0.0 | 97.30 Neigh | 0.50729 | 0.50729 | 0.50729 | 0.0 | 1.50 Comm | 0.06708 | 0.06708 | 0.06708 | 0.0 | 0.20 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.32733 | 0.32733 | 0.32733 | 0.0 | 0.97 Other | | 0.01298 | | | 0.04 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 7789 ave 7789 max 7789 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: 694910 ave 694910 max 694910 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 694910 Ave neighs/atom = 347.455 Neighbor list builds = 12 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.461379220067, Press = -0.793105220144155 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.277 | 6.277 | 6.277 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 13000 -1486.1274 -1486.1274 -1573.5263 -1573.5263 338.24271 338.24271 161801.86 161801.86 64.325649 64.325649 14000 -1488.8058 -1488.8058 -1574.4298 -1574.4298 331.37348 331.37348 162351.11 162351.11 -32.298431 -32.298431 Loop time of 33.881 on 1 procs for 1000 steps with 2000 atoms Performance: 2.550 ns/day, 9.411 hours/ns, 29.515 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 | 33.227 | 33.227 | 33.227 | 0.0 | 98.07 Neigh | 0.42715 | 0.42715 | 0.42715 | 0.0 | 1.26 Comm | 0.086967 | 0.086967 | 0.086967 | 0.0 | 0.26 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.12729 | 0.12729 | 0.12729 | 0.0 | 0.38 Other | | 0.01309 | | | 0.04 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 7729 ave 7729 max 7729 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: 691492 ave 691492 max 691492 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 691492 Ave neighs/atom = 345.746 Neighbor list builds = 11 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.60076259142, Press = -1.78015168405195 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.277 | 6.277 | 6.277 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 14000 -1488.8058 -1488.8058 -1574.4298 -1574.4298 331.37348 331.37348 162351.11 162351.11 -32.298431 -32.298431 15000 -1484.4046 -1484.4046 -1571.0995 -1571.0995 335.51797 335.51797 162641.71 162641.71 -27.735791 -27.735791 Loop time of 33.7888 on 1 procs for 1000 steps with 2000 atoms Performance: 2.557 ns/day, 9.386 hours/ns, 29.596 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 | 33.022 | 33.022 | 33.022 | 0.0 | 97.73 Neigh | 0.43902 | 0.43902 | 0.43902 | 0.0 | 1.30 Comm | 0.087172 | 0.087172 | 0.087172 | 0.0 | 0.26 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.20816 | 0.20816 | 0.20816 | 0.0 | 0.62 Other | | 0.0329 | | | 0.10 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 7801 ave 7801 max 7801 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: 693728 ave 693728 max 693728 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 693728 Ave neighs/atom = 346.864 Neighbor list builds = 11 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.612459415433, Press = 0.304574848434952 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.277 | 6.277 | 6.277 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 15000 -1484.4046 -1484.4046 -1571.0995 -1571.0995 335.51797 335.51797 162641.71 162641.71 -27.735791 -27.735791 16000 -1489.2395 -1489.2395 -1574.0006 -1574.0006 328.03406 328.03406 161422.94 161422.94 97.723245 97.723245 Loop time of 33.893 on 1 procs for 1000 steps with 2000 atoms Performance: 2.549 ns/day, 9.415 hours/ns, 29.505 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 | 33.113 | 33.113 | 33.113 | 0.0 | 97.70 Neigh | 0.4332 | 0.4332 | 0.4332 | 0.0 | 1.28 Comm | 0.10662 | 0.10662 | 0.10662 | 0.0 | 0.31 Output | 2.8133e-05 | 2.8133e-05 | 2.8133e-05 | 0.0 | 0.00 Modify | 0.22752 | 0.22752 | 0.22752 | 0.0 | 0.67 Other | | 0.01312 | | | 0.04 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 7732 ave 7732 max 7732 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: 695488 ave 695488 max 695488 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 695488 Ave neighs/atom = 347.744 Neighbor list builds = 11 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.388641640986, Press = -0.89465361179193 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.277 | 6.277 | 6.277 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 16000 -1489.2395 -1489.2395 -1574.0006 -1574.0006 328.03406 328.03406 161422.94 161422.94 97.723245 97.723245 17000 -1487.6368 -1487.6368 -1575.5179 -1575.5179 340.10869 340.10869 161991.9 161991.9 17.385468 17.385468 Loop time of 33.8669 on 1 procs for 1000 steps with 2000 atoms Performance: 2.551 ns/day, 9.407 hours/ns, 29.527 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 | 33.195 | 33.195 | 33.195 | 0.0 | 98.02 Neigh | 0.42453 | 0.42453 | 0.42453 | 0.0 | 1.25 Comm | 0.086907 | 0.086907 | 0.086907 | 0.0 | 0.26 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.14746 | 0.14746 | 0.14746 | 0.0 | 0.44 Other | | 0.01296 | | | 0.04 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 7711 ave 7711 max 7711 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: 692624 ave 692624 max 692624 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 692624 Ave neighs/atom = 346.312 Neighbor list builds = 11 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.374921644439, Press = -1.69847304392702 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.277 | 6.277 | 6.277 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 17000 -1487.6368 -1487.6368 -1575.5179 -1575.5179 340.10869 340.10869 161991.9 161991.9 17.385468 17.385468 18000 -1492.4796 -1492.4796 -1576.4096 -1576.4096 324.81794 324.81794 162082.11 162082.11 -24.600932 -24.600932 Loop time of 31.7776 on 1 procs for 1000 steps with 2000 atoms Performance: 2.719 ns/day, 8.827 hours/ns, 31.469 timesteps/s 52.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 | 31.085 | 31.085 | 31.085 | 0.0 | 97.82 Neigh | 0.40254 | 0.40254 | 0.40254 | 0.0 | 1.27 Comm | 0.12947 | 0.12947 | 0.12947 | 0.0 | 0.41 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.12799 | 0.12799 | 0.12799 | 0.0 | 0.40 Other | | 0.03304 | | | 0.10 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 7653 ave 7653 max 7653 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: 692976 ave 692976 max 692976 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 692976 Ave neighs/atom = 346.488 Neighbor list builds = 11 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.33918328134, Press = -1.35571339592283 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.277 | 6.277 | 6.277 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 18000 -1492.4796 -1492.4796 -1576.4096 -1576.4096 324.81794 324.81794 162082.11 162082.11 -24.600932 -24.600932 19000 -1484.288 -1484.288 -1572.7013 -1572.7013 342.16856 342.16856 163160.27 163160.27 -110.91121 -110.91121 Loop time of 29.0761 on 1 procs for 1000 steps with 2000 atoms Performance: 2.972 ns/day, 8.077 hours/ns, 34.393 timesteps/s 57.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 | 28.465 | 28.465 | 28.465 | 0.0 | 97.90 Neigh | 0.38023 | 0.38023 | 0.38023 | 0.0 | 1.31 Comm | 0.088247 | 0.088247 | 0.088247 | 0.0 | 0.30 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.10878 | 0.10878 | 0.10878 | 0.0 | 0.37 Other | | 0.03357 | | | 0.12 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 7633 ave 7633 max 7633 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: 691154 ave 691154 max 691154 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 691154 Ave neighs/atom = 345.577 Neighbor list builds = 11 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.224548781386, Press = -0.490310691277884 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.277 | 6.277 | 6.277 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 19000 -1484.288 -1484.288 -1572.7013 -1572.7013 342.16856 342.16856 163160.27 163160.27 -110.91121 -110.91121 20000 -1485.6653 -1485.6653 -1574.331 -1574.331 343.14551 343.14551 162135.39 162135.39 19.358038 19.358038 Loop time of 27.7652 on 1 procs for 1000 steps with 2000 atoms Performance: 3.112 ns/day, 7.713 hours/ns, 36.016 timesteps/s 60.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 | 27.244 | 27.244 | 27.244 | 0.0 | 98.12 Neigh | 0.31369 | 0.31369 | 0.31369 | 0.0 | 1.13 Comm | 0.046436 | 0.046436 | 0.046436 | 0.0 | 0.17 Output | 2.8133e-05 | 2.8133e-05 | 2.8133e-05 | 0.0 | 0.00 Modify | 0.14855 | 0.14855 | 0.14855 | 0.0 | 0.54 Other | | 0.01303 | | | 0.05 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 7703 ave 7703 max 7703 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: 693228 ave 693228 max 693228 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 693228 Ave neighs/atom = 346.614 Neighbor list builds = 11 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.228965073913, Press = -0.852780024850455 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.277 | 6.277 | 6.277 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 20000 -1485.6653 -1485.6653 -1574.331 -1574.331 343.14551 343.14551 162135.39 162135.39 19.358038 19.358038 21000 -1487.273 -1487.273 -1573.7309 -1573.7309 334.60104 334.60104 162177.92 162177.92 -2.0170033 -2.0170033 Loop time of 30.0438 on 1 procs for 1000 steps with 2000 atoms Performance: 2.876 ns/day, 8.346 hours/ns, 33.285 timesteps/s 55.8% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 29.439 | 29.439 | 29.439 | 0.0 | 97.99 Neigh | 0.37694 | 0.37694 | 0.37694 | 0.0 | 1.25 Comm | 0.066668 | 0.066668 | 0.066668 | 0.0 | 0.22 Output | 2.8133e-05 | 2.8133e-05 | 2.8133e-05 | 0.0 | 0.00 Modify | 0.14842 | 0.14842 | 0.14842 | 0.0 | 0.49 Other | | 0.01298 | | | 0.04 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 7678 ave 7678 max 7678 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: 692850 ave 692850 max 692850 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 692850 Ave neighs/atom = 346.425 Neighbor list builds = 11 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.273461041535, Press = -0.831542357950976 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 6.277 | 6.277 | 6.277 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 21000 -1487.273 -1487.273 -1573.7309 -1573.7309 334.60104 334.60104 162177.92 162177.92 -2.0170033 -2.0170033 22000 -1489.1581 -1489.1581 -1574.6087 -1574.6087 330.70278 330.70278 162313.35 162313.35 -33.491281 -33.491281 Loop time of 27.9426 on 1 procs for 1000 steps with 2000 atoms Performance: 3.092 ns/day, 7.762 hours/ns, 35.788 timesteps/s 59.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 | 27.315 | 27.315 | 27.315 | 0.0 | 97.76 Neigh | 0.35962 | 0.35962 | 0.35962 | 0.0 | 1.29 Comm | 0.086062 | 0.086062 | 0.086062 | 0.0 | 0.31 Output | 4.3869e-05 | 4.3869e-05 | 4.3869e-05 | 0.0 | 0.00 Modify | 0.16836 | 0.16836 | 0.16836 | 0.0 | 0.60 Other | | 0.01322 | | | 0.05 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 7678 ave 7678 max 7678 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: 692514 ave 692514 max 692514 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 692514 Ave neighs/atom = 346.257 Neighbor list builds = 11 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 162173.421747641 print "LAMMPS calculation completed" LAMMPS calculation completed quit 0