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.define(fluid=fluid, p=ps, T=Ts)
disch0 = ccp.State.define(fluid=fluid, p=Q_(7.255, 'bar'), T=391.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...
# Create an impeller with those points:
imp = Impeller([point0, point1, ...])
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.1.15.tar.gz
(49.7 kB
view details)
Built Distribution
File details
Details for the file ccp-performance-0.1.15.tar.gz
.
File metadata
- Download URL: ccp-performance-0.1.15.tar.gz
- Upload date:
- Size: 49.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.9.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f64b349eb8efcb34ed5242b31de0a305f0fb1ea9173fd4cc3db46763ef5a7988 |
|
MD5 | 0fdb851c0e5980a638863eebf9a54856 |
|
BLAKE2b-256 | 5969ffa6adbce139c8976b1ef7bd2f51dc736aabe53398c3bf8c044d9f5ccef1 |
File details
Details for the file ccp_performance-0.1.15-py3-none-any.whl
.
File metadata
- Download URL: ccp_performance-0.1.15-py3-none-any.whl
- Upload date:
- Size: 57.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.9.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c0229b3fabd340450cd5314ca12a7ec38021575965e4160c34fe8f387bd31fe0 |
|
MD5 | b82792ffa5a6132955c5d89215f20bb7 |
|
BLAKE2b-256 | 4a2111ff3924c76d431eda81bec7539afd36ae4f48e383d34aff2f1ad472ab79 |