This commit replaces the existing system for writing summary and specification (SMSPEC) files with a new implementation based on class EclOutput. We package the evaluators of individual parameters in a set of classes determined by the parameter's category which each implement a virtual 'update()' function. This update function ultimately writes new values into a SummaryState object. Add a factory-like system for instantiating the appropriate class depending on a SummaryNode's 'category()'. Also, add a helper class for managing the parameters that a configured in a simulation model's SUMMARY section in order to distinguish these from those parameters that are merely needed for restart purposes. The summary class's 'eval()' function then becomes a loop over the evaluators for parameters in SUMMARY followed by a loop over the evaluators for restart vectors. We reimplement the 'internal_store()' function in terms of an std::vector of a helper structure 'MiniStep' which holds a ministep ID (contiguous counter started at zero), a report step ID, and all the evaluated parameters of this ministep. The final write function then consists of outputting those ministep structures that have accumulated since the previous call to write(). If a simulation does not call write at all, then this will accumulate all parameters for all ministeps throughout the simulation history. We create the SMSPEC file at most once, and write to it at most each report step. We create the summary file once (if unified) or at each report step (if separate).
79 lines
2.3 KiB
C++
79 lines
2.3 KiB
C++
/*
|
|
Copyright 2016 Statoil ASA.
|
|
|
|
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_OUTPUT_SUMMARY_HPP
|
|
#define OPM_OUTPUT_SUMMARY_HPP
|
|
|
|
#include <map>
|
|
#include <memory>
|
|
#include <string>
|
|
#include <utility>
|
|
#include <vector>
|
|
|
|
namespace Opm {
|
|
class EclipseGrid;
|
|
class EclipseState;
|
|
class Schedule;
|
|
class SummaryConfig;
|
|
class SummaryState;
|
|
} // namespace Opm
|
|
|
|
namespace Opm { namespace data {
|
|
class WellRates;
|
|
}} // namespace Opm::data
|
|
|
|
namespace Opm { namespace out {
|
|
|
|
class Summary {
|
|
public:
|
|
using GlobalProcessParameters = std::map<std::string, double>;
|
|
using RegionParameters = std::map<std::string, std::vector<double>>;
|
|
using BlockValues = std::map<std::pair<std::string, int>, double>;
|
|
|
|
Summary(const EclipseState& es,
|
|
const SummaryConfig& sumcfg,
|
|
const EclipseGrid& grid,
|
|
const Schedule& sched,
|
|
const std::string& basename = "");
|
|
|
|
~Summary();
|
|
|
|
void add_timestep(const SummaryState& st, const int report_step);
|
|
|
|
void eval(SummaryState& summary_state,
|
|
const int report_step,
|
|
const double secs_elapsed,
|
|
const EclipseState& es,
|
|
const Schedule& schedule,
|
|
const data::WellRates& well_solution,
|
|
const GlobalProcessParameters& single_values,
|
|
const RegionParameters& region_values = {},
|
|
const BlockValues& block_values = {}) const;
|
|
|
|
void write() const;
|
|
|
|
private:
|
|
class SummaryImplementation;
|
|
std::unique_ptr<SummaryImplementation> pImpl_;
|
|
};
|
|
|
|
}} // namespace Opm::out
|
|
|
|
#endif //OPM_OUTPUT_SUMMARY_HPP
|