This release is a pre-release and may not be stable for production use.
AgentCFD
AI-native computational fluid dynamics for humans and agents.
AgentCFD
AgentCFD is an open-source platform for readable, verifiable, and learning-ready computational fluid dynamics. Its first engineering focus is industrial flow: pipes and ducts, pressure loss, fluid and steam transport, heat transfer, and later reacting flow and combustion.
AgentCFD was initiated by Haoming Luo in September 2026. It follows the product principles established through AgentFEM, but it is a separate codebase with its own fluid-mechanics language, providers, validation evidence, and release cycle.
Project status: pre-alpha. The public workflow and circular-pipe reference solution are executable. Deterministic OpenFOAM laminar and k-omega SST smooth-pipe generation, execution, mesh checks, result recovery, and pressure-loss evidence are experimental capabilities; every run must still earn acceptance.
Why AgentCFD
- AI-native CFD — people, scripts, GUIs, and agents operate the same explicit engineering model instead of hiding scientific intent in generated files.
- Industrial flow first — internal flow, heat transfer, steam and reacting systems come before a broad but shallow solver catalog.
- Results you can check — applicability, conservation checks, provider identity, model fingerprints, and failure evidence travel with the result.
- One run or thousands — the same workflow is designed for a single analysis, parameter campaigns, reproducible datasets, surrogates, and neural operators.
- Open provider boundary — numerical engines can evolve without changing the public model; license and runtime boundaries remain visible.
- FEM–CFD continuity — versioned exchange records prepare pressure, traction, temperature, heat flux, and mesh motion for future AgentFEM coupling.
First executable workflow
from agentcfd import Model, boundaries, fluids, geometry, outputs, procedures, studies
model = Model(
name="water-pipe",
study=studies.internal_flow(),
domain=geometry.circular_pipe(length=10.0, diameter=0.05),
fluid=fluids.newtonian(
"water",
density=998.2,
dynamic_viscosity=1.002e-3,
),
).boundaries(
inlet=boundaries.mean_velocity_inlet(0.02),
outlet=boundaries.pressure_outlet(),
wall=boundaries.no_slip_wall(),
)
result = model.step(
procedure=procedures.steady(),
output=outputs.standard(),
).run(provider="reference")
result.require_accepted()
print(result.quantities["flow.pressure_drop"])
The reference provider implements the Hagen–Poiseuille solution, rejects flow outside its declared laminar range, and records mass balance and an independent Darcy–Weisbach identity check.
Install
Install the published alpha from PyPI with Python 3.11 or newer:
python -m pip install agentcfd==0.1.0a3
agentcfd doctor
agentcfd demo pipe
Common pipe-loss screening is available without a CFD runtime:
agentcfd calculate pipe-loss --density 998.2 --viscosity 0.001002 \
--length 10 --diameter 0.05 --velocity 0.02 --json
agentcfd calculate pipe-flow --density 998.2 --viscosity 0.001002 \
--length 10 --diameter 0.05 --pressure-loss 2.56512 \
--regime laminar --json
Gas-model screening and optional CoolProp/IF97 states use equally explicit commands:
agentcfd calculate compressibility \
--velocity 100 --speed-of-sound 400 --json
python -m pip install "agentcfd[properties]"
agentcfd properties state \
--fluid IF97::Water --pressure 101325 --temperature 500 --json
Both return structured records rather than presentation-only text. Installed
AgentCFD/AgentCAE schemas can be discovered with agentcfd contracts --json.
For editable development from the repository:
git clone https://github.com/haoming-luo/agentcfd.git
cd agentcfd
python -m venv .venv
source .venv/bin/activate
python -m pip install -e .
agentcfd doctor
agentcfd demo pipe
Prepare the first OpenFOAM case
OpenFOAM is the primary industrial solver direction. AgentCFD keeps it behind a filesystem-and-subprocess provider boundary: the Apache-2.0 Python core writes an ordinary case, while an OpenFOAM installation already managed by the user does the GPL-licensed numerical work.
Generate a full three-dimensional O-grid pipe case without requiring OpenFOAM:
agentcfd prepare openfoam-pipe openfoam-pipe --json
Or use the public provider from Python:
from agentcfd.providers import OpenFOAMProvider
step = model.step(procedure=procedures.steady(), output=outputs.standard())
case = OpenFOAMProvider().prepare(step, "openfoam-pipe")
print(case.case_sha256)
The generated manifest binds every case file to its content hash and the public
model fingerprint. Execution currently targets installations that provide
blockMesh, checkMesh, and simpleFoam. AgentCFD recovers inlet/outlet flow,
area-averaged pressure, pressure drop, mass imbalance, mesh-quality metrics,
convergence evidence, and final native fields. Process completion alone never
implies scientific acceptance.
For the canonical fully developed validation case, declare the physical inlet profile instead of silently changing a mean-velocity boundary:
model.boundaries(
inlet=boundaries.fully_developed_velocity_inlet(0.02),
outlet=boundaries.pressure_outlet(),
wall=boundaries.no_slip_wall(),
)
Or run the bundled case end to end against an installed runtime:
agentcfd run openfoam-pipe openfoam-pipe --fully-developed --json
On macOS or another host without native OpenFOAM commands, use the official OpenCFD container directly (Docker remains externally managed):
agentcfd run openfoam-pipe openfoam-pipe \
--fully-developed \
--cross-section-cells 16 \
--axial-cells 400 \
--container-image opencfd/openfoam-run:2606 \
--json
Three-grid studies can use agentcfd.verification.grid_convergence_index or
consume three serialized results directly:
agentcfd prepare openfoam-pipe-grid pipe-grid \
--cross-section-cells 8 16 32 \
--base-axial-cells 40 \
--json
agentcfd run openfoam-pipe-grid pipe-grid \
--container-image opencfd/openfoam-run:2606 \
--json
agentcfd verify grid-convergence coarse.json medium.json fine.json \
--quantity flow.pressure_drop \
--json
The preparation workflow creates a 0.5 m by 0.1 m benchmark with one declared fully developed inlet model, isotropic refinement ratios, per-case hashes, and an explicit plan. The grid runner verifies and executes every fresh case and writes the GCI evidence automatically. The result workflow checks that all runs completed, converged, share model and analysis identities, use the same quantity unit, and contain distinct positive dimensionless mesh cell counts before it records Richardson extrapolation, observed order, GCI, the asymptotic ratio, and hashes of all three source files.
The first RANS workflow is explicit about both turbulence and evidence:
turbulent = Model(
name="water-pipe-rans",
study=studies.internal_flow(
turbulence="k-omega-sst",
wall_treatment="blended-wall-functions",
),
domain=geometry.circular_pipe(length=3.0, diameter=0.1),
fluid=fluids.newtonian(
"water", density=998.2, dynamic_viscosity=1.002e-3
),
).boundaries(
inlet=boundaries.turbulent_mean_velocity_inlet(
1.0, intensity=0.05, length_scale=0.007
),
outlet=boundaries.pressure_outlet(),
wall=boundaries.no_slip_wall(),
)
Prepare or execute the same model from the CLI:
agentcfd prepare openfoam-turbulent-pipe turbulent-pipe --json
agentcfd run openfoam-turbulent-pipe turbulent-pipe \
--container-image opencfd/openfoam-run:2606 --json
AgentCFD lowers this to flowRateInletVelocity, kOmegaSST, explicit k and
omega inputs, blended wall functions, and in-run yPlus recovery. A completed
and converged run remains unaccepted until its inlet/reference applicability and
grid evidence pass; the trust state is intended to be safe for unattended AI
workflows.
The rationale for analytical, flow-rate, and boundaryFoam inlets, measured
resolution/runtime tiers, and the staged turbulence and steam plan is recorded
in the numerical strategy.
Common pipe checks are available under agentcfd.engineering: hydraulic
diameter, Reynolds number, laminar or iterated Colebrook--White Darcy friction,
straight-run pressure loss, local-loss pressure drop, and one auditable
pipe_pressure_loss record combining them. The transitional Reynolds range is
deliberately rejected rather than silently interpolated.
Architecture
Human / AI agent / script / future GUI
|
v
Study -> Model -> Domain/Regions -> Fluids -> Boundaries/Sources
|
v
Solution Step + Output
|
v
Provider lowering and deterministic execution
|
v
SimulationResult -> verification -> datasets -> learning
|
v
AgentFEM / experiments / NN / PINN / neural operators
The core package has no mandatory third-party runtime dependency or LLM and
does not treat successful execution as scientific acceptance. NumPy support is
available through the optional arrays extra. AI is a first-class operator of
the workflow; fluid mechanics and deterministic numerical computation remain
authoritative.
Documentation
- Concepts
- Workflow
- Changelog
- Architecture
- Roadmap
- Product and market strategy
- AgentFEM, CFD, and AI interoperability
- Results, evidence, and AI exchange
- Thermophysical properties and IF97
- Engineering correlations and model screening
- Installation and solver runtime
- Dependency and license policy
- Thermophysical properties
- OpenFOAM provider boundary
- Numerical strategy and performance tiers
- Publishing and PyPI name status
- Validation policy
- Engineering correlations
- Benchmark catalog
- OpenFOAM v2606 execution evidence
- OpenFOAM v2606 grid-validation evidence
- OpenFOAM v2606 turbulent-pipe diagnostic evidence
- Guide for AI agents
License
AgentCFD is licensed under Apache-2.0. Optional numerical engines retain their own licenses and are connected through explicit provider boundaries.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file agentcfd-0.1.0a3.tar.gz.
File metadata
- Download URL: agentcfd-0.1.0a3.tar.gz
- Upload date:
- Size: 137.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6853577f7685063ae95865ea90ede1487662d3ba0ebd8c658cbd06b676441467
|
|
| MD5 |
b6903bda65e78ce0a402ecd11abd0659
|
|
| BLAKE2b-256 |
996821ee523d37d999c7719a4ab6857580bd6464082852567cd4a20fa8dff7d4
|
Provenance
The following attestation bundles were made for agentcfd-0.1.0a3.tar.gz:
Publisher:
release.yml on haoming-luo/agentcfd
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
agentcfd-0.1.0a3.tar.gz -
Subject digest:
6853577f7685063ae95865ea90ede1487662d3ba0ebd8c658cbd06b676441467 - Sigstore transparency entry: 2705842619
- Sigstore integration time:
-
Permalink:
haoming-luo/agentcfd@6b5952f7c877160570737d25b5e09b2f8bcb4475 -
Branch / Tag:
refs/tags/v0.1.0a3 - Owner: https://github.com/haoming-luo
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@6b5952f7c877160570737d25b5e09b2f8bcb4475 -
Trigger Event:
release
-
Statement type:
File details
Details for the file agentcfd-0.1.0a3-py3-none-any.whl.
File metadata
- Download URL: agentcfd-0.1.0a3-py3-none-any.whl
- Upload date:
- Size: 89.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
26604a7c460d33112933efabeed8739d4c5c7d7d2d98423c1902739036dab5c1
|
|
| MD5 |
19af418de52e85c0703ef79e1dbcd9e5
|
|
| BLAKE2b-256 |
783c766ba0ba6de8ec4405b2f118fab7f7e0a9394dd3c58fcecf73142b67970c
|
Provenance
The following attestation bundles were made for agentcfd-0.1.0a3-py3-none-any.whl:
Publisher:
release.yml on haoming-luo/agentcfd
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
agentcfd-0.1.0a3-py3-none-any.whl -
Subject digest:
26604a7c460d33112933efabeed8739d4c5c7d7d2d98423c1902739036dab5c1 - Sigstore transparency entry: 2705842649
- Sigstore integration time:
-
Permalink:
haoming-luo/agentcfd@6b5952f7c877160570737d25b5e09b2f8bcb4475 -
Branch / Tag:
refs/tags/v0.1.0a3 - Owner: https://github.com/haoming-luo
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@6b5952f7c877160570737d25b5e09b2f8bcb4475 -
Trigger Event:
release
-
Statement type: