2020-03-19 03:10:19 -05:00
|
|
|
/*
|
|
|
|
Copyright 2020 Equinor AS.
|
|
|
|
|
|
|
|
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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
2020-09-20 15:16:07 -05:00
|
|
|
|
|
|
|
#include <opm/simulators/utils/ParallelSerialization.hpp>
|
|
|
|
|
2020-03-19 03:10:19 -05:00
|
|
|
#include <opm/parser/eclipse/EclipseState/EclipseState.hpp>
|
|
|
|
#include <opm/parser/eclipse/EclipseState/Schedule/Schedule.hpp>
|
|
|
|
#include <opm/parser/eclipse/EclipseState/Schedule/Action/ASTNode.hpp>
|
2020-05-28 02:36:20 -05:00
|
|
|
#include <opm/parser/eclipse/EclipseState/Schedule/MSW/SICD.hpp>
|
2020-03-19 03:10:19 -05:00
|
|
|
#include <opm/parser/eclipse/EclipseState/Schedule/MSW/Valve.hpp>
|
2021-09-24 07:42:15 -05:00
|
|
|
#include <opm/parser/eclipse/EclipseState/Schedule/Action/State.hpp>
|
|
|
|
#include <opm/parser/eclipse/EclipseState/Schedule/UDQ/UDQState.hpp>
|
2020-03-19 03:10:19 -05:00
|
|
|
#include <opm/parser/eclipse/EclipseState/Schedule/UDQ/UDQASTNode.hpp>
|
|
|
|
#include <opm/parser/eclipse/EclipseState/Schedule/UDQ/UDQConfig.hpp>
|
|
|
|
#include <opm/parser/eclipse/EclipseState/Schedule/Well/WList.hpp>
|
|
|
|
#include <opm/parser/eclipse/EclipseState/Schedule/Well/WListManager.hpp>
|
|
|
|
#include <opm/parser/eclipse/EclipseState/SummaryConfig/SummaryConfig.hpp>
|
|
|
|
|
|
|
|
#include <ebos/eclmpiserializer.hh>
|
|
|
|
|
|
|
|
#include <dune/common/parallel/mpihelper.hh>
|
|
|
|
|
|
|
|
namespace Opm {
|
|
|
|
|
|
|
|
void eclStateBroadcast(EclipseState& eclState, Schedule& schedule,
|
2021-09-24 07:42:15 -05:00
|
|
|
SummaryConfig& summaryConfig,
|
|
|
|
UDQState& udqState,
|
|
|
|
Action::State& actionState)
|
2020-03-19 03:10:19 -05:00
|
|
|
{
|
|
|
|
Opm::EclMpiSerializer ser(Dune::MPIHelper::getCollectiveCommunication());
|
|
|
|
ser.broadcast(eclState);
|
|
|
|
ser.broadcast(schedule);
|
|
|
|
ser.broadcast(summaryConfig);
|
2021-09-24 07:42:15 -05:00
|
|
|
ser.broadcast(udqState);
|
|
|
|
ser.broadcast(actionState);
|
2020-03-19 03:10:19 -05:00
|
|
|
}
|
|
|
|
|
2020-11-23 13:15:15 -06:00
|
|
|
void eclScheduleBroadcast(Schedule& schedule)
|
|
|
|
{
|
|
|
|
Opm::EclMpiSerializer ser(Dune::MPIHelper::getCollectiveCommunication());
|
|
|
|
ser.broadcast(schedule);
|
|
|
|
}
|
2020-03-19 03:10:19 -05:00
|
|
|
}
|