Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/clapeyronthermo/clapeyron.jl

Clapeyron provides a framework for the development and use of fluid-thermodynamic models, including SAFT, cubic, activity, multi-parameter, and COSMO-SAC.
https://github.com/clapeyronthermo/clapeyron.jl

cosmo-sac equation-of-state julia molecular-modeling phase-equilibria phase-equilibrium saft solvers thermodynamics unifac

Last synced: 7 days ago
JSON representation

Clapeyron provides a framework for the development and use of fluid-thermodynamic models, including SAFT, cubic, activity, multi-parameter, and COSMO-SAC.

Awesome Lists containing this project

README

        

[![DOI](https://zenodo.org/badge/267659508.svg)](https://zenodo.org/badge/latestdoi/267659508)
[![Build Status](https://github.com/ClapeyronThermo/Clapeyron.jl/workflows/CI/badge.svg)](https://github.com/ClapeyronThermo/Clapeyron.jl/actions)
[![codecov](https://codecov.io/gh/ClapeyronThermo/Clapeyron.jl/branch/master/graph/badge.svg?token=ZVGGR4AAFB)](https://codecov.io/gh/ClapeyronThermo/Clapeyron.jl)
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://clapeyronthermo.github.io/Clapeyron.jl/dev)
[![project chat](https://img.shields.io/badge/zulip-join_chat-brightgreen.svg)](https://julialang.zulipchat.com/#narrow/stream/265161-Clapeyron.2Ejl)

![Clapeyron_logo](docs/Clapeyron_logo.svg)

Welcome to Clapeyron! This module provides both a large library of thermodynamic models and a framework for one to easily implement their own models.

The official manuscript is in ACS. https://pubs.acs.org/doi/10.1021/acs.iecr.2c00326. There is also a preprint available at arxiv: https://arxiv.org/abs/2201.08927

We have also presented at the JuliaCon 2021 conference! Feel free to take a look at our talk:

[![Clapeyron.jl: An Extensible Implementation of Equations of State | Paul Yew et al | JuliaCon2021](https://img.youtube.com/vi/Re5qI-9zyIM/0.jpg)](https://www.youtube.com/watch?v=Re5qI-9zyIM "Clapeyron.jl: An Extensible Implementation of Equations of State | Paul Yew et al | JuliaCon2021")

We support many equations of state and properties. Some examples of figures you can create are shown below:

- Isobaric heat capacity of carbon dioxide at 20 MPa:

![CO2_cp](docs/CO2_cp.svg)

- Water VLE envelope:

![water_VLE](docs/water_VLE.svg)

- Ethanol+water Pxy diagram at 423.15 K:

![ethanol+water](docs/ethanol+water.svg)

- pT-isopleth of methanol+cyclohexane generated using PC-SAFT:

![CH3OH_CyHx](docs/CH3OH_CyHex.svg)

If you find any issues, feel free to contact us directly on the [Zulip Channel](https://julialang.zulipchat.com/#narrow/stream/265161-Clapeyron.2Ejl), or open a Github issue.

# Installing Clapeyron

The minimum supported version is Julia 1.6. To install Clapeyron, launch Julia with

```
> julia
```

Hit the ```]``` key to enter Pkg mode, then type

```
Pkg> add Clapeyron
```
Or to add the development version:
```
Pkg> add https://github.com/ClapeyronThermo/Clapeyron.jl#master
```
Exit Pkg mode by hitting backspace.

Now you may begin using functions from the Clapeyron library by entering the command

```
using Clapeyron
```

To remove the package, hit the ```]``` key to enter Pkg mode, then type

```
Pkg> rm Clapeyron
```
# Citing Clapeyron

If you are using Clapeyron for your research work, please cite the following:

```
@article{Clapeyron-2022,
title={Clapeyron.jl: An Extensible, Open-Source Fluid Thermodynamics Toolkit},
author={Pierre J. Walker, Hon-Wa Yew, and Andrés Riedemann},
journal={Ind. Eng. Chem. Res.},
volume={61},
number={20},
pages={7130--7153},
year={2022},
publisher={American Chemical Society},
doi={doi/10.1021/acs.iecr.2c00326},
url={https://pubs.acs.org/doi/10.1021/acs.iecr.2c00326}
}
```

# Package in active Development

Note that at its current stage, Clapeyron is still in the early stages of development, and things may be moving around or changing rapidly, but we are very excited to see where this project may go!

We are open to contributions. New models, improved methods and more databases are always appreciated!