-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFITDataAnalyse.py
More file actions
61 lines (47 loc) · 1.5 KB
/
FITDataAnalyse.py
File metadata and controls
61 lines (47 loc) · 1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#输入压力列表,获取FTI,平均压力峰值aMax
class ResultData:
def __init__(self,PressureList,weight):
self.PressureList = PressureList
self.Weight = weight
self.NewtonList = self.GetNewtonList()
#压力时间积分
self.FTI = self.GetFIT()
#平均压力峰值
self.aMax = self.GetAverageMax()
'''
def GetNewton(self, value):
# 保留两位小数
#2.58064E-2 = ka -> Pa 1e3 * 2.58064*E-5
return round(value*2.58064E-2,3)
'''
def GetNewton(self, value):
# 保留两位小数,加入体重参数影响。
#2.58064E-2 = ka -> Pa 1e3 * 2.58064*E-5
return round(value*2.58064E-2/self.Weight,3)
def GetNewtonList(self):
a = []
for i in self.PressureList:
a.append(self.GetNewton(i))
return a
def GetFIT(self):
'''
获取压力时间积分
:return:
'''
FTI = 0
for i in self.NewtonList:
FTI += i
return round(FTI/100,2) #求出压力时间积分,保留两位小数
def GetAverageMax(self):
'''
获取平均压力峰值
:return:
'''
if(len(self.NewtonList) ==0): return 0
return max(self.NewtonList)
if __name__ == '__main__':
import os
# 设置工作环境
Work_Path = "F:\\PlantarPressurePredictExperiment"
os.chdir(Work_Path)
pass