Initial stress stiffness matrix
Theory and Physics
Initial Stress Stiffness Matrix
Professor, are the initial stress stiffness matrix and the geometric stiffness matrix the same thing?
They are different names for the same concept. $[K_\sigma]$ is also called "initial stress stiffness," "geometric stiffness," or "stress stiffness." It is used in buckling analysis and vibration analysis.
Formulation
$[K_\sigma]$ is formulated from the current stress state $\{\sigma\}$. For beam elements, the axial force $N$ is used; for shell/solid elements, membrane stresses $N_{xx}, N_{yy}, N_{xy}$ are used.
$[G]$ is the displacement gradient matrix, $[S]$ is the stress matrix.
Summary
Euler Buckling and the Discovery of the Initial Stress Stiffness Matrix
Formulating buckling under compressive load as a linear algebra problem was the achievement of Leonhard Euler in 1744. The concept of "critical load" he derived actually corresponds to the modern expression "the initial stress stiffness matrix loses positive definiteness (eigenvalue becomes zero)." In the 1960s, Turner et al. introduced the initial stress stiffness matrix into FEM, making buckling analysis of arbitrary shapes possible for the first time.
Physical Meaning of Each Term
- Inertia Term (Mass Term): $\rho \ddot{u}$, i.e., "mass × acceleration". Have you ever experienced being thrown forward when slamming on the brakes? That "feeling of being carried away" is precisely the inertial force. Heavier objects are harder to set in motion and harder to stop once moving. Buildings shake during earthquakes because the ground moves suddenly while the building's mass "gets left behind." In static analysis, this term is set to zero, assuming "forces are applied slowly so acceleration is negligible." It absolutely cannot be omitted for impact loads or vibration problems.
- Stiffness Term (Elastic Restoring Force): $Ku$ or $\nabla \cdot \sigma$. When you stretch a spring, you feel a "force trying to return it," right? That's Hooke's law $F=kx$, the essence of the stiffness term. So, a question—if you pull an iron rod and a rubber band with the same force, which stretches more? Obviously the rubber band. This "resistance to stretching" is the Young's modulus $E$, which determines stiffness. A common misconception: "High stiffness = strong" is incorrect. Stiffness is "resistance to deformation," strength is "resistance to failure"—they are different concepts.
- External Force Term (Load Term): Body force $f_b$ (gravity, etc.) and surface force $f_s$ (pressure, contact force, etc.). Think of it this way—the weight of a truck on a bridge is a "force acting on the entire interior" (body force), while the force of the tires pushing on the road surface is a "force acting only on the surface" (surface force). Wind pressure, water pressure, bolt tightening force... all are external forces. A common pitfall here: getting the load direction wrong. Intending "tension" but it's actually "compression"—sounds like a joke, but it actually happens when coordinate systems are rotated in 3D space.
- Damping Term: Rayleigh damping $C\dot{u} = (\alpha M + \beta K)\dot{u}$. Try plucking a guitar string. Does the sound continue forever? No, it gradually fades away. That's because vibration energy is converted to heat by air resistance and internal friction in the string. Car shock absorbers work on the same principle—they intentionally absorb vibration energy to improve ride comfort. What if damping were zero? Buildings would continue shaking forever after an earthquake. Since that doesn't happen in reality, setting appropriate damping is crucial.
Assumptions and Applicability Limits
- Continuum Assumption: Treats material as a continuous medium, ignoring microscopic heterogeneity.
- Small Deformation Assumption (for linear analysis): Deformation is sufficiently small compared to initial dimensions, and the stress-strain relationship is linear.
- Isotropic Material (unless otherwise specified): Material properties are independent of direction (anisotropic materials require separate tensor definitions).
- Quasi-static Assumption (for static analysis): Ignores inertial and damping forces, considering only the balance between external and internal forces.
- Non-applicable Cases: For large deformation/large rotation problems, geometric nonlinearity is required. For nonlinear material behavior like plasticity or creep, constitutive law extensions are needed.
Dimensional Analysis and Unit Systems
| Variable | SI Unit | Notes / Conversion Memo |
|---|---|---|
| Displacement $u$ | m (meter) | When inputting in mm, unify loads and elastic modulus to MPa/N system |
| Stress $\sigma$ | Pa (Pascal) = N/m² | MPa = 10⁶ Pa. Be careful of unit inconsistency when comparing with yield stress |
| Strain $\varepsilon$ | Dimensionless (m/m) | Note the distinction between engineering strain and logarithmic strain (for large deformation) |
| Elastic Modulus $E$ | Pa | Steel: ~210 GPa, Aluminum: ~70 GPa. Note temperature dependence |
| Density $\rho$ | kg/m³ | In mm system: tonne/mm³ (= 10⁻⁹ tonne/mm³ for steel) |
| Force $F$ | N (Newton) | Unify as N in mm system, N in m system |
Numerical Methods and Implementation
Calculation of $[K_\sigma]$
Calculation in FEM:
1. Obtain stress distribution from static analysis (or nonlinear analysis)
2. Calculate $[K_\sigma]_e$ from the stress of each element
3. Assemble into global $[K_\sigma]$
Automatically calculated in all solvers (buckling analysis, prestress modal). Also used internally in NLGEOM nonlinear analysis.
Summary
How to Assemble the Initial Stress Stiffness Matrix
The initial stress stiffness matrix Kg is calculated by the integral ∫[G]ᵀ[σ][G]dV of the stress σij within the element and the shape function derivative matrix. When compressive stress dominates, Kg has negative definite components, and the load where the determinant of (K+Kg) becomes 0 is the linear buckling load Pcr. FEM linear buckling analysis reduces to solving the generalized eigenvalue problem (K+λKg)φ=0, where the minimum eigenvalue λmin represents the safety factor (safe if λmin>1).
Linear Elements (1st-order Elements)
Linear interpolation between nodes. Low computational cost but low stress accuracy. Beware of shear locking (mitigated by reduced integration or B-bar method).
Quadratic Elements (with Mid-side Nodes)
Can represent curved deformation. Stress accuracy improves significantly, but degrees of freedom increase by about 2-3 times. Recommended: When stress evaluation is important.
Full Integration vs Reduced Integration
Full Integration: Risk of over-constraint (locking). Reduced Integration: Risk of hourglass modes (zero-energy modes). Choose appropriately for the situation.
Adaptive Mesh
Automatic refinement based on error indicators (e.g., ZZ estimator). Efficiently improves accuracy in stress concentration areas. Includes h-method (element subdivision) and p-method (order increase).
Newton-Raphson Method
Standard method for nonlinear analysis. Updates tangent stiffness matrix each iteration. Shows quadratic convergence within convergence radius but has high computational cost.
Modified Newton-Raphson Method
Updates tangent stiffness matrix using initial value or every few iterations. Cost per iteration is low, but convergence speed is linear.
Convergence Criteria
Force residual norm: $||R|| / ||F_{ext}|| < \epsilon$ (typically $\epsilon = 10^{-3}$ to $10^{-6}$). Displacement increment norm: $||\Delta u|| / ||u|| < \epsilon$. Energy norm: $\Delta u \cdot R < \epsilon$
Load Increment Method
Applies total load not all at once but in small increments. The arc-length method (Riks method) can track beyond limit points on the load-displacement curve.
Analogy: Direct Method vs Iterative Method
The direct method is like "solving simultaneous equations accurately with pen and paper"—reliable but takes too long for large-scale problems. The iterative method is like "repeatedly guessing to approach the correct answer"—starts with a rough answer but improves accuracy with each iteration. It's the same principle as looking up a word in a dictionary: it's more efficient to open it at an estimated location and adjust forward/backward (iterative) than to search sequentially from the first page (direct).
Relationship Between Mesh Order and Accuracy
1st-order elements are like "approximating a curve with a ruler"—represented by straight line segments, so accuracy is limited. 2nd-order elements are like a "flexible curve"—can represent curved changes, dramatically improving accuracy even at the same mesh density. However, computational cost per element increases, so judgment should be based on total cost-effectiveness.
Practical Guide
Practical Checklist
Geometric Nonlinear Design of Steel Frame Structures
AISC 360-10 recommends using the "Direct Analysis Method (DAM)" that considers initial stress for the design of high-rise steel buildings. DAM, which automatically accounts for the reduction in horizontal stiffness of columns under compressive load (P-δ effect) using the initial stress stiffness matrix, is 3-5% more conservative but more accurate than the "Effective Length Method" which uses a conversion for a virtual slenderness ratio of 0.2. For buildings over 400m, DAM is used as the standard analysis method.
Analogy for Analysis Flow
The analysis flow is actually very similar to cooking. First, buy ingredients (prepare CAD model), do prep work (mesh generation), apply heat (solver execution), and finally plate it (visualization in post-processing). Here's an important question—in cooking, which step is most prone to failure? Actually, it's the "prep work." If mesh quality is poor, results will be a mess no matter how good the solver is.
Pitfalls Beginners Often Fall Into
Are you checking mesh convergence? Do you think "the calculation ran = the result is correct"? This is actually the most common trap for CAE beginners. The solver will always return "some answer" for the given mesh. But if the mesh is too coarse, that answer will be far from reality. Confirm that results stabilize with at least three levels of mesh density—neglecting this leads to the dangerous assumption that "the computer gave the answer, so it must be correct."
Thinking About Boundary Conditions
Setting boundary conditions is the same as "writing the problem statement" for an exam. If the problem statement is wrong? No matter how accurately you calculate, the answer will be wrong. "Is this surface really fully fixed?" "Is this load really uniformly distributed?"—Correctly modeling real-world constraint conditions is actually the most important step in the entire analysis.
Software Comparison
Tools
Supported by all solvers. Concept is common but names differ.
- Nastran: Stress stiffness matrix (KGGT)
- Abaqus: Geometric stiffness (inside NLGEOM)
- Ansys: Stress stiffness (PSTRES)
SAP2000 Direct Analysis Method Settings
In CSI SAP2000's Direct Analysis Method (DAM) settings, it can automatically apply the initial stress stiffness matrix and column stiffness reduction factor (0.8×EI) to execute nonlinear analysis considering P-δ and P-Δ effects. As an AISC 360 certified software, its adoption rate is high among US structural design firms, with standard DAM settings established especially for wind/earthquake response analysis of super high-rise buildings.
The 3 Most Important Questions for Selection
- "What are you solving?": Does the required physical model/element type for the initial stress stiffness matrix have support? For example, presence of LES support for fluids, contact/large deformation capability for structures makes a difference.
- "Who will use it?": For beginner teams, tools with rich GUI are suitable; for experienced users, flexible script-driven tools are better. Similar to the difference between automatic transmission cars (GUI) and manual transmission cars (script).
- "How far will you expand?": Selection considering future analysis scale expansion (HPC support), expansion to other departments, and integration with other tools leads to long-term cost reduction.
Advanced Technology
Advanced Research
Initial Stress Stiffness: Prestressed Concrete Design
The concept of initial stress stiffness was put into practical use by prestressed concrete engineer Freyssinet in bridge design in the 1940s. The principle where tensile prestress in PC steel wires (typically 1,200~1,400 MPa) gives initial compressive stress stiffness to concrete, doubling load-bearing capacity, is inherited in modern CAE analysis as the `PRESTRESS` option in each solver.
Troubleshooting
Troubles
Unreasonable Results Where Linear Buckling Eigenvalue is Less Than 1
Even if linear buckling analysis yields a result with eigenvalue λ<1 (already buckling at design load), buckling may not actually occur in reality. Since linear buckling assumes a "perfect shape" without initial imperfections, it becomes non-conservative for structures with large geometric stiffening effects like membrane pressure vessels. For shells, it is recommended to confirm with nonlinear buckling analysis that adds initial imperfections (geometric errors of 0.1~1 times the plate thickness).
When You Think "The Analysis Doesn't Match"
- First, take a deep breath—Panicking and randomly changing settings makes the problem more complex.
- Create a minimal reproducible case—Reproduce the initial stress stiffness matrix problem in its simplest form. "Subtractive debugging" is most efficient.
- Change one thing and re-run—Making multiple changes simultaneously makes it unclear what worked. The principle of "controlled experiment" same as in science.
- Return to physics—If the calculation result is non-physical like "objects floating against gravity," suspect fundamental mistakes in input data.
Related Topics
なった
詳しく
報告