ahuora-compounds 0.0.31__tar.gz
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.
- ahuora_compounds-0.0.31/.github/workflows/publish.yml +36 -0
- ahuora_compounds-0.0.31/.github/workflows/python.yml +37 -0
- ahuora_compounds-0.0.31/.gitignore +162 -0
- ahuora_compounds-0.0.31/PKG-INFO +193 -0
- ahuora_compounds-0.0.31/README.md +178 -0
- ahuora_compounds-0.0.31/__version__.py +1 -0
- ahuora_compounds-0.0.31/ahuora_compounds/Compound.py +40 -0
- ahuora_compounds-0.0.31/ahuora_compounds/CompoundDB.py +55 -0
- ahuora_compounds-0.0.31/ahuora_compounds/CompoundRegistry.py +307 -0
- ahuora_compounds-0.0.31/ahuora_compounds/PropertyPackage.py +98 -0
- ahuora_compounds-0.0.31/ahuora_compounds/RegistryLoader.py +16 -0
- ahuora_compounds-0.0.31/ahuora_compounds/RegistrySearch.py +22 -0
- ahuora_compounds-0.0.31/ahuora_compounds/__init__.py +15 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/__init__.py +10 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/chemsep.py +125 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/1,1,2-trichloroethane.xml +230 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/1,1-dichloroethane.xml +225 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/1,1-dimethylcyclohexane.xml +230 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/1,1-dimethylcyclopentane.xml +226 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/1,2,3,4-tetramethylbenzene.xml +226 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/1,2,3,5-tetramethylbenzene.xml +225 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/1,2,3-trimethylbenzene.xml +227 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/1,2,4,5-tetramethylbenzene.xml +227 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/1,2,4-trichlorobenzene.xml +215 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/1,2,4-trimethylbenzene.xml +235 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/1,2-butadiene.xml +227 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/1,2-dichloroethane.xml +224 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/1,2-dimethoxyethane.xml +185 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/1,2-propylene glycol.xml +215 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/1,2-propylene oxide.xml +224 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/1,3-butadiene.xml +218 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/1,4-butanediol.xml +231 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/1,4-dioxane.xml +226 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/1-butanol.xml +239 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/1-butene.xml +229 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/1-decanol.xml +200 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/1-decene.xml +207 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/1-dodecanol.xml +200 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/1-dodecene.xml +207 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/1-eicosanol.xml +201 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/1-eicosene.xml +206 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/1-heptadecanol.xml +180 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/1-heptanol.xml +238 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/1-heptene.xml +229 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/1-hexadecanol.xml +201 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/1-hexadecene.xml +198 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/1-hexanol.xml +238 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/1-hexene.xml +228 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/1-methyl-1-ethylcyclopentane.xml +224 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/1-methyl-3-n-propylbenzene.xml +232 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/1-methyl-4-n-propylbenzene.xml +235 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/1-methylindene.xml +215 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/1-methylnaphthalene.xml +229 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/1-naphthalenemethanol.xml +176 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/1-nitrobutane.xml +223 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/1-nitropropane.xml +220 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/1-nonadecanol.xml +70 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/1-nonanol.xml +200 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/1-nonene.xml +231 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/1-octadecanol.xml +201 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/1-octadecene.xml +206 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/1-octanol.xml +201 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/1-octene.xml +239 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/1-pentadecanol.xml +200 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/1-pentanol.xml +238 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/1-pentene.xml +237 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/1-phenylnaphthalene.xml +218 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/1-propanol.xml +237 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/1-tetradecanol.xml +200 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/1-tetradecene.xml +206 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/1-tridecanol.xml +200 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/1-undecanol.xml +199 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/1-undecene.xml +230 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/2,2,3,3-tetramethylbutane.xml +225 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/2,2,3,3-tetramethylpentane.xml +239 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/2,2,3,4-tetramethylpentane.xml +235 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/2,2,3-trimethylbutane.xml +238 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/2,2,3-trimethylpentane.xml +238 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/2,2,4,4-tetramethylpentane.xml +238 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/2,2,4-trimethylpentane.xml +242 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/2,2,5-trimethylhexane.xml +232 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/2,2-dimethyl-1-propanol.xml +243 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/2,2-dimethylbutane.xml +227 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/2,2-dimethylheptane.xml +230 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/2,2-dimethylhexane.xml +235 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/2,2-dimethyloctane.xml +219 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/2,2-dimethylpentane.xml +239 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/2,3,3,4-tetramethylpentane.xml +235 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/2,3,3-trimethylpentane.xml +238 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/2,3,4-trimethylpentane.xml +231 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/2,3-dimethylbutane.xml +223 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/2,3-dimethylhexane.xml +232 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/2,3-dimethylpentane.xml +236 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/2,3-xylenol.xml +201 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/2,4,4-trimethylhexane.xml +228 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/2,4,6-trinitrotoluene.xml +230 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/2,4-dimethylhexane.xml +232 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/2,4-dimethylpentane.xml +239 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/2,4-dinitrotoluene.xml +222 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/2,4-xylenol.xml +202 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/2,5-dimethylhexane.xml +235 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/2,5-dinitrotoluene.xml +222 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/2,5-xylenol.xml +202 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/2,6-dinitrotoluene.xml +222 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/2,6-xylenol.xml +202 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/2-butanol.xml +244 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/2-chloroethanol.xml +195 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/2-ethoxyethanol.xml +186 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/2-ethyl-m-xylene.xml +234 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/2-ethyl-p-xylene.xml +234 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/2-heptanone.xml +232 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/2-hexanone.xml +225 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/2-methoxy-2-methyl-heptane.xml +129 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/2-methyl-1-butanol.xml +243 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/2-methyl-1-butene.xml +228 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/2-methyl-1-heptadecene.xml +80 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/2-methyl-1-heptene.xml +222 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/2-methyl-1-nonadecene.xml +80 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/2-methyl-1-nonene.xml +81 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/2-methyl-1-pentadecene.xml +81 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/2-methyl-1-pentene.xml +226 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/2-methyl-1-propanol.xml +235 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/2-methyl-1-tridecene.xml +80 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/2-methyl-1-undecene.xml +81 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/2-methyl-2-butanol.xml +234 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/2-methyl-2-butene.xml +224 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/2-methyl-2-heptanol.xml +138 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/2-methyl-2-propanol.xml +230 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/2-methyl-3-ethylpentane.xml +235 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/2-methylheptane.xml +231 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/2-methylhexane.xml +239 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/2-methylindene.xml +219 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/2-methylnaphthalene.xml +229 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/2-methylnonane.xml +226 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/2-methyloctane.xml +230 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/2-methylpentane.xml +229 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/2-methylpropanal.xml +217 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/2-nitropropane.xml +214 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/2-pentanol.xml +239 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/2-pentanone.xml +225 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/3,3,5-trimethylheptane.xml +229 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/3,3-diethylpentane.xml +230 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/3,3-dimethyl-2-butanone.xml +224 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/3,3-dimethylhexane.xml +235 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/3,3-dimethylpentane.xml +239 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/3,4-dimethylhexane.xml +232 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/3,4-dinitrotoluene.xml +222 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/3,4-xylenol.xml +202 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/3,5-dinitrotoluene.xml +222 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/3,5-xylenol.xml +202 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/3-ethylheptane.xml +222 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/3-ethylhexane.xml +223 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/3-ethylpentane.xml +227 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/3-heptanone.xml +223 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/3-hexanone.xml +233 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/3-methyl-1-butene.xml +230 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/3-methyl-3-ethylpentane.xml +235 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/3-methylheptane.xml +230 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/3-methylhexane.xml +238 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/3-methylnonane.xml +226 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/3-methyloctane.xml +222 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/3-methylpentane.xml +229 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/3-pentanone.xml +230 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/3-phenyl-1-propanol.xml +209 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/4-ethyl-m-xylene.xml +230 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/4-ethyl-o-xylene.xml +230 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/4-heptanone.xml +231 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/4-methyl-cis-2-pentene.xml +224 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/4-methyl-trans-2-pentene.xml +224 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/4-methylheptane.xml +227 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/4-methylnonane.xml +226 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/4-methyloctane.xml +222 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/5-methyl-2-hexanone.xml +229 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/5-methylnonane.xml +226 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/acenaphthene.xml +232 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/acetaldehyde.xml +220 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/acetic acid.xml +215 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/acetic anhydride.xml +197 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/acetone.xml +228 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/acetonitrile.xml +224 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/acetyl chloride.xml +192 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/acetylene.xml +219 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/acrolein.xml +186 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/acrylic acid.xml +209 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/acrylonitrile.xml +220 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/adipic acid.xml +206 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/air.xml +167 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/ammonia.xml +214 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/aniline.xml +226 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/anisole.xml +233 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/argon.xml +200 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/benzaldehyde.xml +203 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/benzene.xml +226 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/benzothiophene.xml +173 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/benzoyl peroxide.xml +189 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/benzyl alcohol.xml +204 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/biphenyl.xml +223 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/bisphenol a.xml +209 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/bromine.xml +206 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/bromobenzene.xml +223 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/butanal.xml +224 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/butyl vinyl ether.xml +225 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/capric acid.xml +191 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/caproic acid.xml +191 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/caprylic acid.xml +192 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/carbon dioxide.xml +213 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/carbon disulfide.xml +216 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/carbon monoxide.xml +204 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/carbon tetrachloride.xml +222 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/carbonyl sulfide.xml +207 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/chlorine.xml +200 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/chloroform.xml +220 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/chrysene.xml +218 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/cis-1,2-dimethylcyclohexane.xml +230 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/cis-1,2-dimethylcyclopentane.xml +227 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/cis-1,3-dimethylcyclohexane.xml +230 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/cis-1,3-dimethylcyclopentane.xml +224 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/cis-1,4-dimethylcyclohexane.xml +230 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/cis-2-butene.xml +223 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/cis-2-hexene.xml +230 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/cis-2-pentene.xml +228 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/cis-decahydronaphthalene.xml +225 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/cumene.xml +239 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/cyclobutane.xml +210 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/cyclohexane.xml +218 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/cyclohexanol.xml +227 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/cyclohexanone.xml +225 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/cyclohexene.xml +223 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/cyclopentane.xml +225 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/cyrene.xml +181 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/decanal.xml +200 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/di-n-butyl ether.xml +220 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/di-n-propyl disulfide.xml +214 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/di-n-propyl sulfide.xml +211 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/di-sec-butyl ether.xml +221 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/di-tert-butyl disulfide.xml +193 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/diacetone alcohol.xml +226 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/dibutyl carbonate.xml +72 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/dichloroacetaldehyde.xml +202 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/dichloroacetyl chloride.xml +183 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/dicumyl peroxide.xml +184 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/dicyclopentadiene.xml +225 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/diethanolamine.xml +224 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/diethyl carbonate.xml +158 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/diethyl disulfide.xml +207 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/diethyl ether.xml +230 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/diethyl sulfide.xml +223 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/diethylamine.xml +226 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/diethylene glycol diethyl ether.xml +207 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/diethylene glycol dimethyl ether.xml +202 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/diethylene glycol.xml +234 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/diethylenetriamine.xml +218 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/diethylethanolamine.xml +217 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/diisobutyl ketone.xml +226 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/diisopropanolamine.xml +233 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/diisopropyl ether.xml +234 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/diisopropyl ketone.xml +204 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/diisopropylamine.xml +211 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/dimethyl carbonate.xml +219 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/dimethyl disulfide.xml +217 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/dimethyl ether.xml +226 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/dimethyl sulfide.xml +218 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/dimethyl sulfoxide.xml +219 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/dimethyl terephthalate.xml +223 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/dimethylacetylene.xml +213 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/dimethylethanolamine.xml +219 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/dimethylmalonate.xml +170 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/diphenyl carbonate.xml +155 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/diphenyl disulfide.xml +203 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/diphenyl ether.xml +211 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/dipropylene glycol.xml +60 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/dodecanal.xml +200 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/ethane-1,1-diol.xml +233 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/ethane.xml +218 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/ethanol.xml +240 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/ethyl acetate.xml +230 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/ethyl benzoate.xml +194 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/ethyl chloride.xml +226 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/ethyl formate.xml +220 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/ethyl mercaptan.xml +221 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/ethyl methyl disulfide.xml +210 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/ethyl phenyl carbonate.xml +127 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/ethyl propyl disulfide.xml +211 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/ethyl tert-pentyl ether.xml +222 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/ethylacetylene.xml +217 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/ethylamine.xml +222 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/ethylbenzene hydroperoxide.xml +177 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/ethylbenzene.xml +239 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/ethylcyclohexane.xml +228 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/ethylcyclopentane.xml +229 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/ethylene carbonate.xml +220 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/ethylene glycol.xml +225 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/ethylene oxide.xml +223 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/ethylene.xml +217 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/ethylenediamine.xml +215 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/fluoranthene.xml +221 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/fluorene.xml +226 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/fluorine.xml +203 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/formaldehyde.xml +211 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/formic acid.xml +182 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/furfural.xml +224 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/glycerol.xml +229 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/helium-4.xml +201 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/heptadecanal.xml +81 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/heptanal.xml +232 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/hexadecanal.xml +81 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/hexaethylene glycol.xml +50 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/hexanal.xml +224 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/hexapropylene glycol.xml +52 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/hydrogen chloride.xml +207 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/hydrogen cyanide.xml +209 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/hydrogen iodide.xml +197 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/hydrogen peroxide.xml +177 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/hydrogen sulfide.xml +213 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/hydrogen.xml +204 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/indane.xml +227 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/indene.xml +234 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/iodobenzene.xml +224 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/isobutane.xml +224 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/isobutene.xml +225 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/isobutyl acetate.xml +233 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/isobutyl mercaptan.xml +226 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/isobutylbenzene.xml +246 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/isopentane.xml +237 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/isoprene.xml +228 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/isopropanol.xml +237 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/isopropyl acetate.xml +221 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/isopropyl butyl ether.xml +222 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/isopropyl mercaptan.xml +199 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/isopropylamine.xml +194 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/isopropylcyclopentane.xml +228 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/ketene.xml +185 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/krypton.xml +191 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/lauric acid.xml +191 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/linoleic acid.xml +186 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/linolenic acid.xml +185 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/m-cresol.xml +238 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/m-cymene.xml +232 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/m-dichlorobenzene.xml +225 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/m-diethylbenzene.xml +228 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/m-ethyltoluene.xml +240 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/m-nitrotoluene.xml +233 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/m-xylene.xml +234 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/maleic acid.xml +206 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/maleic anhydride.xml +215 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/malonic acid.xml +187 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/mercury.xml +159 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/mesitol.xml +69 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/mesityl oxide.xml +215 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/mesitylene.xml +227 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/methacrylic acid.xml +214 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/methacrylonitrile.xml +196 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/methane-diol.xml +228 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/methane.xml +215 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/methanol.xml +231 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/methyl acetate.xml +221 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/methyl caprate.xml +201 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/methyl caproate.xml +81 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/methyl caprylate.xml +81 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/methyl chloride.xml +209 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/methyl diethanolamine.xml +225 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/methyl ethyl carbonate.xml +127 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/methyl ethyl ether.xml +221 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/methyl ethyl ketone.xml +230 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/methyl ethyl sulfide.xml +214 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/methyl formate.xml +217 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/methyl iodide.xml +216 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/methyl isobutyl ether.xml +219 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/methyl isobutyl ketone.xml +228 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/methyl isopropyl ether.xml +224 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/methyl isopropyl ketone.xml +222 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/methyl laurate.xml +200 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/methyl linoleate.xml +85 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/methyl linolenate.xml +85 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/methyl mercaptan.xml +213 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/methyl methacrylate.xml +224 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/methyl myristate.xml +202 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/methyl n-propyl ether.xml +224 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/methyl n-propyl sulfide.xml +214 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/methyl oleate.xml +203 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/methyl palmitate.xml +201 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/methyl phenyl carbonate.xml +125 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/methyl propionate.xml +221 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/methyl salicylate.xml +195 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/methyl stearate.xml +201 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/methyl t-butyl sulfide.xml +214 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/methyl t-pentyl sulfide.xml +208 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/methyl tert-butyl ether.xml +224 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/methyl tert-pentyl ether.xml +222 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/methylacetylene.xml +223 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/methylal.xml +224 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/methylamine.xml +218 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/methylcyclohexane.xml +230 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/methylcyclopentane.xml +228 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/methylethanolamine.xml +219 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/monochlorobenzene.xml +226 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/monoethanolamine.xml +225 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/myristic acid.xml +191 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/n,n-dimethylacetamide.xml +206 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/n,n-dimethylformamide.xml +216 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/n-aminoethyl ethanolamine.xml +217 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/n-aminoethyl piperazine.xml +219 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/n-butane.xml +232 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/n-butyl acetate.xml +228 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/n-butylbenzene.xml +234 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/n-butylcyclohexane.xml +230 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/n-butylcyclopentane.xml +228 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/n-butyric acid.xml +213 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/n-decane.xml +231 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/n-docosane.xml +231 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/n-dodecane.xml +231 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/n-eicosane.xml +208 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/n-heneicosane.xml +223 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/n-heptacosane.xml +223 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/n-heptadecane.xml +224 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/n-heptane.xml +224 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/n-hexacosane.xml +223 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/n-hexadecane.xml +223 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/n-hexane.xml +224 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/n-hexyl acetate.xml +220 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/n-hexyl mercaptan.xml +224 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/n-methyl-2-pyrrolidone.xml +196 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/n-nonacosane.xml +222 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/n-nonadecane.xml +223 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/n-nonane.xml +231 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/n-octacosane.xml +223 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/n-octadecane.xml +225 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/n-octane.xml +232 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/n-pentacosane.xml +223 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/n-pentadecane.xml +223 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/n-pentane.xml +232 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/n-pentyl acetate.xml +228 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/n-propyl acetate.xml +225 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/n-propyl formate.xml +220 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/n-propyl mercaptan.xml +232 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/n-propylbenzene.xml +243 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/n-propylcyclohexane.xml +229 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/n-propylcyclopentane.xml +227 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/n-tetracosane.xml +223 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/n-tetradecane.xml +223 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/n-tricosane.xml +222 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/n-tridecane.xml +222 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/n-undecane.xml +230 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/naphthalene.xml +223 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/neon.xml +195 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/neopentane.xml +231 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/nitric acid.xml +186 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/nitric oxide.xml +190 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/nitrobenzene.xml +222 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/nitroethane.xml +228 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/nitrogen dioxide.xml +182 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/nitrogen tetroxide.xml +189 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/nitrogen trioxide.xml +117 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/nitrogen.xml +211 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/nitromethane.xml +223 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/nitrous oxide.xml +208 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/nonanal.xml +200 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/o,p-bisphenol a.xml +214 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/o-cresol.xml +238 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/o-cymene.xml +231 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/o-dichlorobenzene.xml +226 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/o-diethylbenzene.xml +232 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/o-ethyltoluene.xml +232 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/o-nitrotoluene.xml +233 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/o-toluic acid.xml +216 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/o-xylene.xml +234 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/octadecanal.xml +81 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/octanal.xml +200 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/oleic acid.xml +194 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/oxalic acid.xml +184 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/oxygen.xml +210 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/ozone.xml +199 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/p-cresol.xml +236 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/p-cumylphenol.xml +214 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/p-cymene.xml +244 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/p-dichlorobenzene.xml +226 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/p-diethylbenzene.xml +233 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/p-diisopropylbenzene hydroperoxide.xml +198 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/p-diisopropylbenzene.xml +231 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/p-ethyltoluene.xml +233 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/p-isopropenyl phenol.xml +210 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/p-nitrotoluene.xml +233 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/p-phenylenediamine.xml +216 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/p-toluic acid.xml +215 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/p-xylene.xml +234 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/palmitic acid.xml +191 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/pentadecanal.xml +81 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/pentaethylene glycol dimethyl ether.xml +201 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/pentaethylene glycol.xml +50 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/pentanal.xml +224 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/pentapropylene glycol.xml +61 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/phenanthrene.xml +221 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/phenetole.xml +192 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/phenol.xml +232 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/phenyl acetate.xml +200 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/phenyl mercaptan.xml +176 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/phosgene.xml +204 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/phthalic acid.xml +193 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/piperazine.xml +214 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/propadiene.xml +225 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/propanal.xml +220 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/propane.xml +232 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/propionic acid.xml +217 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/propionitrile.xml +220 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/propylene carbonate.xml +225 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/propylene glycol monomethyl ether acetate.xml +203 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/propylene glycol monomethyl ether.xml +214 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/propylene.xml +232 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/pyrene.xml +221 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/pyridine.xml +221 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/salicylic acid.xml +216 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/sec-butyl mercaptan.xml +219 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/sec-butylbenzene.xml +234 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/squalane.xml +228 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/stearic acid.xml +191 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/styrene.xml +229 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/sulfolane.xml +224 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/sulfur dioxide.xml +210 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/sulfur hexafluoride.xml +201 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/sulfur trioxide.xml +204 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/t-cinnamaldehyde.xml +177 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/t-cinnamic acid.xml +199 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/terephthalic acid.xml +153 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/tert-butyl ethyl ether.xml +223 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/tert-butyl mercaptan.xml +217 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/tert-butylbenzene.xml +236 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/tert-butylcyclohexane.xml +225 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/tetradecanal.xml +81 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/tetraethylene glycol dimethyl ether.xml +201 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/tetraethylene glycol.xml +226 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/tetrahydrofuran.xml +222 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/tetrapropylene glycol.xml +61 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/thiophene.xml +215 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/toluene.xml +233 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/trans-1,2-dimethylcyclohexane.xml +230 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/trans-1,2-dimethylcyclopentane.xml +223 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/trans-1,3-dimethylcyclohexane.xml +230 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/trans-1,3-dimethylcyclopentane.xml +231 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/trans-1,4-dimethylcyclohexane.xml +230 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/trans-2-butene.xml +223 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/trans-2-hexene.xml +229 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/trans-2-pentene.xml +228 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/trans-decahydronaphthalene.xml +225 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/tricaprin.xml +111 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/tricaprylin.xml +111 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/trichloroacetaldehyde.xml +192 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/trichloroacetyl chloride.xml +183 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/trichloroethylene.xml +225 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/tridecanal.xml +200 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/triethanolamine.xml +227 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/triethylamine.xml +214 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/triethylene glycol dimethyl ether.xml +201 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/triethylene glycol.xml +233 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/trilaurin.xml +111 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/trilenollenin.xml +115 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/trilinolein.xml +115 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/trimethylamine.xml +221 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/trimyristin.xml +111 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/triolein.xml +115 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/tripalmitin.xml +111 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/tripropylene glycol.xml +60 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/tristearin.xml +105 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/undecanal.xml +200 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/vinyl acetate.xml +216 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/vinyl chloride.xml +214 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/vinylacetylene.xml +207 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/water.xml +229 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/chemsep/xenon.xml +191 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/data/coolprop/test_regressed.json +0 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/helmholtz.py +9 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/humid_air.py +13 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/milk.py +13 -0
- ahuora_compounds-0.0.31/ahuora_compounds/loaders/reaction.py +31 -0
- ahuora_compounds-0.0.31/ahuora_compounds/tests/__init__.py +0 -0
- ahuora_compounds-0.0.31/ahuora_compounds/tests/create_benzene_test.py +7 -0
- ahuora_compounds-0.0.31/ahuora_compounds/tests/load_compounddb_test.py +11 -0
- ahuora_compounds-0.0.31/ahuora_compounds/tests/test_get_supported.py +17 -0
- ahuora_compounds-0.0.31/ahuora_compounds/tests/test_milk_loading.py +7 -0
- ahuora_compounds-0.0.31/ahuora_compounds/tests/test_search.py +14 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/__init__.py +0 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/base/__init__.py +0 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/base/state_block_constraints.py +60 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/build_package.py +48 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/combustion/__init__.py +0 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/combustion/biomass_builder.py +27 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/combustion/biomass_comb_pp.py +237 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/combustion/biomass_combustion_rp.py +131 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/combustion/tests/__init__.py +0 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/combustion/tests/test_biomass.py +227 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/helmholtz/__init__.py +0 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/helmholtz/helmholtz_builder.py +30 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/helmholtz/helmholtz_extended.py +141 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/helmholtz/parameters/__init__.py +13 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/helmholtz/parameters/ammonia.json +251 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/helmholtz/parameters/ammonia_expressions_eos.nl +3827 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/helmholtz/parameters/ammonia_expressions_st.nl +73 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/helmholtz/parameters/ammonia_parameters.json +54 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/helmholtz/parameters/co2.json +308 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/helmholtz/parameters/co2.py +128 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/helmholtz/parameters/co2_expressions_eos.nl +4718 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/helmholtz/parameters/co2_expressions_st.nl +45 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/helmholtz/parameters/co2_expressions_tcx.nl +146 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/helmholtz/parameters/co2_expressions_visc.nl +114 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/helmholtz/parameters/co2_parameters.json +71 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/helmholtz/parameters/h2o.json +368 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/helmholtz/parameters/h2o.py +221 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/helmholtz/parameters/h2o_expressions_eos.nl +6478 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/helmholtz/parameters/h2o_expressions_st.nl +73 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/helmholtz/parameters/h2o_expressions_tcx.nl +589 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/helmholtz/parameters/h2o_expressions_visc.nl +191 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/helmholtz/parameters/h2o_parameters.json +71 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/helmholtz/parameters/i-butane.json +229 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/helmholtz/parameters/i-butane.py +44 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/helmholtz/parameters/i-butane_expressions_eos.nl +2729 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/helmholtz/parameters/i-butane_expressions_st.nl +73 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/helmholtz/parameters/i-butane_parameters.json +57 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/helmholtz/parameters/n-butane.json +227 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/helmholtz/parameters/n-butane.py +44 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/helmholtz/parameters/n-butane_expressions_eos.nl +2729 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/helmholtz/parameters/n-butane_expressions_st.nl +45 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/helmholtz/parameters/n-butane_parameters.json +57 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/helmholtz/parameters/propane.json +230 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/helmholtz/parameters/propane.py +202 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/helmholtz/parameters/propane_expressions_eos.nl +2822 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/helmholtz/parameters/propane_expressions_st.nl +73 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/helmholtz/parameters/propane_expressions_tcx.nl +555 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/helmholtz/parameters/propane_expressions_visc.nl +320 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/helmholtz/parameters/propane_parameters.json +71 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/helmholtz/parameters/water.json +368 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/helmholtz/parameters/water.py +221 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/helmholtz/parameters/water_expressions_eos.nl +6478 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/helmholtz/parameters/water_expressions_st.nl +73 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/helmholtz/parameters/water_expressions_tcx.nl +589 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/helmholtz/parameters/water_expressions_visc.nl +191 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/helmholtz/parameters/water_parameters.json +71 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/helmholtz/tests/__init__.py +0 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/helmholtz/tests/test_helmholtz.py +97 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/helmholtz/tests/test_state_definitions.py +108 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/humid_air/HumidAirSurrogate.py +535 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/humid_air/__init__.py +1 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/humid_air/humid_air_builder.py +11 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/humid_air/pysmo_humid_air.json +1 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/humid_air/tests/test.py +32 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/humid_air/tests/test_humid_air.py +40 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/milk/__init__.py +1 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/milk/milk_builder.py +12 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/milk/milk_modular.py +202 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/milk/tests/test_milk.py +117 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/modular/__init__.py +0 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/modular/builder/__init__.py +0 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/modular/builder/base_parser.py +21 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/modular/builder/common_parsers.py +303 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/modular/builder/data/README.txt +1 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/modular/builder/data/chem_sep.py +345 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/modular/builder/data/pr.dat +307 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/modular/modular_extended.py +519 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/modular/template_builder.py +46 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/modular/templates/__init__.py +0 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/modular/templates/pengrobinson.py +27 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/modular/templates/templates.py +22 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/modular/tests/__init__.py +0 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/modular/tests/test_asu_pr.py +222 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/modular/tests/test_bt_pr.py +457 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/modular/tests/test_compressor_pr.py +78 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/modular/tests/test_hc_pr.py +360 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/modular/tests/test_heat_exchanger_pr.py +104 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/modular/tests/test_heater_pr.py +83 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/modular/tests/test_mixer_bt_pr.py +78 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/modular/tests/test_pump_bt_pr.py +42 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/modular/tests/test_sb_constraints.py +195 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/modular/tests/test_separator_H20_C02_pr.py +84 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/modular/tests/test_state_bounds.py +76 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/types.py +4 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/utils/__init__.py +0 -0
- ahuora_compounds-0.0.31/ahuora_property_packages/utils/fix_state_vars.py +97 -0
- ahuora_compounds-0.0.31/package-lock.json +6 -0
- ahuora_compounds-0.0.31/package.json +1 -0
- ahuora_compounds-0.0.31/pyproject.toml +46 -0
- ahuora_compounds-0.0.31/uv.lock +2082 -0
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
name: "Publish"
|
|
2
|
+
# This workflow will run whenever a pull request to main is merged.
|
|
3
|
+
# It will bump the version number using hatch, commit the change,
|
|
4
|
+
# and publish the package to PyPI.
|
|
5
|
+
on:
|
|
6
|
+
push:
|
|
7
|
+
branches: ["main"]
|
|
8
|
+
# This won't run when the version is bumped, because
|
|
9
|
+
# github actions doesn't trigger on pushes from other actions by default
|
|
10
|
+
|
|
11
|
+
jobs:
|
|
12
|
+
run:
|
|
13
|
+
runs-on: ubuntu-latest
|
|
14
|
+
environment:
|
|
15
|
+
name: pypi # Pypi uses trusted environements and is set up to trust the pypi environment.
|
|
16
|
+
permissions:
|
|
17
|
+
id-token: write
|
|
18
|
+
contents: write
|
|
19
|
+
steps:
|
|
20
|
+
- name: Checkout
|
|
21
|
+
uses: actions/checkout@v6
|
|
22
|
+
- name: Install uv
|
|
23
|
+
uses: astral-sh/setup-uv@v7
|
|
24
|
+
- name: Install Python 3.14
|
|
25
|
+
run: uv python install 3.14
|
|
26
|
+
- name: Bump version
|
|
27
|
+
run: uv run hatch version patch
|
|
28
|
+
- name: Commit & Push changes
|
|
29
|
+
uses: actions-js/push@master
|
|
30
|
+
with:
|
|
31
|
+
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
32
|
+
message: "Bump version"
|
|
33
|
+
- name: Build package
|
|
34
|
+
run: uv build
|
|
35
|
+
- name: Publish
|
|
36
|
+
run: uv publish
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
# This workflow will install Python dependencies, run tests and lint with a single version of Python
|
|
2
|
+
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
|
|
3
|
+
|
|
4
|
+
name: Python application
|
|
5
|
+
|
|
6
|
+
on:
|
|
7
|
+
push:
|
|
8
|
+
branches: [ "*" ]
|
|
9
|
+
|
|
10
|
+
permissions:
|
|
11
|
+
contents: read
|
|
12
|
+
|
|
13
|
+
jobs:
|
|
14
|
+
build:
|
|
15
|
+
|
|
16
|
+
runs-on: ubuntu-latest
|
|
17
|
+
|
|
18
|
+
steps:
|
|
19
|
+
- uses: actions/checkout@v4
|
|
20
|
+
- name: Set up Python 3.10
|
|
21
|
+
uses: actions/setup-python@v3
|
|
22
|
+
with:
|
|
23
|
+
python-version: "3.10"
|
|
24
|
+
- name: Install uv
|
|
25
|
+
uses: astral-sh/setup-uv@v7
|
|
26
|
+
- name: Install idaes dependencies
|
|
27
|
+
run: |
|
|
28
|
+
sudo apt-get install liblapack3 liblapack-dev libgfortran5 libgomp1 # shared libraries for ipopt
|
|
29
|
+
uv sync --all-extras
|
|
30
|
+
uv run idaes get-extensions --distro ubuntu2204
|
|
31
|
+
uv tool install ruff
|
|
32
|
+
- name: Lint with ruff
|
|
33
|
+
run: |
|
|
34
|
+
ruff check
|
|
35
|
+
- name: Test with pytest
|
|
36
|
+
run: |
|
|
37
|
+
uv run pytest
|
|
@@ -0,0 +1,162 @@
|
|
|
1
|
+
# Byte-compiled / optimized / DLL files
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[cod]
|
|
4
|
+
*$py.class
|
|
5
|
+
|
|
6
|
+
# C extensions
|
|
7
|
+
*.so
|
|
8
|
+
|
|
9
|
+
# Distribution / packaging
|
|
10
|
+
.Python
|
|
11
|
+
build/
|
|
12
|
+
develop-eggs/
|
|
13
|
+
dist/
|
|
14
|
+
downloads/
|
|
15
|
+
eggs/
|
|
16
|
+
.eggs/
|
|
17
|
+
lib/
|
|
18
|
+
lib64/
|
|
19
|
+
parts/
|
|
20
|
+
sdist/
|
|
21
|
+
var/
|
|
22
|
+
wheels/
|
|
23
|
+
share/python-wheels/
|
|
24
|
+
*.egg-info/
|
|
25
|
+
.installed.cfg
|
|
26
|
+
*.egg
|
|
27
|
+
MANIFEST
|
|
28
|
+
|
|
29
|
+
# PyInstaller
|
|
30
|
+
# Usually these files are written by a python script from a template
|
|
31
|
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
|
32
|
+
*.manifest
|
|
33
|
+
*.spec
|
|
34
|
+
|
|
35
|
+
# Installer logs
|
|
36
|
+
pip-log.txt
|
|
37
|
+
pip-delete-this-directory.txt
|
|
38
|
+
|
|
39
|
+
# Unit test / coverage reports
|
|
40
|
+
htmlcov/
|
|
41
|
+
.tox/
|
|
42
|
+
.nox/
|
|
43
|
+
.coverage
|
|
44
|
+
.coverage.*
|
|
45
|
+
.cache
|
|
46
|
+
nosetests.xml
|
|
47
|
+
coverage.xml
|
|
48
|
+
*.cover
|
|
49
|
+
*.py,cover
|
|
50
|
+
.hypothesis/
|
|
51
|
+
.pytest_cache/
|
|
52
|
+
cover/
|
|
53
|
+
|
|
54
|
+
# Translations
|
|
55
|
+
*.mo
|
|
56
|
+
*.pot
|
|
57
|
+
|
|
58
|
+
# Django stuff:
|
|
59
|
+
*.log
|
|
60
|
+
local_settings.py
|
|
61
|
+
db.sqlite3
|
|
62
|
+
db.sqlite3-journal
|
|
63
|
+
|
|
64
|
+
# Flask stuff:
|
|
65
|
+
instance/
|
|
66
|
+
.webassets-cache
|
|
67
|
+
|
|
68
|
+
# Scrapy stuff:
|
|
69
|
+
.scrapy
|
|
70
|
+
|
|
71
|
+
# Sphinx documentation
|
|
72
|
+
docs/_build/
|
|
73
|
+
|
|
74
|
+
# PyBuilder
|
|
75
|
+
.pybuilder/
|
|
76
|
+
target/
|
|
77
|
+
|
|
78
|
+
# Jupyter Notebook
|
|
79
|
+
.ipynb_checkpoints
|
|
80
|
+
|
|
81
|
+
# IPython
|
|
82
|
+
profile_default/
|
|
83
|
+
ipython_config.py
|
|
84
|
+
|
|
85
|
+
# pyenv
|
|
86
|
+
# For a library or package, you might want to ignore these files since the code is
|
|
87
|
+
# intended to run in multiple environments; otherwise, check them in:
|
|
88
|
+
# .python-version
|
|
89
|
+
|
|
90
|
+
# pipenv
|
|
91
|
+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
|
92
|
+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
|
93
|
+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
|
94
|
+
# install all needed dependencies.
|
|
95
|
+
#Pipfile.lock
|
|
96
|
+
|
|
97
|
+
# poetry
|
|
98
|
+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
|
|
99
|
+
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
|
100
|
+
# commonly ignored for libraries.
|
|
101
|
+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
|
|
102
|
+
#poetry.lock
|
|
103
|
+
|
|
104
|
+
# pdm
|
|
105
|
+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
|
|
106
|
+
#pdm.lock
|
|
107
|
+
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
|
|
108
|
+
# in version control.
|
|
109
|
+
# https://pdm.fming.dev/latest/usage/project/#working-with-version-control
|
|
110
|
+
.pdm.toml
|
|
111
|
+
.pdm-python
|
|
112
|
+
.pdm-build/
|
|
113
|
+
|
|
114
|
+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
|
|
115
|
+
__pypackages__/
|
|
116
|
+
|
|
117
|
+
# Celery stuff
|
|
118
|
+
celerybeat-schedule
|
|
119
|
+
celerybeat.pid
|
|
120
|
+
|
|
121
|
+
# SageMath parsed files
|
|
122
|
+
*.sage.py
|
|
123
|
+
|
|
124
|
+
# Environments
|
|
125
|
+
.env
|
|
126
|
+
.venv
|
|
127
|
+
env/
|
|
128
|
+
venv/
|
|
129
|
+
ENV/
|
|
130
|
+
env.bak/
|
|
131
|
+
venv.bak/
|
|
132
|
+
|
|
133
|
+
# Spyder project settings
|
|
134
|
+
.spyderproject
|
|
135
|
+
.spyproject
|
|
136
|
+
|
|
137
|
+
# Rope project settings
|
|
138
|
+
.ropeproject
|
|
139
|
+
|
|
140
|
+
# mkdocs documentation
|
|
141
|
+
/site
|
|
142
|
+
|
|
143
|
+
# mypy
|
|
144
|
+
.mypy_cache/
|
|
145
|
+
.dmypy.json
|
|
146
|
+
dmypy.json
|
|
147
|
+
|
|
148
|
+
# Pyre type checker
|
|
149
|
+
.pyre/
|
|
150
|
+
|
|
151
|
+
# pytype static type analyzer
|
|
152
|
+
.pytype/
|
|
153
|
+
|
|
154
|
+
# Cython debug symbols
|
|
155
|
+
cython_debug/
|
|
156
|
+
|
|
157
|
+
# PyCharm
|
|
158
|
+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
|
|
159
|
+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
|
|
160
|
+
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
|
161
|
+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
|
162
|
+
.idea/
|
|
@@ -0,0 +1,193 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: ahuora-compounds
|
|
3
|
+
Version: 0.0.31
|
|
4
|
+
Summary: Package for compounds and property packages
|
|
5
|
+
Project-URL: Homepage, https://ahuora.org.nz
|
|
6
|
+
Author-email: Example Author <author@example.com>
|
|
7
|
+
Classifier: Operating System :: OS Independent
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Requires-Python: >=3.10
|
|
10
|
+
Requires-Dist: pydantic
|
|
11
|
+
Requires-Dist: typing-validation
|
|
12
|
+
Provides-Extra: ahuora-property-packages
|
|
13
|
+
Requires-Dist: idaes-pse; extra == 'ahuora-property-packages'
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
|
|
16
|
+
## About
|
|
17
|
+
|
|
18
|
+
This repository is split into two main tools: the compound database and property package builder.
|
|
19
|
+
|
|
20
|
+
## Installation
|
|
21
|
+
|
|
22
|
+
To install this:
|
|
23
|
+
|
|
24
|
+
```sh
|
|
25
|
+
pip install ahuora-compounds
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
To install the development version, after cloning this repo:
|
|
29
|
+
|
|
30
|
+
```sh
|
|
31
|
+
pip install -e .
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
To use
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
## Compound Database
|
|
39
|
+
|
|
40
|
+
### Usage
|
|
41
|
+
|
|
42
|
+
#### Property Packages
|
|
43
|
+
|
|
44
|
+
```python
|
|
45
|
+
from ahuora_property_packages.build_package import build_package
|
|
46
|
+
build_package("helmholtz",["h2o"],["vap","liq"])
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
#### Compounds
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
```python
|
|
53
|
+
from ahuora_compounds.CompoundDB import db
|
|
54
|
+
db.search_compounds("ane")
|
|
55
|
+
> ["octane", "hexane", "..."]
|
|
56
|
+
|
|
57
|
+
db.get_compound_names()
|
|
58
|
+
> ["amonia", "benzene", "carbon dioxide", "..."]
|
|
59
|
+
|
|
60
|
+
db.get_compound(name)
|
|
61
|
+
> <Compound Object>
|
|
62
|
+
|
|
63
|
+
db.get_supported_packages(["benzene", "toluene", "..."])
|
|
64
|
+
> ["peng-robinson", "helmholtz"]
|
|
65
|
+
|
|
66
|
+
db.get_supported_compounds(["peng-robinson", "helmholtz"])
|
|
67
|
+
> ["benzene", "toluene", "..."]
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
### Development
|
|
71
|
+
|
|
72
|
+
```
|
|
73
|
+
|
|
74
|
+
Creating new data loader under compounds/loaders/
|
|
75
|
+
|
|
76
|
+
3 step process
|
|
77
|
+
|
|
78
|
+
1 - register package
|
|
79
|
+
2 - register compounds
|
|
80
|
+
3 - bind compounds to package
|
|
81
|
+
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
```python
|
|
85
|
+
|
|
86
|
+
# general workflow
|
|
87
|
+
|
|
88
|
+
# default property package
|
|
89
|
+
|
|
90
|
+
@loader("example_loader")
|
|
91
|
+
def load(registry):
|
|
92
|
+
|
|
93
|
+
registry.register_package(DefaultPropertyPackage("example_pp"))
|
|
94
|
+
|
|
95
|
+
registry.register_compound('compound1', "example_pp", {})
|
|
96
|
+
registry.register_compound('compound2', "example_pp", {})
|
|
97
|
+
|
|
98
|
+
registry.bind("compound1", "example_pp")
|
|
99
|
+
registry.bind("compound2", "example_pp")
|
|
100
|
+
|
|
101
|
+
# custom property package
|
|
102
|
+
|
|
103
|
+
class MilkPropertyPackage(PropertyPackage):
|
|
104
|
+
def check_supported_compound(self, compound: str, strict: bool = True) -> bool:
|
|
105
|
+
return True
|
|
106
|
+
|
|
107
|
+
@loader("example_loader")
|
|
108
|
+
def load(registry):
|
|
109
|
+
|
|
110
|
+
registry.register_package(MilkPropertyPackage("example_custom_pp"))
|
|
111
|
+
|
|
112
|
+
registry.register_compound('compound1', "example_custom_pp", {})
|
|
113
|
+
registry.register_compound('compound2', "example_custom_pp", {})
|
|
114
|
+
registry.register_compound('compound3', "example_custom_pp", {})
|
|
115
|
+
|
|
116
|
+
# Generates based on PropertyPackage check_supported_compound implementation
|
|
117
|
+
# In this case all compounds across loaders will be valid for this property package
|
|
118
|
+
registry.dynamic_bind("example_custom_pp")
|
|
119
|
+
|
|
120
|
+
```
|
|
121
|
+
|
|
122
|
+
```
|
|
123
|
+
more examples in compounds/loaders/
|
|
124
|
+
```
|
|
125
|
+
|
|
126
|
+
### Deprecated methods
|
|
127
|
+
|
|
128
|
+
#### > get_compound(name)
|
|
129
|
+
|
|
130
|
+
> [!WARNING]
|
|
131
|
+
> method is deprecated
|
|
132
|
+
|
|
133
|
+
```python
|
|
134
|
+
# example usage
|
|
135
|
+
from CompoundDB import get_compound
|
|
136
|
+
benzene = get_compound("benzene")
|
|
137
|
+
benzene["AbsEntropy"].value # "269300"
|
|
138
|
+
benzene["AbsEntropy"].unit # "J/kmol/K"
|
|
139
|
+
```
|
|
140
|
+
|
|
141
|
+
#### > get_compound_names
|
|
142
|
+
|
|
143
|
+
> [!WARNING]
|
|
144
|
+
> method is deprecated
|
|
145
|
+
|
|
146
|
+
```python
|
|
147
|
+
# example usage
|
|
148
|
+
from CompoundDB import get_compound_names
|
|
149
|
+
names = get_compound_names()
|
|
150
|
+
print(names)
|
|
151
|
+
> ["benzene", "methane", "butane", "..."]
|
|
152
|
+
```
|
|
153
|
+
|
|
154
|
+
#### > search_compounds(query)
|
|
155
|
+
|
|
156
|
+
> [!WARNING]
|
|
157
|
+
> method is deprecated
|
|
158
|
+
|
|
159
|
+
```python
|
|
160
|
+
# example usage
|
|
161
|
+
from compounds import search_compounds
|
|
162
|
+
names = search_compounds("hex")
|
|
163
|
+
print(names)
|
|
164
|
+
> ["hexane", "1-hexane", "..."]
|
|
165
|
+
```
|
|
166
|
+
|
|
167
|
+
# Property Package Builder
|
|
168
|
+
|
|
169
|
+
## Usage
|
|
170
|
+
|
|
171
|
+
```python
|
|
172
|
+
import property_packages
|
|
173
|
+
property_packages.build_package("helmholtz",["h2o"])
|
|
174
|
+
# Returns IDAES compatible ParameterBlock
|
|
175
|
+
```
|
|
176
|
+
|
|
177
|
+
## Next Steps
|
|
178
|
+
|
|
179
|
+
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
|
|
180
|
+
|
|
181
|
+
# Publishing
|
|
182
|
+
|
|
183
|
+
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.
|
|
184
|
+
|
|
185
|
+
If you want to create a minor or major version, run
|
|
186
|
+
|
|
187
|
+
|
|
188
|
+
```
|
|
189
|
+
uv run hatch version minor
|
|
190
|
+
uv run hatch version major
|
|
191
|
+
```
|
|
192
|
+
|
|
193
|
+
and that will bump the major or minor version and you can commit that.
|
|
@@ -0,0 +1,178 @@
|
|
|
1
|
+
## About
|
|
2
|
+
|
|
3
|
+
This repository is split into two main tools: the compound database and property package builder.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
To install this:
|
|
8
|
+
|
|
9
|
+
```sh
|
|
10
|
+
pip install ahuora-compounds
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
To install the development version, after cloning this repo:
|
|
14
|
+
|
|
15
|
+
```sh
|
|
16
|
+
pip install -e .
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
To use
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
## Compound Database
|
|
24
|
+
|
|
25
|
+
### Usage
|
|
26
|
+
|
|
27
|
+
#### Property Packages
|
|
28
|
+
|
|
29
|
+
```python
|
|
30
|
+
from ahuora_property_packages.build_package import build_package
|
|
31
|
+
build_package("helmholtz",["h2o"],["vap","liq"])
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
#### Compounds
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
```python
|
|
38
|
+
from ahuora_compounds.CompoundDB import db
|
|
39
|
+
db.search_compounds("ane")
|
|
40
|
+
> ["octane", "hexane", "..."]
|
|
41
|
+
|
|
42
|
+
db.get_compound_names()
|
|
43
|
+
> ["amonia", "benzene", "carbon dioxide", "..."]
|
|
44
|
+
|
|
45
|
+
db.get_compound(name)
|
|
46
|
+
> <Compound Object>
|
|
47
|
+
|
|
48
|
+
db.get_supported_packages(["benzene", "toluene", "..."])
|
|
49
|
+
> ["peng-robinson", "helmholtz"]
|
|
50
|
+
|
|
51
|
+
db.get_supported_compounds(["peng-robinson", "helmholtz"])
|
|
52
|
+
> ["benzene", "toluene", "..."]
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
### Development
|
|
56
|
+
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
Creating new data loader under compounds/loaders/
|
|
60
|
+
|
|
61
|
+
3 step process
|
|
62
|
+
|
|
63
|
+
1 - register package
|
|
64
|
+
2 - register compounds
|
|
65
|
+
3 - bind compounds to package
|
|
66
|
+
|
|
67
|
+
```
|
|
68
|
+
|
|
69
|
+
```python
|
|
70
|
+
|
|
71
|
+
# general workflow
|
|
72
|
+
|
|
73
|
+
# default property package
|
|
74
|
+
|
|
75
|
+
@loader("example_loader")
|
|
76
|
+
def load(registry):
|
|
77
|
+
|
|
78
|
+
registry.register_package(DefaultPropertyPackage("example_pp"))
|
|
79
|
+
|
|
80
|
+
registry.register_compound('compound1', "example_pp", {})
|
|
81
|
+
registry.register_compound('compound2', "example_pp", {})
|
|
82
|
+
|
|
83
|
+
registry.bind("compound1", "example_pp")
|
|
84
|
+
registry.bind("compound2", "example_pp")
|
|
85
|
+
|
|
86
|
+
# custom property package
|
|
87
|
+
|
|
88
|
+
class MilkPropertyPackage(PropertyPackage):
|
|
89
|
+
def check_supported_compound(self, compound: str, strict: bool = True) -> bool:
|
|
90
|
+
return True
|
|
91
|
+
|
|
92
|
+
@loader("example_loader")
|
|
93
|
+
def load(registry):
|
|
94
|
+
|
|
95
|
+
registry.register_package(MilkPropertyPackage("example_custom_pp"))
|
|
96
|
+
|
|
97
|
+
registry.register_compound('compound1', "example_custom_pp", {})
|
|
98
|
+
registry.register_compound('compound2', "example_custom_pp", {})
|
|
99
|
+
registry.register_compound('compound3', "example_custom_pp", {})
|
|
100
|
+
|
|
101
|
+
# Generates based on PropertyPackage check_supported_compound implementation
|
|
102
|
+
# In this case all compounds across loaders will be valid for this property package
|
|
103
|
+
registry.dynamic_bind("example_custom_pp")
|
|
104
|
+
|
|
105
|
+
```
|
|
106
|
+
|
|
107
|
+
```
|
|
108
|
+
more examples in compounds/loaders/
|
|
109
|
+
```
|
|
110
|
+
|
|
111
|
+
### Deprecated methods
|
|
112
|
+
|
|
113
|
+
#### > get_compound(name)
|
|
114
|
+
|
|
115
|
+
> [!WARNING]
|
|
116
|
+
> method is deprecated
|
|
117
|
+
|
|
118
|
+
```python
|
|
119
|
+
# example usage
|
|
120
|
+
from CompoundDB import get_compound
|
|
121
|
+
benzene = get_compound("benzene")
|
|
122
|
+
benzene["AbsEntropy"].value # "269300"
|
|
123
|
+
benzene["AbsEntropy"].unit # "J/kmol/K"
|
|
124
|
+
```
|
|
125
|
+
|
|
126
|
+
#### > get_compound_names
|
|
127
|
+
|
|
128
|
+
> [!WARNING]
|
|
129
|
+
> method is deprecated
|
|
130
|
+
|
|
131
|
+
```python
|
|
132
|
+
# example usage
|
|
133
|
+
from CompoundDB import get_compound_names
|
|
134
|
+
names = get_compound_names()
|
|
135
|
+
print(names)
|
|
136
|
+
> ["benzene", "methane", "butane", "..."]
|
|
137
|
+
```
|
|
138
|
+
|
|
139
|
+
#### > search_compounds(query)
|
|
140
|
+
|
|
141
|
+
> [!WARNING]
|
|
142
|
+
> method is deprecated
|
|
143
|
+
|
|
144
|
+
```python
|
|
145
|
+
# example usage
|
|
146
|
+
from compounds import search_compounds
|
|
147
|
+
names = search_compounds("hex")
|
|
148
|
+
print(names)
|
|
149
|
+
> ["hexane", "1-hexane", "..."]
|
|
150
|
+
```
|
|
151
|
+
|
|
152
|
+
# Property Package Builder
|
|
153
|
+
|
|
154
|
+
## Usage
|
|
155
|
+
|
|
156
|
+
```python
|
|
157
|
+
import property_packages
|
|
158
|
+
property_packages.build_package("helmholtz",["h2o"])
|
|
159
|
+
# Returns IDAES compatible ParameterBlock
|
|
160
|
+
```
|
|
161
|
+
|
|
162
|
+
## Next Steps
|
|
163
|
+
|
|
164
|
+
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
|
|
165
|
+
|
|
166
|
+
# Publishing
|
|
167
|
+
|
|
168
|
+
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.
|
|
169
|
+
|
|
170
|
+
If you want to create a minor or major version, run
|
|
171
|
+
|
|
172
|
+
|
|
173
|
+
```
|
|
174
|
+
uv run hatch version minor
|
|
175
|
+
uv run hatch version major
|
|
176
|
+
```
|
|
177
|
+
|
|
178
|
+
and that will bump the major or minor version and you can commit that.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.0.31"
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
from typing import Dict, Set
|
|
2
|
+
|
|
3
|
+
class Compound:
|
|
4
|
+
def __init__(self, name: str):
|
|
5
|
+
self.__name = name
|
|
6
|
+
self.__sources: Dict[str, dict] = {}
|
|
7
|
+
self.__packages: Set[str] = set() # supported packages
|
|
8
|
+
|
|
9
|
+
# Read only properties
|
|
10
|
+
@property
|
|
11
|
+
def name(self):
|
|
12
|
+
return self.__name
|
|
13
|
+
|
|
14
|
+
@property
|
|
15
|
+
def sources(self):
|
|
16
|
+
return self.__sources
|
|
17
|
+
|
|
18
|
+
@property
|
|
19
|
+
def packages(self):
|
|
20
|
+
return self.__packages
|
|
21
|
+
|
|
22
|
+
def get_source(self, source_name: str) -> dict:
|
|
23
|
+
"""
|
|
24
|
+
Get the data from a specific source.
|
|
25
|
+
|
|
26
|
+
Args:
|
|
27
|
+
source_name (str): Name of the source to retrieve data from.
|
|
28
|
+
|
|
29
|
+
Returns:
|
|
30
|
+
dict: Data associated with the source if it exists, otherwise None.
|
|
31
|
+
"""
|
|
32
|
+
return self.sources.get(source_name, None)
|
|
33
|
+
|
|
34
|
+
def add_source(self, source_name: str, data: dict):
|
|
35
|
+
if source_name in self.sources:
|
|
36
|
+
raise ValueError(f"Source {source_name} already exists for compound {self.name}.")
|
|
37
|
+
self.sources[source_name] = data
|
|
38
|
+
|
|
39
|
+
def add_package(self, package_name: str):
|
|
40
|
+
self.packages.add(package_name)
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
from ahuora_compounds import deprecated
|
|
2
|
+
from ahuora_compounds.CompoundRegistry import CompoundRegistry
|
|
3
|
+
from ahuora_compounds.Compound import Compound
|
|
4
|
+
from ahuora_compounds.RegistrySearch import RegistrySearch
|
|
5
|
+
|
|
6
|
+
__author__ = "Mahaki Leach"
|
|
7
|
+
|
|
8
|
+
# Main registry instance
|
|
9
|
+
_registry = CompoundRegistry()
|
|
10
|
+
|
|
11
|
+
# Frontend registry view
|
|
12
|
+
db = RegistrySearch(_registry)
|
|
13
|
+
|
|
14
|
+
_registry._discover_loaders()
|
|
15
|
+
|
|
16
|
+
@deprecated("get_compound")
|
|
17
|
+
def get_compound(name: str) -> Compound | None:
|
|
18
|
+
"""
|
|
19
|
+
Get a compound by its name.
|
|
20
|
+
|
|
21
|
+
Args:
|
|
22
|
+
name (str): Name of the compound to retrieve.
|
|
23
|
+
|
|
24
|
+
Returns:
|
|
25
|
+
compound (dict): the compound chem-sep source data if found, otherwise None.
|
|
26
|
+
"""
|
|
27
|
+
return db.get_compound(name).get_source("chemsep")
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
@deprecated("get_compound_names")
|
|
31
|
+
def get_compound_names() -> list:
|
|
32
|
+
"""
|
|
33
|
+
Returns a list of all compound names.
|
|
34
|
+
|
|
35
|
+
Returns:
|
|
36
|
+
list: List of compound names.
|
|
37
|
+
"""
|
|
38
|
+
return db.get_compound_names()
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
@deprecated("search_compounds")
|
|
42
|
+
def search_compounds(query: str) -> list:
|
|
43
|
+
"""
|
|
44
|
+
Searches for compounds based on the query.
|
|
45
|
+
|
|
46
|
+
Args:
|
|
47
|
+
query (str): The search query.
|
|
48
|
+
|
|
49
|
+
Returns:
|
|
50
|
+
list: List of compound names that match the query.
|
|
51
|
+
"""
|
|
52
|
+
return db.search_compounds(query)
|
|
53
|
+
|
|
54
|
+
# Restricting what can be imported from this module
|
|
55
|
+
__all__ = ["db", "get_compound", "get_compound_names", "search_compounds"]
|