Collection of utilities, solvers and other components.
Go to file
2012-10-09 09:48:14 +02:00
examples Adapted my changes to the changes Bard made, to make opm-core link on Debian. 2012-10-05 15:01:30 +02:00
lib/pkgconfig Provide pkgconfig files for library 2012-09-21 13:07:00 +02:00
m4 renamed DUNE_PATH_SUPERLU to OPM_PATH_SUPERLU such that the test within DUNE is not overwritten in other DUNE modules. 2012-10-09 09:48:14 +02:00
opm/core Merge pull request #42 from bska/read-grid 2012-10-04 23:30:46 -07:00
tests Merged latest changes from upstream branch 2012-10-05 10:11:31 +02:00
tutorials Added test for SuperLU and adapted the Makefile.am to support it 2012-10-04 11:37:28 +02:00
.gitignore Ignore wrapper for lib.exe on Windows 2012-09-21 11:20:19 +02:00
CMakeLists.txt Introduced posibility to change number of sample points for pvt. 2012-08-31 17:01:07 +02:00
configure.ac Merge pull request #32 from rolk/lt_init 2012-09-24 00:42:30 -07:00
Doxyfile Added skeleton doxygen_main.hpp for overview documentation. 2012-06-05 15:20:13 +02:00
DoxygenLayout.xml Added doxygen configuration files (remove Doxyfile from .hgignore). 2012-04-10 17:22:14 +02:00
dune.module opm-core: make it a usable in conjunction wit dunecontrol 2012-07-02 19:17:25 +02:00
FindUmfPack.cmake Changed cmake file from listing all files to glob. 2012-08-28 14:31:54 +02:00
generate_doc_figures.py Added comments on how to run the script generate_doc_figures.py. 2012-08-22 16:07:26 +02:00
Makefile.am Merged latest changes from upstream branch 2012-10-05 10:11:31 +02:00
opm-core.pc.in Provide pkgconfig files for library 2012-09-21 13:07:00 +02:00
README Oops, line moved to correct location. 2012-09-27 21:41:49 +02:00
style.css Added css file, change font and size of formulas. 2012-04-12 18:10:18 +02:00

Open Porous Media Core Library
==============================

These are release notes for opm-core.


CONTENT
-------

opm-core is the core library within OPM and contains the following 

* Eclipse deck input and preprosessing
* Fluid properties (basic PVT models and rock properties)
* Grid handling (cornerpoint grids, unstructured grid interface)
* Linear Algebra (interface to different linear solvers)
* Pressure solvers (various discretization schemes, flow models)
* Simulators (some basic examples of simulators based on sequential splitting schemes)
* Transport solvers (various discretization schemes, flow models)
* Utilities (input and output processing, unit conversion)
* Wells (basic well handling)


LICENSE
-------

The library is distributed under the GNU General Public License,
version 3 or later (GPLv3+).


PLATFORMS
---------

The opm-core module is designed to run on Linux platforms. It is also
regularly run on Mac OS X. No efforts have been made to ensure that
the code will compile and run on windows platforms.


DEPENDENCIES FOR DEBIAN BASED DISTRIBUTIONS (Debian Squeeze/Ubuntu Precise)
---------------------------------------------------------------------------

# packages necessary for building
sudo apt-get install -y build-essential gfortran pkg-config libtool \
                        automake autoconf

# packages necessary for documentation
sudo apt-get install -y doxygen ghostscript texlive-latex-recommended pgf

# packages necessary for version control
sudo apt-get install -y git-core

# basic libraries necessary for both DUNE and OPM
sudo apt-get install -y libboost-all-dev libsuperlu3-dev libsuitesparse-dev

# add this repository for necessary backports (required for Ubuntu Precise)
sudo add-apt-repository -y ppa:opm/ppa
sudo apt-get update

# parts of DUNE needed
sudo apt-get install libdune-common-dev libdune-istl-dev

# libraries necessary for OPM
sudo apt-get install -y libxml0-dev


DEPENDENCIES FOR SUSE BASED DISTRIBUTIONS
-----------------------------------------

# libraries
sudo zypper in blas libblas3 lapack liblapack3 libboost libxml2 umfpack

# tools
sudo zypper in gcc automake autoconf git doxygen

# DUNE libraries
sudo zypper ar http://download.opensuse.org/repositories/science/openSUSE_12.2/science.repo
sudo zypper in dune-common dune-istl


DOWNLOADING
-----------

For a read-only download:
git clone git://github.com/OPM/opm-core.git

If you want to contribute, fork OPM/opm-core on github.


BUILDING
--------

 cd opm-core
 autoreconf -i
 ./configure
 make


DOCUMENTATION
-------------

Efforts have been made to document the code with Doxygen.
In order to build the documentation, enter the command
$ doxygen
in the topmost directory.