Handling the Giant Slalom

Category: 構造解析 | Integrated 2026-04-06
CAE visualization for large rotation theory - technical simulation diagram
大回転の取り扱い

Theory and Physics

What is Large Rotation?

🧑‍🎓

Professor, why do we need to treat "large rotation" specially?


🎓

Small rotations (approximately $\theta < 10°$) can be handled with linear approximation ($\sin\theta \approx \theta$), but this approximation breaks down for large rotations. In particular, finite rotations in 3D are non-commutative and non-additive (cannot simply be added).


Methods for Representing Rotation

🎓
RepresentationCharacteristicsApplications
Rotation Matrix $[R]$ (3×3)9 components. 6 orthogonality conditionsInternal FEM calculations
Euler Angles3 components. Gimbal lock problemRobotics
Rotation Vector3 components. Has singularities (360°)Abaqus beam elements
Quaternion4 components. No singularitiesGames, Aerospace
🧑‍🎓

Are quaternions the most stable?


🎓

Quaternions have no singularities and are numerically stable. However, in FEM, the rotation vector (pseudo-vector) is the most widely used. Caution is needed for singularities (rotation angle = multiples of 360°).


Summary

🎓

Key Points:


  • Large rotations are non-commutative and non-additive — The linear approximation for small rotations breaks down.
  • Rotation matrix, rotation vector, quaternion — Three representation methods.
  • Rotation vector is standard in FEM — Singularity at 360°.
  • Large rotation of beams/shells — Handled by co-rotational formulation.

Coffee Break Yomoyama Talk

When to Use Quaternions vs. Euler Angles

