Metadata-Version: 2.4
Name: foampilot-csc
Version: 1.0.1
Summary: Python orchestration for OpenFOAM, SmartSim, and machine-learning workflows on CSC systems
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: foamlib<2,>=1.7
Requires-Dist: jinja2
Requires-Dist: numpy

# FoamPilot CSC

FoamPilot CSC provides a Python interface for OpenFOAM workflows integrated with SmartSim and SmartRedis on CSC systems.

## Installation

```bash
pip install foampilot-csc
Basic usage
from foampilot import FoamCase

case = FoamCase("/path/to/openfoam/case")
case.publish_fields(["p", "U"])

result = case.run(mesh=True)

p = result.field("p")
U = result.field("U")
Requirements

FoamPilot CSC is intended for CSC environments with the compatible SmartSim-CSC and OpenFOAM integration installed.

License

See the SmartSim-CSC repository for licensing information.
