├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── docs ├── Makefile ├── make.bat └── source │ ├── WELL16-2-7.png │ ├── conf.py │ ├── contact.rst │ ├── index.rst │ ├── license.rst │ ├── modules.rst │ └── overview.rst ├── petroeval ├── __init__.py ├── data │ ├── lithofacies_model.model │ └── traindata.csv ├── evaluate_reservoir.py ├── files_reader.py ├── model │ ├── eormation_encoded │ ├── group_encoded │ ├── lithofacies_model1.model │ └── lithofacies_model2.model ├── plots.py ├── preprocessing.py ├── pseudomodes.py ├── sedimentology │ ├── __init__.py │ ├── grain_preprocess.py │ └── grain_statistics.py ├── tests │ ├── __init__.py │ └── test_sedimentology │ │ ├── __init__.py │ │ ├── test_grain_preprocess.py │ │ └── test_grain_statistics.py ├── utils.py └── visualizations.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olawaleibrahim/petroeval/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olawaleibrahim/petroeval/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olawaleibrahim/petroeval/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olawaleibrahim/petroeval/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olawaleibrahim/petroeval/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olawaleibrahim/petroeval/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/source/WELL16-2-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olawaleibrahim/petroeval/HEAD/docs/source/WELL16-2-7.png -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olawaleibrahim/petroeval/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/contact.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olawaleibrahim/petroeval/HEAD/docs/source/contact.rst -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olawaleibrahim/petroeval/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olawaleibrahim/petroeval/HEAD/docs/source/license.rst -------------------------------------------------------------------------------- /docs/source/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olawaleibrahim/petroeval/HEAD/docs/source/modules.rst -------------------------------------------------------------------------------- /docs/source/overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olawaleibrahim/petroeval/HEAD/docs/source/overview.rst -------------------------------------------------------------------------------- /petroeval/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olawaleibrahim/petroeval/HEAD/petroeval/__init__.py -------------------------------------------------------------------------------- /petroeval/data/lithofacies_model.model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olawaleibrahim/petroeval/HEAD/petroeval/data/lithofacies_model.model -------------------------------------------------------------------------------- /petroeval/data/traindata.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olawaleibrahim/petroeval/HEAD/petroeval/data/traindata.csv -------------------------------------------------------------------------------- /petroeval/evaluate_reservoir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olawaleibrahim/petroeval/HEAD/petroeval/evaluate_reservoir.py -------------------------------------------------------------------------------- /petroeval/files_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olawaleibrahim/petroeval/HEAD/petroeval/files_reader.py -------------------------------------------------------------------------------- /petroeval/model/eormation_encoded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olawaleibrahim/petroeval/HEAD/petroeval/model/eormation_encoded -------------------------------------------------------------------------------- /petroeval/model/group_encoded: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olawaleibrahim/petroeval/HEAD/petroeval/model/group_encoded -------------------------------------------------------------------------------- /petroeval/model/lithofacies_model1.model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olawaleibrahim/petroeval/HEAD/petroeval/model/lithofacies_model1.model -------------------------------------------------------------------------------- /petroeval/model/lithofacies_model2.model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olawaleibrahim/petroeval/HEAD/petroeval/model/lithofacies_model2.model -------------------------------------------------------------------------------- /petroeval/plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olawaleibrahim/petroeval/HEAD/petroeval/plots.py -------------------------------------------------------------------------------- /petroeval/preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olawaleibrahim/petroeval/HEAD/petroeval/preprocessing.py -------------------------------------------------------------------------------- /petroeval/pseudomodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olawaleibrahim/petroeval/HEAD/petroeval/pseudomodes.py -------------------------------------------------------------------------------- /petroeval/sedimentology/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /petroeval/sedimentology/grain_preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olawaleibrahim/petroeval/HEAD/petroeval/sedimentology/grain_preprocess.py -------------------------------------------------------------------------------- /petroeval/sedimentology/grain_statistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olawaleibrahim/petroeval/HEAD/petroeval/sedimentology/grain_statistics.py -------------------------------------------------------------------------------- /petroeval/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /petroeval/tests/test_sedimentology/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /petroeval/tests/test_sedimentology/test_grain_preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olawaleibrahim/petroeval/HEAD/petroeval/tests/test_sedimentology/test_grain_preprocess.py -------------------------------------------------------------------------------- /petroeval/tests/test_sedimentology/test_grain_statistics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olawaleibrahim/petroeval/HEAD/petroeval/tests/test_sedimentology/test_grain_statistics.py -------------------------------------------------------------------------------- /petroeval/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olawaleibrahim/petroeval/HEAD/petroeval/utils.py -------------------------------------------------------------------------------- /petroeval/visualizations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olawaleibrahim/petroeval/HEAD/petroeval/visualizations.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/olawaleibrahim/petroeval/HEAD/setup.py --------------------------------------------------------------------------------