本文主要是介绍桥梁抗震规范反应谱Python实现,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
上述图片参考自-《公路桥梁抗震设计规范》(JTGT 2231-01—2020)
import numpy as np #导入numpy库
import matplotlib.pyplot as plt #导入绘图库
plt.style.use("bmh") #设置不同风格样式,还可以选择classic
plt.rcParams['font.sans-serif'] = ['SimSun']#设置字体
plt.rcParams['axes.unicode_minus'] = False#确保 Matplotlib 绘图中的负号显示正确。
b5 = 0.04 #反应谱最大值
d5 = 0.35 #周期
f5 = 0.02 #起点
g5 = 6 #最大时间
h5 = 0.02 #时间步长
#反应谱公式
def S(T5):Smax = b5if T5 <= 0.1:return Smax*((0.6*T5)/0.1)elif 0.1 < T5 < d5:return Smaxelif d5 < T5 <= g5:return Smax*(d5/T5)
T5_range = np.linspace(f5, g5, int(g5/h5))
S_range = [S(T5) for T5 in T5_range]
#绘图
plt.figure("设计加速度反应谱",(12,8))
plt.plot(T5_range, S_range)
plt.xlabel("时间 (s)")
plt.ylabel("设计加速度反应谱")
plt.xlim(0,6)
plt.ylim(bottom=0)
plt.show()
#导出文件
with open("data.txt", "w") as file:for i in range(len(T5_range)):file.write(str(T5_range[i]) + " " + str(S_range[i]) + "\n")
这篇关于桥梁抗震规范反应谱Python实现的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!