21 个版本

0.10.41 2024年2月15日
0.10.40 2023年8月29日
0.10.4 2023年5月17日
0.10.3 2022年8月27日
0.4.0 2015年10月30日

#28科学

Download history 820/week @ 2024-03-13 458/week @ 2024-03-20 435/week @ 2024-03-27 490/week @ 2024-04-03 645/week @ 2024-04-10 349/week @ 2024-04-17 159/week @ 2024-04-24 223/week @ 2024-05-01 405/week @ 2024-05-08 993/week @ 2024-05-15 796/week @ 2024-05-22 808/week @ 2024-05-29 798/week @ 2024-06-05 974/week @ 2024-06-12 232/week @ 2024-06-19 374/week @ 2024-06-26

2,618 每月下载量
用于 molly

BSD-3-Clause

4MB
22K SLoC

C++ 18K SLoC // 0.1% comments Rust 3.5K SLoC // 0.0% comments Python 343 SLoC // 0.2% comments C 89 SLoC // 0.1% comments Shell 38 SLoC // 0.3% comments

chemfiles.rs

Test status codecov.io Documentation

Rust 对 chemfiles 库的绑定。

文档

使用方法

将以下内容添加到您的 Cargo.toml 文件中

[dependencies]
chemfiles = "0.10"

以下是一个简单的使用示例。更多信息请参阅 examples 文件夹。

use chemfiles::{Trajectory, Frame};

fn main() {
    let mut trajectory = Trajectory::open("filename.xyz", 'r').unwrap();
    let mut frame = Frame::new();

    trajectory.read(&mut frame).unwrap();

    println!("There are {} atoms in the frame", frame.size());

    let positions = frame.positions();

    // Do awesome things with the positions here !
}

错误报告,功能请求

请通过 Github 问题 报告您发现的任何错误和您可能希望的功能。

依赖项