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.
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
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/abaqus-material/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How abaqus-material Compares
| Feature / Agent | abaqus-material | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/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-topology-optimization
Complete workflow for topology optimization using Tosca. Use to minimize weight while maintaining stiffness. Requires full Abaqus license (not Learning Edition).
abaqus-thermal-analysis
Complete workflow for heat transfer analysis - steady-state and transient thermal. Use when user asks about temperature distribution, conduction, convection, or heat flow.
abaqus-optimization
Configure Tosca optimization. Use when user mentions design response, objective function, optimization constraint, or SIMP penalty. Base module for topology/shape optimization.
abaqus-geometry
Create and manipulate Abaqus geometry - parts, sketches, extrusions, CAD import. Use for any geometry creation task including box, cylinder, or STEP/IGES import.
corrosion-materials-selector
Materials selection skill for corrosion resistance based on process conditions and industry standards
abaqus-job
Create and manage Abaqus jobs. Use when user asks to run the analysis, submit the job, execute the model, or generate input file.
abaqus-bc
Define boundary conditions - fixed supports, displacements, symmetry. Use when user mentions fixed, pinned, clamped, supported, or constrained. Does NOT handle loads or forces.
bgo
Automates the complete Blender build-go workflow, from building and packaging your extension/add-on to removing old versions, installing, enabling, and launching Blender for quick testing and iteration.
cc-routine-and-class-design
Evaluate routine and class design quality using Code Complete checklists (43 items). Use when designing routines or classes, reviewing class interfaces, choosing between inheritance and containment, or evaluating routine cohesion. Also trigger when tempted to use inheritance as a quick fix under deadline pressure, or when rationalizing 'but it works' for code with deep inheritance or many parameters. Produce severity-tagged reviews (VIOLATION/WARNING/PASS) in CHECKER mode or design decisions in APPLIER mode. Symptoms: vague routine names, >7 parameters, deep inheritance, mixed abstraction levels.
cc-get-session-id
Get the current Claude Code session ID. Use when you need to reference or display the session ID.
canvas
Spawn interactive terminal TUI components (calendars, documents, flight bookings) with real-time IPC communication. Display rich content and collect user selections in tmux split panes.
canvas-design
Create beautiful visual art in .png and .pdf documents using design philosophy. You should use this skill when the user asks to create a poster, piece of art, design, or other static piece. Create ...