fugacio 0.0.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: fugacio
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Fugacio: differentiable thermodynamics, process simulation, and an AI design copilot (umbrella install).
|
|
5
|
+
Author-email: Owen Carey <37121709+owenthcarey@users.noreply.github.com>
|
|
6
|
+
License-Expression: Apache-2.0
|
|
7
|
+
Keywords: chemical-engineering,jax,process-simulation,thermodynamics
|
|
8
|
+
Classifier: Development Status :: 2 - Pre-Alpha
|
|
9
|
+
Classifier: Intended Audience :: Science/Research
|
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
|
11
|
+
Classifier: Topic :: Scientific/Engineering :: Chemistry
|
|
12
|
+
Requires-Python: >=3.11
|
|
13
|
+
Requires-Dist: fugacio-copilot
|
|
14
|
+
Requires-Dist: fugacio-sim
|
|
15
|
+
Requires-Dist: fugacio-thermo
|
|
16
|
+
Description-Content-Type: text/markdown
|
|
17
|
+
|
|
18
|
+
# fugacio
|
|
19
|
+
|
|
20
|
+
Umbrella package for the Fugacio stack. Installing it pulls the three
|
|
21
|
+
components together:
|
|
22
|
+
|
|
23
|
+
- `fugacio-thermo`: differentiable thermodynamics and physical properties
|
|
24
|
+
- `fugacio-sim`: differentiable steady-state and dynamic process simulation
|
|
25
|
+
- `fugacio-copilot`: an AI design copilot for the stack
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
pip install fugacio
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
It ships no code of its own. Everything is importable from the `fugacio`
|
|
32
|
+
namespace provided by the component packages, for example `fugacio.thermo`,
|
|
33
|
+
`fugacio.sim`, and `fugacio.copilot`.
|