ffcharge 0.2.1

A lightweight pure Rust library for fast, residue-based force field charge assignment (AMBER/CHARMM) in molecular modeling pipelines.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Charge scheme definitions.

mod ion;
mod nucleic;
mod protein;
mod water;

pub use ion::IonScheme;
pub use nucleic::NucleicScheme;
pub use protein::ProteinScheme;
pub use water::WaterScheme;