Source code for cimpy.cgmes_v2_4_15.ExcST7BOELselectorKind

from .Base import Base


[docs]class ExcST7BOELselectorKind(Base): ''' Type of connection for the OEL input used for static excitation systems type 7B. ''' cgmesProfile = Base.cgmesProfile possibleProfileList = {'class': [cgmesProfile.DY.value, ], } serializationProfile = {} def __init__(self, ): pass def __str__(self): str = 'class=ExcST7BOELselectorKind\n' attributes = self.__dict__ for key in attributes.keys(): str = str + key + '={}\n'.format(attributes[key]) return str