Dear All!
Sorry but I sent my previous message from the wrong email account so it bounced and you can disregard it!
I want to restate my question. I am attempting to “grow” graphene. Initially I will deposit graphene in proximity of a copper surface, distort it and check if it will “re-arrange” at typical growth temperatures. Later I want to “add” carbon atoms to the grid to see if they properly attach.
a) For thermal annealing using non-periodic boundary conditions: what is a “good” ensemble/method to use at non-zero temperatures?
b) How can I “inject” atoms to my box at certain times (as done in X. W. Zhou J. of comp. Chem. 2015, 36)
Below is my current code and attempt to run a temperature ramp, if someone has a comment on it I would be grateful (I am generally just wondering if that is a good/acceptable approach or not)
Thank you all for your support and time!
Yours,
Chris
simulates the growth of graphene from carbon deposited on top of a coppers slab
through simulated thermal annealing using comb 3 potential
units metal
atom_style charge
dimension 3
boundary p p f
copper slab
lattice fcc 3.615
region box block -10 10 -20 20 -3 3
region slab block -10 10 -20 20 -3 0
create_box 2 box
create_atoms 1 region slab
#graphene island
variable alat equal 2.46
lattice custom ${alat} &
a1 1 0 0 &
a2 0 1.732050807569 0 &
a3 0 0 3.35 &
basis 0 0 0 &
basis 0.5 0.166666666667 0 &
basis 0.5 0.5 0 &
basis 0.0 0.666666666667 0 &
region sheet prism -5 5 -5 5 1 2 0 0 0
create_atoms 2 region sheet
group graphene region sheet
displace_atoms graphene move 0.0 0.0 -0.7 units lattice
displace_atoms graphene random 0.1 0.1 0.1 1547
atom_modify sort 0 0
atoms
mass 1 63.54
mass 2 12.011
pair_style comb3 polar_off
pair_coeff * * ffield.comb3 Cu C
thermo 50
thermo_style custom step temp pe etotal press vol
thermo_modify lost warn norm yes
velocity all create 100.0 53244
fix 1 all npt temp 300.0 300.0 0.02 x 0.0 0.0 1.0 y 0.0 0.0 1.0
run 10000
unfix 1
fix 2 all npt temp 300.0 1400.0 0.02 x 0.0 0.0 1.0 y 0.0 0.0 1.0
run 10000
unfix 2
fix 3 all npt temp 1400.0 300.0 0.02 x 0.0 0.0 1.0 y 0.0 0.0 1.0
run 10000
dump 1 all xyz 2000 graphene.xyz
dump_modify 1 element Cu, C