├── .Rbuildignore ├── .gitignore ├── .zenodo.json ├── README.Rmd ├── README.md ├── img ├── balance_at-block.png ├── extract_step_info.png ├── field_totals_last_20rows.png ├── historical_production_cum_oil.png ├── material_balance_error_3001d.png ├── material_balance_errors.png ├── ooip.png ├── screenshot_volve_monthly.png ├── volve_datasets.png ├── volve_north_end.png ├── volve_north_start.png ├── volve_north_view.png ├── volve_south_end.png ├── volve_south_start.png ├── volve_south_view.png ├── volve_west_end.png └── volve_west_start.png ├── inst ├── other │ ├── field_totals.odt │ └── regex-eclipse.odp └── rawdata │ ├── VOLVE_2016.zip │ └── Volve production data.xlsx ├── notebooks ├── .gitignore ├── datafile.txt ├── examples_extracting_data_with_regex.Rmd ├── extract_data_from_text_file_examples.Rmd ├── extract_volve_field_totals.Rmd ├── extract_volve_simulation_steps.Rmd ├── extracting_volve_data-step_by_step.Rmd ├── read_file_from_zenodo.Rmd ├── read_google_drive.Rmd └── read_zip_file.Rmd └── volve_eclipse_reservoir.Rproj /.Rbuildignore: -------------------------------------------------------------------------------- 1 | ^README\.Rmd$ -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f0nzie/volve_eclipse_reservoir/HEAD/.gitignore -------------------------------------------------------------------------------- /.zenodo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f0nzie/volve_eclipse_reservoir/HEAD/.zenodo.json -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f0nzie/volve_eclipse_reservoir/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f0nzie/volve_eclipse_reservoir/HEAD/README.md -------------------------------------------------------------------------------- /img/balance_at-block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f0nzie/volve_eclipse_reservoir/HEAD/img/balance_at-block.png -------------------------------------------------------------------------------- /img/extract_step_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f0nzie/volve_eclipse_reservoir/HEAD/img/extract_step_info.png -------------------------------------------------------------------------------- /img/field_totals_last_20rows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f0nzie/volve_eclipse_reservoir/HEAD/img/field_totals_last_20rows.png -------------------------------------------------------------------------------- /img/historical_production_cum_oil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f0nzie/volve_eclipse_reservoir/HEAD/img/historical_production_cum_oil.png -------------------------------------------------------------------------------- /img/material_balance_error_3001d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f0nzie/volve_eclipse_reservoir/HEAD/img/material_balance_error_3001d.png -------------------------------------------------------------------------------- /img/material_balance_errors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f0nzie/volve_eclipse_reservoir/HEAD/img/material_balance_errors.png -------------------------------------------------------------------------------- /img/ooip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f0nzie/volve_eclipse_reservoir/HEAD/img/ooip.png -------------------------------------------------------------------------------- /img/screenshot_volve_monthly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f0nzie/volve_eclipse_reservoir/HEAD/img/screenshot_volve_monthly.png -------------------------------------------------------------------------------- /img/volve_datasets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f0nzie/volve_eclipse_reservoir/HEAD/img/volve_datasets.png -------------------------------------------------------------------------------- /img/volve_north_end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f0nzie/volve_eclipse_reservoir/HEAD/img/volve_north_end.png -------------------------------------------------------------------------------- /img/volve_north_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f0nzie/volve_eclipse_reservoir/HEAD/img/volve_north_start.png -------------------------------------------------------------------------------- /img/volve_north_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f0nzie/volve_eclipse_reservoir/HEAD/img/volve_north_view.png -------------------------------------------------------------------------------- /img/volve_south_end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f0nzie/volve_eclipse_reservoir/HEAD/img/volve_south_end.png -------------------------------------------------------------------------------- /img/volve_south_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f0nzie/volve_eclipse_reservoir/HEAD/img/volve_south_start.png -------------------------------------------------------------------------------- /img/volve_south_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f0nzie/volve_eclipse_reservoir/HEAD/img/volve_south_view.png -------------------------------------------------------------------------------- /img/volve_west_end.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f0nzie/volve_eclipse_reservoir/HEAD/img/volve_west_end.png -------------------------------------------------------------------------------- /img/volve_west_start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f0nzie/volve_eclipse_reservoir/HEAD/img/volve_west_start.png -------------------------------------------------------------------------------- /inst/other/field_totals.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f0nzie/volve_eclipse_reservoir/HEAD/inst/other/field_totals.odt -------------------------------------------------------------------------------- /inst/other/regex-eclipse.odp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f0nzie/volve_eclipse_reservoir/HEAD/inst/other/regex-eclipse.odp -------------------------------------------------------------------------------- /inst/rawdata/VOLVE_2016.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f0nzie/volve_eclipse_reservoir/HEAD/inst/rawdata/VOLVE_2016.zip -------------------------------------------------------------------------------- /inst/rawdata/Volve production data.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f0nzie/volve_eclipse_reservoir/HEAD/inst/rawdata/Volve production data.xlsx -------------------------------------------------------------------------------- /notebooks/.gitignore: -------------------------------------------------------------------------------- 1 | .httr-oauth 2 | -------------------------------------------------------------------------------- /notebooks/datafile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f0nzie/volve_eclipse_reservoir/HEAD/notebooks/datafile.txt -------------------------------------------------------------------------------- /notebooks/examples_extracting_data_with_regex.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f0nzie/volve_eclipse_reservoir/HEAD/notebooks/examples_extracting_data_with_regex.Rmd -------------------------------------------------------------------------------- /notebooks/extract_data_from_text_file_examples.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f0nzie/volve_eclipse_reservoir/HEAD/notebooks/extract_data_from_text_file_examples.Rmd -------------------------------------------------------------------------------- /notebooks/extract_volve_field_totals.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f0nzie/volve_eclipse_reservoir/HEAD/notebooks/extract_volve_field_totals.Rmd -------------------------------------------------------------------------------- /notebooks/extract_volve_simulation_steps.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f0nzie/volve_eclipse_reservoir/HEAD/notebooks/extract_volve_simulation_steps.Rmd -------------------------------------------------------------------------------- /notebooks/extracting_volve_data-step_by_step.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f0nzie/volve_eclipse_reservoir/HEAD/notebooks/extracting_volve_data-step_by_step.Rmd -------------------------------------------------------------------------------- /notebooks/read_file_from_zenodo.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f0nzie/volve_eclipse_reservoir/HEAD/notebooks/read_file_from_zenodo.Rmd -------------------------------------------------------------------------------- /notebooks/read_google_drive.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f0nzie/volve_eclipse_reservoir/HEAD/notebooks/read_google_drive.Rmd -------------------------------------------------------------------------------- /notebooks/read_zip_file.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f0nzie/volve_eclipse_reservoir/HEAD/notebooks/read_zip_file.Rmd -------------------------------------------------------------------------------- /volve_eclipse_reservoir.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f0nzie/volve_eclipse_reservoir/HEAD/volve_eclipse_reservoir.Rproj --------------------------------------------------------------------------------