Skip to content

Commit

Permalink
Release 0.3.5. Fixed thermochemistry data file problems.
Browse files Browse the repository at this point in the history
  • Loading branch information
johanzietsman-em committed Mar 13, 2017
1 parent 2e9bbba commit 890b334
Show file tree
Hide file tree
Showing 72 changed files with 170 additions and 87 deletions.
6 changes: 6 additions & 0 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# `auxi` Release Notes
This file reports the details of each `auxi` release from newest to oldest.

## 0.3.5
There were also issues with `auxi`'s thermochemistry data file format that were fixed. The data files written by Compound.write() could not be read by load_data_auxi. The Rao and NIST data were also incorrectly formatted. These were all fixed.

## 0.3.4
In this release a large number of changes made by Carl Sandrock and other authors were added.

## 0.3.3
In this release new Jupyter notebooks were added, the thermo data file issue on Windows fixed, readtehdocs documentation fixed and the release procedure was updated.

Expand Down
2 changes: 1 addition & 1 deletion auxi/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"""


__version__ = '0.3.4'
__version__ = '0.3.5'
__license__ = 'LGPL v3'
__copyright__ = 'Copyright 2016, Ex Mente Technologies (Pty) Ltd'
__author__ = 'Christoff Kok, Johan Zietsman'
Expand Down
2 changes: 1 addition & 1 deletion auxi/core/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"""


__version__ = '0.3.4'
__version__ = '0.3.5'
__license__ = 'LGPL v3'
__copyright__ = 'Copyright 2016, Ex Mente Technologies (Pty) Ltd'
__author__ = 'Christoff Kok, Johan Zietsman'
Expand Down
2 changes: 1 addition & 1 deletion auxi/core/bibliography.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from os import path


__version__ = '0.3.4'
__version__ = '0.3.5'
__license__ = 'LGPL v3'
__copyright__ = 'Copyright 2016, Ex Mente Technologies (Pty) Ltd'
__author__ = 'Christoff Kok, Johan Zietsman'
Expand Down
2 changes: 1 addition & 1 deletion auxi/core/bibliography_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from auxi.core.bibliography import Database as testee


__version__ = '0.3.4'
__version__ = '0.3.5'
__license__ = 'LGPL v3'
__copyright__ = 'Copyright 2016, Ex Mente Technologies (Pty) Ltd'
__author__ = 'Christoff Kok, Johan Zietsman'
Expand Down
2 changes: 1 addition & 1 deletion auxi/core/helpers_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

from auxi.core.helpers import get_path_relative_to_module, get_date

__version__ = '0.3.4'
__version__ = '0.3.5'
__license__ = 'LGPL v3'
__copyright__ = 'Copyright 2016, Ex Mente Technologies (Pty) Ltd'
__author__ = 'Christoff Kok, Johan Zietsman'
Expand Down
4 changes: 2 additions & 2 deletions auxi/core/objects.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import jsonpickle


__version__ = '0.3.4'
__version__ = '0.3.5'
__license__ = 'LGPL v3'
__copyright__ = 'Copyright 2016, Ex Mente Technologies (Pty) Ltd'
__author__ = 'Christoff Kok, Johan Zietsman'
Expand Down Expand Up @@ -43,7 +43,7 @@ def read(path):
with open(path, 'r') as file:
s = file.read()
result = jsonpickle.decode(s)
# print(type(result), dir(result))
# print(type(result), dir(result))
# if '_init' in dir(result):
result._init()
return result
Expand Down
2 changes: 1 addition & 1 deletion auxi/core/objects_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from auxi.core.objects import Object, NamedObject


__version__ = '0.3.4'
__version__ = '0.3.5'
__license__ = 'LGPL v3'
__copyright__ = 'Copyright 2016, Ex Mente Technologies (Pty) Ltd'
__author__ = 'Christoff Kok, Johan Zietsman'
Expand Down
2 changes: 1 addition & 1 deletion auxi/core/reporting.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

from auxi.core.objects import Object

__version__ = '0.3.4'
__version__ = '0.3.5'
__license__ = 'LGPL v3'
__copyright__ = 'Copyright 2016, Ex Mente Technologies (Pty) Ltd'
__author__ = 'Christoff Kok, Johan Zietsman'
Expand Down
2 changes: 1 addition & 1 deletion auxi/core/reporting_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from auxi.core.reporting import ReportFormat, Report


__version__ = '0.3.4'
__version__ = '0.3.5'
__license__ = 'LGPL v3'
__copyright__ = 'Copyright 2016, Ex Mente Technologies (Pty) Ltd'
__author__ = 'Christoff Kok, Johan Zietsman'
Expand Down
2 changes: 1 addition & 1 deletion auxi/core/time.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

