Skip to content

Commit 0273766

Browse files
committed
Update release highlights on parameters.json format
This introduces highlted changes to ert==18.0 wrt to new parameters.json format where the groups have been droped from the file.
1 parent dc3d112 commit 0273766

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

docs/ert/about/release_notes.rst

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,33 @@
2727
Highlighted changes
2828
===================
2929

30+
Version 18.0
31+
------------
32+
33+
Format change of parameters.json
34+
################################
35+
36+
We’ve changed the format of the parameters.json file located in the runpath of each
37+
realization. The groups have been dropped, so that all parameters are now at the
38+
top level. For example, the old format:
39+
40+
.. code-block:: text
41+
42+
{"COEFFS" : {"a": 0.88}}
43+
44+
45+
is now:
46+
47+
.. code-block:: text
48+
49+
{"a" : {"value" : 0.88}}
50+
51+
52+
.. note::
53+
This has impact on TEMPLATE_RENDER forward model, which when used with
54+
parameters.json needs to be adjusted:
55+
from `{{my_input.COEFFS.a}}` to `{{my_input.a.value}}`.
56+
3057
Version 16.0
3158
------------
3259

0 commit comments

Comments
 (0)