# 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.0304348 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_003 WARNING: KIM Model does not provide `partialParticleVirial'; virial per atom will be zero (src/KIM/pair_kim.cpp:979) 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 120.66 on 1 procs for 1000 steps with 4000 atoms Performance: 0.716 ns/day, 33.517 hours/ns, 8.288 timesteps/s 47.7% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 119.77 | 119.77 | 119.77 | 0.0 | 99.26 Neigh | 0.43083 | 0.43083 | 0.43083 | 0.0 | 0.36 Comm | 0.12362 | 0.12362 | 0.12362 | 0.0 | 0.10 Output | 3.6001e-05 | 3.6001e-05 | 3.6001e-05 | 0.0 | 0.00 Modify | 0.29443 | 0.29443 | 0.29443 | 0.0 | 0.24 Other | | 0.04366 | | | 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.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.56 | 16.56 | 16.56 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 125.569 on 1 procs for 1000 steps with 4000 atoms Performance: 0.688 ns/day, 34.880 hours/ns, 7.964 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 | 124.23 | 124.23 | 124.23 | 0.0 | 98.94 Neigh | 0.73446 | 0.73446 | 0.73446 | 0.0 | 0.58 Comm | 0.25812 | 0.25812 | 0.25812 | 0.0 | 0.21 Output | 4.2915e-05 | 4.2915e-05 | 4.2915e-05 | 0.0 | 0.00 Modify | 0.30018 | 0.30018 | 0.30018 | 0.0 | 0.24 Other | | 0.04112 | | | 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.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.56 | 16.56 | 16.56 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 149.276 on 1 procs for 1000 steps with 4000 atoms Performance: 0.579 ns/day, 41.465 hours/ns, 6.699 timesteps/s 39.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 | 147.83 | 147.83 | 147.83 | 0.0 | 99.03 Neigh | 0.77221 | 0.77221 | 0.77221 | 0.0 | 0.52 Comm | 0.24711 | 0.24711 | 0.24711 | 0.0 | 0.17 Output | 5.9128e-05 | 5.9128e-05 | 5.9128e-05 | 0.0 | 0.00 Modify | 0.36397 | 0.36397 | 0.36397 | 0.0 | 0.24 Other | | 0.06345 | | | 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.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.56 | 16.56 | 16.56 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 140.009 on 1 procs for 1000 steps with 4000 atoms Performance: 0.617 ns/day, 38.892 hours/ns, 7.142 timesteps/s 41.8% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 139.09 | 139.09 | 139.09 | 0.0 | 99.34 Neigh | 0.47712 | 0.47712 | 0.47712 | 0.0 | 0.34 Comm | 0.12528 | 0.12528 | 0.12528 | 0.0 | 0.09 Output | 4.3869e-05 | 4.3869e-05 | 4.3869e-05 | 0.0 | 0.00 Modify | 0.25412 | 0.25412 | 0.25412 | 0.0 | 0.18 Other | | 0.06386 | | | 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.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.56 | 16.56 | 16.56 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 135.354 on 1 procs for 1000 steps with 4000 atoms Performance: 0.638 ns/day, 37.598 hours/ns, 7.388 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.67 | 133.67 | 133.67 | 0.0 | 98.76 Neigh | 1.0336 | 1.0336 | 1.0336 | 0.0 | 0.76 Comm | 0.18626 | 0.18626 | 0.18626 | 0.0 | 0.14 Output | 4.9114e-05 | 4.9114e-05 | 4.9114e-05 | 0.0 | 0.00 Modify | 0.43623 | 0.43623 | 0.43623 | 0.0 | 0.32 Other | | 0.02863 | | | 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.56 | 16.56 | 16.56 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 132.3 on 1 procs for 1000 steps with 4000 atoms Performance: 0.653 ns/day, 36.750 hours/ns, 7.559 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 | 130.8 | 130.8 | 130.8 | 0.0 | 98.87 Neigh | 0.86399 | 0.86399 | 0.86399 | 0.0 | 0.65 Comm | 0.2567 | 0.2567 | 0.2567 | 0.0 | 0.19 Output | 3.2902e-05 | 3.2902e-05 | 3.2902e-05 | 0.0 | 0.00 Modify | 0.28911 | 0.28911 | 0.28911 | 0.0 | 0.22 Other | | 0.08627 | | | 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.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.56 | 16.56 | 16.56 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 136.218 on 1 procs for 1000 steps with 4000 atoms Performance: 0.634 ns/day, 37.838 hours/ns, 7.341 timesteps/s 43.1% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 134.74 | 134.74 | 134.74 | 0.0 | 98.92 Neigh | 1.025 | 1.025 | 1.025 | 0.0 | 0.75 Comm | 0.12596 | 0.12596 | 0.12596 | 0.0 | 0.09 Output | 3.2902e-05 | 3.2902e-05 | 3.2902e-05 | 0.0 | 0.00 Modify | 0.23927 | 0.23927 | 0.23927 | 0.0 | 0.18 Other | | 0.08346 | | | 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.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.56 | 16.56 | 16.56 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 134.014 on 1 procs for 1000 steps with 4000 atoms Performance: 0.645 ns/day, 37.226 hours/ns, 7.462 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 | 132.17 | 132.17 | 132.17 | 0.0 | 98.63 Neigh | 1.2119 | 1.2119 | 1.2119 | 0.0 | 0.90 Comm | 0.14635 | 0.14635 | 0.14635 | 0.0 | 0.11 Output | 3.314e-05 | 3.314e-05 | 3.314e-05 | 0.0 | 0.00 Modify | 0.45982 | 0.45982 | 0.45982 | 0.0 | 0.34 Other | | 0.02326 | | | 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.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.56 | 16.56 | 16.56 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 126.423 on 1 procs for 1000 steps with 4000 atoms Performance: 0.683 ns/day, 35.118 hours/ns, 7.910 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.2 | 125.2 | 125.2 | 0.0 | 99.03 Neigh | 0.75767 | 0.75767 | 0.75767 | 0.0 | 0.60 Comm | 0.16385 | 0.16385 | 0.16385 | 0.0 | 0.13 Output | 2.408e-05 | 2.408e-05 | 2.408e-05 | 0.0 | 0.00 Modify | 0.27912 | 0.27912 | 0.27912 | 0.0 | 0.22 Other | | 0.02321 | | | 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.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.56 | 16.56 | 16.56 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 131.409 on 1 procs for 1000 steps with 4000 atoms Performance: 0.657 ns/day, 36.502 hours/ns, 7.610 timesteps/s 44.9% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 129.79 | 129.79 | 129.79 | 0.0 | 98.76 Neigh | 1.0332 | 1.0332 | 1.0332 | 0.0 | 0.79 Comm | 0.14669 | 0.14669 | 0.14669 | 0.0 | 0.11 Output | 3.314e-05 | 3.314e-05 | 3.314e-05 | 0.0 | 0.00 Modify | 0.36016 | 0.36016 | 0.36016 | 0.0 | 0.27 Other | | 0.08344 | | | 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.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.56 | 16.56 | 16.56 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 129.984 on 1 procs for 1000 steps with 4000 atoms Performance: 0.665 ns/day, 36.107 hours/ns, 7.693 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 | 128.96 | 128.96 | 128.96 | 0.0 | 99.21 Neigh | 0.48032 | 0.48032 | 0.48032 | 0.0 | 0.37 Comm | 0.13523 | 0.13523 | 0.13523 | 0.0 | 0.10 Output | 3.0994e-05 | 3.0994e-05 | 3.0994e-05 | 0.0 | 0.00 Modify | 0.30927 | 0.30927 | 0.30927 | 0.0 | 0.24 Other | | 0.1037 | | | 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.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.56 | 16.56 | 16.56 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 127.685 on 1 procs for 1000 steps with 4000 atoms Performance: 0.677 ns/day, 35.468 hours/ns, 7.832 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 | 126.43 | 126.43 | 126.43 | 0.0 | 99.02 Neigh | 0.73601 | 0.73601 | 0.73601 | 0.0 | 0.58 Comm | 0.14753 | 0.14753 | 0.14753 | 0.0 | 0.12 Output | 3.314e-05 | 3.314e-05 | 3.314e-05 | 0.0 | 0.00 Modify | 0.32977 | 0.32977 | 0.32977 | 0.0 | 0.26 Other | | 0.04354 | | | 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.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.56 | 16.56 | 16.56 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 111.826 on 1 procs for 1000 steps with 4000 atoms Performance: 0.773 ns/day, 31.063 hours/ns, 8.942 timesteps/s 52.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 | 110.44 | 110.44 | 110.44 | 0.0 | 98.76 Neigh | 0.80429 | 0.80429 | 0.80429 | 0.0 | 0.72 Comm | 0.18682 | 0.18682 | 0.18682 | 0.0 | 0.17 Output | 3.9101e-05 | 3.9101e-05 | 3.9101e-05 | 0.0 | 0.00 Modify | 0.33069 | 0.33069 | 0.33069 | 0.0 | 0.30 Other | | 0.06358 | | | 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.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.56 | 16.56 | 16.56 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 111.4 on 1 procs for 1000 steps with 4000 atoms Performance: 0.776 ns/day, 30.944 hours/ns, 8.977 timesteps/s 52.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 | 110.17 | 110.17 | 110.17 | 0.0 | 98.89 Neigh | 0.70718 | 0.70718 | 0.70718 | 0.0 | 0.63 Comm | 0.17529 | 0.17529 | 0.17529 | 0.0 | 0.16 Output | 2.6941e-05 | 2.6941e-05 | 2.6941e-05 | 0.0 | 0.00 Modify | 0.3082 | 0.3082 | 0.3082 | 0.0 | 0.28 Other | | 0.04317 | | | 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.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.56 | 16.56 | 16.56 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 92.9485 on 1 procs for 1000 steps with 4000 atoms Performance: 0.930 ns/day, 25.819 hours/ns, 10.759 timesteps/s 63.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 | 91.948 | 91.948 | 91.948 | 0.0 | 98.92 Neigh | 0.61892 | 0.61892 | 0.61892 | 0.0 | 0.67 Comm | 0.10659 | 0.10659 | 0.10659 | 0.0 | 0.11 Output | 3.1948e-05 | 3.1948e-05 | 3.1948e-05 | 0.0 | 0.00 Modify | 0.2511 | 0.2511 | 0.2511 | 0.0 | 0.27 Other | | 0.02346 | | | 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.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.56 | 16.56 | 16.56 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 88.9634 on 1 procs for 1000 steps with 4000 atoms Performance: 0.971 ns/day, 24.712 hours/ns, 11.241 timesteps/s 65.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 | 88.007 | 88.007 | 88.007 | 0.0 | 98.92 Neigh | 0.60904 | 0.60904 | 0.60904 | 0.0 | 0.68 Comm | 0.084948 | 0.084948 | 0.084948 | 0.0 | 0.10 Output | 3.2902e-05 | 3.2902e-05 | 3.2902e-05 | 0.0 | 0.00 Modify | 0.23913 | 0.23913 | 0.23913 | 0.0 | 0.27 Other | | 0.02327 | | | 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.56 | 16.56 | 16.56 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 79.985 on 1 procs for 1000 steps with 4000 atoms Performance: 1.080 ns/day, 22.218 hours/ns, 12.502 timesteps/s 73.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 | 79.109 | 79.109 | 79.109 | 0.0 | 98.90 Neigh | 0.5363 | 0.5363 | 0.5363 | 0.0 | 0.67 Comm | 0.13753 | 0.13753 | 0.13753 | 0.0 | 0.17 Output | 4.1962e-05 | 4.1962e-05 | 4.1962e-05 | 0.0 | 0.00 Modify | 0.17919 | 0.17919 | 0.17919 | 0.0 | 0.22 Other | | 0.023 | | | 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.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.56 | 16.56 | 16.56 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 84.6897 on 1 procs for 1000 steps with 4000 atoms Performance: 1.020 ns/day, 23.525 hours/ns, 11.808 timesteps/s 69.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 | 83.807 | 83.807 | 83.807 | 0.0 | 98.96 Neigh | 0.51495 | 0.51495 | 0.51495 | 0.0 | 0.61 Comm | 0.12552 | 0.12552 | 0.12552 | 0.0 | 0.15 Output | 3.2902e-05 | 3.2902e-05 | 3.2902e-05 | 0.0 | 0.00 Modify | 0.21916 | 0.21916 | 0.21916 | 0.0 | 0.26 Other | | 0.02328 | | | 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.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.56 | 16.56 | 16.56 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 79.9868 on 1 procs for 1000 steps with 4000 atoms Performance: 1.080 ns/day, 22.219 hours/ns, 12.502 timesteps/s 73.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 | 78.685 | 78.685 | 78.685 | 0.0 | 98.37 Neigh | 0.95155 | 0.95155 | 0.95155 | 0.0 | 1.19 Comm | 0.12804 | 0.12804 | 0.12804 | 0.0 | 0.16 Output | 2.9802e-05 | 2.9802e-05 | 2.9802e-05 | 0.0 | 0.00 Modify | 0.19885 | 0.19885 | 0.19885 | 0.0 | 0.25 Other | | 0.02314 | | | 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.56 | 16.56 | 16.56 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 68.4896 on 1 procs for 1000 steps with 4000 atoms Performance: 1.262 ns/day, 19.025 hours/ns, 14.601 timesteps/s 85.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 | 67.846 | 67.846 | 67.846 | 0.0 | 99.06 Neigh | 0.33436 | 0.33436 | 0.33436 | 0.0 | 0.49 Comm | 0.085217 | 0.085217 | 0.085217 | 0.0 | 0.12 Output | 3.314e-05 | 3.314e-05 | 3.314e-05 | 0.0 | 0.00 Modify | 0.20068 | 0.20068 | 0.20068 | 0.0 | 0.29 Other | | 0.02363 | | | 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.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.56 | 16.56 | 16.56 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 65.6749 on 1 procs for 1000 steps with 4000 atoms Performance: 1.316 ns/day, 18.243 hours/ns, 15.227 timesteps/s 89.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 | 64.945 | 64.945 | 64.945 | 0.0 | 98.89 Neigh | 0.46011 | 0.46011 | 0.46011 | 0.0 | 0.70 Comm | 0.085707 | 0.085707 | 0.085707 | 0.0 | 0.13 Output | 3.0994e-05 | 3.0994e-05 | 3.0994e-05 | 0.0 | 0.00 Modify | 0.1606 | 0.1606 | 0.1606 | 0.0 | 0.24 Other | | 0.02364 | | | 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.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.56 | 16.56 | 16.56 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 80.6984 on 1 procs for 1000 steps with 4000 atoms Performance: 1.071 ns/day, 22.416 hours/ns, 12.392 timesteps/s 72.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 | 80.122 | 80.122 | 80.122 | 0.0 | 99.29 Neigh | 0.22821 | 0.22821 | 0.22821 | 0.0 | 0.28 Comm | 0.10524 | 0.10524 | 0.10524 | 0.0 | 0.13 Output | 3.0041e-05 | 3.0041e-05 | 3.0041e-05 | 0.0 | 0.00 Modify | 0.21912 | 0.21912 | 0.21912 | 0.0 | 0.27 Other | | 0.02359 | | | 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.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.56 | 16.56 | 16.56 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 92.5118 on 1 procs for 1000 steps with 4000 atoms Performance: 0.934 ns/day, 25.698 hours/ns, 10.809 timesteps/s 62.9% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 91.328 | 91.328 | 91.328 | 0.0 | 98.72 Neigh | 0.62067 | 0.62067 | 0.62067 | 0.0 | 0.67 Comm | 0.26577 | 0.26577 | 0.26577 | 0.0 | 0.29 Output | 0.0038841 | 0.0038841 | 0.0038841 | 0.0 | 0.00 Modify | 0.26924 | 0.26924 | 0.26924 | 0.0 | 0.29 Other | | 0.02405 | | | 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.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.56 | 16.56 | 16.56 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 99.8949 on 1 procs for 1000 steps with 4000 atoms Performance: 0.865 ns/day, 27.749 hours/ns, 10.011 timesteps/s 57.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 | 98.908 | 98.908 | 98.908 | 0.0 | 99.01 Neigh | 0.48967 | 0.48967 | 0.48967 | 0.0 | 0.49 Comm | 0.10402 | 0.10402 | 0.10402 | 0.0 | 0.10 Output | 3.3855e-05 | 3.3855e-05 | 3.3855e-05 | 0.0 | 0.00 Modify | 0.3498 | 0.3498 | 0.3498 | 0.0 | 0.35 Other | | 0.04354 | | | 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.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.56 | 16.56 | 16.56 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 109.431 on 1 procs for 1000 steps with 4000 atoms Performance: 0.790 ns/day, 30.398 hours/ns, 9.138 timesteps/s 53.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 | 108.1 | 108.1 | 108.1 | 0.0 | 98.79 Neigh | 0.87912 | 0.87912 | 0.87912 | 0.0 | 0.80 Comm | 0.1865 | 0.1865 | 0.1865 | 0.0 | 0.17 Output | 3.3855e-05 | 3.3855e-05 | 3.3855e-05 | 0.0 | 0.00 Modify | 0.23882 | 0.23882 | 0.23882 | 0.0 | 0.22 Other | | 0.02317 | | | 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.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