From 0e88cbd943bb30e40cac28392f4441896916fb75 Mon Sep 17 00:00:00 2001
From: Andreas Eknes Lie <114403625+andreas-el@users.noreply.github.com>
Date: Mon, 30 Sep 2024 08:46:27 +0200
Subject: [PATCH] Add formatting to simulation mode helptext
* Add formatting to simulation mode helptext
* Emphasize realization-0 executed only
---
src/ert/run_models/ensemble_experiment.py | 4 ++--
src/ert/run_models/evaluate_ensemble.py | 10 ++++------
src/ert/run_models/single_test_run.py | 6 +++---
3 files changed, 9 insertions(+), 11 deletions(-)
diff --git a/src/ert/run_models/ensemble_experiment.py b/src/ert/run_models/ensemble_experiment.py
index 8162c243604..b2fc1243912 100644
--- a/src/ert/run_models/ensemble_experiment.py
+++ b/src/ert/run_models/ensemble_experiment.py
@@ -23,8 +23,8 @@
class EnsembleExperiment(BaseRunModel):
"""
This workflow will create a new experiment and a new ensemble from
- the user configuration. It will never overwrite existing ensembles, and
- will always sample parameters.
+ the user configuration.
It will never overwrite existing ensembles, and
+ will always sample parameters.
"""
def __init__(
diff --git a/src/ert/run_models/evaluate_ensemble.py b/src/ert/run_models/evaluate_ensemble.py
index de0079c57d9..cb190035c2e 100644
--- a/src/ert/run_models/evaluate_ensemble.py
+++ b/src/ert/run_models/evaluate_ensemble.py
@@ -25,12 +25,10 @@
# pylint: disable=too-many-arguments
class EvaluateEnsemble(BaseRunModel):
"""
- This workflow will evaluate ensembles which have parameters, but no
- simulation has been performed, so there are no responses. This can
- be used in instances where the parameters are sampled manually, or
- after performing a manual update step. This will always read parameter
- and response configuration from the stored ensemble, and will not
- reflect any changes to the user configuration on disk.
+ This workflow will evaluate ensembles which have parameters, but no simulation has been performed, so there are no responses.
+ This can be used in instances where the parameters are sampled manually, or after performing a manual update step.
+ The workflow will always read parameter and response configuration from the stored ensemble,
+ and will not reflect any changes to the user configuration on disk.
"""
def __init__(
diff --git a/src/ert/run_models/single_test_run.py b/src/ert/run_models/single_test_run.py
index 0357d597c60..a6da0e57276 100644
--- a/src/ert/run_models/single_test_run.py
+++ b/src/ert/run_models/single_test_run.py
@@ -16,9 +16,9 @@
class SingleTestRun(EnsembleExperiment):
"""
Single test is equivalent to EnsembleExperiment, in that it
- samples the prior and evaluates it. There are two key differences:
- 1) Single test run always runs locally using the local queue
- 2) Only a single realization is run
+ samples the prior and evaluates it.
There are two key differences:
+ 1) Single test run always runs locally using the local queue
+ 2) Only a single realization (realization-0) is run
"""
def __init__(