chematic-ff 0.1.30

DREIDING force field atom typing and parameters for chematic — pure-Rust cheminformatics
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![forbid(unsafe_code)]
//! `chematic-ff` — DREIDING force field atom typing and parameters.
//!
//! Provides pure-Rust DREIDING force field support for molecular mechanics calculations.
//! Includes:
//! - [`DREIDINGType`]: enumeration of DREIDING atom types
//! - [`assign_dreiding_types`]: automatic atom type assignment
//! - VDW, bond length, and angle parameters via module `params`

pub mod dreiding;
pub mod params;

pub use dreiding::{assign_dreiding_types, DREIDINGType};
pub use params::{dreiding_angle, dreiding_bond_len, dreiding_torsion_barrier, dreiding_vdw};