Skip to content

sinagilassi/PyThermoDB

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

1,687 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

๐Ÿงช Python Thermodynamics Databook

PyThermoDB

PyPI Downloads PyPI Python Version License Read the Docs

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()"]
Loading

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"]
Loading

The pyThermoDB/core folder defines the typed objects used by the package:

  • ๐Ÿ“Š TableData: component property records and get_property().
  • ๐Ÿงฎ TableEquation: component equations with cal(), derivatives, integrals, and custom integrals.
  • ๐Ÿงฑ TableMatrixData: matrix-style data for mixtures and pairwise parameters.
  • ๐Ÿ”ข TableMatrixEquation: matrix equations for mixture calculations.
  • ๐Ÿงช TableConstants: table-wide constants and get_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)"]
Loading

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()"]
Loading

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
Loading

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.

PyThermoAI Architecture

๐Ÿ““ 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:

  • ๐Ÿ” Search Database Open In Colab

  • ๐Ÿ“Š COโ‚‚ Thermodynamic Data Open In Colab

  • ๐Ÿ”Ž Check Component Availability Open In Colab

  • ๐Ÿ“˜ Basic Usage 2 Open In Colab

  • ๐Ÿ”ฐ Basic Usage 1 Open In Colab

๐Ÿ“ฅ 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 file by adding CUSTOM-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

About

Python Thermodynamics Databook to easily build and quickly access essential thermodynamic data.

Topics

Resources

License

Stars

Watchers

Forks

Sponsor this project

Contributors