/sunbeam

Primary LanguagePythonGNU General Public License v3.0GPL-3.0

sunbeam build status

Quick start (WIP)

Assumes you have built (and maybe installed) opm-parser

git clone --recursive https://github.com/statoil/sunbeam
cd sunbeam
mkdir build
cd build
cmake .. -DCMAKE_MODULE_PATH=$OPM_COMMON_ROOT/cmake/Modules
make
ctest # for running unit tests

Obtaining test data

cd ~
git clone https://github.com/OPM/opm-data
cd opm-data/norne

With opm-data available, one can test sunbeam on Norne:

import sunbeam
es = sunbeam.parse('NORNE_ATW2013.DATA', ('PARSE_RANDOM_SLASH', sunbeam.action.ignore))
len(es.faults())

Remember to have ~/sunbeam/build/python in your $PYTHONPATH.