ert 19.0.0rc4__py3-none-any.whl → 20.0.0b0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- ert/__main__.py +94 -63
- ert/analysis/_es_update.py +11 -14
- ert/config/__init__.py +3 -2
- ert/config/_create_observation_dataframes.py +51 -375
- ert/config/_observations.py +483 -200
- ert/config/_read_summary.py +4 -5
- ert/config/ert_config.py +53 -80
- ert/config/everest_control.py +40 -39
- ert/config/everest_response.py +1 -13
- ert/config/field.py +0 -72
- ert/config/forward_model_step.py +17 -1
- ert/config/gen_data_config.py +14 -17
- ert/config/observation_config_migrations.py +821 -0
- ert/config/parameter_config.py +18 -28
- ert/config/parsing/__init__.py +0 -1
- ert/config/parsing/_parse_zonemap.py +45 -0
- ert/config/parsing/config_keywords.py +1 -1
- ert/config/parsing/config_schema.py +2 -8
- ert/config/parsing/observations_parser.py +2 -0
- ert/config/response_config.py +5 -23
- ert/config/rft_config.py +44 -19
- ert/config/summary_config.py +1 -13
- ert/config/surface_config.py +0 -57
- ert/dark_storage/compute/misfits.py +0 -42
- ert/dark_storage/endpoints/__init__.py +0 -2
- ert/dark_storage/endpoints/experiments.py +2 -5
- ert/dark_storage/json_schema/experiment.py +1 -2
- ert/field_utils/__init__.py +0 -2
- ert/field_utils/field_utils.py +1 -117
- ert/gui/ertwidgets/listeditbox.py +9 -1
- ert/gui/ertwidgets/models/ertsummary.py +20 -6
- ert/gui/ertwidgets/pathchooser.py +9 -1
- ert/gui/ertwidgets/stringbox.py +11 -3
- ert/gui/ertwidgets/textbox.py +10 -3
- ert/gui/ertwidgets/validationsupport.py +19 -1
- ert/gui/main_window.py +11 -6
- ert/gui/simulation/experiment_panel.py +1 -1
- ert/gui/simulation/run_dialog.py +11 -1
- ert/gui/tools/manage_experiments/export_dialog.py +4 -0
- ert/gui/tools/manage_experiments/manage_experiments_panel.py +1 -0
- ert/gui/tools/manage_experiments/storage_info_widget.py +5 -2
- ert/gui/tools/manage_experiments/storage_widget.py +18 -3
- ert/gui/tools/plot/data_type_proxy_model.py +1 -1
- ert/gui/tools/plot/plot_api.py +35 -27
- ert/gui/tools/plot/plot_widget.py +5 -0
- ert/gui/tools/plot/plot_window.py +4 -7
- ert/run_models/ensemble_experiment.py +1 -3
- ert/run_models/ensemble_smoother.py +1 -3
- ert/run_models/everest_run_model.py +12 -13
- ert/run_models/initial_ensemble_run_model.py +19 -22
- ert/run_models/model_factory.py +7 -7
- ert/run_models/multiple_data_assimilation.py +1 -3
- ert/sample_prior.py +12 -14
- ert/services/__init__.py +7 -3
- ert/services/_storage_main.py +59 -22
- ert/services/ert_server.py +186 -24
- ert/shared/version.py +3 -3
- ert/storage/local_ensemble.py +46 -115
- ert/storage/local_experiment.py +0 -16
- ert/utils/__init__.py +20 -0
- ert/warnings/specific_warning_handler.py +3 -2
- {ert-19.0.0rc4.dist-info → ert-20.0.0b0.dist-info}/METADATA +4 -51
- {ert-19.0.0rc4.dist-info → ert-20.0.0b0.dist-info}/RECORD +75 -80
- everest/bin/everest_script.py +5 -5
- everest/bin/kill_script.py +2 -2
- everest/bin/monitor_script.py +2 -2
- everest/bin/utils.py +4 -4
- everest/detached/everserver.py +6 -6
- everest/gui/everest_client.py +0 -6
- everest/gui/main_window.py +2 -2
- everest/util/__init__.py +1 -19
- ert/dark_storage/compute/__init__.py +0 -0
- ert/dark_storage/endpoints/compute/__init__.py +0 -0
- ert/dark_storage/endpoints/compute/misfits.py +0 -95
- ert/services/_base_service.py +0 -387
- ert/services/webviz_ert_service.py +0 -20
- ert/shared/storage/command.py +0 -38
- ert/shared/storage/extraction.py +0 -42
- {ert-19.0.0rc4.dist-info → ert-20.0.0b0.dist-info}/WHEEL +0 -0
- {ert-19.0.0rc4.dist-info → ert-20.0.0b0.dist-info}/entry_points.txt +0 -0
- {ert-19.0.0rc4.dist-info → ert-20.0.0b0.dist-info}/licenses/COPYING +0 -0
- {ert-19.0.0rc4.dist-info → ert-20.0.0b0.dist-info}/top_level.txt +0 -0
ert/config/_read_summary.py
CHANGED
|
@@ -8,7 +8,6 @@ from __future__ import annotations
|
|
|
8
8
|
|
|
9
9
|
import fnmatch
|
|
10
10
|
import re
|
|
11
|
-
import warnings
|
|
12
11
|
from collections.abc import Callable, Sequence
|
|
13
12
|
from datetime import datetime, timedelta
|
|
14
13
|
from enum import Enum, auto
|
|
@@ -158,10 +157,10 @@ def _read_spec(
|
|
|
158
157
|
if kw.summary_variable == "TIME":
|
|
159
158
|
date_index = i
|
|
160
159
|
date_unit_str = kw.unit
|
|
161
|
-
except InvalidSummaryKeyError
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
160
|
+
except InvalidSummaryKeyError:
|
|
161
|
+
# InvalidSummaryKeyError will happen under normal conditions when
|
|
162
|
+
# the the number of wells set for WELLDIMS in the .DATA file is
|
|
163
|
+
# larger than the number of declared wells/groups/etc. These are skipped.
|
|
165
164
|
continue
|
|
166
165
|
|
|
167
166
|
if should_load_key(key):
|
ert/config/ert_config.py
CHANGED
|
@@ -7,7 +7,6 @@ import pprint
|
|
|
7
7
|
import re
|
|
8
8
|
from collections import Counter, defaultdict
|
|
9
9
|
from collections.abc import Mapping
|
|
10
|
-
from datetime import datetime
|
|
11
10
|
from functools import cached_property
|
|
12
11
|
from os import path
|
|
13
12
|
from pathlib import Path
|
|
@@ -23,7 +22,7 @@ from ert.substitutions import Substitutions
|
|
|
23
22
|
from ._create_observation_dataframes import create_observation_dataframes
|
|
24
23
|
from ._design_matrix_validator import DesignMatrixValidator
|
|
25
24
|
from ._observations import (
|
|
26
|
-
|
|
25
|
+
GeneralObservation,
|
|
27
26
|
Observation,
|
|
28
27
|
RFTObservation,
|
|
29
28
|
SummaryObservation,
|
|
@@ -52,7 +51,6 @@ from .parsing import (
|
|
|
52
51
|
ConfigWarning,
|
|
53
52
|
ErrorInfo,
|
|
54
53
|
ForwardModelStepKeys,
|
|
55
|
-
HistorySource,
|
|
56
54
|
HookRuntime,
|
|
57
55
|
ObservationConfigError,
|
|
58
56
|
init_forward_model_schema,
|
|
@@ -62,7 +60,6 @@ from .parsing import (
|
|
|
62
60
|
)
|
|
63
61
|
from .parsing.observations_parser import ObservationDict
|
|
64
62
|
from .queue_config import KnownQueueOptions, QueueConfig
|
|
65
|
-
from .refcase import Refcase
|
|
66
63
|
from .rft_config import RFTConfig
|
|
67
64
|
from .workflow import Workflow
|
|
68
65
|
from .workflow_fixtures import fixtures_per_hook
|
|
@@ -104,23 +101,6 @@ def _seed_sequence(seed: int | None) -> int:
|
|
|
104
101
|
return int_seed
|
|
105
102
|
|
|
106
103
|
|
|
107
|
-
def _read_time_map(file_contents: str) -> list[datetime]:
|
|
108
|
-
def str_to_datetime(date_str: str) -> datetime:
|
|
109
|
-
try:
|
|
110
|
-
return datetime.fromisoformat(date_str)
|
|
111
|
-
except ValueError:
|
|
112
|
-
logger.warning(
|
|
113
|
-
"DD/MM/YYYY date format is deprecated"
|
|
114
|
-
", please use ISO date format YYYY-MM-DD."
|
|
115
|
-
)
|
|
116
|
-
return datetime.strptime(date_str, "%d/%m/%Y")
|
|
117
|
-
|
|
118
|
-
dates = []
|
|
119
|
-
for line in file_contents.splitlines():
|
|
120
|
-
dates.append(str_to_datetime(line.strip()))
|
|
121
|
-
return dates
|
|
122
|
-
|
|
123
|
-
|
|
124
104
|
def create_forward_model_json(
|
|
125
105
|
context: dict[str, str],
|
|
126
106
|
forward_model_steps: list[ForwardModelStep],
|
|
@@ -688,14 +668,6 @@ def log_observation_keys(
|
|
|
688
668
|
if key not in {"name", "type"}
|
|
689
669
|
)
|
|
690
670
|
|
|
691
|
-
if "HISTORY_OBSERVATION" in observation_type_counts:
|
|
692
|
-
msg = (
|
|
693
|
-
"HISTORY_OBSERVATION is deprecated and will be removed. "
|
|
694
|
-
"Please use SUMMARY_OBSERVATION instead."
|
|
695
|
-
)
|
|
696
|
-
ConfigWarning.warn(msg)
|
|
697
|
-
logger.warning(msg)
|
|
698
|
-
|
|
699
671
|
logger.info(
|
|
700
672
|
f"Count of observation types:\n\t{dict(observation_type_counts)}\n"
|
|
701
673
|
f"Count of observation keywords:\n\t{dict(observation_keyword_counts)}"
|
|
@@ -741,9 +713,7 @@ class ErtConfig(BaseModel):
|
|
|
741
713
|
user_config_file: str = "no_config"
|
|
742
714
|
config_path: str = Field(init=False, default="")
|
|
743
715
|
observation_declarations: list[Observation] = Field(default_factory=list)
|
|
744
|
-
|
|
745
|
-
history_source: HistorySource = HistorySource.REFCASE_HISTORY
|
|
746
|
-
refcase: Refcase | None = None
|
|
716
|
+
zonemap: dict[int, list[str]] = Field(default_factory=dict)
|
|
747
717
|
_observations: dict[str, pl.DataFrame] | None = PrivateAttr(None)
|
|
748
718
|
|
|
749
719
|
@property
|
|
@@ -760,23 +730,15 @@ class ErtConfig(BaseModel):
|
|
|
760
730
|
input_files=[self.runpath_config.eclbase_format_string],
|
|
761
731
|
data_to_read={},
|
|
762
732
|
locations=[],
|
|
733
|
+
zonemap=self.zonemap,
|
|
763
734
|
)
|
|
764
|
-
|
|
735
|
+
self._observations = create_observation_dataframes(
|
|
765
736
|
self.observation_declarations,
|
|
766
|
-
self.refcase,
|
|
767
|
-
cast(
|
|
768
|
-
GenDataConfig | None,
|
|
769
|
-
self.ensemble_config.response_configs.get("gen_data", None),
|
|
770
|
-
),
|
|
771
737
|
cast(
|
|
772
738
|
RFTConfig | None,
|
|
773
739
|
self.ensemble_config.response_configs.get("rft", None),
|
|
774
740
|
),
|
|
775
|
-
self.time_map,
|
|
776
|
-
self.history_source,
|
|
777
741
|
)
|
|
778
|
-
self._observations = computed
|
|
779
|
-
return computed
|
|
780
742
|
return self._observations
|
|
781
743
|
|
|
782
744
|
@model_validator(mode="after")
|
|
@@ -832,6 +794,46 @@ class ErtConfig(BaseModel):
|
|
|
832
794
|
)
|
|
833
795
|
return self
|
|
834
796
|
|
|
797
|
+
@model_validator(mode="after")
|
|
798
|
+
def validate_observations_against_responses(self) -> Self:
|
|
799
|
+
gen_data_config = cast(
|
|
800
|
+
GenDataConfig | None,
|
|
801
|
+
self.ensemble_config.response_configs.get("gen_data", None),
|
|
802
|
+
)
|
|
803
|
+
|
|
804
|
+
errors: list[ErrorInfo] = []
|
|
805
|
+
for obs in self.observation_declarations:
|
|
806
|
+
if isinstance(obs, GeneralObservation):
|
|
807
|
+
response_key = obs.data
|
|
808
|
+
if gen_data_config is None or response_key not in gen_data_config.keys:
|
|
809
|
+
errors.append(
|
|
810
|
+
ErrorInfo(
|
|
811
|
+
message=(
|
|
812
|
+
f"Problem with GENERAL_OBSERVATION {obs.name}:"
|
|
813
|
+
f" No GEN_DATA with name {response_key!r} found"
|
|
814
|
+
)
|
|
815
|
+
).set_context(response_key)
|
|
816
|
+
)
|
|
817
|
+
continue
|
|
818
|
+
assert isinstance(gen_data_config, GenDataConfig)
|
|
819
|
+
_, report_steps = gen_data_config.get_args_for_key(response_key)
|
|
820
|
+
response_report_steps = [] if report_steps is None else report_steps
|
|
821
|
+
if response_report_steps and obs.restart not in response_report_steps:
|
|
822
|
+
errors.append(
|
|
823
|
+
ErrorInfo(
|
|
824
|
+
message=(
|
|
825
|
+
f"The GEN_DATA node:{response_key} is not configured "
|
|
826
|
+
f"to load from report step:{obs.restart} for the "
|
|
827
|
+
f"observation:{obs.name}"
|
|
828
|
+
)
|
|
829
|
+
).set_context(response_key)
|
|
830
|
+
)
|
|
831
|
+
|
|
832
|
+
if errors:
|
|
833
|
+
raise ConfigValidationError.from_collected(errors)
|
|
834
|
+
|
|
835
|
+
return self
|
|
836
|
+
|
|
835
837
|
def __eq__(self, other: object) -> bool:
|
|
836
838
|
if not isinstance(other, ErtConfig):
|
|
837
839
|
return False
|
|
@@ -1029,7 +1031,7 @@ class ErtConfig(BaseModel):
|
|
|
1029
1031
|
summary_obs = {
|
|
1030
1032
|
obs.key
|
|
1031
1033
|
for obs in obs_configs
|
|
1032
|
-
if isinstance(obs,
|
|
1034
|
+
if isinstance(obs, SummaryObservation)
|
|
1033
1035
|
}
|
|
1034
1036
|
if summary_obs:
|
|
1035
1037
|
summary_keys = ErtConfig._read_summary_keys(config_dict)
|
|
@@ -1037,16 +1039,6 @@ class ErtConfig(BaseModel):
|
|
|
1037
1039
|
[key] for key in summary_obs if key not in summary_keys
|
|
1038
1040
|
]
|
|
1039
1041
|
ensemble_config = EnsembleConfig.from_dict(config_dict=config_dict)
|
|
1040
|
-
time_map = None
|
|
1041
|
-
if time_map_args := config_dict.get(ConfigKeys.TIME_MAP):
|
|
1042
|
-
time_map_file, time_map_contents = time_map_args
|
|
1043
|
-
try:
|
|
1044
|
-
time_map = _read_time_map(time_map_contents)
|
|
1045
|
-
except ValueError as err:
|
|
1046
|
-
raise ConfigValidationError.with_context(
|
|
1047
|
-
f"Could not read timemap file {time_map_file}: {err}",
|
|
1048
|
-
time_map_file,
|
|
1049
|
-
) from err
|
|
1050
1042
|
except ConfigValidationError as err:
|
|
1051
1043
|
errors.append(err)
|
|
1052
1044
|
except PydanticValidationError as err:
|
|
@@ -1099,9 +1091,6 @@ class ErtConfig(BaseModel):
|
|
|
1099
1091
|
|
|
1100
1092
|
env_vars = {}
|
|
1101
1093
|
substituter = Substitutions(substitutions)
|
|
1102
|
-
history_source = config_dict.get(
|
|
1103
|
-
ConfigKeys.HISTORY_SOURCE, HistorySource.REFCASE_HISTORY
|
|
1104
|
-
)
|
|
1105
1094
|
|
|
1106
1095
|
# Insert env vars from plugins/site config
|
|
1107
1096
|
for key, val in cls.ENV_VARS.items():
|
|
@@ -1123,21 +1112,10 @@ class ErtConfig(BaseModel):
|
|
|
1123
1112
|
user_configured_.add(key)
|
|
1124
1113
|
env_vars[key] = substituter.substitute(val)
|
|
1125
1114
|
|
|
1126
|
-
|
|
1127
|
-
|
|
1128
|
-
user_prioritize_private_ip_address = bool(
|
|
1129
|
-
config_dict[ConfigKeys.PRIORITIZE_PRIVATE_IP_ADDRESS]
|
|
1130
|
-
)
|
|
1131
|
-
if prioritize_private_ip_address != user_prioritize_private_ip_address:
|
|
1132
|
-
logger.warning(
|
|
1133
|
-
"PRIORITIZE_PRIVATE_IP_ADDRESS was overwritten by user: "
|
|
1134
|
-
f"{prioritize_private_ip_address} -> "
|
|
1135
|
-
f"{user_prioritize_private_ip_address}"
|
|
1136
|
-
)
|
|
1137
|
-
prioritize_private_ip_address = user_prioritize_private_ip_address
|
|
1115
|
+
if errors:
|
|
1116
|
+
raise ObservationConfigError.from_collected(errors)
|
|
1138
1117
|
|
|
1139
1118
|
try:
|
|
1140
|
-
refcase = Refcase.from_config_dict(config_dict)
|
|
1141
1119
|
cls_config = cls(
|
|
1142
1120
|
substitutions=substitutions,
|
|
1143
1121
|
ensemble_config=ensemble_config,
|
|
@@ -1159,10 +1137,8 @@ class ErtConfig(BaseModel):
|
|
|
1159
1137
|
runpath_config=model_config,
|
|
1160
1138
|
user_config_file=config_file_path,
|
|
1161
1139
|
observation_declarations=list(obs_configs),
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
refcase=refcase,
|
|
1165
|
-
prioritize_private_ip_address=prioritize_private_ip_address,
|
|
1140
|
+
prioritize_private_ip_address=cls.PRIORITIZE_PRIVATE_IP_ADDRESS,
|
|
1141
|
+
zonemap=config_dict.get(ConfigKeys.ZONEMAP, ("", {}))[1],
|
|
1166
1142
|
)
|
|
1167
1143
|
|
|
1168
1144
|
# The observations are created here because create_observation_dataframes
|
|
@@ -1176,20 +1152,17 @@ class ErtConfig(BaseModel):
|
|
|
1176
1152
|
input_files=[eclbase],
|
|
1177
1153
|
data_to_read={},
|
|
1178
1154
|
locations=[],
|
|
1155
|
+
zonemap=cls_config.zonemap,
|
|
1179
1156
|
)
|
|
1157
|
+
|
|
1158
|
+
# PS:
|
|
1159
|
+
# This mutates the rft config and is necessary for the moment
|
|
1180
1160
|
cls_config._observations = create_observation_dataframes(
|
|
1181
1161
|
obs_configs,
|
|
1182
|
-
refcase,
|
|
1183
|
-
cast(
|
|
1184
|
-
GenDataConfig | None,
|
|
1185
|
-
ensemble_config.response_configs.get("gen_data", None),
|
|
1186
|
-
),
|
|
1187
1162
|
cast(
|
|
1188
1163
|
RFTConfig | None,
|
|
1189
1164
|
ensemble_config.response_configs.get("rft", None),
|
|
1190
1165
|
),
|
|
1191
|
-
time_map,
|
|
1192
|
-
history_source,
|
|
1193
1166
|
)
|
|
1194
1167
|
except PydanticValidationError as err:
|
|
1195
1168
|
raise ConfigValidationError.from_pydantic(err) from err
|
ert/config/everest_control.py
CHANGED
|
@@ -11,13 +11,14 @@ from typing import TYPE_CHECKING, Any, Literal, Self
|
|
|
11
11
|
|
|
12
12
|
import networkx as nx
|
|
13
13
|
import numpy as np
|
|
14
|
+
import polars as pl
|
|
14
15
|
import xarray as xr
|
|
15
16
|
from pydantic import BaseModel, ConfigDict, Field, model_validator
|
|
16
17
|
from ropt.workflow import find_sampler_plugin
|
|
17
18
|
|
|
18
19
|
from ert.substitutions import substitute_runpath_name
|
|
19
20
|
|
|
20
|
-
from .parameter_config import ParameterConfig
|
|
21
|
+
from .parameter_config import ParameterCardinality, ParameterConfig
|
|
21
22
|
|
|
22
23
|
if TYPE_CHECKING:
|
|
23
24
|
import numpy.typing as npt
|
|
@@ -175,31 +176,47 @@ class EverestControl(ParameterConfig):
|
|
|
175
176
|
def parameter_keys(self) -> list[str]:
|
|
176
177
|
return self.input_keys
|
|
177
178
|
|
|
179
|
+
@property
|
|
180
|
+
def cardinality(self) -> ParameterCardinality:
|
|
181
|
+
return ParameterCardinality.multiple_configs_per_ensemble_dataset
|
|
182
|
+
|
|
178
183
|
def read_from_runpath(
|
|
179
184
|
self, run_path: Path, real_nr: int, iteration: int
|
|
180
185
|
) -> xr.Dataset:
|
|
181
186
|
raise NotImplementedError
|
|
182
187
|
|
|
188
|
+
def load_parameters(
|
|
189
|
+
self, ensemble: Ensemble, realizations: npt.NDArray[np.int_]
|
|
190
|
+
) -> npt.NDArray[np.float64]:
|
|
191
|
+
raise NotImplementedError
|
|
192
|
+
|
|
193
|
+
def load_parameter_graph(self) -> nx.Graph[int]:
|
|
194
|
+
raise NotImplementedError
|
|
195
|
+
|
|
196
|
+
def __len__(self) -> int:
|
|
197
|
+
return len(self.input_keys)
|
|
198
|
+
|
|
183
199
|
def write_to_runpath(
|
|
184
200
|
self, run_path: Path, real_nr: int, ensemble: Ensemble
|
|
185
201
|
) -> None:
|
|
186
|
-
file_path = run_path / substitute_runpath_name(
|
|
202
|
+
file_path: Path = run_path / substitute_runpath_name(
|
|
187
203
|
self.output_file, real_nr, ensemble.iteration
|
|
188
204
|
)
|
|
189
205
|
Path.mkdir(file_path.parent, exist_ok=True, parents=True)
|
|
190
206
|
|
|
191
|
-
data:
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
207
|
+
data: dict[str, Any] = {}
|
|
208
|
+
df = ensemble.load_parameters(self.name, real_nr)
|
|
209
|
+
assert isinstance(df, pl.DataFrame)
|
|
210
|
+
df = df.drop("realization")
|
|
211
|
+
df = df.rename({col: col.replace(f"{self.name}.", "", 1) for col in df.columns})
|
|
212
|
+
for c in df.columns:
|
|
213
|
+
if "." in c:
|
|
214
|
+
top_key, sub_key = c.split(".", 1)
|
|
215
|
+
if top_key not in data:
|
|
216
|
+
data[top_key] = {}
|
|
217
|
+
data[top_key][sub_key] = df[c].item()
|
|
218
|
+
else:
|
|
219
|
+
data[c] = df[c].item()
|
|
203
220
|
|
|
204
221
|
file_path.write_text(json.dumps(data), encoding="utf-8")
|
|
205
222
|
|
|
@@ -207,28 +224,12 @@ class EverestControl(ParameterConfig):
|
|
|
207
224
|
self,
|
|
208
225
|
from_data: npt.NDArray[np.float64],
|
|
209
226
|
iens_active_index: npt.NDArray[np.int_],
|
|
210
|
-
) -> Iterator[tuple[
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
for x in self.parameter_keys
|
|
220
|
-
],
|
|
221
|
-
}
|
|
222
|
-
),
|
|
223
|
-
)
|
|
224
|
-
|
|
225
|
-
def load_parameters(
|
|
226
|
-
self, ensemble: Ensemble, realizations: npt.NDArray[np.int_]
|
|
227
|
-
) -> npt.NDArray[np.float64]:
|
|
228
|
-
raise NotImplementedError
|
|
229
|
-
|
|
230
|
-
def load_parameter_graph(self) -> nx.Graph[int]:
|
|
231
|
-
raise NotImplementedError
|
|
232
|
-
|
|
233
|
-
def __len__(self) -> int:
|
|
234
|
-
return len(self.input_keys)
|
|
227
|
+
) -> Iterator[tuple[None, pl.DataFrame]]:
|
|
228
|
+
df = pl.DataFrame(
|
|
229
|
+
{
|
|
230
|
+
"realization": iens_active_index,
|
|
231
|
+
**{k: from_data[:, i] for i, k in enumerate(self.parameter_keys)},
|
|
232
|
+
},
|
|
233
|
+
strict=False,
|
|
234
|
+
)
|
|
235
|
+
yield None, df
|
ert/config/everest_response.py
CHANGED
|
@@ -7,7 +7,7 @@ import polars as pl
|
|
|
7
7
|
from ert.substitutions import substitute_runpath_name
|
|
8
8
|
|
|
9
9
|
from .parsing import ConfigDict
|
|
10
|
-
from .response_config import InvalidResponseFile, ResponseConfig
|
|
10
|
+
from .response_config import InvalidResponseFile, ResponseConfig
|
|
11
11
|
from .responses_index import responses_index
|
|
12
12
|
|
|
13
13
|
|
|
@@ -21,18 +21,6 @@ class EverestResponse(ResponseConfig):
|
|
|
21
21
|
def primary_key(self) -> list[str]:
|
|
22
22
|
return []
|
|
23
23
|
|
|
24
|
-
@property
|
|
25
|
-
def metadata(self) -> list[ResponseMetadata]:
|
|
26
|
-
return [
|
|
27
|
-
ResponseMetadata(
|
|
28
|
-
response_type=self.type,
|
|
29
|
-
response_key=response_key,
|
|
30
|
-
finalized=self.has_finalized_keys,
|
|
31
|
-
filter_on=None,
|
|
32
|
-
)
|
|
33
|
-
for response_key in self.keys
|
|
34
|
-
]
|
|
35
|
-
|
|
36
24
|
@property
|
|
37
25
|
def expected_input_files(self) -> list[str]:
|
|
38
26
|
return self.input_files
|
ert/config/field.py
CHANGED
|
@@ -17,13 +17,10 @@ from ert.field_utils import (
|
|
|
17
17
|
ErtboxParameters,
|
|
18
18
|
FieldFileFormat,
|
|
19
19
|
Shape,
|
|
20
|
-
calc_rho_for_2d_grid_layer,
|
|
21
20
|
calculate_ertbox_parameters,
|
|
22
21
|
get_shape,
|
|
23
22
|
read_field,
|
|
24
23
|
save_field,
|
|
25
|
-
transform_local_ellipse_angle_to_local_coords,
|
|
26
|
-
transform_positions_to_local_field_coordinates,
|
|
27
24
|
)
|
|
28
25
|
from ert.substitutions import substitute_runpath_name
|
|
29
26
|
from ert.utils import log_duration
|
|
@@ -318,75 +315,6 @@ class Field(ParameterConfig):
|
|
|
318
315
|
def nz(self) -> int:
|
|
319
316
|
return self.ertbox_params.nz
|
|
320
317
|
|
|
321
|
-
def calc_rho_for_2d_grid_layer(
|
|
322
|
-
self,
|
|
323
|
-
obs_xpos: npt.NDArray[np.float64],
|
|
324
|
-
obs_ypos: npt.NDArray[np.float64],
|
|
325
|
-
obs_main_range: npt.NDArray[np.float64],
|
|
326
|
-
obs_perp_range: npt.NDArray[np.float64],
|
|
327
|
-
obs_anisotropy_angle: npt.NDArray[np.float64],
|
|
328
|
-
right_handed_grid_indexing: bool = True,
|
|
329
|
-
) -> npt.NDArray[np.float64]:
|
|
330
|
-
"""Function to calculate scaling values to be used in the RHO matrix
|
|
331
|
-
for distance-based localization.
|
|
332
|
-
|
|
333
|
-
Args:
|
|
334
|
-
obs_xpos: x-coordinates in global coordinates of observations
|
|
335
|
-
obs_ypos: y-coordinates in global coordinates of observations
|
|
336
|
-
obs_main_range: Size of influence ellipse main principal direction.
|
|
337
|
-
obs_perp_range: Size of influence ellipse second principal direction.
|
|
338
|
-
obs_anisotropy_angle: Rotation angle anticlock wise of main principal
|
|
339
|
-
direction of influence ellipse relative to global coordinate
|
|
340
|
-
system's x-axis.
|
|
341
|
-
right_handed_grid_indexing: When this is True the field parameters
|
|
342
|
-
grid index order counts J-index down from ny-1 to 0.
|
|
343
|
-
If the value is False, the grid index order is to count J index
|
|
344
|
-
from 0 to ny-1. As standard for 3D field parameters,
|
|
345
|
-
the grid index order follows the right_handed grid indexing.
|
|
346
|
-
|
|
347
|
-
Returns:
|
|
348
|
-
Scaling values (elements of the RHO matrix) as a numpy array
|
|
349
|
-
of shape=(nx,ny,nobservations)
|
|
350
|
-
|
|
351
|
-
"""
|
|
352
|
-
# Can only be used if ertbox coordinate system is defined
|
|
353
|
-
assert self.ertbox_params.xinc is not None, (
|
|
354
|
-
"Parameter for grid resolution must be defined"
|
|
355
|
-
)
|
|
356
|
-
assert self.ertbox_params.yinc is not None, (
|
|
357
|
-
"Parameter for grid resolution must be defined"
|
|
358
|
-
)
|
|
359
|
-
assert self.ertbox_params.origin is not None, (
|
|
360
|
-
"Parameter for grid origin must be defined"
|
|
361
|
-
)
|
|
362
|
-
assert self.ertbox_params.rotation_angle is not None, (
|
|
363
|
-
"Parameter for grid rotation must be defined"
|
|
364
|
-
)
|
|
365
|
-
# Transform positions of observations into local coordinates
|
|
366
|
-
xpos, ypos = transform_positions_to_local_field_coordinates(
|
|
367
|
-
self.ertbox_params.origin,
|
|
368
|
-
self.ertbox_params.rotation_angle,
|
|
369
|
-
obs_xpos,
|
|
370
|
-
obs_ypos,
|
|
371
|
-
)
|
|
372
|
-
# Transform localization ellipse orientation to local coordinates
|
|
373
|
-
ellipse_rotation = transform_local_ellipse_angle_to_local_coords(
|
|
374
|
-
self.ertbox_params.rotation_angle, obs_anisotropy_angle
|
|
375
|
-
)
|
|
376
|
-
|
|
377
|
-
return calc_rho_for_2d_grid_layer(
|
|
378
|
-
self.ertbox_params.nx,
|
|
379
|
-
self.ertbox_params.ny,
|
|
380
|
-
self.ertbox_params.xinc,
|
|
381
|
-
self.ertbox_params.yinc,
|
|
382
|
-
xpos,
|
|
383
|
-
ypos,
|
|
384
|
-
obs_main_range,
|
|
385
|
-
obs_perp_range,
|
|
386
|
-
ellipse_rotation,
|
|
387
|
-
right_handed_grid_indexing=right_handed_grid_indexing,
|
|
388
|
-
)
|
|
389
|
-
|
|
390
318
|
|
|
391
319
|
TRANSFORM_FUNCTIONS: Final[dict[str, Callable[[Any], Any]]] = {
|
|
392
320
|
"LN": np.log,
|
ert/config/forward_model_step.py
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
from __future__ import annotations
|
|
2
2
|
|
|
3
|
+
import inspect
|
|
3
4
|
import logging
|
|
4
5
|
from typing import (
|
|
5
6
|
TYPE_CHECKING,
|
|
@@ -95,9 +96,24 @@ class ForwardModelStepOptions(TypedDict, total=False):
|
|
|
95
96
|
required_keywords: NotRequired[list[str]]
|
|
96
97
|
|
|
97
98
|
|
|
99
|
+
def _get_source_package() -> str:
|
|
100
|
+
"""Return the top-level package name of the calling forward model step.
|
|
101
|
+
|
|
102
|
+
Finds the documentation() call (stack[2]) under the forward model step class
|
|
103
|
+
and return its parent module
|
|
104
|
+
"""
|
|
105
|
+
stack = inspect.stack()
|
|
106
|
+
if len(stack) > 2:
|
|
107
|
+
caller_frame = stack[2]
|
|
108
|
+
caller_module = inspect.getmodule(caller_frame.frame)
|
|
109
|
+
if caller_module:
|
|
110
|
+
return caller_module.__name__.split(".")[0]
|
|
111
|
+
return "not found"
|
|
112
|
+
|
|
113
|
+
|
|
98
114
|
class ForwardModelStepDocumentation(BaseModel):
|
|
99
115
|
config_file: str | None = Field(default=None)
|
|
100
|
-
source_package: str = Field(
|
|
116
|
+
source_package: str = Field(default_factory=_get_source_package)
|
|
101
117
|
source_function_name: str = Field(default="ert")
|
|
102
118
|
description: str = Field(default="No description")
|
|
103
119
|
examples: str = Field(default="No examples")
|
ert/config/gen_data_config.py
CHANGED
|
@@ -14,7 +14,6 @@ from .parsing import ConfigDict, ConfigValidationError, ConfigWarning, ErrorInfo
|
|
|
14
14
|
from .response_config import (
|
|
15
15
|
InvalidResponseFile,
|
|
16
16
|
ResponseConfig,
|
|
17
|
-
ResponseMetadata,
|
|
18
17
|
)
|
|
19
18
|
from .responses_index import responses_index
|
|
20
19
|
|
|
@@ -24,22 +23,6 @@ class GenDataConfig(ResponseConfig):
|
|
|
24
23
|
report_steps_list: list[list[int] | None] = Field(default_factory=list)
|
|
25
24
|
has_finalized_keys: bool = True
|
|
26
25
|
|
|
27
|
-
@property
|
|
28
|
-
def metadata(self) -> list[ResponseMetadata]:
|
|
29
|
-
return [
|
|
30
|
-
ResponseMetadata(
|
|
31
|
-
response_type=self.type,
|
|
32
|
-
response_key=response_key,
|
|
33
|
-
finalized=self.has_finalized_keys,
|
|
34
|
-
filter_on={"report_step": report_steps}
|
|
35
|
-
if report_steps is not None
|
|
36
|
-
else {"report_step": [0]},
|
|
37
|
-
)
|
|
38
|
-
for response_key, report_steps in zip(
|
|
39
|
-
self.keys, self.report_steps_list, strict=False
|
|
40
|
-
)
|
|
41
|
-
]
|
|
42
|
-
|
|
43
26
|
def model_post_init(self, ctx: Any) -> None:
|
|
44
27
|
if len(self.report_steps_list) == 0:
|
|
45
28
|
self.report_steps_list = [[0] for _ in self.keys]
|
|
@@ -48,6 +31,20 @@ class GenDataConfig(ResponseConfig):
|
|
|
48
31
|
if report_steps is not None:
|
|
49
32
|
report_steps.sort()
|
|
50
33
|
|
|
34
|
+
@property
|
|
35
|
+
def filter_on(self) -> dict[str, dict[str, list[int]]]:
|
|
36
|
+
"""Filters for this response.
|
|
37
|
+
|
|
38
|
+
For ``GEN_DATA`` this is always supported: return
|
|
39
|
+
``{response_key: {"report_step": [allowed_steps...]}}``.
|
|
40
|
+
"""
|
|
41
|
+
return {
|
|
42
|
+
response_key: {"report_step": report_steps or [0]}
|
|
43
|
+
for response_key, report_steps in zip(
|
|
44
|
+
self.keys, self.report_steps_list, strict=False
|
|
45
|
+
)
|
|
46
|
+
}
|
|
47
|
+
|
|
51
48
|
@property
|
|
52
49
|
def expected_input_files(self) -> list[str]:
|
|
53
50
|
expected_files = []
|