v0.4.3 - Grassmann’s Graph (April, 29, 2021)#
New Features#
Automatic provision of input data for the sankey diagram class of the plotly library to generate exergy sankey diagrams. For example, the diagram of the solar thermal power plant presented in the thermodynamic analyses section
(PR #251).
The results of your simulation are much more easy to bulk access: The
tespy.networks.network.Network
class provides you with a results dictionary containing DataFrames with all data necessary. The keys of the dictionary are:'Connection'
the class names of the different components used, e.g.
'Turbine'
or'HeatExchanger'
the labels of the busses, e.g.
'input power'
The pandas DataFrame provides you with the SI-values for components and busses as well as all fluid property data of the connections in respective specified unit. For example:
mynetwork.results['Connection'] mynetwork.results['Turbine']
(PR #255).
Documentation#
An own chapter for the exergy analysis toolbox has been added (PR #251).
Fix some typos in the code of heat pump tutorial (PR #260).
Update component parameter data type specifications according to 0.4.x API in docs and add missing parameters in HeatExchanger classes (PR #260).
Fix broken links to characteristic map functions of class
tespy.components.turbomachinery.compressor.Compressor
(PR #263).
Bug Fixes#
Other Changes#
Add a timestamp for the automatic model documentation feature (PR #248).
Move from travis to GitHub actions (PR #249).
Specified Bus values are now colored in the
tespy.networks.network.Network.print_results()
method (PR #255).Remove building figures for characteristics from docs generation (PR #251).