--- license: cc-by-nc-4.0 task_categories: - tabular-classification - tabular-regression - time-series-forecasting tags: - synthetic-data - oil-and-gas - upstream - production - decline-curve - arps - arps-decline - type-curve - well-economics - reserves - eur - spe-prms - api-production-reporting - epa-subpart-w - methane-emissions - ghg-emissions - pvt - standing-correlation - vasquez-beggs - reservoir-engineering - petroleum-engineering - permian - eagle-ford - bakken - appalachian - marcellus - gulf-of-mexico - shale - unconventional - horizontal-drilling - hydraulic-fracturing - esp - rod-pump - gas-lift - wti - henry-hub - commodity-prices - ornstein-uhlenbeck - royalty - working-interest - net-revenue-interest - nri - gor - water-cut - bsw - bottomhole-pressure pretty_name: ENR004 — Synthetic Upstream Oil & Gas Production Dataset (Sample) size_categories: - 10K 1] if len(producing) >= 60: ratio = producing.tail(30)["oil_rate_bopd"].mean() / producing.head(30)["oil_rate_bopd"].mean() wells_meta = wells[wells["well_id"] == wid].iloc[0] print(f"{wid[:8]} {wells_meta['basin']:<14} {wells_meta['fluid_type']:<14} " f"decline ratio = {ratio:.3f}") ``` ```python # Arps decline curve fit per well import numpy as np import pandas as pd def fit_exponential_di(g): """Estimate exponential decline rate per year from log-linear fit.""" g = g.sort_values("production_date") producing = g[g["oil_rate_bopd"] > 1].reset_index(drop=True) if len(producing) < 30: return np.nan days = np.arange(len(producing)) log_oil = np.log(producing["oil_rate_bopd"].values) m, _ = np.polyfit(days, log_oil, 1) return -m * 365 # fraction per year fit_di = prod.groupby("well_id").apply(fit_exponential_di) print(f"Fitted di mean: {fit_di.mean():.3f}/yr (target: see wells.initial_decline_rate_pct_yr)") ``` --- ## Limitations and honest disclosures This sample is calibrated for **structural fidelity, not bit-exact reproduction of any specific basin's archive.** Specifically: - **The production table is NOT a uniform daily series for every well.** Generator line 543-545 skips consecutive inactive days as a memory optimization. For long-shut-in or P_AND_A wells, only the transition rows are recorded. Use `well_status` and `production_date` explicitly when building daily-frequency time series. - **`unit_status` (PRODUCING / SHUT_IN / P_AND_A) is computed from `oil_rate_bopd` vs. economic limit** — there is no separate operational state model for unplanned shutdowns vs. mechanical issues vs. economic shut-ins. Use status as a coarse activity proxy, not an event log. - **Decline curve log-linear R² at daily resolution is low (~0.02-0.05)** even though the underlying Arps process is correctly implemented. The ±5% lognormal noise + 2% seasonal modulation + 3% downtime mask the smooth Arps trend at daily cadence. For decline-curve ML, aggregate to monthly first (the industry-standard cadence). The structural decline property (last 30 days < first 30 days) holds at 100% of qualifying wells. - **The Ornstein-Uhlenbeck WTI process** mean-reverts to $68 at θ=0.15/yr but the 2-year sample mean wanders $60-$87 across seeds. For volatility- sensitive backtests, replay with deliberate price shocks; for level exposure, use the realized prices per row directly. - **`base_gor` is derived from `bubble_point_pressure × 0.5`** (generator line 466), then escalated by `1 + t × uniform(0.05, 0.25)/yr` per well. This produces realistic GOR rise for depleting reservoirs above bubble point, but does NOT model the gas-cap-driven GOR collapse that occurs in solution-gas-drive reservoirs after they drop below bubble point. - **`h2s_concentration_ppm` is derived from `sulfur_content_pct × 5000`** — a coarse proxy. Real H2S concentrations depend on bacterial sulfate reduction, formation chemistry, and souring history. Use as a hazard flag, not for materials selection or treating chemistry design. - **`spill_event_flag`** fires at 0.001/day — at sample scale that's ~15 events across the full table; per-basin spill rate analysis needs the full product scale (5K wells × 5 years). - **`recompletion_flag` is per-well static** — generator does not model the date/timing/effect of a recompletion on subsequent production. - **Surface facilities are not linked 1:1 to specific wells** — the `facilities.field_id` joins to the field, but wells-to-facility assignment is not modeled. Treat facilities as field-level summary. - **Commodity price differentials are per-well constants** drawn at well-creation time, not time-varying — the full product models basin-specific differential dynamics (e.g., Midland-Cushing, Appalachian-NYMEX). The full ENR004 product addresses these by per-event SCADA shutdowns, monthly-aggregated decline analytics, basin-specific GOR/WOR phase modeling, well-facility linkage, and time-varying differentials — contact us for the licensed commercial release. --- ## Companion datasets in the Energy & Climate vertical - **ENR-001** — Synthetic Power Grid Operations Dataset (bus telemetry, line flows, dispatch, frequency, contingency) - **ENR-002** — Synthetic Renewable Energy Generation Dataset (solar/wind/ hybrid SCADA, weather, forecast, PCC, BESS) - **ENR-003** — Synthetic Electricity Demand & Load Forecasting Dataset (zone-level demand, multi-horizon forecasts, peak events, EV/DER, TOU, LMP) - **ENR-004** — Synthetic Upstream Oil & Gas Production Dataset (you are here) — well-level production, decline curves, PVT, commodity prices, Subpart W methane Use **ENR-001 + ENR-002 + ENR-003 + ENR-004** together for a complete energy value-chain ML workflow: upstream production economics (ENR-004) → generation supply mix and renewables (ENR-002) → grid dispatch and delivery (ENR-001) → demand-side load and pricing (ENR-003). For subsurface companion data (seismic, well logs, reservoir simulation, geological formations), see the **OIL series** (OIL-001 through OIL-004) in our [Oil & Gas vertical](https://huggingface.co/xpertsystems). For the broader catalog: - [Materials & Energy](https://huggingface.co/xpertsystems) — MAT-001 - [Insurance & Risk](https://huggingface.co/xpertsystems) — 10 SKUs - [Cybersecurity](https://huggingface.co/xpertsystems) — 11 SKUs --- ## Citation ```bibtex @dataset{xpertsystems_enr004_sample_2026, author = {XpertSystems.ai}, title = {ENR004 Synthetic Upstream Oil and Gas Production Dataset (Sample Preview)}, year = 2026, publisher = {Hugging Face}, url = {https://huggingface.co/datasets/xpertsystems/enr004-sample} } ``` --- ## Contact - **Web:** https://xpertsystems.ai - **Email:** pradeep@xpertsystems.ai - **Full product catalog:** Cybersecurity, Insurance & Risk, Materials & Energy, Oil & Gas, Energy & Climate, and more **Sample License:** CC-BY-NC-4.0 (Creative Commons Attribution-NonCommercial 4.0) **Full product License:** Commercial — please contact for pricing.