grafen 0.9.1

Create graphene and other substrates for use in molecular dynamics simulations.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Define and construct systems used for molecular simulations.

extern crate colored;
extern crate rand;
extern crate serde_json;
#[macro_use] extern crate serde_derive;

#[macro_use] pub mod coord;
#[macro_use] pub mod system;

pub mod describe;
pub mod database;
pub mod error;
pub mod iterator;
pub mod surface;
pub mod volume;