mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
Skip the relperm diagnostics for the solvent model.
This commit is contained in:
parent
96938548c1
commit
20819b8a03
@ -107,6 +107,17 @@ namespace Opm
|
|||||||
Base::deck_->hasKeyword("SOLVENT")));
|
Base::deck_->hasKeyword("SOLVENT")));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// run diagnostics
|
||||||
|
// Writes to:
|
||||||
|
// logFile_
|
||||||
|
void runDiagnostics()
|
||||||
|
{
|
||||||
|
std::shared_ptr<Opm::StreamLog> streamLog = std::make_shared<Opm::StreamLog>(Base::logFile_, Opm::Log::DefaultMessageTypes);
|
||||||
|
const std::string msg = "Relperm diagnostic not implemented for the solvent model ";
|
||||||
|
std::cout << "\n" << msg << "\n" << std::endl;
|
||||||
|
streamLog->addMessage(Log::MessageType::Info, msg);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user