Generate mono and multilayer graphene geometries
Project description
Python module to generate flat (uncorrugated) graphene configurations with one or more layers, as well as twisted bilayer graphene.
Returns ASE atoms objects, which may be converted to your file format of choice (LAMMPS, xyz, etc.) in one line.
Installation
Install using pip
$ pip install flatgraphene
Help and Documentation
Use the package's help
function to print out the docstrings of the main functions to terminal
import flatgraphene as fg
fg.help() #prints documentation of user facing functions to terminal
Examples
Shift
This example creates an ABA trilayer graphene system with rectangular unit cell. Any stacking designation (A,B,SP) is defined relative to the origin of the unit cell.
import ase
from ase.visualize import view
import flatgraphene as fg
#note the inputs are all given with variable name for clarity,
# but this is not necessary for required inputs
#the nearest neighbor distance (in-plane) a_nn is optional, and
# overrides the lat_con variable meaning the value of lat_con is unused
atoms=fg.shift.make_graphene(stacking=['A','B','A'],cell_type='rect',n_1=3,n_2=3,
lat_con=0.0,n_layer=3,sep=2.0,a_nn=1.5,
sym='C',mass=12,h_vac=3.0)
ase.visualize.view(atoms)
This example gives the same result as the above, but specifies the relevant properties per layer using lists (instead of with a single value to be assumed for all layers).
When lists are used, all must have length n_layer
.
Interlayer separation is relative to the layer below, with sep[i]
giving spacing between layer i
and i+1
.
The last element last element defines the spacing between top layer and top of supercell box (if no vacuum is added).
See the documentation in the section below for more information on fine grained options.
import ase
from ase.visualize import view
import flatgraphene as fg
#the comments from the above example apply here as well
atoms=fg.shift.make_graphene(stacking=['A','B','A'],cell_type='rect',n_1=3,n_2=3,
lat_con=0.0,n_layer=3,sep=[2.0,2.0,2.0],a_nn=1.5,
sym=['C','C','C'],mass=[12,12,12],h_vac=3.0)
ase.visualize.view(atoms)
Twist
This example creates a 9.43 degree twisted system by first computing the proper p,q
, then using these as inputs to make_graphene
.
All of the properties from the shifted case which can be set here also allow the same variety of input formats (scalar, list, etc.) as above.
import ase
from ase.visualize import view
import flatgraphene as fg
p_found, q_found, theta_comp = fg.twist.find_p_q(9.43)
atoms=fg.twist.make_graphene(cell_type='hex',n_layer=2,
p=p_found,q=q_found,lat_con=0.0,a_nn=1.5,
sep=3.35,h_vac=3)
ase.visualize.view(atoms)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
Hashes for flatgraphene-0.3.3-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 677775b37a7b70bc0f95b7fa32c8b23698098f44dd8a992412336a21e9930a7a |
|
MD5 | b8f355d4b32465792c45f972743745d3 |
|
BLAKE2b-256 | 78725da4c6e9a93cc24f337d391cd3cb8e636110140eafec977b5dc33247019c |