from auxi.core.objects import NamedObject

__version__ = '0.3.4'
__version__ = '0.3.5'
__license__ = 'LGPL v3'
__copyright__ = 'Copyright 2016, Ex Mente Technologies (Pty) Ltd'
__author__ = 'Christoff Kok, Johan Zietsman'
Expand Down
2 changes: 1 addition & 1 deletion auxi/core/time_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

from auxi.core.time import Clock, TimePeriod

__version__ = '0.3.4'
__version__ = '0.3.5'
__license__ = 'LGPL v3'
__copyright__ = 'Copyright 2016, Ex Mente Technologies (Pty) Ltd'
__author__ = 'Christoff Kok, Johan Zietsman'
Expand Down
Binary file modified auxi/doc/auxiUserManual.pdf
Binary file not shown.
2 changes: 1 addition & 1 deletion auxi/modelling/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"""


__version__ = '0.3.4'
__version__ = '0.3.5'
__license__ = 'LGPL v3'
__copyright__ = 'Copyright 2016, Ex Mente Technologies (Pty) Ltd'
__author__ = 'Christoff Kok, Johan Zietsman'
Expand Down
2 changes: 1 addition & 1 deletion auxi/modelling/business/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"""


__version__ = '0.3.4'
__version__ = '0.3.5'
__license__ = 'LGPL v3'
__copyright__ = 'Copyright 2016, Ex Mente Technologies (Pty) Ltd'
__author__ = 'Christoff Kok, Johan Zietsman'
Expand Down
2 changes: 1 addition & 1 deletion auxi/modelling/business/basic.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

from auxi.modelling.business.structure import Activity

__version__ = '0.3.4'
__version__ = '0.3.5'
__license__ = 'LGPL v3'
__copyright__ = 'Copyright 2016, Ex Mente Technologies (Pty) Ltd'
__author__ = 'Christoff Kok, Johan Zietsman'
Expand Down
2 changes: 1 addition & 1 deletion auxi/modelling/business/basic_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from auxi.modelling.financial.des import GeneralLedger
from auxi.modelling.financial.des import GeneralLedgerStructure

__version__ = '0.3.4'
__version__ = '0.3.5'
__license__ = 'LGPL v3'
__copyright__ = 'Copyright 2016, Ex Mente Technologies (Pty) Ltd'
__author__ = 'Christoff Kok, Johan Zietsman'
Expand Down
2 changes: 1 addition & 1 deletion auxi/modelling/business/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from auxi.core.helpers import get_date
from auxi.modelling.business.structure import Entity

__version__ = '0.3.4'
__version__ = '0.3.5'
__license__ = 'LGPL v3'
__copyright__ = 'Copyright 2016, Ex Mente Technologies (Pty) Ltd'
__author__ = 'Christoff Kok, Johan Zietsman'
Expand Down
2 changes: 1 addition & 1 deletion auxi/modelling/business/models_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from auxi.core.time import TimePeriod
from auxi.modelling.financial.des import GeneralLedgerStructure

__version__ = '0.3.4'
__version__ = '0.3.5'
__license__ = 'LGPL v3'
__copyright__ = 'Copyright 2016, Ex Mente Technologies (Pty) Ltd'
__author__ = 'Christoff Kok, Johan Zietsman'
Expand Down
2 changes: 1 addition & 1 deletion auxi/modelling/business/structure.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from auxi.modelling.financial.des import GeneralLedger


__version__ = '0.3.4'
__version__ = '0.3.5'
__license__ = 'LGPL v3'
__copyright__ = 'Copyright 2016, Ex Mente Technologies (Pty) Ltd'
__author__ = 'Christoff Kok, Johan Zietsman'
Expand Down
2 changes: 1 addition & 1 deletion auxi/modelling/business/structure_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
from auxi.modelling.financial.des import GeneralLedgerStructure


__version__ = '0.3.4'
__version__ = '0.3.5'
__license__ = 'LGPL v3'
__copyright__ = 'Copyright 2016, Ex Mente Technologies (Pty) Ltd'
__author__ = 'Christoff Kok, Johan Zietsman'
Expand Down
2 changes: 1 addition & 1 deletion auxi/modelling/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from auxi.core.objects import NamedObject


__version__ = '0.3.4'
__version__ = '0.3.5'
__license__ = 'LGPL v3'
__copyright__ = 'Copyright 2016, Ex Mente Technologies (Pty) Ltd'
__author__ = 'Johan Zietsman'
Expand Down
2 changes: 1 addition & 1 deletion auxi/modelling/core_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from auxi.modelling.core import Project


