Metadata-Version: 2.4
Name: thermoprop
Version: 0.1.2
Summary: A Python thermodynamic property wrapper for fluids and mixtures.
Author: Saaketh Ramoju
Author-email: Saaketh Ramoju <rsaaketh@icloud.com>
License-Expression: GPL-3.0-only
Requires-Dist: coolprop>=6.8.0
Requires-Dist: numpy>=2.4.6
Requires-Dist: pyromat>=2.2.6
Requires-Dist: scipy>=1.17.1
Requires-Python: >=3.13
Project-URL: Homepage, https://github.com/saakethramoju/ThermoProp
Project-URL: Repository, https://github.com/saakethramoju/ThermoProp
Project-URL: Issues, https://github.com/saakethramoju/ThermoProp/issues
Description-Content-Type: text/markdown

# ThermoProp

A Python thermodynamic property wrapper for pure fluids and fluid mixtures.

ThermoProp provides a simplified interface to:

- CoolProp
- PYroMat

while exposing a consistent API for thermodynamic state calculations.

## Installation

```bash
pip install thermoprop
```

## Example

```python
from thermoprop import Fluid

water = Fluid(
    "water",
    pressure=101325,
    temperature=300
)

print(water.density)
print(water.enthalpy)
```

## Dependencies

- CoolProp
- NumPy
- SciPy
- PYroMat

## Source Code

GitHub:

https://github.com/saakethramoju/ThermoProp