mesh_size的含义

问题描述 投票:0回答:1

下面的“mesh_size”是指每个单元的最大周长还是最大面积?

with pygmsh.geo.Geometry() as geom:
    geom.add_polygon(
        [
            [0.0, 0.0],
            [1.0, 0.0],
            [1.0, 1.0],
            [0.0, 1.0],
        ],
        mesh_size=0.1,
    )
    mesh = geom.generate_mesh()

pygmsh 的 PyPI 网站提供的信息很少。

python mesh numerical-methods triangulation finite-element-analysis
1个回答
0
投票

根据文档

您可能想查看 pygmsh repo 以获取更多信息。

© www.soinside.com 2019 - 2024. All rights reserved.