__version__ = '0.3.4'
__version__ = '0.3.5'
__license__ = 'LGPL v3'
__copyright__ = 'Copyright 2016, Ex Mente Technologies (Pty) Ltd'
__author__ = 'Christoff Kok, Johan Zietsman'
Expand Down
2 changes: 1 addition & 1 deletion auxi/modelling/financial/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"""


__version__ = '0.3.4'
__version__ = '0.3.5'
__license__ = 'LGPL v3'
__copyright__ = 'Copyright 2016, Ex Mente Technologies (Pty) Ltd'
__author__ = 'Christoff Kok, Johan Zietsman'
Expand Down
2 changes: 1 addition & 1 deletion auxi/modelling/financial/des.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from auxi.core.reporting import ReportFormat


__version__ = '0.3.4'
__version__ = '0.3.5'
__license__ = 'LGPL v3'
__copyright__ = 'Copyright 2016, Ex Mente Technologies (Pty) Ltd'
__author__ = 'Christoff Kok, Johan Zietsman'
Expand Down
2 changes: 1 addition & 1 deletion auxi/modelling/financial/des_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from auxi.modelling.financial.des import GeneralLedger
from auxi.core.reporting import ReportFormat

__version__ = '0.3.4'
__version__ = '0.3.5'
__license__ = 'LGPL v3'
__copyright__ = 'Copyright 2016, Ex Mente Technologies (Pty) Ltd'
__author__ = 'Christoff Kok, Johan Zietsman'
Expand Down
2 changes: 1 addition & 1 deletion auxi/modelling/financial/reporting.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from auxi.core.helpers import get_date
from auxi.core.reporting import Report as ReportBase

__version__ = '0.3.4'
__version__ = '0.3.5'
__license__ = 'LGPL v3'
__copyright__ = 'Copyright 2016, Ex Mente Technologies (Pty) Ltd'
__author__ = 'Christoff Kok, Johan Zietsman'
Expand Down
2 changes: 1 addition & 1 deletion auxi/modelling/financial/reporting_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
from auxi.modelling.financial.des import GeneralLedgerStructure as Gls


__version__ = '0.3.4'
__version__ = '0.3.5'
__license__ = 'LGPL v3'
__copyright__ = 'Copyright 2016, Ex Mente Technologies (Pty) Ltd'
__author__ = 'Christoff Kok, Johan Zietsman'
Expand Down
2 changes: 1 addition & 1 deletion auxi/modelling/process/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"""


__version__ = '0.3.4'
__version__ = '0.3.5'
__license__ = 'LGPL v3'
__copyright__ = 'Copyright 2016, Ex Mente Technologies (Pty) Ltd'
__author__ = 'Christoff Kok, Johan Zietsman'
Expand Down
2 changes: 1 addition & 1 deletion auxi/modelling/process/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from auxi.core.objects import NamedObject


__version__ = '0.3.4'
__version__ = '0.3.5'
__license__ = 'LGPL v3'
__copyright__ = 'Copyright 2016, Ex Mente Technologies (Pty) Ltd'
__author__ = 'Johan Zietsman'
Expand Down
2 changes: 1 addition & 1 deletion auxi/modelling/process/core_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from auxi.modelling.process.core import Model


