2012-06-14 07:13:03 -05:00
|
|
|
/*
|
2020-05-07 09:13:39 -05:00
|
|
|
Copyright 2012, 2020 SINTEF Digital, Mathematics and Cybernetics.
|
2012-06-14 07:13:03 -05:00
|
|
|
|
|
|
|
This file is part of the Open Porous Media project (OPM).
|
|
|
|
|
|
|
|
OPM is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
OPM is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with OPM. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef OPM_SIMULATORREPORT_HEADER_INCLUDED
|
|
|
|
#define OPM_SIMULATORREPORT_HEADER_INCLUDED
|
2020-05-06 14:41:03 -05:00
|
|
|
#include <cassert>
|
2012-06-14 07:13:03 -05:00
|
|
|
#include <iosfwd>
|
2020-05-06 14:41:03 -05:00
|
|
|
#include <vector>
|
2012-06-14 07:13:03 -05:00
|
|
|
|
|
|
|
namespace Opm
|
|
|
|
{
|
|
|
|
|
|
|
|
/// A struct for returning timing data from a simulator to its caller.
|
2020-05-07 09:13:39 -05:00
|
|
|
struct SimulatorReportSingle
|
2012-06-14 07:13:03 -05:00
|
|
|
{
|
|
|
|
double pressure_time;
|
|
|
|
double transport_time;
|
|
|
|
double total_time;
|
2016-11-23 14:30:01 -06:00
|
|
|
double solver_time;
|
|
|
|
double assemble_time;
|
2020-12-10 06:39:01 -06:00
|
|
|
double pre_post_time;
|
2020-09-07 08:05:02 -05:00
|
|
|
double assemble_time_well;
|
2019-04-04 05:20:30 -05:00
|
|
|
double linear_solve_setup_time;
|
2016-11-23 14:30:01 -06:00
|
|
|
double linear_solve_time;
|
|
|
|
double update_time;
|
|
|
|
double output_write_time;
|
2012-06-14 07:13:03 -05:00
|
|
|
|
2016-11-23 14:30:01 -06:00
|
|
|
unsigned int total_well_iterations;
|
2016-07-13 05:15:07 -05:00
|
|
|
unsigned int total_linearizations;
|
2015-03-04 07:01:13 -06:00
|
|
|
unsigned int total_newton_iterations;
|
|
|
|
unsigned int total_linear_iterations;
|
2022-02-03 04:58:09 -06:00
|
|
|
unsigned int min_linear_iterations;
|
|
|
|
unsigned int max_linear_iterations;
|
|
|
|
|
2015-03-04 07:01:13 -06:00
|
|
|
|
2016-11-23 14:30:01 -06:00
|
|
|
bool converged;
|
2020-04-15 08:21:17 -05:00
|
|
|
int exit_status;
|
2016-11-23 14:30:01 -06:00
|
|
|
|
2020-05-08 02:21:25 -05:00
|
|
|
double global_time;
|
2020-05-07 14:00:39 -05:00
|
|
|
double timestep_length;
|
|
|
|
|
2012-06-14 07:13:03 -05:00
|
|
|
/// Default constructor initializing all times to 0.0.
|
2020-05-07 14:00:39 -05:00
|
|
|
SimulatorReportSingle();
|
2012-06-14 07:13:03 -05:00
|
|
|
/// Increment this report's times by those in sr.
|
2020-05-07 09:13:39 -05:00
|
|
|
void operator+=(const SimulatorReportSingle& sr);
|
|
|
|
/// Print a report suitable for a single simulation step.
|
|
|
|
void reportStep(std::ostringstream& os) const;
|
|
|
|
/// Print a report suitable for the end of a fully implicit case, leaving out the pressure/transport time.
|
|
|
|
void reportFullyImplicit(std::ostream& os, const SimulatorReportSingle* failedReport = nullptr) const;
|
2012-06-14 07:13:03 -05:00
|
|
|
};
|
2020-05-07 08:04:20 -05:00
|
|
|
|
2020-05-07 09:13:39 -05:00
|
|
|
struct SimulatorReport
|
|
|
|
{
|
|
|
|
SimulatorReportSingle success;
|
|
|
|
SimulatorReportSingle failure;
|
|
|
|
std::vector<SimulatorReportSingle> stepreports;
|
|
|
|
|
2020-05-07 14:00:39 -05:00
|
|
|
void operator+=(const SimulatorReportSingle& sr);
|
|
|
|
void operator+=(const SimulatorReport& sr);
|
|
|
|
void reportFullyImplicit(std::ostream& os) const;
|
2020-05-07 09:13:39 -05:00
|
|
|
void fullReports(std::ostream& os) const;
|
2020-05-06 14:41:03 -05:00
|
|
|
};
|
2020-05-07 08:04:20 -05:00
|
|
|
|
|
|
|
} // namespace Opm
|
2012-06-14 07:13:03 -05:00
|
|
|
|
|
|
|
#endif // OPM_SIMULATORREPORT_HEADER_INCLUDED
|