├── .gitignore ├── LICENSE ├── README.md ├── Vulcan └── README.md ├── environment.yml └── petrolpy ├── Examples ├── Example_plots │ ├── cdf_example_output.png │ ├── pdf_example_output.png │ ├── plot_dist.html │ ├── plot_pdf.html │ └── probit_example_output.png ├── bg_example.py ├── distribution_example.py ├── distribution_example_notebook.ipynb ├── oil_area.py ├── type_curve_plotting.py └── well_example.py ├── README.md ├── Test_Data └── EUR_Data.csv ├── __init__.py ├── mini_projects ├── GasDrainageAreaSens.py └── OilDrainageAreaSens.py └── petrolpy.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwentzWW/petrolpy/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwentzWW/petrolpy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwentzWW/petrolpy/HEAD/README.md -------------------------------------------------------------------------------- /Vulcan/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwentzWW/petrolpy/HEAD/Vulcan/README.md -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwentzWW/petrolpy/HEAD/environment.yml -------------------------------------------------------------------------------- /petrolpy/Examples/Example_plots/cdf_example_output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwentzWW/petrolpy/HEAD/petrolpy/Examples/Example_plots/cdf_example_output.png -------------------------------------------------------------------------------- /petrolpy/Examples/Example_plots/pdf_example_output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwentzWW/petrolpy/HEAD/petrolpy/Examples/Example_plots/pdf_example_output.png -------------------------------------------------------------------------------- /petrolpy/Examples/Example_plots/plot_dist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwentzWW/petrolpy/HEAD/petrolpy/Examples/Example_plots/plot_dist.html -------------------------------------------------------------------------------- /petrolpy/Examples/Example_plots/plot_pdf.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwentzWW/petrolpy/HEAD/petrolpy/Examples/Example_plots/plot_pdf.html -------------------------------------------------------------------------------- /petrolpy/Examples/Example_plots/probit_example_output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwentzWW/petrolpy/HEAD/petrolpy/Examples/Example_plots/probit_example_output.png -------------------------------------------------------------------------------- /petrolpy/Examples/bg_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwentzWW/petrolpy/HEAD/petrolpy/Examples/bg_example.py -------------------------------------------------------------------------------- /petrolpy/Examples/distribution_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwentzWW/petrolpy/HEAD/petrolpy/Examples/distribution_example.py -------------------------------------------------------------------------------- /petrolpy/Examples/distribution_example_notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwentzWW/petrolpy/HEAD/petrolpy/Examples/distribution_example_notebook.ipynb -------------------------------------------------------------------------------- /petrolpy/Examples/oil_area.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwentzWW/petrolpy/HEAD/petrolpy/Examples/oil_area.py -------------------------------------------------------------------------------- /petrolpy/Examples/type_curve_plotting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwentzWW/petrolpy/HEAD/petrolpy/Examples/type_curve_plotting.py -------------------------------------------------------------------------------- /petrolpy/Examples/well_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwentzWW/petrolpy/HEAD/petrolpy/Examples/well_example.py -------------------------------------------------------------------------------- /petrolpy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwentzWW/petrolpy/HEAD/petrolpy/README.md -------------------------------------------------------------------------------- /petrolpy/Test_Data/EUR_Data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwentzWW/petrolpy/HEAD/petrolpy/Test_Data/EUR_Data.csv -------------------------------------------------------------------------------- /petrolpy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /petrolpy/mini_projects/GasDrainageAreaSens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwentzWW/petrolpy/HEAD/petrolpy/mini_projects/GasDrainageAreaSens.py -------------------------------------------------------------------------------- /petrolpy/mini_projects/OilDrainageAreaSens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwentzWW/petrolpy/HEAD/petrolpy/mini_projects/OilDrainageAreaSens.py -------------------------------------------------------------------------------- /petrolpy/petrolpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwentzWW/petrolpy/HEAD/petrolpy/petrolpy.py --------------------------------------------------------------------------------