Metadata-Version: 2.1
Name: flatgraphene
Version: 0.3
Summary: Generate mono and multilayer graphene geometries
Home-page: https://github.com/Johnson-Research-Group/flat-graphene
Author: Gabriel H. Brown
Author-email: gabriel.h.brown@gmail.com
License: UNKNOWN
Keywords: twisted,bilayer,graphene,graphite,scientific,engineering,molecular dynamics,atomistic
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Scientific/Engineering
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy
Requires-Dist: ase


Python module to generate flat (uncorrugated) graphene configurations with one or more layers, as well as twisted bilayer graphene.

Returns [ASE](https://wiki.fysik.dtu.dk/ase/about.html) atoms objects, which may be converted to your file format of choice (LAMMPS, xyz, etc.) in one line.

![](https://github.com/Johnson-Research-Group/flat-graphene/blob/master/images/shifted_image.png?raw=true) ![](https://github.com/Johnson-Research-Group/flat-graphene/blob/master/images/twisted_image.png?raw=true)


## 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
```python
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.
```python
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.

```python
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.
```python
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)
```



