-
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
Modified version of safer well state #6114
base: master
Are you sure you want to change the base?
Conversation
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) { |
There was a problem hiding this comment.
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()); |
There was a problem hiding this comment.
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.
576a5c1
to
60d47cd
Compare
60d47cd
to
d0f70c6
Compare
I think this should be ready now. I have addressed the assert() issue pointed out by @GitPaean above. The major changes are:
|
jenkins build this failure_report please |
{ | ||
assert(isProducer()); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
assert(this->isProducer());
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oops, fixed.
99acb0f
to
8a8f761
Compare
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.
8a8f761
to
d791cdc
Compare
jenkins build this failure_report please |
Revised and rebased, based on #5990 originally. Removed some changes to simplify investigation.
For now, just for testing.