Metadata-Version: 2.1
Name: ccp-performance
Version: 0.1.1
Summary: Centrifugal Compressor Performance calculation.
Home-page: UNKNOWN
Author: Raphael Timbó
Author-email: raphaelts@gmail.com
License: MIT
Description: 
        # <img src="https://ccp-centrifugal-compressor-performance.readthedocs.io/en/latest/_static/ccp.png" alt="drawing" width="40"/> 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.
        
        Documentation can be found [here](https://ccp-centrifugal-compressor-performance.readthedocs.io/en/latest/)
        
        ```python
        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.79585,
            "R134a": 0.16751,
            "Nitrogen": 0.02903,
            "Oxygen": 0.00761,
        }
        
        # 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, ...])
        ```
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: CPython
Description-Content-Type: text/markdown
Provides-Extra: dev
