Skip to content

Commit

Permalink
thermoDataGrabber -> ThermoPyle
Browse files Browse the repository at this point in the history
  • Loading branch information
nick5435 committed Feb 27, 2017
1 parent ad042bf commit 188fa95
Show file tree
Hide file tree
Showing 19 changed files with 139 additions and 2,485 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<img src="https://github.com/nick5435/thermo-bridge/raw/master/plots/TPS.png" alt="Sample Plot" width="400"/></td>
<td>
We generate <a href="https://github.com/nick5435/thermo-bridge/tree/master/data">datasets</a> and plots using <a href="http://coolprop.org">CoolProp</a> running under Python. <br />
Install the library by runnning <pre>pip install -e .</pre> in the thermoDataGrabber directory.
Install the library by runnning <pre>pip install -e .</pre> in the ThermoPyle directory.
<br />
Documentation is at: <a href='http://thermo-bridge.readthedocs.io/'>
Read The Docs.io <br />
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
.. module:: thermoDataGrabber
.. module:: ThermoPyle
:platform: Unix, Windows
:synopsis: Uses CoolProp to access thermodynamic data about Fluids.
Expand Down
2 changes: 2 additions & 0 deletions ThermoPyle/ThermoPyle/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
__all__ = ["ThermoPyle"]
from .ThermoPyle import *
File renamed without changes.
4 changes: 2 additions & 2 deletions thermoDataGrabber/setup.py → ThermoPyle/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ def readme():


setup(
name='thermoDataGrabber',
version='0.5.1',
name='ThermoPyle',
version='0.5.2',
description='Creation of Thermodynamic Surfaces using CoolProp',
long_description=readme(),
url='https://github.com/nick5435/thermo-bridge',
Expand Down
8 changes: 4 additions & 4 deletions docs/source/CSVFluid.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
##########################
thermoDataGrabber.CSVFluid
##########################
###################
ThermoPyle.CSVFluid
###################

.. autoclass:: thermoDataGrabber.CSVFluid
.. autoclass:: ThermoPyle.CSVFluid
:members:
2 changes: 1 addition & 1 deletion docs/source/DevTutorial.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Setup Process
cd ~
git clone https://github.com/nick5435/thermo-bridge.git
cd thermo-bridge
pip install thermoDataGrabber/ -e -U
pip install ThermoPyle/ -e -U
conda update --all

#. For a runtime example, open :code:`notebooks/thermo_generic_library_runner.ipynb` using :code:`jupyter notebook`
Expand Down
8 changes: 4 additions & 4 deletions docs/source/ThermoFluid.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#############################
thermoDataGrabber.ThermoFluid
#############################
######################
ThermoPyle.ThermoFluid
######################

.. autoclass:: thermoDataGrabber.ThermoFluid
.. autoclass:: ThermoPyle.ThermoFluid
:members:
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#################
thermoDataGrabber
#################
##########
ThermoPyle
##########

.. toctree::
:maxdepth: 2
Expand All @@ -9,5 +9,5 @@ thermoDataGrabber
ThermoFluid
CSVFluid

.. automodule:: thermoDataGrabber
.. automodule:: ThermoPyle
:members: fluid_plot, rescale
11 changes: 5 additions & 6 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,10 @@

sys.path.insert(0, os.path.abspath("."))
sys.path.insert(0, os.path.abspath(".."))
sys.path.insert(0, os.path.abspath("../../thermoDataGrabber/"))
sys.path.insert(0, os.path.abspath("/../thermoDataGrabber/"))
sys.path.insert(0, os.path.abspath("./thermoDataGrabber/"))
sys.path.insert(0,
os.path.abspath("../../thermoDataGrabber/thermoDataGrabber/"))
sys.path.insert(0, os.path.abspath("../../ThermoPyle/"))
sys.path.insert(0, os.path.abspath("/../ThermoPyle/"))
sys.path.insert(0, os.path.abspath("./ThermoPyle/"))
sys.path.insert(0, os.path.abspath("../../ThermoPyle/ThermoPyle/"))
sys.path.insert(0, os.path.abspath("../../notebooks/"))
sys.path.insert(0, os.path.abspath("../../"))
sys.path.insert(0, os.path.abspath("../../plots/"))
Expand Down Expand Up @@ -79,7 +78,7 @@
# The short X.Y version.
version = "0.5"
# The full version, including alpha/beta/rc tags.
release = "0.5.1"
release = "0.5.2"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
4 changes: 2 additions & 2 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Welcome to Thermo-Bridge Data Generator's documentation!

readme
DevTutorial
thermoDataGrabber
ThermoPyle
whitepaper


Expand All @@ -26,6 +26,6 @@ Indices and tables
.. figure:: ../../data_flow.png
:width: 100%
:align: center
:alt: UML State Flow diagram for ThermoDataGrabber
:alt: UML State Flow diagram for ThermoPyle
:figclass: align-center
:figwidth: 45%
4 changes: 2 additions & 2 deletions docs/source/readme.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ README


We generate datasets and plots using CoolProp running under Python.
Install the library by runnning :code:`pip install -e .` in the thermoDataGrabber directory.
Install the library by runnning :code:`pip install -e .` in the ThermoPyle directory.

Make the documentation by running :code:`/make.bat html` or :code:`./autobuild.bat`
Make the documentation by running :code:`./make.bat html` or :code:`./autobuild.bat`

0 comments on commit 188fa95

Please sign in to comment.