Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Authors
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

ProTermsPrivacyRefunds
Back to skills

Dynamic Stability

ASecurity

Use when you must evaluate the dynamic stability of an aircraft: compute the longitudinal stability derivatives (pitch stiffness M_alpha, pitch damping M_q, vertical force Z_alpha), estimate the short period and phugoid natural frequency and damping ratio from those derivatives, classify the lateral-directional modes (Dutch roll, roll subsidence, spiral) from the eigenvalues, and check each dynamic stability criterion: the short period damping band, the minimum Dutch roll damping, the spiral ...

2 stars
0 votes
0 copies
0 views
Added 9/27/2026
ai-agentspythongogit

Works with

claude code

Security Analysis

A100/100

Scanned 9/27/2026

Install to Claude Code

$npx -y skills add ashfordeOU/aero-agent-skills --skill dynamic-stability --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Dynamic Stability?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Dynamic Stability
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/ashfordeou-dynamic-stability/badge)](https://www.skillsdirectory.com/skills/ashfordeou-dynamic-stability)

More formats (shields.io, HTML) on the badges page.

Download with Pro
Files
SKILL.md
---
name: dynamic-stability
description: "Use when you must evaluate the dynamic stability of an aircraft: compute the longitudinal stability derivatives (pitch stiffness M_alpha, pitch damping M_q, vertical force Z_alpha), estimate the short period and phugoid natural frequency and damping ratio from those derivatives, classify the lateral-directional modes (Dutch roll, roll subsidence, spiral) from the eigenvalues, and check each dynamic stability criterion: the short period damping band, the minimum Dutch roll damping, the spiral time to double, the roll subsidence limit, and the non-divergent phugoid. Produces the mode metrics and the adequate or inadequate verdicts that gate the dynamic stability assessment. Trigger: dynamic stability, short period, phugoid, stability derivatives, classify modes, damping ratio, natural frequency, eigenvalues, time to double, roll subsidence."
license: Apache-2.0
compliance: STANDARDS-REF
standards:
  - id: far-25
    reference-only: true
  - id: cs-25
    reference-only: true
gated: false
domain: flight-mechanics
pack: flight-mechanics
compatibility: "agentskills.io SKILL.md; any SKILL.md host (Claude Code, Hermes, OpenClaw)"
metadata:
  domain: flight-mechanics
  subdomain: stability-control
  tags: [dynamic-stability, short-period, phugoid, stability-derivatives, classify-modes, damping-ratio, natural-frequency, eigenvalues, time-to-double, roll-subsidence]
  version: 0.1.0
  author: Aero Agent Skills
---

# Dynamic Stability (flight-mechanics/stability-control/dynamic-stability)

Use when the task is dynamic stability analysis: the longitudinal
modes (short period, phugoid), the lateral-directional mode
classification, and the damping and frequency criteria.

## Domain quick reference

Documented convention (stability axes): x forward, y out the right
wing, z down. Perturbation states are the angle of attack alpha and
the pitch rate q. All stability derivatives below are per unit mass:
M_alpha and M_q use the pitch inertia I_yy, Z_alpha uses the mass m.
The pitch stiffness M_alpha, the pitch damping M_q, and the vertical
force derivative Z_alpha are negative for a pitch-stable, damped
configuration; all angles in radians.

- Short period: the reduced-order (alpha, q) model with the state
  matrix A = [[Z_alpha/V, 1], [M_alpha, M_q]] gives the natural
  frequency omega_ns = sqrt(det A) = sqrt(M_q * Z_alpha / V - M_alpha)
  and the damping ratio from tr A = Z_alpha / V + M_q = -2 * zeta_s *
  omega_ns. The short period is a fast, well damped pitch oscillation,
  roughly 1-4 s on transport aircraft.
- Phugoid: the slow pitch-speed oscillation. The Lanchester
  approximation gives omega_np = sqrt(2) * g / V, the period
  T_p = sqrt(2) * pi * V / g (roughly 30-60 s), and the damping ratio
  zeta_p = 1 / (sqrt(2) * (L/D)). The phugoid is lightly damped.
- Stability derivatives: Z_alpha = -(q_bar * S * C_Lalpha) / m,
  M_alpha = (q_bar * S * c_bar * C_malpha) / I_yy, and
  M_q = (q_bar * S * c_bar^2 * C_mq) / (2 * V * I_yy), with the dynamic
  pressure q_bar, the wing area S, the mean chord c_bar, and the lift
  and moment coefficient slopes C_Lalpha, C_malpha, C_mq.
- Lateral-directional modes: a complex eigenvalue pair (non-zero
  imaginary part) is an oscillatory mode: a damped Dutch roll when the
  real part is negative, a divergent oscillation when it is positive.
  Real negative eigenvalues are convergent non-oscillatory modes: the
  fast roll subsidence (roll mode, time constant tau = -1 / L_p) and
  the slow stable spiral. A real positive eigenvalue is a divergent
  spiral. For a complex pair lambda = re + im * j the natural
  frequency is omega_n = |lambda| and the damping ratio is
  zeta = -re / |lambda|.
- Metrics: a divergent real root doubles amplitude in
  T2 = ln(2) / lambda; a convergent real root halves amplitude in
  T_half = ln(2) / |lambda|.
- Criteria: FAR-25.181 requires short period oscillations to be
  heavily damped and phugoid oscillations not to grow in amplitude.
  Common level 1 handling-quality criteria (MIL-F-8785C style,
  summary only, not reproduced): short period damping ratio in
  [0.3, 2.0]; Dutch roll damping ratio at least 0.08 with
  zeta * omega_n at least 0.15; roll subsidence time constant at most
  1.0 s; divergent spiral time to double at least 20 s; phugoid
  damping ratio positive.

## Workflow

1. Collect the dynamic pressure, wing area, mean chord, mass, pitch
   inertia, speed, and the coefficient slopes C_Lalpha, C_malpha,
   C_mq.
2. Compute the derivatives with z_alpha, m_alpha, and m_q.
3. Compute the short period frequency and damping ratio with
   short_period_frequency and short_period_damping; check the band
   with short_period_damping_adequate.
4. Compute the phugoid frequency, period, and damping ratio with
   phugoid_frequency, phugoid_period, and phugoid_damping; check the
   verdict with phugoid_acceptable.
5. Collect the lateral eigenvalues, classify each with classify_mode,
   and derive the damping ratio with damping_ratio, the time to double
   with time_to_double, or the time to half with time_to_half.
6. Check the Dutch roll criterion with dutch_roll_adequate, the roll
   subsidence limit with roll_mode_acceptable, and the spiral with
   spiral_acceptable.
7. Gate the dynamic stability assessment on the short period band,
   the phugoid verdict, and the three lateral criteria.

## Pitfalls

- Confusing the sign of the pitch stiffness: M_alpha negative is
  pitch-stable; a positive M_alpha drives the short period radicand
  toward zero or negative, which the model rejects.
- Forgetting the per-unit-mass normalization: M_alpha and M_q need
  I_yy in the denominator, Z_alpha needs m.
- Mixing units: the short period and phugoid formulas assume V in
  m/s, g in m/s^2, and radian-based derivatives; feeding degrees
  misstates every result.
- Reading the spiral criterion backwards: a divergent spiral passes
  only when the time to double is at least 20 s; a stable spiral
  (negative root) always passes.
- Confusing time to double with time to half: time_to_double needs a
  positive divergent root, time_to_half needs a negative convergent
  root, and each rejects the wrong sign.
- Treating every complex pair as damped: the real part decides; a
  positive real part is a divergent oscillation regardless of the
  imaginary part.

## Behavior contract (gate 3)

The dynamic stability logic is exercised by the gate 3 contract test:
scripts/test_dynamic_stability.py against
scripts/dynamic_stability_logic.py (stdlib unittest, offline). Run:

python3 scripts/test_dynamic_stability.py

## Compliance

- Standards referenced, not reproduced: FAR-25.181 and CS-25.181
  require heavily damped short period oscillations and non-growing
  phugoid oscillations for transport aeroplanes; the derivative and
  mode computations are common flight mechanics methodology,
  summary-only per standards-map.yaml.
- compliance: STANDARDS-REF, gated: false.

Attribution

ashfordeOUashfordeOU
View sourceMore from ashfordeOU →
SSkills DirectorySkills Directory

Know which skills are safe — weekly.

Best new skills + every skill we flagged as malicious. From the team that scanned 103,619.

Join free

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Know which skills are safe — weekly.

Best new skills + every skill we flagged as malicious. From the team that scanned 103,619.

Join free

Related Skills

Caveman

Ultra-compressed communication mode that cuts output tokens while keeping technical accuracy. Levels: lite, full, ultra and the wenyan variants. Use for /caveman, "caveman mode", "talk like caveman", "be brief" or "less tokens".

1074701 votes

Hyperplan

Adversarial multi-agent planning skill. Self-orchestrates 5 hostile category members (unspecified-low, unspecified-high, deep, ultrabrain, artistry) via team-mode for ruthless cross-critique debate, distills only the defensible insights, then MANDATORILY hands the distilled insight bundle to the `plan` agent for executable plan formalization. Use when planning needs maximum rigor and surfacing of weak assumptions, blind spots, and over-engineering. Triggers: 'hyperplan', 'hpp', '/hyperplan', ...

694821 votes

Mcp Code Execution

Routes multi-tool workflows through MCP servers for large datasets and pipelines. Use when Bash tool overhead is limiting throughput on data-heavy tasks.

3351 votes

catchup

Recovers the conversation and failed tool calls of a previous Codex, Claude Code, Antigravity, Cline, Copilot CLI, Cursor, DeepSeek Harness, Kimi, OpenCode, Pi Agent, or ZCode session. Use when the user says "catch up", "what did the last session do", "get me up to speed", "I switched agents", asks to recover/summarize a previous session before continuing, or asks to diagnose or report a catchup failure. Do NOT use for the current conversation, git history, or any non-agent log.

691 votes

math-skill

A comprehensive mathematical reasoning skill for AI assistants — handles arithmetic to research-level problems with rigorous step-by-step reasoning, systematic verification, and transparent uncertainty handling

381 votes
View all in ai-agents →