Centrifugal Compressor Performance calculation.
Project description
Centrifugal Compressor Performance
ccp is a python library for calculation of centrifugal compressor performance. It is based on the book of [Ludtke04] and uses CoolProp REFPROP for the gas properties calculations.
Online documentation is available at here.
import ccp
# ccp uses pint to handle units. Q_ is a pint quantity.
# If a pint quantity is not provided, SI units are assumed.
Q_ = ccp.Q_
ps = Q_(3, 'bar')
Ts = 300
# Define the fluid as a dictionary:
fluid = {
"CarbonDioxide": 0.8,
"Nitrogen": 0.2,
}
# Define suction and discharge states:
suc0 = ccp.State(fluid=fluid, p=ps, T=Ts)
disch0 = ccp.State(fluid=fluid, p=Q_(7.255, 'bar'), T=391.1)
disch1 = ccp.State(fluid=fluid, p=Q_(6.754, 'bar'), T=382.1)
# Create performance point(s):
point0 = ccp.Point(
suc=suc0,
disch=disch0,
speed=Q_(7941, 'RPM'),
flow_m=Q_(34203.6, 'kg/hr'),
b=0.0285,
D=0.365,
)
point1 = ccp.Point(
suc=suc0,
disch=disch1,
speed=Q_(7941, 'RPM'),
flow_m=Q_(36204.8, 'kg/hr'),
b=0.0285,
D=0.365,
)
# Create an impeller with those points:
imp = ccp.Impeller([point0, point1])
# Get results from the Impeller with methods such as
imp.head_plot()
imp.disch.T_plot()
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
ccp-performance-0.3.0.tar.gz
(271.7 kB
view details)
Built Distribution
File details
Details for the file ccp-performance-0.3.0.tar.gz
.
File metadata
- Download URL: ccp-performance-0.3.0.tar.gz
- Upload date:
- Size: 271.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 06df22126858cc5e6b5b36dea2a485d9416bf8023921bd6e0a67fb7f11212602 |
|
MD5 | 9c61e3fd66580fe4235fbe66b375b055 |
|
BLAKE2b-256 | 8bce82e4a72f872bac6a022225ef9c4ad470a51a7d1c42176dd05c965e908433 |
File details
Details for the file ccp_performance-0.3.0-py3-none-any.whl
.
File metadata
- Download URL: ccp_performance-0.3.0-py3-none-any.whl
- Upload date:
- Size: 6.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 060693fe36d69595958230030d5d563b1bab350e5e1d8f003c059ef2d4df9f17 |
|
MD5 | 56cb71b9348cb1e92299823f7aa44f86 |
|
BLAKE2b-256 | 0ede174fe7abceeaff9da5a604b570e151be2002b59f5d3089e194edefa2ecc9 |