Agent skill
oil-and-gas-volumetrics
Sub-skill of oil-and-gas: Volumetrics (+3).
Install this agent skill to your Project
npx add-skill https://github.com/vamseeachanta/workspace-hub/tree/main/.claude/skills/_archive/engineering/oil-and-gas/volumetrics
SKILL.md
Volumetrics (+3)
Volumetrics
# Stock Tank Oil Initially In Place (STOIIP)
STOIIP = 7758 * A * h * phi * (1 - Sw) / Boi # STB
# Gas Initially In Place (GIIP)
GIIP = 43560 * A * h * phi * (1 - Sw) / Bgi # SCF
Decline Curves
import numpy as np
# Exponential decline
q_exp = qi * np.exp(-D * t)
# Hyperbolic decline
q_hyp = qi / (1 + b * D * t) ** (1 / b)
# Harmonic decline (b = 1)
q_harm = qi / (1 + D * t)
Material Balance (General Form)
# F = N * Et + We - Wp * Bw
# F = underground withdrawal
# Et = total expansion
# We = water influx
STOIIP Function with Validation
def calculate_oil_in_place(
area_acres: float,
thickness_ft: float,
porosity: float,
water_saturation: float,
formation_volume_factor: float
) -> float:
"""
Calculate Stock Tank Oil Initially In Place (STOIIP).
*See sub-skills for full details.*
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
gsd-complete-milestone
Archive completed milestone and prepare for next version
gsd-reapply-patches
Reapply local modifications after a GSD update
gsd-verify-work
Validate built features through conversational UAT
gsd-thread
Manage persistent context threads for cross-session work
clinical-trial-protocol
Generate clinical trial protocols for medical devices or drugs through a modular, waypoint-based architecture with research-only and full protocol modes.
single-cell-rna-qc
Performs quality control on single-cell RNA-seq data (.h5ad or .h5 files) using scverse best practices with MAD-based filtering and comprehensive visualizations.
Didn't find tool you were looking for?