There are three types of numerical representations for 3D rotation: ① Euler angles (3 parameters), ② Quaternions (4 parameters), and ③ Rotation matrices (9 parameters). Euler angles suffer from "gimbal lock" (singular configurations), so quaternions are used for FEM large rotation analysis. Quaternions were discovered by Hamilton in 1843 and are now widely used in attitude control computers for robots, drones, and spacecraft.

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, which assumes "forces are applied slowly enough that acceleration can be ignored". 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$, which is the essence of the stiffness term. Now a question — an iron rod and a rubber band, which stretches more when pulled with the same force? 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 forces $f_b$ (e.g., gravity) and surface forces $f_s$ (e.g., pressure, contact forces). Think of it this way — the weight of a truck on a bridge is a "force acting on the entire volume" (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 mistake here: getting the load direction wrong. Intending "tension" but it becomes "compression" — sounds like a joke, but it actually happens when coordinate systems rotate 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, right? That's because the vibrational 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 vibrational energy to improve ride comfort. What if damping were zero? Buildings would keep swaying 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
VariableSI UnitNotes / 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 system 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$PaSteel: ~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

Numerical Handling of Large Rotation

🎓

Large rotation handling in FEM:


1. Calculate rotation increment $\Delta\theta$ for each increment

2. Update rotation: $[R_{n+1}] = [\Delta R] [R_n]$ (multiplicative update, not additive)

3. Include rotation contribution to tangent stiffness


🧑‍🎓

Multiplicative, not additive... updating rotation by multiplication, not addition.


🎓

Numerical accuracy degrades if the rotation increment per step exceeds 30°. Keep increments small to keep rotation per step small.


Summary

🎓
  • Multiplicative update of rotation — Additive update is inaccurate
  • Rotation per step < 30° — Guideline for accuracy
  • Solver handles it automatically — User just needs NLGEOM=YES

  • Coffee Break Yomoyama Talk

    Simo-Vu's Geometrically Exact Beam Theory

    In 1986, Simo and Vu-Quoc formulated a geometrically exact theory for Timoshenko beams that accurately handles arbitrary large displacements and rotations for FEM. It represents rotation with quaternions and uses nodal displacement vectors and rotation quaternions as independent unknowns. This formulation is the theoretical basis for ABAQUS's B31 beam element and can compute bending a 1-meter beam up to 90° with a single element within 1% error.

    Linear Elements (1st Order)

    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 every iteration. Provides 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 load-displacement curves.

    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 "flexible curves" — can represent curved changes, dramatically improving accuracy even at the same mesh density. However, computational cost per element increases, so judge based on total cost-effectiveness.

    Practical Guide

    Large Rotation in Practice

    🎓

    Robot arms, folding structures, hinge mechanisms, tape spring deployment, etc.


    Practical Checklist

    🎓
    • [ ] Is NLGEOM=YES set?
    • [ ] Is rotation angle per increment below 30°? (Is automatic time stepping enabled?)
    • [ ] Does the rotation vector for beam elements exceed 360°?
    • [ ] Are the resulting rotation angles physically reasonable?

    • Coffee Break Yomoyama Talk

      Large Rotation Dynamic Analysis of Robot Arms

      Achieving the cutting-edge position accuracy (±0.02mm) of a 6-axis industrial robot arm requires FEM dynamic analysis including large rotations of each link. In FANUC's robot arm FEM analysis, structural stresses during operation, including ±90° rotation at each joint, are evaluated to serve as design basis for repeated fatigue life. The combination of co-rotational formulation and large rotation formulation is the standard method for highest precision robot design in the 2020s.

      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 (post-processing visualization). Here's an important question — which step in cooking is most prone to failure? Actually, it's "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 like "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 for Large Rotation

      🎓

      All solvers support large rotation with NLGEOM=YES. No difference.


      Selection Guide

      🎓
      • Large rotation of beams → All solvers support. Co-rotational based.
      • Hinge mechanismsAbaqus *CONNECTOR (HINGE, REVOLUTE)
      • Multibody dynamicsAdams or RecurDyn (more efficient than FEM)

      • Coffee Break Yomoyama Talk

        LS-DYNA Large Rotation Beam Element Performance

        LS-DYNA's Beam element type 1 (Hughes-Liu beam) handles large displacement/rotation with a total Lagrangian formulation and is optimized for structural collapse analysis under impact loads. Livermore Software (now Ansys) added spot Velvet processing functionality for Beam Sections in 2018, improving contact behavior accuracy in large rotation-including steel structure collapse analysis by 20%. Also widely used for predicting buckling/bending behavior of thin steel tubes in automotive crash tests.

        The Three Most Important Questions for Selection

        • "What are you solving?": Does the required physical model/element type for handling large rotation have support? For example, in fluids, presence of LES support; in structures, contact/large deformation capability makes the 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 (GUI) and manual (script) transmission cars.
        • "How far will it expand?": Selection considering future analysis scale expansion (HPC support), deployment to other departments, and integration with other tools leads to long-term cost reduction.

        Advanced Technology

        Advanced Research on Large Rotation

        🎓
        • Lie group rotation theory — Differential geometry of the rotation group SO(3). Theoretically exact formulation of large rotation.
        • Quaternion-based FEM — Avoids singularities of rotation vectors.
        • Flexible multibody dynamics — FEM-MBD coupling for large-rotating flexible bodies.

        • Coffee Break Yomoyama Talk

          Large Rotation Dynamics of Spin-Driven Micro Rotors

          The silicon rotor in a MEMS gyroscope rotates at 10,000 rpm (166 Hz) during operation and is used for Coriolis force sensing. The coupling between large-amplitude in-plane vibration of the vibrating beam (electrically excited) and Coriolis-induced transverse vibration can be analyzed with large rotation dynamics formulated in a quaternion system. Bosch applied this analysis to mass production design of MEMS gyros in 2015, achieving angular velocity sensing accuracy of 0.05°/s.

          Troubleshooting

          Large Rotation Troubles

          🎓
          • Rotation angle exceeds 360° and
          • 関連シミュレーター

            この分野のインタラクティブシミュレーターで理論を体感しよう

            シミュレーター一覧

            関連する分野

            熱解析製造プロセス解析V&V・品質保証
            この記事の評価
            ご回答ありがとうございます!
            参考に
            なった
            もっと
            詳しく
            誤りを
            報告
            参考になった
            0
            もっと詳しく
            0
            誤りを報告
            0
            Written by NovaSolver Contributors
            Anonymous Engineers & AI — サイトマップ
            About the Authors