egm/plot_data.py

73 lines
1.6 KiB
Python
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import numpy as np
category_names_7欧电阻_随塔高变化 = ["100", "110", "120", "130", "140", "150"]
# 第1列反击 第2列绕击
data_7欧电阻_随塔高变化 = np.array(
[
[0.000002, 0.019094],
[0.000003, 0.043287],
[0.000006, 0.073033],
[0.000010, 0.103132],
[0.000019, 0.130923],
[0.000032, 0.155414],
]
)
category_names_15欧电阻_随塔高变化 = ["100", "110", "120", "130", "140", "150"]
data_15欧电阻_随塔高变化 = np.array(
[
[0.000039, 0.019094],
[0.000064, 0.043287],
[0.000098, 0.073033],
[0.000170, 0.103132],
[0.000287, 0.130923],
[0.000440, 0.155414],
]
)
category_names_130m塔高_不同接地电阻 = ["7", "10", "15", "20", "25", "30"]
data_130m塔高_不同接地电阻 = np.array(
[
[0.000010, 0.103132],
[0.000101, 0.103132],
[0.000171, 0.103132],
[0.000333, 0.103132],
[0.000563, 0.103132],
[0.000950, 0.103132],
]
)
category_names_150m塔高_不同地线保护角 = ["-1", "-3", "-6"]
data_150m塔高_不同地线保护角 = np.array(
[
[0.000440, 0.155414],
[0.000433, 0.128227],
[0.000429, 0.099819],
]
)
category_names_66m串长_不同塔高 = ["100", "120", "140"]
data_66m串长_不同塔高 = np.array(
[
[0.000053, 0.023285],
[0.000139, 0.083229],
[0.000470, 0.145586],
]
)
category_names_68m串长_不同塔高 = [100, 120, 140]
data_68m串长_不同塔高 = np.array(
[
[0.000039, 0.019094],
[0.000098, 0.073033],
[0.000287, 0.130923],
]
)