Abaqus代理 是 AI Skill Hub 本期精选MCP工具之一。综合评分 7.5 分,整体质量较高。我们推荐使用将其纳入你的 AI 工具库,帮助提升工作效率。
Abaqus代理 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
Abaqus代理 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
# 方式一:通过 Claude Code CLI 一键安装
claude skill install https://github.com/Tomsabay/abaqus_agent
# 方式二:手动配置 claude_desktop_config.json
{
"mcpServers": {
"abaqus--": {
"command": "npx",
"args": ["-y", "abaqus_agent"]
}
}
}
# 配置文件位置
# macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
# Windows: %APPDATA%/Claude/claude_desktop_config.json
# 安装后在 Claude 对话中直接使用 # 示例: 用户: 请帮我用 Abaqus代理 执行以下任务... Claude: [自动调用 Abaqus代理 MCP 工具处理请求] # 查看可用工具列表 # 在 Claude 中输入:"列出所有可用的 MCP 工具"
// claude_desktop_config.json 配置示例
{
"mcpServers": {
"abaqus__": {
"command": "npx",
"args": ["-y", "abaqus_agent"],
"env": {
// "API_KEY": "your-api-key-here"
}
}
}
}
// 保存后重启 Claude Desktop 生效
Local Simulation QA & Regression Framework for Abaqus FEA.
Turn Abaqus runs into reproducible experiment capsules:
.inp / spec -> syntaxcheck -> solver -> ODB KPI -> physics contracts -> diff report
Abaqus Agent runs in your own Abaqus-licensed environment. The core is deterministic and auditable; LLMs, MCP clients, Codex, Claude Code, or the web UI are optional frontends.
Install from source:
git clone https://github.com/Tomsabay/abaqus_agent.git
cd abaqus_agent
pip install -e ".[dev,mcp]"
Optional extras:
pip install -e ".[llm]" # Anthropic / OpenAI planners
pip install -e ".[all]" # dev + mcp + llm
All generated or processed workflows are intended to run locally in the user's own Abaqus-licensed environment.
The recommended commercial deployment model is BYOL:
Do not run third-party Abaqus workloads as a hosted SaaS without explicit legal review of the relevant Dassault Systemes license terms.
Run tests that do not require Abaqus:
pytest tests/ -v
Check whether the current machine is ready for real Abaqus validation:
abaqus-agent validate env --json
abaqus-agent validate env --expected-release 2026 --strict --out validation-preflight.md
abaqus-agent validate env --workdir runs --runner-json '{"cpus":4,"mp_mode":"threads","timeout_seconds":900}' --json
abaqus-agent validate record --environment "Windows 11" --abaqus "Abaqus 2021" --workflow "cantilever" --result PASS --evidence "status=COMPLETED"
Export an offline report from a run directory, capsule.json, or result.json:
abaqus-agent report export runs/my_run --template client_summary --out report.html
abaqus-agent report export runs/my_run --template client_summary --out report.pdf
abaqus-agent report export runs/my_run --template engineering_delivery --out delivery.html
abaqus-agent report export runs/my_run --out report.zip
PDF export is optional and renders the standalone HTML report through Playwright:
pip install "abaqus-agent[pdf]"
playwright install chromium
The web UI's Report panel can also load the same offline source path and render the report without starting a new analysis run.
Validate public benchmark specs without Abaqus:
python run_benchmark.py --dry-run
Run one full Abaqus case on a machine with Abaqus installed:
python agent/orchestrator.py cases/cantilever/spec.yaml \
cases/cantilever/expected.json \
cases/cantilever/runner.json
Use an existing .inp as a first-class input:
meta:
abaqus_release: "2024"
model_name: "CustomerModel"
geometry:
type: custom_inp
inp_path: model.inp
material:
name: Placeholder
E: 210000
nu: 0.3
analysis:
solver: standard
step_type: Static
bc_load: {}
outputs:
kpis:
- name: U_tip
type: nodal_displacement
Create an experiment capsule from an .inp:
abaqus-agent capsule init --from-inp model.inp --out runs/model_capsule
from capsule.store import init_from_inp
capsule = init_from_inp("model.inp", "runs/model_capsule")
print(capsule["run_id"])
Evaluate physics contracts:
from contracts import evaluate_contracts
result = evaluate_contracts(
[
{"name": "deflects_down", "type": "direction", "kpi": "U_tip", "direction": "negative"},
{"name": "stress_margin", "type": "range", "kpi": "MISES_MAX", "max": 250.0},
],
{"U_tip": -0.002, "MISES_MAX": 210.0},
)
Diagnose solver logs:
abaqus-agent doctor Job-1.msg Job-1.sta
from doctor import diagnose_logs
diagnosis = diagnose_logs(paths=["Job-1.msg", "Job-1.sta"])
Compare KPI results:
abaqus-agent diff runs/baseline runs/candidate --out diff.md
abaqus-agent diff runs/baseline runs/candidate --tolerances-json '{"MISES": 0.20}' --out diff.md
Search local case memory:
abaqus-agent memory search runs/ --query too_many_attempts --json
abaqus-agent memory search runs/ --similar-to runs/candidate --kpi U_tip --out memory.md
from simdiff import diff_runs
diff = diff_runs("runs/baseline", "runs/candidate")
Normalize an ODB Lens KPI recipe and render a KPI report:
kpis:
- name: max_mises
source: odb
field: S
invariant: MISES
region: set:CRITICAL_ZONE
reducer: max
abaqus-agent lens normalize kpis.yaml --out _kpi_spec.json
abaqus-agent lens report result.json --recipe kpis.yaml --out kpi_report.md
高质量的Abaqus FEA模拟QA工具
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ Apache 2.0 — 宽松开源协议,可商用,需保留版权声明和 NOTICE 文件,含专利授权条款。
经综合评估,Abaqus代理 在MCP工具赛道中表现稳健,质量良好。如果你已有明确的使用需求,可以直接上手体验;如果还在评估阶段,建议对比同类工具后再做决策。
| 原始名称 | abaqus_agent |
| 原始描述 | 开源MCP工具:Local simulation QA and regression framework for Abaqus FEA。⭐18 · Python |
| Topics | abaquscaefeafinite-element-analysismcppython |
| GitHub | https://github.com/Tomsabay/abaqus_agent |
| License | Apache-2.0 |
| 语言 | Python |
收录时间:2026-06-02 · 更新时间:2026-06-02 · License:Apache-2.0 · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端