Skip to main content

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

ahuora_compounds-0.0.35.tar.gz (687.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

ahuora_compounds-0.0.35-py3-none-any.whl (1.4 MB view details)

Uploaded Python 3

File details

Details for the file ahuora_compounds-0.0.35.tar.gz.

File metadata

  • Download URL: ahuora_compounds-0.0.35.tar.gz
  • Upload date:
  • Size: 687.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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

Hashes for ahuora_compounds-0.0.35.tar.gz
Algorithm Hash digest
SHA256 1a6cc229c369b657b24e78232323283d614e847c63f7e2f26fe5f010cbf61fd7
MD5 0c8cb1dad2ef71c7ad6f60d60aa8de66
BLAKE2b-256 8a393a483add80018d60dc478f3da00b5cf82e545fb4788146552cde4e1c54b6

See more details on using hashes here.

File details

Details for the file ahuora_compounds-0.0.35-py3-none-any.whl.

File metadata

  • Download URL: ahuora_compounds-0.0.35-py3-none-any.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","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

Hashes for ahuora_compounds-0.0.35-py3-none-any.whl
Algorithm Hash digest
SHA256 ae932f6551828147f2fe9e7a8e40aa2f2dc914e3f8d36c22423edc39c849b783
MD5 0c6b776ca628920d78135b4dce4f25c0
BLAKE2b-256 8fdb7ef7411e5684901ec67b2471dcfb40c1032e70e7ffb7f801e5d56717b3c1

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page