diff --git a/thermosteam/_stream.py b/thermosteam/_stream.py index 909870a8..67154dbb 100644 --- a/thermosteam/_stream.py +++ b/thermosteam/_stream.py @@ -40,7 +40,6 @@ mass_units = indexer.ChemicalMassFlowIndexer.units vol_units = indexer.ChemicalVolumetricFlowIndexer.units - class StreamData: __slots__ = ('_imol', '_T', '_P', '_phases') diff --git a/thermosteam/utils/plots.py b/thermosteam/utils/plots.py index cd85d6cb..12ec8952 100644 --- a/thermosteam/utils/plots.py +++ b/thermosteam/utils/plots.py @@ -45,7 +45,7 @@ def set_figure_size(width=None, aspect_ratio=None, units=None): # aspect ratio defaults to 0.65 if aspect_ratio is None: aspect_ratio = 0.65 - if width is None: + if width is None or width == 'full': width = 6.6142 elif width == 'half': width = 6.6142 / 2