Skip to content

Commit

Permalink
fix wwt test
Browse files Browse the repository at this point in the history
  • Loading branch information
yoelcortes committed Jan 19, 2024
1 parent 4cb789e commit fb2a581
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions biosteam/wastewater/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down

0 comments on commit fb2a581

Please sign in to comment.