Claude-skill-registry abaqus-export

Export Abaqus geometry and results. Use when user mentions exporting to STL, STEP, CSV, or generating input files for external use.

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-export" ~/.claude/skills/majiayu000-claude-skill-registry-abaqus-export && rm -rf "$T"
manifest: skills/data/abaqus-export/SKILL.md
source content

Abaqus Export Skill

Export geometry and results from Abaqus to external formats for 3D printing, CAD exchange, data analysis, or archival.

When to Use This Skill

Route here when user mentions:

  • "Export to STL" / "Convert to STL" / "3D printing"
  • "Save as STEP" / "Export to CAD"
  • "Generate input file" / "Write INP"
  • "Export results to CSV" / "Export to Excel"
  • "Save the mesh" / "Extract mesh data"
  • "Export deformed shape" / "Export topology result"

Route elsewhere:

  • Reading ODB results →
    /abaqus-odb
  • Importing CAD files →
    /abaqus-geometry
  • Running analysis →
    /abaqus-job

Key Decisions

What Format to Use?

NeedFormatRequires
3D printingSTL (double precision)Meshed part
CAD exchangeSTEPPart geometry
Legacy CADIGESPart geometry
Data analysisCSVODB file
Archive/HPCINPComplete model
Reports/imagesPNG/SVGGUI session

What to Export?

SourceAvailable Formats
Part geometrySTL, STEP, IGES, SAT
AssemblySTL, SAT
Mesh dataCSV (nodes, elements)
Results (U, S, RF)CSV
Time historyCSV
Model definitionINP
Topology resultSTL (with density threshold)

What to Ask User

If unclear, ask:

  1. What format? STL, STEP, CSV, INP?
  2. What to export? Geometry, mesh, or results?
  3. Which parts/steps? Specific part name, all parts, specific time step?
  4. For TO results: What density threshold? (0.3-0.5 typical)

Workflow

Exporting Geometry (STL/STEP/IGES)

  1. Identify the part - Get part name from model
  2. Check if meshed - STL requires mesh; STEP works on geometry
  3. Call export method - Use appropriate API call
  4. Verify output - Check file was created

Exporting Results to CSV

  1. Open the ODB - Use
    openOdb()
    with
    readOnly=True
  2. Navigate to frame - Find correct step and frame (typically last)
  3. Extract field output - U (displacement), S (stress), etc.
  4. Write CSV - Loop through values, write rows
  5. Close ODB - Always close when done

Generating Input File

  1. Create job object - Job needs model name
  2. Call writeInput() - Creates
    JobName.inp
  3. Verify INP created - Check file exists

Exporting TO Result

  1. Locate TO ODB - Usually
    Optimization/TOSCA_POST/Optimization.odb
  2. Set density threshold - 0.3-0.5 typical (lower = more material)
  3. Export STL - Use session method or GUI

Troubleshooting

ProblemCauseSolution
"Cannot write STL - no mesh"Part not meshedMesh part first
"STEP export failed"Invalid geometryTry IGES or SAT
Large STL fileFine meshCoarsen mesh for viz
Permission deniedFile open elsewhereClose file first
Image export failsnoGUI modeRun with GUI

Code Patterns

For API syntax and code examples, see: