abaqus-material

Define material properties for FEA models. Use when user mentions steel, aluminum, Young's modulus, elastic, plastic, density, or asks about material properties.

181 stars

Best use case

abaqus-material is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

Define material properties for FEA models. Use when user mentions steel, aluminum, Young's modulus, elastic, plastic, density, or asks about material properties.

Teams using abaqus-material should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/abaqus-material/SKILL.md --create-dirs "https://raw.githubusercontent.com/majiayu000/claude-skill-registry/main/skills/data/abaqus-material/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/abaqus-material/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How abaqus-material Compares

Feature / Agentabaqus-materialStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

Define material properties for FEA models. Use when user mentions steel, aluminum, Young's modulus, elastic, plastic, density, or asks about material properties.

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

SKILL.md Source

# Abaqus Material Skill

Define material properties and assign sections to parts. This skill handles elastic, plastic, thermal, and composite material definitions.

## When to Use This Skill

**Route here when user mentions:**
- "steel", "aluminum", "titanium", or other material names
- "Young's modulus", "elastic", "Poisson's ratio"
- "plastic", "yielding", "hardening"
- "density" for gravity/dynamics
- "thermal conductivity", "expansion"
- "assign material to part"

**Route elsewhere:**
- Contact properties (friction, damping) → `/abaqus-interaction`
- Optimization material interpolation → `/abaqus-optimization`
- Temperature boundary conditions → `/abaqus-field`

## Key Decisions

### 1. What Properties Are Needed?

| Analysis Type | Required | Optional |
|--------------|----------|----------|
| Static stress | E, ν | - |
| Static with gravity | E, ν, ρ | - |
| Yielding/plastic | E, ν, σy | ρ |
| Modal/frequency | E, ν, ρ | - |
| Dynamic explicit | E, ν, ρ | Plasticity |
| Thermal stress | E, ν, α | k, cp |
| Heat transfer only | k | cp, ρ |

**Key insight:** Density (ρ) is required whenever inertia matters - modal analysis, dynamics, gravity loads.

### 2. Common Material Values

| Material | E (MPa) | ν | ρ (t/mm³) | σy (MPa) |
|----------|---------|---|-----------|----------|
| Steel (mild) | 210000 | 0.30 | 7.85e-9 | 250 |
| Steel (high-strength) | 210000 | 0.30 | 7.85e-9 | 550 |
| Stainless 304 | 193000 | 0.29 | 8.00e-9 | 215 |
| Aluminum 6061-T6 | 68900 | 0.33 | 2.70e-9 | 276 |
| Aluminum 7075-T6 | 71700 | 0.33 | 2.81e-9 | 503 |
| Titanium Ti-6Al-4V | 113800 | 0.34 | 4.43e-9 | 880 |

**Unit system:** mm-tonne-s-N-MPa (consistent SI)

### 3. Section Type Selection

| Geometry Type | Section Type | When to Use |
|--------------|--------------|-------------|
| 3D solid (hex/tet) | HomogeneousSolidSection | Most FEA models |
| Thin walls (t/L < 0.1) | HomogeneousShellSection | Plates, sheet metal |
| Slender members (L/d > 10) | BeamSection | Frames, trusses |
| Layered composites | CompositeShellSection | Carbon fiber, laminates |

## What to Ask User

If unclear, ask:
- **What material?** Steel, aluminum, custom values?
- **Need plasticity?** Will stresses exceed yield?
- **Need density?** Is this for dynamics, modal, or gravity?
- **Temperature effects?** Thermal expansion, temperature-dependent properties?

## Workflow

### Step 1: Create Material
Create a material object with a descriptive name.

### Step 2: Add Required Properties
At minimum, add elastic properties (E, ν). Add density if analysis requires it.

### Step 3: Add Optional Properties
Add plasticity, thermal, or other properties as needed.

### Step 4: Create Section
Create appropriate section type (solid, shell, beam) referencing the material.

### Step 5: Assign Section to Part
Assign section to all cells/faces that need this material.

## Validation Checklist

Before running analysis, verify:
- [ ] E > 0 (positive stiffness)
- [ ] -1 < ν < 0.5 (ν = 0.5 causes numerical issues)
- [ ] ρ > 0 if required for analysis type
- [ ] Plastic table starts at zero plastic strain
- [ ] Section assigned to ALL cells that need it

## Troubleshooting

| Problem | Likely Cause | Solution |
|---------|--------------|----------|
| "Material has no density" | Analysis requires density | Add density property |
| "Negative eigenvalue in stiffness" | Invalid Poisson's ratio | Ensure -1 < ν < 0.5 |
| "Section not assigned" | Missing assignment call | Assign section to region |
| "Material X not found" | Typo in material name | Check spelling matches |
| "Region has no mesh" | Mesh order issue | Mesh after section assignment |

## Code Patterns

For actual API syntax and code examples, see:
- [API Quick Reference](references/api-quick-ref.md)
- [Materials Database](references/materials-database.md)
- [Troubleshooting Guide](references/troubleshooting.md)

Related Skills

abaqus

181
from majiayu000/claude-skill-registry

Master skill for Abaqus FEA scripting. Use for any finite element analysis, topology optimization, or Abaqus Python scripting task. Routes to appropriate specialized skills.

abaqus-topology-optimization

181
from majiayu000/claude-skill-registry

Complete workflow for topology optimization using Tosca. Use to minimize weight while maintaining stiffness. Requires full Abaqus license (not Learning Edition).

abaqus-thermal-analysis

181
from majiayu000/claude-skill-registry

Complete workflow for heat transfer analysis - steady-state and transient thermal. Use when user asks about temperature distribution, conduction, convection, or heat flow.

abaqus-step

181
from majiayu000/claude-skill-registry

Define analysis steps and procedures. Use when user mentions static analysis, dynamic step, frequency analysis, heat transfer step, or asks about analysis type, time increments, or nlgeom.

abaqus-static-analysis

181
from majiayu000/claude-skill-registry

Complete workflow for static structural analysis. Use when analyzing stress, displacement, or reaction forces under constant loads. For strength and stiffness evaluation.

abaqus-shape-optimization

181
from majiayu000/claude-skill-registry

Optimize fillet/notch geometry. Use when user mentions stress concentration, fillet optimization, reshaping surfaces, or reducing peak stress. Moves surfaces only.

abaqus-output

181
from majiayu000/claude-skill-registry

Configure output requests - field outputs, history outputs. Use when user asks what results to save, output variables, reduce output file size, or history output.

abaqus-optimization

181
from majiayu000/claude-skill-registry

Configure Tosca optimization. Use when user mentions design response, objective function, optimization constraint, or SIMP penalty. Base module for topology/shape optimization.

abaqus-odb

181
from majiayu000/claude-skill-registry

Read analysis results. Use when user asks about maximum stress, extracting displacements, reaction forces, or exporting results. Post-processes ODB files.

abaqus-modal-analysis

181
from majiayu000/claude-skill-registry

Complete workflow for modal/frequency analysis - extract natural frequencies and mode shapes. Use for vibration analysis and resonance avoidance.

abaqus-mesh

181
from majiayu000/claude-skill-registry

Generate finite element meshes. Use when user mentions mesh, elements, nodes, refine mesh, mesh size, or asks about element types like C3D8R, C3D10, S4R.

abaqus-load

181
from majiayu000/claude-skill-registry

Apply forces and pressures to structures. Use when user asks to apply a force, add pressure, put a load on, or mentions gravity, point loads, or distributed forces.