gpt4 book ai didi

python - 如何通过 matplotlib 在矩形条上绘制温度(应力)?

转载 作者:太空宇宙 更新时间:2023-11-04 02:49:13 25 4
gpt4 key购买 nike

我尝试使用 matplotlib 库绘制梁的应力。

我已经使用公式计算并绘制了一个例子:

Figure 1: Example of before and after of finite element of beam

如图 1 所示,您会看到绿色光束在元素 3 和元素 8 处具有更大的应力因此,如果我用彩虹渐变填充颜色,整个蓝色光束将是相同的颜色,但绿色光束将具有元素 3 和 8 的不同颜色将比其他元素更偏红。

example of stress plot

这是我的一些代码和结果。

import matplotlib as mpl
import matplotlib.pyplot as plt
import matplotlib.tri as tri
import numpy as np

node_coordinate = {1: [0.0, 1.0], 2: [0.0, 0.0], 3: [4.018905, 0.87781],
4: [3.978008, -0.1229], 5: [1.983549, -0.038322],
6: [2.013683, 0.958586], 7: [3.018193, 0.922264],
8: [2.979695, -0.079299], 9: [1.0070439, 0.989987],
10: [0.9909098, -0.014787999999999999]}
element_stress = {1: 0.2572e+01, 2: 0.8214e+00, 3: 0.5689e+01,
4: -0.8214e+00, 5: -0.2572e+01, 6: -0.4292e+01,
7: 0.4292e+01, 8: -0.5689e+01}

n = len(element_stress.keys())
x = np.empty(n)
y = np.empty(n)
d = np.empty(n)

for i in element_stress.keys():
x[i-1] = node_coordinate[i][0]
y[i-1] = node_coordinate[i][1]
d[i-1] = element_stress[i]

mask = np.logical_or(x < 1.e20, y < 1.e20)
x = np.compress(mask, x)
y = np.compress(mask, y)
triang = tri.Triangulation(x, y)
cmap = mpl.cm.jet
fig = plt.figure(figsize=(80, 40))
ax1 = fig.add_axes([0.05, 0.80, 0.9, 0.15])
cax = ax1.tricontourf(triang, d, cmap=cmap)
fig.colorbar(cax)
plt.show()

example plot from my code

你会看到我知道所有节点坐标以及元素的应力值。

但是我的图形颜色不平滑,没有像上面的示例图那样水平排列。

如何做呢?

附注对不起我的语法,我不是本地人。

谢谢。征求意见。

最佳答案

增加等高线级别的数量会使绘图看起来更平滑。例如。对于 101 个级别,

levels=np.linspace(d.min(), d.max(), num=101)
tri = ax1.tricontourf(triang, d, cmap=cmap, levels=levels)
fig.colorbar(tri)

enter image description here

关于python - 如何通过 matplotlib 在矩形条上绘制温度(应力)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44342311/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com