-
Notifications
You must be signed in to change notification settings - Fork 0
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
Convert score casings from SCORE to alfacase #3
Conversation
PWPA-1933
PWPA-1933
Fill casing and open hole data to create description; Read casing materials; Add new constants for missing valus; Add new unit for roughness; PWPA-1933
PWPA-1933
PWPA-1933
PWPA-1933
8f78504
to
502b4e6
Compare
Fix the typing standard; PWPA-1933
502b4e6
to
000406b
Compare
src/alfasim_score/converter/alfacase/_tests/test_convert_casing.py
Outdated
Show resolved
Hide resolved
Change the casing enumeration schema; PWPA-1933
000a6f1
to
91fb652
Compare
src/alfasim_score/converter/alfacase/_tests/test_convert_casing.py
Outdated
Show resolved
Hide resolved
src/alfasim_score/converter/alfacase/_tests/test_convert_casing.py
Outdated
Show resolved
Hide resolved
c4299ce
to
3715d8c
Compare
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.
Well done!
start_position = data["final_md"] | ||
return open_hole | ||
|
||
def _convert_casings(self) -> WellDescription: |
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.
def _convert_casings(self) -> WellDescription: | |
def _convert_casings(self) -> CasingDescription: |
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.
Is job passing?
Isn't it dectect locally?
If so, check why.
start_position = data["final_md"] | ||
return open_hole | ||
|
||
def _convert_casings(self) -> WellDescription: |
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.
Is job passing?
Isn't it dectect locally?
If so, check why.
PWPA-1933
Quality Gate passedIssues Measures |
In this PR I implemented the loading and conversion of the data for CasingDescription: the lists of packers, tubing, casings and open hole. Some missing parameters were defined with default values and a default fluid was used as a placeholder. The tubing conversion was done here too.
PWPA-1933
PWPA-1931