Skip to main content

Ensemble based Reservoir Tool (ERT)

Project description

ert

Build Status PyPI - Python Version Code Style Type checking codecov License: GPL v3

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).

Prerequisites

Python 3.8+ with development headers.

Installation

$ pip install ert
$ ert --help

or, for the latest development version:

$ pip install git+https://github.com/equinor/ert.git@main
$ ert --help

The ert program is based on two different repositories:

  1. resdata which contains utilities to read and write Eclipse files.

  2. ert - this repository - the actual application and all of the GUI.

ERT is now Python 3 only. The last Python 2 compatible release is 2.14

Installing on Macs with ARM CPUs

A few of ERT's dependencies aren't compiled for ARM CPUs. Because of this, we need to do some Rosetta "hot swapping".

First, install Rosetta by running softwareupdate --install-rosetta [--agree-to-license]

Once Rosetta is installed, you can switch to an Intel based architecture by running: arch -x86_64 <SHELL_PATH>. Note that if your shell is installed as an ARM executable, this will error. If that's the case, you can simply pass /bin/zsh as the shell path.

Now you're set to install Homebrew for Intel architectures:

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

Now, to be able to hot swap between Intel and ARM architectures, add the following to your shell profile config:

alias arm="env /usr/bin/arch -arm64 <SHELL_PATH> --login"
alias intel="env /usr/bin/arch -x86_64 <SHELL_PATH> --login"

local cpu=$(uname -m)

if [[ $cpu == "arm64" ]]; then
	eval "$(/opt/homebrew/bin/brew shellenv)"
fi

if [[ $cpu == "x86_64" ]]; then
	eval "$(/usr/local/homebrew/bin/brew shellenv)"
fi

Note: You can always check which architecture you're running by calling either arch or uname -m.

This will allow you to switch between architectures by calling either intel or arm from your terminal. Switching architectures will automatically source the correct Hombrew executable for your architecture as well, which is key.

Now, simply switch to Intel, and install Python and set up a virtualenv as instructed below.

Documentation

Documentation for ert is located at https://ert.readthedocs.io/en/latest/.

Developing

ERT was originally written in C/C++ but most new code is Python.

Developing Python

You might first want to make sure that some system level packages are installed before attempting setup:

- pip
- python include headers
- (python) venv
- (python) setuptools
- (python) wheel

It is left as an exercise to the reader to figure out how to install these on their respective system.

To start developing the Python code, we suggest installing ERT in editable mode into a virtual environment to isolate the install (substitute the appropriate way of sourcing venv for your shell):

# Create and enable a virtualenv
python3 -m venv my_virtualenv
source my_virtualenv/bin/activate

# Update build dependencies
pip install --upgrade pip wheel setuptools

# Download and install ERT
git clone https://github.com/equinor/ert
cd ert
pip install --editable .

Test setup

Additional development packages must be installed to run the test suite:

pip install "ert[dev]" 
pytest tests/

Git LFS must be installed to get all the files. This is packaged as git-lfs on Ubuntu, Fedora or macOS Homebrew. For Equinor RGS node users, it is possible to use git from Red Hat Software Collections:

source /opt/rh/rh-git227/enable

test-data/block_storage is a submodule and must be checked out.

git submodule update --init --recursive

If you checked out submodules without having git lfs installed, you can force git lfs to run in all submodules with:

git submodule foreach "git lfs pull"

Trouble with setup

If you encounter problems during install, try deleting the _skbuild folder before reinstalling.

As a simple test of your ert installation, you may try to run one of the examples, for instance:

cd test-data/poly_example
# for non-gui trial run
ert test_run poly.ert
# for gui trial run
ert gui poly.ert

Note that in order to parse floating point numbers from text files correctly, your locale must be set such that . is the decimal separator, e.g. by setting

# export LC_NUMERIC=en_US.UTF-8

in bash (or an equivalent way of setting that environment variable for your shell).

Developing C++

C++ is the backbone of ERT as in used extensively in important parts of ERT. There's a combination of legacy code and newer refactored code. The end goal is likely that some core performance-critical functionality will be implemented in C++ and the rest of the business logic will be implemented in Python.

While running --editable will create the necessary Python extension module (src/ert/_clib.cpython-*.so), changing C++ code will not take effect even when reloading ERT. This requires recompilation, which means reinstalling ERT from scratch.

To avoid recompiling already-compiled source files, we provide the script/build script. From a fresh virtualenv:

git clone https://github.com/equinor/ert
cd ert
script/build

This command will update pip if necessary, install the build dependencies, compile ERT and install in editable mode, and finally install the runtime requirements. Further invocations will only build the necessary source files. To do a full rebuild, delete the _skbuild directory.

Note: This will create a debug build, which is faster to compile and comes with debugging functionality enabled. This means that, for example, Eigen computations will be checked and will abort if preconditions aren't met (eg. when inverting a matrix, it will explicitly check that the matrix is square). The downside is that this makes the code unoptimised and slow. Debugging flags are therefore not present in builds of ERT that we release on Komodo or PyPI. To build a release build for development, use script/build --release.

Notes

  1. If pip reinstallation fails during the compilation step, try removing the _skbuild directory.

  2. The default maximum number of open files is normally relatively low on MacOS and some Linux distributions. This is likely to make tests crash with mysterious error-messages. You can inspect the current limits in your shell by issuing the command ulimit -a. In order to increase maximum number of open files, run ulimit -n 16384 (or some other large number) and put the command in your .profile to make it persist.

