Skip to content
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

Modified version of safer well state #6114

Open
wants to merge 3 commits into
base: master
Choose a base branch
from

Conversation

atgeirr
Copy link
Member

@atgeirr atgeirr commented Mar 27, 2025

Revised and rebased, based on #5990 originally. Removed some changes to simplify investigation.

For now, just for testing.

@atgeirr
Copy link
Member Author

atgeirr commented Mar 27, 2025

jenkins build this failure_report please

if (well->isProducer() && !zero_target) {
well->updateWellStateRates(simulator_, this->wellState(), local_deferredLogger);
//const bool zero_target = well->stoppedOrZeroRateTarget(simulator_, this->wellState(), local_deferredLogger);
if (well->isProducer()){// && !zero_target) {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Here, I think this is the main change of this PR from #5990 . Just putting note for own reference.

@@ -111,16 +111,29 @@ update(const WellState<Scalar>& well_state,
if (stop_or_zero_rate_target && seg == 0) {
value_[seg][WQTotal] = 0;
}
assert(ws.initializedFromReservoir());
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It is because of the if (well->isProducer()){// && !zero_target) { above, it caused many assertion failures, I believe. Because injectors also go here.

@atgeirr atgeirr force-pushed the safer_well_state branch 2 times, most recently from 576a5c1 to 60d47cd Compare April 2, 2025 09:54
@atgeirr atgeirr force-pushed the safer_well_state branch from 60d47cd to d0f70c6 Compare April 2, 2025 11:25
@atgeirr atgeirr marked this pull request as ready for review April 2, 2025 13:00
@atgeirr
Copy link
Member Author

atgeirr commented Apr 2, 2025

I think this should be ready now. I have addressed the assert() issue pointed out by @GitPaean above. The major changes are:

  • Ensure that WellInterface::initializeProducerWellState() [new name for updateWellStateRates()] is called when initializing a well from scratch, also rewrite that function to evaluate at bhp limit or 1 bar instead of 0 bar (from default-initialized primary variables).
  • Store well primary variables in SingleWellState, and restore from that class if they are set (and have the right size), when in the update() methods of the (Standard and Multisegment)PrimaryVariable classes.

@atgeirr
Copy link
Member Author

atgeirr commented Apr 2, 2025

jenkins build this failure_report please

{
assert(isProducer());
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

assert(this->isProducer());

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oops, fixed.

@atgeirr atgeirr force-pushed the safer_well_state branch from 99acb0f to 8a8f761 Compare April 2, 2025 13:39
Instead of evaluating the well at the state given by its current
state (primary variables) use the bhp limit (or 1 bar) to get the
rates that provide the correct fractions.
@atgeirr atgeirr force-pushed the safer_well_state branch from 8a8f761 to d791cdc Compare April 2, 2025 13:40
@atgeirr
Copy link
Member Author

atgeirr commented Apr 2, 2025

jenkins build this failure_report please

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants