/* Copyright 2018 Equinor 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 . */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include namespace Opm { msim::msim(const EclipseState& state_arg) : state(state_arg) {} void msim::run(Schedule& schedule, EclipseIO& io, bool report_only) { const double week = 7 * 86400; data::Solution sol; SummaryState st(std::chrono::system_clock::from_time_t(schedule.getStartTime())); UDQState udq_state(schedule.getUDQConfig(0).params().undefinedValue()); Action::State action_state; Python python; io.writeInitial(); for (size_t report_step = 1; report_step < schedule.size(); report_step++) { data::Wells well_data; data::GroupAndNetworkValues group_nwrk_data; if (report_only) run_step(schedule, action_state, st, udq_state, sol, well_data, group_nwrk_data, report_step, io); else { double time_step = std::min(week, 0.5*schedule.stepLength(report_step - 1)); run_step(schedule, action_state, st, udq_state, sol, well_data, group_nwrk_data, report_step, time_step, io); } post_step(schedule, action_state, st, sol, well_data, group_nwrk_data, report_step); const auto& exit_status = schedule.exitStatus(); if (exit_status.has_value()) return; } } UDAValue msim::uda_val() { return UDAValue(); } void msim::post_step(Schedule& schedule, Action::State& action_state, SummaryState& st, data::Solution& /* sol */, data::Wells& /* well_data */, data::GroupAndNetworkValues& /* grp_nwrk_data */, size_t report_step) { const auto& actions = schedule.actions(report_step); if (actions.empty()) return; Action::Context context( st , schedule.getWListManager(report_step)); auto sim_time = schedule.simTime(report_step); for (const auto& action : actions.pending(action_state, sim_time)) { auto result = action->eval(context); if (result) schedule.applyAction(report_step, *action, result); } for (const auto& pyaction : actions.pending_python()) pyaction->run(this->state, schedule, report_step, st); } void msim::run_step(const Schedule& schedule, Action::State& action_state, SummaryState& st, UDQState& udq_state, data::Solution& sol, data::Wells& well_data, data::GroupAndNetworkValues& grp_nwrk_data, size_t report_step, EclipseIO& io) const { this->run_step(schedule, action_state, st, udq_state, sol, well_data, grp_nwrk_data, report_step, schedule.stepLength(report_step - 1), io); } void msim::run_step(const Schedule& schedule, Action::State& action_state, SummaryState& st, UDQState& udq_state, data::Solution& sol, data::Wells& well_data, data::GroupAndNetworkValues& group_nwrk_data, size_t report_step, double dt, EclipseIO& io) const { double start_time = schedule.seconds(report_step - 1); double end_time = schedule.seconds(report_step); double seconds_elapsed = start_time; while (seconds_elapsed < end_time) { double time_step = dt; if ((seconds_elapsed + time_step) > end_time) time_step = end_time - seconds_elapsed; this->simulate(schedule, st, sol, well_data, group_nwrk_data, report_step, seconds_elapsed, time_step); seconds_elapsed += time_step; io.summary().eval(st, report_step, seconds_elapsed, this->state, schedule, well_data, group_nwrk_data, {}); schedule.getUDQConfig( report_step ).eval(report_step, st, udq_state); this->output(action_state, st, udq_state, report_step, (seconds_elapsed < end_time), seconds_elapsed, sol, well_data, group_nwrk_data, io); } } void msim::output(Action::State& action_state, SummaryState& st, const UDQState& udq_state, size_t report_step, bool substep, double seconds_elapsed, const data::Solution& sol, const data::Wells& well_data, const data::GroupAndNetworkValues& group_nwrk_data, EclipseIO& io) const { RestartValue value(sol, well_data, group_nwrk_data); io.writeTimeStep(action_state, st, udq_state, report_step, substep, seconds_elapsed, value); } void msim::simulate(const Schedule& schedule, const SummaryState& st, data::Solution& sol, data::Wells& well_data, data::GroupAndNetworkValues& /* group_nwrk_data */, size_t report_step, double seconds_elapsed, double time_step) const { for (const auto& sol_pair : this->solutions) { auto func = sol_pair.second; func(this->state, schedule, sol, report_step, seconds_elapsed + time_step); } for (const auto& well_pair : this->well_rates) { const std::string& well_name = well_pair.first; const auto& sched_well = schedule.getWell(well_name, report_step); bool well_open = (sched_well.getStatus() == Well::Status::OPEN); data::Well& well = well_data[well_name]; for (const auto& rate_pair : well_pair.second) { auto rate = rate_pair.first; auto func = rate_pair.second; if (well_open) well.rates.set(rate, func(this->state, schedule, st, sol, report_step, seconds_elapsed + time_step)); else well.rates.set(rate, 0.0); } // This is complete bogus; a temporary fix to pass an assert() in the // the restart output. well.connections.resize(100); } } void msim::well_rate(const std::string& well, data::Rates::opt rate, std::function func) { this->well_rates[well][rate] = func; } void msim::solution(const std::string& field, std::function func) { this->solutions[field] = func; } }