Python读取lammps dump脚本

Python读取lammps dump脚本

import pandas as pd
import numpy as np

class dump:
    def __init__(self, time_step, xyz_df):
        self.time_step = time_step
        self.len = len(xyz_df)
        self.xyz_df =

猜你喜欢

转载自blog.csdn.net/qq_43689832/article/details/113812304