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.21.tar.gz
(320.2 kB
view details)
Built Distribution
File details
Details for the file ccp-performance-0.1.21.tar.gz
.
File metadata
- Download URL: ccp-performance-0.1.21.tar.gz
- Upload date:
- Size: 320.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 01bffd6f3b399b208445bf7e52806f9d068a4932556ce517cbd7f28662e7fa53 |
|
MD5 | 4c190316e3625d3a1652f7a533644f4a |
|
BLAKE2b-256 | a8421f0cb115fe50540715dd767ad14b21b92f41517d66789f1d2f4bacc3fbec |
File details
Details for the file ccp_performance-0.1.21-py3-none-any.whl
.
File metadata
- Download URL: ccp_performance-0.1.21-py3-none-any.whl
- Upload date:
- Size: 329.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c1d5ed71d560c974b13714b0974e5400c5b8f564f9f9362f4176f6721b00e7ba |
|
MD5 | 1aafc2777abab5aba8d06af9dc473464 |
|
BLAKE2b-256 | 67266bbd1e08460f089add6ca6fb95cbb6fe0f75cf853e3461f729b3b0ade2ab |