coolpropEasy Examples

Thermophysical properties of fluids (refrigerants, gases, etc.)

Getting started with coolprop

Installation and basic usage of coolprop.

python
# Install: pip install coolprop
import coolprop

# Basic coolprop usage
print(f"Using coolprop")
# See documentation for detailed examples
Expected Output
# Expected output shown below
# (Run locally with: coolprop)

coolprop is a third-party package. Thermophysical properties of fluids (refrigerants, gases, etc.). Install with: pip install coolprop

Common coolprop operations

Frequently used features of coolprop.

python
# Install: pip install coolprop
import coolprop

# Common coolprop patterns
print(f"coolprop version: {coolprop.__version__}")

These are the most commonly used features of coolprop in everyday development.

Want to try these examples interactively?

Open Easy Playground