# 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 2.8755435347557072*${_u_distance} variable latticeconst_converted equal 2.8755435347557072*1 lattice bcc ${latticeconst_converted} lattice bcc 2.87554353475571 Lattice spacing in x,y,z = 2.87554 2.87554 2.87554 region simbox block 0 10 0 10 0 10 units lattice create_box 1 simbox Created orthogonal box = (0 0 0) to (28.7554 28.7554 28.7554) 1 by 1 by 1 MPI processor grid create_atoms 1 box Created 2000 atoms create_atoms CPU = 0.000281811 secs variable mass_converted equal 51.9961*${_u_mass} variable mass_converted equal 51.9961*1 # specify which KIM Model to use pair_style kim Morse_Shifted_GirifalcoWeizer_1959HighCutoff_Cr__MO_859700307573_003 WARNING: KIM Model does not provide `partialParticleVirial'; virial per atom will be zero (src/KIM/pair_kim.cpp:979) pair_coeff * * Cr mass 1 ${mass_converted} mass 1 51.9961 # initial volume variable v equal vol # assign formula variable V0 equal ${v} # evaluate initial value variable V0 equal 23777.1523866401 variable V0_metal equal ${V0}/(${_u_distance}*${_u_distance}*${_u_distance}) variable V0_metal equal 23777.1523866401/(${_u_distance}*${_u_distance}*${_u_distance}) variable V0_metal equal 23777.1523866401/(1*${_u_distance}*${_u_distance}) variable V0_metal equal 23777.1523866401/(1*1*${_u_distance}) variable V0_metal equal 23777.1523866401/(1*1*1) variable V0_metal_times1000 equal ${V0_metal}*1000 variable V0_metal_times1000 equal 23777.1523866401*1000 print "Initial system volume: ${V0_metal} Angstroms^3" Initial system volume: 23777.1523866401 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 = 11.0535 ghost atom cutoff = 11.0535 binsize = 5.52675, bins = 6 6 6 1 neighbor lists, perpetual/occasional/extra = 1 0 0 (1) pair kim, perpetual attributes: full, newton off, cut 11.0535 pair build: full/bin/atomonly stencil: full/bin/3d bin: standard Per MPI rank memory allocation (min/avg/max) = 7.422 | 7.422 | 7.422 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 0 -7673.1205 -7673.1205 -7748.8679 -7748.8679 293.15 293.15 23777.152 23777.152 3402.7685 3402.7685 1000 -7597.953 -7597.953 -7669.6516 -7669.6516 277.48088 277.48088 24004.444 24004.444 -1711.2742 -1711.2742 Loop time of 31.7351 on 1 procs for 1000 steps with 2000 atoms Performance: 2.723 ns/day, 8.815 hours/ns, 31.511 timesteps/s 58.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 | 31.59 | 31.59 | 31.59 | 0.0 | 99.54 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.050503 | 0.050503 | 0.050503 | 0.0 | 0.16 Output | 4.1008e-05 | 4.1008e-05 | 4.1008e-05 | 0.0 | 0.00 Modify | 0.080705 | 0.080705 | 0.080705 | 0.0 | 0.25 Other | | 0.01403 | | | 0.04 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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.06e+06 ave 1.06e+06 max 1.06e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 1060000 Ave neighs/atom = 530 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 0, Press = 0 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.427 | 7.427 | 7.427 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 1000 -7597.953 -7597.953 -7669.6516 -7669.6516 277.48088 277.48088 24004.444 24004.444 -1711.2742 -1711.2742 2000 -7594.5185 -7594.5185 -7671.9297 -7671.9297 299.58962 299.58962 23967.037 23967.037 1083.4553 1083.4553 Loop time of 33.7633 on 1 procs for 1000 steps with 2000 atoms Performance: 2.559 ns/day, 9.379 hours/ns, 29.618 timesteps/s 54.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 | 33.481 | 33.481 | 33.481 | 0.0 | 99.16 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.09111 | 0.09111 | 0.09111 | 0.0 | 0.27 Output | 3.7909e-05 | 3.7909e-05 | 3.7909e-05 | 0.0 | 0.00 Modify | 0.17739 | 0.17739 | 0.17739 | 0.0 | 0.53 Other | | 0.01414 | | | 0.04 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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: 974452 ave 974452 max 974452 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 974452 Ave neighs/atom = 487.226 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 0, Press = 0 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.427 | 7.427 | 7.427 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 2000 -7594.5185 -7594.5185 -7671.9297 -7671.9297 299.58962 299.58962 23967.037 23967.037 1083.4553 1083.4553 3000 -7599.7248 -7599.7248 -7672.8437 -7672.8437 282.97806 282.97806 23973.375 23973.375 311.86469 311.86469 Loop time of 29.4638 on 1 procs for 1000 steps with 2000 atoms Performance: 2.932 ns/day, 8.184 hours/ns, 33.940 timesteps/s 62.8% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 29.214 | 29.214 | 29.214 | 0.0 | 99.15 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.093474 | 0.093474 | 0.093474 | 0.0 | 0.32 Output | 5.3883e-05 | 5.3883e-05 | 5.3883e-05 | 0.0 | 0.00 Modify | 0.12157 | 0.12157 | 0.12157 | 0.0 | 0.41 Other | | 0.03438 | | | 0.12 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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: 976686 ave 976686 max 976686 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 976686 Ave neighs/atom = 488.343 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 0, Press = 0 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.427 | 7.427 | 7.427 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 3000 -7599.7248 -7599.7248 -7672.8437 -7672.8437 282.97806 282.97806 23973.375 23973.375 311.86469 311.86469 4000 -7594.2683 -7594.2683 -7670.6546 -7670.6546 295.62289 295.62289 23990.332 23990.332 -565.05204 -565.05204 Loop time of 29.3687 on 1 procs for 1000 steps with 2000 atoms Performance: 2.942 ns/day, 8.158 hours/ns, 34.050 timesteps/s 62.9% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 29.103 | 29.103 | 29.103 | 0.0 | 99.09 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.090079 | 0.090079 | 0.090079 | 0.0 | 0.31 Output | 3.6955e-05 | 3.6955e-05 | 3.6955e-05 | 0.0 | 0.00 Modify | 0.16202 | 0.16202 | 0.16202 | 0.0 | 0.55 Other | | 0.01384 | | | 0.05 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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: 976174 ave 976174 max 976174 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 976174 Ave neighs/atom = 488.087 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 0, Press = 0 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.427 | 7.427 | 7.427 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 4000 -7594.2683 -7594.2683 -7670.6546 -7670.6546 295.62289 295.62289 23990.332 23990.332 -565.05204 -565.05204 5000 -7598.7795 -7598.7795 -7671.7835 -7671.7835 282.53288 282.53288 23961.921 23961.921 1205.3632 1205.3632 Loop time of 30.9089 on 1 procs for 1000 steps with 2000 atoms Performance: 2.795 ns/day, 8.586 hours/ns, 32.353 timesteps/s 59.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 | 30.579 | 30.579 | 30.579 | 0.0 | 98.93 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.064228 | 0.064228 | 0.064228 | 0.0 | 0.21 Output | 2.718e-05 | 2.718e-05 | 2.718e-05 | 0.0 | 0.00 Modify | 0.19124 | 0.19124 | 0.19124 | 0.0 | 0.62 Other | | 0.0742 | | | 0.24 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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: 975564 ave 975564 max 975564 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 975564 Ave neighs/atom = 487.782 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 = 287.825782334389, Press = -612.400615645213 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.427 | 7.427 | 7.427 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 5000 -7598.7795 -7598.7795 -7671.7835 -7671.7835 282.53288 282.53288 23961.921 23961.921 1205.3632 1205.3632 6000 -7598.607 -7598.607 -7673.1611 -7673.1611 288.53224 288.53224 24017.685 24017.685 -3375.3195 -3375.3195 Loop time of 29.8609 on 1 procs for 1000 steps with 2000 atoms Performance: 2.893 ns/day, 8.295 hours/ns, 33.489 timesteps/s 61.8% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 29.668 | 29.668 | 29.668 | 0.0 | 99.35 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.050187 | 0.050187 | 0.050187 | 0.0 | 0.17 Output | 2.9802e-05 | 2.9802e-05 | 2.9802e-05 | 0.0 | 0.00 Modify | 0.12548 | 0.12548 | 0.12548 | 0.0 | 0.42 Other | | 0.01716 | | | 0.06 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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: 977578 ave 977578 max 977578 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 977578 Ave neighs/atom = 488.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 = 293.343175689042, Press = -27.9542638577618 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.427 | 7.427 | 7.427 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 6000 -7598.607 -7598.607 -7673.1611 -7673.1611 288.53224 288.53224 24017.685 24017.685 -3375.3195 -3375.3195 7000 -7596.1599 -7596.1599 -7671.4536 -7671.4536 291.39422 291.39422 23927.834 23927.834 4345.7981 4345.7981 Loop time of 30.3811 on 1 procs for 1000 steps with 2000 atoms Performance: 2.844 ns/day, 8.439 hours/ns, 32.915 timesteps/s 60.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 | 30.112 | 30.112 | 30.112 | 0.0 | 99.11 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.091955 | 0.091955 | 0.091955 | 0.0 | 0.30 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.16297 | 0.16297 | 0.16297 | 0.0 | 0.54 Other | | 0.01421 | | | 0.05 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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: 973570 ave 973570 max 973570 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 973570 Ave neighs/atom = 486.785 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.099498419811, Press = 7.52811610424339 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.427 | 7.427 | 7.427 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 7000 -7596.1599 -7596.1599 -7671.4536 -7671.4536 291.39422 291.39422 23927.834 23927.834 4345.7981 4345.7981 8000 -7600.5578 -7600.5578 -7672.8696 -7672.8696 279.85435 279.85435 23994.273 23994.273 -1530.5891 -1530.5891 Loop time of 31.6818 on 1 procs for 1000 steps with 2000 atoms Performance: 2.727 ns/day, 8.800 hours/ns, 31.564 timesteps/s 58.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 | 31.451 | 31.451 | 31.451 | 0.0 | 99.27 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.050779 | 0.050779 | 0.050779 | 0.0 | 0.16 Output | 2.6941e-05 | 2.6941e-05 | 2.6941e-05 | 0.0 | 0.00 Modify | 0.14553 | 0.14553 | 0.14553 | 0.0 | 0.46 Other | | 0.03423 | | | 0.11 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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: 979776 ave 979776 max 979776 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 979776 Ave neighs/atom = 489.888 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 = 291.914204154646, Press = -25.5600759344838 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.427 | 7.427 | 7.427 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 8000 -7600.5578 -7600.5578 -7672.8696 -7672.8696 279.85435 279.85435 23994.273 23994.273 -1530.5891 -1530.5891 9000 -7596.8403 -7596.8403 -7672.0101 -7672.0101 290.91495 290.91495 23974.527 23974.527 456.92588 456.92588 Loop time of 36.9947 on 1 procs for 1000 steps with 2000 atoms Performance: 2.335 ns/day, 10.276 hours/ns, 27.031 timesteps/s 49.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 | 36.745 | 36.745 | 36.745 | 0.0 | 99.32 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.070829 | 0.070829 | 0.070829 | 0.0 | 0.19 Output | 2.1935e-05 | 2.1935e-05 | 2.1935e-05 | 0.0 | 0.00 Modify | 0.16492 | 0.16492 | 0.16492 | 0.0 | 0.45 Other | | 0.01416 | | | 0.04 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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: 974618 ave 974618 max 974618 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 974618 Ave neighs/atom = 487.309 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 = 291.774041246773, Press = 3.13302615546238 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.427 | 7.427 | 7.427 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 9000 -7596.8403 -7596.8403 -7672.0101 -7672.0101 290.91495 290.91495 23974.527 23974.527 456.92588 456.92588 10000 -7598.2082 -7598.2082 -7674.5304 -7674.5304 295.37487 295.37487 23975.79 23975.79 -74.05513 -74.05513 Loop time of 37.988 on 1 procs for 1000 steps with 2000 atoms Performance: 2.274 ns/day, 10.552 hours/ns, 26.324 timesteps/s 48.6% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 37.619 | 37.619 | 37.619 | 0.0 | 99.03 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.15055 | 0.15055 | 0.15055 | 0.0 | 0.40 Output | 2.2173e-05 | 2.2173e-05 | 2.2173e-05 | 0.0 | 0.00 Modify | 0.20463 | 0.20463 | 0.20463 | 0.0 | 0.54 Other | | 0.01414 | | | 0.04 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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: 976710 ave 976710 max 976710 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 976710 Ave neighs/atom = 488.355 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.019471828368, Press = -16.5874051326951 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.427 | 7.427 | 7.427 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 10000 -7598.2082 -7598.2082 -7674.5304 -7674.5304 295.37487 295.37487 23975.79 23975.79 -74.05513 -74.05513 11000 -7596.9468 -7596.9468 -7674.178 -7674.178 298.89277 298.89277 23997.031 23997.031 -1822.3676 -1822.3676 Loop time of 36.5506 on 1 procs for 1000 steps with 2000 atoms Performance: 2.364 ns/day, 10.153 hours/ns, 27.359 timesteps/s 50.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 | 36.201 | 36.201 | 36.201 | 0.0 | 99.04 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.13073 | 0.13073 | 0.13073 | 0.0 | 0.36 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.16489 | 0.16489 | 0.16489 | 0.0 | 0.45 Other | | 0.05409 | | | 0.15 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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: 976158 ave 976158 max 976158 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 976158 Ave neighs/atom = 488.079 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 = 291.810793559541, Press = 3.53264892811602 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.427 | 7.427 | 7.427 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 11000 -7596.9468 -7596.9468 -7674.178 -7674.178 298.89277 298.89277 23997.031 23997.031 -1822.3676 -1822.3676 12000 -7597.0142 -7597.0142 -7672.3243 -7672.3243 291.45801 291.45801 23939.753 23939.753 3142.3622 3142.3622 Loop time of 39.5487 on 1 procs for 1000 steps with 2000 atoms Performance: 2.185 ns/day, 10.986 hours/ns, 25.285 timesteps/s 46.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 | 39.183 | 39.183 | 39.183 | 0.0 | 99.08 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.15082 | 0.15082 | 0.15082 | 0.0 | 0.38 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.20051 | 0.20051 | 0.20051 | 0.0 | 0.51 Other | | 0.01412 | | | 0.04 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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: 974196 ave 974196 max 974196 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 974196 Ave neighs/atom = 487.098 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 = 291.851659730548, Press = -7.21029354262978 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.427 | 7.427 | 7.427 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 12000 -7597.0142 -7597.0142 -7672.3243 -7672.3243 291.45801 291.45801 23939.753 23939.753 3142.3622 3142.3622 13000 -7593.9196 -7593.9196 -7671.1608 -7671.1608 298.93171 298.93171 24011.102 24011.102 -2426.7364 -2426.7364 Loop time of 39.2032 on 1 procs for 1000 steps with 2000 atoms Performance: 2.204 ns/day, 10.890 hours/ns, 25.508 timesteps/s 47.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 | 38.901 | 38.901 | 38.901 | 0.0 | 99.23 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.091069 | 0.091069 | 0.091069 | 0.0 | 0.23 Output | 2.6941e-05 | 2.6941e-05 | 2.6941e-05 | 0.0 | 0.00 Modify | 0.17705 | 0.17705 | 0.17705 | 0.0 | 0.45 Other | | 0.03419 | | | 0.09 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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: 979216 ave 979216 max 979216 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 979216 Ave neighs/atom = 489.608 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 = 291.876820794542, Press = -5.51544113743563 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.427 | 7.427 | 7.427 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 13000 -7593.9196 -7593.9196 -7671.1608 -7671.1608 298.93171 298.93171 24011.102 24011.102 -2426.7364 -2426.7364 14000 -7597.3432 -7597.3432 -7673.3041 -7673.3041 293.97652 293.97652 23968.115 23968.115 615.61857 615.61857 Loop time of 41.1002 on 1 procs for 1000 steps with 2000 atoms Performance: 2.102 ns/day, 11.417 hours/ns, 24.331 timesteps/s 44.6% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 40.853 | 40.853 | 40.853 | 0.0 | 99.40 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.090627 | 0.090627 | 0.090627 | 0.0 | 0.22 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.12221 | 0.12221 | 0.12221 | 0.0 | 0.30 Other | | 0.03415 | | | 0.08 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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: 973000 ave 973000 max 973000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 973000 Ave neighs/atom = 486.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 = 292.213885853353, Press = -1.08333678633527 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.427 | 7.427 | 7.427 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 14000 -7597.3432 -7597.3432 -7673.3041 -7673.3041 293.97652 293.97652 23968.115 23968.115 615.61857 615.61857 15000 -7596.9101 -7596.9101 -7671.648 -7671.648 289.24355 289.24355 23978.336 23978.336 86.140662 86.140662 Loop time of 45.0804 on 1 procs for 1000 steps with 2000 atoms Performance: 1.917 ns/day, 12.522 hours/ns, 22.183 timesteps/s 41.1% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 44.679 | 44.679 | 44.679 | 0.0 | 99.11 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.13136 | 0.13136 | 0.13136 | 0.0 | 0.29 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.2252 | 0.2252 | 0.2252 | 0.0 | 0.50 Other | | 0.04433 | | | 0.10 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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: 976642 ave 976642 max 976642 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 976642 Ave neighs/atom = 488.321 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.360169247571, Press = -4.16029586300228 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.427 | 7.427 | 7.427 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 15000 -7596.9101 -7596.9101 -7671.648 -7671.648 289.24355 289.24355 23978.336 23978.336 86.140662 86.140662 16000 -7597.7754 -7597.7754 -7674.2223 -7674.2223 295.85756 295.85756 23982.36 23982.36 -654.57555 -654.57555 Loop time of 46.585 on 1 procs for 1000 steps with 2000 atoms Performance: 1.855 ns/day, 12.940 hours/ns, 21.466 timesteps/s 39.7% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 46.254 | 46.254 | 46.254 | 0.0 | 99.29 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.13103 | 0.13103 | 0.13103 | 0.0 | 0.28 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.18549 | 0.18549 | 0.18549 | 0.0 | 0.40 Other | | 0.01428 | | | 0.03 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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: 976042 ave 976042 max 976042 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 976042 Ave neighs/atom = 488.021 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 292.290354735923, Press = -1.08068748595672 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.427 | 7.427 | 7.427 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 16000 -7597.7754 -7597.7754 -7674.2223 -7674.2223 295.85756 295.85756 23982.36 23982.36 -654.57555 -654.57555 17000 -7596.5691 -7596.5691 -7672.8533 -7672.8533 295.22785 295.22785 23948.676 23948.676 2273.6841 2273.6841 Loop time of 46.2753 on 1 procs for 1000 steps with 2000 atoms Performance: 1.867 ns/day, 12.854 hours/ns, 21.610 timesteps/s 40.0% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 45.866 | 45.866 | 45.866 | 0.0 | 99.11 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.070414 | 0.070414 | 0.070414 | 0.0 | 0.15 Output | 4.7922e-05 | 4.7922e-05 | 4.7922e-05 | 0.0 | 0.00 Modify | 0.26513 | 0.26513 | 0.26513 | 0.0 | 0.57 Other | | 0.07411 | | | 0.16 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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: 975894 ave 975894 max 975894 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 975894 Ave neighs/atom = 487.947 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 292.315104936204, Press = -5.62633506393006 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.427 | 7.427 | 7.427 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 17000 -7596.5691 -7596.5691 -7672.8533 -7672.8533 295.22785 295.22785 23948.676 23948.676 2273.6841 2273.6841 18000 -7597.1794 -7597.1794 -7671.0527 -7671.0527 285.89744 285.89744 24019.994 24019.994 -3323.1637 -3323.1637 Loop time of 45.2109 on 1 procs for 1000 steps with 2000 atoms Performance: 1.911 ns/day, 12.559 hours/ns, 22.119 timesteps/s 40.9% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 44.921 | 44.921 | 44.921 | 0.0 | 99.36 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.13081 | 0.13081 | 0.13081 | 0.0 | 0.29 Output | 2.3127e-05 | 2.3127e-05 | 2.3127e-05 | 0.0 | 0.00 Modify | 0.145 | 0.145 | 0.145 | 0.0 | 0.32 Other | | 0.01433 | | | 0.03 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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: 978472 ave 978472 max 978472 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 978472 Ave neighs/atom = 489.236 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.406060880056, Press = -3.49395522583614 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.427 | 7.427 | 7.427 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 18000 -7597.1794 -7597.1794 -7671.0527 -7671.0527 285.89744 285.89744 24019.994 24019.994 -3323.1637 -3323.1637 19000 -7595.0404 -7595.0404 -7672.7322 -7672.7322 300.67515 300.67515 23956.169 23956.169 1727.1655 1727.1655 Loop time of 45.8087 on 1 procs for 1000 steps with 2000 atoms Performance: 1.886 ns/day, 12.725 hours/ns, 21.830 timesteps/s 40.5% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 45.378 | 45.378 | 45.378 | 0.0 | 99.06 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.13049 | 0.13049 | 0.13049 | 0.0 | 0.28 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.24579 | 0.24579 | 0.24579 | 0.0 | 0.54 Other | | 0.05422 | | | 0.12 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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: 972758 ave 972758 max 972758 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 972758 Ave neighs/atom = 486.379 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.458311778383, Press = 0.664858213211056 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.427 | 7.427 | 7.427 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 19000 -7595.0404 -7595.0404 -7672.7322 -7672.7322 300.67515 300.67515 23956.169 23956.169 1727.1655 1727.1655 20000 -7597.3713 -7597.3713 -7673.4755 -7673.4755 294.53109 294.53109 23983.97 23983.97 -683.49383 -683.49383 Loop time of 42.0702 on 1 procs for 1000 steps with 2000 atoms Performance: 2.054 ns/day, 11.686 hours/ns, 23.770 timesteps/s 43.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 | 41.734 | 41.734 | 41.734 | 0.0 | 99.20 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.070127 | 0.070127 | 0.070127 | 0.0 | 0.17 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.21488 | 0.21488 | 0.21488 | 0.0 | 0.51 Other | | 0.05105 | | | 0.12 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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: 977566 ave 977566 max 977566 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 977566 Ave neighs/atom = 488.783 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.705721192888, Press = -4.12480597067394 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.427 | 7.427 | 7.427 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 20000 -7597.3713 -7597.3713 -7673.4755 -7673.4755 294.53109 294.53109 23983.97 23983.97 -683.49383 -683.49383 21000 -7595.0232 -7595.0232 -7671.1074 -7671.1074 294.4538 294.4538 23982.574 23982.574 -123.24445 -123.24445 Loop time of 41.7211 on 1 procs for 1000 steps with 2000 atoms Performance: 2.071 ns/day, 11.589 hours/ns, 23.969 timesteps/s 44.2% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 41.31 | 41.31 | 41.31 | 0.0 | 99.01 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.11051 | 0.11051 | 0.11051 | 0.0 | 0.26 Output | 2.5034e-05 | 2.5034e-05 | 2.5034e-05 | 0.0 | 0.00 Modify | 0.26681 | 0.26681 | 0.26681 | 0.0 | 0.64 Other | | 0.03404 | | | 0.08 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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: 974634 ave 974634 max 974634 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 974634 Ave neighs/atom = 487.317 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.800179655468, Press = -0.784501251050693 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.427 | 7.427 | 7.427 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 21000 -7595.0232 -7595.0232 -7671.1074 -7671.1074 294.4538 294.4538 23982.574 23982.574 -123.24445 -123.24445 22000 -7597.1901 -7597.1901 -7672.727 -7672.727 292.33557 292.33557 23975.193 23975.193 129.71692 129.71692 Loop time of 41.6818 on 1 procs for 1000 steps with 2000 atoms Performance: 2.073 ns/day, 11.578 hours/ns, 23.991 timesteps/s 44.2% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 41.292 | 41.292 | 41.292 | 0.0 | 99.06 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.13078 | 0.13078 | 0.13078 | 0.0 | 0.31 Output | 8.297e-05 | 8.297e-05 | 8.297e-05 | 0.0 | 0.00 Modify | 0.22483 | 0.22483 | 0.22483 | 0.0 | 0.54 Other | | 0.03417 | | | 0.08 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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: 975006 ave 975006 max 975006 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 975006 Ave neighs/atom = 487.503 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.757163579633, Press = -2.42590746652805 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.427 | 7.427 | 7.427 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 22000 -7597.1901 -7597.1901 -7672.727 -7672.727 292.33557 292.33557 23975.193 23975.193 129.71692 129.71692 23000 -7597.369 -7597.369 -7671.5543 -7671.5543 287.10489 287.10489 23977.437 23977.437 108.43396 108.43396 Loop time of 41.2317 on 1 procs for 1000 steps with 2000 atoms Performance: 2.095 ns/day, 11.453 hours/ns, 24.253 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 | 40.889 | 40.889 | 40.889 | 0.0 | 99.17 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.12154 | 0.12154 | 0.12154 | 0.0 | 0.29 Output | 2.718e-05 | 2.718e-05 | 2.718e-05 | 0.0 | 0.00 Modify | 0.1867 | 0.1867 | 0.1867 | 0.0 | 0.45 Other | | 0.03413 | | | 0.08 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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: 976050 ave 976050 max 976050 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 976050 Ave neighs/atom = 488.025 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 292.788783478689, Press = -2.17174028390529 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.427 | 7.427 | 7.427 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 23000 -7597.369 -7597.369 -7671.5543 -7671.5543 287.10489 287.10489 23977.437 23977.437 108.43396 108.43396 24000 -7596.0247 -7596.0247 -7670.6615 -7670.6615 288.852 288.852 23978.213 23978.213 177.82542 177.82542 Loop time of 42.9231 on 1 procs for 1000 steps with 2000 atoms Performance: 2.013 ns/day, 11.923 hours/ns, 23.297 timesteps/s 43.0% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 42.493 | 42.493 | 42.493 | 0.0 | 99.00 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.15102 | 0.15102 | 0.15102 | 0.0 | 0.35 Output | 2.8849e-05 | 2.8849e-05 | 2.8849e-05 | 0.0 | 0.00 Modify | 0.24524 | 0.24524 | 0.24524 | 0.0 | 0.57 Other | | 0.03426 | | | 0.08 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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: 975554 ave 975554 max 975554 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 975554 Ave neighs/atom = 487.777 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.733176351212, Press = -1.73544303685708 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.427 | 7.427 | 7.427 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 24000 -7596.0247 -7596.0247 -7670.6615 -7670.6615 288.852 288.852 23978.213 23978.213 177.82542 177.82542 25000 -7601.2547 -7601.2547 -7676.0584 -7676.0584 289.49815 289.49815 23974.54 23974.54 -399.68617 -399.68617 Loop time of 42.8638 on 1 procs for 1000 steps with 2000 atoms Performance: 2.016 ns/day, 11.907 hours/ns, 23.330 timesteps/s 43.0% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 42.488 | 42.488 | 42.488 | 0.0 | 99.12 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.11057 | 0.11057 | 0.11057 | 0.0 | 0.26 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.25114 | 0.25114 | 0.25114 | 0.0 | 0.59 Other | | 0.01422 | | | 0.03 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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: 975498 ave 975498 max 975498 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 975498 Ave neighs/atom = 487.749 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.680021009547, Press = -2.4031338069484 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.427 | 7.427 | 7.427 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 25000 -7601.2547 -7601.2547 -7676.0584 -7676.0584 289.49815 289.49815 23974.54 23974.54 -399.68617 -399.68617 26000 -7594.162 -7594.162 -7671.241 -7671.241 298.30364 298.30364 23986.068 23986.068 -465.13461 -465.13461 Loop time of 42.6585 on 1 procs for 1000 steps with 2000 atoms Performance: 2.025 ns/day, 11.850 hours/ns, 23.442 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 | 42.349 | 42.349 | 42.349 | 0.0 | 99.27 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.11075 | 0.11075 | 0.11075 | 0.0 | 0.26 Output | 2.8849e-05 | 2.8849e-05 | 2.8849e-05 | 0.0 | 0.00 Modify | 0.18437 | 0.18437 | 0.18437 | 0.0 | 0.43 Other | | 0.01419 | | | 0.03 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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: 975250 ave 975250 max 975250 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 975250 Ave neighs/atom = 487.625 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.65254633687, Press = -0.781839982015092 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.427 | 7.427 | 7.427 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 26000 -7594.162 -7594.162 -7671.241 -7671.241 298.30364 298.30364 23986.068 23986.068 -465.13461 -465.13461 27000 -7598.7762 -7598.7762 -7674.2872 -7674.2872 292.23517 292.23517 23955.282 23955.282 1518.1623 1518.1623 Loop time of 43.7092 on 1 procs for 1000 steps with 2000 atoms Performance: 1.977 ns/day, 12.141 hours/ns, 22.878 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 | 43.418 | 43.418 | 43.418 | 0.0 | 99.33 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.090925 | 0.090925 | 0.090925 | 0.0 | 0.21 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.16561 | 0.16561 | 0.16561 | 0.0 | 0.38 Other | | 0.03424 | | | 0.08 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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: 975778 ave 975778 max 975778 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 975778 Ave neighs/atom = 487.889 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.711970833159, Press = -2.88260435072456 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.427 | 7.427 | 7.427 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 27000 -7598.7762 -7598.7762 -7674.2872 -7674.2872 292.23517 292.23517 23955.282 23955.282 1518.1623 1518.1623 28000 -7595.9794 -7595.9794 -7669.6486 -7669.6486 285.10775 285.10775 24013.77 24013.77 -2469.6188 -2469.6188 Loop time of 42.9224 on 1 procs for 1000 steps with 2000 atoms Performance: 2.013 ns/day, 11.923 hours/ns, 23.298 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 | 42.579 | 42.579 | 42.579 | 0.0 | 99.20 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.092142 | 0.092142 | 0.092142 | 0.0 | 0.21 Output | 2.8133e-05 | 2.8133e-05 | 2.8133e-05 | 0.0 | 0.00 Modify | 0.23694 | 0.23694 | 0.23694 | 0.0 | 0.55 Other | | 0.01418 | | | 0.03 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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: 977644 ave 977644 max 977644 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 977644 Ave neighs/atom = 488.822 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.784347072311, Press = -2.33122696326408 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.427 | 7.427 | 7.427 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 28000 -7595.9794 -7595.9794 -7669.6486 -7669.6486 285.10775 285.10775 24013.77 24013.77 -2469.6188 -2469.6188 29000 -7596.2467 -7596.2467 -7672.7045 -7672.7045 295.89949 295.89949 23946.287 23946.287 2556.4423 2556.4423 Loop time of 43.6218 on 1 procs for 1000 steps with 2000 atoms Performance: 1.981 ns/day, 12.117 hours/ns, 22.924 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 | 43.183 | 43.183 | 43.183 | 0.0 | 98.99 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.11067 | 0.11067 | 0.11067 | 0.0 | 0.25 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.26679 | 0.26679 | 0.26679 | 0.0 | 0.61 Other | | 0.06108 | | | 0.14 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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: 972728 ave 972728 max 972728 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 972728 Ave neighs/atom = 486.364 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.848667679357, Press = 0.150484698185344 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.427 | 7.427 | 7.427 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 29000 -7596.2467 -7596.2467 -7672.7045 -7672.7045 295.89949 295.89949 23946.287 23946.287 2556.4423 2556.4423 30000 -7596.054 -7596.054 -7671.7444 -7671.7444 292.92973 292.92973 23989.641 23989.641 -867.84405 -867.84405 Loop time of 42.9489 on 1 procs for 1000 steps with 2000 atoms Performance: 2.012 ns/day, 11.930 hours/ns, 23.283 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 | 42.479 | 42.479 | 42.479 | 0.0 | 98.91 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.070539 | 0.070539 | 0.070539 | 0.0 | 0.16 Output | 2.3127e-05 | 2.3127e-05 | 2.3127e-05 | 0.0 | 0.00 Modify | 0.36489 | 0.36489 | 0.36489 | 0.0 | 0.85 Other | | 0.03403 | | | 0.08 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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: 978346 ave 978346 max 978346 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 978346 Ave neighs/atom = 489.173 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.98076666569, Press = -3.28516303590052 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.427 | 7.427 | 7.427 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 30000 -7596.054 -7596.054 -7671.7444 -7671.7444 292.92973 292.92973 23989.641 23989.641 -867.84405 -867.84405 31000 -7594.8383 -7594.8383 -7672.3002 -7672.3002 299.78561 299.78561 23980.444 23980.444 -88.513362 -88.513362 Loop time of 41.6083 on 1 procs for 1000 steps with 2000 atoms Performance: 2.077 ns/day, 11.558 hours/ns, 24.034 timesteps/s 44.6% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 41.29 | 41.29 | 41.29 | 0.0 | 99.23 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.070243 | 0.070243 | 0.070243 | 0.0 | 0.17 Output | 2.8133e-05 | 2.8133e-05 | 2.8133e-05 | 0.0 | 0.00 Modify | 0.23445 | 0.23445 | 0.23445 | 0.0 | 0.56 Other | | 0.01392 | | | 0.03 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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: 974662 ave 974662 max 974662 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 974662 Ave neighs/atom = 487.331 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.02449838518, Press = -0.825238173477556 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.427 | 7.427 | 7.427 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 31000 -7594.8383 -7594.8383 -7672.3002 -7672.3002 299.78561 299.78561 23980.444 23980.444 -88.513362 -88.513362 32000 -7597.0069 -7597.0069 -7674.5704 -7674.5704 300.17897 300.17897 23965.725 23965.725 729.48881 729.48881 Loop time of 42.7211 on 1 procs for 1000 steps with 2000 atoms Performance: 2.022 ns/day, 11.867 hours/ns, 23.408 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 | 42.342 | 42.342 | 42.342 | 0.0 | 99.11 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.15027 | 0.15027 | 0.15027 | 0.0 | 0.35 Output | 6.1989e-05 | 6.1989e-05 | 6.1989e-05 | 0.0 | 0.00 Modify | 0.19434 | 0.19434 | 0.19434 | 0.0 | 0.45 Other | | 0.03432 | | | 0.08 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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: 975876 ave 975876 max 975876 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 975876 Ave neighs/atom = 487.938 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.048594598557, Press = -1.7706899738098 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.427 | 7.427 | 7.427 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 32000 -7597.0069 -7597.0069 -7674.5704 -7674.5704 300.17897 300.17897 23965.725 23965.725 729.48881 729.48881 33000 -7596.1559 -7596.1559 -7671.9512 -7671.9512 293.33564 293.33564 23993.828 23993.828 -1240.7259 -1240.7259 Loop time of 40.5521 on 1 procs for 1000 steps with 2000 atoms Performance: 2.131 ns/day, 11.264 hours/ns, 24.660 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 | 40.185 | 40.185 | 40.185 | 0.0 | 99.09 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.17057 | 0.17057 | 0.17057 | 0.0 | 0.42 Output | 2.3127e-05 | 2.3127e-05 | 2.3127e-05 | 0.0 | 0.00 Modify | 0.18271 | 0.18271 | 0.18271 | 0.0 | 0.45 Other | | 0.01404 | | | 0.03 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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: 976506 ave 976506 max 976506 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 976506 Ave neighs/atom = 488.253 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.054871685596, Press = -2.44126603050984 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.427 | 7.427 | 7.427 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 33000 -7596.1559 -7596.1559 -7671.9512 -7671.9512 293.33564 293.33564 23993.828 23993.828 -1240.7259 -1240.7259 34000 -7593.025 -7593.025 -7672.6082 -7672.6082 307.9951 307.9951 23962.849 23962.849 1324.8728 1324.8728 Loop time of 41.0759 on 1 procs for 1000 steps with 2000 atoms Performance: 2.103 ns/day, 11.410 hours/ns, 24.345 timesteps/s 44.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 | 40.796 | 40.796 | 40.796 | 0.0 | 99.32 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.10086 | 0.10086 | 0.10086 | 0.0 | 0.25 Output | 2.4796e-05 | 2.4796e-05 | 2.4796e-05 | 0.0 | 0.00 Modify | 0.16477 | 0.16477 | 0.16477 | 0.0 | 0.40 Other | | 0.01403 | | | 0.03 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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: 974726 ave 974726 max 974726 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 974726 Ave neighs/atom = 487.363 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.101448394669, Press = 0.388870702543741 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.427 | 7.427 | 7.427 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 34000 -7593.025 -7593.025 -7672.6082 -7672.6082 307.9951 307.9951 23962.849 23962.849 1324.8728 1324.8728 35000 -7598.1697 -7598.1697 -7672.6099 -7672.6099 288.09123 288.09123 23986.622 23986.622 -815.84544 -815.84544 Loop time of 41.1384 on 1 procs for 1000 steps with 2000 atoms Performance: 2.100 ns/day, 11.427 hours/ns, 24.308 timesteps/s 45.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 | 40.869 | 40.869 | 40.869 | 0.0 | 99.34 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.090506 | 0.090506 | 0.090506 | 0.0 | 0.22 Output | 3.4094e-05 | 3.4094e-05 | 3.4094e-05 | 0.0 | 0.00 Modify | 0.16505 | 0.16505 | 0.16505 | 0.0 | 0.40 Other | | 0.01416 | | | 0.03 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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: 977178 ave 977178 max 977178 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 977178 Ave neighs/atom = 488.589 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.160459027515, Press = -4.39935393080176 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.427 | 7.427 | 7.427 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 35000 -7598.1697 -7598.1697 -7672.6099 -7672.6099 288.09123 288.09123 23986.622 23986.622 -815.84544 -815.84544 36000 -7594.4112 -7594.4112 -7673.0162 -7673.0162 304.20956 304.20956 23991.932 23991.932 -1127.363 -1127.363 Loop time of 40.387 on 1 procs for 1000 steps with 2000 atoms Performance: 2.139 ns/day, 11.219 hours/ns, 24.760 timesteps/s 45.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 | 40.047 | 40.047 | 40.047 | 0.0 | 99.16 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.13037 | 0.13037 | 0.13037 | 0.0 | 0.32 Output | 3.0994e-05 | 3.0994e-05 | 3.0994e-05 | 0.0 | 0.00 Modify | 0.195 | 0.195 | 0.195 | 0.0 | 0.48 Other | | 0.01447 | | | 0.04 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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: 974976 ave 974976 max 974976 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 974976 Ave neighs/atom = 487.488 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.223921188159, Press = 0.799977912511153 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.427 | 7.427 | 7.427 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 36000 -7594.4112 -7594.4112 -7673.0162 -7673.0162 304.20956 304.20956 23991.932 23991.932 -1127.363 -1127.363 37000 -7598.7106 -7598.7106 -7673.0974 -7673.0974 287.88489 287.88489 23956.42 23956.42 1510.245 1510.245 Loop time of 40.1443 on 1 procs for 1000 steps with 2000 atoms Performance: 2.152 ns/day, 11.151 hours/ns, 24.910 timesteps/s 46.0% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 39.745 | 39.745 | 39.745 | 0.0 | 99.00 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.2008 | 0.2008 | 0.2008 | 0.0 | 0.50 Output | 2.0981e-05 | 2.0981e-05 | 2.0981e-05 | 0.0 | 0.00 Modify | 0.16471 | 0.16471 | 0.16471 | 0.0 | 0.41 Other | | 0.03408 | | | 0.08 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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: 975398 ave 975398 max 975398 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 975398 Ave neighs/atom = 487.699 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.263651809746, Press = -2.04975781833199 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.427 | 7.427 | 7.427 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 37000 -7598.7106 -7598.7106 -7673.0974 -7673.0974 287.88489 287.88489 23956.42 23956.42 1510.245 1510.245 38000 -7597.7263 -7597.7263 -7673.5268 -7673.5268 293.35594 293.35594 23996.584 23996.584 -1665.7764 -1665.7764 Loop time of 38.8253 on 1 procs for 1000 steps with 2000 atoms Performance: 2.225 ns/day, 10.785 hours/ns, 25.756 timesteps/s 47.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 | 38.575 | 38.575 | 38.575 | 0.0 | 99.35 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.0507 | 0.0507 | 0.0507 | 0.0 | 0.13 Output | 2.2888e-05 | 2.2888e-05 | 2.2888e-05 | 0.0 | 0.00 Modify | 0.18595 | 0.18595 | 0.18595 | 0.0 | 0.48 Other | | 0.01405 | | | 0.04 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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: 977358 ave 977358 max 977358 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 977358 Ave neighs/atom = 488.679 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 293.266377248615, Press = -1.4767608929678 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.427 | 7.427 | 7.427 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 38000 -7597.7263 -7597.7263 -7673.5268 -7673.5268 293.35594 293.35594 23996.584 23996.584 -1665.7764 -1665.7764 39000 -7597.9718 -7597.9718 -7672.5823 -7672.5823 288.75051 288.75051 23965.088 23965.088 979.81194 979.81194 Loop time of 41.2217 on 1 procs for 1000 steps with 2000 atoms Performance: 2.096 ns/day, 11.450 hours/ns, 24.259 timesteps/s 44.7% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 40.906 | 40.906 | 40.906 | 0.0 | 99.23 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.10064 | 0.10064 | 0.10064 | 0.0 | 0.24 Output | 0.020064 | 0.020064 | 0.020064 | 0.0 | 0.05 Modify | 0.16096 | 0.16096 | 0.16096 | 0.0 | 0.39 Other | | 0.03412 | | | 0.08 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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: 975086 ave 975086 max 975086 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 975086 Ave neighs/atom = 487.543 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.165673417381, Press = -0.847723268162347 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.427 | 7.427 | 7.427 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 39000 -7597.9718 -7597.9718 -7672.5823 -7672.5823 288.75051 288.75051 23965.088 23965.088 979.81194 979.81194 40000 -7597.9307 -7597.9307 -7673.2465 -7673.2465 291.47993 291.47993 23976.011 23976.011 55.995454 55.995454 Loop time of 40.0527 on 1 procs for 1000 steps with 2000 atoms Performance: 2.157 ns/day, 11.126 hours/ns, 24.967 timesteps/s 46.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 | 39.784 | 39.784 | 39.784 | 0.0 | 99.33 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.050446 | 0.050446 | 0.050446 | 0.0 | 0.13 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.15452 | 0.15452 | 0.15452 | 0.0 | 0.39 Other | | 0.06413 | | | 0.16 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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: 977254 ave 977254 max 977254 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 977254 Ave neighs/atom = 488.627 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.15190549146, Press = -2.22968840415995 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.427 | 7.427 | 7.427 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 40000 -7597.9307 -7597.9307 -7673.2465 -7673.2465 291.47993 291.47993 23976.011 23976.011 55.995454 55.995454 41000 -7594.1112 -7594.1112 -7671.3915 -7671.3915 299.08271 299.08271 23994.542 23994.542 -1103.7873 -1103.7873 Loop time of 41.5388 on 1 procs for 1000 steps with 2000 atoms Performance: 2.080 ns/day, 11.539 hours/ns, 24.074 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 | 41.259 | 41.259 | 41.259 | 0.0 | 99.33 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.13061 | 0.13061 | 0.13061 | 0.0 | 0.31 Output | 2.8133e-05 | 2.8133e-05 | 2.8133e-05 | 0.0 | 0.00 Modify | 0.13493 | 0.13493 | 0.13493 | 0.0 | 0.32 Other | | 0.01385 | | | 0.03 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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: 976390 ave 976390 max 976390 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 976390 Ave neighs/atom = 488.195 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.109228139005, Press = -1.23394789651112 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.427 | 7.427 | 7.427 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 41000 -7594.1112 -7594.1112 -7671.3915 -7671.3915 299.08271 299.08271 23994.542 23994.542 -1103.7873 -1103.7873 42000 -7598.9512 -7598.9512 -7674.0351 -7674.0351 290.58217 290.58217 23957.588 23957.588 1419.2822 1419.2822 Loop time of 40.906 on 1 procs for 1000 steps with 2000 atoms Performance: 2.112 ns/day, 11.363 hours/ns, 24.446 timesteps/s 45.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 | 40.657 | 40.657 | 40.657 | 0.0 | 99.39 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.11034 | 0.11034 | 0.11034 | 0.0 | 0.27 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.12493 | 0.12493 | 0.12493 | 0.0 | 0.31 Other | | 0.01403 | | | 0.03 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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: 974658 ave 974658 max 974658 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 974658 Ave neighs/atom = 487.329 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.121921608765, Press = -0.636089372179586 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.427 | 7.427 | 7.427 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 42000 -7598.9512 -7598.9512 -7674.0351 -7674.0351 290.58217 290.58217 23957.588 23957.588 1419.2822 1419.2822 43000 -7597.4019 -7597.4019 -7672.5018 -7672.5018 290.64435 290.64435 24006.533 24006.533 -2304.743 -2304.743 Loop time of 40.9306 on 1 procs for 1000 steps with 2000 atoms Performance: 2.111 ns/day, 11.370 hours/ns, 24.432 timesteps/s 45.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 | 40.652 | 40.652 | 40.652 | 0.0 | 99.32 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.11043 | 0.11043 | 0.11043 | 0.0 | 0.27 Output | 2.3127e-05 | 2.3127e-05 | 2.3127e-05 | 0.0 | 0.00 Modify | 0.15409 | 0.15409 | 0.15409 | 0.0 | 0.38 Other | | 0.01398 | | | 0.03 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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: 978426 ave 978426 max 978426 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 978426 Ave neighs/atom = 489.213 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.122196000599, Press = -3.42249748985456 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.427 | 7.427 | 7.427 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 43000 -7597.4019 -7597.4019 -7672.5018 -7672.5018 290.64435 290.64435 24006.533 24006.533 -2304.743 -2304.743 44000 -7595.5953 -7595.5953 -7673.0448 -7673.0448 299.73756 299.73756 23975.21 23975.21 176.60492 176.60492 Loop time of 40.0901 on 1 procs for 1000 steps with 2000 atoms Performance: 2.155 ns/day, 11.136 hours/ns, 24.944 timesteps/s 46.0% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 39.74 | 39.74 | 39.74 | 0.0 | 99.13 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.090897 | 0.090897 | 0.090897 | 0.0 | 0.23 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.21522 | 0.21522 | 0.21522 | 0.0 | 0.54 Other | | 0.04405 | | | 0.11 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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: 974172 ave 974172 max 974172 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 974172 Ave neighs/atom = 487.086 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.062520282292, Press = 1.42383100673272 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.427 | 7.427 | 7.427 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 44000 -7595.5953 -7595.5953 -7673.0448 -7673.0448 299.73756 299.73756 23975.21 23975.21 176.60492 176.60492 45000 -7595.3626 -7595.3626 -7672.4661 -7672.4661 298.39858 298.39858 23963.973 23963.973 1247.8115 1247.8115 Loop time of 40.8744 on 1 procs for 1000 steps with 2000 atoms Performance: 2.114 ns/day, 11.354 hours/ns, 24.465 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 | 40.564 | 40.564 | 40.564 | 0.0 | 99.24 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.070606 | 0.070606 | 0.070606 | 0.0 | 0.17 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.22505 | 0.22505 | 0.22505 | 0.0 | 0.55 Other | | 0.01429 | | | 0.03 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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: 976224 ave 976224 max 976224 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 976224 Ave neighs/atom = 488.112 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.024794307894, Press = -2.28082779519604 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.427 | 7.427 | 7.427 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 45000 -7595.3626 -7595.3626 -7672.4661 -7672.4661 298.39858 298.39858 23963.973 23963.973 1247.8115 1247.8115 46000 -7600.6536 -7600.6536 -7675.1832 -7675.1832 288.43714 288.43714 23988.737 23988.737 -1386.0424 -1386.0424 Loop time of 38.6214 on 1 procs for 1000 steps with 2000 atoms Performance: 2.237 ns/day, 10.728 hours/ns, 25.892 timesteps/s 47.9% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 38.232 | 38.232 | 38.232 | 0.0 | 98.99 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.15058 | 0.15058 | 0.15058 | 0.0 | 0.39 Output | 2.4796e-05 | 2.4796e-05 | 2.4796e-05 | 0.0 | 0.00 Modify | 0.20431 | 0.20431 | 0.20431 | 0.0 | 0.53 Other | | 0.03416 | | | 0.09 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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: 977440 ave 977440 max 977440 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 977440 Ave neighs/atom = 488.72 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.997428922874, Press = -0.579237500112358 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.427 | 7.427 | 7.427 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 46000 -7600.6536 -7600.6536 -7675.1832 -7675.1832 288.43714 288.43714 23988.737 23988.737 -1386.0424 -1386.0424 47000 -7596.186 -7596.186 -7672.8057 -7672.8057 296.52609 296.52609 23959.371 23959.371 1495.1084 1495.1084 Loop time of 38.4129 on 1 procs for 1000 steps with 2000 atoms Performance: 2.249 ns/day, 10.670 hours/ns, 26.033 timesteps/s 48.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 | 38.044 | 38.044 | 38.044 | 0.0 | 99.04 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.13078 | 0.13078 | 0.13078 | 0.0 | 0.34 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.20367 | 0.20367 | 0.20367 | 0.0 | 0.53 Other | | 0.03407 | | | 0.09 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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: 975160 ave 975160 max 975160 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 975160 Ave neighs/atom = 487.58 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.9619968069, Press = -0.993097737419816 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.427 | 7.427 | 7.427 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 47000 -7596.186 -7596.186 -7672.8057 -7672.8057 296.52609 296.52609 23959.371 23959.371 1495.1084 1495.1084 48000 -7602.4302 -7602.4302 -7675.239 -7675.239 281.77756 281.77756 23991.31 23991.31 -1641.166 -1641.166 Loop time of 35.44 on 1 procs for 1000 steps with 2000 atoms Performance: 2.438 ns/day, 9.844 hours/ns, 28.217 timesteps/s 52.3% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 35.149 | 35.149 | 35.149 | 0.0 | 99.18 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.090968 | 0.090968 | 0.090968 | 0.0 | 0.26 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.18556 | 0.18556 | 0.18556 | 0.0 | 0.52 Other | | 0.01399 | | | 0.04 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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: 977338 ave 977338 max 977338 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 977338 Ave neighs/atom = 488.669 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.918634540639, Press = -1.74347104456455 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.427 | 7.427 | 7.427 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 48000 -7602.4302 -7602.4302 -7675.239 -7675.239 281.77756 281.77756 23991.31 23991.31 -1641.166 -1641.166 49000 -7596.1736 -7596.1736 -7671.1249 -7671.1249 290.06917 290.06917 23963.326 23963.326 1486.0502 1486.0502 Loop time of 36.9759 on 1 procs for 1000 steps with 2000 atoms Performance: 2.337 ns/day, 10.271 hours/ns, 27.045 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 | 36.673 | 36.673 | 36.673 | 0.0 | 99.18 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.13036 | 0.13036 | 0.13036 | 0.0 | 0.35 Output | 2.3842e-05 | 2.3842e-05 | 2.3842e-05 | 0.0 | 0.00 Modify | 0.15877 | 0.15877 | 0.15877 | 0.0 | 0.43 Other | | 0.01421 | | | 0.04 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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: 975448 ave 975448 max 975448 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 975448 Ave neighs/atom = 487.724 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.872104501893, Press = 0.162171101048412 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.427 | 7.427 | 7.427 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 49000 -7596.1736 -7596.1736 -7671.1249 -7671.1249 290.06917 290.06917 23963.326 23963.326 1486.0502 1486.0502 50000 -7601.4532 -7601.4532 -7675.6795 -7675.6795 287.26375 287.26375 23968.644 23968.644 193.8135 193.8135 Loop time of 34.2325 on 1 procs for 1000 steps with 2000 atoms Performance: 2.524 ns/day, 9.509 hours/ns, 29.212 timesteps/s 54.0% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 33.91 | 33.91 | 33.91 | 0.0 | 99.06 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.084147 | 0.084147 | 0.084147 | 0.0 | 0.25 Output | 2.8849e-05 | 2.8849e-05 | 2.8849e-05 | 0.0 | 0.00 Modify | 0.16437 | 0.16437 | 0.16437 | 0.0 | 0.48 Other | | 0.07404 | | | 0.22 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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: 977122 ave 977122 max 977122 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 977122 Ave neighs/atom = 488.561 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.841961469347, Press = -2.72872861602515 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.427 | 7.427 | 7.427 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 50000 -7601.4532 -7601.4532 -7675.6795 -7675.6795 287.26375 287.26375 23968.644 23968.644 193.8135 193.8135 51000 -7594.9815 -7594.9815 -7671.4867 -7671.4867 296.08286 296.08286 23997.493 23997.493 -1347.8729 -1347.8729 Loop time of 35.9568 on 1 procs for 1000 steps with 2000 atoms Performance: 2.403 ns/day, 9.988 hours/ns, 27.811 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 | 35.69 | 35.69 | 35.69 | 0.0 | 99.26 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.070083 | 0.070083 | 0.070083 | 0.0 | 0.19 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.18269 | 0.18269 | 0.18269 | 0.0 | 0.51 Other | | 0.0143 | | | 0.04 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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: 976484 ave 976484 max 976484 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 976484 Ave neighs/atom = 488.242 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.808147604361, Press = 0.390058294003831 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.427 | 7.427 | 7.427 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 51000 -7594.9815 -7594.9815 -7671.4867 -7671.4867 296.08286 296.08286 23997.493 23997.493 -1347.8729 -1347.8729 52000 -7596.9081 -7596.9081 -7673.8118 -7673.8118 297.6253 297.6253 23954.65 23954.65 1759.5563 1759.5563 Loop time of 31.5531 on 1 procs for 1000 steps with 2000 atoms Performance: 2.738 ns/day, 8.765 hours/ns, 31.693 timesteps/s 58.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 | 31.321 | 31.321 | 31.321 | 0.0 | 99.27 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.071038 | 0.071038 | 0.071038 | 0.0 | 0.23 Output | 2.1935e-05 | 2.1935e-05 | 2.1935e-05 | 0.0 | 0.00 Modify | 0.14498 | 0.14498 | 0.14498 | 0.0 | 0.46 Other | | 0.01557 | | | 0.05 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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: 975010 ave 975010 max 975010 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 975010 Ave neighs/atom = 487.505 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.803965317926, Press = -1.85251549428974 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.427 | 7.427 | 7.427 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 52000 -7596.9081 -7596.9081 -7673.8118 -7673.8118 297.6253 297.6253 23954.65 23954.65 1759.5563 1759.5563 53000 -7595.2403 -7595.2403 -7672.0201 -7672.0201 297.14546 297.14546 24010.553 24010.553 -2493.6486 -2493.6486 Loop time of 34.4373 on 1 procs for 1000 steps with 2000 atoms Performance: 2.509 ns/day, 9.566 hours/ns, 29.038 timesteps/s 53.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 | 34.169 | 34.169 | 34.169 | 0.0 | 99.22 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.090707 | 0.090707 | 0.090707 | 0.0 | 0.26 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.12408 | 0.12408 | 0.12408 | 0.0 | 0.36 Other | | 0.054 | | | 0.16 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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: 978008 ave 978008 max 978008 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 978008 Ave neighs/atom = 489.004 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.821772647483, Press = -0.637350685040962 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.427 | 7.427 | 7.427 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 53000 -7595.2403 -7595.2403 -7672.0201 -7672.0201 297.14546 297.14546 24010.553 24010.553 -2493.6486 -2493.6486 54000 -7597.8997 -7597.8997 -7673.6841 -7673.6841 293.29362 293.29362 23950.324 23950.324 2078.3489 2078.3489 Loop time of 32.2313 on 1 procs for 1000 steps with 2000 atoms Performance: 2.681 ns/day, 8.953 hours/ns, 31.026 timesteps/s 57.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 | 32.022 | 32.022 | 32.022 | 0.0 | 99.35 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.070102 | 0.070102 | 0.070102 | 0.0 | 0.22 Output | 3.1233e-05 | 3.1233e-05 | 3.1233e-05 | 0.0 | 0.00 Modify | 0.10489 | 0.10489 | 0.10489 | 0.0 | 0.33 Other | | 0.03394 | | | 0.11 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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: 973002 ave 973002 max 973002 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 973002 Ave neighs/atom = 486.501 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.823807656695, Press = -0.629816180974259 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.427 | 7.427 | 7.427 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 54000 -7597.8997 -7597.8997 -7673.6841 -7673.6841 293.29362 293.29362 23950.324 23950.324 2078.3489 2078.3489 55000 -7599.0648 -7599.0648 -7673.4268 -7673.4268 287.78862 287.78862 23985.352 23985.352 -801.43614 -801.43614 Loop time of 29.5635 on 1 procs for 1000 steps with 2000 atoms Performance: 2.923 ns/day, 8.212 hours/ns, 33.826 timesteps/s 62.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 | 29.354 | 29.354 | 29.354 | 0.0 | 99.29 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.09025 | 0.09025 | 0.09025 | 0.0 | 0.31 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.10564 | 0.10564 | 0.10564 | 0.0 | 0.36 Other | | 0.014 | | | 0.05 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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: 978344 ave 978344 max 978344 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 978344 Ave neighs/atom = 489.172 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.8080155086, Press = -1.35685942720285 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.427 | 7.427 | 7.427 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 55000 -7599.0648 -7599.0648 -7673.4268 -7673.4268 287.78862 287.78862 23985.352 23985.352 -801.43614 -801.43614 56000 -7594.8763 -7594.8763 -7671.9887 -7671.9887 298.43287 298.43287 23978.693 23978.693 8.4236692 8.4236692 Loop time of 29.2572 on 1 procs for 1000 steps with 2000 atoms Performance: 2.953 ns/day, 8.127 hours/ns, 34.180 timesteps/s 63.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 | 29.027 | 29.027 | 29.027 | 0.0 | 99.21 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.070626 | 0.070626 | 0.070626 | 0.0 | 0.24 Output | 2.5034e-05 | 2.5034e-05 | 2.5034e-05 | 0.0 | 0.00 Modify | 0.12556 | 0.12556 | 0.12556 | 0.0 | 0.43 Other | | 0.03417 | | | 0.12 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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: 975312 ave 975312 max 975312 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 975312 Ave neighs/atom = 487.656 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.772063681724, Press = -0.604486039195421 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.427 | 7.427 | 7.427 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 56000 -7594.8763 -7594.8763 -7671.9887 -7671.9887 298.43287 298.43287 23978.693 23978.693 8.4236692 8.4236692 57000 -7599.9879 -7599.9879 -7674.4245 -7674.4245 288.07725 288.07725 23968.194 23968.194 336.14684 336.14684 Loop time of 30.4231 on 1 procs for 1000 steps with 2000 atoms Performance: 2.840 ns/day, 8.451 hours/ns, 32.870 timesteps/s 61.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 | 30.153 | 30.153 | 30.153 | 0.0 | 99.11 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.070384 | 0.070384 | 0.070384 | 0.0 | 0.23 Output | 2.8133e-05 | 2.8133e-05 | 2.8133e-05 | 0.0 | 0.00 Modify | 0.14523 | 0.14523 | 0.14523 | 0.0 | 0.48 Other | | 0.0541 | | | 0.18 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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: 975684 ave 975684 max 975684 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 975684 Ave neighs/atom = 487.842 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.752803225197, Press = -1.08312276197516 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.427 | 7.427 | 7.427 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 57000 -7599.9879 -7599.9879 -7674.4245 -7674.4245 288.07725 288.07725 23968.194 23968.194 336.14684 336.14684 58000 -7595.7484 -7595.7484 -7669.2159 -7669.2159 284.32679 284.32679 24007.16 24007.16 -1867.5103 -1867.5103 Loop time of 28.2926 on 1 procs for 1000 steps with 2000 atoms Performance: 3.054 ns/day, 7.859 hours/ns, 35.345 timesteps/s 65.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 | 28.044 | 28.044 | 28.044 | 0.0 | 99.12 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.090254 | 0.090254 | 0.090254 | 0.0 | 0.32 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.12468 | 0.12468 | 0.12468 | 0.0 | 0.44 Other | | 0.03402 | | | 0.12 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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: 976660 ave 976660 max 976660 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 976660 Ave neighs/atom = 488.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 = 292.770988992954, Press = -1.058334815111 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.427 | 7.427 | 7.427 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 58000 -7595.7484 -7595.7484 -7669.2159 -7669.2159 284.32679 284.32679 24007.16 24007.16 -1867.5103 -1867.5103 59000 -7593.0627 -7593.0627 -7670.1435 -7670.1435 298.3106 298.3106 23949.511 23949.511 2828.9794 2828.9794 Loop time of 23.7861 on 1 procs for 1000 steps with 2000 atoms Performance: 3.632 ns/day, 6.607 hours/ns, 42.041 timesteps/s 77.2% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 23.582 | 23.582 | 23.582 | 0.0 | 99.14 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.060551 | 0.060551 | 0.060551 | 0.0 | 0.25 Output | 2.8133e-05 | 2.8133e-05 | 2.8133e-05 | 0.0 | 0.00 Modify | 0.088165 | 0.088165 | 0.088165 | 0.0 | 0.37 Other | | 0.05518 | | | 0.23 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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: 974178 ave 974178 max 974178 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 974178 Ave neighs/atom = 487.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 = 292.793720824393, Press = -0.120442776558466 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.427 | 7.427 | 7.427 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 59000 -7593.0627 -7593.0627 -7670.1435 -7670.1435 298.3106 298.3106 23949.511 23949.511 2828.9794 2828.9794 60000 -7597.6207 -7597.6207 -7672.0849 -7672.0849 288.18435 288.18435 24001.738 24001.738 -1909.8564 -1909.8564 Loop time of 25.337 on 1 procs for 1000 steps with 2000 atoms Performance: 3.410 ns/day, 7.038 hours/ns, 39.468 timesteps/s 73.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 | 25.157 | 25.157 | 25.157 | 0.0 | 99.29 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.050349 | 0.050349 | 0.050349 | 0.0 | 0.20 Output | 2.8133e-05 | 2.8133e-05 | 2.8133e-05 | 0.0 | 0.00 Modify | 0.095268 | 0.095268 | 0.095268 | 0.0 | 0.38 Other | | 0.03412 | | | 0.13 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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: 977842 ave 977842 max 977842 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 977842 Ave neighs/atom = 488.921 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.842419247381, Press = -2.17935021089145 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.427 | 7.427 | 7.427 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 60000 -7597.6207 -7597.6207 -7672.0849 -7672.0849 288.18435 288.18435 24001.738 24001.738 -1909.8564 -1909.8564 61000 -7591.6596 -7591.6596 -7671.0254 -7671.0254 307.15409 307.15409 23983.038 23983.038 -35.439629 -35.439629 Loop time of 25.9371 on 1 procs for 1000 steps with 2000 atoms Performance: 3.331 ns/day, 7.205 hours/ns, 38.555 timesteps/s 71.1% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 25.725 | 25.725 | 25.725 | 0.0 | 99.18 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.072459 | 0.072459 | 0.072459 | 0.0 | 0.28 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.10518 | 0.10518 | 0.10518 | 0.0 | 0.41 Other | | 0.03407 | | | 0.13 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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: 974028 ave 974028 max 974028 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 974028 Ave neighs/atom = 487.014 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.893565559056, Press = 0.151903706263453 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.427 | 7.427 | 7.427 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 61000 -7591.6596 -7591.6596 -7671.0254 -7671.0254 307.15409 307.15409 23983.038 23983.038 -35.439629 -35.439629 62000 -7596.2544 -7596.2544 -7670.3802 -7670.3802 286.87455 286.87455 23969.831 23969.831 897.24419 897.24419 Loop time of 26.351 on 1 procs for 1000 steps with 2000 atoms Performance: 3.279 ns/day, 7.320 hours/ns, 37.949 timesteps/s 70.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 | 26.162 | 26.162 | 26.162 | 0.0 | 99.28 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.0703 | 0.0703 | 0.0703 | 0.0 | 0.27 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.10522 | 0.10522 | 0.10522 | 0.0 | 0.40 Other | | 0.01394 | | | 0.05 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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: 975912 ave 975912 max 975912 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 975912 Ave neighs/atom = 487.956 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.918692508936, Press = -1.26188574190484 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.427 | 7.427 | 7.427 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 62000 -7596.2544 -7596.2544 -7670.3802 -7670.3802 286.87455 286.87455 23969.831 23969.831 897.24419 897.24419 63000 -7598.5634 -7598.5634 -7674.1549 -7674.1549 292.54702 292.54702 23981.995 23981.995 -526.77849 -526.77849 Loop time of 27.2535 on 1 procs for 1000 steps with 2000 atoms Performance: 3.170 ns/day, 7.570 hours/ns, 36.693 timesteps/s 67.7% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 27.064 | 27.064 | 27.064 | 0.0 | 99.31 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.050184 | 0.050184 | 0.050184 | 0.0 | 0.18 Output | 2.8133e-05 | 2.8133e-05 | 2.8133e-05 | 0.0 | 0.00 Modify | 0.12506 | 0.12506 | 0.12506 | 0.0 | 0.46 Other | | 0.01402 | | | 0.05 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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: 976226 ave 976226 max 976226 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 976226 Ave neighs/atom = 488.113 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.930377346758, Press = -0.551693878270602 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.427 | 7.427 | 7.427 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 63000 -7598.5634 -7598.5634 -7674.1549 -7674.1549 292.54702 292.54702 23981.995 23981.995 -526.77849 -526.77849 64000 -7595.6668 -7595.6668 -7672.4087 -7672.4087 296.99918 296.99918 23965.118 23965.118 1146.0284 1146.0284 Loop time of 25.3711 on 1 procs for 1000 steps with 2000 atoms Performance: 3.405 ns/day, 7.048 hours/ns, 39.415 timesteps/s 72.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 | 25.162 | 25.162 | 25.162 | 0.0 | 99.18 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.070107 | 0.070107 | 0.070107 | 0.0 | 0.28 Output | 2.6941e-05 | 2.6941e-05 | 2.6941e-05 | 0.0 | 0.00 Modify | 0.10491 | 0.10491 | 0.10491 | 0.0 | 0.41 Other | | 0.03413 | | | 0.13 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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: 975718 ave 975718 max 975718 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 975718 Ave neighs/atom = 487.859 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.913036053068, Press = -0.9200724199023 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.427 | 7.427 | 7.427 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 64000 -7595.6668 -7595.6668 -7672.4087 -7672.4087 296.99918 296.99918 23965.118 23965.118 1146.0284 1146.0284 65000 -7598.3773 -7598.3773 -7673.6018 -7673.6018 291.12662 291.12662 24012.197 24012.197 -3023.5869 -3023.5869 Loop time of 27.3689 on 1 procs for 1000 steps with 2000 atoms Performance: 3.157 ns/day, 7.602 hours/ns, 36.538 timesteps/s 67.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 | 27.199 | 27.199 | 27.199 | 0.0 | 99.38 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.050907 | 0.050907 | 0.050907 | 0.0 | 0.19 Output | 2.408e-05 | 2.408e-05 | 2.408e-05 | 0.0 | 0.00 Modify | 0.10498 | 0.10498 | 0.10498 | 0.0 | 0.38 Other | | 0.01403 | | | 0.05 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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: 977188 ave 977188 max 977188 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 977188 Ave neighs/atom = 488.594 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.918357981651, Press = -0.929172852716557 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.427 | 7.427 | 7.427 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 65000 -7598.3773 -7598.3773 -7673.6018 -7673.6018 291.12662 291.12662 24012.197 24012.197 -3023.5869 -3023.5869 66000 -7596.9221 -7596.9221 -7672.4654 -7672.4654 292.3601 292.3601 23937.664 23937.664 3261.7713 3261.7713 Loop time of 26.0808 on 1 procs for 1000 steps with 2000 atoms Performance: 3.313 ns/day, 7.245 hours/ns, 38.342 timesteps/s 70.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 | 25.891 | 25.891 | 25.891 | 0.0 | 99.27 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.070538 | 0.070538 | 0.070538 | 0.0 | 0.27 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.10472 | 0.10472 | 0.10472 | 0.0 | 0.40 Other | | 0.01405 | | | 0.05 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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: 972704 ave 972704 max 972704 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 972704 Ave neighs/atom = 486.352 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.931510899294, Press = 0.218302670199675 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.427 | 7.427 | 7.427 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 66000 -7596.9221 -7596.9221 -7672.4654 -7672.4654 292.3601 292.3601 23937.664 23937.664 3261.7713 3261.7713 67000 -7595.9501 -7595.9501 -7670.7903 -7670.7903 289.63919 289.63919 23991.36 23991.36 -811.52471 -811.52471 Loop time of 26.5697 on 1 procs for 1000 steps with 2000 atoms Performance: 3.252 ns/day, 7.380 hours/ns, 37.637 timesteps/s 69.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 | 26.334 | 26.334 | 26.334 | 0.0 | 99.11 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.050257 | 0.050257 | 0.050257 | 0.0 | 0.19 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.17139 | 0.17139 | 0.17139 | 0.0 | 0.65 Other | | 0.0142 | | | 0.05 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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: 979320 ave 979320 max 979320 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 979320 Ave neighs/atom = 489.66 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.905275903736, Press = -1.74779424499272 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.427 | 7.427 | 7.427 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 67000 -7595.9501 -7595.9501 -7670.7903 -7670.7903 289.63919 289.63919 23991.36 23991.36 -811.52471 -811.52471 68000 -7596.8683 -7596.8683 -7672.8811 -7672.8811 294.17768 294.17768 23987.152 23987.152 -723.18661 -723.18661 Loop time of 21.4225 on 1 procs for 1000 steps with 2000 atoms Performance: 4.033 ns/day, 5.951 hours/ns, 46.680 timesteps/s 86.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 | 21.259 | 21.259 | 21.259 | 0.0 | 99.24 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.063408 | 0.063408 | 0.063408 | 0.0 | 0.30 Output | 4.3869e-05 | 4.3869e-05 | 4.3869e-05 | 0.0 | 0.00 Modify | 0.085622 | 0.085622 | 0.085622 | 0.0 | 0.40 Other | | 0.01421 | | | 0.07 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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: 975406 ave 975406 max 975406 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 975406 Ave neighs/atom = 487.703 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.910859256083, Press = -0.217116164216213 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.427 | 7.427 | 7.427 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 68000 -7596.8683 -7596.8683 -7672.8811 -7672.8811 294.17768 294.17768 23987.152 23987.152 -723.18661 -723.18661 69000 -7594.5663 -7594.5663 -7671.1582 -7671.1582 296.41874 296.41874 23973.089 23973.089 666.11069 666.11069 Loop time of 21.9636 on 1 procs for 1000 steps with 2000 atoms Performance: 3.934 ns/day, 6.101 hours/ns, 45.530 timesteps/s 83.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 | 21.754 | 21.754 | 21.754 | 0.0 | 99.05 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.050333 | 0.050333 | 0.050333 | 0.0 | 0.23 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.12501 | 0.12501 | 0.12501 | 0.0 | 0.57 Other | | 0.03402 | | | 0.15 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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: 976112 ave 976112 max 976112 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 976112 Ave neighs/atom = 488.056 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.958972992644, Press = -1.17742758951856 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.427 | 7.427 | 7.427 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 69000 -7594.5663 -7594.5663 -7671.1582 -7671.1582 296.41874 296.41874 23973.089 23973.089 666.11069 666.11069 70000 -7598.819 -7598.819 -7673.0621 -7673.0621 287.32842 287.32842 23984.854 23984.854 -738.70742 -738.70742 Loop time of 21.24 on 1 procs for 1000 steps with 2000 atoms Performance: 4.068 ns/day, 5.900 hours/ns, 47.081 timesteps/s 86.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 | 21.091 | 21.091 | 21.091 | 0.0 | 99.30 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.050055 | 0.050055 | 0.050055 | 0.0 | 0.24 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.084872 | 0.084872 | 0.084872 | 0.0 | 0.40 Other | | 0.01407 | | | 0.07 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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: 975810 ave 975810 max 975810 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 975810 Ave neighs/atom = 487.905 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.967150558652, Press = -0.741714631271435 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.427 | 7.427 | 7.427 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 70000 -7598.819 -7598.819 -7673.0621 -7673.0621 287.32842 287.32842 23984.854 23984.854 -738.70742 -738.70742 71000 -7597.0636 -7597.0636 -7672.92 -7672.92 293.57225 293.57225 23978.769 23978.769 -56.00086 -56.00086 Loop time of 20.4006 on 1 procs for 1000 steps with 2000 atoms Performance: 4.235 ns/day, 5.667 hours/ns, 49.018 timesteps/s 90.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 | 20.223 | 20.223 | 20.223 | 0.0 | 99.13 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.052466 | 0.052466 | 0.052466 | 0.0 | 0.26 Output | 2.8133e-05 | 2.8133e-05 | 2.8133e-05 | 0.0 | 0.00 Modify | 0.11066 | 0.11066 | 0.11066 | 0.0 | 0.54 Other | | 0.01428 | | | 0.07 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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: 975856 ave 975856 max 975856 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 975856 Ave neighs/atom = 487.928 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.995059736395, Press = -0.650590959108153 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.427 | 7.427 | 7.427 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 71000 -7597.0636 -7597.0636 -7672.92 -7672.92 293.57225 293.57225 23978.769 23978.769 -56.00086 -56.00086 72000 -7598.5153 -7598.5153 -7673.4114 -7673.4114 289.8554 289.8554 23966.928 23966.928 694.42633 694.42633 Loop time of 21.2125 on 1 procs for 1000 steps with 2000 atoms Performance: 4.073 ns/day, 5.892 hours/ns, 47.142 timesteps/s 86.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 | 21.043 | 21.043 | 21.043 | 0.0 | 99.20 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.050331 | 0.050331 | 0.050331 | 0.0 | 0.24 Output | 3.0041e-05 | 3.0041e-05 | 3.0041e-05 | 0.0 | 0.00 Modify | 0.10474 | 0.10474 | 0.10474 | 0.0 | 0.49 Other | | 0.01395 | | | 0.07 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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: 976216 ave 976216 max 976216 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 976216 Ave neighs/atom = 488.108 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.029062844566, Press = -0.796410993800759 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.427 | 7.427 | 7.427 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 72000 -7598.5153 -7598.5153 -7673.4114 -7673.4114 289.8554 289.8554 23966.928 23966.928 694.42633 694.42633 73000 -7596.6098 -7596.6098 -7672.101 -7672.101 292.15878 292.15878 23989.893 23989.893 -830.61539 -830.61539 Loop time of 21.2926 on 1 procs for 1000 steps with 2000 atoms Performance: 4.058 ns/day, 5.915 hours/ns, 46.965 timesteps/s 86.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 | 21.134 | 21.134 | 21.134 | 0.0 | 99.26 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.059261 | 0.059261 | 0.059261 | 0.0 | 0.28 Output | 2.2888e-05 | 2.2888e-05 | 2.2888e-05 | 0.0 | 0.00 Modify | 0.085114 | 0.085114 | 0.085114 | 0.0 | 0.40 Other | | 0.01388 | | | 0.07 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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: 977008 ave 977008 max 977008 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 977008 Ave neighs/atom = 488.504 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.044816676719, Press = -0.730566206553591 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.427 | 7.427 | 7.427 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 73000 -7596.6098 -7596.6098 -7672.101 -7672.101 292.15878 292.15878 23989.893 23989.893 -830.61539 -830.61539 74000 -7598.7651 -7598.7651 -7674.1313 -7674.1313 291.67519 291.67519 23949.695 23949.695 2004.3623 2004.3623 Loop time of 21.193 on 1 procs for 1000 steps with 2000 atoms Performance: 4.077 ns/day, 5.887 hours/ns, 47.185 timesteps/s 87.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 | 21.004 | 21.004 | 21.004 | 0.0 | 99.11 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.070466 | 0.070466 | 0.070466 | 0.0 | 0.33 Output | 2.6941e-05 | 2.6941e-05 | 2.6941e-05 | 0.0 | 0.00 Modify | 0.10446 | 0.10446 | 0.10446 | 0.0 | 0.49 Other | | 0.01406 | | | 0.07 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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: 975176 ave 975176 max 975176 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 975176 Ave neighs/atom = 487.588 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.041016516573, Press = -0.509737238020526 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.427 | 7.427 | 7.427 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 74000 -7598.7651 -7598.7651 -7674.1313 -7674.1313 291.67519 291.67519 23949.695 23949.695 2004.3623 2004.3623 75000 -7595.3095 -7595.3095 -7672.2851 -7672.2851 297.90367 297.90367 24009.719 24009.719 -2451.5567 -2451.5567 Loop time of 20.5537 on 1 procs for 1000 steps with 2000 atoms Performance: 4.204 ns/day, 5.709 hours/ns, 48.653 timesteps/s 89.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 | 20.386 | 20.386 | 20.386 | 0.0 | 99.18 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.050028 | 0.050028 | 0.050028 | 0.0 | 0.24 Output | 2.1935e-05 | 2.1935e-05 | 2.1935e-05 | 0.0 | 0.00 Modify | 0.10374 | 0.10374 | 0.10374 | 0.0 | 0.50 Other | | 0.01404 | | | 0.07 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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: 978706 ave 978706 max 978706 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 978706 Ave neighs/atom = 489.353 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.024336123712, Press = -1.80455439392353 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 7.427 | 7.427 | 7.427 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 75000 -7595.3095 -7595.3095 -7672.2851 -7672.2851 297.90367 297.90367 24009.719 24009.719 -2451.5567 -2451.5567 76000 -7594.1082 -7594.1082 -7671.7263 -7671.7263 300.39009 300.39009 23981.94 23981.94 -171.71268 -171.71268 Loop time of 30.3891 on 1 procs for 1000 steps with 2000 atoms Performance: 2.843 ns/day, 8.441 hours/ns, 32.906 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 | 30.098 | 30.098 | 30.098 | 0.0 | 99.04 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.070439 | 0.070439 | 0.070439 | 0.0 | 0.23 Output | 2.3127e-05 | 2.3127e-05 | 2.3127e-05 | 0.0 | 0.00 Modify | 0.18685 | 0.18685 | 0.18685 | 0.0 | 0.61 Other | | 0.03403 | | | 0.11 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 8745 ave 8745 max 8745 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: 972778 ave 972778 max 972778 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 972778 Ave neighs/atom = 486.389 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 23977.929376796 print "LAMMPS calculation completed" LAMMPS calculation completed quit 0