上一篇:有限元方法问答 07:建模实践 · 系列总目录 · 下一篇:有限元方法问答 09:数值积分
Q61 ⭐ "等参(isoparametric)"的含义
EN: “Isoparametric” means that the same shape functions are used to interpolate both the geometry (coordinates) AND the displacement field:
- Geometry: x=∑Ni(s,t)xi, y=∑Ni(s,t)yi
- Displacement: u=∑Ni(s,t)ui, v=∑Ni(s,t)vi
This is the defining characteristic: geometry and displacement use identical interpolation. If geometry uses fewer nodes than displacement → “subparametric”; if more → “superparametric.”
中文: “等参” = 几何坐标插值和位移插值使用同一组形函数。几何:x=∑Nixi, y=∑Niyi;位移:u=∑Niui, v=∑Nivi。这是等参单元的定义性特征。
Q62 ⭐ 4节点四边形形函数
EN: The 4-node quadrilateral shape functions in natural coordinates (s,t)∈[−1,1]×[−1,1]:
Ni=41(1+sis)(1+tit)
where (si,ti) are the natural coordinates of node i:
- N1 at (−1,−1): N1=41(1−s)(1−t)
- N2 at (+1,−1): N2=41(1+s)(1−t)
- N3 at (+1,+1): N3=41(1+s)(1+t)
- N4 at (−1,+1): N4=41(1−s)(1+t)
Properties: Ni=1 at node i, Ni=0 at all other nodes; ∑Ni=1.
中文: 四节点四边形形函数为 Ni=41(1+sis)(1+tit)。自然坐标范围 [−1,1]×[−1,1]。Ni在节点i为1、其他节点为0、和为1。
Q63 ⭐ Jacobian矩阵
EN: The Jacobian matrix J maps derivatives from natural coordinates (s,t) to global coordinates (x,y):
J=[∂s∂x∂t∂x∂s∂y∂t∂y]=[∑∂s∂Nixi∑∂t∂Nixi∑∂s∂Niyi∑∂t∂Niyi]
The derivative transformation is:
{∂Ni/∂s∂Ni/∂t}=J{∂Ni/∂x∂Ni/∂y}⇒{∂Ni/∂x∂Ni/∂y}=J−1{∂Ni/∂s∂Ni/∂t}
Area transformation: dxdy=∣J∣dsdt.
中文: Jacobian矩阵 J 将自然坐标导数映射为全局坐标导数。J 的每个元素 = ∑∂s∂Nixi 等。导数变换:全局导数 = J−1 × 自然导数。面积变换:dxdy=∣J∣dsdt。
Q64 ⭐ ∣J∣>0 的有效性条件
EN: For a valid isoparametric element, the Jacobian determinant must be positive everywhere:
∣J∣>0at all points (s,t)∈[−1,1]2
∣J∣≤0 indicates:
- The element is excessively distorted or concave
- One-to-one mapping between (s,t) and (x,y) is destroyed
- Interior angles exceed 180°
- Node ordering is wrong (not counterclockwise)
For convex quadrilaterals with proper node ordering, ∣J∣>0 is guaranteed.
中文: ⚠️ ∣J∣>0 是等参单元有效的充要条件。∣J∣≤0 意味着单元过度扭曲、凹四边形、节点顺序错误。对于凸四边形和正确的逆时针顺序,∣J∣>0 自动满足。
Q65 🔴 ∣J∣<0 的物理含义
EN: When ∣J∣<0, the natural-to-global coordinate mapping is no longer one-to-one. This means:
- A single point in natural coordinates maps to multiple points in global coordinates (or vice versa)
- The element has “folded over” onto itself
- Interior angles exceed 180° (concave quadrilateral)
- The element stiffness matrix may contain negative or erroneous entries
- Solution results from such elements are meaningless
Prevention: Maintain convex element shapes, use proper node ordering (counterclockwise), avoid excessive distortion.
中文: ∣J∣<0 意味着映射不再是一对一的——单元"折叠"了,内角超过180°(凹四边形),刚度矩阵可能含负值或错误项,结果毫无意义。预防:保持凸形状、正确节点顺序(逆时针)、避免过度扭曲。
Q66 🔴 8节点四边形角节点形函数的构造方法
EN: For 8-node quadrilateral (Q8, serendipity element), the corner shape functions are constructed through a correction procedure:
-
Mid-edge shape functions (for nodes 5-8):
- N5=21(1−s2)(1−t) (between nodes 1 and 2)
- N6=21(1+s)(1−t2) (between nodes 2 and 3)
- N7=21(1−s2)(1+t) (between nodes 3 and 4)
- N8=21(1−s)(1−t2) (between nodes 4 and 1)
-
Start with the standard 4-node bilinear shape functions: N^i=41(1+sis)(1+tit)
-
Correct each corner function by subtracting half of the adjacent mid-edge functions:
N1=N^1−21N5−21N8
and similarly for N2,N3,N4.
This ensures corner nodes still satisfy Ni=1 at node i and Ni=0 at all other nodes.
中文: Q8角节点形函数不能直接用双线性形函数,需要修正:角节点函数 = 4节点双线性形函数 − 1/2×(相邻两边中点形函数)。这保证了角节点处 Ni=1、其他节点处 Ni=0 的性质。
上一篇:有限元方法问答 07:建模实践 · 系列总目录 · 下一篇:有限元方法问答 09:数值积分