ANSYS-APDL applied torsional load command CERIG

1. Requirements

A 0.8m * 0.4m * 0.04m thick steel plate, there is a moment in the side plates of the role moment size 500N * m, finite element calculation method of trial stress distribution plate.

2. ANSYS finite element analysis

2.1 APDL modeling

!程序头 
FINISH 
/CLEAR 
/FILENAME, VSR 
/PREP7

!设置单元   
ET,1,SOLID185
ET,2,MASS21

R,2,1E-6,1E-6,1E-6,0,0,0,

!设置材料-钢
MP,EX,1,210E9
MP,NUXY,1,0.33
MP,DENS,1,7850

!建立模型
BLC4,0,0,0.8,0.4,0.04
!创建点
K,9,-0.1,0.2,0.02
K,10,0.9,0.2,0.02


!设置属性
TYPE,1
MAT,1

!设置网格划分
LESIZE,1,,,20
LESIZE,2,,,40
LESIZE,9,,,10
VMESH,ALL

!点划分网格
TYPE,2
REAL,2

KSEL,S,,,9,10,,
KMESH,ALL
ALLSEL
EPLOT

2.2 APDL load is applied

!施加固定约束,选取中间的几个节点
NSEL,S,LOC,X,0.4,0.4
NSEL,R,LOC,Z,0.02,0.03
NPLOT
D,ALL,ALL
ALLSEL

!左侧耦合
NSEL,S,LOC,X,-0.1,0
NPLOT
!CERIG,NODE(-0.1,0.2,0.02),ALL,ALL,,,,
CERIG,9472,ALL,ALL,,,,
ALLSEL

!右侧耦合
NSEL,S,LOC,X,0.8,0.9
NPLOT
CERIG,NODE(0.9,0.2,0.02),ALL,ALL,,,,
ALLSEL

!施加载荷
/SOLU
F,NODE(-0.1,0.2,0.02),MY,-500!绕Y轴的扭矩
F,NODE(0.9,0.2,0.02),MY,500
FINISH

/SOL
ANTYPE,0
SOLVE

2.3 APDL View Results

FINISH
/POST1
SET,FIRST
/EFACET,1
PLNSOL, S,X, 0,1.0

3. TELL

If fixed at one end in an end load is applied, the resulting stress cloud as shown in FIG.

Guess you like

Origin www.cnblogs.com/gaozihan/p/11078882.html