Source code for cimpy.cgmes_v2_4_15.AngleRadians

from .Base import Base


[docs]class AngleRadians(Base): ''' Phase angle in radians. :value: Default: 0.0 :unit: Default: None :multiplier: Default: None ''' cgmesProfile = Base.cgmesProfile possibleProfileList = {'class': [cgmesProfile.EQ.value, ], 'value': [cgmesProfile.EQ.value, ], 'unit': [cgmesProfile.EQ.value, ], 'multiplier': [cgmesProfile.EQ.value, ], } serializationProfile = {} def __init__(self, value = 0.0, unit = None, multiplier = None, ): self.value = value self.unit = unit self.multiplier = multiplier def __str__(self): str = 'class=AngleRadians\n' attributes = self.__dict__ for key in attributes.keys(): str = str + key + '={}\n'.format(attributes[key]) return str