# 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.882650256156921*${_u_distance} variable latticeconst_converted equal 2.882650256156921*1 lattice bcc ${latticeconst_converted} lattice bcc 2.88265025615692 Lattice spacing in x,y,z = 2.88265 2.88265 2.88265 region simbox block 0 10 0 10 0 10 units lattice create_box 1 simbox Created orthogonal box = (0 0 0) to (28.8265 28.8265 28.8265) 1 by 1 by 1 MPI processor grid create_atoms 1 box Created 2000 atoms create_atoms CPU = 0.00022912 secs variable mass_converted equal 55.845*${_u_mass} variable mass_converted equal 55.845*1 # specify which KIM Model to use pair_style kim Morse_Shifted_GirifalcoWeizer_1959LowCutoff_Fe__MO_331285495617_002 WARNING: KIM Model does not provide `partialParticleVirial'; virial per atom will be zero (src/KIM/pair_kim.cpp:1089) pair_coeff * * Fe mass 1 ${mass_converted} mass 1 55.845 # initial volume variable v equal vol # assign formula variable V0 equal ${v} # evaluate initial value variable V0 equal 23953.8795587494 variable V0_metal equal ${V0}/(${_u_distance}*${_u_distance}*${_u_distance}) variable V0_metal equal 23953.8795587494/(${_u_distance}*${_u_distance}*${_u_distance}) variable V0_metal equal 23953.8795587494/(1*${_u_distance}*${_u_distance}) variable V0_metal equal 23953.8795587494/(1*1*${_u_distance}) variable V0_metal equal 23953.8795587494/(1*1*1) variable V0_metal_times1000 equal ${V0_metal}*1000 variable V0_metal_times1000 equal 23953.8795587494*1000 print "Initial system volume: ${V0_metal} Angstroms^3" Initial system volume: 23953.8795587494 Angstroms^3 # set the time step to 0.001 picoseconds variable timestep_converted equal 0.001*${_u_time} variable timestep_converted equal 0.001*1 timestep ${timestep_converted} timestep 0.001 variable temp_converted equal 253.15*${_u_temperature} variable temp_converted equal 253.15*1 variable Tdamp_converted equal 0.1*${_u_time} variable Tdamp_converted equal 0.1*1 variable press_converted equal 0.0*${_u_pressure} variable press_converted equal 0.0*1 variable Pdamp_converted equal 1*${_u_time} variable Pdamp_converted equal 1*1 # create initial velocities consistent with the chosen temperature velocity all create ${temp_converted} 17 mom yes rot yes velocity all create 253.15 17 mom yes rot yes # set NPT ensemble for all atoms fix ensemble all npt temp ${temp_converted} ${temp_converted} ${Tdamp_converted} iso ${press_converted} ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 253.15 ${temp_converted} ${Tdamp_converted} iso ${press_converted} ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 253.15 253.15 ${Tdamp_converted} iso ${press_converted} ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 253.15 253.15 0.1 iso ${press_converted} ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 253.15 253.15 0.1 iso 0 ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 253.15 253.15 0.1 iso 0 0 ${Pdamp_converted} fix ensemble all npt temp 253.15 253.15 0.1 iso 0 0 1 # compute the time averages of pressure, temperature, and volume, respectively # ignore the first 5000 timesteps variable etotal_metal equal etotal/${_u_energy} variable etotal_metal equal etotal/1 variable pe_metal equal pe/${_u_energy} variable pe_metal equal pe/1 variable T_metal equal temp/${_u_temperature} variable T_metal equal temp/1 variable V_metal equal vol/(${_u_distance}*${_u_distance}*${_u_distance}) variable V_metal equal vol/(1*${_u_distance}*${_u_distance}) variable V_metal equal vol/(1*1*${_u_distance}) variable V_metal equal vol/(1*1*1) variable P_metal equal press/${_u_pressure} variable P_metal equal press/1 fix avgmyTemp all ave/time 5 20 100 v_T_metal ave running start 5000 fix avgmyPress all ave/time 5 20 100 v_P_metal ave running start 5000 fix avgmyVol all ave/time 5 20 100 v_V_metal ave running start 5000 # extract fix quantities into variables so they can be used in if-else logic later. variable T equal f_avgmyTemp variable P equal f_avgmyPress variable V equal f_avgmyVol # set error bounds for temperature and pressure in original metal units (K and bar) variable T_low equal "253.15 - 0.2" variable T_up equal "253.15 + 0.2" variable P_low equal "0.0 - 0.2" variable P_up equal "0.0 + 0.2" # print to logfile every 1000 timesteps thermo_style custom step etotal v_etotal_metal pe v_pe_metal temp v_T_metal vol v_V_metal press v_P_metal thermo 1000 # Run a simulation for at most 2000*1000 timesteps. At each 1000th time step, check # whether the temperature and pressure have converged. If yes, break. label top variable a loop 2000 run 1000 Neighbor list info ... update every 1 steps, delay 10 steps, check yes max neighbors/atom: 2000, page size: 100000 master list distance cutoff = 8.65905 ghost atom cutoff = 8.65905 binsize = 4.32953, bins = 7 7 7 1 neighbor lists, perpetual/occasional/extra = 1 0 0 (1) pair kim, perpetual attributes: full, newton off, cut 8.65905 pair build: full/bin/atomonly stencil: full/bin/3d bin: standard Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 0 -7694.5435 -7694.5435 -7759.9552 -7759.9552 253.15 253.15 23953.88 23953.88 2916.7256 2916.7256 1000 -7628.4945 -7628.4945 -7694.6311 -7694.6311 255.95559 255.95559 24191.839 24191.839 -4161.9134 -4161.9134 Loop time of 19.3411 on 1 procs for 1000 steps with 2000 atoms Performance: 4.467 ns/day, 5.373 hours/ns, 51.703 timesteps/s 41.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 | 19.021 | 19.021 | 19.021 | 0.0 | 98.35 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.12295 | 0.12295 | 0.12295 | 0.0 | 0.64 Output | 4.1962e-05 | 4.1962e-05 | 4.1962e-05 | 0.0 | 0.00 Modify | 0.18296 | 0.18296 | 0.18296 | 0.0 | 0.95 Other | | 0.0137 | | | 0.07 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 7009 ave 7009 max 7009 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: 516000 ave 516000 max 516000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 516000 Ave neighs/atom = 258 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) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 1000 -7628.4945 -7628.4945 -7694.6311 -7694.6311 255.95559 255.95559 24191.839 24191.839 -4161.9134 -4161.9134 2000 -7626.7077 -7626.7077 -7692.2304 -7692.2304 253.57952 253.57952 24123.714 24123.714 917.25493 917.25493 Loop time of 18.6942 on 1 procs for 1000 steps with 2000 atoms Performance: 4.622 ns/day, 5.193 hours/ns, 53.492 timesteps/s 42.8% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 18.371 | 18.371 | 18.371 | 0.0 | 98.27 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.11768 | 0.11768 | 0.11768 | 0.0 | 0.63 Output | 3.3855e-05 | 3.3855e-05 | 3.3855e-05 | 0.0 | 0.00 Modify | 0.15244 | 0.15244 | 0.15244 | 0.0 | 0.82 Other | | 0.05333 | | | 0.29 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6038 ave 6038 max 6038 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: 468730 ave 468730 max 468730 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 468730 Ave neighs/atom = 234.365 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) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 2000 -7626.7077 -7626.7077 -7692.2304 -7692.2304 253.57952 253.57952 24123.714 24123.714 917.25493 917.25493 3000 -7630.3754 -7630.3754 -7695.9037 -7695.9037 253.60115 253.60115 24131.92 24131.92 -179.36831 -179.36831 Loop time of 18.8846 on 1 procs for 1000 steps with 2000 atoms Performance: 4.575 ns/day, 5.246 hours/ns, 52.953 timesteps/s 42.9% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 18.439 | 18.439 | 18.439 | 0.0 | 97.64 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.131 | 0.131 | 0.131 | 0.0 | 0.69 Output | 4.1962e-05 | 4.1962e-05 | 4.1962e-05 | 0.0 | 0.00 Modify | 0.30124 | 0.30124 | 0.30124 | 0.0 | 1.60 Other | | 0.01342 | | | 0.07 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6100 ave 6100 max 6100 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: 472266 ave 472266 max 472266 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 472266 Ave neighs/atom = 236.133 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 0, Press = 0 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 3000 -7630.3754 -7630.3754 -7695.9037 -7695.9037 253.60115 253.60115 24131.92 24131.92 -179.36831 -179.36831 4000 -7626.4417 -7626.4417 -7692.5652 -7692.5652 255.90505 255.90505 24150.716 24150.716 -859.48104 -859.48104 Loop time of 17.4854 on 1 procs for 1000 steps with 2000 atoms Performance: 4.941 ns/day, 4.857 hours/ns, 57.190 timesteps/s 45.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 | 17.272 | 17.272 | 17.272 | 0.0 | 98.78 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.037825 | 0.037825 | 0.037825 | 0.0 | 0.22 Output | 4.1962e-05 | 4.1962e-05 | 4.1962e-05 | 0.0 | 0.00 Modify | 0.16258 | 0.16258 | 0.16258 | 0.0 | 0.93 Other | | 0.01323 | | | 0.08 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6096 ave 6096 max 6096 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: 471334 ave 471334 max 471334 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 471334 Ave neighs/atom = 235.667 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) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 4000 -7626.4417 -7626.4417 -7692.5652 -7692.5652 255.90505 255.90505 24150.716 24150.716 -859.48104 -859.48104 5000 -7630.496 -7630.496 -7693.4102 -7693.4102 243.48442 243.48442 24114.323 24114.323 1246.2484 1246.2484 Loop time of 17.9232 on 1 procs for 1000 steps with 2000 atoms Performance: 4.821 ns/day, 4.979 hours/ns, 55.794 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 | 17.615 | 17.615 | 17.615 | 0.0 | 98.28 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.096938 | 0.096938 | 0.096938 | 0.0 | 0.54 Output | 2.1935e-05 | 2.1935e-05 | 2.1935e-05 | 0.0 | 0.00 Modify | 0.15765 | 0.15765 | 0.15765 | 0.0 | 0.88 Other | | 0.05339 | | | 0.30 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6013 ave 6013 max 6013 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: 469534 ave 469534 max 469534 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 469534 Ave neighs/atom = 234.767 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 = 248.482374533895, Press = -1035.40721184989 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 5000 -7630.496 -7630.496 -7693.4102 -7693.4102 243.48442 243.48442 24114.323 24114.323 1246.2484 1246.2484 6000 -7628.1552 -7628.1552 -7694.6894 -7694.6894 257.49432 257.49432 24150.009 24150.009 -1125.2953 -1125.2953 Loop time of 18.4477 on 1 procs for 1000 steps with 2000 atoms Performance: 4.684 ns/day, 5.124 hours/ns, 54.207 timesteps/s 43.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 | 18.185 | 18.185 | 18.185 | 0.0 | 98.58 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.037685 | 0.037685 | 0.037685 | 0.0 | 0.20 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.21171 | 0.21171 | 0.21171 | 0.0 | 1.15 Other | | 0.01324 | | | 0.07 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6142 ave 6142 max 6142 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: 472672 ave 472672 max 472672 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 472672 Ave neighs/atom = 236.336 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.908084386816, Press = -34.2315968907401 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 6000 -7628.1552 -7628.1552 -7694.6894 -7694.6894 257.49432 257.49432 24150.009 24150.009 -1125.2953 -1125.2953 7000 -7625.2516 -7625.2516 -7694.1111 -7694.1111 266.49331 266.49331 24122.507 24122.507 983.03856 983.03856 Loop time of 17.884 on 1 procs for 1000 steps with 2000 atoms Performance: 4.831 ns/day, 4.968 hours/ns, 55.916 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 | 17.565 | 17.565 | 17.565 | 0.0 | 98.22 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.03801 | 0.03801 | 0.03801 | 0.0 | 0.21 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.20699 | 0.20699 | 0.20699 | 0.0 | 1.16 Other | | 0.07348 | | | 0.41 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6109 ave 6109 max 6109 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: 469822 ave 469822 max 469822 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 469822 Ave neighs/atom = 234.911 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.771471940833, Press = -32.9381232019387 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 7000 -7625.2516 -7625.2516 -7694.1111 -7694.1111 266.49331 266.49331 24122.507 24122.507 983.03856 983.03856 8000 -7629.5676 -7629.5676 -7694.7862 -7694.7862 252.40295 252.40295 24150.375 24150.375 -1191.8298 -1191.8298 Loop time of 16.9515 on 1 procs for 1000 steps with 2000 atoms Performance: 5.097 ns/day, 4.709 hours/ns, 58.992 timesteps/s 47.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 | 16.692 | 16.692 | 16.692 | 0.0 | 98.47 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.077465 | 0.077465 | 0.077465 | 0.0 | 0.46 Output | 2.9802e-05 | 2.9802e-05 | 2.9802e-05 | 0.0 | 0.00 Modify | 0.16889 | 0.16889 | 0.16889 | 0.0 | 1.00 Other | | 0.01314 | | | 0.08 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6082 ave 6082 max 6082 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: 471104 ave 471104 max 471104 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 471104 Ave neighs/atom = 235.552 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.801425124359, Press = -23.3422503930852 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 8000 -7629.5676 -7629.5676 -7694.7862 -7694.7862 252.40295 252.40295 24150.375 24150.375 -1191.8298 -1191.8298 9000 -7626.9004 -7626.9004 -7693.2179 -7693.2179 256.6556 256.6556 24112.291 24112.291 1807.5818 1807.5818 Loop time of 18.0332 on 1 procs for 1000 steps with 2000 atoms Performance: 4.791 ns/day, 5.009 hours/ns, 55.453 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 | 17.633 | 17.633 | 17.633 | 0.0 | 97.78 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.097315 | 0.097315 | 0.097315 | 0.0 | 0.54 Output | 2.8133e-05 | 2.8133e-05 | 2.8133e-05 | 0.0 | 0.00 Modify | 0.2399 | 0.2399 | 0.2399 | 0.0 | 1.33 Other | | 0.06329 | | | 0.35 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6111 ave 6111 max 6111 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: 469926 ave 469926 max 469926 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 469926 Ave neighs/atom = 234.963 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.420287448449, Press = -5.88264686791672 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 9000 -7626.9004 -7626.9004 -7693.2179 -7693.2179 256.6556 256.6556 24112.291 24112.291 1807.5818 1807.5818 10000 -7628.4502 -7628.4502 -7694.2184 -7694.2184 254.52968 254.52968 24170.906 24170.906 -2528.5302 -2528.5302 Loop time of 18.1466 on 1 procs for 1000 steps with 2000 atoms Performance: 4.761 ns/day, 5.041 hours/ns, 55.107 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 | 17.797 | 17.797 | 17.797 | 0.0 | 98.07 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.078606 | 0.078606 | 0.078606 | 0.0 | 0.43 Output | 3.314e-05 | 3.314e-05 | 3.314e-05 | 0.0 | 0.00 Modify | 0.25795 | 0.25795 | 0.25795 | 0.0 | 1.42 Other | | 0.01338 | | | 0.07 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6078 ave 6078 max 6078 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: 471252 ave 471252 max 471252 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 471252 Ave neighs/atom = 235.626 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.624055712132, Press = -30.6156915425762 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 10000 -7628.4502 -7628.4502 -7694.2184 -7694.2184 254.52968 254.52968 24170.906 24170.906 -2528.5302 -2528.5302 11000 -7630.081 -7630.081 -7694.6746 -7694.6746 249.98374 249.98374 24116.024 24116.024 1004.4803 1004.4803 Loop time of 18.5899 on 1 procs for 1000 steps with 2000 atoms Performance: 4.648 ns/day, 5.164 hours/ns, 53.793 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 | 18.309 | 18.309 | 18.309 | 0.0 | 98.49 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.079501 | 0.079501 | 0.079501 | 0.0 | 0.43 Output | 2.2173e-05 | 2.2173e-05 | 2.2173e-05 | 0.0 | 0.00 Modify | 0.16755 | 0.16755 | 0.16755 | 0.0 | 0.90 Other | | 0.03369 | | | 0.18 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6100 ave 6100 max 6100 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: 468972 ave 468972 max 468972 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 468972 Ave neighs/atom = 234.486 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.27316485253, Press = 1.38757234254932 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 11000 -7630.081 -7630.081 -7694.6746 -7694.6746 249.98374 249.98374 24116.024 24116.024 1004.4803 1004.4803 12000 -7626.3653 -7626.3653 -7693.4721 -7693.4721 259.71003 259.71003 24132.143 24132.143 272.18575 272.18575 Loop time of 18.3056 on 1 procs for 1000 steps with 2000 atoms Performance: 4.720 ns/day, 5.085 hours/ns, 54.628 timesteps/s 44.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 | 18.038 | 18.038 | 18.038 | 0.0 | 98.54 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.12812 | 0.12812 | 0.12812 | 0.0 | 0.70 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.12641 | 0.12641 | 0.12641 | 0.0 | 0.69 Other | | 0.01315 | | | 0.07 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6121 ave 6121 max 6121 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: 472750 ave 472750 max 472750 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 472750 Ave neighs/atom = 236.375 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.330860926768, Press = -12.7213157350764 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 12000 -7626.3653 -7626.3653 -7693.4721 -7693.4721 259.71003 259.71003 24132.143 24132.143 272.18575 272.18575 13000 -7628.1446 -7628.1446 -7693.6935 -7693.6935 253.68113 253.68113 24139.454 24139.454 -331.07349 -331.07349 Loop time of 17.3559 on 1 procs for 1000 steps with 2000 atoms Performance: 4.978 ns/day, 4.821 hours/ns, 57.617 timesteps/s 46.3% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 17.058 | 17.058 | 17.058 | 0.0 | 98.28 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.057952 | 0.057952 | 0.057952 | 0.0 | 0.33 Output | 3.0994e-05 | 3.0994e-05 | 3.0994e-05 | 0.0 | 0.00 Modify | 0.22652 | 0.22652 | 0.22652 | 0.0 | 1.31 Other | | 0.01334 | | | 0.08 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6136 ave 6136 max 6136 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: 471446 ave 471446 max 471446 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 471446 Ave neighs/atom = 235.723 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.384285284471, Press = -0.971801397753371 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 13000 -7628.1446 -7628.1446 -7693.6935 -7693.6935 253.68113 253.68113 24139.454 24139.454 -331.07349 -331.07349 14000 -7629.0674 -7629.0674 -7693.4337 -7693.4337 249.10393 249.10393 24107.863 24107.863 1789.0377 1789.0377 Loop time of 18.1088 on 1 procs for 1000 steps with 2000 atoms Performance: 4.771 ns/day, 5.030 hours/ns, 55.222 timesteps/s 44.3% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 17.832 | 17.832 | 17.832 | 0.0 | 98.47 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.057962 | 0.057962 | 0.057962 | 0.0 | 0.32 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.1655 | 0.1655 | 0.1655 | 0.0 | 0.91 Other | | 0.05303 | | | 0.29 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6089 ave 6089 max 6089 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: 470908 ave 470908 max 470908 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 470908 Ave neighs/atom = 235.454 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.594205544872, Press = -12.3740886097422 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 14000 -7629.0674 -7629.0674 -7693.4337 -7693.4337 249.10393 249.10393 24107.863 24107.863 1789.0377 1789.0377 15000 -7627.5293 -7627.5293 -7692.3966 -7692.3966 251.04291 251.04291 24149.548 24149.548 -898.56991 -898.56991 Loop time of 17.7702 on 1 procs for 1000 steps with 2000 atoms Performance: 4.862 ns/day, 4.936 hours/ns, 56.274 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 | 17.463 | 17.463 | 17.463 | 0.0 | 98.27 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.077691 | 0.077691 | 0.077691 | 0.0 | 0.44 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.21601 | 0.21601 | 0.21601 | 0.0 | 1.22 Other | | 0.01294 | | | 0.07 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6115 ave 6115 max 6115 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: 472562 ave 472562 max 472562 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 472562 Ave neighs/atom = 236.281 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.565479235471, Press = -3.73630886333012 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 15000 -7627.5293 -7627.5293 -7692.3966 -7692.3966 251.04291 251.04291 24149.548 24149.548 -898.56991 -898.56991 16000 -7628.7966 -7628.7966 -7692.8504 -7692.8504 247.89467 247.89467 24126.582 24126.582 598.94162 598.94162 Loop time of 18.9858 on 1 procs for 1000 steps with 2000 atoms Performance: 4.551 ns/day, 5.274 hours/ns, 52.671 timesteps/s 42.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 | 18.553 | 18.553 | 18.553 | 0.0 | 97.72 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.093762 | 0.093762 | 0.093762 | 0.0 | 0.49 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.30541 | 0.30541 | 0.30541 | 0.0 | 1.61 Other | | 0.03332 | | | 0.18 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6086 ave 6086 max 6086 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: 470900 ave 470900 max 470900 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 470900 Ave neighs/atom = 235.45 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.291236243934, Press = -5.79046537800854 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 16000 -7628.7966 -7628.7966 -7692.8504 -7692.8504 247.89467 247.89467 24126.582 24126.582 598.94162 598.94162 17000 -7626.1704 -7626.1704 -7693.0312 -7693.0312 258.75814 258.75814 24140.391 24140.391 -357.87151 -357.87151 Loop time of 16.7046 on 1 procs for 1000 steps with 2000 atoms Performance: 5.172 ns/day, 4.640 hours/ns, 59.864 timesteps/s 48.1% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 16.402 | 16.402 | 16.402 | 0.0 | 98.19 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.14 | 0.14 | 0.14 | 0.0 | 0.84 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.14877 | 0.14877 | 0.14877 | 0.0 | 0.89 Other | | 0.01341 | | | 0.08 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6102 ave 6102 max 6102 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: 471758 ave 471758 max 471758 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 471758 Ave neighs/atom = 235.879 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.311841818609, Press = -4.58619930200417 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 17000 -7626.1704 -7626.1704 -7693.0312 -7693.0312 258.75814 258.75814 24140.391 24140.391 -357.87151 -357.87151 18000 -7627.7638 -7627.7638 -7695.5444 -7695.5444 262.31767 262.31767 24160.097 24160.097 -2046.44 -2046.44 Loop time of 17.7793 on 1 procs for 1000 steps with 2000 atoms Performance: 4.860 ns/day, 4.939 hours/ns, 56.245 timesteps/s 45.0% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 17.471 | 17.471 | 17.471 | 0.0 | 98.26 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.037785 | 0.037785 | 0.037785 | 0.0 | 0.21 Output | 2.8849e-05 | 2.8849e-05 | 2.8849e-05 | 0.0 | 0.00 Modify | 0.23758 | 0.23758 | 0.23758 | 0.0 | 1.34 Other | | 0.03336 | | | 0.19 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6059 ave 6059 max 6059 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: 471542 ave 471542 max 471542 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 471542 Ave neighs/atom = 235.771 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.172081390336, Press = -4.70703859957147 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 18000 -7627.7638 -7627.7638 -7695.5444 -7695.5444 262.31767 262.31767 24160.097 24160.097 -2046.44 -2046.44 19000 -7629.5686 -7629.5686 -7695.1581 -7695.1581 253.83821 253.83821 24100.616 24100.616 2055.5559 2055.5559 Loop time of 18.5245 on 1 procs for 1000 steps with 2000 atoms Performance: 4.664 ns/day, 5.146 hours/ns, 53.983 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 | 18.244 | 18.244 | 18.244 | 0.0 | 98.49 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.098589 | 0.098589 | 0.098589 | 0.0 | 0.53 Output | 2.8849e-05 | 2.8849e-05 | 2.8849e-05 | 0.0 | 0.00 Modify | 0.16831 | 0.16831 | 0.16831 | 0.0 | 0.91 Other | | 0.01343 | | | 0.07 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6059 ave 6059 max 6059 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: 470192 ave 470192 max 470192 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 470192 Ave neighs/atom = 235.096 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.075178799464, Press = -1.94888857291657 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 19000 -7629.5686 -7629.5686 -7695.1581 -7695.1581 253.83821 253.83821 24100.616 24100.616 2055.5559 2055.5559 20000 -7626.318 -7626.318 -7692.6531 -7692.6531 256.7237 256.7237 24156.884 24156.884 -1262.0056 -1262.0056 Loop time of 17.3441 on 1 procs for 1000 steps with 2000 atoms Performance: 4.982 ns/day, 4.818 hours/ns, 57.656 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 | 17.065 | 17.065 | 17.065 | 0.0 | 98.39 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.038793 | 0.038793 | 0.038793 | 0.0 | 0.22 Output | 2.8849e-05 | 2.8849e-05 | 2.8849e-05 | 0.0 | 0.00 Modify | 0.20683 | 0.20683 | 0.20683 | 0.0 | 1.19 Other | | 0.03335 | | | 0.19 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6166 ave 6166 max 6166 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: 473290 ave 473290 max 473290 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 473290 Ave neighs/atom = 236.645 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.004617761381, Press = -5.45837006573389 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 20000 -7626.318 -7626.318 -7692.6531 -7692.6531 256.7237 256.7237 24156.884 24156.884 -1262.0056 -1262.0056 21000 -7631.0081 -7631.0081 -7695.8041 -7695.8041 250.76717 250.76717 24116.342 24116.342 923.86198 923.86198 Loop time of 17.9077 on 1 procs for 1000 steps with 2000 atoms Performance: 4.825 ns/day, 4.974 hours/ns, 55.842 timesteps/s 45.0% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 17.447 | 17.447 | 17.447 | 0.0 | 97.43 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.11889 | 0.11889 | 0.11889 | 0.0 | 0.66 Output | 2.9802e-05 | 2.9802e-05 | 2.9802e-05 | 0.0 | 0.00 Modify | 0.28838 | 0.28838 | 0.28838 | 0.0 | 1.61 Other | | 0.05346 | | | 0.30 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6056 ave 6056 max 6056 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: 469514 ave 469514 max 469514 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 469514 Ave neighs/atom = 234.757 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.943373143121, Press = -0.942697613142529 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 21000 -7631.0081 -7631.0081 -7695.8041 -7695.8041 250.76717 250.76717 24116.342 24116.342 923.86198 923.86198 22000 -7626.7224 -7626.7224 -7693.1477 -7693.1477 257.07261 257.07261 24145.848 24145.848 -586.50852 -586.50852 Loop time of 16.5357 on 1 procs for 1000 steps with 2000 atoms Performance: 5.225 ns/day, 4.593 hours/ns, 60.475 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 | 16.239 | 16.239 | 16.239 | 0.0 | 98.21 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.057511 | 0.057511 | 0.057511 | 0.0 | 0.35 Output | 4.9114e-05 | 4.9114e-05 | 4.9114e-05 | 0.0 | 0.00 Modify | 0.18588 | 0.18588 | 0.18588 | 0.0 | 1.12 Other | | 0.05319 | | | 0.32 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6112 ave 6112 max 6112 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: 472222 ave 472222 max 472222 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 472222 Ave neighs/atom = 236.111 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.876671413699, Press = -7.76987476577496 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 22000 -7626.7224 -7626.7224 -7693.1477 -7693.1477 257.07261 257.07261 24145.848 24145.848 -586.50852 -586.50852 23000 -7629.2143 -7629.2143 -7693.7873 -7693.7873 249.90433 249.90433 24140.003 24140.003 -371.72298 -371.72298 Loop time of 17.1831 on 1 procs for 1000 steps with 2000 atoms Performance: 5.028 ns/day, 4.773 hours/ns, 58.197 timesteps/s 46.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 | 16.766 | 16.766 | 16.766 | 0.0 | 97.57 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.077905 | 0.077905 | 0.077905 | 0.0 | 0.45 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.32595 | 0.32595 | 0.32595 | 0.0 | 1.90 Other | | 0.01336 | | | 0.08 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6102 ave 6102 max 6102 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: 469936 ave 469936 max 469936 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 469936 Ave neighs/atom = 234.968 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.891631688312, Press = 2.40639877512119 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 23000 -7629.2143 -7629.2143 -7693.7873 -7693.7873 249.90433 249.90433 24140.003 24140.003 -371.72298 -371.72298 24000 -7628.4622 -7628.4622 -7694.0746 -7694.0746 253.92686 253.92686 24120.555 24120.555 959.55549 959.55549 Loop time of 17.3716 on 1 procs for 1000 steps with 2000 atoms Performance: 4.974 ns/day, 4.825 hours/ns, 57.565 timesteps/s 46.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 | 17.13 | 17.13 | 17.13 | 0.0 | 98.61 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.058627 | 0.058627 | 0.058627 | 0.0 | 0.34 Output | 3.0041e-05 | 3.0041e-05 | 3.0041e-05 | 0.0 | 0.00 Modify | 0.16951 | 0.16951 | 0.16951 | 0.0 | 0.98 Other | | 0.0136 | | | 0.08 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6104 ave 6104 max 6104 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: 470168 ave 470168 max 470168 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 470168 Ave neighs/atom = 235.084 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.001520202463, Press = -4.61259062164772 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 24000 -7628.4622 -7628.4622 -7694.0746 -7694.0746 253.92686 253.92686 24120.555 24120.555 959.55549 959.55549 25000 -7624.7517 -7624.7517 -7692.9546 -7692.9546 263.9524 263.9524 24157.854 24157.854 -1279.2811 -1279.2811 Loop time of 16.9495 on 1 procs for 1000 steps with 2000 atoms Performance: 5.098 ns/day, 4.708 hours/ns, 58.999 timesteps/s 48.0% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 16.605 | 16.605 | 16.605 | 0.0 | 97.96 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.078426 | 0.078426 | 0.078426 | 0.0 | 0.46 Output | 3.6001e-05 | 3.6001e-05 | 3.6001e-05 | 0.0 | 0.00 Modify | 0.25281 | 0.25281 | 0.25281 | 0.0 | 1.49 Other | | 0.01369 | | | 0.08 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6088 ave 6088 max 6088 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: 471650 ave 471650 max 471650 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 471650 Ave neighs/atom = 235.825 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.086852453005, Press = -1.19058647026333 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 25000 -7624.7517 -7624.7517 -7692.9546 -7692.9546 263.9524 263.9524 24157.854 24157.854 -1279.2811 -1279.2811 26000 -7629.4517 -7629.4517 -7694.8029 -7694.8029 252.91587 252.91587 24099.795 24099.795 2285.4579 2285.4579 Loop time of 16.7499 on 1 procs for 1000 steps with 2000 atoms Performance: 5.158 ns/day, 4.653 hours/ns, 59.702 timesteps/s 49.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 | 16.359 | 16.359 | 16.359 | 0.0 | 97.66 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.099377 | 0.099377 | 0.099377 | 0.0 | 0.59 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.26796 | 0.26796 | 0.26796 | 0.0 | 1.60 Other | | 0.0239 | | | 0.14 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6135 ave 6135 max 6135 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: 468982 ave 468982 max 468982 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 468982 Ave neighs/atom = 234.491 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.157362586959, Press = -3.63053193978374 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 26000 -7629.4517 -7629.4517 -7694.8029 -7694.8029 252.91587 252.91587 24099.795 24099.795 2285.4579 2285.4579 27000 -7628.9238 -7628.9238 -7694.7697 -7694.7697 254.83052 254.83052 24164.453 24164.453 -2017.4172 -2017.4172 Loop time of 17.3358 on 1 procs for 1000 steps with 2000 atoms Performance: 4.984 ns/day, 4.816 hours/ns, 57.684 timesteps/s 48.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 | 16.961 | 16.961 | 16.961 | 0.0 | 97.84 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.12014 | 0.12014 | 0.12014 | 0.0 | 0.69 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.24016 | 0.24016 | 0.24016 | 0.0 | 1.39 Other | | 0.01426 | | | 0.08 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6070 ave 6070 max 6070 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: 472188 ave 472188 max 472188 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 472188 Ave neighs/atom = 236.094 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.148606016971, Press = -1.9107509669967 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 27000 -7628.9238 -7628.9238 -7694.7697 -7694.7697 254.83052 254.83052 24164.453 24164.453 -2017.4172 -2017.4172 28000 -7625.3021 -7625.3021 -7690.6453 -7690.6453 252.88476 252.88476 24116.244 24116.244 1755.0589 1755.0589 Loop time of 17.04 on 1 procs for 1000 steps with 2000 atoms Performance: 5.070 ns/day, 4.733 hours/ns, 58.685 timesteps/s 47.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 | 16.731 | 16.731 | 16.731 | 0.0 | 98.19 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.068449 | 0.068449 | 0.068449 | 0.0 | 0.40 Output | 5.722e-05 | 5.722e-05 | 5.722e-05 | 0.0 | 0.00 Modify | 0.18689 | 0.18689 | 0.18689 | 0.0 | 1.10 Other | | 0.05358 | | | 0.31 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6074 ave 6074 max 6074 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: 468036 ave 468036 max 468036 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 468036 Ave neighs/atom = 234.018 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.223609479308, Press = -1.74546107178724 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 28000 -7625.3021 -7625.3021 -7690.6453 -7690.6453 252.88476 252.88476 24116.244 24116.244 1755.0589 1755.0589 29000 -7627.8059 -7627.8059 -7693.7108 -7693.7108 255.05874 255.05874 24141.299 24141.299 -349.06321 -349.06321 Loop time of 16.3127 on 1 procs for 1000 steps with 2000 atoms Performance: 5.296 ns/day, 4.531 hours/ns, 61.302 timesteps/s 49.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 | 16.02 | 16.02 | 16.02 | 0.0 | 98.21 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.11227 | 0.11227 | 0.11227 | 0.0 | 0.69 Output | 2.8849e-05 | 2.8849e-05 | 2.8849e-05 | 0.0 | 0.00 Modify | 0.14647 | 0.14647 | 0.14647 | 0.0 | 0.90 Other | | 0.03347 | | | 0.21 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6118 ave 6118 max 6118 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: 471016 ave 471016 max 471016 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 471016 Ave neighs/atom = 235.508 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.257305924613, Press = -3.24163719226119 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 29000 -7627.8059 -7627.8059 -7693.7108 -7693.7108 255.05874 255.05874 24141.299 24141.299 -349.06321 -349.06321 30000 -7629.3579 -7629.3579 -7694.6273 -7694.6273 252.59944 252.59944 24144.509 24144.509 -720.68071 -720.68071 Loop time of 16.1583 on 1 procs for 1000 steps with 2000 atoms Performance: 5.347 ns/day, 4.488 hours/ns, 61.888 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 | 15.849 | 15.849 | 15.849 | 0.0 | 98.08 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.058144 | 0.058144 | 0.058144 | 0.0 | 0.36 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.2179 | 0.2179 | 0.2179 | 0.0 | 1.35 Other | | 0.03363 | | | 0.21 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6092 ave 6092 max 6092 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: 469330 ave 469330 max 469330 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 469330 Ave neighs/atom = 234.665 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.256707138424, Press = -1.48218614838831 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 30000 -7629.3579 -7629.3579 -7694.6273 -7694.6273 252.59944 252.59944 24144.509 24144.509 -720.68071 -720.68071 31000 -7626.5016 -7626.5016 -7692.4251 -7692.4251 255.13097 255.13097 24123.336 24123.336 1098.0498 1098.0498 Loop time of 16.118 on 1 procs for 1000 steps with 2000 atoms Performance: 5.360 ns/day, 4.477 hours/ns, 62.043 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 | 15.858 | 15.858 | 15.858 | 0.0 | 98.39 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.098067 | 0.098067 | 0.098067 | 0.0 | 0.61 Output | 2.2173e-05 | 2.2173e-05 | 2.2173e-05 | 0.0 | 0.00 Modify | 0.10754 | 0.10754 | 0.10754 | 0.0 | 0.67 Other | | 0.0541 | | | 0.34 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6115 ave 6115 max 6115 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: 469232 ave 469232 max 469232 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 469232 Ave neighs/atom = 234.616 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.258636968952, Press = -2.91196452294179 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 31000 -7626.5016 -7626.5016 -7692.4251 -7692.4251 255.13097 255.13097 24123.336 24123.336 1098.0498 1098.0498 32000 -7628.0672 -7628.0672 -7692.5805 -7692.5805 249.67318 249.67318 24161.481 24161.481 -1561.3605 -1561.3605 Loop time of 16.6985 on 1 procs for 1000 steps with 2000 atoms Performance: 5.174 ns/day, 4.638 hours/ns, 59.886 timesteps/s 50.1% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 16.436 | 16.436 | 16.436 | 0.0 | 98.43 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.11957 | 0.11957 | 0.11957 | 0.0 | 0.72 Output | 2.8849e-05 | 2.8849e-05 | 2.8849e-05 | 0.0 | 0.00 Modify | 0.109 | 0.109 | 0.109 | 0.0 | 0.65 Other | | 0.03394 | | | 0.20 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6134 ave 6134 max 6134 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: 470018 ave 470018 max 470018 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 470018 Ave neighs/atom = 235.009 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.237291194114, Press = -0.911185852160513 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 32000 -7628.0672 -7628.0672 -7692.5805 -7692.5805 249.67318 249.67318 24161.481 24161.481 -1561.3605 -1561.3605 33000 -7628.1448 -7628.1448 -7693.3187 -7693.3187 252.22965 252.22965 24099.142 24099.142 2659.0181 2659.0181 Loop time of 16.8192 on 1 procs for 1000 steps with 2000 atoms Performance: 5.137 ns/day, 4.672 hours/ns, 59.456 timesteps/s 49.9% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 16.517 | 16.517 | 16.517 | 0.0 | 98.20 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.11912 | 0.11912 | 0.11912 | 0.0 | 0.71 Output | 4.1962e-05 | 4.1962e-05 | 4.1962e-05 | 0.0 | 0.00 Modify | 0.14906 | 0.14906 | 0.14906 | 0.0 | 0.89 Other | | 0.03431 | | | 0.20 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6070 ave 6070 max 6070 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: 467912 ave 467912 max 467912 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 467912 Ave neighs/atom = 233.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 = 253.159729660706, Press = -3.11407042256175 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 33000 -7628.1448 -7628.1448 -7693.3187 -7693.3187 252.22965 252.22965 24099.142 24099.142 2659.0181 2659.0181 34000 -7628.223 -7628.223 -7693.2299 -7693.2299 251.5833 251.5833 24171.605 24171.605 -2396.4181 -2396.4181 Loop time of 16.5991 on 1 procs for 1000 steps with 2000 atoms Performance: 5.205 ns/day, 4.611 hours/ns, 60.244 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 | 16.257 | 16.257 | 16.257 | 0.0 | 97.94 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.079072 | 0.079072 | 0.079072 | 0.0 | 0.48 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.22874 | 0.22874 | 0.22874 | 0.0 | 1.38 Other | | 0.03377 | | | 0.20 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6124 ave 6124 max 6124 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: 471476 ave 471476 max 471476 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 471476 Ave neighs/atom = 235.738 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.13895653778, Press = -1.35439593267204 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 34000 -7628.223 -7628.223 -7693.2299 -7693.2299 251.5833 251.5833 24171.605 24171.605 -2396.4181 -2396.4181 35000 -7627.9437 -7627.9437 -7694.9318 -7694.9318 259.25092 259.25092 24114.09 24114.09 1374.7194 1374.7194 Loop time of 16.5367 on 1 procs for 1000 steps with 2000 atoms Performance: 5.225 ns/day, 4.594 hours/ns, 60.472 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 | 16.273 | 16.273 | 16.273 | 0.0 | 98.41 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.079468 | 0.079468 | 0.079468 | 0.0 | 0.48 Output | 3.8862e-05 | 3.8862e-05 | 3.8862e-05 | 0.0 | 0.00 Modify | 0.16955 | 0.16955 | 0.16955 | 0.0 | 1.03 Other | | 0.01434 | | | 0.09 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6065 ave 6065 max 6065 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: 467750 ave 467750 max 467750 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 467750 Ave neighs/atom = 233.875 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.065691173119, Press = -1.77492723061833 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 35000 -7627.9437 -7627.9437 -7694.9318 -7694.9318 259.25092 259.25092 24114.09 24114.09 1374.7194 1374.7194 36000 -7627.5875 -7627.5875 -7693.7909 -7693.7909 256.21412 256.21412 24147.881 24147.881 -899.92704 -899.92704 Loop time of 16.6466 on 1 procs for 1000 steps with 2000 atoms Performance: 5.190 ns/day, 4.624 hours/ns, 60.072 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 | 16.405 | 16.405 | 16.405 | 0.0 | 98.55 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.059907 | 0.059907 | 0.059907 | 0.0 | 0.36 Output | 2.8133e-05 | 2.8133e-05 | 2.8133e-05 | 0.0 | 0.00 Modify | 0.16776 | 0.16776 | 0.16776 | 0.0 | 1.01 Other | | 0.0139 | | | 0.08 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6102 ave 6102 max 6102 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: 471420 ave 471420 max 471420 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 471420 Ave neighs/atom = 235.71 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.023081782808, Press = -2.02448983962845 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 36000 -7627.5875 -7627.5875 -7693.7909 -7693.7909 256.21412 256.21412 24147.881 24147.881 -899.92704 -899.92704 37000 -7630.2953 -7630.2953 -7692.9138 -7692.9138 242.34006 242.34006 24119.56 24119.56 1166.1031 1166.1031 Loop time of 14.5569 on 1 procs for 1000 steps with 2000 atoms Performance: 5.935 ns/day, 4.044 hours/ns, 68.696 timesteps/s 56.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 | 14.254 | 14.254 | 14.254 | 0.0 | 97.92 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.099598 | 0.099598 | 0.099598 | 0.0 | 0.68 Output | 2.8849e-05 | 2.8849e-05 | 2.8849e-05 | 0.0 | 0.00 Modify | 0.19001 | 0.19001 | 0.19001 | 0.0 | 1.31 Other | | 0.0136 | | | 0.09 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6096 ave 6096 max 6096 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: 470050 ave 470050 max 470050 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 470050 Ave neighs/atom = 235.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 = 252.956992649553, Press = -1.66133408313491 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 37000 -7630.2953 -7630.2953 -7692.9138 -7692.9138 242.34006 242.34006 24119.56 24119.56 1166.1031 1166.1031 38000 -7628.732 -7628.732 -7694.3604 -7694.3604 253.98871 253.98871 24162.947 24162.947 -2035.3994 -2035.3994 Loop time of 16.1859 on 1 procs for 1000 steps with 2000 atoms Performance: 5.338 ns/day, 4.496 hours/ns, 61.782 timesteps/s 50.1% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 15.805 | 15.805 | 15.805 | 0.0 | 97.65 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.09916 | 0.09916 | 0.09916 | 0.0 | 0.61 Output | 2.3127e-05 | 2.3127e-05 | 2.3127e-05 | 0.0 | 0.00 Modify | 0.22801 | 0.22801 | 0.22801 | 0.0 | 1.41 Other | | 0.05346 | | | 0.33 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6161 ave 6161 max 6161 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: 470688 ave 470688 max 470688 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 470688 Ave neighs/atom = 235.344 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.952382926231, Press = -1.96118365391401 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 38000 -7628.732 -7628.732 -7694.3604 -7694.3604 253.98871 253.98871 24162.947 24162.947 -2035.3994 -2035.3994 39000 -7629.9805 -7629.9805 -7694.0344 -7694.0344 247.89535 247.89535 24095.735 24095.735 2706.4088 2706.4088 Loop time of 13.1136 on 1 procs for 1000 steps with 2000 atoms Performance: 6.589 ns/day, 3.643 hours/ns, 76.256 timesteps/s 60.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 | 12.855 | 12.855 | 12.855 | 0.0 | 98.03 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.097724 | 0.097724 | 0.097724 | 0.0 | 0.75 Output | 5.1022e-05 | 5.1022e-05 | 5.1022e-05 | 0.0 | 0.00 Modify | 0.14693 | 0.14693 | 0.14693 | 0.0 | 1.12 Other | | 0.01398 | | | 0.11 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6090 ave 6090 max 6090 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: 469146 ave 469146 max 469146 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 469146 Ave neighs/atom = 234.573 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.911468582809, Press = -0.804132006896554 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 39000 -7629.9805 -7629.9805 -7694.0344 -7694.0344 247.89535 247.89535 24095.735 24095.735 2706.4088 2706.4088 40000 -7625.6906 -7625.6906 -7692.481 -7692.481 258.48571 258.48571 24153.744 24153.744 -980.81852 -980.81852 Loop time of 15.0402 on 1 procs for 1000 steps with 2000 atoms Performance: 5.745 ns/day, 4.178 hours/ns, 66.488 timesteps/s 53.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 | 14.783 | 14.783 | 14.783 | 0.0 | 98.29 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.03795 | 0.03795 | 0.03795 | 0.0 | 0.25 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.18602 | 0.18602 | 0.18602 | 0.0 | 1.24 Other | | 0.03361 | | | 0.22 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6135 ave 6135 max 6135 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: 472034 ave 472034 max 472034 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 472034 Ave neighs/atom = 236.017 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.968258771145, Press = -2.4213522081435 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 40000 -7625.6906 -7625.6906 -7692.481 -7692.481 258.48571 258.48571 24153.744 24153.744 -980.81852 -980.81852 41000 -7629.2499 -7629.2499 -7694.0829 -7694.0829 250.91038 250.91038 24129.197 24129.197 364.89771 364.89771 Loop time of 13.989 on 1 procs for 1000 steps with 2000 atoms Performance: 6.176 ns/day, 3.886 hours/ns, 71.485 timesteps/s 56.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 | 13.692 | 13.692 | 13.692 | 0.0 | 97.87 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.097514 | 0.097514 | 0.097514 | 0.0 | 0.70 Output | 2.1935e-05 | 2.1935e-05 | 2.1935e-05 | 0.0 | 0.00 Modify | 0.18618 | 0.18618 | 0.18618 | 0.0 | 1.33 Other | | 0.01364 | | | 0.10 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6074 ave 6074 max 6074 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: 469038 ave 469038 max 469038 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 469038 Ave neighs/atom = 234.519 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.012621443954, Press = -1.31844256029801 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 41000 -7629.2499 -7629.2499 -7694.0829 -7694.0829 250.91038 250.91038 24129.197 24129.197 364.89771 364.89771 42000 -7626.34 -7626.34 -7692.348 -7692.348 255.45785 255.45785 24143.316 24143.316 -316.34969 -316.34969 Loop time of 13.5265 on 1 procs for 1000 steps with 2000 atoms Performance: 6.387 ns/day, 3.757 hours/ns, 73.929 timesteps/s 59.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 | 13.31 | 13.31 | 13.31 | 0.0 | 98.40 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.097661 | 0.097661 | 0.097661 | 0.0 | 0.72 Output | 7.2956e-05 | 7.2956e-05 | 7.2956e-05 | 0.0 | 0.00 Modify | 0.10545 | 0.10545 | 0.10545 | 0.0 | 0.78 Other | | 0.01318 | | | 0.10 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6046 ave 6046 max 6046 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: 470792 ave 470792 max 470792 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 470792 Ave neighs/atom = 235.396 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.035860297446, Press = -1.86300144879519 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 42000 -7626.34 -7626.34 -7692.348 -7692.348 255.45785 255.45785 24143.316 24143.316 -316.34969 -316.34969 43000 -7629.834 -7629.834 -7694.2258 -7694.2258 249.20268 249.20268 24129.646 24129.646 316.11823 316.11823 Loop time of 14.4403 on 1 procs for 1000 steps with 2000 atoms Performance: 5.983 ns/day, 4.011 hours/ns, 69.250 timesteps/s 55.5% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 14.244 | 14.244 | 14.244 | 0.0 | 98.64 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.077311 | 0.077311 | 0.077311 | 0.0 | 0.54 Output | 3.0994e-05 | 3.0994e-05 | 3.0994e-05 | 0.0 | 0.00 Modify | 0.10627 | 0.10627 | 0.10627 | 0.0 | 0.74 Other | | 0.01315 | | | 0.09 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6068 ave 6068 max 6068 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: 469722 ave 469722 max 469722 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 469722 Ave neighs/atom = 234.861 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.061686399904, Press = -1.09055608579558 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 43000 -7629.834 -7629.834 -7694.2258 -7694.2258 249.20268 249.20268 24129.646 24129.646 316.11823 316.11823 44000 -7623.667 -7623.667 -7691.0849 -7691.0849 260.91432 260.91432 24145.02 24145.02 -97.673663 -97.673663 Loop time of 13.862 on 1 procs for 1000 steps with 2000 atoms Performance: 6.233 ns/day, 3.851 hours/ns, 72.140 timesteps/s 58.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 | 13.622 | 13.622 | 13.622 | 0.0 | 98.27 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.058659 | 0.058659 | 0.058659 | 0.0 | 0.42 Output | 2.9087e-05 | 2.9087e-05 | 2.9087e-05 | 0.0 | 0.00 Modify | 0.16798 | 0.16798 | 0.16798 | 0.0 | 1.21 Other | | 0.01347 | | | 0.10 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6152 ave 6152 max 6152 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: 470234 ave 470234 max 470234 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 470234 Ave neighs/atom = 235.117 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.043294047065, Press = -3.61321763860743 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 44000 -7623.667 -7623.667 -7691.0849 -7691.0849 260.91432 260.91432 24145.02 24145.02 -97.673663 -97.673663 45000 -7627.0911 -7627.0911 -7691.7338 -7691.7338 250.17374 250.17374 24149.89 24149.89 -795.39827 -795.39827 Loop time of 13.6081 on 1 procs for 1000 steps with 2000 atoms Performance: 6.349 ns/day, 3.780 hours/ns, 73.486 timesteps/s 59.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 | 13.393 | 13.393 | 13.393 | 0.0 | 98.42 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.038006 | 0.038006 | 0.038006 | 0.0 | 0.28 Output | 2.3127e-05 | 2.3127e-05 | 2.3127e-05 | 0.0 | 0.00 Modify | 0.1442 | 0.1442 | 0.1442 | 0.0 | 1.06 Other | | 0.03321 | | | 0.24 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6130 ave 6130 max 6130 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: 469224 ave 469224 max 469224 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 469224 Ave neighs/atom = 234.612 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.142431621986, Press = 0.259906108183507 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 45000 -7627.0911 -7627.0911 -7691.7338 -7691.7338 250.17374 250.17374 24149.89 24149.89 -795.39827 -795.39827 46000 -7628.887 -7628.887 -7693.6518 -7693.6518 250.64638 250.64638 24121.996 24121.996 847.6615 847.6615 Loop time of 14.7352 on 1 procs for 1000 steps with 2000 atoms Performance: 5.864 ns/day, 4.093 hours/ns, 67.865 timesteps/s 54.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 | 14.498 | 14.498 | 14.498 | 0.0 | 98.39 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.057848 | 0.057848 | 0.057848 | 0.0 | 0.39 Output | 2.3127e-05 | 2.3127e-05 | 2.3127e-05 | 0.0 | 0.00 Modify | 0.12562 | 0.12562 | 0.12562 | 0.0 | 0.85 Other | | 0.05322 | | | 0.36 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6064 ave 6064 max 6064 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: 470152 ave 470152 max 470152 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 470152 Ave neighs/atom = 235.076 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.139658953961, Press = -2.11901602754398 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 46000 -7628.887 -7628.887 -7693.6518 -7693.6518 250.64638 250.64638 24121.996 24121.996 847.6615 847.6615 47000 -7626.0427 -7626.0427 -7692.4452 -7692.4452 256.98473 256.98473 24155.097 24155.097 -1220.1669 -1220.1669 Loop time of 11.1736 on 1 procs for 1000 steps with 2000 atoms Performance: 7.733 ns/day, 3.104 hours/ns, 89.497 timesteps/s 72.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 | 10.996 | 10.996 | 10.996 | 0.0 | 98.41 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.037745 | 0.037745 | 0.037745 | 0.0 | 0.34 Output | 2.3127e-05 | 2.3127e-05 | 2.3127e-05 | 0.0 | 0.00 Modify | 0.12609 | 0.12609 | 0.12609 | 0.0 | 1.13 Other | | 0.01362 | | | 0.12 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6134 ave 6134 max 6134 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: 471586 ave 471586 max 471586 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 471586 Ave neighs/atom = 235.793 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.148271757058, Press = -1.2166163380513 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 47000 -7626.0427 -7626.0427 -7692.4452 -7692.4452 256.98473 256.98473 24155.097 24155.097 -1220.1669 -1220.1669 48000 -7628.0894 -7628.0894 -7692.9534 -7692.9534 251.03016 251.03016 24110.017 24110.017 1813.2136 1813.2136 Loop time of 13.9547 on 1 procs for 1000 steps with 2000 atoms Performance: 6.191 ns/day, 3.876 hours/ns, 71.661 timesteps/s 57.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 | 13.717 | 13.717 | 13.717 | 0.0 | 98.30 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.057678 | 0.057678 | 0.057678 | 0.0 | 0.41 Output | 2.8849e-05 | 2.8849e-05 | 2.8849e-05 | 0.0 | 0.00 Modify | 0.16679 | 0.16679 | 0.16679 | 0.0 | 1.20 Other | | 0.01333 | | | 0.10 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6132 ave 6132 max 6132 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: 469604 ave 469604 max 469604 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 469604 Ave neighs/atom = 234.802 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.115063402011, Press = -1.35711146980284 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 48000 -7628.0894 -7628.0894 -7692.9534 -7692.9534 251.03016 251.03016 24110.017 24110.017 1813.2136 1813.2136 49000 -7629.287 -7629.287 -7694.0862 -7694.0862 250.77956 250.77956 24188.714 24188.714 -3710.6156 -3710.6156 Loop time of 12.2006 on 1 procs for 1000 steps with 2000 atoms Performance: 7.082 ns/day, 3.389 hours/ns, 81.963 timesteps/s 66.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 | 12.062 | 12.062 | 12.062 | 0.0 | 98.87 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.038247 | 0.038247 | 0.038247 | 0.0 | 0.31 Output | 2.8849e-05 | 2.8849e-05 | 2.8849e-05 | 0.0 | 0.00 Modify | 0.08661 | 0.08661 | 0.08661 | 0.0 | 0.71 Other | | 0.01349 | | | 0.11 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6114 ave 6114 max 6114 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: 471148 ave 471148 max 471148 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 471148 Ave neighs/atom = 235.574 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.120756852542, Press = -1.91167864348711 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 5.423 | 5.423 | 5.423 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 49000 -7629.287 -7629.287 -7694.0862 -7694.0862 250.77956 250.77956 24188.714 24188.714 -3710.6156 -3710.6156 50000 -7626.7959 -7626.7959 -7693.7912 -7693.7912 259.27867 259.27867 24096.305 24096.305 2695.396 2695.396 Loop time of 12.6201 on 1 procs for 1000 steps with 2000 atoms Performance: 6.846 ns/day, 3.506 hours/ns, 79.239 timesteps/s 63.6% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 12.441 | 12.441 | 12.441 | 0.0 | 98.58 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.037831 | 0.037831 | 0.037831 | 0.0 | 0.30 Output | 2.718e-05 | 2.718e-05 | 2.718e-05 | 0.0 | 0.00 Modify | 0.12831 | 0.12831 | 0.12831 | 0.0 | 1.02 Other | | 0.01329 | | | 0.11 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 6044 ave 6044 max 6044 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: 467562 ave 467562 max 467562 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 467562 Ave neighs/atom = 233.781 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" jump SELF break # Write final averaged volume to file if temperature and volume have converged; otherwise wirte a # flag to indicate non-convergence. variable myStep equal step if "${myStep} < 2000000" then "print '${V}' file output/vol_T253.15.out" else "print 'not_converged' file output/vol_T253.15.out" print '${V}' file output/vol_T253.15.out 24135.1903834173 print "LAMMPS calculation completed" LAMMPS calculation completed quit 0