Skip to content

Commit

Permalink
Deprecate ReservoirSimulationTimeSeries (#935)
Browse files Browse the repository at this point in the history
  • Loading branch information
anders-kiaer authored Jan 20, 2022
1 parent 8cebeb1 commit c73a699
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
10 changes: 7 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed

- [#921](https://github.com/equinor/webviz-subsurface/pull/921) - Fixed bug with History Vectors in new `SimulationTimeSeries` plugin. Replaced hard coded realization number of 0, with first valid realization in provider.
- [#926](https://github.com/equinor/webviz-subsurface/pull/926) - `VolumetricAnalysis` - Fixed bug when building portables with aggregated (csvfile_vol) input.
- [#929](https://github.com/equinor/webviz-subsurface/pull/929) - `TornadoWidget` - No longer skipping sensitivities with `SENSNAME="ref"` from tornado bars if there is more than one realizations with `SENSNAME="ref"`.
- [#932](https://github.com/equinor/webviz-subsurface/pull/932) - `RftPlotter` - Fixed bug related to calculated correlations returnin NaN if the response variable has constant values.
- [#926](https://github.com/equinor/webviz-subsurface/pull/926) - `VolumetricAnalysis` - Fixed bug when building portables with aggregated (`csvfile_vol`) input.
- [#929](https://github.com/equinor/webviz-subsurface/pull/929) - `TornadoWidget` - No longer skipping sensitivities with `SENSNAME="ref"` from tornado bars if there is more than one realization with `SENSNAME="ref"`.
- [#932](https://github.com/equinor/webviz-subsurface/pull/932) - `RftPlotter` - Fixed bug related to calculated correlations returning `NaN` if the response variable has constant values.

### Changed

- [#935](https://github.com/equinor/webviz-subsurface/pull/935) - Deprecated plugin `ReservoirSimulationTimeSeries`. This has been replaced by the faster, more flexible and less memory hungry plugin `SimulationTimeSeries`.

### Changed

Expand Down
5 changes: 5 additions & 0 deletions webviz_subsurface/plugins/_reservoir_simulation_timeseries.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
from plotly.subplots import make_subplots
from webviz_config import EncodedFile, WebvizPluginABC, WebvizSettings
from webviz_config.common_cache import CACHE
from webviz_config.deprecation_decorators import deprecated_plugin
from webviz_config.webviz_assets import WEBVIZ_ASSETS
from webviz_config.webviz_store import webvizstore
from webviz_subsurface_components import ExpressionInfo, ExternalParseData
Expand Down Expand Up @@ -81,6 +82,10 @@ def _check_plugin_options(options: Optional[dict]) -> Optional[Tuple[str, str]]:


# pylint: disable = too-many-instance-attributes
@deprecated_plugin(
"This plugin has been replaced by the faster, "
"more flexible and less memory hungry plugin `SimulationTimeSeries`"
)
class ReservoirSimulationTimeSeries(WebvizPluginABC):
"""Visualizes reservoir simulation time series data for FMU ensembles.
Expand Down

0 comments on commit c73a699

Please sign in to comment.