板壳力学课程设计《鸡蛋壳的有限元仿真》

1.首先,查资料确定鸡蛋壳的长轴和短轴,明白蛋形系数是什么意思。
蛋形系数就是短轴/长轴;蛋形角我只知道是方程里面的theta,但是具体的几何意义我不清楚,或许我需要专门学相关的几何知识。
2.
工作流:matlab里面用ezplot画出图来,并得到点(见dan.m),然后把点导出txt到CAD中形成表面。
调整工作流:使用python在abaqus里轴对称画壳体,然后建立截面确定厚度。
工作难点
如何把一个蛋画成y轴对称的?
很简单,在方程中将x,y替换即可。
删除原来的网格后,怎么重新画?
abaqus删除网格后需要点击mesh->part,这时就重新出现了生成网格的图标。

网格划分有“poorElements”,按这个网格最后的job也不能通过,有如下的报错:
The job “Job-1” has been created.
The job “EggJob” has been created.
The model database has been saved to “C:\Users\Administrator\Desktop\Advanced-Deep-Learning-with-Keras-master\chapter8-vae\myhomework\eggshell.cae”.
The job input file “EggJob.inp” has been submitted for analysis.
Macro “Macro_cal” has been added to “F:\temp\abaqusMacros.py”
Error in job EggJob: Normal cannot be computed in 261 elements. The nodal coordinates may be incorrect or the element aspect ratio may exceed 1000 to 1. The elements have been identified in element set ErrElemNormal.
Error in job EggJob: Error in defining normal to the element surface at a node in 261 elements. The elements have been identified in element set ErrElemShellNormal.
Job EggJob: Analysis Input File Processor aborted due to errors.
Error in job EggJob: Analysis Input File Processor exited with an error.
Job EggJob aborted due to errors.

一个可能回答:
https://zhidao.baidu.com/question/182802916.html
目前解决问题有两个方向:
1.改变单元类型
通过mesh control ,改变单元为三角形单元,并且缩小种子的尺寸为0.2(观察原始点可以确定),不再报错。
不过算的确实慢。
2.合并面

The job input file “EggJob.inp” has been submitted for analysis.
Job EggJob: Analysis Input File Processor completed successfully.
Error in job EggJob: Too many attempts made for this increment
Job EggJob: Abaqus/Standard aborted due to errors.
Error in job EggJob: Abaqus/Standard Analysis exited with an error - Please see the message file for possible error messages if the file exists.
Job EggJob aborted due to errors.

自己做出的椭圆为什么不行,abaqus自带的椭圆行?
自己的椭圆实质上是一个多边形。当边长很小时,网格很难划分。
abaqus自带椭圆实际上可能采用了某种技巧划分网格。这个问题我想进一步弄清楚,但是需要先把作业交了。。。
在最新版的作业当中我采用缩减点的方式解决了这个问题。。。办法很简单,还是值得一看。

删除旧的part后,要注意把对应的约束条件、载荷也删掉。

作业论文见:
https://github.com/DUTxutengfei/eggshell_project_2021

你可能感兴趣的:(板壳力学)