Package for compounds and property packages
Project description
About
This repository is split into two main tools: the compound database and property package builder.
Installation
To install this:
pip install ahuora-compounds
To install the development version, after cloning this repo:
pip install -e .
To use
Compound Database
Usage
Property Packages
from ahuora_property_packages.build_package import build_package
build_package("helmholtz",["h2o"],["vap","liq"])
Compounds
from ahuora_compounds.CompoundDB import db
db.search_compounds("ane")
> ["octane", "hexane", "..."]
db.get_compound_names()
> ["amonia", "benzene", "carbon dioxide", "..."]
db.get_compound(name)
> <Compound Object>
db.get_supported_packages(["benzene", "toluene", "..."])
> ["peng-robinson", "helmholtz"]
db.get_supported_compounds(["peng-robinson", "helmholtz"])
> ["benzene", "toluene", "..."]
Development
Creating new data loader under compounds/loaders/
3 step process
1 - register package
2 - register compounds
3 - bind compounds to package
# general workflow
# default property package
@loader("example_loader")
def load(registry):
registry.register_package(DefaultPropertyPackage("example_pp"))
registry.register_compound('compound1', "example_pp", {})
registry.register_compound('compound2', "example_pp", {})
registry.bind("compound1", "example_pp")
registry.bind("compound2", "example_pp")
# custom property package
class MilkPropertyPackage(PropertyPackage):
def check_supported_compound(self, compound: str, strict: bool = True) -> bool:
return True
@loader("example_loader")
def load(registry):
registry.register_package(MilkPropertyPackage("example_custom_pp"))
registry.register_compound('compound1', "example_custom_pp", {})
registry.register_compound('compound2', "example_custom_pp", {})
registry.register_compound('compound3', "example_custom_pp", {})
# Generates based on PropertyPackage check_supported_compound implementation
# In this case all compounds across loaders will be valid for this property package
registry.dynamic_bind("example_custom_pp")
more examples in compounds/loaders/
Deprecated methods
> get_compound(name)
[!WARNING] method is deprecated
# example usage
from CompoundDB import get_compound
benzene = get_compound("benzene")
benzene["AbsEntropy"].value # "269300"
benzene["AbsEntropy"].unit # "J/kmol/K"
> get_compound_names
[!WARNING] method is deprecated
# example usage
from CompoundDB import get_compound_names
names = get_compound_names()
print(names)
> ["benzene", "methane", "butane", "..."]
> search_compounds(query)
[!WARNING] method is deprecated
# example usage
from compounds import search_compounds
names = search_compounds("hex")
print(names)
> ["hexane", "1-hexane", "..."]
Property Package Builder
Usage
import property_packages
property_packages.build_package("helmholtz",["h2o"])
# Returns IDAES compatible ParameterBlock
Next Steps
Implement something to translate between apis, e.g for if the user specifies in Temperature and mass flow but the property package uses flow_mol and enthalpy
Publishing
When a commit to main is merged, the publish.yml action will automatically bump the patch version, commit the bumped version to main, build the package, and submit to pypi.
If you want to create a minor or major version, run
uv run hatch version minor
uv run hatch version major
and that will bump the major or minor version and you can commit that.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ahuora_compounds-0.0.34.tar.gz.
File metadata
- Download URL: ahuora_compounds-0.0.34.tar.gz
- Upload date:
- Size: 681.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.10.9 {"installer":{"name":"uv","version":"0.10.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
841a4cd5ca0885c23831e41a68e44bc3f5979fd5c9396b9a1abce34cd96692d9
|
|
| MD5 |
7ff69a77e7e9d638fb54f0dd01755d9f
|
|
| BLAKE2b-256 |
e123df8151574e6a127a36f4000bd7a89b69bf8ab49d2096583e36c7197f9741
|
File details
Details for the file ahuora_compounds-0.0.34-py3-none-any.whl.
File metadata
- Download URL: ahuora_compounds-0.0.34-py3-none-any.whl
- Upload date:
- Size: 1.4 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.10.9 {"installer":{"name":"uv","version":"0.10.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0f79c039d253c19efae9a52fb9c16850ed1c9669e93084864cd5b755bd145052
|
|
| MD5 |
dd6d775412bd906118627387de87a312
|
|
| BLAKE2b-256 |
058b629ebeb873df29a474a9cf22fc2ada6174df1ef8bffe49a6718513a059c1
|