Monitor and optimize well performance, production surveillance, and enhanced oil recovery operations
Fundamentals of production, surveillance, and lessons learnt for offshore and onshore assets.
Version: 1.0.0 Created: 2026-01-12 Category: Subject Matter Expert (SME)
Production engineering involves the design, monitoring, and optimization of well performance and production systems. This skill encapsulates the core knowledge extracted from legacy "Surveillance Workshops" and EOR evaluations, focusing on maximizing asset value while ensuring operational safety.
Surveillance workshops are the backbone of production optimization. They involve:
def check_well_performance(measured_rate, predicted_rate, threshold=0.15):
"""
Check if a well is underperforming based on nodal analysis predictions.
"""
deviation = (predicted_rate - measured_rate) / predicted_rate
if deviation > threshold:
return "Action Required: Potential Scaling or Blockage"
return "Status: Optimal"
def calculate_vrr(injection_volume, production_volume, b_factor):
"""
Calculate VRR for waterflood surveillance.
Ideal VRR is usually ~1.0.
"""
return injection_volume / (production_volume * b_factor)
/mnt/ace/Production/ (Workshop PPTs and EOR evaluations).digitalmodel/reservoir/ for analytical performance calculations.