Back to Skills

abaqus-topology-optimization

majiayu000
Updated Today
15 views
58
9
58
View on GitHub
Designaiautomationdesign

About

This skill provides a complete Abaqus/Tosca workflow for topology optimization to minimize component weight while maintaining stiffness. It generates organic, load-bearing structures for lightweight design and material efficiency applications. Note that it requires a full Abaqus license (not the Learning Edition) as Tosca functionality is needed.

Quick Install

Claude Code

Recommended
Plugin CommandRecommended
/plugin add https://github.com/majiayu000/claude-skill-registry
Git CloneAlternative
git clone https://github.com/majiayu000/claude-skill-registry.git ~/.claude/skills/abaqus-topology-optimization

Copy and paste this command in Claude Code to install this skill

Documentation

Abaqus Topology Optimization Workflow

Complete workflow for topology optimization - determining optimal material distribution to minimize weight while maintaining structural performance.

When to Use This Skill

Triggers: topology optimization, minimize weight, lightweight design, organic structure, generative design, where to remove material, material efficiency, design for additive

USE for: Minimize weight while maintaining stiffness, maximize stiffness for given weight, generate organic load-carrying structures

Do NOT use for: Shape optimization (surface only) -> /abaqus-shape-optimization, Learning Edition users -> Tosca requires full license

Important: License Required

Topology optimization requires a full Abaqus license with Tosca module. NOT available in Learning Edition.

Prerequisites

  1. Working static analysis that converges
  2. Design space defined (bounding volume for material)
  3. Clear objective (usually max stiffness at target weight)
  4. Known load cases and boundary conditions

Workflow Steps

Phase 1: Setup Base Model

  1. /abaqus-geometry - Design space with partitions for frozen regions
  2. /abaqus-material - Elastic properties + density (required for TO)
  3. /abaqus-mesh - Fine mesh (2-5mm typical for TO)
  4. /abaqus-bc - Fixed supports (these regions become frozen)
  5. /abaqus-load - Applied forces (these regions become frozen)
  6. /abaqus-step - Static step for stiffness optimization

Phase 2: Configure Optimization

Use /abaqus-optimization for detailed API patterns.

  1. Create TopologyTask with SIMP interpolation
  2. Define design responses (volume, strain energy)
  3. Set objective function (minimize compliance)
  4. Add constraints (volume <= target fraction)
  5. Define frozen regions (BC and load attachment areas)
  6. Add manufacturing constraints (min member size)

Phase 3: Run and Post-Process

  1. /abaqus-job - Submit OptimizationProcess
  2. /abaqus-odb - View density distribution
  3. /abaqus-export - STL export at density threshold (0.3-0.5 typical)

Key Decisions

GoalObjectiveConstraint
Stiffest at weightMinimize complianceVolume <= X%
Lightest that worksMinimize volumeCompliance <= Y
Avoid resonanceMaximize frequencyVolume <= X%

Most common: Minimize compliance with volume constraint at 30%.

Volume Fraction

FractionUse Case
20-30%Aggressive (aerospace)
30-40%Balanced (general)
40-50%Conservative (safety-critical)

Manufacturing Constraints

ConstraintWhen to Use
Minimum member sizeAlways (3-5mm typical)
Draw directionCasting, molding
Symmetry planeBalanced loads, aesthetics
Overhang angleAdditive manufacturing

What to Ask User

Critical:

  • Design space: "What is the bounding volume where material can exist?"
  • Frozen regions: "Which areas must remain solid? (BC/load attachment)"
  • Volume fraction: "What percentage of material should remain? (20-50%)"
  • Loads and BCs: "What loads and supports act on the structure?"

With Defaults:

  • Objective: Min compliance (change if stress/frequency is primary)
  • Min member size: 3mm (adjust for manufacturing)
  • Material: Steel (if not specified)
  • Max iterations: 50 (increase if not converging)
  • SIMP penalty: 3.0 (higher for sharper boundaries)

Validation

StageCheck
Base modelStatic analysis runs, results sensible
After iteration 5Objective decreasing, no disconnection
ConvergenceObjective stable (< 0.1% change)
Final designLoad path intact, no floating regions

Troubleshooting

IssueSolution
Checkerboard patternAdd min member size constraint
Not convergingRelax volume fraction, check frozen regions
Disconnected regionsAdd more frozen regions along load path
Takes foreverCoarsen mesh, reduce iterations
License errorRequires full Abaqus with Tosca

Code Patterns

For API syntax and code examples, see:

  • /abaqus-optimization - Task, response, objective, constraint API
  • references/common-patterns.md - Complete TO code patterns

Related Skills

  • /abaqus-optimization - Base optimization API details
  • /abaqus-static-analysis - Required before optimization
  • /abaqus-shape-optimization - Alternative for surface-only changes
  • /abaqus-export - Export optimized geometry

GitHub Repository

majiayu000/claude-skill-registry
Path: skills/data/abaqus-topology-optimization

Related Skills

content-collections

Meta

This skill provides a production-tested setup for Content Collections, a TypeScript-first tool that transforms Markdown/MDX files into type-safe data collections with Zod validation. Use it when building blogs, documentation sites, or content-heavy Vite + React applications to ensure type safety and automatic content validation. It covers everything from Vite plugin configuration and MDX compilation to deployment optimization and schema validation.

View skill

creating-opencode-plugins

Meta

This skill provides the structure and API specifications for creating OpenCode plugins that hook into 25+ event types like commands, files, and LSP operations. It offers implementation patterns for JavaScript/TypeScript modules that intercept and extend the AI assistant's lifecycle. Use it when you need to build event-driven plugins for monitoring, custom handling, or extending OpenCode's capabilities.

View skill

sglang

Meta

SGLang is a high-performance LLM serving framework that specializes in fast, structured generation for JSON, regex, and agentic workflows using its RadixAttention prefix caching. It delivers significantly faster inference, especially for tasks with repeated prefixes, making it ideal for complex, structured outputs and multi-turn conversations. Choose SGLang over alternatives like vLLM when you need constrained decoding or are building applications with extensive prefix sharing.

View skill

evaluating-llms-harness

Testing

This Claude Skill runs the lm-evaluation-harness to benchmark LLMs across 60+ standardized academic tasks like MMLU and GSM8K. It's designed for developers to compare model quality, track training progress, or report academic results. The tool supports various backends including HuggingFace and vLLM models.

View skill