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

Turbine Stage

ASecurity

Use when you must analyze a single axial turbine stage: compute the specific work output, the stage loading, the flow coefficient, the degree of reaction, the total-to-total efficiency, and the blade row losses from the blade speed, the axial velocity, the absolute flow angles, and the relative flow angles. Produces the velocity-triangle performance parameters in SI units that gate the turbine stage design review in the FAR-33 engine context. Trigger: axial turbine stage, stage loading, degre...

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

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 turbine-stage --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Turbine Stage?

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

Security grade badge for Turbine Stage
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/ashfordeou-turbine-stage/badge)](https://www.skillsdirectory.com/skills/ashfordeou-turbine-stage)

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

Download with Pro
Files
SKILL.md
---
name: turbine-stage
description: "Use when you must analyze a single axial turbine stage: compute the specific work output, the stage loading, the flow coefficient, the degree of reaction, the total-to-total efficiency, and the blade row losses from the blade speed, the axial velocity, the absolute flow angles, and the relative flow angles. Produces the velocity-triangle performance parameters in SI units that gate the turbine stage design review in the FAR-33 engine context. Trigger: axial turbine stage, stage loading, degree of reaction, flow coefficient, blade row loss, total-to-total efficiency, specific work output, turbine rotor, turbine stator."
license: Apache-2.0
compliance: STANDARDS-REF
standards:
  - id: far-33
    reference-only: true
gated: false
domain: propulsion
pack: propulsion
compatibility: "agentskills.io SKILL.md; any SKILL.md host (Claude Code, Hermes, OpenClaw)"
metadata:
  domain: propulsion
  subdomain: axial-compressor
  tags: [axial-turbine-stage, velocity-triangle, stage-loading, flow-coefficient, degree-of-reaction, blade-row-loss, turbine-efficiency, specific-work, total-to-total-efficiency, axial-velocity, blade-speed]
  version: 0.1.0
  author: Aero Agent Skills
---

# Axial Turbine Stage (propulsion/axial-compressor/turbine-stage)

Use when the task is single axial turbine stage velocity-triangle
analysis: specific work output, stage loading, flow coefficient,
degree of reaction, blade row losses, and total-to-total or
total-to-static efficiency from the blade speed, axial velocity, and
flow angles.

## Domain quick reference

- Dixon convention: flow angles measured from the axial direction,
  all angles in RADIANS. Absolute angle alpha, relative angle beta.
- tan(beta) = u/ca - tan(alpha) at the same axial station; beta1,
  beta2 are the relative angles at rotor inlet and outlet.
- Specific work output w = u*ca*(tan(alpha1) - tan(alpha2)) in J/kg.
  Positive for a work-extracting stage (alpha1 > alpha2).
- Flow coefficient phi = ca/u, dimensionless.
- Stage loading psi = w/u**2, dimensionless; turbine stages run near
  psi = 1 to 3, higher than compressor stages.
- Degree of reaction r = 1 - ca/(2*u)*(tan(alpha1) + tan(alpha2)),
  dimensionless; r = 0 is an impulse stage, r = 0.5 is a symmetric
  50% reaction stage with equal enthalpy drops across rotor and
  stator rows.
- Row losses: nozzle loss = zeta_n*c1**2/2 and rotor loss =
  zeta_r*w2**2/2 in J/kg, with c1 = ca/cos(alpha1) and
  w2 = ca/cos(beta2); zeta_n and zeta_r are the row enthalpy loss
  coefficients (air-standard defaults 0.05 each).
- Total-to-total efficiency eta_tt = w/(w + nozzle_loss + rotor_loss),
  total-to-static efficiency eta_ts = w/(w + nozzle_loss +
  rotor_loss + c3**2/2) with the exit absolute angle alpha3 (axial
  exit alpha3 = 0 loses the full ca**2/2).
- Units: u, ca in m/s; angles in rad; w and losses in J/kg; phi, psi,
  r, eta dimensionless.

## Workflow

1. Fix the design point: blade speed u, axial velocity ca.
2. Set the absolute flow angles alpha1, alpha2; derive beta1, beta2
   from tan(beta) = u/ca - tan(alpha).
3. Compute the work output with specific_work.
4. Compute the dimensionless loading with flow_coefficient and
   stage_loading.
5. Compute the degree of reaction with degree_of_reaction; check the
   impulse (r = 0) and 50% reaction (r = 0.5) design limits.
6. Budget the row losses with blade_row_loss and compute the
   efficiencies with total_to_total_efficiency and
   total_to_static_efficiency.
7. Assemble the full assessment with stage_properties and gate the
   turbine stage design review on it.

## Pitfalls

- Degrees instead of radians: entering 45 for alpha1 instead of
  pi/4 changes the tangent and the work by a large factor; convert
  first.
- Angles from the tangential direction: this convention flips the
  tan terms and the sign of the work; keep angles from axial.
- Confusing alpha with beta: alpha is the absolute flow angle, beta
  the relative one; passing beta into specific_work double-counts
  the blade speed.
- Sign of work: alpha1 < alpha2 adds work to the flow (compressor
  sense); a turbine stage must show alpha1 > alpha2 for output.
- Negative loss coefficients: zeta_n or zeta_r below zero raise
  ValueError; do not catch and continue, the efficiency is
  meaningless.
- Non-physical inputs: u <= 0 or ca <= 0 raise ValueError.

## Behavior contract (gate 3)

The velocity-triangle logic is exercised by the gate 3 contract test:
scripts/test_turbine_stage.py against
scripts/turbine_stage_logic.py (stdlib unittest, offline). Run:
python3 scripts/test_turbine_stage.py

## Compliance

- Standards referenced, not reproduced: FAR-33 is US government work
  (public domain) and covers engine type certification, not stage
  analysis methods; the velocity-triangle relations are common
  turbomachinery 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 →