[Transport] Indicate value of CK_Mode flag in transportType string
This commit is contained in:
parent
35aa8be61e
commit
435f28641e
2 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue