Metadata-Version: 2.0
Name: engcoolprop
Version: 0.1.0
Summary: EngCoolProp is a python Engineering Units wrapper around the CoolProp project.
Home-page: http://engcoolprop.readthedocs.org/en/latest/
Author: Charlie Taylor
Author-email: cet@appliedpython.com
License: GPL-3
Download-URL: https://github.com/sonofeft/EngCoolProp
Keywords: engcoolprop setuptools development
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: End Users/Desktop
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Provides-Extra: test
Provides-Extra: dev
Requires-Dist: coolprop
Requires-Dist: future
Requires-Dist: numpy
Provides-Extra: dev
Requires-Dist: check-manifest; extra == 'dev'
Provides-Extra: test
Requires-Dist: coverage; extra == 'test'


.. image:: https://travis-ci.org/sonofeft/EngCoolProp.svg?branch=master
    :target: https://travis-ci.org/sonofeft/EngCoolProp

.. image:: https://img.shields.io/pypi/v/EngCoolProp.svg
    :target: https://pypi.python.org/pypi/engcoolprop

.. image:: https://img.shields.io/pypi/pyversions/EngCoolProp.svg
    :target: https://wiki.python.org/moin/Python2orPython3

.. image:: https://img.shields.io/pypi/l/EngCoolProp.svg
    :target: https://pypi.python.org/pypi/engcoolprop


EngCoolProp Interfaces The Coolprop Project with English Units
==============================================================

`CoolProp <http://www.coolprop.org/dev/index.html>`_ uses SI units for calculating
fluid properties. For those of us in industries that rely on English/Engineering
units, EngCoolProp provides an interface.

See the Code at: `<https://github.com/sonofeft/EngCoolProp>`_

See the Docs at: `<http://engcoolprop.readthedocs.org/en/latest/>`_

See PyPI page at:`<https://pypi.python.org/pypi/engcoolprop>`_

See the `CoolProp <http://www.coolprop.org/dev/index.html>`_ project at:
`<http://www.coolprop.org/dev/index.html>`_

EngCoolProp uses units of primarily inch, lbm, lbf, sec, BTU (some use of ft and hour).::

    The following are the default units for each property.

    T    = Temperature = degR
    Tc   = Critical Temperature = degR 
    Tnbp = Normal Boiling Point = degR
    P    = Pressure = psia
    Pc   = Critical Pressure = psia
    D    = Density = lbm/cu ft
    rho  = Density = lbm/cu inch
    Dc   = Critical Density = lbm/cu ft
    E    = Internal Energy = BTU/lbm
    H    = Enthalpy = BTU/lbm
    S    = Entropy = BTU/lbm degR
    Cv   = Heat Capacity (const. V) = BTU/lbm degR
    Cp   = Heat Capacity (const. P) = BTU/lbm degR
    g    = Ratio of Specific Heats (Cp/Cv) = (-)
    A    = Sonic Velocity = ft/sec
    V    = Viscosity = 1.0E5 * lb/ft-sec
    C    = Thermal Conductivity = BTU/ft-hr-R
    MW   = Molecular Weight = lbm/lbmmole
    Q    = Quality (fraction gas) = (-)
    Z    = Compressibility() = (-)



