Skip to main content

PyCFAST

CI Status Docs pre-commit.ci status uv Ruff MyPy Checked PyPI - Python Version Conda Version codecov License: MIT DOI

PyCFAST is a Python interface for the Consolidated Fire and Smoke Transport (CFAST) fire simulation software. Its primary goal is to automate CFAST calculations, run parametric studies, sensitivity analyses, data generation, or optimization loops that would be impractical through the graphical interface (CEdit). It also provides a convenient way to create CFAST input files, execute simulations, and analyze results using the versatility and extensive ecosystem of Python.

From CEdit GUI to Python

PyCFAST can be seen as an alternative to the CFAST graphical interface, CEdit. It exposes Python objects that integrate naturally into your Python workflow. Instead of relying on modifying input files through the GUI, you define and manipulate CFAST models programmatically.

CEdit (GUI) PyCFAST (Python)
CEdit Compartment Tab
from pycfast import Compartment

room = Compartment(
    id="Comp 1",
    width=10.0,
    depth=10.0,
    height=10.0,
    ceiling_mat_id="Gypboard",
    wall_mat_id="Gypboard",
    floor_mat_id="Gypboard",
)

Example Usage

This minimal model runs with just a title and one compartment with default values:

from pycfast import CFASTModel, Compartment, SimulationEnvironment

model = CFASTModel(
    simulation_environment=SimulationEnvironment(title="My Simulation"),
    compartments=[Compartment()],
    # you can also add: fires, wall_vents, ceiling_floor_vents, mechanical_vents, ...
    file_name="my_simulation.in",
)
model.summary()
model.save()

For a full model with all components:

from pycfast import (
    CeilingFloorVent,
    CFASTModel,
    Compartment,
    Fire,
    Material,
    MechanicalVent,
    SimulationEnvironment,
    WallVent,
)

model = CFASTModel(
    simulation_environment=SimulationEnvironment(...),
    material_properties=[Material(...)],
    compartments=[Compartment(...)],
    wall_vents=[WallVent(...)],
    ceiling_floor_vents=[CeilingFloorVent(...)],
    mechanical_vents=[MechanicalVent(...)],
    fires=[Fire(...)],
    file_name="test_simulation.in",
)

Or you can import your existing model from a CFAST input file:

from pycfast.parsers import parse_cfast_file

model = parse_cfast_file("existing_model.in")

Then you can run the model and obtain results as pandas DataFrames:

results = model.run()
# results is a dict of pandas DataFrames
# Available keys: compartments, devices, masses, vents, walls, zone

results["compartments"].head()
#   Time    ULT_1   LLT_1   HGT_1  VOL_1  PRS_1  ...
# 0  0.0    20.00   20.00    5.00   0.01    0.0   ...
# 1  1.0    20.83   20.00    5.00   0.10    0.0   ...

results["devices"].head()
#   Time  TRGGAST_1  TRGSURT_1  TRGINT_1  TRGFLXI_1  ...
# 0  0.0      20.0       20.0      20.0       0.0    ...
# 1  1.0      20.0       20.0      20.0       0.38   ...

Note: When importing an existing model, ensure that all component names (such as TITLE, MATERIAL, ID, etc.) use only alphanumeric characters. Avoid special characters like quotes and slashes, as these may cause parsing issues and will be automatically sanitized where possible.

You can also inspect the model using text-based methods:

print(model.summary())   # text summary to stdout
model.save()      # writes the CFAST input file to disk
model.view_cfast_input_file()  # view the generated input file

Check out the examples for more usage scenarios.

Installation

PyCFAST requires Python 3.10 or later and a working installation of CFAST itself. It is fully tested on verification input files and validation input files from CFAST version 7.7.0 to version 7.7.7. Versions below 7.7.0 might work but are not guaranteed to be fully compatible.

CFAST Installation

