Metadata-Version: 2.1
Name: ugropy
Version: 1.0.1
Summary: Get UNIFAC functional groups of PubChem compounds or SMILES representation.
Author-email: "Brandolín, Salvador Eduardo" <salvadorebrandolin@mi.unc.edu.ar>
License: The MIT License
Project-URL: Homepage, https://github.com/ipqa-research/ugropy
Keywords: UNIFAC,functional group,thermodynamics,chemical engineering
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.10
Classifier: Topic :: Scientific/Engineering
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy>=1.25.1
Requires-Dist: pandas>=2.0.3
Requires-Dist: pubchempy==1.0.4
Requires-Dist: rdkit==2023.3.2

<p align="center">
  <img src="logo.png" alt="logo" width="300" height="350">
</p>

[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/ipqa-research/ugropy/main)
[![License](https://img.shields.io/badge/License-MIT-blue.svg)](https://tldrlegal.com/license/mit-license)
![Python 3.10+](https://img.shields.io/badge/Python-3.10%2B-blue)
[![Documentation Status](https://readthedocs.org/projects/ugropy/badge/?version=latest)](https://ugropy.readthedocs.io/en/latest/?badge=latest)

ugropy is a `Python` library to obtain the UNIFAC's subgroups from both the
name or the SMILES representation of a molecule. If the name is given, the
library uses the [PubChemPy](https://github.com/mcs07/PubChemPy) library to
obtain the SMILES representation from PubChem. In both cases, ugropy uses the
[RDKit](https://github.com/rdkit/rdkit) library to search the functional groups
in the molecule.

ugropy is in an early development stage, leaving issues of examples of
molecules that ugropy fails solving the UNIFAC's groups is very helpful.

## Try ugropy now
You can try ugropy from it's
[Binder](https://mybinder.org/v2/gh/ipqa-research/ugropy/main). Open the
binder.ipynb file to explore the basic features.

## Models supported v1.0.1
- Classic liquid-vapor UNIFAC
- Predictive Soave-Redlich-Kwong (PSRK)
- Joback

## Writers

- Clapeyron.jl


## Example of use
You can check the full tutorial 
[here](https://ugropy.readthedocs.io/en/latest/tutorial/tutorial.html).

Get UNIFAC groups from the molecule's name:

```python
from ugropy import Groups


hexane = Groups("hexane")

print(hexane.unifac_groups)
print(hexane.psrk_groups)
print(hexane.joback.groups)
```

    {'CH3': 2, 'CH2': 4}
    {'CH3': 2, 'CH2': 4}
    {'-CH3': 2, '-CH2-': 4}

Get UNIFAC groups from molecule's SMILES:

```python
propanol = Groups("CCCO", "smiles")

print(propanol.unifac_groups)
print(propanol.psrk_groups)
print(propanol.joback.groups)
```

    {'CH3': 1, 'CH2': 2, 'OH': 1}
    {'CH3': 1, 'CH2': 2, 'OH': 1}
    {'-CH3': 1, '-CH2-': 2, '-OH (alcohol)': 1}

Estimate properties with the Joback model!

```python
limonene = Groups("limonene")

print(limonene.joback.groups)
print(f"{limonene.joback.critical_temperature} K")
print(f"{limonene.joback.vapor_pressure(176 + 273.15)} bar")
```

    {'-CH3': 2, '=CH2': 1, '=C<': 1, 'ring-CH2-': 3, 'ring>CH-': 1, 'ring=CH-': 1, 'ring=C<': 1}
    657.4486692170663 K
    1.0254019428522743 bar

Write down the [Clapeyron.jl](https://github.com/ClapeyronThermo/Clapeyron.jl)
.csv input files.

```python
from ugropy import writers

names = ["limonene", "adrenaline", "Trinitrotoluene"]

grps = [Groups(n) for n in names]

# Write the csv files into a database directory
writers.to_clapeyron(
    molecules_names=names,
    unifac_groups=[g.unifac_groups for g in grps],
    psrk_groups=[g.psrk_groups for g in grps],
    joback_objects=[g.joback for g in grps],
    path="./database"
)
```

## Installation
```
pip install ugropy
```

## Refereces

[1] http://www.ddbst.com/published-parameters-unifac.html

[2] Joback, K. G., & Reid, R. C. (1987). ESTIMATION OF PURE-COMPONENT
PROPERTIES FROM GROUP-CONTRIBUTIONS. Chemical Engineering Communications,
57(1–6), 233–243. https://doi.org/10.1080/00986448708960487

[3] Joback, K. G. (1989). Designing molecules possessing desired physical
property values [Thesis (Ph. D.), Massachusetts Institute of Technology].
https://dspace.mit.edu/handle/1721.1/14191
