mopac_core 0.1.0

High-performance Data-Oriented semi-empirical quantum chemistry core engine in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Reaction Coordinates and Direct Molecular Dynamics.
//!
//! Licensed under the Apache License, Version 2.0 (the "License").
//!
//! Provides:
//! - Intrinsic Reaction Coordinate (IRC) path tracing via the mass-weighted González-Schlegel algorithm.
//! - Dynamic Reaction Coordinate (DRC) direct molecular dynamics via symplectic Velocity-Verlet integration.

pub mod drc;
pub mod irc;
pub mod saddle;

pub use drc::*;
pub use irc::*;
pub use saddle::*;