__version__ = '0.3.4'
__version__ = '0.3.5'
__license__ = 'LGPL v3'
__copyright__ = 'Copyright 2016, Ex Mente Technologies (Pty) Ltd'
__author__ = 'Christoff Kok, Johan Zietsman'
Expand Down
2 changes: 1 addition & 1 deletion auxi/modelling/process/materials/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"""


__version__ = '0.3.4'
__version__ = '0.3.5'
__license__ = 'LGPL v3'
__copyright__ = 'Copyright 2016, Ex Mente Technologies (Pty) Ltd'
__author__ = 'Christoff Kok, Johan Zietsman'
Expand Down
2 changes: 1 addition & 1 deletion auxi/modelling/process/materials/chem.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from auxi.tools.chemistry import stoichiometry as stoich


__version__ = '0.3.4'
__version__ = '0.3.5'
__license__ = 'LGPL v3'
__copyright__ = 'Copyright 2016, Ex Mente Technologies (Pty) Ltd'
__author__ = 'Christoff Kok, Johan Zietsman'
Expand Down
2 changes: 1 addition & 1 deletion auxi/modelling/process/materials/chem_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from auxi.modelling.process.materials.chem import Material, MaterialPackage


__version__ = '0.3.4'
__version__ = '0.3.5'
__license__ = 'LGPL v3'
__copyright__ = 'Copyright 2016, Ex Mente Technologies (Pty) Ltd'
__author__ = 'Christoff Kok, Johan Zietsman'
Expand Down
2 changes: 1 addition & 1 deletion auxi/modelling/process/materials/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from auxi.tools.materialphysicalproperties.core import StateOfMatter


__version__ = '0.3.4'
__version__ = '0.3.5'
__license__ = 'LGPL v3'
__copyright__ = 'Copyright 2016, Ex Mente Technologies (Pty) Ltd'
__author__ = 'Christoff Kok, Johan Zietsman'
Expand Down
2 changes: 1 addition & 1 deletion auxi/modelling/process/materials/core_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from auxi.tools.materialphysicalproperties.gases import air_dict


__version__ = '0.3.4'
__version__ = '0.3.5'
__license__ = 'LGPL v3'
__copyright__ = 'Copyright 2016, Ex Mente Technologies (Pty) Ltd'
__author__ = 'Christoff Kok, Johan Zietsman'
Expand Down
2 changes: 1 addition & 1 deletion auxi/modelling/process/materials/psd.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
from auxi.core.objects import Object
from auxi.core.objects import NamedObject

__version__ = '0.3.4'
__version__ = '0.3.5'
__license__ = 'LGPL v3'
__copyright__ = 'Copyright 2016, Ex Mente Technologies (Pty) Ltd'
__author__ = 'Christoff Kok, Johan Zietsman'
Expand Down
2 changes: 1 addition & 1 deletion auxi/modelling/process/materials/psd_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from auxi.modelling.process.materials import psd
from auxi.modelling.process.materials.psd import Material, MaterialPackage

__version__ = '0.3.4'
__version__ = '0.3.5'
__license__ = 'LGPL v3'
__copyright__ = 'Copyright 2016, Ex Mente Technologies (Pty) Ltd'
__author__ = 'Christoff Kok, Johan Zietsman'
Expand Down
2 changes: 1 addition & 1 deletion auxi/modelling/process/materials/slurry.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
from auxi.core.objects import Object
from auxi.core.objects import NamedObject

__version__ = '0.3.4'
__version__ = '0.3.5'
__license__ = 'LGPL v3'
__copyright__ = 'Copyright 2016, Ex Mente Technologies (Pty) Ltd'
__author__ = 'Christoff Kok, Johan Zietsman'
Expand Down
2 changes: 1 addition & 1 deletion auxi/modelling/process/materials/slurry_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from auxi.modelling.process.materials import slurry
from auxi.modelling.process.materials.slurry import Material, MaterialPackage

__version__ = '0.3.4'
__version__ = '0.3.5'
__license__ = 'LGPL v3'
__copyright__ = 'Copyright 2016, Ex Mente Technologies (Pty) Ltd'
__author__ = 'Christoff Kok, Johan Zietsman'
Expand Down
2 changes: 1 addition & 1 deletion auxi/modelling/process/materials/thermo.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
from auxi.tools.chemistry import stoichiometry as stoich
from auxi.tools.chemistry import thermochemistry as thermo

__version__ = '0.3.4'
__version__ = '0.3.5'
__license__ = 'LGPL v3'
__copyright__ = 'Copyright 2016, Ex Mente Technologies (Pty) Ltd'
__author__ = 'Christoff Kok, Johan Zietsman'
Expand Down
2 changes: 1 addition & 1 deletion auxi/modelling/process/materials/thermo_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
from auxi.tools.chemistry import thermochemistry as thermo
from auxi.modelling.process.materials.thermo import Material, MaterialPackage

__version__ = '0.3.4'
__version__ = '0.3.5'
__license__ = 'LGPL v3'
__copyright__ = 'Copyright 2016, Ex Mente Technologies (Pty) Ltd'
__author__ = 'Christoff Kok, Johan Zietsman'
Expand Down
2 changes: 1 addition & 1 deletion auxi/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
from auxi.modelling.business.models_test import TimeBasedModelUnitTester


__version__ = '0.3.4'
__version__ = '0.3.5'
__license__ = 'LGPL v3'
__copyright__ = 'Copyright 2016, Ex Mente Technologies (Pty) Ltd'
__author__ = 'Christoff Kok, Johan Zietsman'
Expand Down
2 changes: 1 addition & 1 deletion auxi/tools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
This package provides tools to make common tasks quick, easy and accurate.
"""

__version__ = '0.3.4'
__version__ = '0.3.5'
__license__ = 'LGPL v3'
__copyright__ = 'Copyright 2016, Ex Mente Technologies (Pty) Ltd'
__author__ = 'Christoff Kok, Johan Zietsman'
Expand Down

0 comments on commit 890b334

Please sign in to comment.