# 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 3.1651999652385707*${_u_distance} variable latticeconst_converted equal 3.1651999652385707*1 lattice bcc ${latticeconst_converted} lattice bcc 3.16519996523857 Lattice spacing in x,y,z = 3.1652 3.1652 3.1652 region simbox block 0 10 0 10 0 10 units lattice create_box 1 simbox Created orthogonal box = (0 0 0) to (31.652 31.652 31.652) 1 by 1 by 1 MPI processor grid create_atoms 1 box Created 2000 atoms create_atoms CPU = 0.000280857 secs variable mass_converted equal 183.84*${_u_mass} variable mass_converted equal 183.84*1 # specify which KIM Model to use pair_style kim EAM_Dynamo_BonnyCastinBullens_2013_FeW__MO_737567242631_000 pair_coeff * * W mass 1 ${mass_converted} mass 1 183.84 # initial volume variable v equal vol # assign formula variable V0 equal ${v} # evaluate initial value variable V0 equal 31710.5267950368 variable V0_metal equal ${V0}/(${_u_distance}*${_u_distance}*${_u_distance}) variable V0_metal equal 31710.5267950368/(${_u_distance}*${_u_distance}*${_u_distance}) variable V0_metal equal 31710.5267950368/(1*${_u_distance}*${_u_distance}) variable V0_metal equal 31710.5267950368/(1*1*${_u_distance}) variable V0_metal equal 31710.5267950368/(1*1*1) variable V0_metal_times1000 equal ${V0_metal}*1000 variable V0_metal_times1000 equal 31710.5267950368*1000 print "Initial system volume: ${V0_metal} Angstroms^3" Initial system volume: 31710.5267950368 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 = 7.3 ghost atom cutoff = 7.3 binsize = 3.65, bins = 9 9 9 1 neighbor lists, perpetual/occasional/extra = 1 0 0 (1) pair kim, perpetual attributes: full, newton off, cut 7.3 pair build: full/bin/atomonly stencil: full/bin/3d bin: standard Per MPI rank memory allocation (min/avg/max) = 4.133 | 4.133 | 4.133 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 0 -17734.593 -17734.593 -17800.005 -17800.005 253.15 253.15 31710.527 31710.527 2203.2824 2203.2824 1000 -17667.689 -17667.689 -17738.119 -17738.119 272.57461 272.57461 31786.245 31786.245 -2841.6003 -2841.6003 Loop time of 10.3802 on 1 procs for 1000 steps with 2000 atoms Performance: 8.324 ns/day, 2.883 hours/ns, 96.337 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 | 10.026 | 10.026 | 10.026 | 0.0 | 96.59 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.02417 | 0.02417 | 0.02417 | 0.0 | 0.23 Output | 3.8862e-05 | 3.8862e-05 | 3.8862e-05 | 0.0 | 0.00 Modify | 0.27879 | 0.27879 | 0.27879 | 0.0 | 2.69 Other | | 0.05123 | | | 0.49 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4119 ave 4119 max 4119 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: 224000 ave 224000 max 224000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224000 Ave neighs/atom = 112 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 0, Press = 0 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.133 | 4.133 | 4.133 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 1000 -17667.689 -17667.689 -17738.119 -17738.119 272.57461 272.57461 31786.245 31786.245 -2841.6003 -2841.6003 2000 -17667.884 -17667.884 -17732.993 -17732.993 251.97667 251.97667 31751.991 31751.991 642.93957 642.93957 Loop time of 11.0876 on 1 procs for 1000 steps with 2000 atoms Performance: 7.792 ns/day, 3.080 hours/ns, 90.191 timesteps/s 41.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 | 10.808 | 10.808 | 10.808 | 0.0 | 97.48 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.040943 | 0.040943 | 0.040943 | 0.0 | 0.37 Output | 3.0994e-05 | 3.0994e-05 | 3.0994e-05 | 0.0 | 0.00 Modify | 0.22685 | 0.22685 | 0.22685 | 0.0 | 2.05 Other | | 0.0114 | | | 0.10 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4119 ave 4119 max 4119 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: 224000 ave 224000 max 224000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224000 Ave neighs/atom = 112 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 0, Press = 0 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.133 | 4.133 | 4.133 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 2000 -17667.884 -17667.884 -17732.993 -17732.993 251.97667 251.97667 31751.991 31751.991 642.93957 642.93957 3000 -17669.625 -17669.625 -17733.871 -17733.871 248.64073 248.64073 31731.26 31731.26 2440.2352 2440.2352 Loop time of 11.1911 on 1 procs for 1000 steps with 2000 atoms Performance: 7.720 ns/day, 3.109 hours/ns, 89.357 timesteps/s 40.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 | 10.919 | 10.919 | 10.919 | 0.0 | 97.57 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.044468 | 0.044468 | 0.044468 | 0.0 | 0.40 Output | 3.4094e-05 | 3.4094e-05 | 3.4094e-05 | 0.0 | 0.00 Modify | 0.20637 | 0.20637 | 0.20637 | 0.0 | 1.84 Other | | 0.02124 | | | 0.19 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4119 ave 4119 max 4119 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: 223994 ave 223994 max 223994 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 223994 Ave neighs/atom = 111.997 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.133 | 4.133 | 4.133 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 3000 -17669.625 -17669.625 -17733.871 -17733.871 248.64073 248.64073 31731.26 31731.26 2440.2352 2440.2352 4000 -17667.852 -17667.852 -17733.316 -17733.316 253.35292 253.35292 31739.192 31739.192 2061.2764 2061.2764 Loop time of 11.6974 on 1 procs for 1000 steps with 2000 atoms Performance: 7.386 ns/day, 3.249 hours/ns, 85.489 timesteps/s 39.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 | 11.495 | 11.495 | 11.495 | 0.0 | 98.27 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.024536 | 0.024536 | 0.024536 | 0.0 | 0.21 Output | 5.3883e-05 | 5.3883e-05 | 5.3883e-05 | 0.0 | 0.00 Modify | 0.1665 | 0.1665 | 0.1665 | 0.0 | 1.42 Other | | 0.01131 | | | 0.10 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4119 ave 4119 max 4119 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: 223996 ave 223996 max 223996 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 223996 Ave neighs/atom = 111.998 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.133 | 4.133 | 4.133 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 4000 -17667.852 -17667.852 -17733.316 -17733.316 253.35292 253.35292 31739.192 31739.192 2061.2764 2061.2764 5000 -17669.073 -17669.073 -17735.287 -17735.287 256.25386 256.25386 31707.376 31707.376 5295.5796 5295.5796 Loop time of 10.7675 on 1 procs for 1000 steps with 2000 atoms Performance: 8.024 ns/day, 2.991 hours/ns, 92.872 timesteps/s 42.4% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 10.385 | 10.385 | 10.385 | 0.0 | 96.44 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.064648 | 0.064648 | 0.064648 | 0.0 | 0.60 Output | 2.8849e-05 | 2.8849e-05 | 2.8849e-05 | 0.0 | 0.00 Modify | 0.26678 | 0.26678 | 0.26678 | 0.0 | 2.48 Other | | 0.05137 | | | 0.48 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4119 ave 4119 max 4119 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: 223992 ave 223992 max 223992 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 223992 Ave neighs/atom = 111.996 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.686060847773, Press = 108.099175874606 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.133 | 4.133 | 4.133 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 5000 -17669.073 -17669.073 -17735.287 -17735.287 256.25386 256.25386 31707.376 31707.376 5295.5796 5295.5796 6000 -17669.289 -17669.289 -17734.259 -17734.259 251.44148 251.44148 31761.572 31761.572 -355.3167 -355.3167 Loop time of 10.8521 on 1 procs for 1000 steps with 2000 atoms Performance: 7.962 ns/day, 3.014 hours/ns, 92.148 timesteps/s 42.4% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 10.506 | 10.506 | 10.506 | 0.0 | 96.81 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.085251 | 0.085251 | 0.085251 | 0.0 | 0.79 Output | 2.6941e-05 | 2.6941e-05 | 2.6941e-05 | 0.0 | 0.00 Modify | 0.22981 | 0.22981 | 0.22981 | 0.0 | 2.12 Other | | 0.03137 | | | 0.29 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4119 ave 4119 max 4119 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: 224000 ave 224000 max 224000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224000 Ave neighs/atom = 112 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 252.857613330095, Press = 75.6633315222018 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.133 | 4.133 | 4.133 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 6000 -17669.289 -17669.289 -17734.259 -17734.259 251.44148 251.44148 31761.572 31761.572 -355.3167 -355.3167 7000 -17668.799 -17668.799 -17735.1 -17735.1 256.59167 256.59167 31763.54 31763.54 -461.49024 -461.49024 Loop time of 10.7234 on 1 procs for 1000 steps with 2000 atoms Performance: 8.057 ns/day, 2.979 hours/ns, 93.254 timesteps/s 42.8% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 10.478 | 10.478 | 10.478 | 0.0 | 97.71 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.044724 | 0.044724 | 0.044724 | 0.0 | 0.42 Output | 2.8849e-05 | 2.8849e-05 | 2.8849e-05 | 0.0 | 0.00 Modify | 0.18927 | 0.18927 | 0.18927 | 0.0 | 1.77 Other | | 0.01134 | | | 0.11 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4119 ave 4119 max 4119 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: 224000 ave 224000 max 224000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224000 Ave neighs/atom = 112 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.035036189102, Press = 1.61906504230638 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.133 | 4.133 | 4.133 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 7000 -17668.799 -17668.799 -17735.1 -17735.1 256.59167 256.59167 31763.54 31763.54 -461.49024 -461.49024 8000 -17668.123 -17668.123 -17733.825 -17733.825 254.27358 254.27358 31763.681 31763.681 3.4415305 3.4415305 Loop time of 10.9853 on 1 procs for 1000 steps with 2000 atoms Performance: 7.865 ns/day, 3.051 hours/ns, 91.031 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 | 10.688 | 10.688 | 10.688 | 0.0 | 97.30 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.084963 | 0.084963 | 0.084963 | 0.0 | 0.77 Output | 2.6941e-05 | 2.6941e-05 | 2.6941e-05 | 0.0 | 0.00 Modify | 0.2006 | 0.2006 | 0.2006 | 0.0 | 1.83 Other | | 0.01144 | | | 0.10 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4119 ave 4119 max 4119 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: 224000 ave 224000 max 224000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224000 Ave neighs/atom = 112 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.210342000475, Press = 15.2269829668218 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.133 | 4.133 | 4.133 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 8000 -17668.123 -17668.123 -17733.825 -17733.825 254.27358 254.27358 31763.681 31763.681 3.4415305 3.4415305 9000 -17669.023 -17669.023 -17733.359 -17733.359 248.98853 248.98853 31771.195 31771.195 -1315.1044 -1315.1044 Loop time of 10.8536 on 1 procs for 1000 steps with 2000 atoms Performance: 7.960 ns/day, 3.015 hours/ns, 92.135 timesteps/s 42.4% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 10.567 | 10.567 | 10.567 | 0.0 | 97.36 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.02446 | 0.02446 | 0.02446 | 0.0 | 0.23 Output | 2.718e-05 | 2.718e-05 | 2.718e-05 | 0.0 | 0.00 Modify | 0.25045 | 0.25045 | 0.25045 | 0.0 | 2.31 Other | | 0.01136 | | | 0.10 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4119 ave 4119 max 4119 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: 223998 ave 223998 max 223998 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 223998 Ave neighs/atom = 111.999 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.465232032267, Press = 11.2061041385303 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.133 | 4.133 | 4.133 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 9000 -17669.023 -17669.023 -17733.359 -17733.359 248.98853 248.98853 31771.195 31771.195 -1315.1044 -1315.1044 10000 -17667.895 -17667.895 -17734.191 -17734.191 256.56884 256.56884 31747.9 31747.9 935.42795 935.42795 Loop time of 10.3194 on 1 procs for 1000 steps with 2000 atoms Performance: 8.373 ns/day, 2.866 hours/ns, 96.905 timesteps/s 44.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 | 9.9824 | 9.9824 | 9.9824 | 0.0 | 96.73 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.064443 | 0.064443 | 0.064443 | 0.0 | 0.62 Output | 4.7922e-05 | 4.7922e-05 | 4.7922e-05 | 0.0 | 0.00 Modify | 0.24135 | 0.24135 | 0.24135 | 0.0 | 2.34 Other | | 0.03112 | | | 0.30 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4119 ave 4119 max 4119 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: 224000 ave 224000 max 224000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 224000 Ave neighs/atom = 112 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.796529105669, Press = 1.45399331424461 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.133 | 4.133 | 4.133 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 10000 -17667.895 -17667.895 -17734.191 -17734.191 256.56884 256.56884 31747.9 31747.9 935.42795 935.42795 11000 -17666.842 -17666.842 -17732.416 -17732.416 253.7762 253.7762 31751.553 31751.553 842.47692 842.47692 Loop time of 10.3069 on 1 procs for 1000 steps with 2000 atoms Performance: 8.383 ns/day, 2.863 hours/ns, 97.023 timesteps/s 44.7% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 10.041 | 10.041 | 10.041 | 0.0 | 97.42 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.064792 | 0.064792 | 0.064792 | 0.0 | 0.63 Output | 2.0981e-05 | 2.0981e-05 | 2.0981e-05 | 0.0 | 0.00 Modify | 0.19002 | 0.19002 | 0.19002 | 0.0 | 1.84 Other | | 0.01102 | | | 0.11 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4119 ave 4119 max 4119 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: 223996 ave 223996 max 223996 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 223996 Ave neighs/atom = 111.998 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.442698856449, Press = 8.29267691179074 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.133 | 4.133 | 4.133 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 11000 -17666.842 -17666.842 -17732.416 -17732.416 253.7762 253.7762 31751.553 31751.553 842.47692 842.47692 12000 -17670.051 -17670.051 -17735.094 -17735.094 251.72288 251.72288 31776.311 31776.311 -1631.1056 -1631.1056 Loop time of 10.3729 on 1 procs for 1000 steps with 2000 atoms Performance: 8.329 ns/day, 2.881 hours/ns, 96.405 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 | 10.108 | 10.108 | 10.108 | 0.0 | 97.44 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.044647 | 0.044647 | 0.044647 | 0.0 | 0.43 Output | 3.2902e-05 | 3.2902e-05 | 3.2902e-05 | 0.0 | 0.00 Modify | 0.16916 | 0.16916 | 0.16916 | 0.0 | 1.63 Other | | 0.05123 | | | 0.49 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4119 ave 4119 max 4119 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: 223996 ave 223996 max 223996 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 223996 Ave neighs/atom = 111.998 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.367736607535, Press = 2.30851717669194 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.133 | 4.133 | 4.133 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 12000 -17670.051 -17670.051 -17735.094 -17735.094 251.72288 251.72288 31776.311 31776.311 -1631.1056 -1631.1056 13000 -17663.552 -17663.552 -17732.324 -17732.324 266.15163 266.15163 31818.472 31818.472 -5881.3042 -5881.3042 Loop time of 11.0973 on 1 procs for 1000 steps with 2000 atoms Performance: 7.786 ns/day, 3.083 hours/ns, 90.112 timesteps/s 41.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 | 10.892 | 10.892 | 10.892 | 0.0 | 98.15 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.064789 | 0.064789 | 0.064789 | 0.0 | 0.58 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.12971 | 0.12971 | 0.12971 | 0.0 | 1.17 Other | | 0.01124 | | | 0.10 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4119 ave 4119 max 4119 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: 223998 ave 223998 max 223998 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 223998 Ave neighs/atom = 111.999 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.466708357997, Press = 1.45200741865782 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.133 | 4.133 | 4.133 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 13000 -17663.552 -17663.552 -17732.324 -17732.324 266.15163 266.15163 31818.472 31818.472 -5881.3042 -5881.3042 14000 -17668.205 -17668.205 -17733.764 -17733.764 253.72257 253.72257 31759.627 31759.627 31.17162 31.17162 Loop time of 10.461 on 1 procs for 1000 steps with 2000 atoms Performance: 8.259 ns/day, 2.906 hours/ns, 95.593 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 | 10.144 | 10.144 | 10.144 | 0.0 | 96.97 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.10529 | 0.10529 | 0.10529 | 0.0 | 1.01 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.16023 | 0.16023 | 0.16023 | 0.0 | 1.53 Other | | 0.05124 | | | 0.49 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4119 ave 4119 max 4119 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: 223998 ave 223998 max 223998 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 223998 Ave neighs/atom = 111.999 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.592858765473, Press = 6.55347851097611 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.133 | 4.133 | 4.133 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 14000 -17668.205 -17668.205 -17733.764 -17733.764 253.72257 253.72257 31759.627 31759.627 31.17162 31.17162 15000 -17669.372 -17669.372 -17734.811 -17734.811 253.25812 253.25812 31781.231 31781.231 -1827.7297 -1827.7297 Loop time of 10.3287 on 1 procs for 1000 steps with 2000 atoms Performance: 8.365 ns/day, 2.869 hours/ns, 96.817 timesteps/s 44.8% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 10.043 | 10.043 | 10.043 | 0.0 | 97.23 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.024747 | 0.024747 | 0.024747 | 0.0 | 0.24 Output | 2.8849e-05 | 2.8849e-05 | 2.8849e-05 | 0.0 | 0.00 Modify | 0.22992 | 0.22992 | 0.22992 | 0.0 | 2.23 Other | | 0.03121 | | | 0.30 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4119 ave 4119 max 4119 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: 223998 ave 223998 max 223998 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 223998 Ave neighs/atom = 111.999 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.584020184689, Press = 9.32968708418223 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.133 | 4.133 | 4.133 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 15000 -17669.372 -17669.372 -17734.811 -17734.811 253.25812 253.25812 31781.231 31781.231 -1827.7297 -1827.7297 16000 -17668.536 -17668.536 -17734.504 -17734.504 255.30237 255.30237 31777.246 31777.246 -1727.661 -1727.661 Loop time of 11.008 on 1 procs for 1000 steps with 2000 atoms Performance: 7.849 ns/day, 3.058 hours/ns, 90.843 timesteps/s 42.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 | 10.741 | 10.741 | 10.741 | 0.0 | 97.58 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.044667 | 0.044667 | 0.044667 | 0.0 | 0.41 Output | 2.7895e-05 | 2.7895e-05 | 2.7895e-05 | 0.0 | 0.00 Modify | 0.21077 | 0.21077 | 0.21077 | 0.0 | 1.91 Other | | 0.01129 | | | 0.10 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4119 ave 4119 max 4119 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: 223998 ave 223998 max 223998 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 223998 Ave neighs/atom = 111.999 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.532741890917, Press = 1.99610866091818 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.133 | 4.133 | 4.133 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 16000 -17668.536 -17668.536 -17734.504 -17734.504 255.30237 255.30237 31777.246 31777.246 -1727.661 -1727.661 17000 -17668.157 -17668.157 -17734.087 -17734.087 255.15435 255.15435 31769.868 31769.868 -1235.424 -1235.424 Loop time of 11.1948 on 1 procs for 1000 steps with 2000 atoms Performance: 7.718 ns/day, 3.110 hours/ns, 89.327 timesteps/s 41.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 | 10.97 | 10.97 | 10.97 | 0.0 | 97.99 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.064447 | 0.064447 | 0.064447 | 0.0 | 0.58 Output | 2.8849e-05 | 2.8849e-05 | 2.8849e-05 | 0.0 | 0.00 Modify | 0.14964 | 0.14964 | 0.14964 | 0.0 | 1.34 Other | | 0.01109 | | | 0.10 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4119 ave 4119 max 4119 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: 223996 ave 223996 max 223996 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 223996 Ave neighs/atom = 111.998 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.274124951616, Press = 4.11616868522766 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.133 | 4.133 | 4.133 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 17000 -17668.157 -17668.157 -17734.087 -17734.087 255.15435 255.15435 31769.868 31769.868 -1235.424 -1235.424 18000 -17670.343 -17670.343 -17735.32 -17735.32 251.46791 251.46791 31759.71 31759.71 -0.4969511 -0.4969511 Loop time of 10.3073 on 1 procs for 1000 steps with 2000 atoms Performance: 8.382 ns/day, 2.863 hours/ns, 97.019 timesteps/s 44.3% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 10.014 | 10.014 | 10.014 | 0.0 | 97.16 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.074463 | 0.074463 | 0.074463 | 0.0 | 0.72 Output | 2.6941e-05 | 2.6941e-05 | 2.6941e-05 | 0.0 | 0.00 Modify | 0.20716 | 0.20716 | 0.20716 | 0.0 | 2.01 Other | | 0.01124 | | | 0.11 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4119 ave 4119 max 4119 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: 223994 ave 223994 max 223994 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 223994 Ave neighs/atom = 111.997 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.19384271751, Press = 3.61855074982589 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.133 | 4.133 | 4.133 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 18000 -17670.343 -17670.343 -17735.32 -17735.32 251.46791 251.46791 31759.71 31759.71 -0.4969511 -0.4969511 19000 -17666.914 -17666.914 -17733.111 -17733.111 256.1897 256.1897 31770.041 31770.041 -1312.2738 -1312.2738 Loop time of 10.9002 on 1 procs for 1000 steps with 2000 atoms Performance: 7.926 ns/day, 3.028 hours/ns, 91.742 timesteps/s 42.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 | 10.615 | 10.615 | 10.615 | 0.0 | 97.39 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.064557 | 0.064557 | 0.064557 | 0.0 | 0.59 Output | 2.6941e-05 | 2.6941e-05 | 2.6941e-05 | 0.0 | 0.00 Modify | 0.20943 | 0.20943 | 0.20943 | 0.0 | 1.92 Other | | 0.01102 | | | 0.10 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4119 ave 4119 max 4119 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: 223996 ave 223996 max 223996 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 223996 Ave neighs/atom = 111.998 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" print "flag: Temp = ${T}, Press = ${P}" flag: Temp = 253.173743180668, Press = 4.68758330862783 next a jump SELF top variable a loop 2000 run 1000 Per MPI rank memory allocation (min/avg/max) = 4.133 | 4.133 | 4.133 Mbytes Step TotEng v_etotal_metal PotEng v_pe_metal Temp v_T_metal Volume v_V_metal Press v_P_metal 19000 -17666.914 -17666.914 -17733.111 -17733.111 256.1897 256.1897 31770.041 31770.041 -1312.2738 -1312.2738 20000 -17668.705 -17668.705 -17733.349 -17733.349 250.17982 250.17982 31777.052 31777.052 -1747.5833 -1747.5833 Loop time of 10.8388 on 1 procs for 1000 steps with 2000 atoms Performance: 7.971 ns/day, 3.011 hours/ns, 92.261 timesteps/s 42.8% CPU use with 1 MPI tasks x 1 OpenMP threads MPI task timing breakdown: Section | min time | avg time | max time |%varavg| %total --------------------------------------------------------------- Pair | 10.582 | 10.582 | 10.582 | 0.0 | 97.63 Neigh | 0 | 0 | 0 | 0.0 | 0.00 Comm | 0.044654 | 0.044654 | 0.044654 | 0.0 | 0.41 Output | 2.8849e-05 | 2.8849e-05 | 2.8849e-05 | 0.0 | 0.00 Modify | 0.16046 | 0.16046 | 0.16046 | 0.0 | 1.48 Other | | 0.0513 | | | 0.47 Nlocal: 2000 ave 2000 max 2000 min Histogram: 1 0 0 0 0 0 0 0 0 0 Nghost: 4119 ave 4119 max 4119 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: 223998 ave 223998 max 223998 min Histogram: 1 0 0 0 0 0 0 0 0 0 Total # of neighbors = 223998 Ave neighs/atom = 111.999 Neighbor list builds = 0 Dangerous builds = 0 if "${V_metal}>${V0_metal_times1000}" then "jump SELF unstable" if "${T}>${T_low} && ${T}<${T_up} && ${P}>${P_low} && ${P}<${P_up}" then "jump SELF break" jump SELF break # Write final averaged volume to file if temperature and volume have converged; otherwise wirte a # flag to indicate non-convergence. variable myStep equal step if "${myStep} < 2000000" then "print '${V}' file output/vol_T253.15.out" else "print 'not_converged' file output/vol_T253.15.out" print '${V}' file output/vol_T253.15.out 31759.0212588456 print "LAMMPS calculation completed" LAMMPS calculation completed quit 0