上一篇:无 · 系列总目录 · 下一篇:有限元方法问答 02:预备知识

L1 — Introduction(FEM基本思想与流程)


Q1 ⭐ FEM的核心思想是什么?

EN: The Finite Element Method (FEM) is a numerical method for solving differential equations by discretizing a continuous body into a finite number of simple elements, connected at nodes, with the displacement at nodes being the primary unknowns. This converts an infinite-DOF continuous problem into a finite-DOF algebraic system: KU=F\mathbf{KU} = \mathbf{F}, where K\mathbf{K} is the global stiffness matrix, U\mathbf{U} is the nodal displacement vector, and F\mathbf{F} is the nodal force vector.

中文: 有限元方法是将连续体离散为有限个简单单元,通过节点连接,以节点位移为基本未知量,将无限自由度问题转化为有限自由度代数方程组 KU=F\mathbf{KU}=\mathbf{F} 的数值方法。K是总刚度矩阵,U是节点位移向量,F是节点力向量。


Q2 ⭐ 写出FEM分析的8个通用步骤

EN: The correct order is:

  1. Discretize and select element type
  2. Select a displacement function (shape functions) within each element
  3. Define strain/displacement and stress/strain relationships (ε=Bd\boldsymbol{\varepsilon}=\mathbf{Bd}, σ=Dε\boldsymbol{\sigma}=\mathbf{D}\boldsymbol{\varepsilon})
  4. Derive the element stiffness matrix and equations (ke=BTDBdV\mathbf{k}_e = \int \mathbf{B}^T\mathbf{D}\mathbf{B}\,dV)
  5. Assemble element equations to obtain global equations and apply boundary conditions
  6. Solve for unknown nodal displacements (KffUf=FfKfcUc\mathbf{K}_{ff}\mathbf{U}_f = \mathbf{F}_f - \mathbf{K}_{fc}\mathbf{U}_c)
  7. Solve for strains and stresses (ε=Bd\boldsymbol{\varepsilon}=\mathbf{Bd}, σ=Dε\boldsymbol{\sigma}=\mathbf{D}\boldsymbol{\varepsilon})
  8. Interpret and evaluate the results

中文: (1)离散化并选择单元类型→(2)选择位移函数→(3)定义应变/位移和应力/应变关系→(4)推导单元刚度矩阵→(5)装配全局方程并施加边界条件→(6)求解节点位移→(7)计算应变和应力→(8)解释和评估结果。口诀:离-选-定-导-装-求-算-评。


Q3 ⭐ KU=F\mathbf{KU=F} 中各符号的含义

EN: K\mathbf{K} = global stiffness matrix (assembled from element stiffness matrices); U\mathbf{U} = global nodal displacement vector (the primary unknowns); F\mathbf{F} = global nodal force vector (applied forces + equivalent nodal forces).

中文: K = 总刚度矩阵(由单元刚度矩阵装配而成);U = 总节点位移向量(基本未知量);F = 总节点力向量(外加载荷+等效节点力)。


Q4 🟡 FEM是精确解还是近似解?

EN: FEM provides an approximate solution. The exact solution satisfies the governing PDE at EVERY material point (strong form), while FEM satisfies it only in a weighted-integral sense (weak form). The FEM displacement field is constrained by the assumed shape functions. In displacement-based FEM, the model is stiffer than the real structure, so displacements are underestimated (lower bound).

中文: FEM是近似解。精确解需在每个物质点满足PDE(强形式),FEM仅在加权积分意义上满足(弱形式)。位移型FEM偏硬(低估位移),解从下方收敛于精确解。


Q5 🟢 节点(node)和单元(element)的定义

EN: A node is a discrete point in the mesh where displacements (DOFs) are defined and computed. An element is a subdomain of the structure bounded by nodes, within which the displacement field is interpolated from nodal values using shape functions.

中文: 节点是网格中定义和求解位移的离散点;单元是由节点围成的子区域,内部位移由节点位移通过形函数插值得到。


Q6 🟢 自由度(DOF)的定义

EN: A Degree of Freedom (DOF) is an independent displacement (or rotation) component at a node. In 2D plane problems each node has 2 DOFs (u,vu, v); in 3D solids each node has 3 DOFs (u,v,wu, v, w); for beams each node also has rotational DOFs (θ\theta).

中文: 自由度是节点处独立的位移(或转角)分量。平面问题每节点2个DOF(u,vu,v);三维实体每节点3个DOF(u,v,wu,v,w);梁单元还有转角DOF(θ\theta)。



上一篇:无 · 系列总目录 · 下一篇:有限元方法问答 02:预备知识