Package CIM14 :: Package IEC61970 :: Package Meas :: Module Analog' :: Class Analog
[hide private]
[frames] | no frames]

Class Analog

                         object --+            
                                  |            
                   Element'.Element --+        
                                      |        
Core.IdentifiedObject'.IdentifiedObject --+    
                                          |    
                   Measurement'.Measurement --+
                                              |
                                             Analog

Analog represents an analog Measurement.

Instance Methods [hide private]
 
__init__(self, positiveFlowIn=False, minValue=0.0, maxValue=0.0, normalValue=0.0, LimitSets=None, SetPoint=None, AnalogValues=None, *args, **kw_args)
Initialises a new 'Analog' instance.
 
addAnalogValues(self, *AnalogValues)
 
addLimitSets(self, *LimitSets)
 
getAnalogValues(self)
The values connected to this measurement.
 
getLimitSets(self)
A measurement may have zero or more limit ranges defined for it.
 
getSetPoint(self)
The Control variable associated with the Measurement
 
removeAnalogValues(self, *AnalogValues)
 
removeLimitSets(self, *LimitSets)
 
setAnalogValues(self, value)
 
setLimitSets(self, value)
 
setSetPoint(self, value)

Inherited from Measurement'.Measurement: addDocuments, addLocations, addtieToMeasurement0, getAsset, getDocuments, getLocations, getPowerSystemResource, getTerminal, getUnit, gettieToMeasurement0, removeDocuments, removeLocations, removetieToMeasurement0, setAsset, setDocuments, setLocations, setPowerSystemResource, setTerminal, setUnit, settieToMeasurement0

Inherited from Core.IdentifiedObject'.IdentifiedObject: getModelingAuthoritySet, setModelingAuthoritySet

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Class Variables [hide private]
  _attr_types = {'maxValue': <type 'float'>, 'minValue': <type '...
  _attrs = ['positiveFlowIn', 'minValue', 'maxValue', 'normalVal...
  _defaults = {'maxValue': 0.0, 'minValue': 0.0, 'normalValue': ...
  _many_refs = ['LimitSets', 'AnalogValues']
  _refs = ['LimitSets', 'SetPoint', 'AnalogValues']

Inherited from Element'.Element (private): _enums

Properties [hide private]
  AnalogValues
The values connected to this measurement.
  LimitSets
A measurement may have zero or more limit ranges defined for it.
  SetPoint
The Control variable associated with the Measurement

Inherited from Measurement'.Measurement: Asset, Documents, Locations, PowerSystemResource, Terminal, Unit, tieToMeasurement0

Inherited from Core.IdentifiedObject'.IdentifiedObject: ModelingAuthoritySet

Inherited from object: __class__

Method Details [hide private]

__init__(self, positiveFlowIn=False, minValue=0.0, maxValue=0.0, normalValue=0.0, LimitSets=None, SetPoint=None, AnalogValues=None, *args, **kw_args)
(Constructor)

 

Initialises a new 'Analog' instance.

Parameters:
  • positiveFlowIn - If true then this measurement is an active power, reactive power or current with the convention that a positive value measured at the Terminal means power is flowing into the related PowerSystemResource.
  • minValue - Normal value range minimum for any of the MeasurementValue.values. Used for scaling, e.g. in bar graphs or of telemetered raw values
  • maxValue - Normal value range maximum for any of the MeasurementValue.values. Used for scaling, e.g. in bar graphs or of telemetered raw values.
  • normalValue - Normal measurement value, e.g., used for percentage calculations.
  • LimitSets - A measurement may have zero or more limit ranges defined for it.
  • SetPoint - The Control variable associated with the Measurement
  • AnalogValues - The values connected to this measurement.
Overrides: object.__init__

Class Variable Details [hide private]

_attr_types

Value:
{'maxValue': <type 'float'>,
 'minValue': <type 'float'>,
 'normalValue': <type 'float'>,
 'positiveFlowIn': <type 'bool'>}

_attrs

Value:
['positiveFlowIn', 'minValue', 'maxValue', 'normalValue']

_defaults

Value:
{'maxValue': 0.0,
 'minValue': 0.0,
 'normalValue': 0.0,
 'positiveFlowIn': False}

Property Details [hide private]

AnalogValues

The values connected to this measurement.

Get Method:
getAnalogValues(self) - The values connected to this measurement.
Set Method:
setAnalogValues(self, value)

LimitSets

A measurement may have zero or more limit ranges defined for it.

Get Method:
getLimitSets(self) - A measurement may have zero or more limit ranges defined for it.
Set Method:
setLimitSets(self, value)

SetPoint

The Control variable associated with the Measurement

Get Method:
getSetPoint(self) - The Control variable associated with the Measurement
Set Method:
setSetPoint(self, value)