remove unused method

This commit is contained in:
Arne Morten Kvarving 2024-02-02 08:30:22 +01:00
parent a6eb7b65a1
commit 2d70acb8eb
2 changed files with 0 additions and 20 deletions

View File

@ -29,7 +29,6 @@
#include <boost/date_time.hpp>
#include <sstream>
#include <string>
namespace Opm {
@ -46,20 +45,4 @@ void outputReportStep(const SimulatorTimer& timer)
OpmLog::info(stepMsg.str());
}
void outputTimestampFIP(const SimulatorTimer& timer,
const std::string& title,
const std::string& version)
{
std::ostringstream ss;
boost::posix_time::time_facet* facet = new boost::posix_time::time_facet("%d %b %Y");
ss.imbue(std::locale(std::locale::classic(), facet));
ss << "\n **************************************************************************\n"
<< " Balance at" << std::setw(10) << (double)unit::convert::to(timer.simulationTimeElapsed(), unit::day) << " Days"
<< " *" << std::setw(30) << title << " *\n"
<< " Report " << std::setw(4) << timer.reportStepNum() << " " << timer.currentDateTime()
<< " * Flow version " << std::setw(11) << version << " *\n"
<< " **************************************************************************\n";
OpmLog::note(ss.str());
}
} // namespace Opm

View File

@ -146,9 +146,6 @@ struct LoadStep<TypeTag, TTag::EclFlowProblem>
namespace Opm {
void outputReportStep(const SimulatorTimer& timer);
void outputTimestampFIP(const SimulatorTimer& timer,
const std::string& title,
const std::string& version);
/// a simulator for the blackoil model
template<class TypeTag>