本次脚本将要打开指定数据库文件,并输出指定位置(set)的位移信息。
编程思路:
脚本源代码:
#!/user/bin/python
# -* - coding:UTF-8 -*-
# 本脚本的功能是读取输出数据库 viewer_tutorial.odb中半球形冲头中心点的位移值
#
#导入odb数据库模块
from odbAccess import *
#打开viewer_tutorial.odb文件(放在工作目录下)
odb = openOdb(path='viewer_tutorial.odb')
#创建变量表示第1个分析步
step1=odb.steps['Step-1']
# 创建变量表示第1个分析步的最后一帧
lastFrame = step1.frames[-1]
# 创建变量表示半球冲头中心施加荷载的节点集 'PUNCH',它属于部件实例PART-1-1
center = odb.rootAssembly.instances['PART-1-1'].nodeSets['PUNCH']
# 创建变量表示第1个分析步最后一帧的位移U
displacement = lastFrame.fieldOutputs['U']
# 创建变量表示第1个分析步最后一帧节点集 Punch 的位移
centerDisplacement = displacement.getSubset(region=center)
# 输出节点集中每个节点的场输出结果(本例中,只包含一个节点)
for v in centerDisplacement.values:
print 'Node label:', v.nodeLabel
print 'Displacement in X direction:', v.data[0]
print 'Displacement in Y direction:', v.data[1]
print 'Displacement: ', v.magnitude
# 关闭输出数据库文件(很有必要)
odb.close()
23行用到了getSubset方法,其作用是获取集 合区域
操作脚本如下:
结果如下:
Node label: 1000
Displacement in X direction: -7.891572e-34
Displacement in Y direction: -76.45553
Displacement: 76.4555282593
参考书籍:[1]曹金凤, 王旭春, 孔亮. Python语言在Abaqus中的应用[M]. 机械工业出版社, 2011.
E N D
来源:易木木响叮当