Metadata-Version: 2.2
Name: py_disinfection
Version: 0.1.10
Summary: Library and command to calculate detention times, disinfectant residuals, and CT ratios for drinking water systems
Author-email: Sylvie Water Systems <hello@sylviewater.com>
Maintainer-email: Sylvie Water Systems <hello@sylviewater.com>
License: BSD license
Project-URL: bugs, https://github.com/toddrbryan/py_disinfection/issues
Project-URL: changelog, https://github.com/toddrbryan/py_disinfection/blob/master/changelog.md
Project-URL: homepage, https://github.com/toddrbryan/py_disinfection
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Utilities
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
License-File: AUTHORS.rst
Requires-Dist: typer
Requires-Dist: rich
Requires-Dist: pydantic>=2.0
Provides-Extra: dev
Requires-Dist: coverage; extra == "dev"
Requires-Dist: mypy; extra == "dev"
Requires-Dist: pytest; extra == "dev"
Requires-Dist: pytest-cov; extra == "dev"
Requires-Dist: ruff; extra == "dev"
Requires-Dist: twine; extra == "dev"
Requires-Dist: types-pydantic; extra == "dev"

# py_disinfection: Drinking Water Disinfection Parameter Calculations


<!-- .. image:: https://img.shields.io/pypi/v/py_disinfection.svg
        :target: https://pypi.python.org/pypi/py_disinfection

.. image:: https://img.shields.io/travis/SylvieWaterServices/py_disinfection.svg
        :target: https://travis-ci.com/SylvieWaterServices/py_disinfection

.. image:: https://readthedocs.org/projects/py-disinfection/badge/?version=latest
        :target: https://py-disinfection.readthedocs.io/en/latest/?version=latest
        :alt: Documentation Status -->

## Overview

This library and CLI tool provide calculations for **disinfection values**, including contact time, CT, log inactivation, and log inactivation ratios. These values are used in drinking water treatment to assess the effectiveness of various disinfectants (e.g., free chlorine, chlorine dioxide, chloramines) against microbial targets like **Giardia**, as well as **viruses**.

This library implements most of the methods described in the [**US EPA Disinfection Profiling and Benchmarking Technical Guidance Manual**](https://www.epa.gov/sites/default/files/2015-09/documents/disinfection_profiling_and_benchmarking_guidance_manual.pdf). 
Its internal tables for CT values are also taken from this document.  A PDF copy is included in this repository to guard against removal of the EPA link, or dissolution of the EPA.


## Features

- **Python Library** for programmatic access to CT calculations.
- **Command-Line Interface (CLI)** for quick calculations from the terminal.
- **Supports Multiple Estimation Methods:** for free chlorine disinfection:
  - **Conservative**: Uses worst-case values.
  - **Interpolation**: Performs multi-step interpolation.
  - **Regression**: Uses EPA regression equations.
- **Temperature Handling** in Celsius or Fahrenheit.
- **Multiple Disinfectant Agents** supported, including free chlorine, chloramines, and chlorine dioxide.
- **Giardia and Virus Targets** for CT calculations.
- **JSON Output Support** for easy integration with other systems.
- **Tested on Python 3.6 - 3.13-0a2**, may work on other versions.

---

## Installation

To install the package, run:

```sh
pip install py-disinfection
```

To install from source:

```sh
git clone git@github.com:SylvieWaterServices/py_disinfection.git
cd py-disinfection
make
```

---

## Usage

### **🔹 Library Usage (Python API)**

You can use the library to calculate required CT values programmatically:

```python
from py_disinfection.core import DisinfectionSegment, DisinfectionSegmentOptions, DisinfectionTarget, DisinfectantAgent, CTReqEstimator

options = DisinfectionSegmentOptions(
    volume_gallons=1000,
    temperature_celsius=10,
    ph=7.0,
    concentration_mg_per_liter=0.5,
    baffling_factor=0.3,
    peak_hourly_flow_gallons_per_minute=20,
    agent=DisinfectantAgent.FREE_CHLORINE,
    ctreq_estimator=CTReqEstimator.INTERPOLATION
)

segment = DisinfectionSegment(options)
results = segment.analyze(DisinfectionTarget.GIARDIA)

print(results)  
```

### **🔹 CLI Usage**

You can also run calculations using the command-line tool  Run `disinfect --help` to see all options:

#### **Basic Usage**

```sh
disinfect -v 1000 -t 10 -u C -p 7.0 -c 0.5 -m interpolation -a free_chlorine -b 0.3 -f 20
```

Output:
```
Segment Parameters:
volume_gallons: 1000.0
temperature_celsius: 10.0
ph: 7.0
concentration_mg_per_liter: 0.5
baffling_factor: 0.3
peak_hourly_flow_gallons_per_minute: 20.0
agent: DisinfectantAgent.FREE_CHLORINE
ctreq_estimator: CTReqEstimator.INTERPOLATION

Disinfection Analysis Results:
tdt: 50.0
contact_time: 15.0
viruses_required_ct: 6
viruses_calculated_ct: 7.5
viruses_ct_ratio: 1.25
viruses_log_inactivation: 5.0
giardia_required_ct: 105.5
giardia_calculated_ct: 7.5
giardia_ct_ratio: 0.07109004739336493
giardia_log_inactivation: 0.21327014218009477
```

#### **Output in JSON Format**

```sh
disinfect -v 1000 -t 10 -u C -p 7.0 -c 0.5 -m interpolation -a free_chlorine -b 0.3 -f 20 --json
```

Output:

```json
{
    "parameters": {
        "agent": "FREE_CHLORINE",
        "volume_gallons": 1000.0,
        "temperature_celsius": 10.0,
        "ph": 7.0,
        "concentration_mg_per_liter": 0.5,
        "peak_hourly_flow_gallons_per_minute": 20.0,
        "ctreq_estimator": "INTERPOLATION",
        "baffling_factor": 0.3,
        "temp_fahrenheit": 50.0
    },
    "results": {
        "tdt": 50.0,
        "contact_time": 15.0,
        "viruses_required_ct": 6,
        "viruses_calculated_ct": 7.5,
        "viruses_ct_ratio": 1.25,
        "viruses_log_inactivation": 5.0,
        "giardia_required_ct": 105.5,
        "giardia_calculated_ct": 7.5,
        "giardia_ct_ratio": 0.07109004739336493,
        "giardia_log_inactivation": 0.21327014218009477
    }
}
```

---

## Features Coming Soon
- Support for inactivation credits from filtration and other treatment steps
- Ozone disinfection support
- Ability to create multiple treatment segments, and calculate the sum parameters of all segments in a treatment chain
- Expanded test suite

## Development & Contribution

To contribute:

1. Fork the repository.
2. Clone your fork.
3. Install dependencies: `pip install .`
4. Run tests: `make test`

---

## License

This project is licensed under the **BSD License**. See `LICENSE` for details.

---

## Author

Developed by [Sylvie Water Services](www.sylviewater.com). Contributions and suggestions welcome! Reach us at hello@sylviewater.com.

