-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #20 from jcrivenaes/cleanup
Cleanup
- Loading branch information
Showing
22 changed files
with
1,937 additions
and
45 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
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
Empty file.
Empty file.
Empty file.
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 |
---|---|---|
@@ -0,0 +1,163 @@ | ||
--- | ||
# Master global config for Ogre | ||
# Prototype by JRIV | ||
|
||
# ------------------------------------------------------------------------------ | ||
# Global settings | ||
# ------------------------------------------------------------------------------ | ||
|
||
global: | ||
|
||
DATES: &global_dates | ||
- 1991-07-01 | ||
- 2001-07-01 | ||
- 2003-07-01 | ||
- 2005-07-01 | ||
- 2010-07-01 | ||
- 2013-06-01 | ||
- 2016-07-01 | ||
|
||
DIFFDATES: &global_diffdates | ||
- [2001-07-01, 1991-07-01] | ||
- [2003-07-01, 2001-07-01] | ||
- [2005-07-01, 2003-07-01] | ||
- [2007-07-01, 2005-07-01] | ||
- [2010-07-01, 2007-07-01] | ||
- [2013-06-01, 2010-07-01] | ||
- [2016-07-01, 2013-06-01] | ||
- [2003-07-01, 1991-07-01] | ||
- [2005-07-01, 1991-07-01] | ||
- [2007-07-01, 1991-07-01] | ||
- [2010-07-01, 1991-07-01] | ||
- [2013-06-01, 1991-07-01] | ||
- [2016-07-01, 1991-07-01] | ||
|
||
FWL: &global_fwl | ||
- 3953.0 | ||
- 3960.0 | ||
- 3957.0 | ||
- 3957.5 | ||
- 3957.5 | ||
- 3957.5 | ||
- 3957.5 | ||
- 3957.5 | ||
- 3957.5 | ||
- 3955.5 | ||
- 3953.0 | ||
- 3952.5 | ||
- 3957.5 | ||
- 3957.5 | ||
- 3957.5 | ||
- 3957.5 | ||
- 3957.5 | ||
- 3968.0 | ||
- 3967.5 | ||
- 3968.5 | ||
- 3967.5 | ||
|
||
GOC: &global_goc | ||
- 3943.0 | ||
- 3945.0 | ||
- 3942.0 | ||
- 3944.5 | ||
- 3944.5 | ||
- 3944.5 | ||
- 3944.5 | ||
- 3946.0 | ||
- 3946.0 | ||
- 3942.5 | ||
- 3945.0 | ||
- 3944.5 | ||
- 3944.5 | ||
- 3944.5 | ||
- 3944.5 | ||
- 3944.5 | ||
- 3944.5 | ||
- 3941.0 | ||
- 3941.5 | ||
- 3942.5 | ||
- 3946.0 | ||
|
||
|
||
# ------------------------------------------------------------------------------ | ||
# RMS settings | ||
# ------------------------------------------------------------------------------ | ||
rms: | ||
horizons: !include rms_horizons.yml | ||
zones: !include rms_zones.yml | ||
|
||
# the following entries are called freeform entries: | ||
|
||
WELLMODEL: | ||
dtype: bool | ||
value: true ~ <WELLMODEL> | ||
|
||
WELLMODEL2: yes ~ <WELLMODEL2> | ||
|
||
SOMEXMODEL: false | ||
|
||
SOMEBOOL1: | ||
- true ~ <> | ||
- false ~ <> | ||
- true | ||
|
||
SOMEBOOL2: | ||
dtype: bool | ||
values: | ||
- true | ||
- false | ||
- true | ||
|
||
FWL: *global_fwl | ||
|
||
GOC: *global_goc | ||
|
||
# here example with dtype and value (not required) | ||
KH_MULT_CSAND: | ||
dtype: float | ||
value: 1.0 ~<KH_MULT_CSAND> # in <...>: template value from ERT | ||
|
||
KH_MULT_MTR: 1.0 ~ <KH_MULT_MTR> | ||
|
||
KH_MULT_MST: 1.0 | ||
|
||
# for dates, spesifying dtype can be more safe, but not required. Ad always treat | ||
# dates as "values", not "value" (since dates are complex data types) | ||
# I.e. treat dates always as lists. | ||
TESTSOMEDATE: | ||
dtype: date | ||
values: | ||
- 2017-01-01 | ||
|
||
# this should also work. | ||
TESTSOMEOTHERDATE: | ||
- 2017-01-02 | ||
|
||
TESTSOMEDATEPAIR: | ||
dtype: datepair | ||
values: [[2017-01-01, 2018-01-01]] | ||
|
||
# Dates wihtout dtype/values | ||
EDATES: *global_dates | ||
|
||
4D_DATES: | ||
dtype: date | ||
values: *global_dates | ||
|
||
DIFF4D_DATES: *global_diffdates | ||
|
||
# ----------------------------------------------------------------------------- | ||
# Relperm and PC related (shows use of anchors and aliases) | ||
# ----------------------------------------------------------------------------- | ||
A_OIL_CSAND: &aoilcsa 11.978799 ~ <A_OIL_CSAND> | ||
|
||
A_OIL_MTR: &aoilmtr 2.7431~<A_OIL_MTR> | ||
|
||
A_OIL_MST: &aoilmst 1.4545 | ||
|
||
BOIL: -20.99 ~ <BOIL> | ||
|
||
# A_OIL_MST: bull | ||
|
||
# refer to as aliases | ||
AVALUE: [*aoilcsa, *aoilmtr, *aoilmst, *aoilcsa, *aoilmtr, *aoilmst] |
Oops, something went wrong.