[Transport] Indicate value of CK_Mode flag in transportType string

This commit is contained in:
Ray Speth 2018-07-11 15:40:28 -04:00
parent 35aa8be61e
commit 435f28641e
2 changed files with 2 additions and 2 deletions

View file

@ -60,7 +60,7 @@ public:
MixTransport();
virtual std::string transportType() const {
return "Mix";
return (m_mode == CK_Mode) ? "CK_Mix" : "Mix";
}
//! Return the thermal diffusion coefficients

View file

@ -33,7 +33,7 @@ public:
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)