-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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
- Loading branch information
Gabriel Antão
committed
Jun 19, 2024
1 parent
acc3283
commit 0b5b557
Showing
4 changed files
with
127 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,13 @@ | ||
from barril.units import Scalar | ||
|
||
from alfasim_score.units import ROUGHNESS_UNIT | ||
|
||
WELLBORE_TOP_NODE = "WELBORE_TOP_NODE" | ||
WELLBORE_BOTTOM_NODE = "WELBORE_BOTTOM_NODE" | ||
ANNULUS_TOP_NODE_NAME = "WELLBORE_ANNULUS_TOP_NODE" | ||
|
||
CEMENT_NAME = "cement" | ||
|
||
ROCK_DEFAULT_ROUGHNESS = Scalar(0.1, ROUGHNESS_UNIT) | ||
CASING_DEFAULT_ROUGHNESS = Scalar(0.05, ROUGHNESS_UNIT) | ||
TUBING_DEFAULT_ROUGHNESS = Scalar(0.05, ROUGHNESS_UNIT) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters