Mechanism Analysis

Category: 構造解析 | Integrated 2026-04-06
CAE visualization for mechanism analysis theory - technical simulation diagram
機構解析(メカニズム解析)

Theory and Physics

Mechanism Analysis

🧑‍🎓

Professor, what kind of problems does mechanism analysis handle?


🎓

Kinematic and dynamic analysis of linkage mechanisms, cam mechanisms, gear trains, etc. Determining output motion (displacement, velocity, acceleration) and acting forces from input motion (angular velocity, etc.).


Kinematics Analysis vs. Dynamics Analysis

🎓
  • Kinematics Analysis — Ignores forces. Only position, velocity, acceleration. Solves constraint equations.
  • Dynamics Analysis — Mass × acceleration = force. Newton-Euler Equations.

  • Summary

    🎓
    • Kinematics — Constraint equations. Position/Velocity/Acceleration.
    • Dynamics — Newton-Euler. Force/Torque.
    • Adams, RecurDyn — Standard MBD tools.
    • Automotive suspensions, robots, engines — Main applications.

    • Coffee Break Yomoyama Talk

      The Theory of Four-Bar Linkages Started with Watt's Steam Engine

      The theoretical roots of mechanism analysis lie in the "Watt straight-line mechanism" for which James Watt obtained a patent in 1784. This four-bar linkage was devised by Watt to extract the reciprocating motion of a steam engine piston along a near-straight path, designed at the time purely by geometric intuition. Later, the analytical framework was established by Franz Reuleaux in his 1875 work "Kinematics of Machinery," forming the conceptual foundation for modern CAE mechanism analysis.

      Physical Meaning of Each Term
      • Inertia Term (Mass Term): $\rho \ddot{u}$, i.e., "mass × acceleration". Have you ever experienced being thrown forward during sudden braking? That "feeling of being pulled" 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 enough to ignore acceleration." It absolutely cannot be omitted for impact loads or vibration problems.
      • Stiffness Term (Elastic Restoring Force): $Ku$ or $\nabla \cdot \sigma$. When you pull a spring, you feel a "force trying to return it," right? That's Hooke's law $F=kx$, the essence of the stiffness term. Now 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 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 is a "force acting only on the surface" (surface force). Wind pressure, water pressure, bolt tightening force... all are external forces. A typical mistake here: getting the load direction wrong. Intending "tension" but modeling "compression"—it 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 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 specified otherwise): 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 mm, ensure loads and elastic modulus are also unified 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$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

      FEM/MBD for Mechanism Analysis

      🎓
      • Adams — Define mechanisms via GUI. Standard for kinematics + dynamics.
      • RecurDyn — Strong for large-scale contact (chains, gears).
      • Abaqus *CONNECTOR — Simple mechanisms within FEM.

      • Summary

        🎓
        • Simple mechanismsAbaqus *CONNECTOR
        • Complex mechanismsAdams or RecurDyn (dedicated MBD solvers).

        • Coffee Break Yomoyama Talk

          Inverse Kinematics (IK) Solutions Have Multiple Solutions for Robot Arms

          Inverse Kinematics (IK) for multi-joint robots generally has multiple solutions (multiple joint angle combinations can achieve the same end-effector position), making solution selection a critical design issue. The elbow up/down posture of a 6-axis industrial robot (e.g., FANUC M-20iA) is typical, offering up to 8 solution configurations for the same welding point. Simcenter Motion (Adams) and MSC Nastran articulation analysis handle solution selection by choosing the nearest solution from the initial posture using a continuation method.

          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 Midside 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.

          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. Quadratic convergence within convergence radius, but high computational cost.

          Modified Newton-Raphson Method

          Updates tangent stiffness matrix at initial value or every few iterations. Lower cost per iteration, but linear convergence speed.

          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 full load not at once, but in small increments. The arc-length method (Riks method) can trace 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 too time-consuming for large-scale problems. The iterative method is like "repeatedly guessing to approach the correct answer"—initially a rough answer, but accuracy improves with each iteration. It's the same principle as looking up a word in a dictionary: it's more efficient to estimate where to open it and adjust forward/backward (iterative method) than to search sequentially from the first page (direct method).

          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 judge based on overall cost-effectiveness.

          Practical Guide

          Mechanism Analysis in Practice

          🎓

          Automotive door opening/closing, wipers, suspension. Robot joints. Feed mechanisms of machine tools.


          Practical Checklist

          🎓
          • [ ] Is the mechanism's DOF correct? (Gruebler's formula)
          • [ ] Do joint positions and types match the drawings?
          • [ ] Is the input motion (angular velocity, torque, etc.) correct?
          • [ ] Does the output (displacement, force) match the design specifications?

          • Coffee Break Yomoyama Talk

            Automotive Door Hinge Optimization is a Highlight of MBD Mechanism Analysis

            MBD mechanism analysis of automotive door opening/closing mechanisms (2 hinges + check link) is a realistic composite problem dealing with simultaneous optimization of door opening/closing force, hinge load, and stopper impact. Mazda, in the rear door design of the CX-5, used mechanism MBD analysis to predict opening/closing force with 0.5N accuracy and optimized the check spring characteristics to virtually eliminate user "catch feeling," as reported in a JASA (Japan Automobile Manufacturers Association) paper.

            Analogy: Analysis Flow

            The analysis flow is actually very similar to cooking. First, buy ingredients (prepare CAD model), do the prep work (mesh generation), apply heat (solver execution), and finally plate it (visualization in post-processing). Here's an important question—which step in cooking is most prone to failure? Actually, it's the "prep work." If mesh quality is poor, the 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 across at least three mesh density levels—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 often the most critical step in the entire analysis.

            Software Comparison

            Tools

            🎓
            • Adams — Automotive suspension. Industry standard.
            • RecurDyn — Strong for chains, gears, large-scale contact.
            • MATLAB/Simscape — Integration with control systems.
            • SolidWorks Motion — Simple MBD integrated with CAD.

            • Coffee Break Yomoyama Talk

              CATIA Kinematics Pioneered Designer-Oriented Mechanism MBD

              Dassault Systèmes' CATIA V5 DMU Kinematics (Digital Mockup Kinematics) module, since its launch in 1997, popularized the concept of "digital prototyping," allowing designers to check mechanism motion directly on CAD models. Its use in the Airbus A320ceo flap mechanism design, partially eliminating physical prototypes and shortening development time, is featured as a representative success case in Dassault's commercial materials.

              The Three Most Important Questions for Selection

              • "What are you solving?": Does it support the physical models/element types needed for mechanism analysis? For example, for fluids, the presence of LES support; for structures, the capability for contact/large deformation makes a difference.
              • "Who will use it?": For beginner teams, tools with rich GUIs are suitable; for experienced users, flexible script-driven tools are better. Similar to the difference between an automatic transmission car (GUI) and a manual transmission car (script).
              • "How far will it expand?": Selection considering future expansion of analysis scale (HPC support), deployment to other departments, and integration with other tools leads to long-term cost reduction.

              Advanced Technologies

              Advanced Topics in Mechanism Analysis

              🎓
              • Topology Optimization + Mechanisms — Automatic design of optimal link shapes.
              • Compliant Mechanisms — Achieve motion through elastic deformation (no joints).
              • Origami Mechanisms — Kinematics of folding structures.

              • Coffee Break Yomoyama Talk
                関連シミュレーター

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

                シミュレーター一覧

                関連する分野

                この記事の評価
                ご回答ありがとうございます!
                参考に
                なった
                もっと
                詳しく
                誤りを
                報告
                参考になった
                0
                もっと詳しく
                0
                誤りを報告
                0
                Written by NovaSolver Contributors
                Anonymous Engineers & AI — サイトマップ