-
Notifications
You must be signed in to change notification settings - Fork 122
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes for parallel runs with multisegment wells that have shut perforations #6104
Open
lisajulia
wants to merge
8
commits into
OPM:master
Choose a base branch
from
lisajulia:feature/ms-wells-shut-perforations
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes for parallel runs with multisegment wells that have shut perforations #6104
lisajulia
wants to merge
8
commits into
OPM:master
from
lisajulia:feature/ms-wells-shut-perforations
+213
−87
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jenkins build this opm-tests=1310 please |
jenkins build this opm-tests=1310 please |
998a1e9
to
dab5bcd
Compare
jenkins build this opm-tests=1310 please |
dab5bcd
to
c27cb32
Compare
jenkins build this opm-tests=1310 please |
c27cb32
to
1ca53fd
Compare
jenkins build this opm-tests=1310 please |
1ca53fd
to
1900d42
Compare
jenkins build this opm-tests=1310 please |
1900d42
to
b85f25b
Compare
…se of only shut perforations on one process
…Well_impl With this change, parallel cases where one rank contains only SHUT perforations can be run
…ultisegmentWell_impl for parallel runs with MSWells where one rank contains only shut perforations
… part for ranks with only shut perforations
b85f25b
to
506b474
Compare
…ation on a rank Before, when the local_indices_ object was empty, a sequential run was assumed, yet that can also mean that there are no local_indices_ on this rank. Now, a sequential run is assumed only if the size of the communiator is 1.
28cd763
to
170bce3
Compare
jenkins build this opm-tests=1310 please |
This is needed for cases with SHUT perforations, since the structure std::vector<std::vector<int>> perforations_ of MultisegmentWellSegments works with only OPEN perforations
170bce3
to
7c8f100
Compare
jenkins build this opm-tests=1310 please |
… processes and have shut perforations
7c8f100
to
5f826b2
Compare
jenkins build this opm-tests=1310 please |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR fixes parallel runs with multisegment wells that have SHUT perforations.
The test added in the last commit of this PR fails without the changes before (#6139).
In order to address such simulations, I've changed the behavior when accessing structures that work with only the OPEN perforations, like std::vector<std::vector> perforations_ of MultisegmentWellSegments.
For this, I've added the construction of a activeToLocal map in the function WellState::initWellStateMSWell and then added this map and its conteraprt localToActive to the ParallelWellInfo class.