# Variables that can be adjusted by kim-lammps-preprocessor to switch unit sets for # Simulator Models variable _u_distance equal 1.0 variable _u_energy equal 1.0 variable _u_mass equal 1.0 variable _u_time equal 1.0 variable _u_pressure equal 1.0 variable _u_temperature equal 1.0 # This line may be swapped out by kim-lammps-preprocessor if running against a Simulator # Model whose atom_style is not 'atomic' atom_style atomic # periodic boundary conditions along all three dimensions boundary p p p # Set neighbor skin variable neigh_skin equal 2.0*${_u_distance} variable neigh_skin equal 2.0*1 neighbor ${neigh_skin} bin neighbor 2 bin # create a supercell with cubic lattice (fcc, bcc, sc, or diamond) # using 10*10*10 conventional (orthogonal) unit cells variable latticeconst_converted equal 5.559938663989308*${_u_distance} variable latticeconst_converted equal 5.559938663989308*1 lattice fcc ${latticeconst_converted} lattice fcc 5.55993866398931 Lattice spacing in x,y,z = 5.55994 5.55994 5.55994 region simbox block 0 10 0 10 0 10 units lattice create_box 1 simbox Created orthogonal box = (0 0 0) to (55.5994 55.5994 55.5994) 1 by 1 by 1 MPI processor grid create_atoms 1 box Created 4000 atoms create_atoms CPU = 0.000423908 secs variable mass_converted equal 40.078*${_u_mass} variable mass_converted equal 40.078*1 # specify which KIM Model to use pair_style kim Morse_Shifted_GirifalcoWeizer_1959HighCutoff_Ca__MO_159753408472_002 WARNING: KIM Model does not provide `partialParticleVirial'; virial per atom will be zero (src/KIM/pair_kim.cpp:1089) pair_coeff * * Ca mass 1 ${mass_converted} mass 1 40.078 # initial volume variable v equal vol # assign formula variable V0 equal ${v} # evaluate initial value variable V0 equal 171873.927712051 variable V0_metal equal ${V0}/(${_u_distance}*${_u_distance}*${_u_distance}) variable V0_metal equal 171873.927712051/(${_u_distance}*${_u_distance}*${_u_distance}) variable V0_metal equal 171873.927712051/(1*${_u_distance}*${_u_distance}) variable V0_metal equal 171873.927712051/(1*1*${_u_distance}) variable V0_metal equal 171873.927712051/(1*1*1) variable V0_metal_times1000 equal ${V0_metal}*1000 variable V0_metal_times1000 equal 171873.927712051*1000 print "Initial system volume: ${V0_metal} Angstroms^3" Initial system volume: 171873.927712051 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 = 18.8661 ghost atom cutoff = 18.8661 binsize = 9.43305, bins = 6 6 6 1 neighbor lists, perpetual/occasional/extra = 1 0 0 (1) pair kim, perpetual attributes: full, newton off, cut 18.8661 pair build: full/bin/atomonly stencil: full/bin/3d bin: standard Per MPI rank memory allocation (min/avg/max) = 16.55 | 16.55 | 16.55 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 0 -7294.1844 -7294.1844 -7425.0405 -7425.0405 253.15 253.15 171873.93 171873.93 813.21047 813.21047 1000 -7151.0258 -7151.0258 -7284.2696 -7284.2696 257.76927 257.76927 174661.48 174661.48 291.85441 291.85441 Loop time of 134.664 on 1 procs for 1000 steps with 4000 atoms Performance: 0.642 ns/day, 37.407 hours/ns, 7.426 timesteps/s 43.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 | 133.44 | 133.44 | 133.44 | 0.0 | 99.09 Neigh | 0.48811 | 0.48811 | 0.48811 | 0.0 | 0.36 Comm | 0.2381 | 0.2381 | 0.2381 | 0.0 | 0.18 Output | 3.6955e-05 | 3.6955e-05 | 3.6955e-05 | 0.0 | 0.00 Modify | 0.45293 | 0.45293 | 0.45293 | 0.0 | 0.34 Other | | 0.04446 | | | 0.03 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 13969 ave 13969 max 13969 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: 2.55258e+06 ave 2.55258e+06 max 2.55258e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 2552578 Ave neighs/atom = 638.144 Neighbor list builds = 3 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) = 16.55 | 16.55 | 16.55 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 1000 -7151.0258 -7151.0258 -7284.2696 -7284.2696 257.76927 257.76927 174661.48 174661.48 291.85441 291.85441 2000 -7167.6459 -7167.6459 -7295.6289 -7295.6289 247.59169 247.59169 174669.07 174669.07 60.510374 60.510374 Loop time of 122.547 on 1 procs for 1000 steps with 4000 atoms Performance: 0.705 ns/day, 34.041 hours/ns, 8.160 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 | 121.22 | 121.22 | 121.22 | 0.0 | 98.92 Neigh | 0.80897 | 0.80897 | 0.80897 | 0.0 | 0.66 Comm | 0.20281 | 0.20281 | 0.20281 | 0.0 | 0.17 Output | 4.4823e-05 | 4.4823e-05 | 4.4823e-05 | 0.0 | 0.00 Modify | 0.25807 | 0.25807 | 0.25807 | 0.0 | 0.21 Other | | 0.05408 | | | 0.04 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 13969 ave 13969 max 13969 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: 2.55837e+06 ave 2.55837e+06 max 2.55837e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 2558370 Ave neighs/atom = 639.592 Neighbor list builds = 5 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) = 16.55 | 16.55 | 16.55 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 2000 -7167.6459 -7167.6459 -7295.6289 -7295.6289 247.59169 247.59169 174669.07 174669.07 60.510374 60.510374 3000 -7154.1556 -7154.1556 -7287.0827 -7287.0827 257.15654 257.15654 174944.21 174944.21 -24.110751 -24.110751 Loop time of 119.624 on 1 procs for 1000 steps with 4000 atoms Performance: 0.722 ns/day, 33.229 hours/ns, 8.360 timesteps/s 49.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 | 118.3 | 118.3 | 118.3 | 0.0 | 98.89 Neigh | 0.69744 | 0.69744 | 0.69744 | 0.0 | 0.58 Comm | 0.18893 | 0.18893 | 0.18893 | 0.0 | 0.16 Output | 4.6015e-05 | 4.6015e-05 | 4.6015e-05 | 0.0 | 0.00 Modify | 0.41732 | 0.41732 | 0.41732 | 0.0 | 0.35 Other | | 0.02373 | | | 0.02 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 13969 ave 13969 max 13969 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: 2.5583e+06 ave 2.5583e+06 max 2.5583e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 2558304 Ave neighs/atom = 639.576 Neighbor list builds = 4 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) = 16.55 | 16.55 | 16.55 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 3000 -7154.1556 -7154.1556 -7287.0827 -7287.0827 257.15654 257.15654 174944.21 174944.21 -24.110751 -24.110751 4000 -7163.589 -7163.589 -7292.089 -7292.089 248.59193 248.59193 174864.33 174864.33 -54.650662 -54.650662 Loop time of 117.931 on 1 procs for 1000 steps with 4000 atoms Performance: 0.733 ns/day, 32.758 hours/ns, 8.480 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 | 116.97 | 116.97 | 116.97 | 0.0 | 99.19 Neigh | 0.47047 | 0.47047 | 0.47047 | 0.0 | 0.40 Comm | 0.14849 | 0.14849 | 0.14849 | 0.0 | 0.13 Output | 4.0054e-05 | 4.0054e-05 | 4.0054e-05 | 0.0 | 0.00 Modify | 0.29434 | 0.29434 | 0.29434 | 0.0 | 0.25 Other | | 0.04426 | | | 0.04 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 13969 ave 13969 max 13969 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: 2.55996e+06 ave 2.55996e+06 max 2.55996e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 2559960 Ave neighs/atom = 639.99 Neighbor list builds = 3 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) = 16.55 | 16.55 | 16.55 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 4000 -7163.589 -7163.589 -7292.089 -7292.089 248.59193 248.59193 174864.33 174864.33 -54.650662 -54.650662 5000 -7157.8322 -7157.8322 -7289.7842 -7289.7842 255.26996 255.26996 174969.33 174969.33 -109.46048 -109.46048 Loop time of 118.775 on 1 procs for 1000 steps with 4000 atoms Performance: 0.727 ns/day, 32.993 hours/ns, 8.419 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 | 117.38 | 117.38 | 117.38 | 0.0 | 98.83 Neigh | 0.98157 | 0.98157 | 0.98157 | 0.0 | 0.83 Comm | 0.12923 | 0.12923 | 0.12923 | 0.0 | 0.11 Output | 5.0068e-05 | 5.0068e-05 | 5.0068e-05 | 0.0 | 0.00 Modify | 0.25742 | 0.25742 | 0.25742 | 0.0 | 0.22 Other | | 0.02381 | | | 0.02 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 13969 ave 13969 max 13969 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: 2.55919e+06 ave 2.55919e+06 max 2.55919e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 2559194 Ave neighs/atom = 639.798 Neighbor list builds = 6 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 = 250.032672848669, Press = 16.0781464528376 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 16.55 | 16.55 | 16.55 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 5000 -7157.8322 -7157.8322 -7289.7842 -7289.7842 255.26996 255.26996 174969.33 174969.33 -109.46048 -109.46048 6000 -7161.515 -7161.515 -7289.5185 -7289.5185 247.63142 247.63142 174948.08 174948.08 -104.67667 -104.67667 Loop time of 117.755 on 1 procs for 1000 steps with 4000 atoms Performance: 0.734 ns/day, 32.710 hours/ns, 8.492 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 | 116.45 | 116.45 | 116.45 | 0.0 | 98.89 Neigh | 0.74411 | 0.74411 | 0.74411 | 0.0 | 0.63 Comm | 0.16821 | 0.16821 | 0.16821 | 0.0 | 0.14 Output | 3.1948e-05 | 3.1948e-05 | 3.1948e-05 | 0.0 | 0.00 Modify | 0.30263 | 0.30263 | 0.30263 | 0.0 | 0.26 Other | | 0.09398 | | | 0.08 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 13969 ave 13969 max 13969 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: 2.56002e+06 ave 2.56002e+06 max 2.56002e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 2560018 Ave neighs/atom = 640.005 Neighbor list builds = 5 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.616855909251, Press = 3.85590400142728 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 16.55 | 16.55 | 16.55 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 6000 -7161.515 -7161.515 -7289.5185 -7289.5185 247.63142 247.63142 174948.08 174948.08 -104.67667 -104.67667 7000 -7157.1693 -7157.1693 -7287.428 -7287.428 251.99414 251.99414 174949.1 174949.1 -67.034043 -67.034043 Loop time of 127.299 on 1 procs for 1000 steps with 4000 atoms Performance: 0.679 ns/day, 35.361 hours/ns, 7.856 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 | 125.59 | 125.59 | 125.59 | 0.0 | 98.66 Neigh | 1.0946 | 1.0946 | 1.0946 | 0.0 | 0.86 Comm | 0.2089 | 0.2089 | 0.2089 | 0.0 | 0.16 Output | 3.314e-05 | 3.314e-05 | 3.314e-05 | 0.0 | 0.00 Modify | 0.38185 | 0.38185 | 0.38185 | 0.0 | 0.30 Other | | 0.02368 | | | 0.02 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 13969 ave 13969 max 13969 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: 2.55425e+06 ave 2.55425e+06 max 2.55425e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 2554252 Ave neighs/atom = 638.563 Neighbor list builds = 6 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.143867017521, Press = 6.8474298849349 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 16.55 | 16.55 | 16.55 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 7000 -7157.1693 -7157.1693 -7287.428 -7287.428 251.99414 251.99414 174949.1 174949.1 -67.034043 -67.034043 8000 -7160.4123 -7160.4123 -7289.7324 -7289.7324 250.17854 250.17854 174715.56 174715.56 120.05275 120.05275 Loop time of 136.26 on 1 procs for 1000 steps with 4000 atoms Performance: 0.634 ns/day, 37.850 hours/ns, 7.339 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 | 134.17 | 134.17 | 134.17 | 0.0 | 98.46 Neigh | 1.3579 | 1.3579 | 1.3579 | 0.0 | 1.00 Comm | 0.19043 | 0.19043 | 0.19043 | 0.0 | 0.14 Output | 4.8876e-05 | 4.8876e-05 | 4.8876e-05 | 0.0 | 0.00 Modify | 0.42286 | 0.42286 | 0.42286 | 0.0 | 0.31 Other | | 0.1234 | | | 0.09 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 13969 ave 13969 max 13969 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: 2.56283e+06 ave 2.56283e+06 max 2.56283e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 2562834 Ave neighs/atom = 640.708 Neighbor list builds = 7 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.44695993865, Press = 3.87762871792529 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 16.55 | 16.55 | 16.55 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 8000 -7160.4123 -7160.4123 -7289.7324 -7289.7324 250.17854 250.17854 174715.56 174715.56 120.05275 120.05275 9000 -7159.8977 -7159.8977 -7290.3298 -7290.3298 252.32968 252.32968 174704.74 174704.74 121.89625 121.89625 Loop time of 134.979 on 1 procs for 1000 steps with 4000 atoms Performance: 0.640 ns/day, 37.494 hours/ns, 7.409 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 | 133.59 | 133.59 | 133.59 | 0.0 | 98.97 Neigh | 0.80696 | 0.80696 | 0.80696 | 0.0 | 0.60 Comm | 0.22772 | 0.22772 | 0.22772 | 0.0 | 0.17 Output | 2.5988e-05 | 2.5988e-05 | 2.5988e-05 | 0.0 | 0.00 Modify | 0.30654 | 0.30654 | 0.30654 | 0.0 | 0.23 Other | | 0.04357 | | | 0.03 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 13969 ave 13969 max 13969 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: 2.55669e+06 ave 2.55669e+06 max 2.55669e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 2556688 Ave neighs/atom = 639.172 Neighbor list builds = 5 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.28149645756, Press = 1.26206205921758 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 16.55 | 16.55 | 16.55 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 9000 -7159.8977 -7159.8977 -7290.3298 -7290.3298 252.32968 252.32968 174704.74 174704.74 121.89625 121.89625 10000 -7160.5899 -7160.5899 -7292.003 -7292.003 254.2274 254.2274 174686.24 174686.24 126.20867 126.20867 Loop time of 134.757 on 1 procs for 1000 steps with 4000 atoms Performance: 0.641 ns/day, 37.433 hours/ns, 7.421 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 | 133.1 | 133.1 | 133.1 | 0.0 | 98.77 Neigh | 1.1256 | 1.1256 | 1.1256 | 0.0 | 0.84 Comm | 0.14892 | 0.14892 | 0.14892 | 0.0 | 0.11 Output | 3.314e-05 | 3.314e-05 | 3.314e-05 | 0.0 | 0.00 Modify | 0.30471 | 0.30471 | 0.30471 | 0.0 | 0.23 Other | | 0.07359 | | | 0.05 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 13969 ave 13969 max 13969 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: 2.55965e+06 ave 2.55965e+06 max 2.55965e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 2559650 Ave neighs/atom = 639.913 Neighbor list builds = 6 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.572974011442, Press = -0.274902587319762 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 16.55 | 16.55 | 16.55 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 10000 -7160.5899 -7160.5899 -7292.003 -7292.003 254.2274 254.2274 174686.24 174686.24 126.20867 126.20867 11000 -7163.3337 -7163.3337 -7291.5853 -7291.5853 248.11141 248.11141 174626.25 174626.25 169.45919 169.45919 Loop time of 132.207 on 1 procs for 1000 steps with 4000 atoms Performance: 0.654 ns/day, 36.724 hours/ns, 7.564 timesteps/s 44.5% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 131.18 | 131.18 | 131.18 | 0.0 | 99.22 Neigh | 0.44524 | 0.44524 | 0.44524 | 0.0 | 0.34 Comm | 0.12678 | 0.12678 | 0.12678 | 0.0 | 0.10 Output | 4.9114e-05 | 4.9114e-05 | 4.9114e-05 | 0.0 | 0.00 Modify | 0.41047 | 0.41047 | 0.41047 | 0.0 | 0.31 Other | | 0.04367 | | | 0.03 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 13969 ave 13969 max 13969 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: 2.55866e+06 ave 2.55866e+06 max 2.55866e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 2558662 Ave neighs/atom = 639.665 Neighbor list builds = 3 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.481037968083, Press = -0.45374650668201 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 16.55 | 16.55 | 16.55 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 11000 -7163.3337 -7163.3337 -7291.5853 -7291.5853 248.11141 248.11141 174626.25 174626.25 169.45919 169.45919 12000 -7153.3399 -7153.3399 -7287.235 -7287.235 259.0292 259.0292 174659.62 174659.62 242.75482 242.75482 Loop time of 114.593 on 1 procs for 1000 steps with 4000 atoms Performance: 0.754 ns/day, 31.831 hours/ns, 8.727 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 | 113.31 | 113.31 | 113.31 | 0.0 | 98.88 Neigh | 0.74599 | 0.74599 | 0.74599 | 0.0 | 0.65 Comm | 0.20942 | 0.20942 | 0.20942 | 0.0 | 0.18 Output | 3.1948e-05 | 3.1948e-05 | 3.1948e-05 | 0.0 | 0.00 Modify | 0.26138 | 0.26138 | 0.26138 | 0.0 | 0.23 Other | | 0.06382 | | | 0.06 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 13969 ave 13969 max 13969 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: 2.55298e+06 ave 2.55298e+06 max 2.55298e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 2552984 Ave neighs/atom = 638.246 Neighbor list builds = 5 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.48908925213, Press = -1.76265031224311 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 16.55 | 16.55 | 16.55 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 12000 -7153.3399 -7153.3399 -7287.235 -7287.235 259.0292 259.0292 174659.62 174659.62 242.75482 242.75482 13000 -7158.9577 -7158.9577 -7290.7886 -7290.7886 255.03571 255.03571 174766.82 174766.82 68.636442 68.636442 Loop time of 116.169 on 1 procs for 1000 steps with 4000 atoms Performance: 0.744 ns/day, 32.269 hours/ns, 8.608 timesteps/s 50.8% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 114.86 | 114.86 | 114.86 | 0.0 | 98.88 Neigh | 0.85269 | 0.85269 | 0.85269 | 0.0 | 0.73 Comm | 0.16785 | 0.16785 | 0.16785 | 0.0 | 0.14 Output | 5.4121e-05 | 5.4121e-05 | 5.4121e-05 | 0.0 | 0.00 Modify | 0.26126 | 0.26126 | 0.26126 | 0.0 | 0.22 Other | | 0.02361 | | | 0.02 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 13969 ave 13969 max 13969 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: 2.55681e+06 ave 2.55681e+06 max 2.55681e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 2556806 Ave neighs/atom = 639.202 Neighbor list builds = 5 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.670401352885, Press = -2.49400103985068 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 16.55 | 16.55 | 16.55 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 13000 -7158.9577 -7158.9577 -7290.7886 -7290.7886 255.03571 255.03571 174766.82 174766.82 68.636442 68.636442 14000 -7159.7111 -7159.7111 -7291.2456 -7291.2456 254.46244 254.46244 174914.99 174914.99 -75.118901 -75.118901 Loop time of 128.16 on 1 procs for 1000 steps with 4000 atoms Performance: 0.674 ns/day, 35.600 hours/ns, 7.803 timesteps/s 45.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 | 126.76 | 126.76 | 126.76 | 0.0 | 98.90 Neigh | 0.8008 | 0.8008 | 0.8008 | 0.0 | 0.62 Comm | 0.19434 | 0.19434 | 0.19434 | 0.0 | 0.15 Output | 3.4094e-05 | 3.4094e-05 | 3.4094e-05 | 0.0 | 0.00 Modify | 0.32459 | 0.32459 | 0.32459 | 0.0 | 0.25 Other | | 0.08383 | | | 0.07 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 13969 ave 13969 max 13969 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: 2.55481e+06 ave 2.55481e+06 max 2.55481e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 2554814 Ave neighs/atom = 638.703 Neighbor list builds = 5 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.59918728902, Press = -1.02965311425042 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 16.55 | 16.55 | 16.55 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 14000 -7159.7111 -7159.7111 -7291.2456 -7291.2456 254.46244 254.46244 174914.99 174914.99 -75.118901 -75.118901 15000 -7157.0582 -7157.0582 -7289.56 -7289.56 256.33373 256.33373 174958.93 174958.93 -91.632435 -91.632435 Loop time of 126.966 on 1 procs for 1000 steps with 4000 atoms Performance: 0.680 ns/day, 35.268 hours/ns, 7.876 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 | 125.6 | 125.6 | 125.6 | 0.0 | 98.92 Neigh | 0.84737 | 0.84737 | 0.84737 | 0.0 | 0.67 Comm | 0.22784 | 0.22784 | 0.22784 | 0.0 | 0.18 Output | 3.3855e-05 | 3.3855e-05 | 3.3855e-05 | 0.0 | 0.00 Modify | 0.26971 | 0.26971 | 0.26971 | 0.0 | 0.21 Other | | 0.02338 | | | 0.02 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 13969 ave 13969 max 13969 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: 2.55586e+06 ave 2.55586e+06 max 2.55586e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 2555856 Ave neighs/atom = 638.964 Neighbor list builds = 5 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.70938721827, Press = -0.784332089683102 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 16.55 | 16.55 | 16.55 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 15000 -7157.0582 -7157.0582 -7289.56 -7289.56 256.33373 256.33373 174958.93 174958.93 -91.632435 -91.632435 16000 -7159.4746 -7159.4746 -7289.8436 -7289.8436 252.20778 252.20778 175023.17 175023.17 -167.44799 -167.44799 Loop time of 133.304 on 1 procs for 1000 steps with 4000 atoms Performance: 0.648 ns/day, 37.029 hours/ns, 7.502 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 | 132.1 | 132.1 | 132.1 | 0.0 | 99.09 Neigh | 0.61578 | 0.61578 | 0.61578 | 0.0 | 0.46 Comm | 0.22778 | 0.22778 | 0.22778 | 0.0 | 0.17 Output | 2.5988e-05 | 2.5988e-05 | 2.5988e-05 | 0.0 | 0.00 Modify | 0.32131 | 0.32131 | 0.32131 | 0.0 | 0.24 Other | | 0.0437 | | | 0.03 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 13969 ave 13969 max 13969 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: 2.55611e+06 ave 2.55611e+06 max 2.55611e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 2556108 Ave neighs/atom = 639.027 Neighbor list builds = 4 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.688011145507, Press = -0.446859975920684 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 16.55 | 16.55 | 16.55 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 16000 -7159.4746 -7159.4746 -7289.8436 -7289.8436 252.20778 252.20778 175023.17 175023.17 -167.44799 -167.44799 17000 -7159.0489 -7159.0489 -7289.7197 -7289.7197 252.79159 252.79159 175206.76 175206.76 -323.39507 -323.39507 Loop time of 147.72 on 1 procs for 1000 steps with 4000 atoms Performance: 0.585 ns/day, 41.033 hours/ns, 6.770 timesteps/s 40.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 | 145.91 | 145.91 | 145.91 | 0.0 | 98.77 Neigh | 1.1253 | 1.1253 | 1.1253 | 0.0 | 0.76 Comm | 0.2881 | 0.2881 | 0.2881 | 0.0 | 0.20 Output | 5.5075e-05 | 5.5075e-05 | 5.5075e-05 | 0.0 | 0.00 Modify | 0.30704 | 0.30704 | 0.30704 | 0.0 | 0.21 Other | | 0.09376 | | | 0.06 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 13969 ave 13969 max 13969 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: 2.55593e+06 ave 2.55593e+06 max 2.55593e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 2555930 Ave neighs/atom = 638.982 Neighbor list builds = 6 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.569024594736, Press = -0.29784344516721 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 16.55 | 16.55 | 16.55 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 17000 -7159.0489 -7159.0489 -7289.7197 -7289.7197 252.79159 252.79159 175206.76 175206.76 -323.39507 -323.39507 18000 -7157.2086 -7157.2086 -7288.4036 -7288.4036 253.80569 253.80569 175438.59 175438.59 -515.21867 -515.21867 Loop time of 148.905 on 1 procs for 1000 steps with 4000 atoms Performance: 0.580 ns/day, 41.362 hours/ns, 6.716 timesteps/s 39.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 | 147.26 | 147.26 | 147.26 | 0.0 | 98.90 Neigh | 0.63911 | 0.63911 | 0.63911 | 0.0 | 0.43 Comm | 0.3587 | 0.3587 | 0.3587 | 0.0 | 0.24 Output | 3.4094e-05 | 3.4094e-05 | 3.4094e-05 | 0.0 | 0.00 Modify | 0.57219 | 0.57219 | 0.57219 | 0.0 | 0.38 Other | | 0.07371 | | | 0.05 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 13969 ave 13969 max 13969 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: 2.55119e+06 ave 2.55119e+06 max 2.55119e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 2551194 Ave neighs/atom = 637.798 Neighbor list builds = 4 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.482975349759, Press = 0.495175599461447 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 16.55 | 16.55 | 16.55 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 18000 -7157.2086 -7157.2086 -7288.4036 -7288.4036 253.80569 253.80569 175438.59 175438.59 -515.21867 -515.21867 19000 -7159.834 -7159.834 -7290.2937 -7290.2937 252.38306 252.38306 175044.55 175044.55 -190.82672 -190.82672 Loop time of 146.634 on 1 procs for 1000 steps with 4000 atoms Performance: 0.589 ns/day, 40.732 hours/ns, 6.820 timesteps/s 40.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 | 144.99 | 144.99 | 144.99 | 0.0 | 98.88 Neigh | 1.1596 | 1.1596 | 1.1596 | 0.0 | 0.79 Comm | 0.19887 | 0.19887 | 0.19887 | 0.0 | 0.14 Output | 2.6941e-05 | 2.6941e-05 | 2.6941e-05 | 0.0 | 0.00 Modify | 0.2407 | 0.2407 | 0.2407 | 0.0 | 0.16 Other | | 0.04346 | | | 0.03 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 13969 ave 13969 max 13969 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: 2.56015e+06 ave 2.56015e+06 max 2.56015e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 2560150 Ave neighs/atom = 640.038 Neighbor list builds = 7 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.548974302782, Press = 0.473302283888975 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 16.55 | 16.55 | 16.55 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 19000 -7159.834 -7159.834 -7290.2937 -7290.2937 252.38306 252.38306 175044.55 175044.55 -190.82672 -190.82672 20000 -7162.9843 -7162.9843 -7292.139 -7292.139 249.85861 249.85861 174882.02 174882.02 -72.129035 -72.129035 Loop time of 131.41 on 1 procs for 1000 steps with 4000 atoms Performance: 0.657 ns/day, 36.503 hours/ns, 7.610 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 | 130.1 | 130.1 | 130.1 | 0.0 | 99.00 Neigh | 0.62972 | 0.62972 | 0.62972 | 0.0 | 0.48 Comm | 0.14764 | 0.14764 | 0.14764 | 0.0 | 0.11 Output | 3.1948e-05 | 3.1948e-05 | 3.1948e-05 | 0.0 | 0.00 Modify | 0.47205 | 0.47205 | 0.47205 | 0.0 | 0.36 Other | | 0.06379 | | | 0.05 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 13969 ave 13969 max 13969 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: 2.55777e+06 ave 2.55777e+06 max 2.55777e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 2557768 Ave neighs/atom = 639.442 Neighbor list builds = 4 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.480627013699, Press = 0.672082563608585 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 16.55 | 16.55 | 16.55 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 20000 -7162.9843 -7162.9843 -7292.139 -7292.139 249.85861 249.85861 174882.02 174882.02 -72.129035 -72.129035 21000 -7159.4462 -7159.4462 -7290.7546 -7290.7546 254.02494 254.02494 174841.13 174841.13 -1.5238993 -1.5238993 Loop time of 119.335 on 1 procs for 1000 steps with 4000 atoms Performance: 0.724 ns/day, 33.149 hours/ns, 8.380 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 | 117.92 | 117.92 | 117.92 | 0.0 | 98.82 Neigh | 0.82888 | 0.82888 | 0.82888 | 0.0 | 0.69 Comm | 0.16819 | 0.16819 | 0.16819 | 0.0 | 0.14 Output | 3.1948e-05 | 3.1948e-05 | 3.1948e-05 | 0.0 | 0.00 Modify | 0.39222 | 0.39222 | 0.39222 | 0.0 | 0.33 Other | | 0.02398 | | | 0.02 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 13969 ave 13969 max 13969 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: 2.5589e+06 ave 2.5589e+06 max 2.5589e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 2558902 Ave neighs/atom = 639.726 Neighbor list builds = 5 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.433949786962, Press = 0.612637729181713 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 16.55 | 16.55 | 16.55 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 21000 -7159.4462 -7159.4462 -7290.7546 -7290.7546 254.02494 254.02494 174841.13 174841.13 -1.5238993 -1.5238993 22000 -7160.7056 -7160.7056 -7290.4812 -7290.4812 251.05965 251.05965 174735.56 174735.56 85.385745 85.385745 Loop time of 106.703 on 1 procs for 1000 steps with 4000 atoms Performance: 0.810 ns/day, 29.640 hours/ns, 9.372 timesteps/s 55.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 | 105.9 | 105.9 | 105.9 | 0.0 | 99.24 Neigh | 0.31358 | 0.31358 | 0.31358 | 0.0 | 0.29 Comm | 0.16809 | 0.16809 | 0.16809 | 0.0 | 0.16 Output | 3.4809e-05 | 3.4809e-05 | 3.4809e-05 | 0.0 | 0.00 Modify | 0.30248 | 0.30248 | 0.30248 | 0.0 | 0.28 Other | | 0.02367 | | | 0.02 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 13969 ave 13969 max 13969 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: 2.56068e+06 ave 2.56068e+06 max 2.56068e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 2560682 Ave neighs/atom = 640.17 Neighbor list builds = 3 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.358585014834, Press = 0.534773274939767 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 16.55 | 16.55 | 16.55 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 22000 -7160.7056 -7160.7056 -7290.4812 -7290.4812 251.05965 251.05965 174735.56 174735.56 85.385745 85.385745 23000 -7163.8627 -7163.8627 -7293.5917 -7293.5917 250.96945 250.96945 174589.49 174589.49 174.2241 174.2241 Loop time of 127.1 on 1 procs for 1000 steps with 4000 atoms Performance: 0.680 ns/day, 35.306 hours/ns, 7.868 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 | 125.67 | 125.67 | 125.67 | 0.0 | 98.87 Neigh | 0.83408 | 0.83408 | 0.83408 | 0.0 | 0.66 Comm | 0.20716 | 0.20716 | 0.20716 | 0.0 | 0.16 Output | 3.2902e-05 | 3.2902e-05 | 3.2902e-05 | 0.0 | 0.00 Modify | 0.32888 | 0.32888 | 0.32888 | 0.0 | 0.26 Other | | 0.06433 | | | 0.05 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 13969 ave 13969 max 13969 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: 2.56275e+06 ave 2.56275e+06 max 2.56275e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 2562754 Ave neighs/atom = 640.688 Neighbor list builds = 5 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.305245779124, Press = 0.329843236705736 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 16.55 | 16.55 | 16.55 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 23000 -7163.8627 -7163.8627 -7293.5917 -7293.5917 250.96945 250.96945 174589.49 174589.49 174.2241 174.2241 24000 -7159.2911 -7159.2911 -7290.0646 -7290.0646 252.99013 252.99013 174685.65 174685.65 147.08064 147.08064 Loop time of 129.961 on 1 procs for 1000 steps with 4000 atoms Performance: 0.665 ns/day, 36.100 hours/ns, 7.695 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 | 128.83 | 128.83 | 128.83 | 0.0 | 99.13 Neigh | 0.4751 | 0.4751 | 0.4751 | 0.0 | 0.37 Comm | 0.22748 | 0.22748 | 0.22748 | 0.0 | 0.18 Output | 3.5048e-05 | 3.5048e-05 | 3.5048e-05 | 0.0 | 0.00 Modify | 0.34786 | 0.34786 | 0.34786 | 0.0 | 0.27 Other | | 0.08418 | | | 0.06 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 13969 ave 13969 max 13969 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: 2.55671e+06 ave 2.55671e+06 max 2.55671e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 2556710 Ave neighs/atom = 639.178 Neighbor list builds = 3 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.208105534724, Press = 0.204976593099103 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 16.55 | 16.55 | 16.55 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 24000 -7159.2911 -7159.2911 -7290.0646 -7290.0646 252.99013 252.99013 174685.65 174685.65 147.08064 147.08064 25000 -7161.8669 -7161.8669 -7291.2703 -7291.2703 250.33953 250.33953 174655.45 174655.45 147.91587 147.91587 Loop time of 129.325 on 1 procs for 1000 steps with 4000 atoms Performance: 0.668 ns/day, 35.924 hours/ns, 7.732 timesteps/s 46.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 | 127.81 | 127.81 | 127.81 | 0.0 | 98.82 Neigh | 1.0203 | 1.0203 | 1.0203 | 0.0 | 0.79 Comm | 0.13076 | 0.13076 | 0.13076 | 0.0 | 0.10 Output | 3.3855e-05 | 3.3855e-05 | 3.3855e-05 | 0.0 | 0.00 Modify | 0.32447 | 0.32447 | 0.32447 | 0.0 | 0.25 Other | | 0.04406 | | | 0.03 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 13969 ave 13969 max 13969 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: 2.55884e+06 ave 2.55884e+06 max 2.55884e+06 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 2558842 Ave neighs/atom = 639.711 Neighbor list builds = 6 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 174840.774513175 print "LAMMPS calculation completed" LAMMPS calculation completed quit 0