Field Output(FO,场变量输出)和 History Output(HO,历史变量输出) 是 Abaqus 中两种基本的数据输出类别。这两者是独立的,有不同的应用场景。刚开始接触 Abaqus 的话会对这两个变量的使用感到困惑。
文章分类:Tips
Python for Abaqus: code for meshing a part
Region used for material orientation assignment can also be used in meshing a part. Here is an example of messing a part using C3D8R element.
Python for Abaqus: code for discrete material orientation assignment
Some Python codes for build Region in Abaqus are really difficult to figure out although Abaqus has a lot of examples and detailed manual and reference. Here is an example for creating discrete material orientation using Python script.
通过命令行在 Abaqus 中运行 Python 脚本的两种方式
有时候只能在没有图形界面的情况下运行 Abaqus,比如在某些高性能计算集群中,又或者仅仅是为了能够通过 Python 批量运行模拟并获取结果等。
Abaqus 与 Fortran 的连接
之前使用学校的自动升级程序安装的 Abaqus 6.14.3 居然没有自动连接 Fortran 编译器,导致使用用户子程序的时候发生编译错误。试了好半天才找到解决办法,记录备查。
Python script to get ODB object
Python script could also be used to perform postprocessing in Abaqus. The first step might be to get the ODB object containing the data to process. Here are two methods to create a variable for the ODB object.
解决 Excessive distortion 的一般思路
使用 Abaqus 模拟分析大变形情况时一个经常出现又不容易解决的错误就是单元过度变形(Excessive Element Distortion)。出现该错误模型就会中止运行。虽然 Abaqus 会具体地给出出现过度变形的那些单元(ErrElemExcessDistortion),然而这些信息往往对解决问题并没有多少帮助。
An introduction on the macro script feature in Abaqus
Abaqus has a feature to record almost all of one’s operations in Abaqus CAE environment into script in format of Python language. This feature is called Macro Manager, detailed in Abaqus/CAE manual (Section 9.5, a html page).
Abaqus Python Command getSequenceFromMask
When recording operation using Macro Manager in Abaqus, some operations are showed using commmand “getSequenceFromMask”. It is totally unreadable. So we need to tell Abaqus to record this kind of operations in other manner.
How to calculate value of E/Knn, G1/Kss & G2/Ktt
For a Traction Separation interface behaviour, there are three property values to be set: E/Knn, G1/Kss & G2/Ktt. I am looking for the method to determine/calculate the values.