Bird Strike Analysis
Theory and Physics
What is Bird Strike?
Professor, is bird strike analysis about aircraft colliding with birds?
Yes. FAR 25.631 / CS 25.631 mandates aircraft bird impact resistance. The main evaluation targets are engine ingestion, impact on the windshield, and impact on the wing leading edge.
Bird Modeling
Birds deform fluidly upon impact (behavior closer to fluid than solid). In FEM:
| Model | Characteristics | Application |
|---|---|---|
| SPH Particles | Mesh-free. Strong against large deformations | Most common |
| ALE | Treats bird as Eulerian fluid | High accuracy |
| Lagrangian Solid | Standard solid elements | Low-speed impact |
Modeling the bird with SPH particles!
SPH particles have no connections between nodes, so they can naturally represent the bird's "splattering" behavior upon impact. LS-DYNA's SPH + Lagrangian (aircraft structure) coupling is standard.
Impact Conditions
Typical conditions per FAR 25.631:
- Bird Mass: 1.8 kg (4 lb) — Medium-sized bird
- Impact Velocity: Equivalent to V_c (cruise speed). 180–250 m/s
- Impact Energy: $E = mv^2/2$ ≈ 30–60 kJ
Impact at 180 m/s... that's an incredible amount of energy.
60 kJ is less than a car crash (180 kJ at 56 km/h), but because the impact area is extremely small, localized penetration occurs. The structural integrity of the windshield and engine intake is tested.
Summary
Key Points:
- Mandated by FAR/CS 25.631 — Bird impact resistance performance
- Model bird with SPH particles — Represents fluid-like deformation
- LS-DYNA SPH + Lagrangian coupling — Industry standard
- High-speed impact at 180–250 m/s — Pay attention to localized penetration
Bird Strike Impact Force Exceeds Imagination
When a 1.8kg bird collides with an aircraft at 800 km/h, the impact load reaches about 150 kN at its peak. FAR 25.571 mandates testing with a 1.8kg bird at flight speed, and for CFRP windshield certification tests, SPH method simulations using Abaqus became standardized among major Western manufacturers after the 2000s.
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 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 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 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. Now a question — an iron rod and a rubber band, which stretches more when pulled with the same force? Obviously the rubber. This "resistance to stretching" is the Young's modulus $E$, which determines stiffness. A common misconception: "High stiffness ≠ strong". Stiffness is "resistance to deformation", strength is "resistance to failure" — they are different concepts.
- External Force Term (Load Term): Body force $f_b$ (e.g., gravity) 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 volume" (body force), 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 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. 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 — intentionally absorbing vibration energy to improve ride comfort. What if damping were zero? Buildings would keep 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 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 and 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 load/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
Bird Model Using SPH
SPH bird model in LS-DYNA:
```
*SECTION_SPH
1, 1.0, 0.0, 0.0, 0, 0
*MAT_NULL
1, 950. $ Density 950 kg/m3 (bird ≈ close to water)
*EOS_GRUNEISEN
1, 1480., ... $ Equation of state for water
*INITIAL_VELOCITY_SET
bird, 200000., 0., 0. $ 200 m/s (mm/ms)
```
Bird density is 950 kg/m³, close to water?
A bird's body is mostly water (70–80%). During high-speed deformation upon impact, the bird behaves as a fluid. The equation of state for water (EOS_GRUNEISEN) describes the pressure-density relationship.
Structure Side Modeling
Summary
SPH Method Changed Bird Strike Analysis
Traditional Lagrangian FEM had the problem of computational failure due to excessive deformation of the bird body mesh, but the situation changed completely after SPH (particle method) was implemented in LS-DYNA in the late 1990s. The bird body is modeled with an equation of state equivalent to water (Mie-Grüneisen model), and realistic pressure waveforms can be reproduced with about 5000 particles of particle diameter 0.003–0.005 m.
Linear Elements (1st Order Elements)
Linear interpolation between nodes. Low computational cost but low stress accuracy. Beware of shear locking (mitigated with 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.
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 from initial value or every few iterations. Cost per iteration is low, but convergence 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 full load not at once, but in small increments. The arc-length method (Riks method) can trace beyond extremum 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 accuracy improves 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 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 total cost-effectiveness.
Practical Guide
Bird Strike Practice
Bird strike testing is mandatory for aircraft Type Certification (TC). Validate beforehand with FEM.
Practical Checklist
Is it a pass if there's no penetration?
For windshields, the criterion is "no penetration" (crew safety). For wing leading edges, the criterion is "ability to continue safe flight". Even without penetration, failure can occur if large deformation damages hydraulic lines, etc.
Engine Fan Testing is Common Worldwide
For bird strike certification based on EASA CS-E 800 standards, a 1.8kg bird is projected at high speed into the first-stage fan of a turbofan engine to confirm the engine can safely shut down. For the Boeing 787 GEnx-1B engine certification, parametric analysis covering over 200 incidence angle and velocity conditions was performed using ANSYS LS-DYNA before actual firing tests.
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 — which step is most prone to failure in cooking? 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 "calculation ran = results are correct"? This is actually the most common trap for CAE beginners. The solver always returns "some answer" for the given mesh. But if the mesh is too coarse, that answer is 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 a test. 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
Bird Strike Tools
Related Topics
なった
詳しく
報告