├── .gitignore ├── .travis.yml ├── CoolPlot ├── Calc │ └── __init__.py ├── Plot │ ├── Common.py │ ├── ConsistencyPlots.py │ ├── Plots.py │ ├── PsychChart.py │ ├── PsychScript.py │ ├── SimpleCycles.py │ ├── SimpleCyclesCompression.py │ ├── SimpleCyclesExpansion.py │ ├── Tests.py │ ├── __init__.py │ ├── psy.py │ └── psyrc ├── Util │ ├── EnhancedState.py │ ├── Quantities.py │ ├── Units.py │ └── __init__.py ├── __init__.py ├── __version__.py ├── core.py └── helpers.py ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── docs ├── HumidAir.rst ├── Makefile ├── conf.py ├── index.rst └── make.bat ├── environment.yml ├── mains ├── 00_plot.py ├── all_fluids.py └── test_plots.py ├── make.bat ├── plots └── _base.py ├── requirements.txt ├── requirements_dev.txt ├── setup.py └── tests ├── __init__.py ├── context.py ├── test_advanced.py ├── test_basic.py └── test_units.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolProp/CoolPlot/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolProp/CoolPlot/HEAD/.travis.yml -------------------------------------------------------------------------------- /CoolPlot/Calc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolProp/CoolPlot/HEAD/CoolPlot/Calc/__init__.py -------------------------------------------------------------------------------- /CoolPlot/Plot/Common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolProp/CoolPlot/HEAD/CoolPlot/Plot/Common.py -------------------------------------------------------------------------------- /CoolPlot/Plot/ConsistencyPlots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolProp/CoolPlot/HEAD/CoolPlot/Plot/ConsistencyPlots.py -------------------------------------------------------------------------------- /CoolPlot/Plot/Plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolProp/CoolPlot/HEAD/CoolPlot/Plot/Plots.py -------------------------------------------------------------------------------- /CoolPlot/Plot/PsychChart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolProp/CoolPlot/HEAD/CoolPlot/Plot/PsychChart.py -------------------------------------------------------------------------------- /CoolPlot/Plot/PsychScript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolProp/CoolPlot/HEAD/CoolPlot/Plot/PsychScript.py -------------------------------------------------------------------------------- /CoolPlot/Plot/SimpleCycles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolProp/CoolPlot/HEAD/CoolPlot/Plot/SimpleCycles.py -------------------------------------------------------------------------------- /CoolPlot/Plot/SimpleCyclesCompression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolProp/CoolPlot/HEAD/CoolPlot/Plot/SimpleCyclesCompression.py -------------------------------------------------------------------------------- /CoolPlot/Plot/SimpleCyclesExpansion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolProp/CoolPlot/HEAD/CoolPlot/Plot/SimpleCyclesExpansion.py -------------------------------------------------------------------------------- /CoolPlot/Plot/Tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolProp/CoolPlot/HEAD/CoolPlot/Plot/Tests.py -------------------------------------------------------------------------------- /CoolPlot/Plot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolProp/CoolPlot/HEAD/CoolPlot/Plot/__init__.py -------------------------------------------------------------------------------- /CoolPlot/Plot/psy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolProp/CoolPlot/HEAD/CoolPlot/Plot/psy.py -------------------------------------------------------------------------------- /CoolPlot/Plot/psyrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolProp/CoolPlot/HEAD/CoolPlot/Plot/psyrc -------------------------------------------------------------------------------- /CoolPlot/Util/EnhancedState.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolProp/CoolPlot/HEAD/CoolPlot/Util/EnhancedState.py -------------------------------------------------------------------------------- /CoolPlot/Util/Quantities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolProp/CoolPlot/HEAD/CoolPlot/Util/Quantities.py -------------------------------------------------------------------------------- /CoolPlot/Util/Units.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolProp/CoolPlot/HEAD/CoolPlot/Util/Units.py -------------------------------------------------------------------------------- /CoolPlot/Util/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolProp/CoolPlot/HEAD/CoolPlot/Util/__init__.py -------------------------------------------------------------------------------- /CoolPlot/__init__.py: -------------------------------------------------------------------------------- 1 | from .core import * 2 | -------------------------------------------------------------------------------- /CoolPlot/__version__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolProp/CoolPlot/HEAD/CoolPlot/__version__.py -------------------------------------------------------------------------------- /CoolPlot/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolProp/CoolPlot/HEAD/CoolPlot/core.py -------------------------------------------------------------------------------- /CoolPlot/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolProp/CoolPlot/HEAD/CoolPlot/helpers.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolProp/CoolPlot/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.md LICENSE 2 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolProp/CoolPlot/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolProp/CoolPlot/HEAD/README.md -------------------------------------------------------------------------------- /docs/HumidAir.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolProp/CoolPlot/HEAD/docs/HumidAir.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolProp/CoolPlot/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolProp/CoolPlot/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolProp/CoolPlot/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolProp/CoolPlot/HEAD/docs/make.bat -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolProp/CoolPlot/HEAD/environment.yml -------------------------------------------------------------------------------- /mains/00_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolProp/CoolPlot/HEAD/mains/00_plot.py -------------------------------------------------------------------------------- /mains/all_fluids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolProp/CoolPlot/HEAD/mains/all_fluids.py -------------------------------------------------------------------------------- /mains/test_plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolProp/CoolPlot/HEAD/mains/test_plots.py -------------------------------------------------------------------------------- /make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolProp/CoolPlot/HEAD/make.bat -------------------------------------------------------------------------------- /plots/_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolProp/CoolPlot/HEAD/plots/_base.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | matplotlib 3 | coolprop 4 | -------------------------------------------------------------------------------- /requirements_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolProp/CoolPlot/HEAD/requirements_dev.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolProp/CoolPlot/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolProp/CoolPlot/HEAD/tests/context.py -------------------------------------------------------------------------------- /tests/test_advanced.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolProp/CoolPlot/HEAD/tests/test_advanced.py -------------------------------------------------------------------------------- /tests/test_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolProp/CoolPlot/HEAD/tests/test_basic.py -------------------------------------------------------------------------------- /tests/test_units.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CoolProp/CoolPlot/HEAD/tests/test_units.py --------------------------------------------------------------------------------