proptables
is a Python library designed to provide quick access to property tables for R134a and water, primarily aimed at engineers and researchers needing fluid property data in thermodynamic calculations.
- Provides easy-to-access property data for R134a and water.
- Useful for thermodynamics, refrigeration, and heating applications.
- Simplifies accessing and calculating fluid properties programmatically.
pip install proptables
from proptables import R134a,water
Import the library
from proptables import R134a, water
data = r134a.temperature(Temperature=None,Pressure=None,
Enthalpy=None,Entropy=None,
specificvolume=None,Superheated=None,Compressed=None) # Mention the values as needed to obtain the dataframe with all details
data = water.enthalpy(Temperature=None,Pressure=None,
Enthalpy=None,Entropy=None,
specificvolume=None,Superheated=None,Compressed=None)