今天和chatGTP沟通了一天,试了各种方法,也不算是浪费时间,就当作避雷了。
关于建立几何模型:只是建立模型,没有划分网格!
方法1. 在ls-prepost建模,输出为.step 文件。
方法2. 在freeCAD建模,输出为.iges文件。
这两种文件都可以在这两个软件相互顺利地读取,但是读不进gmsh。
出现的问题是:导入gmsh的模型,只能后续划分网格,而模型本身的顶点,面,体的信息都无法读取,在gmsh的script都没有任何显示,nothing!
咨询chatGPT,净出馊主意。。。说是gmsh搭配python读取几何体信息
代码如下:
import gmsh
import numpy as np
import os
os.chdir('D:/aphdresearch/research2/source-send-ma/ma_qin02')
# Initialize Gmsh
gmsh.initialize()
# Load the geometry file
gmsh.merge('Unnamed-Body.step')
# Create a mesh
#gmsh.model.mesh.generate(3)
# Get the node coordinates
node_tags, node_coords, _ = gmsh.model.mesh.getCoords()
# Reshape the node coordinates array
node_coords = np.reshape(node_