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

Reapply "Compositional well" #6132

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

Conversation

GitPaean
Copy link
Member

@GitPaean GitPaean commented Apr 1, 2025

This reverts commit c782a9f.

@GitPaean
Copy link
Member Author

GitPaean commented Apr 1, 2025

jenkins build this serial please

@GitPaean
Copy link
Member Author

GitPaean commented Apr 1, 2025

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();
    }

@GitPaean
Copy link
Member Author

GitPaean commented Apr 1, 2025

Since FlowProblemComp does not calculate the initialInplace_ yet, so maybe the easier solution is to let evalSummary function either use std::optional or pointer as argument instead of const Inplace& initialInPlace,.

I would like some comments from @akva2 before I go ahead.

@akva2
Copy link
Member

akva2 commented Apr 2, 2025

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,
Copy link
Member Author

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.

@GitPaean GitPaean force-pushed the restore-compositional-well branch from 7afa718 to 89736f5 Compare April 2, 2025 08:55
@GitPaean
Copy link
Member Author

GitPaean commented Apr 2, 2025

jenkins build this please

@GitPaean
Copy link
Member Author

GitPaean commented Apr 2, 2025

I am not deep in understanding the usage of the reference to optional std::optinal<T>& , any comments regarding this.

In the middle of fixing, was thinking to turn to pointer.

@GitPaean GitPaean force-pushed the restore-compositional-well branch from 89736f5 to cb17ea3 Compare April 2, 2025 11:30
@bska
Copy link
Member

bska commented Apr 2, 2025

I am not deep in understanding the usage of the reference to optional std::optinal<T>&

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.

@GitPaean
Copy link
Member Author

GitPaean commented Apr 2, 2025

I am not deep in understanding the usage of the reference to optional std::optinal<T>&

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.

@GitPaean
Copy link
Member Author

GitPaean commented Apr 2, 2025

I am not deep in understanding the usage of the reference to optional std::optinal<T>&

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.

see #6137 .

@GitPaean GitPaean force-pushed the restore-compositional-well branch from cb17ea3 to 63e0af2 Compare April 2, 2025 11:59
@GitPaean
Copy link
Member Author

GitPaean commented Apr 2, 2025

This PR requires OPM/opm-common#4552 and #6137 to be able to run. So I am making as draft for now.

@GitPaean GitPaean marked this pull request as draft April 2, 2025 12:00
@GitPaean
Copy link
Member Author

GitPaean commented Apr 2, 2025

The dependent PRs have been merged. I am marking this PR as ready for review.

@GitPaean GitPaean marked this pull request as ready for review April 2, 2025 17:31
@GitPaean
Copy link
Member Author

GitPaean commented Apr 2, 2025

jenkins build this please

Copy link
Member

@bska bska left a 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?

@GitPaean
Copy link
Member Author

GitPaean commented Apr 3, 2025

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 CMakeLists_files.cmake now.

@GitPaean
Copy link
Member Author

GitPaean commented Apr 3, 2025

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.

@GitPaean
Copy link
Member Author

GitPaean commented Apr 3, 2025

jenkins build this please

Copy link
Member

@bska bska left a 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.

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.

3 participants