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

Glide Flight Test

ASecurity

Use when you must run a glide flight test at idle thrust to measure the sink rate and the lift to drag ratio of an airplane: derive the sink rate from the altitude loss and the segment time, compute the lift to drag ratio from the true airspeed and the sink rate, correct the results for the weight change, the air density, and the residual idle thrust, and locate the best glide speed. Produces the measured and corrected sink rate in m/s, the lift to drag ratio, and the best glide speed that ga...

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

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 glide-flight-test --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Glide Flight Test?

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

Security grade badge for Glide Flight Test
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/ashfordeou-glide-flight-test/badge)](https://www.skillsdirectory.com/skills/ashfordeou-glide-flight-test)

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

Download with Pro
Files
SKILL.md
---
name: glide-flight-test
description: "Use when you must run a glide flight test at idle thrust to measure the sink rate and the lift to drag ratio of an airplane: derive the sink rate from the altitude loss and the segment time, compute the lift to drag ratio from the true airspeed and the sink rate, correct the results for the weight change, the air density, and the residual idle thrust, and locate the best glide speed. Produces the measured and corrected sink rate in m/s, the lift to drag ratio, and the best glide speed that gate the glide test assessment. Trigger: glide test, sink rate, idle thrust, lift to drag, best glide speed, flight test."
license: Apache-2.0
compliance: STANDARDS-REF
standards:
  - id: far-25
    reference-only: true
  - id: cs-25
    reference-only: true
gated: false
domain: flight-test-operations
pack: flight-test-operations
compatibility: "agentskills.io SKILL.md; any SKILL.md host (Claude Code, Hermes, OpenClaw)"
metadata:
  domain: flight-test-operations
  subdomain: performance
  tags: [glide-testing, sink-rate, lift-to-drag, idle-thrust, flight-test]
  version: 0.1.0
  author: Aero Agent Skills
---

# Glide Flight Test (flight-test-operations/performance/glide-flight-test)

Use when the task is glide flight testing for a flight test program:
sink rate and lift to drag measurement at idle thrust, weight and
density corrections, and best glide speed checks.

## Domain quick reference

- Units: speeds in m/s, altitude in m, time in s, sink rate in m/s,
  densities in kg/m^3, weights in consistent units (ratio only).
- sink_rate: v_sink = altitude_loss / time, the mean sink rate over a
  timed straight glide segment.
- descent_angle: gamma = atan(1 / (L/D)) in degrees, the steady glide
  path angle.
- ld_from_sink_rate: L/D ~= V_tas / v_sink, the small-angle
  horizontal-speed form, exact as the path angle approaches zero.
- sink_rate_from_airspeed: v_sink = V_tas * sin(gamma), gamma in
  degrees, converted inside the function.
- weight_corrected_sink_rate: v_sink_ref = v_sink_test *
  sqrt(W_ref / W_test); sink rate scales with the square root of the
  weight ratio at constant L/D.
- density_corrected_airspeed: V_ref = V_tas * sqrt(rho_test / rho_ref);
  at constant lift coefficient, true airspeed scales with the inverse
  square root of the air density.
- idle_thrust_corrected_ld: L/D_true = 1 / (1 / (L/D)_m - T/W),
  removing the residual idle thrust from the measured ratio.
- best_glide_speed: v_best = v_ref * sqrt((L/D)_max / (L/D)_ref).
- glide_ratio_from_distance: E = horizontal / altitude_loss, the
  horizontal distance covered per unit altitude lost.
- Idle power setting: engines at flight idle, gear and flaps in the
  test configuration, trimmed, hands-and-feet-off stabilized condition.

## Workflow

1. Stabilize the airplane at the test configuration with the engines
   at idle thrust; record altitude versus time over a straight,
   constant-heading glide segment.
2. Compute the sink rate with sink_rate from the altitude loss and
   the segment time.
3. Convert the measured calibrated airspeed to true airspeed for the
   test density altitude before any ratio is formed.
4. Compute the lift to drag ratio with ld_from_sink_rate from the
   true airspeed and the sink rate.
5. Apply the corrections: weight_corrected_sink_rate,
   density_corrected_airspeed, and idle_thrust_corrected_ld.
6. Locate the best glide speed with best_glide_speed from a reference
   speed and the maximum lift to drag ratio.
7. Report the measured and corrected sink rate, the lift to drag
   ratio, and the best glide speed for the glide test assessment.

## Pitfalls

- Using the calibrated airspeed instead of the true airspeed: sink
  rate and L/D need V_tas at the test density altitude, not the
  instrument reading.
- Treating the idle thrust as exactly zero: residual idle thrust lifts
  the measured L/D; idle_thrust_corrected_ld removes it when the
  thrust to weight ratio is known.
- Mixing the sink rate with the airspeed: L/D is V_tas / v_sink, not
  V_tas / altitude_loss and not V_tas / time.
- Scaling the sink rate linearly with weight: the correction is the
  square root of the weight ratio, not the ratio itself.
- Forgetting the density correction on the airspeed: V_ref =
  V_tas * sqrt(rho_test / rho_ref) at constant lift coefficient.
- Reading the small-angle form as exact at steep angles: V_tas /
  v_sink is the horizontal-speed form; use descent_angle for the
  exact atan form.
- A zero or negative sink rate has no glide: the segment is not
  descending, so L/D from the sink rate is undefined and must raise.
- Gliding in a turn or with configuration changes: the measurement is
  only valid in the straight, trimmed, hands-and-feet-off condition.

## Behavior contract (gate 3)

The sink rate, lift to drag, and correction logic is exercised by the
gate 3 contract test: scripts/test_glide_flight_test.py against
scripts/glide_flight_test_logic.py (stdlib unittest, offline). Run:
`python3 scripts/test_glide_flight_test.py`

## Compliance

- Standards referenced, not reproduced: FAR-25 is US government work
  (public domain) and CS-25 is a free EASA download; glide test sink
  rate and lift to drag measurement is common flight-test methodology
  in the FAR 25.101 / 25.141 general performance context, 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 →