惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 司徒正美
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Last Week in AI
Last Week in AI
大猫的无限游戏
大猫的无限游戏
博客园 - Franky
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
爱范儿
爱范儿
The Cloudflare Blog
阮一峰的网络日志
阮一峰的网络日志
博客园 - 叶小钗
博客园_首页
有赞技术团队
有赞技术团队
WordPress大学
WordPress大学
宝玉的分享
宝玉的分享
V
V2EX
V
Visual Studio Blog
博客园 - 三生石上(FineUI控件)
S
SegmentFault 最新的问题
量子位
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Apple Machine Learning Research
Apple Machine Learning Research
美团技术团队

Hacker News: Show HN

PurrrrrFocus: Pomodoro Timer App - App Store Workflow Engine — Multi-Step Orchestration for Bun RapidPhoto: Pro Photo Editor App - App Store GitHub - DheerG/swarms: Achieve extraordinary results with claude code across a variety of tasks SPICE simulation → oscilloscope → verification with Claude Code — Lucas Gerads Show HN: VCoding – A 5 MB native Windows IDE with no dynamic dependencies Show HN: LLMs don't hallucinate because they're bad at math, it's the format GitHub - Agent-FM/agentfm-core: AgentFM is a peer-to-peer network that turns everyday computers into a decentralized AI supercomputer. AgentFM lets you run massive AI workloads directly across a global mesh of idle CPUs and GPUs. Show HN: Tracking Top US Science Olympiad Alumni over Last 25 Years GitHub - Potarix/agent-hub: One place to talk to all your agents Show HN: Runtime security for AI agents(injection,tool abuse, data exfiltration) GitHub - dubeyKartikay/lazyspotify: Terminal Spotify client for macOS and Linux GitHub - the-banana-tool/king-louie: Easy to use GUI Personal AI Assistant. Win/Linux/Mac. Show HN I made my vacation rental bookable by AI agents–no Airbnb, 0% commission GitHub - basteez/jsf-autoreload: maven plugin to enable hot reload on jsf projects uvm32/hosts/host-gdbstub at main · ringtailsoftware/uvm32 GitHub - labsai/EDDI: Config-driven engine that turns JSON into production-grade AI agents. Multi-agent orchestration, 12+ LLM providers, MCP/A2A protocols, RAG, persistent memory, and enterprise compliance (EU AI Act, GDPR, HIPAA). Built on Quarkus. GitHub - glitchnsec/fortyone-oss: AI Executive Assistant Platform Quickstart | Alien GitHub - muxshed/shed: One stream in, or many. Every destination, simultaneously. No cloud middleman, no per-channel fees, no limits. GitHub - ocrbase-hq/ocrbase: 📄 PDF/IMG ->.MD/JSON Document OCR API for PaddleOCR and GLMOCR. Self-hostable. GitHub - impactjo/home-memory: MCP server that lets your AI assistant remember everything about your home. GitHub - Sets88/dbcls: DbCls is a powerful terminal database client that supports various databases GitHub - neptun2000/heor-agent-mcp GitHub - SeanFDZ/macmind: Single-layer transformer in HyperTalk for the classic Macintosh RollQuation: Math Puzzles - Apps on Google Play GitHub - dropbox/witchcraft Show HN: Agent-cache – Multi-tier LLM/tool/session caching for Valkey and Redis GitHub - opentalon/opentalon: OpenTalon is an open-source platform built from the ground up in Go as a robust alternative to OpenClaw LinkedIn™ 职位抓取工具 - Chrome 应用商店
GitHub - simd-ai/agent
tito777 · 2026-05-22 · via Hacker News: Show HN

cylindrical-cht — buoyancy plume around a heated cylinder, generated by simd-agent

AI-native physics simulation agent.

License Language Commit activity Follow SIMD

🎯 What it does

Describe the physics you want to understand — flow, heat transfer, buoyancy, pressure drop, mixing — together with a mesh of the physical domain, and the agent picks the governing equations and turbulence model, configures discretization schemes, properties, and boundary conditions, submits the case to an OpenFOAM solver, streams residuals and flow fields back, and self-heals on solver failure. The result: design-decision support — questions that usually take a CFD specialist a week ("does this U-bend overheat at 500 K?", "what's the pressure drop through the regasifier?") become a paragraph of intent plus a geometry.

