Skip to content

Commit

Permalink
[1D] Fix export of _other columns for IonFlow based classes
Browse files Browse the repository at this point in the history
  • Loading branch information
ischoegl authored and bryanwweber committed Aug 20, 2020
1 parent 0767e54 commit 148a6c7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion interfaces/cython/cantera/onedim.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def other_components(self, domain=None):
if isinstance(dom, Inlet1D):
return tuple([e for e in self._other
if e not in {'grid', 'lambda', 'eField'}])
elif isinstance(dom, IdealGasFlow):
elif isinstance(dom, (IdealGasFlow, IonFlow)):
return self._other
else:
return ()
Expand Down

0 comments on commit 148a6c7

Please sign in to comment.