├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── _config.yml ├── docs ├── _config.yml ├── images │ ├── log_1.png │ ├── log_2.png │ ├── log_3.png │ ├── pi_1.png │ └── pi_2.png ├── index.md ├── welllogspy.md └── wellproductivitypy.md ├── examples ├── material_balance │ ├── 1-basics_mbe.ipynb │ └── 2- Gas Material Balance.ipynb ├── pvt │ ├── Water_pvt.ipynb │ ├── gas_pvt.ipynb │ └── oil_pvt.ipynb ├── relative_permeabilities │ └── kr.ipynb ├── simulation │ ├── Build Simulation Model.ipynb │ └── grid.ipynb ├── volumetrics │ ├── mir_sup_map │ └── volumetrics.ipynb ├── well_schematics │ └── well_schematics.ipynb ├── well_test │ └── flow regimes.ipynb ├── welllogs │ ├── 1-basics │ │ ├── 1-petrophysics.ipynb │ │ └── 2-groups_wells.ipynb │ └── 2-field │ │ └── field.ipynb └── wellproductivity │ ├── 1-declination.ipynb │ ├── 2-productivity_index.ipynb │ ├── 2a-gas_productivity_index.ipynb │ ├── 3-declination_wor.ipynb │ ├── 4-gas_outflow.ipynb │ ├── 5-pressure_drop-Copy1.ipynb │ ├── 5-pressure_drop.ipynb │ ├── 6-ALS-UBH.ipynb │ ├── 7-schedule_forecast-Copy1.ipynb │ ├── ESP.ipynb │ ├── esp_pumps.csv │ └── pvt.csv ├── mkdocs.yml ├── poetry.lock ├── pyproject.toml ├── requirements.txt ├── reservoirpy ├── __init__.py ├── cashflows │ ├── __init__.py │ ├── analysis.py │ ├── bond.py │ ├── common.py │ ├── currency.py │ ├── depreciation.py │ ├── inflation.py │ ├── loan.py │ ├── rate.py │ ├── savings.py │ ├── taxing.py │ ├── timeseries.py │ ├── tvmm.py │ └── utilityfun.py ├── krpy │ ├── __init__.py │ └── kr.py ├── materialbalancepy │ ├── __init__.py │ └── mbe │ │ ├── __init__.py │ │ ├── aquifer.py │ │ ├── mbe.py │ │ └── recovery_mechanisms.json ├── pvtpy │ ├── __init__.py │ └── black_oil │ │ ├── __init__.py │ │ ├── components_properties.csv │ │ ├── correlations.py │ │ └── pvt.py ├── simulationpy │ ├── __init__.py │ ├── grid.py │ ├── initial_conditions.py │ ├── model.py │ ├── numerical.py │ ├── results.py │ └── schedule.py ├── utils │ ├── __init__.py │ └── formula.py ├── volumetricspy │ ├── __init__.py │ └── volumetrics.py ├── welllogspy │ ├── __init__.py │ ├── geomechanics │ │ ├── __init__.py │ │ └── stress_state.py │ ├── log │ │ ├── __init__.py │ │ ├── log.py │ │ └── mnemonics.csv │ ├── petrophysics │ │ ├── __init__.py │ │ ├── petroequations.py │ │ ├── petrophysics.py │ │ ├── plotrecipes.py │ │ └── resources.py │ └── tracks │ │ ├── __init__.py │ │ ├── caltrack.py │ │ ├── cbltrack.py │ │ ├── dntrack.py │ │ ├── flagtrack.py │ │ ├── fmtrack.py │ │ ├── gastrack.py │ │ ├── grtrack.py │ │ ├── khtrack.py │ │ ├── ktrack.py │ │ ├── lithotrack.py │ │ ├── oilshowtrack.py │ │ ├── phietrack.py │ │ ├── restrack.py │ │ ├── swtrack.py │ │ ├── track.py │ │ └── vshtrack.py ├── wellproductivitypy │ ├── __init__.py │ └── pi │ │ ├── __init__.py │ │ ├── als.py │ │ ├── esp.py │ │ ├── inflow.py │ │ ├── jet_pump.py │ │ └── outflow.py ├── wellpy │ ├── __init__.py │ └── path │ │ ├── __init__.py │ │ ├── checkarrays.py │ │ ├── interpolate.py │ │ ├── mincurve.py │ │ ├── perftops.py │ │ ├── projection.py │ │ └── wells.py ├── wellschematicspy │ ├── __init__.py │ └── schematics.py └── welltestpy │ ├── __init__.py │ ├── iarf.py │ └── ssrf.py ├── setup.cfg └── setup.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: scuervo91 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/_config.yml -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/images/log_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/docs/images/log_1.png -------------------------------------------------------------------------------- /docs/images/log_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/docs/images/log_2.png -------------------------------------------------------------------------------- /docs/images/log_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/docs/images/log_3.png -------------------------------------------------------------------------------- /docs/images/pi_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/docs/images/pi_1.png -------------------------------------------------------------------------------- /docs/images/pi_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/docs/images/pi_2.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/welllogspy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/docs/welllogspy.md -------------------------------------------------------------------------------- /docs/wellproductivitypy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/docs/wellproductivitypy.md -------------------------------------------------------------------------------- /examples/material_balance/1-basics_mbe.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/examples/material_balance/1-basics_mbe.ipynb -------------------------------------------------------------------------------- /examples/material_balance/2- Gas Material Balance.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/examples/material_balance/2- Gas Material Balance.ipynb -------------------------------------------------------------------------------- /examples/pvt/Water_pvt.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/examples/pvt/Water_pvt.ipynb -------------------------------------------------------------------------------- /examples/pvt/gas_pvt.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/examples/pvt/gas_pvt.ipynb -------------------------------------------------------------------------------- /examples/pvt/oil_pvt.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/examples/pvt/oil_pvt.ipynb -------------------------------------------------------------------------------- /examples/relative_permeabilities/kr.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/examples/relative_permeabilities/kr.ipynb -------------------------------------------------------------------------------- /examples/simulation/Build Simulation Model.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/examples/simulation/Build Simulation Model.ipynb -------------------------------------------------------------------------------- /examples/simulation/grid.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/examples/simulation/grid.ipynb -------------------------------------------------------------------------------- /examples/volumetrics/mir_sup_map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/examples/volumetrics/mir_sup_map -------------------------------------------------------------------------------- /examples/volumetrics/volumetrics.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/examples/volumetrics/volumetrics.ipynb -------------------------------------------------------------------------------- /examples/well_schematics/well_schematics.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/examples/well_schematics/well_schematics.ipynb -------------------------------------------------------------------------------- /examples/well_test/flow regimes.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/examples/well_test/flow regimes.ipynb -------------------------------------------------------------------------------- /examples/welllogs/1-basics/1-petrophysics.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/examples/welllogs/1-basics/1-petrophysics.ipynb -------------------------------------------------------------------------------- /examples/welllogs/1-basics/2-groups_wells.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/examples/welllogs/1-basics/2-groups_wells.ipynb -------------------------------------------------------------------------------- /examples/welllogs/2-field/field.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/examples/welllogs/2-field/field.ipynb -------------------------------------------------------------------------------- /examples/wellproductivity/1-declination.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/examples/wellproductivity/1-declination.ipynb -------------------------------------------------------------------------------- /examples/wellproductivity/2-productivity_index.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/examples/wellproductivity/2-productivity_index.ipynb -------------------------------------------------------------------------------- /examples/wellproductivity/2a-gas_productivity_index.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/examples/wellproductivity/2a-gas_productivity_index.ipynb -------------------------------------------------------------------------------- /examples/wellproductivity/3-declination_wor.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/examples/wellproductivity/3-declination_wor.ipynb -------------------------------------------------------------------------------- /examples/wellproductivity/4-gas_outflow.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/examples/wellproductivity/4-gas_outflow.ipynb -------------------------------------------------------------------------------- /examples/wellproductivity/5-pressure_drop-Copy1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/examples/wellproductivity/5-pressure_drop-Copy1.ipynb -------------------------------------------------------------------------------- /examples/wellproductivity/5-pressure_drop.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/examples/wellproductivity/5-pressure_drop.ipynb -------------------------------------------------------------------------------- /examples/wellproductivity/6-ALS-UBH.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/examples/wellproductivity/6-ALS-UBH.ipynb -------------------------------------------------------------------------------- /examples/wellproductivity/7-schedule_forecast-Copy1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/examples/wellproductivity/7-schedule_forecast-Copy1.ipynb -------------------------------------------------------------------------------- /examples/wellproductivity/ESP.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/examples/wellproductivity/ESP.ipynb -------------------------------------------------------------------------------- /examples/wellproductivity/esp_pumps.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/examples/wellproductivity/esp_pumps.csv -------------------------------------------------------------------------------- /examples/wellproductivity/pvt.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/examples/wellproductivity/pvt.csv -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/requirements.txt -------------------------------------------------------------------------------- /reservoirpy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/__init__.py -------------------------------------------------------------------------------- /reservoirpy/cashflows/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/cashflows/__init__.py -------------------------------------------------------------------------------- /reservoirpy/cashflows/analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/cashflows/analysis.py -------------------------------------------------------------------------------- /reservoirpy/cashflows/bond.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/cashflows/bond.py -------------------------------------------------------------------------------- /reservoirpy/cashflows/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/cashflows/common.py -------------------------------------------------------------------------------- /reservoirpy/cashflows/currency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/cashflows/currency.py -------------------------------------------------------------------------------- /reservoirpy/cashflows/depreciation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/cashflows/depreciation.py -------------------------------------------------------------------------------- /reservoirpy/cashflows/inflation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/cashflows/inflation.py -------------------------------------------------------------------------------- /reservoirpy/cashflows/loan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/cashflows/loan.py -------------------------------------------------------------------------------- /reservoirpy/cashflows/rate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/cashflows/rate.py -------------------------------------------------------------------------------- /reservoirpy/cashflows/savings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/cashflows/savings.py -------------------------------------------------------------------------------- /reservoirpy/cashflows/taxing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/cashflows/taxing.py -------------------------------------------------------------------------------- /reservoirpy/cashflows/timeseries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/cashflows/timeseries.py -------------------------------------------------------------------------------- /reservoirpy/cashflows/tvmm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/cashflows/tvmm.py -------------------------------------------------------------------------------- /reservoirpy/cashflows/utilityfun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/cashflows/utilityfun.py -------------------------------------------------------------------------------- /reservoirpy/krpy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/krpy/__init__.py -------------------------------------------------------------------------------- /reservoirpy/krpy/kr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/krpy/kr.py -------------------------------------------------------------------------------- /reservoirpy/materialbalancepy/__init__.py: -------------------------------------------------------------------------------- 1 | from . import mbe -------------------------------------------------------------------------------- /reservoirpy/materialbalancepy/mbe/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/materialbalancepy/mbe/__init__.py -------------------------------------------------------------------------------- /reservoirpy/materialbalancepy/mbe/aquifer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/materialbalancepy/mbe/aquifer.py -------------------------------------------------------------------------------- /reservoirpy/materialbalancepy/mbe/mbe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/materialbalancepy/mbe/mbe.py -------------------------------------------------------------------------------- /reservoirpy/materialbalancepy/mbe/recovery_mechanisms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/materialbalancepy/mbe/recovery_mechanisms.json -------------------------------------------------------------------------------- /reservoirpy/pvtpy/__init__.py: -------------------------------------------------------------------------------- 1 | from . import black_oil 2 | 3 | -------------------------------------------------------------------------------- /reservoirpy/pvtpy/black_oil/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/pvtpy/black_oil/__init__.py -------------------------------------------------------------------------------- /reservoirpy/pvtpy/black_oil/components_properties.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/pvtpy/black_oil/components_properties.csv -------------------------------------------------------------------------------- /reservoirpy/pvtpy/black_oil/correlations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/pvtpy/black_oil/correlations.py -------------------------------------------------------------------------------- /reservoirpy/pvtpy/black_oil/pvt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/pvtpy/black_oil/pvt.py -------------------------------------------------------------------------------- /reservoirpy/simulationpy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/simulationpy/__init__.py -------------------------------------------------------------------------------- /reservoirpy/simulationpy/grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/simulationpy/grid.py -------------------------------------------------------------------------------- /reservoirpy/simulationpy/initial_conditions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/simulationpy/initial_conditions.py -------------------------------------------------------------------------------- /reservoirpy/simulationpy/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/simulationpy/model.py -------------------------------------------------------------------------------- /reservoirpy/simulationpy/numerical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/simulationpy/numerical.py -------------------------------------------------------------------------------- /reservoirpy/simulationpy/results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/simulationpy/results.py -------------------------------------------------------------------------------- /reservoirpy/simulationpy/schedule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/simulationpy/schedule.py -------------------------------------------------------------------------------- /reservoirpy/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/utils/__init__.py -------------------------------------------------------------------------------- /reservoirpy/utils/formula.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/utils/formula.py -------------------------------------------------------------------------------- /reservoirpy/volumetricspy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/volumetricspy/__init__.py -------------------------------------------------------------------------------- /reservoirpy/volumetricspy/volumetrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/volumetricspy/volumetrics.py -------------------------------------------------------------------------------- /reservoirpy/welllogspy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/welllogspy/__init__.py -------------------------------------------------------------------------------- /reservoirpy/welllogspy/geomechanics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/welllogspy/geomechanics/__init__.py -------------------------------------------------------------------------------- /reservoirpy/welllogspy/geomechanics/stress_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/welllogspy/geomechanics/stress_state.py -------------------------------------------------------------------------------- /reservoirpy/welllogspy/log/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | from .log import Log 3 | -------------------------------------------------------------------------------- /reservoirpy/welllogspy/log/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/welllogspy/log/log.py -------------------------------------------------------------------------------- /reservoirpy/welllogspy/log/mnemonics.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/welllogspy/log/mnemonics.csv -------------------------------------------------------------------------------- /reservoirpy/welllogspy/petrophysics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/welllogspy/petrophysics/__init__.py -------------------------------------------------------------------------------- /reservoirpy/welllogspy/petrophysics/petroequations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/welllogspy/petrophysics/petroequations.py -------------------------------------------------------------------------------- /reservoirpy/welllogspy/petrophysics/petrophysics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/welllogspy/petrophysics/petrophysics.py -------------------------------------------------------------------------------- /reservoirpy/welllogspy/petrophysics/plotrecipes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/welllogspy/petrophysics/plotrecipes.py -------------------------------------------------------------------------------- /reservoirpy/welllogspy/petrophysics/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/welllogspy/petrophysics/resources.py -------------------------------------------------------------------------------- /reservoirpy/welllogspy/tracks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/welllogspy/tracks/__init__.py -------------------------------------------------------------------------------- /reservoirpy/welllogspy/tracks/caltrack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/welllogspy/tracks/caltrack.py -------------------------------------------------------------------------------- /reservoirpy/welllogspy/tracks/cbltrack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/welllogspy/tracks/cbltrack.py -------------------------------------------------------------------------------- /reservoirpy/welllogspy/tracks/dntrack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/welllogspy/tracks/dntrack.py -------------------------------------------------------------------------------- /reservoirpy/welllogspy/tracks/flagtrack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/welllogspy/tracks/flagtrack.py -------------------------------------------------------------------------------- /reservoirpy/welllogspy/tracks/fmtrack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/welllogspy/tracks/fmtrack.py -------------------------------------------------------------------------------- /reservoirpy/welllogspy/tracks/gastrack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/welllogspy/tracks/gastrack.py -------------------------------------------------------------------------------- /reservoirpy/welllogspy/tracks/grtrack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/welllogspy/tracks/grtrack.py -------------------------------------------------------------------------------- /reservoirpy/welllogspy/tracks/khtrack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/welllogspy/tracks/khtrack.py -------------------------------------------------------------------------------- /reservoirpy/welllogspy/tracks/ktrack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/welllogspy/tracks/ktrack.py -------------------------------------------------------------------------------- /reservoirpy/welllogspy/tracks/lithotrack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/welllogspy/tracks/lithotrack.py -------------------------------------------------------------------------------- /reservoirpy/welllogspy/tracks/oilshowtrack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/welllogspy/tracks/oilshowtrack.py -------------------------------------------------------------------------------- /reservoirpy/welllogspy/tracks/phietrack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/welllogspy/tracks/phietrack.py -------------------------------------------------------------------------------- /reservoirpy/welllogspy/tracks/restrack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/welllogspy/tracks/restrack.py -------------------------------------------------------------------------------- /reservoirpy/welllogspy/tracks/swtrack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/welllogspy/tracks/swtrack.py -------------------------------------------------------------------------------- /reservoirpy/welllogspy/tracks/track.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/welllogspy/tracks/track.py -------------------------------------------------------------------------------- /reservoirpy/welllogspy/tracks/vshtrack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/welllogspy/tracks/vshtrack.py -------------------------------------------------------------------------------- /reservoirpy/wellproductivitypy/__init__.py: -------------------------------------------------------------------------------- 1 | from . import pi -------------------------------------------------------------------------------- /reservoirpy/wellproductivitypy/pi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/wellproductivitypy/pi/__init__.py -------------------------------------------------------------------------------- /reservoirpy/wellproductivitypy/pi/als.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/wellproductivitypy/pi/als.py -------------------------------------------------------------------------------- /reservoirpy/wellproductivitypy/pi/esp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/wellproductivitypy/pi/esp.py -------------------------------------------------------------------------------- /reservoirpy/wellproductivitypy/pi/inflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/wellproductivitypy/pi/inflow.py -------------------------------------------------------------------------------- /reservoirpy/wellproductivitypy/pi/jet_pump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/wellproductivitypy/pi/jet_pump.py -------------------------------------------------------------------------------- /reservoirpy/wellproductivitypy/pi/outflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/wellproductivitypy/pi/outflow.py -------------------------------------------------------------------------------- /reservoirpy/wellpy/__init__.py: -------------------------------------------------------------------------------- 1 | from . import path 2 | 3 | -------------------------------------------------------------------------------- /reservoirpy/wellpy/path/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/wellpy/path/__init__.py -------------------------------------------------------------------------------- /reservoirpy/wellpy/path/checkarrays.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/wellpy/path/checkarrays.py -------------------------------------------------------------------------------- /reservoirpy/wellpy/path/interpolate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/wellpy/path/interpolate.py -------------------------------------------------------------------------------- /reservoirpy/wellpy/path/mincurve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/wellpy/path/mincurve.py -------------------------------------------------------------------------------- /reservoirpy/wellpy/path/perftops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/wellpy/path/perftops.py -------------------------------------------------------------------------------- /reservoirpy/wellpy/path/projection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/wellpy/path/projection.py -------------------------------------------------------------------------------- /reservoirpy/wellpy/path/wells.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/wellpy/path/wells.py -------------------------------------------------------------------------------- /reservoirpy/wellschematicspy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/wellschematicspy/__init__.py -------------------------------------------------------------------------------- /reservoirpy/wellschematicspy/schematics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/wellschematicspy/schematics.py -------------------------------------------------------------------------------- /reservoirpy/welltestpy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/welltestpy/__init__.py -------------------------------------------------------------------------------- /reservoirpy/welltestpy/iarf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/welltestpy/iarf.py -------------------------------------------------------------------------------- /reservoirpy/welltestpy/ssrf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/reservoirpy/welltestpy/ssrf.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | # Inside of setup.cfg 2 | [metadata] 3 | description-file = README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scuervo91/reservoirpy/HEAD/setup.py --------------------------------------------------------------------------------