Source code for cimpy.cgmes_v2_4_15.PetersenCoilModeKind

from .Base import Base
from .CGMESProfile import Profile


[docs]class PetersenCoilModeKind(Base): """ The mode of operation for a Petersen coil. """ possibleProfileList = { "class": [Profile.EQ.value, ], } serializationProfile = {} recommendedClassProfile = Profile.EQ.value def __init__(self): pass def __str__(self): str = "class=PetersenCoilModeKind\n" attributes = self.__dict__ for key in attributes.keys(): str = str + key + "={}\n".format(attributes[key]) return str