Skip to main content

A Python interface for interacting with OpenFOAM

Project description

foamlib

Documentation CI Codecov Checked with mypy Ruff uv Publish PyPI Conda Version PyPI - Python Version OpenFOAM Docker Docker image

👋 Basics

foamlib provides a simple, modern and ergonomic Python interface for interacting with OpenFOAM.

It offers the following Python classes:

  • FoamFile (and FoamFieldFile): read-write access to OpenFOAM configuration and field files as if they were Python dicts, using foamlib's own parser. Supports ASCII and binary field formats (with or without compression).
  • FoamCase: a class for configuring, running, and accessing the results of OpenFOAM cases.
  • AsyncFoamCase: variant of FoamCase with asynchronous methods for running multiple cases at once.
  • AsyncSlurmFoamCase: subclass of AsyncFoamCase used for running cases on a Slurm cluster.

☑️ Get started

📦 Install

  • With pip:

    pip install foamlib
    
  • With conda:

    conda install -c conda-forge foamlib
    

🐑 Clone a case

import os
from pathlib import Path
from foamlib import FoamCase

pitz_tutorial = FoamCase(Path(os.environ["FOAM_TUTORIALS"]) / "incompressible/simpleFoam/pitzDaily")

my_pitz = pitz_tutorial.clone("myPitz")

🏃 Run the case

my_pitz.run()

🔎 Access the results

latest_time = my_pitz[-1]

p = latest_time["p"]
U = latest_time["U"]

print(p.internal_field)
print(U.internal_field)

🧹 Clean the case

my_pitz.clean()

⚙️ Edit the controlDict file

my_pitz.control_dict["writeInterval"] = 10

📝 Make multiple file reads and writes in a single go

with my_pitz.fv_schemes as f:
    f["gradSchemes"]["default"] = f["divSchemes"]["default"]
    f["snGradSchemes"]["default"] = "uncorrected"

⏳ Run a case asynchronously

import asyncio
from foamlib import AsyncFoamCase

async def run_case():
    my_pitz_async = AsyncFoamCase(my_pitz)
    await my_pitz_async.run()

asyncio.run(run_case())

🔢 Parse a field using the FoamFieldFile class directly

from foamlib import FoamFieldFile

U = FoamFieldFile(Path(my_pitz) / "0/U")

print(U.internal_field)

🔁 Run an optimization loop in parallel

import os
from pathlib import Path
from foamlib import AsyncFoamCase
from scipy.optimize import differential_evolution

base = AsyncFoamCase(Path(os.environ["FOAM_TUTORIALS"]) / "incompressible/simpleFoam/pitzDaily")
# Replace with `AsyncSlurmFoamCase` if on a cluster and you want cases to be run as Slurm jobs

async def cost(x):
    async with base.clone() as clone:
        clone[0]["U"].boundary_field["inlet"].value = [x[0], 0, 0]
        await clone.run()
        return abs(clone[-1]["U"].internal_field[0][0])

result = differential_evolution(cost, bounds=[(-1, 1)], workers=AsyncFoamCase.map, polish=False)

📄 Use it to create a run (or clean) script

#!/usr/bin/env python3
from pathlib import Path
from foamlib import FoamCase

case = FoamCase(Path(__file__).parent)
# Any additional configuration here
case.run()

📘 Documentation

For more information, check out the documentation.

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

foamlib-0.6.8.tar.gz (33.9 kB view details)

Uploaded Source

Built Distribution

foamlib-0.6.8-py3-none-any.whl (38.0 kB view details)

Uploaded Python 3

File details

Details for the file foamlib-0.6.8.tar.gz.

File metadata

  • Download URL: foamlib-0.6.8.tar.gz
  • Upload date:
  • Size: 33.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.4.25

File hashes

Hashes for foamlib-0.6.8.tar.gz
Algorithm Hash digest
SHA256 c51d0209f6b04dfecad0fdf00264fd744fafbc030c1ec2042ef26a34a50db89d
MD5 c1f3b8f65a0d56d00c743ba51ea82820
BLAKE2b-256 94d7f4527f712ee87eaed686e24b99afef3e59e0b5491c0ddf920d6093de9596

See more details on using hashes here.

File details

Details for the file foamlib-0.6.8-py3-none-any.whl.

File metadata

  • Download URL: foamlib-0.6.8-py3-none-any.whl
  • Upload date:
  • Size: 38.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.4.25

File hashes

Hashes for foamlib-0.6.8-py3-none-any.whl
Algorithm Hash digest
SHA256 773b7c2f2db3e5242b0b33bccc9e0d03abc804e4b56dbf9d675f6e34d041b366
MD5 ae2c5e7195677930d29f5deb87618c6e
BLAKE2b-256 00884caf43b83507921007182bd6dfb6574e8c475141cda77192ea37b0b2574b

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page