Source code for cimpy.cgmes_v2_4_15.RegulatingControlModeKind

from .Base import Base


[docs]class RegulatingControlModeKind(Base): ''' The kind of regulation model. For example regulating voltage, reactive power, active power, etc. ''' cgmesProfile = Base.cgmesProfile possibleProfileList = {'class': [cgmesProfile.EQ.value, ], } serializationProfile = {} def __init__(self, ): pass def __str__(self): str = 'class=RegulatingControlModeKind\n' attributes = self.__dict__ for key in attributes.keys(): str = str + key + '={}\n'.format(attributes[key]) return str