Source code for cimpy.cgmes_v2_4_15.WindGenUnitKind

from .Base import Base
from .CGMESProfile import Profile


[docs]class WindGenUnitKind(Base): """ Kind of wind generating unit. """ possibleProfileList = { "class": [Profile.EQ.value, ], } serializationProfile = {} recommendedClassProfile = Profile.EQ.value def __init__(self): pass def __str__(self): str = "class=WindGenUnitKind\n" attributes = self.__dict__ for key in attributes.keys(): str = str + key + "={}\n".format(attributes[key]) return str