Skip to content

Commit a74ba0f

Browse files
committed
fix parallel jacketed bioreactor issue with utility accounting
1 parent 8288f4a commit a74ba0f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

biosteam/units/abstract_stirred_tank_reactor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -496,7 +496,7 @@ def _design(self, size_only=False):
496496
self.heat_exchanger.T = hx_outlet.T
497497
self.heat_exchanger.simulate()
498498
elif hx_config == 'jacketed':
499-
self.add_heat_utility(duty, self.effluent.T)
499+
self.add_heat_utility(duty / N, self.effluent.T)
500500
else:
501501
raise RuntimeError(
502502
f"heat exchanger configuration {hx_config!r} not yet implemented"

0 commit comments

Comments
 (0)