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.33.tar.gz (681.5 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.33-py3-none-any.whl (1.4 MB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: ahuora_compounds-0.0.33.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

Hashes for ahuora_compounds-0.0.33.tar.gz
Algorithm Hash digest
SHA256 b17142d4812adcb04182c45e80fc1731e9b85bd5c75949efa8f47ecb0a417537
MD5 3e337a550d0a1ccf26480ffb45ea6c39
BLAKE2b-256 2a753118493cc7bca8cd86cde9049acc8f64963d10d62fd507d4ceff7be20141

See more details on using hashes here.

File details

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

File metadata

  • Download URL: ahuora_compounds-0.0.33-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

Hashes for ahuora_compounds-0.0.33-py3-none-any.whl
Algorithm Hash digest
SHA256 4d20ac47c251a896976bea9ef46c43e65b6fd7aea90e9d75094885ced62e4b6b
MD5 698353ce5bd527fe9bf5eff4eed8e4e6
BLAKE2b-256 40fd0690a18ef76b02f4ac7f933e61eada083086fc50c3d9a38c949e54e5958c

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