MCP HubMCP Hub
返回技能列表

abaqus-odb

majiayu000
更新于 Today
310 次查看
58
9
58
在 GitHub 上查看
其他react

关于

This skill extracts and post-processes results from Abaqus ODB files, handling queries for maximum stress, displacements, reaction forces, and data export. It's triggered when users ask to analyze or export existing results, not for running new analyses. The skill provides specific field access (like U, S, RF) and supports operations via Abaqus and Python commands.

快速安装

Claude Code

推荐
插件命令推荐
/plugin add https://github.com/majiayu000/claude-skill-registry
Git 克隆备选方式
git clone https://github.com/majiayu000/claude-skill-registry.git ~/.claude/skills/abaqus-odb

在 Claude Code 中复制并粘贴此命令以安装该技能

技能文档

Abaqus ODB Skill

This skill reads and extracts analysis results from Abaqus ODB files.

When to Use This Skill

Route here when user mentions:

  • "What is the maximum stress?", "extract displacement"
  • "Get reaction forces", "post-process the ODB"
  • "Export results to CSV", "what are the eigenfrequencies?"

Route elsewhere:

  • Running the analysis → /abaqus-job
  • Configuring what output to save → /abaqus-output
  • Exporting geometry (STL, STEP) → /abaqus-export

Key Decisions

1. What Result is Needed?

NeedFieldNotes
DisplacementUUse .magnitude for total
StressSUse .mises for von Mises
Reaction forceRFSum components for total
StrainESimilar structure to stress
TemperatureNTThermal analysis results
EigenfrequencyFrame descriptionParse from frame metadata

2. Which Step/Frame?

ScenarioFrame Selection
Final resultsstep.frames[-1]
All time historyLoop all frames
Specific timeFind by frameValue
Modal analysisEach frame = mode

3. Location: Global Max or Specific?

NeedApproach
Overall maximumLoop all values, find max
Specific nodeFilter by nodeLabel
Subset/regionUse getSubset(region=...)

4. Export Format?

FormatUse Case
Print to consoleQuick check
CSV fileSpreadsheet analysis
Text reportDocumentation

What to Ask User

If unclear, ask:

  1. What result? Stress, displacement, reaction force, frequency?
  2. Which step/frame? Final, specific time, or all?
  3. Location? Maximum anywhere, or specific node/region?
  4. Output format? Print, CSV, or report?

Workflow

  1. Open ODB - Use readOnly=True for extraction
  2. Navigate to step/frame - List steps with odb.steps.keys()
  3. Get field output - Access via frame.fieldOutputs['U']
  4. Extract values - Loop field.values, use .magnitude, .mises
  5. Close ODB - Always close when done

Common Tasks

TaskApproach
Max displacementLoop U values, find max magnitude
Max von Mises stressLoop S values, find max mises
Total reaction forceSum RF components across all nodes
Displacement at nodeFilter by nodeLabel
Results in regionUse getSubset with node/element set
EigenfrequenciesParse frame.description in frequency step
Time historyUse historyRegions and historyOutputs
Export to CSVWrite values with csv module

Troubleshooting

ErrorCauseSolution
"ODB locked"Another process has itDelete .lck file
"Key not found"Wrong variable nameList available keys first
"No values"Output not requestedCheck FieldOutputRequest in model
"AttributeError: mises"Element has no misesCheck element formulation

Code Patterns

For API syntax and code examples, see:

GitHub 仓库

majiayu000/claude-skill-registry
路径: skills/data/abaqus-odb

相关推荐技能

content-collections

Content Collections 是一个 TypeScript 优先的构建工具,可将本地 Markdown/MDX 文件转换为类型安全的数据集合。它专为构建博客、文档站和内容密集型 Vite+React 应用而设计,提供基于 Zod 的自动模式验证。该工具涵盖从 Vite 插件配置、MDX 编译到生产环境部署的完整工作流。

查看技能

cloudflare-turnstile

这个Skill提供完整的Cloudflare Turnstile集成知识,用于在表单、登录页面和API端点中实现无验证码的机器人防护。它支持React/Next.js/Hono等框架集成,涵盖令牌验证、错误代码调试和端到端测试等场景。通过运行后台不可见挑战,在保持用户体验的同时有效阻止自动化流量和垃圾信息。

查看技能

langchain

LangChain是一个用于构建LLM应用程序的框架,支持智能体、链和RAG应用开发。它提供多模型提供商支持、500+工具集成、记忆管理和向量检索等核心功能。开发者可用它快速构建聊天机器人、问答系统和自主代理,适用于从原型验证到生产部署的全流程。

查看技能

clerk-auth

clerk-auth 提供了在 React、Next.js 和 Cloudflare Workers 应用中集成 Clerk 身份验证的完整指南。它涵盖了从设置保护路由、配置 JWT 模板到处理会话声明和测试流程的全过程。该技能还能帮助开发者预防常见的配置错误和认证问题,例如密钥缺失和中间件配置错误。

查看技能