From fb2a581cb4a917b871b640f431a39e7520245ced Mon Sep 17 00:00:00 2001 From: Yoel Cortes-Pena Date: Thu, 18 Jan 2024 18:49:51 -0600 Subject: [PATCH] fix wwt test --- biosteam/wastewater/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/biosteam/wastewater/__init__.py b/biosteam/wastewater/__init__.py index 19c9ca7a..129851d2 100644 --- a/biosteam/wastewater/__init__.py +++ b/biosteam/wastewater/__init__.py @@ -82,11 +82,11 @@ def create_wastewater_treatment_system(*args, kind=None, **kwargs): ... tea = cs.create_tea(sys) ... ethanol = sys.get_outlet('ethanol') ... MESP = tea.solve_price(ethanol) * cs.ethanol_density_kggal - ... print(f"{WWT_kwargs['kind']} MESP: ${MESP:.1f}/gal") + ... print(f"{WWT_kwargs['kind']} MESP: ${round(MESP, 1)}/gal") >>> # With the conventional WWT process >>> get_MESP(kind='conventional') - conventional MESP: $2.1/gal + conventional MESP: $2.0/gal >>> # With the high-rate WWT process >>> get_MESP(process_ID=6, kind='high-rate')