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 Free Thermoelastic Check

ASecurity

"Use when verify that a structural finite element model handles a uniform

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

Works with

claude codecli

Security Analysis

A100/100

Scanned 9/27/2026

Install to Claude Code

$npx -y skills add ashfordeOU/aero-agent-skills --skill stress-free-thermoelastic-check --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Stress Free Thermoelastic Check?

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

Security grade badge for Stress Free Thermoelastic Check
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/ashfordeou-stress-free-thermoelastic-check/badge)](https://www.skillsdirectory.com/skills/ashfordeou-stress-free-thermoelastic-check)

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

Download with Pro
Files
SKILL.md
---
name: stress-free-thermoelastic-check
description: "Use when verify that a structural finite element model handles a uniform
  temperature change correctly by producing negligible stress under stress-free boundary
  conditions. Apply a uniform ΔT across all elements, confirm temperature uniformity
  of the applied thermal load, compare each element's stress residual against the
  expected E·α·ΔT scale, and confirm that nodal displacements match the free thermal
  expansion. Non-zero stress indicates a modelling error such as mismatched coefficient
  of thermal expansion, an unintended kinematic constraint, or inconsistent material
  property assignment. This check is required to validate the thermoelastic response
  of the FEM before thermal load cases are accepted. Trigger: ecss, e-st-32-structures-scope,
  thermoelastic, fem-verification, stress-free, thermal-expansion, cte, fem-validation,
  temperature-uniformity."
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, thermoelastic, fem-verification, stress-free, thermal-expansion, cte, fem-validation]
  version: 0.1.0
  author: Aero Agent Skills
---

# ECSS Structural Engineering — Stress-Free Thermoelastic Deformation Check (space-systems/ecss/stress-free-thermoelastic-check)

Use when the task is to verify that the finite element model correctly
represents free thermal expansion under a uniform temperature change, per
ECSS-E-ST-32C §5.6. The check confirms that no spurious stress develops
in an unconstrained body subjected to a uniform ΔT, and that nodal
displacements match the expected free-expansion values.

## Domain quick reference

- A body free from mechanical constraints and subjected to a spatially
  uniform temperature change ΔT should develop only thermal strains
  ε_thermal = α·ΔT in each principal direction; stress must be zero
  everywhere because no constraint prevents free expansion.
- If the FEM produces non-zero stress under this load case, a modelling
  defect is present. Common causes are: a coefficient of thermal expansion
  (CTE) assigned to one element that differs from its neighbours,
  a residual kinematic constraint (e.g. an inadvertently fixed degree of
  freedom), or a material property inconsistency introduced at a
  multi-material interface.
- The stress residual is evaluated against the characteristic
  thermoelastic stress scale S = E·α·|ΔT|. Any element stress that
  exceeds a small fraction of S (typically 10⁻⁶ × S) indicates a
  modelling error.
- Displacement at each node must match the analytical free-expansion
  value d = α·ΔT·L_ref (projected along the relevant axis) within the
  model's numerical precision tolerance.
- Temperature uniformity must also be verified: if the applied thermal
  load itself is not spatially uniform, the check is invalid and the
  load definition must be corrected before proceeding.

## Workflow

1. Define a thermal load case in which every element is assigned the
   same temperature change ΔT. Apply stress-free boundary conditions:
   remove all mechanical constraints except the minimum set needed to
   suppress rigid-body motion (typically three translational and three
   rotational constraints at a single reference node, or equivalent).
2. Verify temperature uniformity: extract the temperature assigned to
   each element and confirm that the spread (max − min) is below the
   accepted uniformity tolerance (default 0.01 °C). A non-uniform
   temperature field invalidates the check and must be corrected.
3. Run the FEM solution and extract element stresses. For each element,
   compute the characteristic thermoelastic stress scale S = E·α·|ΔT|
   and compare the maximum principal stress component against the
   fraction threshold (default fraction = 10⁻⁶). Flag every element
   where max(|σ_xx|, |σ_yy|, |σ_zz|) > fraction × S.
4. Extract nodal displacements and compare each node's computed
   displacement against the analytically expected free-expansion
   displacement. Flag every node where the Euclidean residual exceeds
   the displacement tolerance (default 10⁻⁶ m or fraction of
   characteristic length).
5. Aggregate all element and node findings. The check is passed only
   when: (a) temperature uniformity is satisfied, (b) no element exceeds
   the stress residual threshold, and (c) no node exceeds the
   displacement residual threshold.
6. Document the ΔT applied, the stress fraction used, the number of
   elements and nodes checked, and any failures with their element or
   node IDs. A failed check requires model correction followed by a
   repeat run before the thermal load cases are accepted.

## Pitfalls

- Retaining too many kinematic constraints when setting up the
  stress-free case: even one unnecessarily fixed translational degree of
  freedom will generate reactions that produce non-zero stress and cause
  every element in the constrained region to fail the check
  spuriously. The boundary condition for this test must allow free
  thermal breathing of the entire mesh.
- Using a non-uniform applied temperature and attributing the resulting
  stress to a mesh defect: if the load itself has spatial gradients
  the check is meaningless. Verify temperature uniformity first; do not
  proceed to stress evaluation if the uniformity check fails.
- Setting the stress fraction threshold too loosely (e.g. 0.1): a
  10 % tolerance masks real CTE mismatches at material interfaces.
  The recommended threshold of 10⁻⁶ × E·α·|ΔT| is consistent with
  typical FEM double-precision arithmetic noise floors.
- Comparing absolute displacements without accounting for the reference
  rigid-body suppression point: the expected free-expansion displacement
  is measured relative to the constrained reference node, not to the
  undeformed origin. Mis-referencing inflates the residual at every node.

## Behavior contract (gate 3)

The temperature-uniformity, element-stress, and displacement-residual
logic is exercised by the gate 3 contract test:
scripts/test_stress_free_thermoelastic_check.py against
scripts/stress_free_thermoelastic_check_logic.py (stdlib unittest,
offline). Run:
python3 scripts/test_stress_free_thermoelastic_check.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 →