# Variables that can be adjusted by kim-lammps-preprocessor to switch unit sets for # Simulator Models variable _u_distance equal 1.0 variable _u_energy equal 1.0 variable _u_mass equal 1.0 variable _u_time equal 1.0 variable _u_pressure equal 1.0 variable _u_temperature equal 1.0 # This line may be swapped out by kim-lammps-preprocessor if running against a Simulator # Model whose atom_style is not 'atomic' atom_style atomic # periodic boundary conditions along all three dimensions boundary p p p # Set neighbor skin variable neigh_skin equal 2.0*${_u_distance} variable neigh_skin equal 2.0*1 neighbor ${neigh_skin} bin neighbor 2 bin # create a supercell with cubic lattice (fcc, bcc, sc, or diamond) # using 10*10*10 conventional (orthogonal) unit cells variable latticeconst_converted equal 5.432005196809769*${_u_distance} variable latticeconst_converted equal 5.432005196809769*1 lattice diamond ${latticeconst_converted} lattice diamond 5.43200519680977 Lattice spacing in x,y,z = 5.43201 5.43201 5.43201 region simbox block 0 10 0 10 0 10 units lattice create_box 1 simbox Created orthogonal box = (0 0 0) to (54.3201 54.3201 54.3201) 1 by 1 by 1 MPI processor grid create_atoms 1 box Created 8000 atoms create_atoms CPU = 0.000776052 secs variable mass_converted equal 28.0855*${_u_mass} variable mass_converted equal 28.0855*1 # specify which KIM Model to use pair_style kim Tersoff_LAMMPS_Tersoff_1989_SiGe__MO_350526375143_002 pair_coeff * * Si mass 1 ${mass_converted} mass 1 28.0855 # initial volume variable v equal vol # assign formula variable V0 equal ${v} # evaluate initial value variable V0 equal 160280.441589376 variable V0_metal equal ${V0}/(${_u_distance}*${_u_distance}*${_u_distance}) variable V0_metal equal 160280.441589376/(${_u_distance}*${_u_distance}*${_u_distance}) variable V0_metal equal 160280.441589376/(1*${_u_distance}*${_u_distance}) variable V0_metal equal 160280.441589376/(1*1*${_u_distance}) variable V0_metal equal 160280.441589376/(1*1*1) variable V0_metal_times1000 equal ${V0_metal}*1000 variable V0_metal_times1000 equal 160280.441589376*1000 print "Initial system volume: ${V0_metal} Angstroms^3" Initial system volume: 160280.441589376 Angstroms^3 # set the time step to 0.001 picoseconds variable timestep_converted equal 0.001*${_u_time} variable timestep_converted equal 0.001*1 timestep ${timestep_converted} timestep 0.001 variable temp_converted equal 293.15*${_u_temperature} variable temp_converted equal 293.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 293.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 293.15 ${temp_converted} ${Tdamp_converted} iso ${press_converted} ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 293.15 293.15 ${Tdamp_converted} iso ${press_converted} ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 293.15 293.15 0.1 iso ${press_converted} ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 293.15 293.15 0.1 iso 0 ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 293.15 293.15 0.1 iso 0 0 ${Pdamp_converted} fix ensemble all npt temp 293.15 293.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 "293.15 - 0.2" variable T_up equal "293.15 + 0.2" variable P_low equal "0.0 - 0.2" variable P_up equal "0.0 + 0.2" # print to logfile every 1000 timesteps thermo_style custom step etotal v_etotal_metal pe v_pe_metal temp v_T_metal vol v_V_metal press v_P_metal thermo 1000 # Run a simulation for at most 2000*1000 timesteps. At each 1000th time step, check # whether the temperature and pressure have converged. If yes, break. label top variable a loop 2000 run 1000 Neighbor list info ... update every 1 steps, delay 10 steps, check yes max neighbors/atom: 2000, page size: 100000 master list distance cutoff = 5.1 ghost atom cutoff = 5.1 binsize = 2.55, bins = 22 22 22 1 neighbor lists, perpetual/occasional/extra = 1 0 0 (1) pair kim, perpetual attributes: full, newton off, ghost, cut 5.1 pair build: full/bin/ghost stencil: full/ghost/bin/3d bin: standard Per MPI rank memory allocation (min/avg/max) = 4.616 | 4.616 | 4.616 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 0 -36733.657 -36733.657 -37036.76 -37036.76 293.15 293.15 160280.44 160280.44 2019.8989 2019.8989 1000 -36403.939 -36403.939 -36709.983 -36709.983 295.99498 295.99498 161043.26 161043.26 962.99453 962.99453 Loop time of 64.2867 on 1 procs for 1000 steps with 8000 atoms Performance: 1.344 ns/day, 17.857 hours/ns, 15.555 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 | 63.426 | 63.426 | 63.426 | 0.0 | 98.66 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.043863 | 0.043863 | 0.043863 | 0.0 | 0.07 Output | 5.6028e-05 | 5.6028e-05 | 5.6028e-05 | 0.0 | 0.00 Modify | 0.72104 | 0.72104 | 0.72104 | 0.0 | 1.12 Other | | 0.09542 | | | 0.15 Nlocal: 8000 ave 8000 max 8000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4995 ave 4995 max 4995 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224000 ave 224000 max 224000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224000 Ave neighs/atom = 28 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 0, Press = 0 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.616 | 4.616 | 4.616 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 1000 -36403.939 -36403.939 -36709.983 -36709.983 295.99498 295.99498 161043.26 161043.26 962.99453 962.99453 2000 -36434.748 -36434.748 -36736.533 -36736.533 291.87531 291.87531 161075.94 161075.94 635.4883 635.4883 Loop time of 64.582 on 1 procs for 1000 steps with 8000 atoms Performance: 1.338 ns/day, 17.939 hours/ns, 15.484 timesteps/s 50.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 | 63.663 | 63.663 | 63.663 | 0.0 | 98.58 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.063677 | 0.063677 | 0.063677 | 0.0 | 0.10 Output | 4.4823e-05 | 4.4823e-05 | 4.4823e-05 | 0.0 | 0.00 Modify | 0.8009 | 0.8009 | 0.8009 | 0.0 | 1.24 Other | | 0.05435 | | | 0.08 Nlocal: 8000 ave 8000 max 8000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4995 ave 4995 max 4995 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224006 ave 224006 max 224006 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224006 Ave neighs/atom = 28.0008 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 0, Press = 0 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.616 | 4.616 | 4.616 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 2000 -36434.748 -36434.748 -36736.533 -36736.533 291.87531 291.87531 161075.94 161075.94 635.4883 635.4883 3000 -36420.556 -36420.556 -36732.042 -36732.042 301.25733 301.25733 161175.01 161175.01 -156.30243 -156.30243 Loop time of 63.4407 on 1 procs for 1000 steps with 8000 atoms Performance: 1.362 ns/day, 17.622 hours/ns, 15.763 timesteps/s 51.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 | 62.767 | 62.767 | 62.767 | 0.0 | 98.94 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.10497 | 0.10497 | 0.10497 | 0.0 | 0.17 Output | 4.1008e-05 | 4.1008e-05 | 4.1008e-05 | 0.0 | 0.00 Modify | 0.53285 | 0.53285 | 0.53285 | 0.0 | 0.84 Other | | 0.03582 | | | 0.06 Nlocal: 8000 ave 8000 max 8000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4995 ave 4995 max 4995 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224004 ave 224004 max 224004 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224004 Ave neighs/atom = 28.0005 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 0, Press = 0 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.616 | 4.616 | 4.616 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 3000 -36420.556 -36420.556 -36732.042 -36732.042 301.25733 301.25733 161175.01 161175.01 -156.30243 -156.30243 4000 -36426.522 -36426.522 -36726.49 -36726.49 290.11738 290.11738 161171.45 161171.45 -74.245751 -74.245751 Loop time of 61.0833 on 1 procs for 1000 steps with 8000 atoms Performance: 1.414 ns/day, 16.968 hours/ns, 16.371 timesteps/s 53.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 | 60.219 | 60.219 | 60.219 | 0.0 | 98.58 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.085117 | 0.085117 | 0.085117 | 0.0 | 0.14 Output | 5.4836e-05 | 5.4836e-05 | 5.4836e-05 | 0.0 | 0.00 Modify | 0.64383 | 0.64383 | 0.64383 | 0.0 | 1.05 Other | | 0.1357 | | | 0.22 Nlocal: 8000 ave 8000 max 8000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4995 ave 4995 max 4995 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224002 ave 224002 max 224002 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224002 Ave neighs/atom = 28.0003 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 0, Press = 0 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.616 | 4.616 | 4.616 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 4000 -36426.522 -36426.522 -36726.49 -36726.49 290.11738 290.11738 161171.45 161171.45 -74.245751 -74.245751 5000 -36427.044 -36427.044 -36739.157 -36739.157 301.86383 301.86383 161125.3 161125.3 310.88959 310.88959 Loop time of 64.3113 on 1 procs for 1000 steps with 8000 atoms Performance: 1.343 ns/day, 17.864 hours/ns, 15.549 timesteps/s 51.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 | 63.433 | 63.433 | 63.433 | 0.0 | 98.63 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.063651 | 0.063651 | 0.063651 | 0.0 | 0.10 Output | 4.1962e-05 | 4.1962e-05 | 4.1962e-05 | 0.0 | 0.00 Modify | 0.77797 | 0.77797 | 0.77797 | 0.0 | 1.21 Other | | 0.03626 | | | 0.06 Nlocal: 8000 ave 8000 max 8000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4995 ave 4995 max 4995 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224002 ave 224002 max 224002 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224002 Ave neighs/atom = 28.0003 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 293.695016868024, Press = 216.166305886807 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.616 | 4.616 | 4.616 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 5000 -36427.044 -36427.044 -36739.157 -36739.157 301.86383 301.86383 161125.3 161125.3 310.88959 310.88959 6000 -36422.341 -36422.341 -36732.372 -36732.372 299.85117 299.85117 161067.29 161067.29 578.79613 578.79613 Loop time of 58.5613 on 1 procs for 1000 steps with 8000 atoms Performance: 1.475 ns/day, 16.267 hours/ns, 17.076 timesteps/s 56.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 | 57.794 | 57.794 | 57.794 | 0.0 | 98.69 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.065922 | 0.065922 | 0.065922 | 0.0 | 0.11 Output | 5.8889e-05 | 5.8889e-05 | 5.8889e-05 | 0.0 | 0.00 Modify | 0.60498 | 0.60498 | 0.60498 | 0.0 | 1.03 Other | | 0.09586 | | | 0.16 Nlocal: 8000 ave 8000 max 8000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4995 ave 4995 max 4995 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224002 ave 224002 max 224002 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224002 Ave neighs/atom = 28.0003 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 292.707027768418, Press = 33.8183007093502 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.616 | 4.616 | 4.616 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 6000 -36422.341 -36422.341 -36732.372 -36732.372 299.85117 299.85117 161067.29 161067.29 578.79613 578.79613 7000 -36430.359 -36430.359 -36726.309 -36726.309 286.23127 286.23127 161127 161127 149.13372 149.13372 Loop time of 63.1788 on 1 procs for 1000 steps with 8000 atoms Performance: 1.368 ns/day, 17.550 hours/ns, 15.828 timesteps/s 52.0% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 62.491 | 62.491 | 62.491 | 0.0 | 98.91 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.084933 | 0.084933 | 0.084933 | 0.0 | 0.13 Output | 4.3154e-05 | 4.3154e-05 | 4.3154e-05 | 0.0 | 0.00 Modify | 0.56785 | 0.56785 | 0.56785 | 0.0 | 0.90 Other | | 0.03517 | | | 0.06 Nlocal: 8000 ave 8000 max 8000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4995 ave 4995 max 4995 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224000 ave 224000 max 224000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224000 Ave neighs/atom = 28 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 293.045296928923, Press = 12.5206539055225 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.616 | 4.616 | 4.616 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 7000 -36430.359 -36430.359 -36726.309 -36726.309 286.23127 286.23127 161127 161127 149.13372 149.13372 8000 -36422.14 -36422.14 -36716.106 -36716.106 284.31279 284.31279 161155.37 161155.37 143.9545 143.9545 Loop time of 72.99 on 1 procs for 1000 steps with 8000 atoms Performance: 1.184 ns/day, 20.275 hours/ns, 13.701 timesteps/s 45.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.981 | 71.981 | 71.981 | 0.0 | 98.62 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.10433 | 0.10433 | 0.10433 | 0.0 | 0.14 Output | 4.3154e-05 | 4.3154e-05 | 4.3154e-05 | 0.0 | 0.00 Modify | 0.77349 | 0.77349 | 0.77349 | 0.0 | 1.06 Other | | 0.131 | | | 0.18 Nlocal: 8000 ave 8000 max 8000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4995 ave 4995 max 4995 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224006 ave 224006 max 224006 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224006 Ave neighs/atom = 28.0008 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 293.09941354633, Press = 7.08868263345026 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.616 | 4.616 | 4.616 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 8000 -36422.14 -36422.14 -36716.106 -36716.106 284.31279 284.31279 161155.37 161155.37 143.9545 143.9545 9000 -36430.313 -36430.313 -36718.135 -36718.135 278.37121 278.37121 161133.12 161133.12 170.22597 170.22597 Loop time of 73.9637 on 1 procs for 1000 steps with 8000 atoms Performance: 1.168 ns/day, 20.545 hours/ns, 13.520 timesteps/s 44.4% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 73.171 | 73.171 | 73.171 | 0.0 | 98.93 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.063813 | 0.063813 | 0.063813 | 0.0 | 0.09 Output | 4.3154e-05 | 4.3154e-05 | 4.3154e-05 | 0.0 | 0.00 Modify | 0.65386 | 0.65386 | 0.65386 | 0.0 | 0.88 Other | | 0.07521 | | | 0.10 Nlocal: 8000 ave 8000 max 8000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4995 ave 4995 max 4995 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224004 ave 224004 max 224004 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224004 Ave neighs/atom = 28.0005 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 293.053440065312, Press = 2.73324839916573 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.616 | 4.616 | 4.616 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 9000 -36430.313 -36430.313 -36718.135 -36718.135 278.37121 278.37121 161133.12 161133.12 170.22597 170.22597 10000 -36423.765 -36423.765 -36734.142 -36734.142 300.18523 300.18523 161112.41 161112.41 501.67413 501.67413 Loop time of 72.2479 on 1 procs for 1000 steps with 8000 atoms Performance: 1.196 ns/day, 20.069 hours/ns, 13.841 timesteps/s 45.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.42 | 71.42 | 71.42 | 0.0 | 98.85 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.083369 | 0.083369 | 0.083369 | 0.0 | 0.12 Output | 5.579e-05 | 5.579e-05 | 5.579e-05 | 0.0 | 0.00 Modify | 0.65991 | 0.65991 | 0.65991 | 0.0 | 0.91 Other | | 0.08459 | | | 0.12 Nlocal: 8000 ave 8000 max 8000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4995 ave 4995 max 4995 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224004 ave 224004 max 224004 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224004 Ave neighs/atom = 28.0005 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 293.130149900892, Press = 1.76640108569501 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.616 | 4.616 | 4.616 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 10000 -36423.765 -36423.765 -36734.142 -36734.142 300.18523 300.18523 161112.41 161112.41 501.67413 501.67413 11000 -36423.153 -36423.153 -36733.824 -36733.824 300.46958 300.46958 161057.55 161057.55 839.5673 839.5673 Loop time of 73.18 on 1 procs for 1000 steps with 8000 atoms Performance: 1.181 ns/day, 20.328 hours/ns, 13.665 timesteps/s 44.5% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 72.44 | 72.44 | 72.44 | 0.0 | 98.99 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.063513 | 0.063513 | 0.063513 | 0.0 | 0.09 Output | 3.5048e-05 | 3.5048e-05 | 3.5048e-05 | 0.0 | 0.00 Modify | 0.62235 | 0.62235 | 0.62235 | 0.0 | 0.85 Other | | 0.05446 | | | 0.07 Nlocal: 8000 ave 8000 max 8000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4995 ave 4995 max 4995 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224002 ave 224002 max 224002 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224002 Ave neighs/atom = 28.0003 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 293.179312836242, Press = 1.16511311319776 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.616 | 4.616 | 4.616 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 11000 -36423.153 -36423.153 -36733.824 -36733.824 300.46958 300.46958 161057.55 161057.55 839.5673 839.5673 12000 -36423.54 -36423.54 -36718.906 -36718.906 285.66688 285.66688 160999.38 160999.38 1064.4645 1064.4645 Loop time of 73.139 on 1 procs for 1000 steps with 8000 atoms Performance: 1.181 ns/day, 20.316 hours/ns, 13.673 timesteps/s 44.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 | 72.481 | 72.481 | 72.481 | 0.0 | 99.10 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.043714 | 0.043714 | 0.043714 | 0.0 | 0.06 Output | 5.1022e-05 | 5.1022e-05 | 5.1022e-05 | 0.0 | 0.00 Modify | 0.57923 | 0.57923 | 0.57923 | 0.0 | 0.79 Other | | 0.03478 | | | 0.05 Nlocal: 8000 ave 8000 max 8000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4995 ave 4995 max 4995 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224000 ave 224000 max 224000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224000 Ave neighs/atom = 28 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 293.39270728824, Press = 2.28337560123077 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.616 | 4.616 | 4.616 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 12000 -36423.54 -36423.54 -36718.906 -36718.906 285.66688 285.66688 160999.38 160999.38 1064.4645 1064.4645 13000 -36429.482 -36429.482 -36732.736 -36732.736 293.29607 293.29607 161071.31 161071.31 651.3405 651.3405 Loop time of 72.7209 on 1 procs for 1000 steps with 8000 atoms Performance: 1.188 ns/day, 20.200 hours/ns, 13.751 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 | 71.893 | 71.893 | 71.893 | 0.0 | 98.86 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.10407 | 0.10407 | 0.10407 | 0.0 | 0.14 Output | 4.2915e-05 | 4.2915e-05 | 4.2915e-05 | 0.0 | 0.00 Modify | 0.68948 | 0.68948 | 0.68948 | 0.0 | 0.95 Other | | 0.03447 | | | 0.05 Nlocal: 8000 ave 8000 max 8000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4995 ave 4995 max 4995 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224004 ave 224004 max 224004 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224004 Ave neighs/atom = 28.0005 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 293.344381666507, Press = 2.26789164290068 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.616 | 4.616 | 4.616 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 13000 -36429.482 -36429.482 -36732.736 -36732.736 293.29607 293.29607 161071.31 161071.31 651.3405 651.3405 14000 -36428.032 -36428.032 -36724.038 -36724.038 286.28534 286.28534 161143.89 161143.89 108.74813 108.74813 Loop time of 74.4265 on 1 procs for 1000 steps with 8000 atoms Performance: 1.161 ns/day, 20.674 hours/ns, 13.436 timesteps/s 44.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 | 73.625 | 73.625 | 73.625 | 0.0 | 98.92 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.084003 | 0.084003 | 0.084003 | 0.0 | 0.11 Output | 5.5075e-05 | 5.5075e-05 | 5.5075e-05 | 0.0 | 0.00 Modify | 0.66329 | 0.66329 | 0.66329 | 0.0 | 0.89 Other | | 0.05438 | | | 0.07 Nlocal: 8000 ave 8000 max 8000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4995 ave 4995 max 4995 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224002 ave 224002 max 224002 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224002 Ave neighs/atom = 28.0003 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 293.261610018534, Press = 1.57730939711146 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.616 | 4.616 | 4.616 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 14000 -36428.032 -36428.032 -36724.038 -36724.038 286.28534 286.28534 161143.89 161143.89 108.74813 108.74813 15000 -36423.953 -36423.953 -36727.281 -36727.281 293.3683 293.3683 161163.86 161163.86 171.73145 171.73145 Loop time of 66.9346 on 1 procs for 1000 steps with 8000 atoms Performance: 1.291 ns/day, 18.593 hours/ns, 14.940 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 | 66.058 | 66.058 | 66.058 | 0.0 | 98.69 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.084102 | 0.084102 | 0.084102 | 0.0 | 0.13 Output | 4.4823e-05 | 4.4823e-05 | 4.4823e-05 | 0.0 | 0.00 Modify | 0.73718 | 0.73718 | 0.73718 | 0.0 | 1.10 Other | | 0.05491 | | | 0.08 Nlocal: 8000 ave 8000 max 8000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4995 ave 4995 max 4995 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224006 ave 224006 max 224006 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224006 Ave neighs/atom = 28.0008 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 293.116493750024, Press = 1.29530352052134 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.616 | 4.616 | 4.616 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 15000 -36423.953 -36423.953 -36727.281 -36727.281 293.3683 293.3683 161163.86 161163.86 171.73145 171.73145 16000 -36427.768 -36427.768 -36731.739 -36731.739 293.98903 293.98903 161142.64 161142.64 227.42069 227.42069 Loop time of 68.7906 on 1 procs for 1000 steps with 8000 atoms Performance: 1.256 ns/day, 19.109 hours/ns, 14.537 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 | 67.806 | 67.806 | 67.806 | 0.0 | 98.57 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.083925 | 0.083925 | 0.083925 | 0.0 | 0.12 Output | 4.6968e-05 | 4.6968e-05 | 4.6968e-05 | 0.0 | 0.00 Modify | 0.76625 | 0.76625 | 0.76625 | 0.0 | 1.11 Other | | 0.1346 | | | 0.20 Nlocal: 8000 ave 8000 max 8000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4995 ave 4995 max 4995 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224002 ave 224002 max 224002 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224002 Ave neighs/atom = 28.0003 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 293.173070920536, Press = 1.71017796918701 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.616 | 4.616 | 4.616 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 16000 -36427.768 -36427.768 -36731.739 -36731.739 293.98903 293.98903 161142.64 161142.64 227.42069 227.42069 17000 -36418.856 -36418.856 -36737.004 -36737.004 307.70065 307.70065 161097.53 161097.53 566.0603 566.0603 Loop time of 75.6095 on 1 procs for 1000 steps with 8000 atoms Performance: 1.143 ns/day, 21.003 hours/ns, 13.226 timesteps/s 43.3% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 74.786 | 74.786 | 74.786 | 0.0 | 98.91 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.083903 | 0.083903 | 0.083903 | 0.0 | 0.11 Output | 4.5061e-05 | 4.5061e-05 | 4.5061e-05 | 0.0 | 0.00 Modify | 0.68542 | 0.68542 | 0.68542 | 0.0 | 0.91 Other | | 0.05411 | | | 0.07 Nlocal: 8000 ave 8000 max 8000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4995 ave 4995 max 4995 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224002 ave 224002 max 224002 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224002 Ave neighs/atom = 28.0003 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 293.292071816966, Press = 1.84177924545049 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.616 | 4.616 | 4.616 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 17000 -36418.856 -36418.856 -36737.004 -36737.004 307.70065 307.70065 161097.53 161097.53 566.0603 566.0603 18000 -36426.86 -36426.86 -36726.653 -36726.653 289.94819 289.94819 161051.53 161051.53 786.98623 786.98623 Loop time of 78.1918 on 1 procs for 1000 steps with 8000 atoms Performance: 1.105 ns/day, 21.720 hours/ns, 12.789 timesteps/s 41.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 | 77.354 | 77.354 | 77.354 | 0.0 | 98.93 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.10291 | 0.10291 | 0.10291 | 0.0 | 0.13 Output | 3.5048e-05 | 3.5048e-05 | 3.5048e-05 | 0.0 | 0.00 Modify | 0.65118 | 0.65118 | 0.65118 | 0.0 | 0.83 Other | | 0.08387 | | | 0.11 Nlocal: 8000 ave 8000 max 8000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4995 ave 4995 max 4995 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224000 ave 224000 max 224000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224000 Ave neighs/atom = 28 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 293.332120563441, Press = 2.3235937508462 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.616 | 4.616 | 4.616 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 18000 -36426.86 -36426.86 -36726.653 -36726.653 289.94819 289.94819 161051.53 161051.53 786.98623 786.98623 19000 -36431.413 -36431.413 -36729.736 -36729.736 288.527 288.527 161072.04 161072.04 523.87762 523.87762 Loop time of 78.6021 on 1 procs for 1000 steps with 8000 atoms Performance: 1.099 ns/day, 21.834 hours/ns, 12.722 timesteps/s 41.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 | 77.743 | 77.743 | 77.743 | 0.0 | 98.91 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.093593 | 0.093593 | 0.093593 | 0.0 | 0.12 Output | 4.4107e-05 | 4.4107e-05 | 4.4107e-05 | 0.0 | 0.00 Modify | 0.69073 | 0.69073 | 0.69073 | 0.0 | 0.88 Other | | 0.07428 | | | 0.09 Nlocal: 8000 ave 8000 max 8000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4995 ave 4995 max 4995 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224002 ave 224002 max 224002 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224002 Ave neighs/atom = 28.0003 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 293.346310441631, Press = 2.11526971860025 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.616 | 4.616 | 4.616 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 19000 -36431.413 -36431.413 -36729.736 -36729.736 288.527 288.527 161072.04 161072.04 523.87762 523.87762 20000 -36427.292 -36427.292 -36729.055 -36729.055 291.85376 291.85376 161096.97 161096.97 418.78325 418.78325 Loop time of 78.1357 on 1 procs for 1000 steps with 8000 atoms Performance: 1.106 ns/day, 21.704 hours/ns, 12.798 timesteps/s 41.7% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 77.131 | 77.131 | 77.131 | 0.0 | 98.71 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.10297 | 0.10297 | 0.10297 | 0.0 | 0.13 Output | 4.1008e-05 | 4.1008e-05 | 4.1008e-05 | 0.0 | 0.00 Modify | 0.80821 | 0.80821 | 0.80821 | 0.0 | 1.03 Other | | 0.09387 | | | 0.12 Nlocal: 8000 ave 8000 max 8000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4995 ave 4995 max 4995 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224008 ave 224008 max 224008 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224008 Ave neighs/atom = 28.001 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 293.307986360888, Press = 1.20432554026943 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.616 | 4.616 | 4.616 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 20000 -36427.292 -36427.292 -36729.055 -36729.055 291.85376 291.85376 161096.97 161096.97 418.78325 418.78325 21000 -36425.504 -36425.504 -36727.035 -36727.035 291.6295 291.6295 161078.75 161078.75 631.11607 631.11607 Loop time of 76.0032 on 1 procs for 1000 steps with 8000 atoms Performance: 1.137 ns/day, 21.112 hours/ns, 13.157 timesteps/s 42.9% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 74.927 | 74.927 | 74.927 | 0.0 | 98.58 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.18361 | 0.18361 | 0.18361 | 0.0 | 0.24 Output | 4.5061e-05 | 4.5061e-05 | 4.5061e-05 | 0.0 | 0.00 Modify | 0.85866 | 0.85866 | 0.85866 | 0.0 | 1.13 Other | | 0.03393 | | | 0.04 Nlocal: 8000 ave 8000 max 8000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4995 ave 4995 max 4995 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224002 ave 224002 max 224002 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224002 Ave neighs/atom = 28.0003 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 293.212025880608, Press = 1.073485873578 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.616 | 4.616 | 4.616 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 21000 -36425.504 -36425.504 -36727.035 -36727.035 291.6295 291.6295 161078.75 161078.75 631.11607 631.11607 22000 -36422.993 -36422.993 -36722.617 -36722.617 289.78507 289.78507 161147.87 161147.87 164.49609 164.49609 Loop time of 71.7447 on 1 procs for 1000 steps with 8000 atoms Performance: 1.204 ns/day, 19.929 hours/ns, 13.938 timesteps/s 45.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 | 70.957 | 70.957 | 70.957 | 0.0 | 98.90 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.082958 | 0.082958 | 0.082958 | 0.0 | 0.12 Output | 6.485e-05 | 6.485e-05 | 6.485e-05 | 0.0 | 0.00 Modify | 0.61103 | 0.61103 | 0.61103 | 0.0 | 0.85 Other | | 0.09407 | | | 0.13 Nlocal: 8000 ave 8000 max 8000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4995 ave 4995 max 4995 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224004 ave 224004 max 224004 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224004 Ave neighs/atom = 28.0005 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 293.15433667667, Press = 0.829531532061518 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.618 | 4.618 | 4.618 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 22000 -36422.993 -36422.993 -36722.617 -36722.617 289.78507 289.78507 161147.87 161147.87 164.49609 164.49609 23000 -36418.085 -36418.085 -36722.294 -36722.294 294.2189 294.2189 161129.14 161129.14 344.3541 344.3541 Loop time of 71.8611 on 1 procs for 1000 steps with 8000 atoms Performance: 1.202 ns/day, 19.961 hours/ns, 13.916 timesteps/s 45.4% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 70.851 | 70.851 | 70.851 | 0.0 | 98.59 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.10363 | 0.10363 | 0.10363 | 0.0 | 0.14 Output | 4.3154e-05 | 4.3154e-05 | 4.3154e-05 | 0.0 | 0.00 Modify | 0.79202 | 0.79202 | 0.79202 | 0.0 | 1.10 Other | | 0.114 | | | 0.16 Nlocal: 8000 ave 8000 max 8000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4995 ave 4995 max 4995 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224002 ave 224002 max 224002 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224002 Ave neighs/atom = 28.0003 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 293.149510726944, Press = 0.681748573256917 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.618 | 4.618 | 4.618 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 23000 -36418.085 -36418.085 -36722.294 -36722.294 294.2189 294.2189 161129.14 161129.14 344.3541 344.3541 24000 -36427.208 -36427.208 -36725.78 -36725.78 288.76803 288.76803 161135.88 161135.88 130.12456 130.12456 Loop time of 69.4083 on 1 procs for 1000 steps with 8000 atoms Performance: 1.245 ns/day, 19.280 hours/ns, 14.408 timesteps/s 47.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.379 | 68.379 | 68.379 | 0.0 | 98.52 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.08424 | 0.08424 | 0.08424 | 0.0 | 0.12 Output | 4.1008e-05 | 4.1008e-05 | 4.1008e-05 | 0.0 | 0.00 Modify | 0.80006 | 0.80006 | 0.80006 | 0.0 | 1.15 Other | | 0.1448 | | | 0.21 Nlocal: 8000 ave 8000 max 8000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4995 ave 4995 max 4995 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224010 ave 224010 max 224010 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224010 Ave neighs/atom = 28.0012 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 293.20807746844, Press = 0.445746354107951 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.618 | 4.618 | 4.618 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 24000 -36427.208 -36427.208 -36725.78 -36725.78 288.76803 288.76803 161135.88 161135.88 130.12456 130.12456 25000 -36424.75 -36424.75 -36725.261 -36725.261 290.64332 290.64332 161109.13 161109.13 334.8962 334.8962 Loop time of 66.2118 on 1 procs for 1000 steps with 8000 atoms Performance: 1.305 ns/day, 18.392 hours/ns, 15.103 timesteps/s 49.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 | 65.505 | 65.505 | 65.505 | 0.0 | 98.93 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.11495 | 0.11495 | 0.11495 | 0.0 | 0.17 Output | 4.3154e-05 | 4.3154e-05 | 4.3154e-05 | 0.0 | 0.00 Modify | 0.48768 | 0.48768 | 0.48768 | 0.0 | 0.74 Other | | 0.1037 | | | 0.16 Nlocal: 8000 ave 8000 max 8000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4995 ave 4995 max 4995 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224004 ave 224004 max 224004 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224004 Ave neighs/atom = 28.0005 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 293.242234284441, Press = 0.38752673874901 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.618 | 4.618 | 4.618 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 25000 -36424.75 -36424.75 -36725.261 -36725.261 290.64332 290.64332 161109.13 161109.13 334.8962 334.8962 26000 -36427.742 -36427.742 -36727.08 -36727.08 289.5091 289.5091 161143.53 161143.53 242.05745 242.05745 Loop time of 63.3252 on 1 procs for 1000 steps with 8000 atoms Performance: 1.364 ns/day, 17.590 hours/ns, 15.791 timesteps/s 51.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 | 62.537 | 62.537 | 62.537 | 0.0 | 98.75 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.14527 | 0.14527 | 0.14527 | 0.0 | 0.23 Output | 4.4107e-05 | 4.4107e-05 | 4.4107e-05 | 0.0 | 0.00 Modify | 0.52791 | 0.52791 | 0.52791 | 0.0 | 0.83 Other | | 0.1153 | | | 0.18 Nlocal: 8000 ave 8000 max 8000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4995 ave 4995 max 4995 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224012 ave 224012 max 224012 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224012 Ave neighs/atom = 28.0015 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 293.187570529054, Press = 0.679206071724427 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.618 | 4.618 | 4.618 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 26000 -36427.742 -36427.742 -36727.08 -36727.08 289.5091 289.5091 161143.53 161143.53 242.05745 242.05745 27000 -36427.749 -36427.749 -36734.26 -36734.26 296.44546 296.44546 161131.37 161131.37 252.48241 252.48241 Loop time of 64.5167 on 1 procs for 1000 steps with 8000 atoms Performance: 1.339 ns/day, 17.921 hours/ns, 15.500 timesteps/s 50.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 | 63.749 | 63.749 | 63.749 | 0.0 | 98.81 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.065424 | 0.065424 | 0.065424 | 0.0 | 0.10 Output | 4.3154e-05 | 4.3154e-05 | 4.3154e-05 | 0.0 | 0.00 Modify | 0.62658 | 0.62658 | 0.62658 | 0.0 | 0.97 Other | | 0.07549 | | | 0.12 Nlocal: 8000 ave 8000 max 8000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4995 ave 4995 max 4995 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224004 ave 224004 max 224004 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224004 Ave neighs/atom = 28.0005 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 293.169214868705, Press = 1.08651579252237 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.618 | 4.618 | 4.618 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 27000 -36427.749 -36427.749 -36734.26 -36734.26 296.44546 296.44546 161131.37 161131.37 252.48241 252.48241 28000 -36417.987 -36417.987 -36725.594 -36725.594 297.50648 297.50648 161192.77 161192.77 29.608099 29.608099 Loop time of 63.4729 on 1 procs for 1000 steps with 8000 atoms Performance: 1.361 ns/day, 17.631 hours/ns, 15.755 timesteps/s 51.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 | 62.786 | 62.786 | 62.786 | 0.0 | 98.92 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.084326 | 0.084326 | 0.084326 | 0.0 | 0.13 Output | 4.3154e-05 | 4.3154e-05 | 4.3154e-05 | 0.0 | 0.00 Modify | 0.54798 | 0.54798 | 0.54798 | 0.0 | 0.86 Other | | 0.05467 | | | 0.09 Nlocal: 8000 ave 8000 max 8000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4995 ave 4995 max 4995 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224000 ave 224000 max 224000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224000 Ave neighs/atom = 28 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 293.180971966042, Press = 1.43793446494381 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.618 | 4.618 | 4.618 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 28000 -36417.987 -36417.987 -36725.594 -36725.594 297.50648 297.50648 161192.77 161192.77 29.608099 29.608099 29000 -36426.659 -36426.659 -36728.776 -36728.776 292.19652 292.19652 161215.87 161215.87 -160.95763 -160.95763 Loop time of 63.3285 on 1 procs for 1000 steps with 8000 atoms Performance: 1.364 ns/day, 17.591 hours/ns, 15.791 timesteps/s 51.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 | 62.571 | 62.571 | 62.571 | 0.0 | 98.80 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.12501 | 0.12501 | 0.12501 | 0.0 | 0.20 Output | 3.6001e-05 | 3.6001e-05 | 3.6001e-05 | 0.0 | 0.00 Modify | 0.59802 | 0.59802 | 0.59802 | 0.0 | 0.94 Other | | 0.03458 | | | 0.05 Nlocal: 8000 ave 8000 max 8000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4995 ave 4995 max 4995 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224002 ave 224002 max 224002 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224002 Ave neighs/atom = 28.0003 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 293.238959468936, Press = 1.02285138885222 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.618 | 4.618 | 4.618 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 29000 -36426.659 -36426.659 -36728.776 -36728.776 292.19652 292.19652 161215.87 161215.87 -160.95763 -160.95763 30000 -36422.415 -36422.415 -36729.667 -36729.667 297.1636 297.1636 161260.8 161260.8 -421.41918 -421.41918 Loop time of 58.8457 on 1 procs for 1000 steps with 8000 atoms Performance: 1.468 ns/day, 16.346 hours/ns, 16.994 timesteps/s 55.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 | 58.231 | 58.231 | 58.231 | 0.0 | 98.96 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.10482 | 0.10482 | 0.10482 | 0.0 | 0.18 Output | 4.3154e-05 | 4.3154e-05 | 4.3154e-05 | 0.0 | 0.00 Modify | 0.45444 | 0.45444 | 0.45444 | 0.0 | 0.77 Other | | 0.05537 | | | 0.09 Nlocal: 8000 ave 8000 max 8000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4995 ave 4995 max 4995 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224000 ave 224000 max 224000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224000 Ave neighs/atom = 28 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 293.251535671272, Press = 0.742992194081811 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.618 | 4.618 | 4.618 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 30000 -36422.415 -36422.415 -36729.667 -36729.667 297.1636 297.1636 161260.8 161260.8 -421.41918 -421.41918 31000 -36425.817 -36425.817 -36727.68 -36727.68 291.95038 291.95038 161229.72 161229.72 -297.61549 -297.61549 Loop time of 61.3201 on 1 procs for 1000 steps with 8000 atoms Performance: 1.409 ns/day, 17.033 hours/ns, 16.308 timesteps/s 53.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 | 60.714 | 60.714 | 60.714 | 0.0 | 99.01 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.084792 | 0.084792 | 0.084792 | 0.0 | 0.14 Output | 3.6001e-05 | 3.6001e-05 | 3.6001e-05 | 0.0 | 0.00 Modify | 0.4663 | 0.4663 | 0.4663 | 0.0 | 0.76 Other | | 0.05533 | | | 0.09 Nlocal: 8000 ave 8000 max 8000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4995 ave 4995 max 4995 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224002 ave 224002 max 224002 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224002 Ave neighs/atom = 28.0003 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 293.201246007776, Press = 0.470420634444267 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.618 | 4.618 | 4.618 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 31000 -36425.817 -36425.817 -36727.68 -36727.68 291.95038 291.95038 161229.72 161229.72 -297.61549 -297.61549 32000 -36432.91 -36432.91 -36732.797 -36732.797 290.03942 290.03942 161256.54 161256.54 -434.6465 -434.6465 Loop time of 60.0068 on 1 procs for 1000 steps with 8000 atoms Performance: 1.440 ns/day, 16.669 hours/ns, 16.665 timesteps/s 54.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 | 59.476 | 59.476 | 59.476 | 0.0 | 99.12 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.063982 | 0.063982 | 0.063982 | 0.0 | 0.11 Output | 4.2915e-05 | 4.2915e-05 | 4.2915e-05 | 0.0 | 0.00 Modify | 0.43211 | 0.43211 | 0.43211 | 0.0 | 0.72 Other | | 0.03425 | | | 0.06 Nlocal: 8000 ave 8000 max 8000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4995 ave 4995 max 4995 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224006 ave 224006 max 224006 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224006 Ave neighs/atom = 28.0008 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 293.188080838932, Press = 0.405153335200827 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.618 | 4.618 | 4.618 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 32000 -36432.91 -36432.91 -36732.797 -36732.797 290.03942 290.03942 161256.54 161256.54 -434.6465 -434.6465 33000 -36427.363 -36427.363 -36734.117 -36734.117 296.6808 296.6808 161290.11 161290.11 -688.54058 -688.54058 Loop time of 61.5948 on 1 procs for 1000 steps with 8000 atoms Performance: 1.403 ns/day, 17.110 hours/ns, 16.235 timesteps/s 53.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 | 60.882 | 60.882 | 60.882 | 0.0 | 98.84 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.10535 | 0.10535 | 0.10535 | 0.0 | 0.17 Output | 4.4107e-05 | 4.4107e-05 | 4.4107e-05 | 0.0 | 0.00 Modify | 0.50177 | 0.50177 | 0.50177 | 0.0 | 0.81 Other | | 0.1055 | | | 0.17 Nlocal: 8000 ave 8000 max 8000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4995 ave 4995 max 4995 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224000 ave 224000 max 224000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224000 Ave neighs/atom = 28 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 293.122919189763, Press = 0.266980478390201 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.618 | 4.618 | 4.618 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 33000 -36427.363 -36427.363 -36734.117 -36734.117 296.6808 296.6808 161290.11 161290.11 -688.54058 -688.54058 34000 -36428.834 -36428.834 -36727.208 -36727.208 288.5768 288.5768 161319.85 161319.85 -924.01351 -924.01351 Loop time of 51.4717 on 1 procs for 1000 steps with 8000 atoms Performance: 1.679 ns/day, 14.298 hours/ns, 19.428 timesteps/s 63.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 | 50.88 | 50.88 | 50.88 | 0.0 | 98.85 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.045475 | 0.045475 | 0.045475 | 0.0 | 0.09 Output | 4.2915e-05 | 4.2915e-05 | 4.2915e-05 | 0.0 | 0.00 Modify | 0.51073 | 0.51073 | 0.51073 | 0.0 | 0.99 Other | | 0.03562 | | | 0.07 Nlocal: 8000 ave 8000 max 8000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4995 ave 4995 max 4995 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224002 ave 224002 max 224002 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224002 Ave neighs/atom = 28.0003 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 293.116008502142, Press = 0.204420438439038 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.618 | 4.618 | 4.618 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 34000 -36428.834 -36428.834 -36727.208 -36727.208 288.5768 288.5768 161319.85 161319.85 -924.01351 -924.01351 35000 -36427.937 -36427.937 -36729.602 -36729.602 291.75863 291.75863 161290.3 161290.3 -805.87941 -805.87941 Loop time of 53.7183 on 1 procs for 1000 steps with 8000 atoms Performance: 1.608 ns/day, 14.922 hours/ns, 18.616 timesteps/s 60.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 | 53.12 | 53.12 | 53.12 | 0.0 | 98.89 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.045245 | 0.045245 | 0.045245 | 0.0 | 0.08 Output | 4.3154e-05 | 4.3154e-05 | 4.3154e-05 | 0.0 | 0.00 Modify | 0.49794 | 0.49794 | 0.49794 | 0.0 | 0.93 Other | | 0.05518 | | | 0.10 Nlocal: 8000 ave 8000 max 8000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4995 ave 4995 max 4995 min Histogram: 1 0 0 0 0 0 0 0 0 0 Neighs: 0 ave 0 max 0 min Histogram: 1 0 0 0 0 0 0 0 0 0 FullNghs: 224000 ave 224000 max 224000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224000 Ave neighs/atom = 28 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" 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_T293.15.out" else "print 'not_converged' file output/vol_T293.15.out" print '${V}' file output/vol_T293.15.out 161179.255319711 print "LAMMPS calculation completed" LAMMPS calculation completed quit 0