Running C++ tests

The C++ code and tests require resdata. As long as you have pip install resdata'd into your Python virtualenv all should work.

# Create and enable a virtualenv
python3 -m venv my_virtualenv
source my_virtualenv/bin/activate

# Install build dependencies
pip install pybind11 conan cmake resdata

# Build ERT and tests
mkdir build && cd build
cmake ../src/clib -DCMAKE_BUILD_TYPE=Debug
make -j$(nproc)

# Run tests
ctest --output-on-failure

Example usage

Basic ERT test

To test if ERT itself is working, go to test-data/poly_example and start ERT by running poly.ert with ert gui

cd test-data/poly_example
ert gui poly.ert

This opens up the ERT graphical user interface. Finally, test ERT by starting and successfully running the simulation.

ERT with a reservoir simulator

To actually get ERT to work at your site you need to configure details about your system; at the very least this means you must configure where your reservoir simulator is installed. In addition you might want to configure e.g. queue system in the site-config file, but that is not strictly necessary for a basic test.

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

ert-8.0.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

ert-8.0.4-cp311-cp311-macosx_10_15_x86_64.whl (891.9 kB view details)

Uploaded CPython 3.11macOS 10.15+ x86-64

ert-8.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

ert-8.0.4-cp310-cp310-macosx_10_15_x86_64.whl (889.1 kB view details)

Uploaded CPython 3.10macOS 10.15+ x86-64

ert-8.0.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

ert-8.0.4-cp39-cp39-macosx_10_15_x86_64.whl (889.3 kB view details)

Uploaded CPython 3.9macOS 10.15+ x86-64

ert-8.0.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

ert-8.0.4-cp38-cp38-macosx_10_15_x86_64.whl (889.0 kB view details)

Uploaded CPython 3.8macOS 10.15+ x86-64

File details

Details for the file ert-8.0.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ert-8.0.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dd71ba736ea10ab60574ea73a2df10db1e63e13c09dcf1d0dd763271194467ef
MD5 765db0460e0c82a092e9b387c71609bb
BLAKE2b-256 87cd8aa503eddafa553b868f3b93d221733514fe5313992967f8dd3f202a8f27

See more details on using hashes here.

File details

Details for the file ert-8.0.4-cp311-cp311-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for ert-8.0.4-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 b3340281cf9e1c9cc4a251971d0c5a1377f669ba28bf747cef1843552d7916f4
MD5 b8924d355323ccb8f90329edf79095ce
BLAKE2b-256 0a84c0d898c04763c4ce9515a136b961f0b1871a05094c4e38cbd82927d41089

See more details on using hashes here.

File details

Details for the file ert-8.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ert-8.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8210ddf6dbb6af81f3360a2c1e6b7c8c115ed944f332db1aff67c635331997ad
MD5 161b31121abb03f561159c3f1a9ac96d
BLAKE2b-256 92da9f502cf6931190ba8c64f4c4c55a7b3d7d6b9019b3e0a37afc8f44c730e7

See more details on using hashes here.

File details

Details for the file ert-8.0.4-cp310-cp310-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for ert-8.0.4-cp310-cp310-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 6206309806ca2240f45db741ae51714fac843057e1735c568a51ff25dec91c51
MD5 693a7ed6a3d30fdc214cbaf27e4aba45
BLAKE2b-256 46f3cbb2c8f7d3b7d428c7f3868a009f03b6d920a7d37ea5879d70efabe0f212

See more details on using hashes here.

File details

Details for the file ert-8.0.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ert-8.0.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 89159ab31b10dc9af58ce569938e6fc1648f9713a4d0503ab44961c5f260e733
MD5 e202dbc567e59b998528d653fb8aa998
BLAKE2b-256 ef1e8b2c6512127686274360bac3608c2e7566a058754a09534caf2fc77e91a9

See more details on using hashes here.

File details

Details for the file ert-8.0.4-cp39-cp39-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: ert-8.0.4-cp39-cp39-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 889.3 kB
  • Tags: CPython 3.9, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.18

File hashes

Hashes for ert-8.0.4-cp39-cp39-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 cbdb029b24502f309b3587bb00b48b6be53804806365d0797ee750cba533bebf
MD5 b7d2b821565cc8ab2480212095ac928e
BLAKE2b-256 e487c3a4a842f9e485b6259d1a750c8e18ea38a9ddffee2d2835026b4e8f4b45

See more details on using hashes here.

File details

Details for the file ert-8.0.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for ert-8.0.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0cb39efc2c98995a3bd47fa0d9e5058a9592d0c8d1df9931f1aad3752b5e5040
MD5 acfa6a07ce01553b57f02335559518aa
BLAKE2b-256 42a25def03159e9853ff5dcf71474b4bf442b72861e1c67e5419a244a50352e7

See more details on using hashes here.

File details

Details for the file ert-8.0.4-cp38-cp38-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: ert-8.0.4-cp38-cp38-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 889.0 kB
  • Tags: CPython 3.8, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.18

File hashes

Hashes for ert-8.0.4-cp38-cp38-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8978a74d02ed153fb568490110498c51c08652df4e5dae264c7816c1e83d2dc6
MD5 4bfb85771346b3cbde04b45ae643a5aa
BLAKE2b-256 d8a7b1f4776262a994a66eb41e187191e008e52ee2cc025ac59fc3d05639835b

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page