Source code for cimpy.cgmes_v2_4_15.SVCControlMode

from .Base import Base
from .CGMESProfile import Profile


[docs]class SVCControlMode(Base): """ Static VAr Compensator control mode. """ possibleProfileList = { "class": [Profile.EQ.value, ], } serializationProfile = {} recommendedClassProfile = Profile.EQ.value def __init__(self): pass def __str__(self): str = "class=SVCControlMode\n" attributes = self.__dict__ for key in attributes.keys(): str = str + key + "={}\n".format(attributes[key]) return str