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

Avoid assuming units for inplace volumes #47

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions metadata/volume_terminology_metric.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"BULK_OIL": {"description": "Bulk volume (oil zone)", "unit": "m³"},
"BULK_GAS": {"description": "Bulk volume (gas zone)", "unit": "m³"},
"BULK_TOTAL": {"description": "Bulk volume (total)", "unit": "m³"},
"NET_OIL": {"description": "Net volume (oil zone)", "unit": "m³"},
"NET_GAS": {"description": "Net volume (gas zone)", "unit": "m³"},
"NET_TOTAL": {"description": "Net volume (total)", "unit": "m³"},
"PORV_OIL": {"description": "Pore volume (oil zone)", "unit": "m³"},
"PORV_GAS": {"description": "Pore volume (gas zone)", "unit": "m³"},
"PORV_TOTAL": {"description": "Pore volume (total)", "unit": "m³"},
"PORE_OIL": {"description": "Pore volume (oil zone)", "unit": "m³"},
"PORE_GAS": {"description": "Pore volume (gas zone)", "unit": "m³"},
"PORE_TOTAL": {"description": "Pore volume (total)", "unit": "m³"},
"HCPV_OIL": {"description": "Hydro carbon pore volume (oil zone)", "unit": "m³"},
"HCPV_GAS": {"description": "Hydro carbon pore volume (gas zone)", "unit": "m³"},
"HCPV_TOTAL": {"description": "Hydro carbon pore volume (total zone)", "unit": "m³"},
"STOIIP_OIL": {"description": "Stock tank oil initially in place (oil zone)", "unit": "Sm³"},
"STOIIP_GAS": {"description": "Stock tank oil initially in place (gas zone)", "unit": "Sm³"},
"STOIIP_TOTAL": {"description": "Stock tank oil initially in place (total)", "unit": "Sm³"},
"GIIP_OIL": {"description": "Gas initially in place (oil zone)", "unit": "Sm³"},
"GIIP_GAS": {"description": "Gas initially in place (gas zone)", "unit": "Sm³"},
"GIIP_TOTAL": {"description": "Gas initially in place (total)", "unit": "Sm³"},
"RECOVERABLE_OIL": {"description": "Recoverable volume (oil zone)", "unit": "Sm³"},
"RECOVERABLE_GAS": {"description": "Recoverable volume (gas zone)", "unit": "Sm³"},
"RECOVERABLE_TOTAL": {"description": "Recoverable volume (total)", "unit": "Sm³"}
}

2 changes: 2 additions & 0 deletions webviz_examples/full_demo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ pages:
volfiles:
geogrid: geogrid--oil.csv
simgrid: simgrid--oil.csv
metadata: metric # Can also be defined as a path as seen in InplaceVolumes below

- title: Sensitivity study (time series)
content:
Expand All @@ -59,6 +60,7 @@ pages:
volfiles:
geogrid: geogrid--oil.csv
simgrid: simgrid--oil.csv
metadata: ../metadata/volume_terminology_metric.json

- title: Simulation time series
content:
Expand Down