CFAST is developed and distributed by NIST, independently of PyCFAST. Download and install it from the NIST CFAST website or the CFAST GitHub repository, then ensure cfast is available in your PATH.

  • Windows: download and run the official installer for the version you want from the CFAST releases page (look for the .exe asset, e.g. CFAST-X.Y.Z_SMV-A.B.C.exe), which installs the cfast executable for you.

  • Linux / macOS: NIST does not publish pre-built binaries for these platforms, so CFAST must be compiled from source with a Fortran compiler (gfortran). See the Compiling CFAST wiki page for full details:

    # 1. Install a Fortran compiler
    sudo apt-get install gfortran        # Debian/Ubuntu
    # sudo dnf install gcc-gfortran      # Fedora/RHEL
    # brew install gcc                   # macOS
    
    # 2. Clone the CFAST source, pinned to the release tag you want (see the releases page above)
    git clone --depth 1 --branch <CFAST_TAG> https://github.com/firemodels/cfast.git
    cd cfast/Build/CFAST/gnu_linux       # macOS: cd cfast/Build/CFAST/gnu_osx
    
    # 3. Build the executable
    chmod +x make_cfast.sh
    ./make_cfast.sh
    
    # 4. Install it on your PATH
    sudo cp cfast7_linux /usr/local/bin/cfast   # macOS: cfast7_osx instead of cfast7_linux
    sudo chmod +x /usr/local/bin/cfast
    

    Notes:

    • CFAST versions below 7.7.5 do not reliably build on Linux with modern gfortran (see #32).
    • The macOS build was manually verified to work but is not covered by PyCFAST's CI.
    • If the build fails, the compiler and flags for each platform target are defined in Build/CFAST/makefile. Adjust them there to match your machine.

Pip or Conda

PyCFAST can be installed from PyPI or conda-forge:

pip install pycfast
conda install -c conda-forge pycfast

Source

To install PyCFAST from source, clone the repository and install the required dependencies:

git clone https://github.com/bewygs/pycfast.git
cd pycfast
python -m pip install .

Configuring the CFAST Executable

If CFAST is installed in a non-standard location, you can manually specify the path with these methods:

  • From an environment variable CFAST:

    export CFAST="/path/to/your/cfast/executable"  # Linux/MacOS
    set CFAST="C:\path\to\your\cfast\executable"  # Windows (cmd)
    $env:CFAST="C:\path\to\your\cfast\executable"  # Windows (PowerShell)
    
  • From Python code when defining the CFASTModel:

    from pycfast import CFASTModel
    
    # set custom CFAST executable path via environment variable
    import os
    os.environ['CFAST'] = "/path/to/your/cfast/executable"
    
    # Or directly when defining CFASTModel
    model = CFASTModel(
            ...,
            cfast_exe="/path/to/your/cfast/executable"
        )
    

Documentation

Full documentation, including the API reference and examples, is available online: PyCFAST Documentation

Contributing

We welcome contributions! Please see our Contributing Guide for more information.

References

If you use PyCFAST in your projects, please consider citing the following:

@software{wygas_2026_pycfast,
  author    = {Wygas, Benoît},
  title     = {PyCFAST},
  year      = {2026},
  publisher = {Zenodo},
  doi       = {10.5281/zenodo.18703351},
  url       = {https://doi.org/10.5281/zenodo.18703351}
}

Acknowledgments

This Python package was developed with the support of Orano.

Orano logo

PyCFAST is built on top of the work of the CFAST development team at the National Institute of Standards and Technology (NIST). We acknowledge their ongoing efforts in maintaining and improving the CFAST fire modeling software.

Download files

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

Source Distribution

pycfast-0.2.2.tar.gz (1.1 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pycfast-0.2.2-py3-none-any.whl (185.1 kB view details)

Uploaded Python 3

File details

Details for the file pycfast-0.2.2.tar.gz.

File metadata

  • Download URL: pycfast-0.2.2.tar.gz
  • Upload date:
  • Size: 1.1 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pycfast-0.2.2.tar.gz
Algorithm Hash digest
SHA256 fcbffa485a9656c95576b1dcc39405f575e3f5a8cf419093f273d15135e809a2
MD5 5c489b9361de01baf981b4a858e49e9f
BLAKE2b-256 e096bba58d36c53147c2fadf9b9d082d40db81d32c268d0e2eb58b68580e4172

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycfast-0.2.2.tar.gz:

Publisher: python-publish.yml on bewygs/pycfast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pycfast-0.2.2-py3-none-any.whl.

File metadata

  • Download URL: pycfast-0.2.2-py3-none-any.whl
  • Upload date:
  • Size: 185.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pycfast-0.2.2-py3-none-any.whl
Algorithm Hash digest
SHA256 b72bb23caa0808bf77f509ba39154a064ddcb3909bbfc4f12f03436fa4b6e246
MD5 76673244962fa3d30dbae7ed05fa965a
BLAKE2b-256 96e6582bee9fd5e3ac3ee3e8e563f414db3449d5f9a0d7a419aef1e7e55bce0d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pycfast-0.2.2-py3-none-any.whl:

Publisher: python-publish.yml on bewygs/pycfast

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

0.2.2 This release

2 files

0.2.1

2 files

0.2.0

2 files

0.1.4

2 files

0.1.3

2 files

0.1.2

2 files

0.1.1

2 files

0.1.0

2 files

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page