@@ -69,7 +69,7 @@ class AbstractStirredTankReactor(PressureVessel, Unit, isabstract=True):
6969 Number of reactors.
7070 heat_exchanger_configuration :
7171 What kind of heat exchanger to default to (if any). Valid options include
72- 'jacketed', 'recirculation loop', and 'internal coil '. Defaults to 'recirculation loop'.
72+ 'jacketed', 'recirculation loop', and 'internal'. Defaults to 'recirculation loop'.
7373 dT_hx_loop :
7474 Maximum change in temperature for the heat exchanger loop. Defaults to 5 K.
7575 jacket_annular_diameter :
@@ -104,8 +104,8 @@ class AbstractStirredTankReactor(PressureVessel, Unit, isabstract=True):
104104 The weight of the jacket is added to the weight of the vessel and the
105105 cost is compounded together as a jacketed vessel.
106106
107- * 'internal coil ':
108- The internal coil is costed as an ordinary helical tube heat exchanger
107+ * 'internal':
108+ The internal is costed as an ordinary helical tube heat exchanger
109109 with the added assumption that the temperature at the wall is the
110110 operating temperature. This method is still not implemented in BioSTEAM
111111 yet.
@@ -250,7 +250,7 @@ class AbstractStirredTankReactor(PressureVessel, Unit, isabstract=True):
250250 batch_default : bool = False
251251
252252 #: What kind of heat exchanger configuration to default to (if any).
253- #: Valid options include 'jacketed', 'recirculation loop', and 'internal coil '.
253+ #: Valid options include 'jacketed', 'recirculation loop', and 'internal'.
254254 heat_exchanger_configuration_default : str = 'recirculation loop'
255255
256256 #: Default maximum change in temperature for the heat exchanger loop.
@@ -261,7 +261,7 @@ class AbstractStirredTankReactor(PressureVessel, Unit, isabstract=True):
261261
262262 #: Available heat exchanger configurations.
263263 heat_exchanger_configurations : set [str ] = {
264- 'jacketed' , 'recirculation loop' , 'internal coil '
264+ 'jacketed' , 'recirculation loop' , 'internal'
265265 }
266266
267267 @property
@@ -380,11 +380,11 @@ def heat_exchanger_configuration(self, configuration):
380380 raise AttributeError (
381381 f'invalid heat exchanger configuration { configuration !r} ; '
382382 "configuration must be either 'jacketed', "
383- "'recirculation loop', or 'internal coil '"
383+ "'recirculation loop', or 'internal'"
384384 )
385- elif configuration == 'internal coil ' :
385+ elif configuration == 'internal' :
386386 raise AttributeError (
387- "'internal coil ' heat exchanger configuration not implemented "
387+ "'internal' heat exchanger configuration not implemented "
388388 " in BioSTEAM yet"
389389 )
390390 else :
0 commit comments