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 • Rust 包仓库 820/week @ 2024-03-13 • Rust 包仓库 458/week @ 2024-03-20 • Rust 包仓库 435/week @ 2024-03-27 • Rust 包仓库 490/week @ 2024-04-03 • Rust 包仓库 645/week @ 2024-04-10 • Rust 包仓库 349/week @ 2024-04-17 • Rust 包仓库 159/week @ 2024-04-24 • Rust 包仓库 223/week @ 2024-05-01 • Rust 包仓库 405/week @ 2024-05-08 • Rust 包仓库 993/week @ 2024-05-15 • Rust 包仓库 796/week @ 2024-05-22 • Rust 包仓库 808/week @ 2024-05-29 • Rust 包仓库 798/week @ 2024-06-05 • Rust 包仓库 974/week @ 2024-06-12 • Rust 包仓库 232/week @ 2024-06-19 • Rust 包仓库 374/week @ 2024-06-26 • Rust 包仓库

2,618 每月下载量
用于 molly

BSD-3-Clause

4MB
22K SLoC

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

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 问题 报告您发现的任何错误和您可能希望的功能。

依赖项