流体力学(水力学)满分实验报告——流体静力学

  • Post author:
  • Post category:其他




实验目的

在这里插入图片描述



实验装置

在这里插入图片描述



【部分】实验原理

在这里插入图片描述



【部分】实验数据处理

在这里插入图片描述



借助Python

插个题外话,如果数据比较多的话,或者说需要额外的数据处理的话

pip install numpy
pip install matplotlib
pip install pandas
import numpy as np
import matplotlib as plt
import pandas as pd
#读取数据
file_path = open('地址')
file_date = pd.read_csv(file_path)
file_date.head()##tail()

#数据预处理
file_date.duplicated()#重复值检测
file_date = file_date.drop_duplicates()#删除重复值
file_date = file_date.dropna()#删除缺失值
date_new = np.array([])#创建空数组
date = file_date['列名'].values



版权声明:本文为qq_39835949原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。