Skip to content

Commit

Permalink
Bug fix: CK_Multi recognized as multicomponent transport method in fl…
Browse files Browse the repository at this point in the history
…ame reactors
  • Loading branch information
lavdwall committed Jul 11, 2021
1 parent 1420a4c commit cb594ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/oneD/StFlow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ void StFlow::resetBadValues(double* xg)
void StFlow::setTransport(Transport& trans)
{
m_trans = &trans;
m_do_multicomponent = (m_trans->transportType() == "Multi");
m_do_multicomponent = (m_trans->transportType() == "Multi" || m_trans->transportType() == "CK_Multi");

m_diff.resize(m_nsp*m_points);
if (m_do_multicomponent) {
Expand Down

0 comments on commit cb594ec

Please sign in to comment.