# 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 4.078000083565712*${_u_distance} variable latticeconst_converted equal 4.078000083565712*1 lattice fcc ${latticeconst_converted} lattice fcc 4.07800008356571 Lattice spacing in x,y,z = 4.078 4.078 4.078 region simbox block 0 10 0 10 0 10 units lattice create_box 1 simbox Created orthogonal box = (0 0 0) to (40.78 40.78 40.78) 1 by 1 by 1 MPI processor grid create_atoms 1 box Created 4000 atoms create_atoms CPU = 0.000482082 secs variable mass_converted equal 196.96655*${_u_mass} variable mass_converted equal 196.96655*1 # specify which KIM Model to use pair_style kim EAM_Dynamo_AcklandTichyVitek_1987_Au__MO_104891429740_005 pair_coeff * * Au mass 1 ${mass_converted} mass 1 196.96655 # initial volume variable v equal vol # assign formula variable V0 equal ${v} # evaluate initial value variable V0 equal 67817.4867211144 variable V0_metal equal ${V0}/(${_u_distance}*${_u_distance}*${_u_distance}) variable V0_metal equal 67817.4867211144/(${_u_distance}*${_u_distance}*${_u_distance}) variable V0_metal equal 67817.4867211144/(1*${_u_distance}*${_u_distance}) variable V0_metal equal 67817.4867211144/(1*1*${_u_distance}) variable V0_metal equal 67817.4867211144/(1*1*1) variable V0_metal_times1000 equal ${V0_metal}*1000 variable V0_metal_times1000 equal 67817.4867211144*1000 print "Initial system volume: ${V0_metal} Angstroms^3" Initial system volume: 67817.4867211144 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 313.15*${_u_temperature} variable temp_converted equal 313.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 313.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 313.15 ${temp_converted} ${Tdamp_converted} iso ${press_converted} ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 313.15 313.15 ${Tdamp_converted} iso ${press_converted} ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 313.15 313.15 0.1 iso ${press_converted} ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 313.15 313.15 0.1 iso 0 ${press_converted} ${Pdamp_converted} fix ensemble all npt temp 313.15 313.15 0.1 iso 0 0 ${Pdamp_converted} fix ensemble all npt temp 313.15 313.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 "313.15 - 0.2" variable T_up equal "313.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 = 6.99451 ghost atom cutoff = 6.99451 binsize = 3.49725, bins = 12 12 12 1 neighbor lists, perpetual/occasional/extra = 1 0 0 (1) pair kim, perpetual attributes: full, newton off, cut 6.99451 pair build: full/bin/atomonly stencil: full/bin/3d bin: standard Per MPI rank memory allocation (min/avg/max) = 4.609 | 4.609 | 4.609 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 0 -14994.31 -14994.31 -15156.181 -15156.181 313.15 313.15 67817.487 67817.487 2550.3086 2550.3086 1000 -14827.77 -14827.77 -14989.298 -14989.298 312.48804 312.48804 69534.822 69534.822 -1051.8601 -1051.8601 Loop time of 14.0706 on 1 procs for 1000 steps with 4000 atoms Performance: 6.140 ns/day, 3.908 hours/ns, 71.070 timesteps/s 43.3% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 13.547 | 13.547 | 13.547 | 0.0 | 96.28 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.10835 | 0.10835 | 0.10835 | 0.0 | 0.77 Output | 4.4823e-05 | 4.4823e-05 | 4.4823e-05 | 0.0 | 0.00 Modify | 0.39522 | 0.39522 | 0.39522 | 0.0 | 2.81 Other | | 0.01963 | | | 0.14 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5841 ave 5841 max 5841 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: 312000 ave 312000 max 312000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 312000 Ave neighs/atom = 78 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 0, Press = 0 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.609 | 4.609 | 4.609 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 1000 -14827.77 -14827.77 -14989.298 -14989.298 312.48804 312.48804 69534.822 69534.822 -1051.8601 -1051.8601 2000 -14841.186 -14841.186 -15004.271 -15004.271 315.49905 315.49905 69333.066 69333.066 696.81862 696.81862 Loop time of 13.5803 on 1 procs for 1000 steps with 4000 atoms Performance: 6.362 ns/day, 3.772 hours/ns, 73.636 timesteps/s 46.9% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 13.064 | 13.064 | 13.064 | 0.0 | 96.20 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.099105 | 0.099105 | 0.099105 | 0.0 | 0.73 Output | 3.0994e-05 | 3.0994e-05 | 3.0994e-05 | 0.0 | 0.00 Modify | 0.37758 | 0.37758 | 0.37758 | 0.0 | 2.78 Other | | 0.03968 | | | 0.29 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5841 ave 5841 max 5841 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: 316602 ave 316602 max 316602 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 316602 Ave neighs/atom = 79.1505 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 0, Press = 0 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.609 | 4.609 | 4.609 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 2000 -14841.186 -14841.186 -15004.271 -15004.271 315.49905 315.49905 69333.066 69333.066 696.81862 696.81862 3000 -14833.061 -14833.061 -14997.512 -14997.512 318.14211 318.14211 69393.745 69393.745 423.66683 423.66683 Loop time of 12.9962 on 1 procs for 1000 steps with 4000 atoms Performance: 6.648 ns/day, 3.610 hours/ns, 76.945 timesteps/s 48.9% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 12.63 | 12.63 | 12.63 | 0.0 | 97.18 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.059241 | 0.059241 | 0.059241 | 0.0 | 0.46 Output | 4.4107e-05 | 4.4107e-05 | 4.4107e-05 | 0.0 | 0.00 Modify | 0.22727 | 0.22727 | 0.22727 | 0.0 | 1.75 Other | | 0.07983 | | | 0.61 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5841 ave 5841 max 5841 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: 316646 ave 316646 max 316646 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 316646 Ave neighs/atom = 79.1615 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 0, Press = 0 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.609 | 4.609 | 4.609 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 3000 -14833.061 -14833.061 -14997.512 -14997.512 318.14211 318.14211 69393.745 69393.745 423.66683 423.66683 4000 -14841.336 -14841.336 -15000.06 -15000.06 307.06215 307.06215 69417.348 69417.348 -786.87786 -786.87786 Loop time of 11.5119 on 1 procs for 1000 steps with 4000 atoms Performance: 7.505 ns/day, 3.198 hours/ns, 86.866 timesteps/s 55.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 | 11.154 | 11.154 | 11.154 | 0.0 | 96.89 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.079887 | 0.079887 | 0.079887 | 0.0 | 0.69 Output | 4.3869e-05 | 4.3869e-05 | 4.3869e-05 | 0.0 | 0.00 Modify | 0.25837 | 0.25837 | 0.25837 | 0.0 | 2.24 Other | | 0.01989 | | | 0.17 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5841 ave 5841 max 5841 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: 316602 ave 316602 max 316602 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 316602 Ave neighs/atom = 79.1505 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 0, Press = 0 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.609 | 4.609 | 4.609 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 4000 -14841.336 -14841.336 -15000.06 -15000.06 307.06215 307.06215 69417.348 69417.348 -786.87786 -786.87786 5000 -14835.983 -14835.983 -14998.595 -14998.595 314.58485 314.58485 69403.668 69403.668 148.76705 148.76705 Loop time of 14.0869 on 1 procs for 1000 steps with 4000 atoms Performance: 6.133 ns/day, 3.913 hours/ns, 70.988 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 | 13.729 | 13.729 | 13.729 | 0.0 | 97.46 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.059833 | 0.059833 | 0.059833 | 0.0 | 0.42 Output | 3.4094e-05 | 3.4094e-05 | 3.4094e-05 | 0.0 | 0.00 Modify | 0.21786 | 0.21786 | 0.21786 | 0.0 | 1.55 Other | | 0.07983 | | | 0.57 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5841 ave 5841 max 5841 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: 316650 ave 316650 max 316650 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 316650 Ave neighs/atom = 79.1625 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 314.186546453296, Press = 3.43960834836359 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.609 | 4.609 | 4.609 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 5000 -14835.983 -14835.983 -14998.595 -14998.595 314.58485 314.58485 69403.668 69403.668 148.76705 148.76705 6000 -14840.65 -14840.65 -15000.725 -15000.725 309.67651 309.67651 69417.882 69417.882 -903.41897 -903.41897 Loop time of 13.4992 on 1 procs for 1000 steps with 4000 atoms Performance: 6.400 ns/day, 3.750 hours/ns, 74.078 timesteps/s 47.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 | 13.047 | 13.047 | 13.047 | 0.0 | 96.65 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.079261 | 0.079261 | 0.079261 | 0.0 | 0.59 Output | 3.314e-05 | 3.314e-05 | 3.314e-05 | 0.0 | 0.00 Modify | 0.33309 | 0.33309 | 0.33309 | 0.0 | 2.47 Other | | 0.04003 | | | 0.30 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5841 ave 5841 max 5841 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: 316602 ave 316602 max 316602 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 316602 Ave neighs/atom = 79.1505 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.739068291968, Press = -24.8698148493485 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.609 | 4.609 | 4.609 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 6000 -14840.65 -14840.65 -15000.725 -15000.725 309.67651 309.67651 69417.882 69417.882 -903.41897 -903.41897 7000 -14837.664 -14837.664 -15000.773 -15000.773 315.54374 315.54374 69432.056 69432.056 -1174.7083 -1174.7083 Loop time of 13.0658 on 1 procs for 1000 steps with 4000 atoms Performance: 6.613 ns/day, 3.629 hours/ns, 76.535 timesteps/s 49.1% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 12.483 | 12.483 | 12.483 | 0.0 | 95.54 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.11976 | 0.11976 | 0.11976 | 0.0 | 0.92 Output | 3.314e-05 | 3.314e-05 | 3.314e-05 | 0.0 | 0.00 Modify | 0.3826 | 0.3826 | 0.3826 | 0.0 | 2.93 Other | | 0.08022 | | | 0.61 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5841 ave 5841 max 5841 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: 316542 ave 316542 max 316542 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 316542 Ave neighs/atom = 79.1355 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.0730948835, Press = -12.7575021212866 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.609 | 4.609 | 4.609 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 7000 -14837.664 -14837.664 -15000.773 -15000.773 315.54374 315.54374 69432.056 69432.056 -1174.7083 -1174.7083 8000 -14837.882 -14837.882 -15001.439 -15001.439 316.41052 316.41052 69378.735 69378.735 30.507872 30.507872 Loop time of 13.7526 on 1 procs for 1000 steps with 4000 atoms Performance: 6.282 ns/day, 3.820 hours/ns, 72.713 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 | 13.27 | 13.27 | 13.27 | 0.0 | 96.49 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.1195 | 0.1195 | 0.1195 | 0.0 | 0.87 Output | 2.5988e-05 | 2.5988e-05 | 2.5988e-05 | 0.0 | 0.00 Modify | 0.30286 | 0.30286 | 0.30286 | 0.0 | 2.20 Other | | 0.05989 | | | 0.44 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5841 ave 5841 max 5841 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: 316434 ave 316434 max 316434 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 316434 Ave neighs/atom = 79.1085 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.360646779725, Press = -10.1213833228495 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.609 | 4.609 | 4.609 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 8000 -14837.882 -14837.882 -15001.439 -15001.439 316.41052 316.41052 69378.735 69378.735 30.507872 30.507872 9000 -14833.69 -14833.69 -15000.057 -15000.057 321.8498 321.8498 69411.464 69411.464 -445.42145 -445.42145 Loop time of 13.0193 on 1 procs for 1000 steps with 4000 atoms Performance: 6.636 ns/day, 3.616 hours/ns, 76.809 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 | 12.548 | 12.548 | 12.548 | 0.0 | 96.38 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.10121 | 0.10121 | 0.10121 | 0.0 | 0.78 Output | 2.718e-05 | 2.718e-05 | 2.718e-05 | 0.0 | 0.00 Modify | 0.31376 | 0.31376 | 0.31376 | 0.0 | 2.41 Other | | 0.05681 | | | 0.44 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5841 ave 5841 max 5841 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: 316504 ave 316504 max 316504 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 316504 Ave neighs/atom = 79.126 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.173821166573, Press = -5.70951006759007 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.609 | 4.609 | 4.609 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 9000 -14833.69 -14833.69 -15000.057 -15000.057 321.8498 321.8498 69411.464 69411.464 -445.42145 -445.42145 10000 -14840.853 -14840.853 -15000.662 -15000.662 309.16185 309.16185 69384.57 69384.57 78.965031 78.965031 Loop time of 12.7351 on 1 procs for 1000 steps with 4000 atoms Performance: 6.784 ns/day, 3.538 hours/ns, 78.523 timesteps/s 50.1% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 12.334 | 12.334 | 12.334 | 0.0 | 96.85 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.03915 | 0.03915 | 0.03915 | 0.0 | 0.31 Output | 5.0068e-05 | 5.0068e-05 | 5.0068e-05 | 0.0 | 0.00 Modify | 0.34236 | 0.34236 | 0.34236 | 0.0 | 2.69 Other | | 0.02 | | | 0.16 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5841 ave 5841 max 5841 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: 316564 ave 316564 max 316564 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 316564 Ave neighs/atom = 79.141 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 313.253128663661, Press = 4.72349545405304 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.609 | 4.609 | 4.609 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 10000 -14840.853 -14840.853 -15000.662 -15000.662 309.16185 309.16185 69384.57 69384.57 78.965031 78.965031 11000 -14836.374 -14836.374 -14999.771 -14999.771 316.10225 316.10225 69412.063 69412.063 -533.99805 -533.99805 Loop time of 12.8296 on 1 procs for 1000 steps with 4000 atoms Performance: 6.734 ns/day, 3.564 hours/ns, 77.945 timesteps/s 49.8% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 12.27 | 12.27 | 12.27 | 0.0 | 95.64 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.079693 | 0.079693 | 0.079693 | 0.0 | 0.62 Output | 2.5988e-05 | 2.5988e-05 | 2.5988e-05 | 0.0 | 0.00 Modify | 0.46028 | 0.46028 | 0.46028 | 0.0 | 3.59 Other | | 0.01989 | | | 0.16 Nlocal: 4000 ave 4000 max 4000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 5841 ave 5841 max 5841 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: 316598 ave 316598 max 316598 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 316598 Ave neighs/atom = 79.1495 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" jump SELF break # Write final averaged volume to file if temperature and volume have converged; otherwise wirte a # flag to indicate non-convergence. variable myStep equal step if "${myStep} < 2000000" then "print '${V}' file output/vol_T313.15.out" else "print 'not_converged' file output/vol_T313.15.out" print '${V}' file output/vol_T313.15.out 69390.2680534157 print "LAMMPS calculation completed" LAMMPS calculation completed quit 0