Skip to content

Commit

Permalink
[Transport] Indicate value of CK_Mode flag in transportType string
Browse files Browse the repository at this point in the history
  • Loading branch information
speth committed Jul 11, 2018
1 parent 35aa8be commit 435f286
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/cantera/transport/MixTransport.h
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ class MixTransport : public GasTransport
MixTransport();

virtual std::string transportType() const {
return "Mix";
return (m_mode == CK_Mode) ? "CK_Mix" : "Mix";
}

//! Return the thermal diffusion coefficients
Expand Down
2 changes: 1 addition & 1 deletion include/cantera/transport/MultiTransport.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class MultiTransport : public GasTransport
MultiTransport(thermo_t* thermo=0);

virtual std::string transportType() const {
return "Multi";
return (m_mode == CK_Mode) ? "CK_Multi" : "Multi";
}

//! Return the thermal diffusion coefficients (kg/m/s)
Expand Down

0 comments on commit 435f286

Please sign in to comment.