-
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
Reapply "Compositional well" #6132
base: master
Are you sure you want to change the base?
Conversation
jenkins build this serial please |
The failure is due to the invalid option access from the following code, this->evalSummary(reportStepNum,
curTime,
localWellData,
localWBP,
localGroupAndNetworkData,
localAquiferData,
blockData,
miscSummaryData,
regionData,
inplace,
this->outputModule_->initialInplace(),
interRegFlows,
this->summaryState(),
this->udqState());
} const Inplace& initialInplace() const
{
return this->initialInplace_.value();
} |
Since I would like some comments from @akva2 before I go ahead. |
right. yes, I think initialInPlace should return the optional, and the function should take an optional, and deal accordingly on the inside. |
@@ -263,57 +263,6 @@ calc_inplace(std::map<std::string, double>& miscSummaryData, | |||
return inplace; | |||
} | |||
|
|||
template<class FluidSystem> | |||
void GenericOutputBlackoilModule<FluidSystem>:: | |||
outputFipAndResvLog(const Inplace& inplace, |
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.
this function assume that this->initialInplace()
always have value, so it is moved to outputBlackoilModule.hpp.
7afa718
to
89736f5
Compare
jenkins build this please |
I am not deep in understanding the usage of the reference to optional In the middle of fixing, was thinking to turn to pointer. |
89736f5
to
cb17ea3
Compare
Any chance you could split that part out to a separate PR? That would be easier to review/test than when it's embedded in the work that introduces compositional well models. |
I can do that. |
see #6137 . |
This reverts commit c782a9f.
cb17ea3
to
63e0af2
Compare
This PR requires OPM/opm-common#4552 and #6137 to be able to run. So I am making as draft for now. |
The dependent PRs have been merged. I am marking this PR as ready for review. |
jenkins build this please |
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.
I notice that none of the new header files are listed in CMakeLists_files.cmake
. Is that intentional?
I think it is just something we did not do it. I am adding all the .cpp and .hpp under flowexperimental/ to |
I just added them, let me know if you want some different organization. |
jenkins build this please |
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.
I notice that none of the new header files are listed in CMakeLists_files.cmake. Is that intentional?
I just added them, let me know if you want some different organization.
Thanks! Maybe we could add these files to the MAIN_SOURCE_FILES
list instead? We might not want to install them at this time, but it's nevertheless a good idea, I think, to have them in the file list as that makes it easier for those who use IDEs.
This reverts commit c782a9f.