equinor / ert

ERT - Ensemble based Reservoir Tool - is designed for running ensembles of dynamical models such as reservoir models, in order to do sensitivity analysis and data assimilation. ERT supports data assimilation using the Ensemble Smoother (ES), Ensemble Smoother with Multiple Data Assimilation (ES-MDA) and Iterative Ensemble Smoother (IES).
https://ert.readthedocs.io/en/latest/
GNU General Public License v3.0
98 stars 104 forks source link

Convert dict access of ForwardModel to .get() to avoid segfaults #8212

Closed JHolba closed 2 weeks ago

JHolba commented 2 weeks ago

All fields in ForwardModel are optional. Trying to access a field that is not set while result in errors.

Approach Use .get on forwardmodel objects to avoid errors

When applicable