Skip to content

Commit 9b79be2

Browse files
committed
introduce API for tracking internal convergence variables
1 parent 015792e commit 9b79be2

File tree

3 files changed

+658
-459
lines changed

3 files changed

+658
-459
lines changed

thermosteam/__init__.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@
4545
units_of_measure,
4646
separations,
4747
functors,
48+
nodes,
4849
)
4950
from .utils import docround
5051
from .network import *
@@ -70,6 +71,7 @@
7071
from .equilibrium import *
7172
from .mixture import *
7273
from ._preferences import preferences
74+
from .nodes import *
7375

7476
__all__ = ('Chemical', 'ChemicalData', 'Chemicals', 'CompiledChemicals',
7577
'ChemicalDraft', 'ChemicalsOutline', 'Thermo', 'IdealThermo',
@@ -78,7 +80,7 @@
7880
*network.__all__, 'preferences',
7981
'indexer', 'settings', 'functor', 'functors', 'chemicals', 'base',
8082
'equilibrium', 'units_of_measure', 'exceptions', 'functional',
81-
'reaction', 'constants', 'utils', 'separations')
83+
'reaction', 'constants', 'utils', 'separations', *nodes.__all__)
8284

8385
# Set number of digits displayed
8486
import numpy as np

0 commit comments

Comments
 (0)