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

Adhesive Bonded Joints

ASecurity

Use when you must analyze a single-lap adhesive bonded joint between two identical adherends: compute the Volkersen shear-lag parameter from the adherend modulus and thickness and the adhesive shear modulus and thickness, the average adhesive shear stress from the load, bond width and overlap length, the peak shear stress at the bondline ends with the shear-lag correction, and the joint margin against the adhesive allowable shear stress. Produces the average and peak stresses, the peak to ave...

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

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 adhesive-bonded-joints --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Adhesive Bonded Joints?

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

Security grade badge for Adhesive Bonded Joints
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/ashfordeou-adhesive-bonded-joints/badge)](https://www.skillsdirectory.com/skills/ashfordeou-adhesive-bonded-joints)

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

Download with Pro
Files
SKILL.md
---
name: adhesive-bonded-joints
description: "Use when you must analyze a single-lap adhesive bonded joint between two identical adherends: compute the Volkersen shear-lag parameter from the adherend modulus and thickness and the adhesive shear modulus and thickness, the average adhesive shear stress from the load, bond width and overlap length, the peak shear stress at the bondline ends with the shear-lag correction, and the joint margin against the adhesive allowable shear stress. Produces the average and peak stresses, the peak to average concentration, the margin ratio with MS margin, and the pass or fail verdict. Trigger: adhesive bonded joint, single lap joint, shear lag parameter, adhesive shear stress, overlap length, Volkersen shear distribution, bondline peak stress, adhesive allowable."
license: Apache-2.0
compliance: STANDARDS-REF
standards:
  - id: cmh-17
    reference-only: true
gated: false
domain: structures
pack: composites
compatibility: "agentskills.io SKILL.md; any SKILL.md host (Claude Code, Hermes, OpenClaw)"
metadata:
  domain: structures
  subdomain: composites
  tags: [adhesive-bonded-joints, single-lap-joint, shear-lag-parameter, adhesive-shear-stress, overlap-length, volkersen-shear-distribution, bondline-peak-stress, adhesive-allowable]
  version: 0.1.0
  author: Aero Agent Skills
---

# Adhesive Bonded Joints (structures/composites/adhesive-bonded-joints)

Use when the task is analyzing a single-lap adhesive bonded joint
between two adherends of a composite or metallic structure: the
Volkersen-style shear-lag model for the bondline, the average and peak
adhesive shear stresses, and the joint margin against the adhesive
allowable. This leaf implements the shear-lag model in pure Python,
stdlib only, and reports the peak stress concentration that gates
bonded joint design in the CMH-17 composite context. It pairs with
structures/composites/composite-bolted-joints, the mechanical fastener
alternative in the same pack, and with failure-criteria and
laminate-stiffness for the adherend side of the joint.

## Domain quick reference

- Geometry: single-lap joint with overlap length L, bond width b and
  two identical adherends of thickness t and modulus E, bonded by an
  adhesive layer of thickness t_a and shear modulus G_a.
- Shear-lag parameter: beta = sqrt((G_a / t_a) * (2.0 / (E * t)))
  in 1/m. For identical adherends the 2.0/(E*t) term is the sum
  1/(E1*t1) + 1/(E2*t2) with E1 = E2 = E and t1 = t2 = t.
- Average adhesive shear stress: tau_avg = P / (b * L).
- Peak shear stress at the overlap ends (Volkersen style):
  tau_max = tau_avg * (beta*L/2) / tanh(beta*L/2). The factor
  (beta*L/2)/tanh(beta*L/2) tends to 1 as beta*L tends to 0 (uniform
  shear) and grows with beta*L, so long overlaps do not lower the peak
  below the load divided by the bond area without the concentration.
- Concentration factor: peak to average ratio
  (beta*L/2) / tanh(beta*L/2).
- Joint margin: margin_ratio = allowable / tau_max; the MS-style
  margin of safety is margin_ms = margin_ratio - 1.0. The joint passes
  when tau_max does not exceed the adhesive allowable shear stress.
- SI units throughout: N, m, Pa.
- The model is a Volkersen-style bondline shear analysis only; peel
  and adherend bending are out of scope. Peel-critical designs need a
  Goland-Reissner or FE analysis. CMH-17 frames the bonded joint data
  context; the relations above are standard engineering methodology,
  summary-only.

## Workflow

1. Fix the joint geometry and materials: load P (load_n), bond width b
   (width_m), overlap L (overlap_m), adherend E and t
   (adherend_E_pa, adherend_t_m), adhesive G_a and t_a
   (adhesive_G_pa, adhesive_t_m), and the adhesive allowable
   (allowable_shear_pa).
2. Compute the shear-lag parameter with shear_lag_beta; it measures
   how fast the shear stress peaks near the overlap ends.
3. Get the average bondline stress with avg_shear_stress = P/(b*L).
4. Apply the correction with peak_shear_stress (or scale the average
   by concentration_factor) to get the bondline peak stress.
5. Rate the joint with joint_margin against the adhesive allowable;
   the margin ratio is allowable/peak and the MS margin is that ratio
   minus one.
6. Run analyze to get the full dict {beta, tau_avg, tau_max,
   concentration, margin_ratio, margin_ms, pass} in one call.
7. Confirm the deterministic checks with the contract test
   scripts/test_adhesive_bonded_joints.py.

## Worked example

Aluminum adherends E = 70 GPa, t = 2 mm; adhesive G_a = 0.5 GPa,
t_a = 0.2 mm; bond width 25 mm; load 10 kN.

Case 1: overlap L = 25 mm, allowable 25 MPa.
- beta = sqrt((0.5e9/0.2e-3) * (2/(70e9*2e-3))) = 188.98 1/m,
  beta*L = 4.72.
- tau_avg = 10000 / (0.025 * 0.025) = 16 MPa.
- tau_max = 16 MPa * 2.3623 / tanh(2.3623) = 38.47 MPa, so the
  concentration factor is 2.40.
- margin_ratio = 25/38.47 = 0.650, margin_ms = -0.350: FAIL.

Case 2: overlap L = 10 mm, allowable 25 MPa.
- tau_avg = 10000 / (0.025 * 0.010) = 40 MPa.
- tau_max = 51.25 MPa (beta*L = 1.89, concentration 1.28): FAIL.
- The shorter overlap raises both the average and the peak stress;
  the peak exceeds the 25 mm case.

Case 3: allowable 45 MPa, L = 25 mm.
- margin_ratio = 45/38.47 = 1.170, margin_ms = +0.170: PASS.


## Pitfalls

- Reading the peak stress as uniform bondline shear: the average
  P / (b L) understates the bondline ends by the concentration factor
  (beta*L/2)/tanh(beta*L/2), which is 2.40 in the worked example; the
  joint margin must be checked against tau_max, not tau_avg.
- Believing a longer overlap always fixes the joint: the peak stress
  only falls toward the average slowly with beta*L, and the shorter
  10 mm overlap in the worked example raises both the average and
  the peak; the concentration saturates for long overlaps.
- Using non-identical adherend data: beta assumes two identical
  adherends with the 2.0/(E*t) sum form; dissimilar adherend pairs
  need the general 1/(E1*t1) + 1/(E2*t2) expression.
- Forgetting the model boundary: this is Volkersen-style bondline
  shear only; peel and adherend bending are out of scope, and
  peel-critical designs need a Goland-Reissner or FE analysis.
- Treating a zero margin as acceptable: margin_ms = margin_ratio - 1,
  so the joint only passes when tau_max stays below the allowable
  (25 MPa allowable against 38.47 MPa peak gives -0.350 and FAIL).
- Feeding non-physical joint inputs: negative load, zero or negative
  width and overlap, and non-positive moduli, thicknesses, and
  allowables raise ValueError instead of producing a stress.
## Verification

- Confirm shear_lag_beta(70e9, 2e-3, 0.5e9, 0.2e-3) returns 188.98 1/m
  within 0.5.
- Confirm avg_shear_stress(10000, 0.025, 0.025) returns 16 MPa and
  peak_shear_stress gives 38.47 MPa within 0.2 MPa of the 38.51 MPa
  spec anchor, with concentration 2.40 within 0.01 of 2.407.
- Confirm the 10 mm overlap peaks higher than the 25 mm overlap and
  that analyze reports pass False for the 25 MPa allowables and pass
  True for the 45 MPa allowable at L = 25 mm.
- Confirm negative load, zero or negative width and overlap, and
  non-positive modulus, thickness, adhesive shear modulus, adhesive
  thickness and allowable all raise ValueError.
- Run the contract test offline: python3
  scripts/test_adhesive_bonded_joints.py (34 tests, deterministic).

## Related leaves

- structures/composites/composite-bolted-joints: the mechanical
  fastener alternative for joining composite laminates.
- structures/composites/failure-criteria: ply-level failure checks of
  the adherends either side of the bondline.
- structures/composites/laminate-stiffness: adherend modulus and
  thickness inputs for laminate adherends.
- structures/composites/cmh17-allowables: composite material and joint
  data context behind the CMH-17 reference.
- structures/composites/sandwich-panels: skin to core bonds where the
  same adhesive allowables apply.

## Behavior contract (gate 3)

Run the deterministic contract test (stdlib unittest, offline):

    python3 scripts/test_adhesive_bonded_joints.py

The test covers the worked example anchors (beta 188.98, average 16
and 40 MPa, peak 38.47 and 51.25 MPa, concentration 2.40), the shorter
overlap penalty, the margin ratio and MS margin for the 25 MPa FAIL
and 45 MPa PASS cases, the uniform-shear limit for a small beta*L, the
peak over average round trip, load scaling, zero-load behaviour, the
finite concentration for long overlaps, and ValueError rejection of
negative load, zero overlap and width, zero modulus, thickness and
adhesive thickness, and non-positive allowables.

## Compliance

- Standards referenced, not reproduced: CMH-17 is a SAE-published
  composite materials handbook (sae.org/publications/cmh-17); the
  single-lap shear-lag relations above are standard engineering
  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 →