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

Thrust Vector Control

ASecurity

Use when you must size or analyze a rocket thrust vector control (TVC) system: compute the side force from the engine thrust and the nozzle deflection angle, the control torque about the vehicle center of gravity from the side force and the moment arm, and the axial thrust loss from the deflection cosine, and size the actuator authority the gimbal actuators must deliver. Covers the TVC mechanisms: gimbaled engine or nozzle, flex-seal nozzle, jet vanes, and liquid injection, and contrasts thru...

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

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 thrust-vector-control --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Thrust Vector Control?

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

Security grade badge for Thrust Vector Control
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/ashfordeou-thrust-vector-control/badge)](https://www.skillsdirectory.com/skills/ashfordeou-thrust-vector-control)

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

Download with Pro
Files
SKILL.md
---
name: thrust-vector-control
description: "Use when you must size or analyze a rocket thrust vector control (TVC) system: compute the side force from the engine thrust and the nozzle deflection angle, the control torque about the vehicle center of gravity from the side force and the moment arm, and the axial thrust loss from the deflection cosine, and size the actuator authority the gimbal actuators must deliver. Covers the TVC mechanisms: gimbaled engine or nozzle, flex-seal nozzle, jet vanes, and liquid injection, and contrasts thrust vector control with aerodynamic control surfaces for launch vehicles and upper stages. Produces the deflection angle, side force, control torque, axial thrust loss, and actuator sizing in consistent SI units. Trigger: thrust vector control, tvc, gimbal deflection, nozzle deflection, side force, control torque, axial thrust loss, actuator authority, jet vanes, flex-seal nozzle."
license: Apache-2.0
compliance: STANDARDS-REF
standards:
  - id: ecss
    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: rocket
  tags: [thrust-vector-control, tvc, gimbal-deflection, nozzle-deflection, side-force, control-torque, axial-thrust-loss, actuator-authority, jet-vanes, flex-seal-nozzle, liquid-injection]
  version: 0.1.0
  author: Aero Agent Skills
---

# Thrust Vector Control (propulsion/rocket/thrust-vector-control)

Use when the task is sizing or analyzing a rocket thrust vector control
system: deflection-driven side force, control torque about the center
of gravity, axial thrust loss, and the actuator authority the gimbal
actuators must deliver.

## Domain quick reference

- TVC mechanisms: a gimbaled engine or nozzle pivots the whole thrust
  chamber on a gimbal bearing; a flex-seal nozzle bends a flexible
  joint between the fixed and the movable nozzle sections (common on
  solid rocket motors); jet vanes are heat-resistant vanes in the
  exhaust stream; liquid injection injects a secondary fluid into the
  diverging section to deflect the flow with an oblique shock.
- The deflection angle delta is the angle between the deflected thrust
  vector and the vehicle axis.
- Side force: F_side = T * sin(delta), perpendicular to the vehicle
  axis.
- Control torque about the center of gravity: M = F_side * L, where L
  is the moment arm from the gimbal point to the center of gravity.
- Axial thrust loss from the deflection: T * (1 - cos(delta)); for
  small angles this is about T * delta^2 / 2.
- Actuator authority has three components: angular authority (max
  deflection), rate (deg/s, sets the achievable attitude bandwidth),
  and torque (overcomes bearing friction, hinge moments, and inertia).
- TVC produces control force only while the engine thrusts, but it
  works at zero dynamic pressure and in vacuum; aerodynamic control
  surfaces produce force from q * S * CN and lose authority as dynamic
  pressure falls, so upper stages rely on TVC alone.
- Practical deflection limits are roughly +/-5 to +/-15 deg; beyond
  that the cosine loss and actuator loads grow quickly.

## Workflow

1. Collect the engine thrust T, the gimbal deflection angle delta, and
   the moment arm L from the gimbal point to the center of gravity.
2. Compute the side force with side_force(thrust, deflection_rad).
3. Compute the control torque with control_torque(thrust,
   deflection_rad, moment_arm).
4. Compute the axial thrust loss with axial_thrust_loss(thrust,
   deflection_rad) and the retained fraction with axial_thrust_ratio.
5. Size the actuator: actuator_authority_required(required_torque,
   moment_arm) gives the side force the actuator must deliver, and
   deflection_angle_for_side_force gives the deflection needed for a
   demanded side force; compare it with the actuator angular authority
   to check saturation.

## Pitfalls

- Routing nozzle flow questions here: area ratio, exit Mach, choked
  mass flow, and ideal thrust belong to nozzle-design; TVC works with
  the already-designed thrust vector.
- Routing aerodynamic control questions here: hinge moments, control
  surface effectiveness, and aero control authority belong to the
  control-surface-effectiveness and control-surface-sizing leaves;
  TVC sizing is the thrust-driven analog.
- Routing delta-v and stage questions here: rocket equation, mass
  ratio, and staging belong to rocket-sizing and rocket-staging; TVC
  is attitude control, not trajectory energy.
- Using degrees in the trigonometry: the logic module takes radians;
  convert deg * pi / 180 before calling.
- Dropping the cosine loss at large deflection: a 15 deg deflection
  loses about 3.4% of the axial thrust, which matters for ascent
  performance budgets.
- Mixing up the moment arm: the arm is from the gimbal point to the
  center of gravity, not the nozzle length or the vehicle length.
- Assuming control without thrust: TVC produces no side force when the
  engine is off; coast phases need other attitude control.
- Treating rate and torque as interchangeable: a slow high-torque
  actuator cannot recover from a fast disturbance; both specs must
  close the loop with the control law.

## Behavior contract (gate 3)

The side force, control torque, axial thrust loss, deflection-for-
side-force, and actuator authority logic is exercised by the gate 3
contract test: scripts/test_thrust_vector_control.py against
scripts/thrust_vector_control_logic.py (stdlib unittest, offline).
Run:
python3 skills/propulsion/rocket/thrust-vector-control/scripts/test_thrust_vector_control.py

## Compliance

- Standards referenced, not reproduced: ECSS is a free ESA download
  (ecss.nl/standards); TVC force and torque geometry is standard
  mechanics, 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 →