Claude-skill-registry abaqus-dynamic-analysis

Complete workflow for dynamic analysis. Use when user mentions impact, crash, drop test, transient, or time-varying response. Handles explicit and implicit dynamics.

install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/abaqus-dynamic-analysis" ~/.claude/skills/majiayu000-claude-skill-registry-abaqus-dynamic-analysis && rm -rf "$T"
manifest: skills/data/abaqus-dynamic-analysis/SKILL.md
source content

Abaqus Dynamic Analysis Skill

This skill handles explicit and implicit dynamics for impact, crash, drop test, and transient response analysis.

When to Use This Skill

Route here when user mentions:

  • Impact, crash, collision, drop test
  • Transient response, time-varying response
  • Shock loading, blast loading, explosive loading
  • High-speed events, wave propagation
  • "What happens when it hits..."

Route elsewhere:

  • Natural frequency extraction →
    /abaqus-modal-analysis
  • Static/constant loads →
    /abaqus-static-analysis
  • Harmonic/sinusoidal response → modal + steady-state dynamics
  • Very long transients (minutes+) → consider implicit or quasi-static

Prerequisites

Before dynamic analysis:

  1. Geometry and mesh ready
  2. Material MUST have density defined (required for mass matrix)
  3. Understand event duration and loading type

Workflow: Setting Up Dynamic Analysis

Step 1: Gather Information from User

Ask if unclear:

  • What's the event duration? Milliseconds, seconds, or longer?
  • Initial velocity? For drop tests or impact
  • Is contact involved? Parts colliding or touching
  • What output needed? Stress, velocity, acceleration, energy?

Step 2: Choose Explicit vs Implicit

FactorExplicitImplicit
Time scaleShort (us to ms)Longer (ms to s)
Step sizeAutomatic (very small)User-controlled
NonlinearityHandles wellMay need iterations
MemoryLowerHigher
ContactNatural handlingNeeds care
Best forImpact, crashVibration, long transient

Decision rule:

  • Event < 10ms with impact/contact → Explicit
  • Event > 100ms without severe nonlinearity → Implicit
  • In between → Either can work, explicit often easier

Step 3: Set Time Period

Event TypeTypical Duration
High-speed impact0.1-10 ms
Drop test1-100 ms
Blast loading1-50 ms
Seismic/vibration1-100 s

Step 4: Define Initial Conditions

For drop tests and impact:

  • Set initial velocity on the impacting part/region
  • Velocity is applied in the Initial step

Step 5: Configure Output

Field outputs:

S
(stress),
U
(displacement),
V
(velocity),
A
(acceleration),
PEEQ
(plastic strain)

History outputs for energy balance (explicit):

ALLKE
,
ALLIE
,
ALLWK
,
ETOTAL

Step 6: Consider Mass Scaling (Explicit Only)

OptionEffectWhen
NoneTrue inertiaVery short events, accuracy critical
At beginningScale onceQuasi-static explicit
ThroughoutContinuous scalingWhen inertia less important

Warning: Mass scaling speeds up analysis but affects inertial response.

Step 7: Run and Validate

Use

/abaqus-job
to submit, then check:

  • Energy balance (ETOTAL approximately constant)
  • Stable time increment (explicit)
  • Results physically reasonable

Key Parameters

ParameterExplicitImplicit
Time periodEvent durationEvent duration
Time incrementAutomaticSpecify initial, min, max
Element libraryEXPLICITSTANDARD
Element typeC3D8R recommendedC3D8R or C3D8
Hourglass controlENHANCEDDefault

Validation Checklist

  • Density defined in material
  • Time period appropriate for event
  • Initial conditions applied (velocity, position)
  • Output frequency captures behavior (100+ frames typical)
  • Energy balance acceptable (ETOTAL constant for explicit)
  • Results physically reasonable

Troubleshooting

ProblemLikely CauseSolution
"Time increment too small"Small/distorted elementsUse mass scaling or coarsen mesh
Energy balance errorHourglass or instabilityCheck hourglass energy, add control
Analysis takes forever (explicit)Long time periodConsider implicit instead
Convergence failure (implicit)Severe nonlinearityUse explicit or smaller increments

Related Skills

  • /abaqus-material
    - Define density (required)
  • /abaqus-amplitude
    - Time-varying loads
  • /abaqus-field
    - Initial velocity and predefined fields
  • /abaqus-interaction
    - Contact for impact problems
  • /abaqus-odb
    - Results extraction

Code Patterns

For API syntax and code examples, see: