Source code for gemini_framework.modules.productionwell.unit
"""Production well unit (placeholder for production-related modules)."""
from gemini_framework.abstract.unit_abstract import UnitAbstract
[docs]
class ProductionWellUnit(UnitAbstract):
"""Production well unit container for production modules."""
def __init__(self, unit_id, unit_name, plant):
"""Initialize production well unit."""
super().__init__(unit_id=unit_id, unit_name=unit_name, plant=plant)