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

Stress Spectrum Derivation

ASecurity

Use when derive the stress spectrum at the fatigue-critical location from a load event sequence per ECSS-E-ST-32C clauses 7.2.3–7.2.4: convert each load event in the load spectrum to a stress at the section of interest using cross-sectional area and stress concentration factor, apply rainflow cycle counting to extract stress amplitude and mean pairs, optionally apply a Goodman mean-stress correction to produce a fully-reversed equivalent amplitude spectrum, and aggregate cycle counts by stres...

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

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 stress-spectrum-derivation --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Stress Spectrum Derivation?

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

Security grade badge for Stress Spectrum Derivation
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/ashfordeou-stress-spectrum-derivation/badge)](https://www.skillsdirectory.com/skills/ashfordeou-stress-spectrum-derivation)

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

Download with Pro
Files
SKILL.md
---
name: stress-spectrum-derivation
description: "Use when derive the stress spectrum at the fatigue-critical location from a load event sequence per ECSS-E-ST-32C clauses 7.2.3–7.2.4: convert each load event in the load spectrum to a stress at the section of interest using cross-sectional area and stress concentration factor, apply rainflow cycle counting to extract stress amplitude and mean pairs, optionally apply a Goodman mean-stress correction to produce a fully-reversed equivalent amplitude spectrum, and aggregate cycle counts by stress amplitude bin ready for fatigue damage summation. Trigger: ecss, e-st-32-structures-scope, stress-spectrum, load-spectrum-counting, fatigue-critical-location, rainflow-counting, goodman-correction, cycle-counting."
license: Apache-2.0
compliance: STANDARDS-REF
standards:
  - id: ecss
    reference-only: true
gated: false
domain: space-systems
pack: space-systems
compatibility: "agentskills.io SKILL.md; any SKILL.md host (Claude Code, Hermes, OpenClaw)"
metadata:
  domain: space-systems
  subdomain: ecss
  tags: [ecss, e-st-32-structures-scope, stress-spectrum, load-spectrum-counting, fatigue-critical-location, rainflow-counting, goodman-correction, cycle-counting]
  version: 0.1.0
  author: Aero Agent Skills
---

# ECSS Structures — Stress Spectrum Derivation (space-systems/ecss/stress-spectrum-derivation)

Use when the task is deriving the stress spectrum at the fatigue-critical
location from the load spectrum per ECSS-E-ST-32C clauses 7.2.3–7.2.4 —
converting load events to stresses, counting cycles by the rainflow method,
applying mean-stress correction where required, and producing the amplitude
spectrum for fatigue damage summation.

## Domain quick reference

- The load spectrum (a sequence of load events from the mission profile) is
  first converted to a stress history at the critical cross-section by
  dividing each load by the net section area and multiplying by the stress
  concentration factor Kt (>= 1.0). A location with the highest peak stress
  magnitude across all events is the fatigue-critical location.
- Cycle counting transforms the stress history (a series of peaks and
  troughs) into discrete cycles, each described by a stress amplitude
  (half the peak-to-trough range) and a mean stress. The rainflow method
  per ECSS-E-ST-32C clause 7.2.4 is the required technique; it pairs
  ranges hierarchically so that large cycles are counted before the
  smaller residual cycles nested inside them.
- Mean stress has a first-order effect on fatigue life. When the
  ultimate tensile strength is known, the Goodman correction converts
  each amplitude–mean pair into a fully-reversed equivalent amplitude,
  allowing the resulting spectrum to be used directly against a
  fully-reversed S–N curve. A positive mean stress reduces the allowable
  amplitude; a zero mean leaves the amplitude unchanged.
- The stress spectrum is the aggregated table of (stress amplitude,
  mean stress, cycle count) bins sorted by descending amplitude. Each
  row drives one term in the Miner linear damage summation of subsequent
  fatigue analysis steps.

## Workflow

1. Identify the fatigue-critical location: evaluate the peak stress
   magnitude at each candidate cross-section across all load events and
   select the location with the highest value. Record the section area
   and the stress concentration factor Kt; if Kt is unavailable default
   to 1.0 and flag the assumption.
2. Convert the load spectrum to a stress history: for each load event
   compute stress = load / area × Kt. Preserve the ordering of events —
   the sequence matters for cycle counting.
3. Extract turning points from the stress history (local maxima and
   minima) to reduce the time series to its cycle-counting skeleton,
   retaining the start and end values.
4. Apply rainflow cycle counting to the turning-point sequence: scan the
   stack of three consecutive points; when the inner range is smaller
   than or equal to the outer range, close a full cycle with that inner
   range; otherwise advance. Process remaining stack points as half-cycles
   at the end.
5. For each cycle compute the stress amplitude (half the range) and mean
   stress (midpoint of the range).
6. If the ultimate tensile strength is available, apply the Goodman
   correction to each amplitude–mean pair to obtain the fully-reversed
   equivalent amplitude. Reject any pair where the mean stress magnitude
   equals or exceeds the ultimate strength — that pair represents static
   failure, not fatigue.
7. Aggregate cycles into the stress spectrum table by binning identical
   amplitude–mean pairs and summing their counts. Sort the table by
   descending stress amplitude.
8. Verify the spectrum: confirm at least one cycle was extracted, confirm
   no bin has a negative count, and confirm all amplitudes are non-negative.

## Pitfalls

- Skipping the turning-point extraction and applying rainflow to the raw
  time series directly — flat segments between identical values create
  spurious zero-range cycles that inflate the total cycle count without
  contributing to damage.
- Applying a stress concentration factor below 1.0 — Kt represents a
  stress raiser and cannot reduce the nominal stress; a value below 1.0
  indicates a geometry or data error and must be rejected.
- Treating a Goodman mean stress equal to the ultimate strength as a
  valid fatigue cycle — the Goodman denominator reaches zero at that
  point, implying static fracture rather than a finite fatigue life.
- Confusing cycle amplitude with cycle range — the amplitude is half the
  range; feeding the full range into an S–N curve calibrated for
  amplitude overstates damage by a factor of two.
- Omitting half-cycles from the residual stack — they carry 0.5 cycle
  weight each and must be included in the Miner summation; dropping them
  unconservatively understates cumulative damage.

## Behavior contract (gate 3)

The stress conversion, turning-point extraction, rainflow cycle counting,
Goodman correction, spectrum aggregation, and critical-location selection
logic is exercised by the gate 3 contract test:
scripts/test_stress_spectrum_derivation.py against
scripts/stress_spectrum_derivation_logic.py (stdlib unittest, offline). Run:
python3 scripts/test_stress_spectrum_derivation.py

## Compliance

- ECSS standards are freely downloadable (ESA); cite the source and
  paraphrase 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 →