✨ Features

  • 🌊 Natural-language input — describe the physics you want to understand in plain English
  • 🧭 Auto solver selection — picks the right OpenFOAM solver from your prompt + mesh
  • 🩹 Self-healing loop — diagnoses solver failures and retries with focused fixes
  • 📡 Live streaming — residuals and 3D fields delivered live over WebSocket
  • 🧠 Multi-LLM — Gemini, Vertex AI, or local Ollama
  • 🔓 Open source — AGPL v3, run anywhere

🛠 Capabilities

Feature Description
Compressible & incompressible simpleFoam family + rhoSimple variants
Turbulence regimes k-ε, k-ω SST, k-ω, Spalart-Allmaras
Conjugate heat transfer solid-fluid coupling (chtMultiRegion)
Multiphase flows VOF (experimental — interFoam family)
LLM providers Gemini · Vertex AI · Ollama (local)
Object storage local filesystem · Google Cloud Storage
Authentication Neon Auth · open (no auth)

See Documentation/solvers for the full list of supported solvers.

end-to-end run — codegen, residuals, post-processed flow fields

🚀 Quick start

The agent is one of three components — the other two live in their own repos:

  • simd-ai/agent (this repo) — the orchestrator
  • simd-ai/runner — the OpenFOAM runner (separate process)
  • simd-ai/ui — the Next.js frontend (drive the agent)

You'll need:

  • Docker + Docker Compose, or Python 3.11+ for bare-metal mode
  • One LLM credential: a Gemini API key, OR a Vertex AI service-account JSON, OR a local Ollama install

Clone and run the installer:

git clone https://github.com/simd-ai/agent
cd agent
./install.sh

install.sh is an interactive wizard that writes .env and either brings up the stack (Docker mode) or sets up a venv (bare-metal mode).

Preview the install wizard

install.sh wizard — deployment mode, LLM provider, simulation runner, object storage, authentication, database, .env write, bare-metal setup

Docker mode

Brings up agent + postgres + frontend + OpenFOAM runner from a single docker compose file. Once the wizard finishes, the agent is at http://localhost:8000 and the frontend at http://localhost:3000. Everything stops with docker compose down.

Bare-metal mode

Installs only the agent in a local Python venv. The wizard prints the uvicorn command at the end. You bring your own runner and (if you want a UI) frontend:

# OpenFOAM runner — clone & start separately
git clone https://github.com/simd-ai/runner
cd runner && ./run.sh
# (or point ``SIMULATION_SERVER_URL`` at a remote one)

# Frontend — clone & start separately (optional)
git clone https://github.com/simd-ai/ui
cd ui && npm install && npm run dev

Or skip the UI entirely and drive the agent through the WebSocket / HTTP API at http://localhost:8000 (see Documentation/api/).

⚙️ How it works

A FastAPI service orchestrates per-file OpenFOAM codegen with an LLM, validates the output with deterministic plugin-side rules, ships the case to a service running OpenFOAM, and streams residuals and post-processed VTK back through a WebSocket. When the solver fails, the agent diagnoses the error with a smaller LLM call and retries with focused fixes — up to seven attempts by default. This is the self-healing loop.

See Documentation/architecture for the full design, Documentation/self-healing for a walkthrough of one real failure.

🧪 Examples

Four end-to-end cases ship under examples/. Each carries its mesh, its prompt, and the generated OpenFOAM case files — so you can run the simulation directly with OpenFOAM, or watch the agent regenerate it from the prompt.

Case Physics Solver
u-shape-pipe compressible inverted-U duct rhoSimpleFoam + kOmegaSST
z-bend transient turbulent water pipe pimpleFoam + kOmegaSST
inner-outer-pipe 2D LN2/water counter-flow regasifier chtMultiRegionSimpleFoam
cylindrical-cht natural convection around a heated cylinder buoyantBoussinesqSimpleFoam

🗺 Roadmap

See ROADMAP for what's next and what's in the idea bin. Tracking happens in GitHub Issues.

🤝 Contributing

See CONTRIBUTING. New solver plugins drop into simd_agent/solvers/<name>/ and are auto-discovered; new LLM providers drop into simd_agent/llm/<name>/. No registry edits needed.