# 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 4.039798453450203*${_u_distance} variable latticeconst_converted equal 4.039798453450203*1 lattice fcc ${latticeconst_converted} lattice fcc 4.0397984534502 Lattice spacing in x,y,z = 4.0398 4.0398 4.0398 region simbox block 0 10 0 10 0 10 units lattice create_box 1 simbox Created orthogonal box = (0 0 0) to (40.398 40.398 40.398) 1 by 1 by 1 MPI processor grid create_atoms 1 box Created 4000 atoms create_atoms CPU = 0.016526 secs variable mass_converted equal 26.981538*${_u_mass} variable mass_converted equal 26.981538*1 # specify which KIM Model to use pair_style kim Morse_Shifted_GirifalcoWeizer_1959MedCutoff_Al__MO_279544746097_002 WARNING: KIM Model does not provide `partialParticleVirial'; virial per atom will be zero (src/KIM/pair_kim.cpp:1089) pair_coeff * * Al mass 1 ${mass_converted} mass 1 26.981538 # initial volume variable v equal vol # assign formula variable V0 equal ${v} # evaluate initial value variable V0 equal 65929.3958058168 variable V0_metal equal ${V0}/(${_u_distance}*${_u_distance}*${_u_distance}) variable V0_metal equal 65929.3958058168/(${_u_distance}*${_u_distance}*${_u_distance}) variable V0_metal equal 65929.3958058168/(1*${_u_distance}*${_u_distance}) variable V0_metal equal 65929.3958058168/(1*1*${_u_distance}) variable V0_metal equal 65929.3958058168/(1*1*1) variable V0_metal_times1000 equal ${V0_metal}*1000 variable V0_metal_times1000 equal 65929.3958058168*1000 print "Initial system volume: ${V0_metal} Angstroms^3" Initial system volume: 65929.3958058168 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 = 11.7794 ghost atom cutoff = 11.7794 binsize = 5.88971, bins = 7 7 7 1 neighbor lists, perpetual/occasional/extra = 1 0 0 (1) pair kim, perpetual attributes: full, newton off, cut 11.7794 pair build: full/bin/atomonly stencil: full/bin/3d bin: standard Per MPI rank memory allocation (min/avg/max) = 10.2 | 10.2 | 10.2 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 0 -11422.508 -11422.508 -11553.364 -11553.364 253.15 253.15 65929.396 65929.396 2119.9812 2119.9812 1000 -11282.659 -11282.659 -11419.437 -11419.437 264.60653 264.60653 66574.033 66574.033 542.24504 542.24504 Loop time of 87.6744 on 1 procs for 1000 steps with 4000 atoms Performance: 0.985 ns/day, 24.354 hours/ns, 11.406 timesteps/s 33.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 | 86.931 | 86.931 | 86.931 | 0.0 | 99.15 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.20707 | 0.20707 | 0.20707 | 0.0 | 0.24 Output | 4.1962e-05 | 4.1962e-05 | 4.1962e-05 | 0.0 | 0.00 Modify | 0.51491 | 0.51491 | 0.51491 | 0.0 | 0.59 Other | | 0.02191 | | | 0.02 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 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: 1.712e+06 ave 1.712e+06 max 1.712e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1712000 Ave neighs/atom = 428 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) = 10.2 | 10.2 | 10.2 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 1000 -11282.659 -11282.659 -11419.437 -11419.437 264.60653 264.60653 66574.033 66574.033 542.24504 542.24504 2000 -11291.513 -11291.513 -11418.369 -11418.369 245.41163 245.41163 66633.241 66633.241 -228.05666 -228.05666 Loop time of 88.528 on 1 procs for 1000 steps with 4000 atoms Performance: 0.976 ns/day, 24.591 hours/ns, 11.296 timesteps/s 33.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 | 87.885 | 87.885 | 87.885 | 0.0 | 99.27 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.16651 | 0.16651 | 0.16651 | 0.0 | 0.19 Output | 4.4107e-05 | 4.4107e-05 | 4.4107e-05 | 0.0 | 0.00 Modify | 0.41401 | 0.41401 | 0.41401 | 0.0 | 0.47 Other | | 0.06203 | | | 0.07 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 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: 1.58932e+06 ave 1.58932e+06 max 1.58932e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1589322 Ave neighs/atom = 397.33 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) = 10.2 | 10.2 | 10.2 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 2000 -11291.513 -11291.513 -11418.369 -11418.369 245.41163 245.41163 66633.241 66633.241 -228.05666 -228.05666 3000 -11289.533 -11289.533 -11416.855 -11416.855 246.3134 246.3134 66658.455 66658.455 -453.75982 -453.75982 Loop time of 88.7089 on 1 procs for 1000 steps with 4000 atoms Performance: 0.974 ns/day, 24.641 hours/ns, 11.273 timesteps/s 33.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 | 87.885 | 87.885 | 87.885 | 0.0 | 99.07 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.20691 | 0.20691 | 0.20691 | 0.0 | 0.23 Output | 4.3869e-05 | 4.3869e-05 | 4.3869e-05 | 0.0 | 0.00 Modify | 0.47434 | 0.47434 | 0.47434 | 0.0 | 0.53 Other | | 0.1422 | | | 0.16 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 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: 1.58745e+06 ave 1.58745e+06 max 1.58745e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1587452 Ave neighs/atom = 396.863 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) = 10.2 | 10.2 | 10.2 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 3000 -11289.533 -11289.533 -11416.855 -11416.855 246.3134 246.3134 66658.455 66658.455 -453.75982 -453.75982 4000 -11288.741 -11288.741 -11421.291 -11421.291 256.42789 256.42789 66625.957 66625.957 -163.66716 -163.66716 Loop time of 83.628 on 1 procs for 1000 steps with 4000 atoms Performance: 1.033 ns/day, 23.230 hours/ns, 11.958 timesteps/s 35.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 | 82.932 | 82.932 | 82.932 | 0.0 | 99.17 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.25078 | 0.25078 | 0.25078 | 0.0 | 0.30 Output | 3.6001e-05 | 3.6001e-05 | 3.6001e-05 | 0.0 | 0.00 Modify | 0.38354 | 0.38354 | 0.38354 | 0.0 | 0.46 Other | | 0.06201 | | | 0.07 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 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: 1.58676e+06 ave 1.58676e+06 max 1.58676e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1586764 Ave neighs/atom = 396.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" 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) = 10.2 | 10.2 | 10.2 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 4000 -11288.741 -11288.741 -11421.291 -11421.291 256.42789 256.42789 66625.957 66625.957 -163.66716 -163.66716 5000 -11289.551 -11289.551 -11421.299 -11421.299 254.87432 254.87432 66583.179 66583.179 273.67941 273.67941 Loop time of 84.0657 on 1 procs for 1000 steps with 4000 atoms Performance: 1.028 ns/day, 23.352 hours/ns, 11.895 timesteps/s 35.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 | 83.341 | 83.341 | 83.341 | 0.0 | 99.14 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.18677 | 0.18677 | 0.18677 | 0.0 | 0.22 Output | 2.6226e-05 | 2.6226e-05 | 2.6226e-05 | 0.0 | 0.00 Modify | 0.51603 | 0.51603 | 0.51603 | 0.0 | 0.61 Other | | 0.02205 | | | 0.03 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 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: 1.58755e+06 ave 1.58755e+06 max 1.58755e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1587548 Ave neighs/atom = 396.887 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.745589108868, Press = -187.186230583195 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 10.2 | 10.2 | 10.2 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 5000 -11289.551 -11289.551 -11421.299 -11421.299 254.87432 254.87432 66583.179 66583.179 273.67941 273.67941 6000 -11289.175 -11289.175 -11420.099 -11420.099 253.2813 253.2813 66540.418 66540.418 796.71144 796.71144 Loop time of 82.0303 on 1 procs for 1000 steps with 4000 atoms Performance: 1.053 ns/day, 22.786 hours/ns, 12.191 timesteps/s 36.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 | 81.462 | 81.462 | 81.462 | 0.0 | 99.31 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.12683 | 0.12683 | 0.12683 | 0.0 | 0.15 Output | 3.4809e-05 | 3.4809e-05 | 3.4809e-05 | 0.0 | 0.00 Modify | 0.41911 | 0.41911 | 0.41911 | 0.0 | 0.51 Other | | 0.02216 | | | 0.03 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 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: 1.58893e+06 ave 1.58893e+06 max 1.58893e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1588928 Ave neighs/atom = 397.232 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.28706985878, Press = -1.12923147808138 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 10.2 | 10.2 | 10.2 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 6000 -11289.175 -11289.175 -11420.099 -11420.099 253.2813 253.2813 66540.418 66540.418 796.71144 796.71144 7000 -11288.894 -11288.894 -11418.547 -11418.547 250.8227 250.8227 66584.165 66584.165 337.80914 337.80914 Loop time of 83.2357 on 1 procs for 1000 steps with 4000 atoms Performance: 1.038 ns/day, 23.121 hours/ns, 12.014 timesteps/s 35.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 | 82.579 | 82.579 | 82.579 | 0.0 | 99.21 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.1068 | 0.1068 | 0.1068 | 0.0 | 0.13 Output | 3.2902e-05 | 3.2902e-05 | 3.2902e-05 | 0.0 | 0.00 Modify | 0.49794 | 0.49794 | 0.49794 | 0.0 | 0.60 Other | | 0.05207 | | | 0.06 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 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: 1.59116e+06 ave 1.59116e+06 max 1.59116e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1591158 Ave neighs/atom = 397.789 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.038995379995, Press = 14.730440438459 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 10.2 | 10.2 | 10.2 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 7000 -11288.894 -11288.894 -11418.547 -11418.547 250.8227 250.8227 66584.165 66584.165 337.80914 337.80914 8000 -11291.283 -11291.283 -11421.565 -11421.565 252.0384 252.0384 66681.667 66681.667 -855.01133 -855.01133 Loop time of 80.1098 on 1 procs for 1000 steps with 4000 atoms Performance: 1.079 ns/day, 22.253 hours/ns, 12.483 timesteps/s 36.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 | 79.437 | 79.437 | 79.437 | 0.0 | 99.16 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.18982 | 0.18982 | 0.18982 | 0.0 | 0.24 Output | 3.2902e-05 | 3.2902e-05 | 3.2902e-05 | 0.0 | 0.00 Modify | 0.46104 | 0.46104 | 0.46104 | 0.0 | 0.58 Other | | 0.02205 | | | 0.03 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 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: 1.58962e+06 ave 1.58962e+06 max 1.58962e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1589616 Ave neighs/atom = 397.404 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.342271609991, Press = 4.39020251675608 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 10.2 | 10.2 | 10.2 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 8000 -11291.283 -11291.283 -11421.565 -11421.565 252.0384 252.0384 66681.667 66681.667 -855.01133 -855.01133 9000 -11287.213 -11287.213 -11420.487 -11420.487 257.82777 257.82777 66668.695 66668.695 -610.00983 -610.00983 Loop time of 72.8127 on 1 procs for 1000 steps with 4000 atoms Performance: 1.187 ns/day, 20.226 hours/ns, 13.734 timesteps/s 40.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 | 72.201 | 72.201 | 72.201 | 0.0 | 99.16 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.14675 | 0.14675 | 0.14675 | 0.0 | 0.20 Output | 2.5988e-05 | 2.5988e-05 | 2.5988e-05 | 0.0 | 0.00 Modify | 0.40359 | 0.40359 | 0.40359 | 0.0 | 0.55 Other | | 0.06139 | | | 0.08 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 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: 1.58538e+06 ave 1.58538e+06 max 1.58538e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1585382 Ave neighs/atom = 396.346 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.630034157331, Press = -4.45134951590891 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 10.2 | 10.2 | 10.2 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 9000 -11287.213 -11287.213 -11420.487 -11420.487 257.82777 257.82777 66668.695 66668.695 -610.00983 -610.00983 10000 -11289.648 -11289.648 -11419.431 -11419.431 251.07328 251.07328 66607.094 66607.094 55.797616 55.797616 Loop time of 65.1896 on 1 procs for 1000 steps with 4000 atoms Performance: 1.325 ns/day, 18.108 hours/ns, 15.340 timesteps/s 45.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 | 64.645 | 64.645 | 64.645 | 0.0 | 99.16 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.10609 | 0.10609 | 0.10609 | 0.0 | 0.16 Output | 3.8147e-05 | 3.8147e-05 | 3.8147e-05 | 0.0 | 0.00 Modify | 0.37647 | 0.37647 | 0.37647 | 0.0 | 0.58 Other | | 0.06188 | | | 0.09 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 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: 1.586e+06 ave 1.586e+06 max 1.586e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1586000 Ave neighs/atom = 396.5 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.72819248935, Press = -3.93041666123389 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 10.2 | 10.2 | 10.2 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 10000 -11289.648 -11289.648 -11419.431 -11419.431 251.07328 251.07328 66607.094 66607.094 55.797616 55.797616 11000 -11287.786 -11287.786 -11419.105 -11419.105 254.04642 254.04642 66587.946 66587.946 314.90626 314.90626 Loop time of 59.0873 on 1 procs for 1000 steps with 4000 atoms Performance: 1.462 ns/day, 16.413 hours/ns, 16.924 timesteps/s 50.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 | 58.652 | 58.652 | 58.652 | 0.0 | 99.26 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.16608 | 0.16608 | 0.16608 | 0.0 | 0.28 Output | 3.1948e-05 | 3.1948e-05 | 3.1948e-05 | 0.0 | 0.00 Modify | 0.24761 | 0.24761 | 0.24761 | 0.0 | 0.42 Other | | 0.02164 | | | 0.04 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 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: 1.58842e+06 ave 1.58842e+06 max 1.58842e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1588416 Ave neighs/atom = 397.104 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.636939949783, Press = -2.10433940366821 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 10.2 | 10.2 | 10.2 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 11000 -11287.786 -11287.786 -11419.105 -11419.105 254.04642 254.04642 66587.946 66587.946 314.90626 314.90626 12000 -11292.072 -11292.072 -11422.104 -11422.104 251.5548 251.5548 66575.201 66575.201 312.75966 312.75966 Loop time of 59.3689 on 1 procs for 1000 steps with 4000 atoms Performance: 1.455 ns/day, 16.491 hours/ns, 16.844 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 | 58.904 | 58.904 | 58.904 | 0.0 | 99.22 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.12691 | 0.12691 | 0.12691 | 0.0 | 0.21 Output | 3.314e-05 | 3.314e-05 | 3.314e-05 | 0.0 | 0.00 Modify | 0.31579 | 0.31579 | 0.31579 | 0.0 | 0.53 Other | | 0.02201 | | | 0.04 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 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: 1.58947e+06 ave 1.58947e+06 max 1.58947e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1589474 Ave neighs/atom = 397.368 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.440355239581, Press = -0.50051298622287 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 10.2 | 10.2 | 10.2 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 12000 -11292.072 -11292.072 -11422.104 -11422.104 251.5548 251.5548 66575.201 66575.201 312.75966 312.75966 13000 -11286.772 -11286.772 -11418.912 -11418.912 255.63484 255.63484 66609.457 66609.457 113.71889 113.71889 Loop time of 65.7704 on 1 procs for 1000 steps with 4000 atoms Performance: 1.314 ns/day, 18.270 hours/ns, 15.204 timesteps/s 45.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 | 65.182 | 65.182 | 65.182 | 0.0 | 99.11 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.14673 | 0.14673 | 0.14673 | 0.0 | 0.22 Output | 7.2956e-05 | 7.2956e-05 | 7.2956e-05 | 0.0 | 0.00 Modify | 0.41923 | 0.41923 | 0.41923 | 0.0 | 0.64 Other | | 0.02224 | | | 0.03 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 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: 1.58923e+06 ave 1.58923e+06 max 1.58923e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1589228 Ave neighs/atom = 397.307 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.400323003824, Press = 0.925225908628145 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 10.2 | 10.2 | 10.2 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 13000 -11286.772 -11286.772 -11418.912 -11418.912 255.63484 255.63484 66609.457 66609.457 113.71889 113.71889 14000 -11292.098 -11292.098 -11421.152 -11421.152 249.66352 249.66352 66687.151 66687.151 -910.85155 -910.85155 Loop time of 62.2113 on 1 procs for 1000 steps with 4000 atoms Performance: 1.389 ns/day, 17.281 hours/ns, 16.074 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 | 61.732 | 61.732 | 61.732 | 0.0 | 99.23 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.17686 | 0.17686 | 0.17686 | 0.0 | 0.28 Output | 3.2902e-05 | 3.2902e-05 | 3.2902e-05 | 0.0 | 0.00 Modify | 0.22016 | 0.22016 | 0.22016 | 0.0 | 0.35 Other | | 0.08227 | | | 0.13 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 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: 1.58825e+06 ave 1.58825e+06 max 1.58825e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1588248 Ave neighs/atom = 397.062 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.382301888468, Press = 1.20598431675581 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 10.2 | 10.2 | 10.2 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 14000 -11292.098 -11292.098 -11421.152 -11421.152 249.66352 249.66352 66687.151 66687.151 -910.85155 -910.85155 15000 -11290.406 -11290.406 -11420.477 -11420.477 251.63167 251.63167 66716.012 66716.012 -1181.4435 -1181.4435 Loop time of 61.6584 on 1 procs for 1000 steps with 4000 atoms Performance: 1.401 ns/day, 17.127 hours/ns, 16.218 timesteps/s 47.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 | 61.079 | 61.079 | 61.079 | 0.0 | 99.06 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.17867 | 0.17867 | 0.17867 | 0.0 | 0.29 Output | 3.2902e-05 | 3.2902e-05 | 3.2902e-05 | 0.0 | 0.00 Modify | 0.32894 | 0.32894 | 0.32894 | 0.0 | 0.53 Other | | 0.07222 | | | 0.12 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 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: 1.58519e+06 ave 1.58519e+06 max 1.58519e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1585194 Ave neighs/atom = 396.298 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.444724549142, Press = -3.07562904254313 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 10.2 | 10.2 | 10.2 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 15000 -11290.406 -11290.406 -11420.477 -11420.477 251.63167 251.63167 66716.012 66716.012 -1181.4435 -1181.4435 16000 -11284.715 -11284.715 -11416.089 -11416.089 254.15358 254.15358 66624.949 66624.949 41.047978 41.047978 Loop time of 72.3069 on 1 procs for 1000 steps with 4000 atoms Performance: 1.195 ns/day, 20.085 hours/ns, 13.830 timesteps/s 41.3% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 71.677 | 71.677 | 71.677 | 0.0 | 99.13 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.1875 | 0.1875 | 0.1875 | 0.0 | 0.26 Output | 3.2902e-05 | 3.2902e-05 | 3.2902e-05 | 0.0 | 0.00 Modify | 0.40048 | 0.40048 | 0.40048 | 0.0 | 0.55 Other | | 0.0424 | | | 0.06 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 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: 1.58328e+06 ave 1.58328e+06 max 1.58328e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1583280 Ave neighs/atom = 395.82 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.529173538878, Press = -2.95438995280432 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 10.2 | 10.2 | 10.2 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 16000 -11284.715 -11284.715 -11416.089 -11416.089 254.15358 254.15358 66624.949 66624.949 41.047978 41.047978 17000 -11291.279 -11291.279 -11420.835 -11420.835 250.6336 250.6336 66575.39 66575.39 332.32573 332.32573 Loop time of 66.7818 on 1 procs for 1000 steps with 4000 atoms Performance: 1.294 ns/day, 18.551 hours/ns, 14.974 timesteps/s 44.4% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 66.301 | 66.301 | 66.301 | 0.0 | 99.28 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.087663 | 0.087663 | 0.087663 | 0.0 | 0.13 Output | 3.314e-05 | 3.314e-05 | 3.314e-05 | 0.0 | 0.00 Modify | 0.37071 | 0.37071 | 0.37071 | 0.0 | 0.56 Other | | 0.02235 | | | 0.03 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 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: 1.58784e+06 ave 1.58784e+06 max 1.58784e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1587838 Ave neighs/atom = 396.959 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.531793099192, Press = -1.24848875288481 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 10.2 | 10.2 | 10.2 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 17000 -11291.279 -11291.279 -11420.835 -11420.835 250.6336 250.6336 66575.39 66575.39 332.32573 332.32573 18000 -11286.071 -11286.071 -11418.234 -11418.234 255.67773 255.67773 66586.938 66586.938 377.51682 377.51682 Loop time of 69.1108 on 1 procs for 1000 steps with 4000 atoms Performance: 1.250 ns/day, 19.197 hours/ns, 14.470 timesteps/s 43.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 | 68.638 | 68.638 | 68.638 | 0.0 | 99.32 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.115 | 0.115 | 0.115 | 0.0 | 0.17 Output | 2.6941e-05 | 2.6941e-05 | 2.6941e-05 | 0.0 | 0.00 Modify | 0.33555 | 0.33555 | 0.33555 | 0.0 | 0.49 Other | | 0.02249 | | | 0.03 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 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: 1.5896e+06 ave 1.5896e+06 max 1.5896e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1589604 Ave neighs/atom = 397.401 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.592982239914, Press = -0.212449862948807 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 10.2 | 10.2 | 10.2 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 18000 -11286.071 -11286.071 -11418.234 -11418.234 255.67773 255.67773 66586.938 66586.938 377.51682 377.51682 19000 -11292.222 -11292.222 -11422.729 -11422.729 252.47496 252.47496 66604.537 66604.537 -46.822899 -46.822899 Loop time of 70.2068 on 1 procs for 1000 steps with 4000 atoms Performance: 1.231 ns/day, 19.502 hours/ns, 14.244 timesteps/s 42.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 | 69.527 | 69.527 | 69.527 | 0.0 | 99.03 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.12717 | 0.12717 | 0.12717 | 0.0 | 0.18 Output | 6.1989e-05 | 6.1989e-05 | 6.1989e-05 | 0.0 | 0.00 Modify | 0.46012 | 0.46012 | 0.46012 | 0.0 | 0.66 Other | | 0.09225 | | | 0.13 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 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: 1.58915e+06 ave 1.58915e+06 max 1.58915e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1589152 Ave neighs/atom = 397.288 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.558588509089, Press = 0.4193590405406 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 10.2 | 10.2 | 10.2 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 19000 -11292.222 -11292.222 -11422.729 -11422.729 252.47496 252.47496 66604.537 66604.537 -46.822899 -46.822899 20000 -11287.665 -11287.665 -11417.974 -11417.974 252.09136 252.09136 66677.595 66677.595 -639.99823 -639.99823 Loop time of 69.0985 on 1 procs for 1000 steps with 4000 atoms Performance: 1.250 ns/day, 19.194 hours/ns, 14.472 timesteps/s 43.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 | 68.288 | 68.288 | 68.288 | 0.0 | 98.83 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.25771 | 0.25771 | 0.25771 | 0.0 | 0.37 Output | 3.314e-05 | 3.314e-05 | 3.314e-05 | 0.0 | 0.00 Modify | 0.47065 | 0.47065 | 0.47065 | 0.0 | 0.68 Other | | 0.08257 | | | 0.12 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 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: 1.58855e+06 ave 1.58855e+06 max 1.58855e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1588546 Ave neighs/atom = 397.137 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.483366720227, Press = 0.0871945476620832 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 10.2 | 10.2 | 10.2 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 20000 -11287.665 -11287.665 -11417.974 -11417.974 252.09136 252.09136 66677.595 66677.595 -639.99823 -639.99823 21000 -11292.2 -11292.2 -11419.436 -11419.436 246.14791 246.14791 66690.791 66690.791 -911.89568 -911.89568 Loop time of 69.3689 on 1 procs for 1000 steps with 4000 atoms Performance: 1.246 ns/day, 19.269 hours/ns, 14.416 timesteps/s 42.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 | 68.879 | 68.879 | 68.879 | 0.0 | 99.29 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.16759 | 0.16759 | 0.16759 | 0.0 | 0.24 Output | 3.2902e-05 | 3.2902e-05 | 3.2902e-05 | 0.0 | 0.00 Modify | 0.28041 | 0.28041 | 0.28041 | 0.0 | 0.40 Other | | 0.04227 | | | 0.06 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 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: 1.58568e+06 ave 1.58568e+06 max 1.58568e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1585680 Ave neighs/atom = 396.42 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.364210144947, Press = -2.01071202132206 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 10.2 | 10.2 | 10.2 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 21000 -11292.2 -11292.2 -11419.436 -11419.436 246.14791 246.14791 66690.791 66690.791 -911.89568 -911.89568 22000 -11287.006 -11287.006 -11420.064 -11420.064 257.41104 257.41104 66618.36 66618.36 -36.739598 -36.739598 Loop time of 65.9714 on 1 procs for 1000 steps with 4000 atoms Performance: 1.310 ns/day, 18.325 hours/ns, 15.158 timesteps/s 45.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 | 65.39 | 65.39 | 65.39 | 0.0 | 99.12 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.12938 | 0.12938 | 0.12938 | 0.0 | 0.20 Output | 3.4094e-05 | 3.4094e-05 | 3.4094e-05 | 0.0 | 0.00 Modify | 0.38994 | 0.38994 | 0.38994 | 0.0 | 0.59 Other | | 0.06212 | | | 0.09 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 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: 1.58506e+06 ave 1.58506e+06 max 1.58506e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1585064 Ave neighs/atom = 396.266 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.287837115383, Press = -2.72547165434205 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 10.2 | 10.2 | 10.2 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 22000 -11287.006 -11287.006 -11420.064 -11420.064 257.41104 257.41104 66618.36 66618.36 -36.739598 -36.739598 23000 -11288.427 -11288.427 -11419.402 -11419.402 253.38058 253.38058 66580.036 66580.036 381.81861 381.81861 Loop time of 63.3327 on 1 procs for 1000 steps with 4000 atoms Performance: 1.364 ns/day, 17.592 hours/ns, 15.790 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 | 62.86 | 62.86 | 62.86 | 0.0 | 99.25 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.1377 | 0.1377 | 0.1377 | 0.0 | 0.22 Output | 3.314e-05 | 3.314e-05 | 3.314e-05 | 0.0 | 0.00 Modify | 0.29253 | 0.29253 | 0.29253 | 0.0 | 0.46 Other | | 0.04219 | | | 0.07 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 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: 1.58784e+06 ave 1.58784e+06 max 1.58784e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1587842 Ave neighs/atom = 396.961 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.335247966608, Press = -1.00247817562743 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 10.2 | 10.2 | 10.2 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 23000 -11288.427 -11288.427 -11419.402 -11419.402 253.38058 253.38058 66580.036 66580.036 381.81861 381.81861 24000 -11287.321 -11287.321 -11419.429 -11419.429 255.57185 255.57185 66606.148 66606.148 95.723628 95.723628 Loop time of 65.0323 on 1 procs for 1000 steps with 4000 atoms Performance: 1.329 ns/day, 18.065 hours/ns, 15.377 timesteps/s 45.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 | 64.531 | 64.531 | 64.531 | 0.0 | 99.23 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.086646 | 0.086646 | 0.086646 | 0.0 | 0.13 Output | 3.5048e-05 | 3.5048e-05 | 3.5048e-05 | 0.0 | 0.00 Modify | 0.36197 | 0.36197 | 0.36197 | 0.0 | 0.56 Other | | 0.05239 | | | 0.08 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 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: 1.58916e+06 ave 1.58916e+06 max 1.58916e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1589164 Ave neighs/atom = 397.291 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.346760090544, Press = -0.334415052298551 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 10.2 | 10.2 | 10.2 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 24000 -11287.321 -11287.321 -11419.429 -11419.429 255.57185 255.57185 66606.148 66606.148 95.723628 95.723628 25000 -11291.604 -11291.604 -11421.315 -11421.315 250.93409 250.93409 66618.316 66618.316 -147.37074 -147.37074 Loop time of 59.2753 on 1 procs for 1000 steps with 4000 atoms Performance: 1.458 ns/day, 16.465 hours/ns, 16.870 timesteps/s 50.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 | 58.844 | 58.844 | 58.844 | 0.0 | 99.27 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.14782 | 0.14782 | 0.14782 | 0.0 | 0.25 Output | 2.5988e-05 | 2.5988e-05 | 2.5988e-05 | 0.0 | 0.00 Modify | 0.26104 | 0.26104 | 0.26104 | 0.0 | 0.44 Other | | 0.02217 | | | 0.04 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 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: 1.58863e+06 ave 1.58863e+06 max 1.58863e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1588632 Ave neighs/atom = 397.158 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.333032445345, Press = -0.455994089413583 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 10.2 | 10.2 | 10.2 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 25000 -11291.604 -11291.604 -11421.315 -11421.315 250.93409 250.93409 66618.316 66618.316 -147.37074 -147.37074 26000 -11291.17 -11291.17 -11422.355 -11422.355 253.78562 253.78562 66633.603 66633.603 -334.24618 -334.24618 Loop time of 69.0322 on 1 procs for 1000 steps with 4000 atoms Performance: 1.252 ns/day, 19.176 hours/ns, 14.486 timesteps/s 42.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 | 68.451 | 68.451 | 68.451 | 0.0 | 99.16 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.1476 | 0.1476 | 0.1476 | 0.0 | 0.21 Output | 3.5048e-05 | 3.5048e-05 | 3.5048e-05 | 0.0 | 0.00 Modify | 0.3911 | 0.3911 | 0.3911 | 0.0 | 0.57 Other | | 0.0423 | | | 0.06 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 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: 1.58788e+06 ave 1.58788e+06 max 1.58788e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1587878 Ave neighs/atom = 396.969 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.303543727551, Press = -1.17258476959079 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 10.2 | 10.2 | 10.2 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 26000 -11291.17 -11291.17 -11422.355 -11422.355 253.78562 253.78562 66633.603 66633.603 -334.24618 -334.24618 27000 -11288.731 -11288.731 -11419.177 -11419.177 252.35604 252.35604 66584.563 66584.563 317.4336 317.4336 Loop time of 81.2136 on 1 procs for 1000 steps with 4000 atoms Performance: 1.064 ns/day, 22.559 hours/ns, 12.313 timesteps/s 36.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 | 80.601 | 80.601 | 80.601 | 0.0 | 99.25 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.16813 | 0.16813 | 0.16813 | 0.0 | 0.21 Output | 3.3855e-05 | 3.3855e-05 | 3.3855e-05 | 0.0 | 0.00 Modify | 0.40162 | 0.40162 | 0.40162 | 0.0 | 0.49 Other | | 0.04264 | | | 0.05 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 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: 1.58641e+06 ave 1.58641e+06 max 1.58641e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1586414 Ave neighs/atom = 396.603 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.215727393477, Press = -1.53089830843949 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 10.2 | 10.2 | 10.2 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 27000 -11288.731 -11288.731 -11419.177 -11419.177 252.35604 252.35604 66584.563 66584.563 317.4336 317.4336 28000 -11291.381 -11291.381 -11420.869 -11420.869 250.50371 250.50371 66510.035 66510.035 1056.3196 1056.3196 Loop time of 80.9725 on 1 procs for 1000 steps with 4000 atoms Performance: 1.067 ns/day, 22.492 hours/ns, 12.350 timesteps/s 36.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 | 80.36 | 80.36 | 80.36 | 0.0 | 99.24 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.10805 | 0.10805 | 0.10805 | 0.0 | 0.13 Output | 3.3855e-05 | 3.3855e-05 | 3.3855e-05 | 0.0 | 0.00 Modify | 0.44159 | 0.44159 | 0.44159 | 0.0 | 0.55 Other | | 0.0627 | | | 0.08 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10896 ave 10896 max 10896 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: 1.58962e+06 ave 1.58962e+06 max 1.58962e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1589616 Ave neighs/atom = 397.404 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.174694341854, Press = -0.554938491737826 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 10.2 | 10.2 | 10.2 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 28000 -11291.381 -11291.381 -11420.869 -11420.869 250.50371 250.50371 66510.035 66510.035 1056.3196 1056.3196 29000 -11287.839 -11287.839 -11420.991 -11420.991 257.59204 257.59204 66559.85 66559.85 570.7134 570.7134 Loop time of 81.3387 on 1 procs for 1000 steps with 4000 atoms Performance: 1.062 ns/day, 22.594 hours/ns, 12.294 timesteps/s 36.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 | 80.74 | 80.74 | 80.74 | 0.0 | 99.26 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.098079 | 0.098079 | 0.098079 | 0.0 | 0.12 Output | 6.6042e-05 | 6.6042e-05 | 6.6042e-05 | 0.0 | 0.00 Modify | 0.46606 | 0.46606 | 0.46606 | 0.0 | 0.57 Other | | 0.03398 | | | 0.04 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 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: 1.59236e+06 ave 1.59236e+06 max 1.59236e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1592356 Ave neighs/atom = 398.089 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.180081082978, Press = 0.700490359252792 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 10.2 | 10.2 | 10.2 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 29000 -11287.839 -11287.839 -11420.991 -11420.991 257.59204 257.59204 66559.85 66559.85 570.7134 570.7134 30000 -11291.114 -11291.114 -11419.319 -11419.319 248.01993 248.01993 66626.836 66626.836 -197.27227 -197.27227 Loop time of 82.5869 on 1 procs for 1000 steps with 4000 atoms Performance: 1.046 ns/day, 22.941 hours/ns, 12.108 timesteps/s 36.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 | 82.034 | 82.034 | 82.034 | 0.0 | 99.33 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.088263 | 0.088263 | 0.088263 | 0.0 | 0.11 Output | 4.8876e-05 | 4.8876e-05 | 4.8876e-05 | 0.0 | 0.00 Modify | 0.4017 | 0.4017 | 0.4017 | 0.0 | 0.49 Other | | 0.06245 | | | 0.08 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 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: 1.59012e+06 ave 1.59012e+06 max 1.59012e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1590116 Ave neighs/atom = 397.529 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.182346841139, Press = 0.242343497053552 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 10.2 | 10.2 | 10.2 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 30000 -11291.114 -11291.114 -11419.319 -11419.319 248.01993 248.01993 66626.836 66626.836 -197.27227 -197.27227 31000 -11287.495 -11287.495 -11421.004 -11421.004 258.28152 258.28152 66646.482 66646.482 -381.06002 -381.06002 Loop time of 79.2805 on 1 procs for 1000 steps with 4000 atoms Performance: 1.090 ns/day, 22.022 hours/ns, 12.613 timesteps/s 37.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 | 78.557 | 78.557 | 78.557 | 0.0 | 99.09 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.18872 | 0.18872 | 0.18872 | 0.0 | 0.24 Output | 2.5988e-05 | 2.5988e-05 | 2.5988e-05 | 0.0 | 0.00 Modify | 0.44219 | 0.44219 | 0.44219 | 0.0 | 0.56 Other | | 0.09285 | | | 0.12 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 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: 1.5874e+06 ave 1.5874e+06 max 1.5874e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1587402 Ave neighs/atom = 396.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.239062862606, Press = -0.451573052109125 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 10.2 | 10.2 | 10.2 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 31000 -11287.495 -11287.495 -11421.004 -11421.004 258.28152 258.28152 66646.482 66646.482 -381.06002 -381.06002 32000 -11290.998 -11290.998 -11419.908 -11419.908 249.38493 249.38493 66636.239 66636.239 -289.74195 -289.74195 Loop time of 82.304 on 1 procs for 1000 steps with 4000 atoms Performance: 1.050 ns/day, 22.862 hours/ns, 12.150 timesteps/s 36.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 | 81.541 | 81.541 | 81.541 | 0.0 | 99.07 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.16845 | 0.16845 | 0.16845 | 0.0 | 0.20 Output | 3.2902e-05 | 3.2902e-05 | 3.2902e-05 | 0.0 | 0.00 Modify | 0.53213 | 0.53213 | 0.53213 | 0.0 | 0.65 Other | | 0.06247 | | | 0.08 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 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: 1.58671e+06 ave 1.58671e+06 max 1.58671e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1586714 Ave neighs/atom = 396.678 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.273675992244, Press = -0.878203411297805 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 10.2 | 10.2 | 10.2 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 32000 -11290.998 -11290.998 -11419.908 -11419.908 249.38493 249.38493 66636.239 66636.239 -289.74195 -289.74195 33000 -11287.901 -11287.901 -11417.467 -11417.467 250.65461 250.65461 66607.538 66607.538 136.39686 136.39686 Loop time of 78.9121 on 1 procs for 1000 steps with 4000 atoms Performance: 1.095 ns/day, 21.920 hours/ns, 12.672 timesteps/s 37.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 | 78.129 | 78.129 | 78.129 | 0.0 | 99.01 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.18848 | 0.18848 | 0.18848 | 0.0 | 0.24 Output | 3.314e-05 | 3.314e-05 | 3.314e-05 | 0.0 | 0.00 Modify | 0.51206 | 0.51206 | 0.51206 | 0.0 | 0.65 Other | | 0.08261 | | | 0.10 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 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: 1.58723e+06 ave 1.58723e+06 max 1.58723e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1587228 Ave neighs/atom = 396.807 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.269232705566, Press = -0.974658280805161 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 10.2 | 10.2 | 10.2 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 33000 -11287.901 -11287.901 -11417.467 -11417.467 250.65461 250.65461 66607.538 66607.538 136.39686 136.39686 34000 -11288.839 -11288.839 -11421.609 -11421.609 256.85302 256.85302 66553.467 66553.467 621.9416 621.9416 Loop time of 78.4284 on 1 procs for 1000 steps with 4000 atoms Performance: 1.102 ns/day, 21.786 hours/ns, 12.750 timesteps/s 38.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 | 77.713 | 77.713 | 77.713 | 0.0 | 99.09 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.17837 | 0.17837 | 0.17837 | 0.0 | 0.23 Output | 2.6941e-05 | 2.6941e-05 | 2.6941e-05 | 0.0 | 0.00 Modify | 0.43261 | 0.43261 | 0.43261 | 0.0 | 0.55 Other | | 0.1045 | | | 0.13 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 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: 1.58868e+06 ave 1.58868e+06 max 1.58868e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1588680 Ave neighs/atom = 397.17 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.212333814283, Press = -0.577998032637964 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 10.2 | 10.2 | 10.2 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 34000 -11288.839 -11288.839 -11421.609 -11421.609 256.85302 256.85302 66553.467 66553.467 621.9416 621.9416 35000 -11291.511 -11291.511 -11421.029 -11421.029 250.56172 250.56172 66542 66542 720.38884 720.38884 Loop time of 86.3261 on 1 procs for 1000 steps with 4000 atoms Performance: 1.001 ns/day, 23.979 hours/ns, 11.584 timesteps/s 34.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 | 85.385 | 85.385 | 85.385 | 0.0 | 98.91 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.23291 | 0.23291 | 0.23291 | 0.0 | 0.27 Output | 5.1975e-05 | 5.1975e-05 | 5.1975e-05 | 0.0 | 0.00 Modify | 0.60473 | 0.60473 | 0.60473 | 0.0 | 0.70 Other | | 0.1031 | | | 0.12 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 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: 1.59073e+06 ave 1.59073e+06 max 1.59073e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1590734 Ave neighs/atom = 397.683 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.191289978554, Press = 0.225845551853629 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 10.2 | 10.2 | 10.2 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 35000 -11291.511 -11291.511 -11421.029 -11421.029 250.56172 250.56172 66542 66542 720.38884 720.38884 36000 -11287.733 -11287.733 -11419.642 -11419.642 255.18753 255.18753 66630.649 66630.649 -175.25832 -175.25832 Loop time of 86.8439 on 1 procs for 1000 steps with 4000 atoms Performance: 0.995 ns/day, 24.123 hours/ns, 11.515 timesteps/s 34.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 | 86.03 | 86.03 | 86.03 | 0.0 | 99.06 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.19989 | 0.19989 | 0.19989 | 0.0 | 0.23 Output | 3.2902e-05 | 3.2902e-05 | 3.2902e-05 | 0.0 | 0.00 Modify | 0.50176 | 0.50176 | 0.50176 | 0.0 | 0.58 Other | | 0.1126 | | | 0.13 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 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: 1.59075e+06 ave 1.59075e+06 max 1.59075e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1590754 Ave neighs/atom = 397.688 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.193733733899, Press = 0.458836341654103 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 10.2 | 10.2 | 10.2 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 36000 -11287.733 -11287.733 -11419.642 -11419.642 255.18753 255.18753 66630.649 66630.649 -175.25832 -175.25832 37000 -11289.41 -11289.41 -11420.274 -11420.274 253.16657 253.16657 66691.733 66691.733 -896.72016 -896.72016 Loop time of 86.4992 on 1 procs for 1000 steps with 4000 atoms Performance: 0.999 ns/day, 24.028 hours/ns, 11.561 timesteps/s 34.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 | 85.966 | 85.966 | 85.966 | 0.0 | 99.38 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.12849 | 0.12849 | 0.12849 | 0.0 | 0.15 Output | 3.4809e-05 | 3.4809e-05 | 3.4809e-05 | 0.0 | 0.00 Modify | 0.38219 | 0.38219 | 0.38219 | 0.0 | 0.44 Other | | 0.02255 | | | 0.03 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 10895 ave 10895 max 10895 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: 1.58742e+06 ave 1.58742e+06 max 1.58742e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1587420 Ave neighs/atom = 396.855 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 66611.0866035169 print "LAMMPS calculation completed" LAMMPS calculation completed quit 0