PyThermoDB is a lightweight and user-friendly Python package designed to provide quick access to essential thermodynamic data.
Project description
๐งช Python Thermodynamics Databook
PyThermoDB is a lightweight and user-friendly Python package designed to provide quick access to essential thermodynamic data. Whether you're a student, researcher, or engineer, this package serves as a valuable resource for retrieving thermodynamic properties, equations, and constants from your custom thermodynamic database (csv files).
โจ Key Features:
- ๐ Handbook Data: The package sources its data from well-established thermodynamics handbooks, ensuring accuracy and reliability (updated regularly).
- ๐ง Custom Thermodynamic Database: It is possible to builtin your own thermodynamic databook for your project.
- ๐งฉ Minimal Dependencies: Built with simplicity in mind, the package has minimal external dependencies, making it easy to integrate into your projects.
- ๐ Open Source: Feel free to explore, contribute, and customize the package according to your needs.
๐ PyThermoDB Functional Workflow
PyThermoDB is organized around a simple workflow: initialize a reference, inspect databooks and tables, build typed thermodynamic objects, package them into a reusable ThermoDB, and reload the saved ThermoDB in applications.
๐ 1. Reference and table discovery
flowchart LR
A["Built-in references<br/>or custom YAML/CSV"] --> B["ptdb.init()"]
B --> C["list_databooks()"]
C --> D["list_tables()"]
D --> E["table_info()"]
E --> F["data_load() / equation_load() / constants_load()"]
This first layer helps users explore the available thermodynamic source data before building objects. It supports built-in references and custom project references.
๐งฉ 2. Core object builders
flowchart LR
A["Reference table"] --> B{"Table type"}
B --> C["DATA table"]
B --> D["EQUATION table"]
B --> E["MATRIX data table"]
B --> F["MATRIX equation table"]
B --> G["CONSTANTS table"]
C --> H["TableData"]
D --> I["TableEquation"]
E --> J["TableMatrixData"]
F --> K["TableMatrixEquation"]
G --> L["TableConstants"]
The pyThermoDB/core folder defines the typed objects used by the package:
- ๐
TableData: component property records andget_property(). - ๐งฎ
TableEquation: component equations withcal(), derivatives, integrals, and custom integrals. - ๐งฑ
TableMatrixData: matrix-style data for mixtures and pairwise parameters. - ๐ข
TableMatrixEquation: matrix equations for mixture calculations. - ๐งช
TableConstants: table-wide constants andget_constant().
๐๏ธ 3. Build ThermoDB packages
flowchart LR
A["TableData"] --> F["CompBuilder"]
B["TableEquation"] --> F
C["TableMatrixData"] --> F
D["TableMatrixEquation"] --> F
E["TableConstants"] --> F
F --> G["add_data()"]
G --> H["build()"]
H --> I["save(.pkl)"]
CompBuilder packages selected properties, equations, matrix data, matrix equations, and constants into one reusable ThermoDB artifact.
๐ 4. Load and use in applications
flowchart LR
A["Saved ThermoDB<br/>.pkl"] --> B["ptdb.load_thermodb()"]
B --> C["check()"]
B --> D["select()"]
B --> E["select_function()"]
B --> F["select_constant()"]
B --> G["retrieve('source | symbol')"]
D --> H["get_property()"]
E --> I["cal()"]
F --> J["get_constant()"]
After loading a ThermoDB, application code can retrieve component properties, evaluate equations, access constants, and use compact source strings such as general | MW or custom-constants | R.
๐ 5. Higher-level reference builders
flowchart LR
A["Reference config<br/>or reference YAML"] --> B{"Build target"}
B --> C["Single component"]
B --> D["Multiple components / mixtures"]
B --> E["Constants"]
C --> F["build_component_thermodb()"]
C --> G["check_and_build_component_thermodb()"]
D --> H["build_components_thermodb()"]
D --> I["build_mixture_thermodb_from_reference()"]
E --> J["build_constant_thermodb()"]
E --> K["build_constants_thermodb_from_reference()"]
F --> L["CompBuilder / saved ThermoDB"]
G --> L
H --> L
I --> L
J --> L
K --> L
These higher-level builders automate the same core workflow shown above. They are useful when users want to build complete ThermoDB files directly from reference configuration instead of manually loading each table.
๐ค PyThermoAI
PyThermoAI is an intelligent Python package that revolutionizes thermodynamic data acquisition and processing by leveraging advanced AI agents and web search capabilities.
Built with LangGraph for creating sophisticated multi-agent workflows, PyThermoAI employs intelligent agents to collect thermodynamic data and equations. The system utilizes Tavily as its primary web search engine, enabling agents to efficiently discover and retrieve thermodynamic data from authoritative online sources. These agents can search for thermodynamic data and automatically convert the results into PyThermoDB reference formats, streamlining the process of building and updating your custom thermodynamic database.
๐ Interactive Notebooks with Binder
Try PyThermoDB directly in your browser without any installation using Binder. You can find examples regarding the following contents:
- Import Libraries: Import the necessary libraries including pyThermoDB and rich.
- Check Versions: Print the version of pyThermoDB.
- App Initialization: Initialize the pyThermoDB application.
- Databook List: List all available databooks.
- Table List: List all tables in a specific databook.
- Table Info: Get information about a specific table.
- Load Tables: Load and display data and equations from tables.
- Check Component Availability: Check if a component is available in a specific table.
- Build Data: Build data for a specific component from a table.
- Build Equation: Build an equation for a specific component from a table.
Click on any of the following links to launch interactive Jupyter notebooks:
๐ ๏ธ Examples
The repository includes an examples folder with various sample applications and use cases to help you get started with PyThermoDB. These examples demonstrate different methods and features of the package, including:
- ๐งฐ Basic Usage Examples: Learn how to use PyThermoDB for common tasks.
- ๐ Custom Thermodynamic Databases: Work with your own thermodynamic data.
- ๐ Data Manipulation: Load, search, and manipulate thermodynamic data.
- ๐ Equations and Calculations: Use equations for thermodynamic calculations.
Browse through these examples to learn how to use different methods and features of PyThermoDB in your own projects.
๐ฌ Google Colab Examples
Try PyThermoDB directly in your browser with these interactive examples:
๐ฅ Installation
Install PyThermoDB with pip:
import pyThermoDB as ptdb
# check version
print(ptdb.__version__)
๐ ๏ธ Usage Examples
- Databook reference initialization:
# databook reference initialization
tdb = ptdb.init()
- ๐ DATABOOK LIST:
# databook
db_list = tdb.list_databooks()
print(db_list)
- ๐ TABLE LIST:
list_tables(databook_name or databook_id)
# table list
tb_lists = tdb.list_tables(1)
print(tb_lists)
- โน๏ธ TABLE INFO:
table_info(databook_name or id, table_name or id)
# display a table
tb_info = tdb.table_info(1, 2)
print(tb_info)
- ๐ LOAD TABLE DATA/EQUATION:
table_data(databook_name or id, table_name or id)
# table load
res_ = tdb.table_data(1, 2)
print(res_)
- ๐ VIEW TABLE CONTENT IN THE BROWSER
table_view(databook_name or id, table_name or id)
# install Jinja2
pip install Jinja2
# VIEW table CONTENT
tdb.table_view(1, 2)
- ๐ฅ LOAD TABLES DATA|EQUATION STRUCTURE (before building):
equation_load(databook_name or id, table_name or id)
# load equation to check
vapor_pressure_tb = tdb.equation_load(1, 4)
print(vapor_pressure_tb.eq_structure(1))
# load data to check
data_table = tdb.data_load(1, 2)
print(data_table.data_structure())
- ๐ CHECK COMPONENT AVAILABILITY IN A TABLE:
get_component_data(component name, databook_name or id, table_name or id, ...)
# check component availability in the databook and table
comp1 = "carbon Dioxide"
# method 1
# CO2_check_availability = tdb.check_component(comp1, 1, 2)
# method 2:
comp_data = tdb.get_component_data(comp1, 1, 2, dataframe=True)
print(comp_data)
- ๐๏ธ BUILD DATA OBJECT:
build_data(component name, databook_name or id, table_name or id)
# build data
CO2_data = tdb.build_data(comp1, 1, 2)
print(CO2_data.data_structure())
print(CO2_data.get_property(4))
- BUILD TABLE-WIDE CONSTANTS OBJECT:
Constants tables are not component-specific and use their own loader.
constants = tdb.constants_load('CUSTOM-REF-1', 'Custom-Constants')
print(constants.data_structure())
print(constants.get_constant('R'))
constants = tdb.build_constants('CUSTOM-REF-1', 'Custom-Constants')
- ๐ BUILD EQUATION OBJECT:
build_equation(component name, databook_name or id, table_name or id)
# build an equation
eq = tdb.build_equation(comp1, 1, 4)
print(eq.args)
res = eq.cal(T=298.15)
print(res*1e-5)
๐งฑ Build ThermoDB for Components
DataTable & EquationTable saved as an object in Carbon Dioxide.pkl
- ๐จ BUILD THERMODB:
# build a thermodb
thermo_db = ptdb.build_thermodb()
print(type(thermo_db))
# version
print(thermo_db.build_version)
# thermodb name
print(thermo_db.thermodb_name)
# * add TableData
thermo_db.add_data('general', comp1_data)
# * add TableEquation
thermo_db.add_data('heat-capacity', comp1_eq)
thermo_db.add_data('vapor-pressure', vapor_pressure_eq)
# add string
# thermo_db.add_data('dHf', {'dHf_IG': 152})
# file name
# thermodb_file_path = os.path.join(os.getcwd(), f'{comp1}')
# save
thermo_db.save(
f'{comp1}', file_path='..\\pyThermoDB\\tests')
- ๐ CHECK THERMODB:
# check all properties and functions registered
print(thermo_db.check_properties())
print(thermo_db.check_functions())
๐ Load a ThermoDB
Carbon Dioxide.pkl can be loaded as:
- ๐ค LOAD THERMODB FILE:
# ref
thermodb_file = 'Carbon Dioxide.pkl'
thermodb_path = os.path.join(os.getcwd(), thermodb_file)
print(thermodb_path)
- ๐ฅ LOAD THERMODB:
# load thermodb
CO2_thermodb = ptdb.load_thermodb(thermodb_path)
print(type(CO2_thermodb))
- โ CHECK THERMODB:
# check all properties and functions registered
print(CO2_thermodb.check())
๐งฎ Custom Integral
-
Step 1:
Modify
yml fileby addingCUSTOM-INTEGRAL. -
Step 2:
Add a name for the new integral body.
-
Step 3:
Add a list containing the integral body.
CUSTOM-INTEGRAL:
Cp/R:
- A1 = parms['a0']*args['T1']
- B1 = (parms['a1']/2)*(args['T1']**2)
- C1 = (parms['a2']/3)*(args['T1']**3)
- D1 = (parms['a3']/4)*(args['T1']**4)
- E1 = (parms['a4']/5)*(args['T1']**5)
- res1 = A1 + B1 + C1 + D1 + E1
- A2 = parms['a0']*args['T2']
- B2 = (parms['a1']/2)*(args['T2']**2)
- C2 = (parms['a2']/3)*(args['T2']**3)
- D2 = (parms['a3']/4)*(args['T2']**4)
- E2 = (parms['a4']/5)*(args['T2']**5)
- res2 = A2 + B2 + C2 + D2 + E2
- res = res2 - res1
- ๐ฌ CHECK AS:
# check custom integral
print(comp1_eq.custom_integral)
# check body
print(comp1_eq.check_custom_integral_equation_body('Cp/R'))
# Cp/R
Cp_cal_custom_integral_Cp__R = comp1_eq.cal_custom_integral(
'Cp/R', T1=298.15, T2=320)
print(Cp_cal_custom_integral_Cp__R)
๐ Custom Databook & Table
PyThermoDB allows you to define and use custom databooks and tables for your specific thermodynamic data needs. Here's how you can set up and use a custom databook and table:
- ๐ Define Custom Reference
Check csv and yml files to be familiar with the right format!
# Define custom reference
custom_ref = {
'reference': ['nrtl.yml'],
'tables': [
'Non-randomness parameters of the NRTL equation.csv',
'Interaction parameters of the NRTL equation.csv'
]
}
- ๐ List Tables in Databook
# List tables in databook
tb_lists = tdb.list_tables('NRTL', res_format='json')
print(tb_lists)
- ๐ Load Table Data
table_data(databook_name or id, table_name or id)
# Load table data
tb_data = tdb.table_data(7, 1)
print(tb_data)
- ๐๏ธ Build ThermoDB for the Custom Reference
# Build ThermoDB
thermo_db = ptdb.build_thermodb()
thermo_db.add_data('nrtl_alpha', nrtl_alpha)
thermo_db.add_data('nrtl_tau', nrtl_tau_eq)
thermo_db.save('thermodb_nrtl_0', file_path='notebooks')
๐ License
This project is licensed under the MIT License. You are free to use, modify, and distribute this software in your own applications or projects. However, if you choose to use this app in another app or software, please ensure that my name, Sina Gilassi, remains credited as the original author. This includes retaining any references to the original repository or documentation where applicable. By doing so, you help acknowledge the effort and time invested in creating this project.
The MIT License applies solely to the source code contained in this repository. This project does NOT distribute, sublicense, or grant any rights to third-party thermodynamic data. Any thermodynamic data used with this software must be obtained independently by the user from its original source and used in accordance with the applicable license or terms of use.
โ FAQ
For any question, contact me on LinkedIn
๐จโ๐ป Authors
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pythermodb-1.15.0.tar.gz.
File metadata
- Download URL: pythermodb-1.15.0.tar.gz
- Upload date:
- Size: 188.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f3c9f7e0b28f1970474bfcfdb95b0b4d33e6b77756cf77c4d5d2ac2f868dd36d
|
|
| MD5 |
83f1873a47a7c498a33a34c334a165a9
|
|
| BLAKE2b-256 |
4417fa18748f777f0e4dfc3ed25391fbbdf1966746529416ac91911db27b218f
|
File details
Details for the file pythermodb-1.15.0-py3-none-any.whl.
File metadata
- Download URL: pythermodb-1.15.0-py3-none-any.whl
- Upload date:
- Size: 218.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.7.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
31d7ef28d122b5ecaad8623560231b412764466ec92e5ed1c8ffd09969475786
|
|
| MD5 |
66397b70d6cddc3d3720fb284b5e321d
|
|
| BLAKE2b-256 |
497c4620485deed1369bb753c9ecdb40efe22f20b8fa524587edb1b270854e90
|