altdss.enums

Contents

altdss.enums#

Module Contents#

Classes#

AutoAddDeviceType

AutoAdd Device Type (DSS enumeration)

AutoTransConnection

AutoTrans: Connection (DSS enumeration)

CapControlType

CapControl: Type (DSS enumeration)

CircuitModel

Circuit Model (DSS enumeration)

Connection

Connection (DSS enumeration)

ControlMode

Control Mode (DSS enumeration)

CoreType

Core Type (DSS enumeration)

DynamicExpDomain

DynamicExp: Domain (DSS enumeration)

ESPVLControlType

ESPVLControl: Type (DSS enumeration)

EarthModel

Earth Model (DSS enumeration)

EnergyMeterAction

EnergyMeter: Action (DSS enumeration)

ExtraClassIDs

A very limited set of functions accept the numbers from this enumeration as shortcuts to the internal prepared element lists of the engine.

FuseAction

Fuse: Action (DSS enumeration)

FuseState

Fuse: State (DSS enumeration)

GICTransformerType

GICTransformer: Type (DSS enumeration)

GeneratorDispatchMode

Generator: Dispatch Mode (DSS enumeration)

GeneratorModel

Generator: Model (DSS enumeration)

GeneratorStatus

Generator: Status (DSS enumeration)

IndMach012SlipOption

IndMach012: Slip Option (DSS enumeration)

InvControlCombiMode

InvControl: Combi Mode (DSS enumeration)

InvControlControlMode

InvControl: Control Mode (DSS enumeration)

InvControlControlModel

InvControl: Control Model (DSS enumeration)

InvControlRateOfChangeMode

InvControl: Rate-of-change Mode (DSS enumeration)

InvControlReactivePowerReference

InvControl: Reactive Power Reference (DSS enumeration)

InvControlVoltWattYAxis

InvControl: Volt-Watt Y-Axis (DSS enumeration)

InvControlVoltageCurveXRef

InvControl: Voltage Curve X Ref (DSS enumeration)

InverterControlMode

Inverter Control Mode (DSS enumeration)

LengthUnit

Length Unit (DSS enumeration)

LineType

Line Type (DSS enumeration)

LoadModel

Load: Model (DSS enumeration)

LoadShapeAction

LoadShape: Action (DSS enumeration)

LoadShapeClass

Load Shape Class (DSS enumeration)

LoadShapeInterpolation

LoadShape: Interpolation (DSS enumeration)

LoadSolutionModel

Load Solution Model (DSS enumeration)

LoadStatus

Load: Status (DSS enumeration)

MonitorAction

Monitor: Action (DSS enumeration)

MonitoredPhase

Monitored Phase (DSS enumeration)

PVSystemModel

PVSystem: Model (DSS enumeration)

PhaseSequence

Phase Sequence (DSS enumeration)

PlotProfilePhases

Plot: Profile Phases (DSS enumeration)

PriceShapeAction

PriceShape: Action (DSS enumeration)

RandomType

Random Type (DSS enumeration)

RecloserAction

Recloser: Action (DSS enumeration)

RecloserState

Recloser: State (DSS enumeration)

ReductionStrategy

Reduction Strategy (DSS enumeration)

RegControlPhaseSelection

RegControl: Phase Selection (DSS enumeration)

RelayAction

Relay: Action (DSS enumeration)

RelayState

Relay: State (DSS enumeration)

RelayType

Relay: Type (DSS enumeration)

ScanType

Scan Type (DSS enumeration)

SequenceType

Sequence Type (DSS enumeration)

SolutionAlgorithm

Solution Algorithm (DSS enumeration)

SolutionMode

Solution Mode (DSS enumeration)

StorageControllerChargeMode

StorageController: Charge Mode (DSS enumeration)

StorageControllerDischargeMode

StorageController: Discharge Mode (DSS enumeration)

StorageDispatchMode

Storage: Dispatch Mode (DSS enumeration)

StorageState

Storage: State (DSS enumeration)

SwtControlAction

SwtControl: Action (DSS enumeration)

SwtControlState

SwtControl: State (DSS enumeration)

TShapeAction

TShape: Action (DSS enumeration)

UPFCMode

UPFC: Mode (DSS enumeration)

VSConverterControlMode

VSConverter: Control Mode (DSS enumeration)

VSourceModel

VSource: Model (DSS enumeration)

VisualizeQuantity

Visualize: Quantity (DSS enumeration)

API#

class altdss.enums.AutoAddDeviceType#

Bases: enum.IntEnum

AutoAdd Device Type (DSS enumeration)

Capacitor#

2

Generator#

1

__abs__()#

abs(self)

__add__()#

Return self+value.

__and__()#

Return self&value.

__bool__()#

True if self else False

__ceil__()#

Ceiling of an Integral returns itself.

__copy__()#
__deepcopy__(memo)#
__delattr__()#

Implement delattr(self, name).

__dir__()#

Default dir() implementation.

__divmod__()#

Return divmod(self, value).

__float__()#

float(self)

__floor__()#

Flooring an Integral returns itself.

__floordiv__()#

Return self//value.

__format__()#

Convert to a string according to format_spec.

__ge__()#

Return self>=value.

__getattribute__()#

Return getattr(self, name).

__getnewargs__()#
__getstate__()#

Helper for pickle.

__gt__()#

Return self>value.

__hash__()#

Return hash(self).

__index__()#

Return self converted to an integer, if self is suitable for use as an index into a list.

__init__()#

Initialize self. See help(type(self)) for accurate signature.

__int__()#

int(self)

__invert__()#

~self

__le__()#

Return self<=value.

__lshift__()#

Return self<<value.

__lt__()#

Return self<value.

__mod__()#

Return self%value.

__mul__()#

Return self*value.

__ne__()#

Return self!=value.

__neg__()#

-self

__new__()#

Create and return a new object. See help(type) for accurate signature.

__or__()#

Return self|value.

__pos__()#

+self

__pow__()#

Return pow(self, value, mod).

__radd__()#

Return value+self.

__rand__()#

Return value&self.

__rdivmod__()#

Return divmod(value, self).

__reduce__()#

Helper for pickle.

__reduce_ex__()#

Helper for pickle.

__repr__()#

Return repr(self).

__rfloordiv__()#

Return value//self.

__rlshift__()#

Return value<<self.

__rmod__()#

Return value%self.

__rmul__()#

Return value*self.

__ror__()#

Return value|self.

__round__()#

Rounding an Integral returns itself.

Rounding with an ndigits argument also returns an integer.

__rpow__()#

Return pow(value, self, mod).

__rrshift__()#

Return value>>self.

__rshift__()#

Return self>>value.

__rsub__()#

Return value-self.

__rtruediv__()#

Return value/self.

__rxor__()#

Return value^self.

classmethod __signature__()#
__sizeof__()#

Returns size in memory, in bytes.

__str__()#

Return str(self).

__sub__()#

Return self-value.

__subclasshook__()#

Abstract classes can override this to customize issubclass().

This is invoked early on by abc.ABCMeta.subclasscheck(). It should return True, False or NotImplemented. If it returns NotImplemented, the normal algorithm is used. Otherwise, it overrides the normal algorithm (and the outcome is cached).

__truediv__()#

Return self/value.

__trunc__()#

Truncating an Integral returns itself.

__xor__()#

Return self^value.

as_integer_ratio()#

Return a pair of integers, whose ratio is equal to the original int.

The ratio is in lowest terms and has a positive denominator.

(10).as_integer_ratio() (10, 1) (-10).as_integer_ratio() (-10, 1) (0).as_integer_ratio() (0, 1)

bit_count()#

Number of ones in the binary representation of the absolute value of self.

Also known as the population count.

bin(13) ‘0b1101’ (13).bit_count() 3

bit_length()#

Number of bits necessary to represent self in binary.

bin(37) ‘0b100101’ (37).bit_length() 6

conjugate()#

Returns self, the complex conjugate of any int.

class denominator#

the denominator of a rational number in lowest terms

class imag#

the imaginary part of a complex number

is_integer()#

Returns True. Exists for duck type compatibility with float.is_integer.

name()#

The name of the Enum member.

class numerator#

the numerator of a rational number in lowest terms

class real#

the real part of a complex number

to_bytes()#

Return an array of bytes representing an integer.

length Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes. Default is length 1. byteorder The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value. Default is to use ‘big’. signed Determines whether two’s complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.

value()#

The value of the Enum member.

class altdss.enums.AutoTransConnection#

Bases: enum.IntEnum

AutoTrans: Connection (DSS enumeration)

__abs__()#

abs(self)

__add__()#

Return self+value.

__and__()#

Return self&value.

__bool__()#

True if self else False

__ceil__()#

Ceiling of an Integral returns itself.

__copy__()#
__deepcopy__(memo)#
__delattr__()#

Implement delattr(self, name).

__dir__()#

Default dir() implementation.

__divmod__()#

Return divmod(self, value).

__float__()#

float(self)

__floor__()#

Flooring an Integral returns itself.

__floordiv__()#

Return self//value.

__format__()#

Convert to a string according to format_spec.

__ge__()#

Return self>=value.

__getattribute__()#

Return getattr(self, name).

__getnewargs__()#
__getstate__()#

Helper for pickle.

__gt__()#

Return self>value.

__hash__()#

Return hash(self).

__index__()#

Return self converted to an integer, if self is suitable for use as an index into a list.

__init__()#

Initialize self. See help(type(self)) for accurate signature.

__int__()#

int(self)

__invert__()#

~self

__le__()#

Return self<=value.

__lshift__()#

Return self<<value.

__lt__()#

Return self<value.

__mod__()#

Return self%value.

__mul__()#

Return self*value.

__ne__()#

Return self!=value.

__neg__()#

-self

__new__()#

Create and return a new object. See help(type) for accurate signature.

__or__()#

Return self|value.

__pos__()#

+self

__pow__()#

Return pow(self, value, mod).

__radd__()#

Return value+self.

__rand__()#

Return value&self.

__rdivmod__()#

Return divmod(value, self).

__reduce__()#

Helper for pickle.

__reduce_ex__()#

Helper for pickle.

__repr__()#

Return repr(self).

__rfloordiv__()#

Return value//self.

__rlshift__()#

Return value<<self.

__rmod__()#

Return value%self.

__rmul__()#

Return value*self.

__ror__()#

Return value|self.

__round__()#

Rounding an Integral returns itself.

Rounding with an ndigits argument also returns an integer.

__rpow__()#

Return pow(value, self, mod).

__rrshift__()#

Return value>>self.

__rshift__()#

Return self>>value.

__rsub__()#

Return value-self.

__rtruediv__()#

Return value/self.

__rxor__()#

Return value^self.

classmethod __signature__()#
__sizeof__()#

Returns size in memory, in bytes.

__str__()#

Return str(self).

__sub__()#

Return self-value.

__subclasshook__()#

Abstract classes can override this to customize issubclass().

This is invoked early on by abc.ABCMeta.subclasscheck(). It should return True, False or NotImplemented. If it returns NotImplemented, the normal algorithm is used. Otherwise, it overrides the normal algorithm (and the outcome is cached).

__truediv__()#

Return self/value.

__trunc__()#

Truncating an Integral returns itself.

__xor__()#

Return self^value.

as_integer_ratio()#

Return a pair of integers, whose ratio is equal to the original int.

The ratio is in lowest terms and has a positive denominator.

(10).as_integer_ratio() (10, 1) (-10).as_integer_ratio() (-10, 1) (0).as_integer_ratio() (0, 1)

bit_count()#

Number of ones in the binary representation of the absolute value of self.

Also known as the population count.

bin(13) ‘0b1101’ (13).bit_count() 3

bit_length()#

Number of bits necessary to represent self in binary.

bin(37) ‘0b100101’ (37).bit_length() 6

conjugate()#

Returns self, the complex conjugate of any int.

delta#

1

class denominator#

the denominator of a rational number in lowest terms

class imag#

the imaginary part of a complex number

is_integer()#

Returns True. Exists for duck type compatibility with float.is_integer.

ll#

1

ln#

0

name()#

The name of the Enum member.

class numerator#

the numerator of a rational number in lowest terms

class real#

the real part of a complex number

series#

2

to_bytes()#

Return an array of bytes representing an integer.

length Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes. Default is length 1. byteorder The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value. Default is to use ‘big’. signed Determines whether two’s complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.

value()#

The value of the Enum member.

wye#

0

y#

0

class altdss.enums.CapControlType#

Bases: enum.IntEnum

CapControl: Type (DSS enumeration)

Current#

0

Follow#

5

PowerFactor#

4

Time#

3

Voltage#

1

__abs__()#

abs(self)

__add__()#

Return self+value.

__and__()#

Return self&value.

__bool__()#

True if self else False

__ceil__()#

Ceiling of an Integral returns itself.

__copy__()#
__deepcopy__(memo)#
__delattr__()#

Implement delattr(self, name).

__dir__()#

Default dir() implementation.

__divmod__()#

Return divmod(self, value).

__float__()#

float(self)

__floor__()#

Flooring an Integral returns itself.

__floordiv__()#

Return self//value.

__format__()#

Convert to a string according to format_spec.

__ge__()#

Return self>=value.

__getattribute__()#

Return getattr(self, name).

__getnewargs__()#
__getstate__()#

Helper for pickle.

__gt__()#

Return self>value.

__hash__()#

Return hash(self).

__index__()#

Return self converted to an integer, if self is suitable for use as an index into a list.

__init__()#

Initialize self. See help(type(self)) for accurate signature.

__int__()#

int(self)

__invert__()#

~self

__le__()#

Return self<=value.

__lshift__()#

Return self<<value.

__lt__()#

Return self<value.

__mod__()#

Return self%value.

__mul__()#

Return self*value.

__ne__()#

Return self!=value.

__neg__()#

-self

__new__()#

Create and return a new object. See help(type) for accurate signature.

__or__()#

Return self|value.

__pos__()#

+self

__pow__()#

Return pow(self, value, mod).

__radd__()#

Return value+self.

__rand__()#

Return value&self.

__rdivmod__()#

Return divmod(value, self).

__reduce__()#

Helper for pickle.

__reduce_ex__()#

Helper for pickle.

__repr__()#

Return repr(self).

__rfloordiv__()#

Return value//self.

__rlshift__()#

Return value<<self.

__rmod__()#

Return value%self.

__rmul__()#

Return value*self.

__ror__()#

Return value|self.

__round__()#

Rounding an Integral returns itself.

Rounding with an ndigits argument also returns an integer.

__rpow__()#

Return pow(value, self, mod).

__rrshift__()#

Return value>>self.

__rshift__()#

Return self>>value.

__rsub__()#

Return value-self.

__rtruediv__()#

Return value/self.

__rxor__()#

Return value^self.

classmethod __signature__()#
__sizeof__()#

Returns size in memory, in bytes.

__str__()#

Return str(self).

__sub__()#

Return self-value.

__subclasshook__()#

Abstract classes can override this to customize issubclass().

This is invoked early on by abc.ABCMeta.subclasscheck(). It should return True, False or NotImplemented. If it returns NotImplemented, the normal algorithm is used. Otherwise, it overrides the normal algorithm (and the outcome is cached).

__truediv__()#

Return self/value.

__trunc__()#

Truncating an Integral returns itself.

__xor__()#

Return self^value.

as_integer_ratio()#

Return a pair of integers, whose ratio is equal to the original int.

The ratio is in lowest terms and has a positive denominator.

(10).as_integer_ratio() (10, 1) (-10).as_integer_ratio() (-10, 1) (0).as_integer_ratio() (0, 1)

bit_count()#

Number of ones in the binary representation of the absolute value of self.

Also known as the population count.

bin(13) ‘0b1101’ (13).bit_count() 3

bit_length()#

Number of bits necessary to represent self in binary.

bin(37) ‘0b100101’ (37).bit_length() 6

conjugate()#

Returns self, the complex conjugate of any int.

class denominator#

the denominator of a rational number in lowest terms

class imag#

the imaginary part of a complex number

is_integer()#

Returns True. Exists for duck type compatibility with float.is_integer.

kvar#

2

name()#

The name of the Enum member.

class numerator#

the numerator of a rational number in lowest terms

class real#

the real part of a complex number

to_bytes()#

Return an array of bytes representing an integer.

length Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes. Default is length 1. byteorder The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value. Default is to use ‘big’. signed Determines whether two’s complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.

value()#

The value of the Enum member.

class altdss.enums.CircuitModel#

Bases: enum.IntEnum

Circuit Model (DSS enumeration)

Multiphase#

0

Positive#

1

__abs__()#

abs(self)

__add__()#

Return self+value.

__and__()#

Return self&value.

__bool__()#

True if self else False

__ceil__()#

Ceiling of an Integral returns itself.

__copy__()#
__deepcopy__(memo)#
__delattr__()#

Implement delattr(self, name).

__dir__()#

Default dir() implementation.

__divmod__()#

Return divmod(self, value).

__float__()#

float(self)

__floor__()#

Flooring an Integral returns itself.

__floordiv__()#

Return self//value.

__format__()#

Convert to a string according to format_spec.

__ge__()#

Return self>=value.

__getattribute__()#

Return getattr(self, name).

__getnewargs__()#
__getstate__()#

Helper for pickle.

__gt__()#

Return self>value.

__hash__()#

Return hash(self).

__index__()#

Return self converted to an integer, if self is suitable for use as an index into a list.

__init__()#

Initialize self. See help(type(self)) for accurate signature.

__int__()#

int(self)

__invert__()#

~self

__le__()#

Return self<=value.

__lshift__()#

Return self<<value.

__lt__()#

Return self<value.

__mod__()#

Return self%value.

__mul__()#

Return self*value.

__ne__()#

Return self!=value.

__neg__()#

-self

__new__()#

Create and return a new object. See help(type) for accurate signature.

__or__()#

Return self|value.

__pos__()#

+self

__pow__()#

Return pow(self, value, mod).

__radd__()#

Return value+self.

__rand__()#

Return value&self.

__rdivmod__()#

Return divmod(value, self).

__reduce__()#

Helper for pickle.

__reduce_ex__()#

Helper for pickle.

__repr__()#

Return repr(self).

__rfloordiv__()#

Return value//self.

__rlshift__()#

Return value<<self.

__rmod__()#

Return value%self.

__rmul__()#

Return value*self.

__ror__()#

Return value|self.

__round__()#

Rounding an Integral returns itself.

Rounding with an ndigits argument also returns an integer.

__rpow__()#

Return pow(value, self, mod).

__rrshift__()#

Return value>>self.

__rshift__()#

Return self>>value.

__rsub__()#

Return value-self.

__rtruediv__()#

Return value/self.

__rxor__()#

Return value^self.

classmethod __signature__()#
__sizeof__()#

Returns size in memory, in bytes.

__str__()#

Return str(self).

__sub__()#

Return self-value.

__subclasshook__()#

Abstract classes can override this to customize issubclass().

This is invoked early on by abc.ABCMeta.subclasscheck(). It should return True, False or NotImplemented. If it returns NotImplemented, the normal algorithm is used. Otherwise, it overrides the normal algorithm (and the outcome is cached).

__truediv__()#

Return self/value.

__trunc__()#

Truncating an Integral returns itself.

__xor__()#

Return self^value.

as_integer_ratio()#

Return a pair of integers, whose ratio is equal to the original int.

The ratio is in lowest terms and has a positive denominator.

(10).as_integer_ratio() (10, 1) (-10).as_integer_ratio() (-10, 1) (0).as_integer_ratio() (0, 1)

bit_count()#

Number of ones in the binary representation of the absolute value of self.

Also known as the population count.

bin(13) ‘0b1101’ (13).bit_count() 3

bit_length()#

Number of bits necessary to represent self in binary.

bin(37) ‘0b100101’ (37).bit_length() 6

conjugate()#

Returns self, the complex conjugate of any int.

class denominator#

the denominator of a rational number in lowest terms

class imag#

the imaginary part of a complex number

is_integer()#

Returns True. Exists for duck type compatibility with float.is_integer.

name()#

The name of the Enum member.

class numerator#

the numerator of a rational number in lowest terms

class real#

the real part of a complex number

to_bytes()#

Return an array of bytes representing an integer.

length Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes. Default is length 1. byteorder The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value. Default is to use ‘big’. signed Determines whether two’s complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.

value()#

The value of the Enum member.

class altdss.enums.Connection#

Bases: enum.IntEnum

Connection (DSS enumeration)

__abs__()#

abs(self)

__add__()#

Return self+value.

__and__()#

Return self&value.

__bool__()#

True if self else False

__ceil__()#

Ceiling of an Integral returns itself.

__copy__()#
__deepcopy__(memo)#
__delattr__()#

Implement delattr(self, name).

__dir__()#

Default dir() implementation.

__divmod__()#

Return divmod(self, value).

__float__()#

float(self)

__floor__()#

Flooring an Integral returns itself.

__floordiv__()#

Return self//value.

__format__()#

Convert to a string according to format_spec.

__ge__()#

Return self>=value.

__getattribute__()#

Return getattr(self, name).

__getnewargs__()#
__getstate__()#

Helper for pickle.

__gt__()#

Return self>value.

__hash__()#

Return hash(self).

__index__()#

Return self converted to an integer, if self is suitable for use as an index into a list.

__init__()#

Initialize self. See help(type(self)) for accurate signature.

__int__()#

int(self)

__invert__()#

~self

__le__()#

Return self<=value.

__lshift__()#

Return self<<value.

__lt__()#

Return self<value.

__mod__()#

Return self%value.

__mul__()#

Return self*value.

__ne__()#

Return self!=value.

__neg__()#

-self

__new__()#

Create and return a new object. See help(type) for accurate signature.

__or__()#

Return self|value.

__pos__()#

+self

__pow__()#

Return pow(self, value, mod).

__radd__()#

Return value+self.

__rand__()#

Return value&self.

__rdivmod__()#

Return divmod(value, self).

__reduce__()#

Helper for pickle.

__reduce_ex__()#

Helper for pickle.

__repr__()#

Return repr(self).

__rfloordiv__()#

Return value//self.

__rlshift__()#

Return value<<self.

__rmod__()#

Return value%self.

__rmul__()#

Return value*self.

__ror__()#

Return value|self.

__round__()#

Rounding an Integral returns itself.

Rounding with an ndigits argument also returns an integer.

__rpow__()#

Return pow(value, self, mod).

__rrshift__()#

Return value>>self.

__rshift__()#

Return self>>value.

__rsub__()#

Return value-self.

__rtruediv__()#

Return value/self.

__rxor__()#

Return value^self.

classmethod __signature__()#
__sizeof__()#

Returns size in memory, in bytes.

__str__()#

Return str(self).

__sub__()#

Return self-value.

__subclasshook__()#

Abstract classes can override this to customize issubclass().

This is invoked early on by abc.ABCMeta.subclasscheck(). It should return True, False or NotImplemented. If it returns NotImplemented, the normal algorithm is used. Otherwise, it overrides the normal algorithm (and the outcome is cached).

__truediv__()#

Return self/value.

__trunc__()#

Truncating an Integral returns itself.

__xor__()#

Return self^value.

as_integer_ratio()#

Return a pair of integers, whose ratio is equal to the original int.

The ratio is in lowest terms and has a positive denominator.

(10).as_integer_ratio() (10, 1) (-10).as_integer_ratio() (-10, 1) (0).as_integer_ratio() (0, 1)

bit_count()#

Number of ones in the binary representation of the absolute value of self.

Also known as the population count.

bin(13) ‘0b1101’ (13).bit_count() 3

bit_length()#

Number of bits necessary to represent self in binary.

bin(37) ‘0b100101’ (37).bit_length() 6

conjugate()#

Returns self, the complex conjugate of any int.

delta#

1

class denominator#

the denominator of a rational number in lowest terms

class imag#

the imaginary part of a complex number

is_integer()#

Returns True. Exists for duck type compatibility with float.is_integer.

ll#

1

ln#

0

name()#

The name of the Enum member.

class numerator#

the numerator of a rational number in lowest terms

class real#

the real part of a complex number

to_bytes()#

Return an array of bytes representing an integer.

length Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes. Default is length 1. byteorder The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value. Default is to use ‘big’. signed Determines whether two’s complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.

value()#

The value of the Enum member.

wye#

0

y#

0

class altdss.enums.ControlMode#

Bases: enum.IntEnum

Control Mode (DSS enumeration)

Event#

1

MultiRate#

3

Off#

None

Static#

0

Time#

2

__abs__()#

abs(self)

__add__()#

Return self+value.

__and__()#

Return self&value.

__bool__()#

True if self else False

__ceil__()#

Ceiling of an Integral returns itself.

__copy__()#
__deepcopy__(memo)#
__delattr__()#

Implement delattr(self, name).

__dir__()#

Default dir() implementation.

__divmod__()#

Return divmod(self, value).

__float__()#

float(self)

__floor__()#

Flooring an Integral returns itself.

__floordiv__()#

Return self//value.

__format__()#

Convert to a string according to format_spec.

__ge__()#

Return self>=value.

__getattribute__()#

Return getattr(self, name).

__getnewargs__()#
__getstate__()#

Helper for pickle.

__gt__()#

Return self>value.

__hash__()#

Return hash(self).

__index__()#

Return self converted to an integer, if self is suitable for use as an index into a list.

__init__()#

Initialize self. See help(type(self)) for accurate signature.

__int__()#

int(self)

__invert__()#

~self

__le__()#

Return self<=value.

__lshift__()#

Return self<<value.

__lt__()#

Return self<value.

__mod__()#

Return self%value.

__mul__()#

Return self*value.

__ne__()#

Return self!=value.

__neg__()#

-self

__new__()#

Create and return a new object. See help(type) for accurate signature.

__or__()#

Return self|value.

__pos__()#

+self

__pow__()#

Return pow(self, value, mod).

__radd__()#

Return value+self.

__rand__()#

Return value&self.

__rdivmod__()#

Return divmod(value, self).

__reduce__()#

Helper for pickle.

__reduce_ex__()#

Helper for pickle.

__repr__()#

Return repr(self).

__rfloordiv__()#

Return value//self.

__rlshift__()#

Return value<<self.

__rmod__()#

Return value%self.

__rmul__()#

Return value*self.

__ror__()#

Return value|self.

__round__()#

Rounding an Integral returns itself.

Rounding with an ndigits argument also returns an integer.

__rpow__()#

Return pow(value, self, mod).

__rrshift__()#

Return value>>self.

__rshift__()#

Return self>>value.

__rsub__()#

Return value-self.

__rtruediv__()#

Return value/self.

__rxor__()#

Return value^self.

classmethod __signature__()#
__sizeof__()#

Returns size in memory, in bytes.

__str__()#

Return str(self).

__sub__()#

Return self-value.

__subclasshook__()#

Abstract classes can override this to customize issubclass().

This is invoked early on by abc.ABCMeta.subclasscheck(). It should return True, False or NotImplemented. If it returns NotImplemented, the normal algorithm is used. Otherwise, it overrides the normal algorithm (and the outcome is cached).

__truediv__()#

Return self/value.

__trunc__()#

Truncating an Integral returns itself.

__xor__()#

Return self^value.

as_integer_ratio()#

Return a pair of integers, whose ratio is equal to the original int.

The ratio is in lowest terms and has a positive denominator.

(10).as_integer_ratio() (10, 1) (-10).as_integer_ratio() (-10, 1) (0).as_integer_ratio() (0, 1)

bit_count()#

Number of ones in the binary representation of the absolute value of self.

Also known as the population count.

bin(13) ‘0b1101’ (13).bit_count() 3

bit_length()#

Number of bits necessary to represent self in binary.

bin(37) ‘0b100101’ (37).bit_length() 6

conjugate()#

Returns self, the complex conjugate of any int.

class denominator#

the denominator of a rational number in lowest terms

class imag#

the imaginary part of a complex number

is_integer()#

Returns True. Exists for duck type compatibility with float.is_integer.

name()#

The name of the Enum member.

class numerator#

the numerator of a rational number in lowest terms

class real#

the real part of a complex number

to_bytes()#

Return an array of bytes representing an integer.

length Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes. Default is length 1. byteorder The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value. Default is to use ‘big’. signed Determines whether two’s complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.

value()#

The value of the Enum member.

class altdss.enums.CoreType#

Bases: enum.IntEnum

Core Type (DSS enumeration)

__abs__()#

abs(self)

__add__()#

Return self+value.

__and__()#

Return self&value.

__bool__()#

True if self else False

__ceil__()#

Ceiling of an Integral returns itself.

__copy__()#
__deepcopy__(memo)#
__delattr__()#

Implement delattr(self, name).

__dir__()#

Default dir() implementation.

__divmod__()#

Return divmod(self, value).

__float__()#

float(self)

__floor__()#

Flooring an Integral returns itself.

__floordiv__()#

Return self//value.

__format__()#

Convert to a string according to format_spec.

__ge__()#

Return self>=value.

__getattribute__()#

Return getattr(self, name).

__getnewargs__()#
__getstate__()#

Helper for pickle.

__gt__()#

Return self>value.

__hash__()#

Return hash(self).

__index__()#

Return self converted to an integer, if self is suitable for use as an index into a list.

__init__()#

Initialize self. See help(type(self)) for accurate signature.

__int__()#

int(self)

__invert__()#

~self

__le__()#

Return self<=value.

__lshift__()#

Return self<<value.

__lt__()#

Return self<value.

__mod__()#

Return self%value.

__mul__()#

Return self*value.

__ne__()#

Return self!=value.

__neg__()#

-self

__new__()#

Create and return a new object. See help(type) for accurate signature.

__or__()#

Return self|value.

__pos__()#

+self

__pow__()#

Return pow(self, value, mod).

__radd__()#

Return value+self.

__rand__()#

Return value&self.

__rdivmod__()#

Return divmod(value, self).

__reduce__()#

Helper for pickle.

__reduce_ex__()#

Helper for pickle.

__repr__()#

Return repr(self).

__rfloordiv__()#

Return value//self.

__rlshift__()#

Return value<<self.

__rmod__()#

Return value%self.

__rmul__()#

Return value*self.

__ror__()#

Return value|self.

__round__()#

Rounding an Integral returns itself.

Rounding with an ndigits argument also returns an integer.

__rpow__()#

Return pow(value, self, mod).

__rrshift__()#

Return value>>self.

__rshift__()#

Return self>>value.

__rsub__()#

Return value-self.

__rtruediv__()#

Return value/self.

__rxor__()#

Return value^self.

classmethod __signature__()#
__sizeof__()#

Returns size in memory, in bytes.

__str__()#

Return str(self).

__sub__()#

Return self-value.

__subclasshook__()#

Abstract classes can override this to customize issubclass().

This is invoked early on by abc.ABCMeta.subclasscheck(). It should return True, False or NotImplemented. If it returns NotImplemented, the normal algorithm is used. Otherwise, it overrides the normal algorithm (and the outcome is cached).

__truediv__()#

Return self/value.

__trunc__()#

Truncating an Integral returns itself.

__xor__()#

Return self^value.

as_integer_ratio()#

Return a pair of integers, whose ratio is equal to the original int.

The ratio is in lowest terms and has a positive denominator.

(10).as_integer_ratio() (10, 1) (-10).as_integer_ratio() (-10, 1) (0).as_integer_ratio() (0, 1)

bit_count()#

Number of ones in the binary representation of the absolute value of self.

Also known as the population count.

bin(13) ‘0b1101’ (13).bit_count() 3

bit_length()#

Number of bits necessary to represent self in binary.

bin(37) ‘0b100101’ (37).bit_length() 6

conjugate()#

Returns self, the complex conjugate of any int.

core_1_phase#

9

class denominator#

the denominator of a rational number in lowest terms

five_leg#

5

four_leg#

4

class imag#

the imaginary part of a complex number

is_integer()#

Returns True. Exists for duck type compatibility with float.is_integer.

name()#

The name of the Enum member.

class numerator#

the numerator of a rational number in lowest terms

one_phase#

1

class real#

the real part of a complex number

shell#

0

three_leg#

3

to_bytes()#

Return an array of bytes representing an integer.

length Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes. Default is length 1. byteorder The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value. Default is to use ‘big’. signed Determines whether two’s complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.

value()#

The value of the Enum member.

class altdss.enums.DynamicExpDomain#

Bases: enum.IntEnum

DynamicExp: Domain (DSS enumeration)

Time#

0

__abs__()#

abs(self)

__add__()#

Return self+value.

__and__()#

Return self&value.

__bool__()#

True if self else False

__ceil__()#

Ceiling of an Integral returns itself.

__copy__()#
__deepcopy__(memo)#
__delattr__()#

Implement delattr(self, name).

__dir__()#

Default dir() implementation.

__divmod__()#

Return divmod(self, value).

__float__()#

float(self)

__floor__()#

Flooring an Integral returns itself.

__floordiv__()#

Return self//value.

__format__()#

Convert to a string according to format_spec.

__ge__()#

Return self>=value.

__getattribute__()#

Return getattr(self, name).

__getnewargs__()#
__getstate__()#

Helper for pickle.

__gt__()#

Return self>value.

__hash__()#

Return hash(self).

__index__()#

Return self converted to an integer, if self is suitable for use as an index into a list.

__init__()#

Initialize self. See help(type(self)) for accurate signature.

__int__()#

int(self)

__invert__()#

~self

__le__()#

Return self<=value.

__lshift__()#

Return self<<value.

__lt__()#

Return self<value.

__mod__()#

Return self%value.

__mul__()#

Return self*value.

__ne__()#

Return self!=value.

__neg__()#

-self

__new__()#

Create and return a new object. See help(type) for accurate signature.

__or__()#

Return self|value.

__pos__()#

+self

__pow__()#

Return pow(self, value, mod).

__radd__()#

Return value+self.

__rand__()#

Return value&self.

__rdivmod__()#

Return divmod(value, self).

__reduce__()#

Helper for pickle.

__reduce_ex__()#

Helper for pickle.

__repr__()#

Return repr(self).

__rfloordiv__()#

Return value//self.

__rlshift__()#

Return value<<self.

__rmod__()#

Return value%self.

__rmul__()#

Return value*self.

__ror__()#

Return value|self.

__round__()#

Rounding an Integral returns itself.

Rounding with an ndigits argument also returns an integer.

__rpow__()#

Return pow(value, self, mod).

__rrshift__()#

Return value>>self.

__rshift__()#

Return self>>value.

__rsub__()#

Return value-self.

__rtruediv__()#

Return value/self.

__rxor__()#

Return value^self.

classmethod __signature__()#
__sizeof__()#

Returns size in memory, in bytes.

__str__()#

Return str(self).

__sub__()#

Return self-value.

__subclasshook__()#

Abstract classes can override this to customize issubclass().

This is invoked early on by abc.ABCMeta.subclasscheck(). It should return True, False or NotImplemented. If it returns NotImplemented, the normal algorithm is used. Otherwise, it overrides the normal algorithm (and the outcome is cached).

__truediv__()#

Return self/value.

__trunc__()#

Truncating an Integral returns itself.

__xor__()#

Return self^value.

as_integer_ratio()#

Return a pair of integers, whose ratio is equal to the original int.

The ratio is in lowest terms and has a positive denominator.

(10).as_integer_ratio() (10, 1) (-10).as_integer_ratio() (-10, 1) (0).as_integer_ratio() (0, 1)

bit_count()#

Number of ones in the binary representation of the absolute value of self.

Also known as the population count.

bin(13) ‘0b1101’ (13).bit_count() 3

bit_length()#

Number of bits necessary to represent self in binary.

bin(37) ‘0b100101’ (37).bit_length() 6

conjugate()#

Returns self, the complex conjugate of any int.

class denominator#

the denominator of a rational number in lowest terms

dq#

1

class imag#

the imaginary part of a complex number

is_integer()#

Returns True. Exists for duck type compatibility with float.is_integer.

name()#

The name of the Enum member.

class numerator#

the numerator of a rational number in lowest terms

class real#

the real part of a complex number

to_bytes()#

Return an array of bytes representing an integer.

length Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes. Default is length 1. byteorder The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value. Default is to use ‘big’. signed Determines whether two’s complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.

value()#

The value of the Enum member.

class altdss.enums.ESPVLControlType#

Bases: enum.IntEnum

ESPVLControl: Type (DSS enumeration)

LocalController#

2

SystemController#

1

__abs__()#

abs(self)

__add__()#

Return self+value.

__and__()#

Return self&value.

__bool__()#

True if self else False

__ceil__()#

Ceiling of an Integral returns itself.

__copy__()#
__deepcopy__(memo)#
__delattr__()#

Implement delattr(self, name).

__dir__()#

Default dir() implementation.

__divmod__()#

Return divmod(self, value).

__float__()#

float(self)

__floor__()#

Flooring an Integral returns itself.

__floordiv__()#

Return self//value.

__format__()#

Convert to a string according to format_spec.

__ge__()#

Return self>=value.

__getattribute__()#

Return getattr(self, name).

__getnewargs__()#
__getstate__()#

Helper for pickle.

__gt__()#

Return self>value.

__hash__()#

Return hash(self).

__index__()#

Return self converted to an integer, if self is suitable for use as an index into a list.

__init__()#

Initialize self. See help(type(self)) for accurate signature.

__int__()#

int(self)

__invert__()#

~self

__le__()#

Return self<=value.

__lshift__()#

Return self<<value.

__lt__()#

Return self<value.

__mod__()#

Return self%value.

__mul__()#

Return self*value.

__ne__()#

Return self!=value.

__neg__()#

-self

__new__()#

Create and return a new object. See help(type) for accurate signature.

__or__()#

Return self|value.

__pos__()#

+self

__pow__()#

Return pow(self, value, mod).

__radd__()#

Return value+self.

__rand__()#

Return value&self.

__rdivmod__()#

Return divmod(value, self).

__reduce__()#

Helper for pickle.

__reduce_ex__()#

Helper for pickle.

__repr__()#

Return repr(self).

__rfloordiv__()#

Return value//self.

__rlshift__()#

Return value<<self.

__rmod__()#

Return value%self.

__rmul__()#

Return value*self.

__ror__()#

Return value|self.

__round__()#

Rounding an Integral returns itself.

Rounding with an ndigits argument also returns an integer.

__rpow__()#

Return pow(value, self, mod).

__rrshift__()#

Return value>>self.

__rshift__()#

Return self>>value.

__rsub__()#

Return value-self.

__rtruediv__()#

Return value/self.

__rxor__()#

Return value^self.

classmethod __signature__()#
__sizeof__()#

Returns size in memory, in bytes.

__str__()#

Return str(self).

__sub__()#

Return self-value.

__subclasshook__()#

Abstract classes can override this to customize issubclass().

This is invoked early on by abc.ABCMeta.subclasscheck(). It should return True, False or NotImplemented. If it returns NotImplemented, the normal algorithm is used. Otherwise, it overrides the normal algorithm (and the outcome is cached).

__truediv__()#

Return self/value.

__trunc__()#

Truncating an Integral returns itself.

__xor__()#

Return self^value.

as_integer_ratio()#

Return a pair of integers, whose ratio is equal to the original int.

The ratio is in lowest terms and has a positive denominator.

(10).as_integer_ratio() (10, 1) (-10).as_integer_ratio() (-10, 1) (0).as_integer_ratio() (0, 1)

bit_count()#

Number of ones in the binary representation of the absolute value of self.

Also known as the population count.

bin(13) ‘0b1101’ (13).bit_count() 3

bit_length()#

Number of bits necessary to represent self in binary.

bin(37) ‘0b100101’ (37).bit_length() 6

conjugate()#

Returns self, the complex conjugate of any int.

class denominator#

the denominator of a rational number in lowest terms

class imag#

the imaginary part of a complex number

is_integer()#

Returns True. Exists for duck type compatibility with float.is_integer.

name()#

The name of the Enum member.

class numerator#

the numerator of a rational number in lowest terms

class real#

the real part of a complex number

to_bytes()#

Return an array of bytes representing an integer.

length Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes. Default is length 1. byteorder The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value. Default is to use ‘big’. signed Determines whether two’s complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.

value()#

The value of the Enum member.

class altdss.enums.EarthModel#

Bases: enum.IntEnum

Earth Model (DSS enumeration)

Carson#

1

Deri#

3

FullCarson#

2

__abs__()#

abs(self)

__add__()#

Return self+value.

__and__()#

Return self&value.

__bool__()#

True if self else False

__ceil__()#

Ceiling of an Integral returns itself.

__copy__()#
__deepcopy__(memo)#
__delattr__()#

Implement delattr(self, name).

__dir__()#

Default dir() implementation.

__divmod__()#

Return divmod(self, value).

__float__()#

float(self)

__floor__()#

Flooring an Integral returns itself.

__floordiv__()#

Return self//value.

__format__()#

Convert to a string according to format_spec.

__ge__()#

Return self>=value.

__getattribute__()#

Return getattr(self, name).

__getnewargs__()#
__getstate__()#

Helper for pickle.

__gt__()#

Return self>value.

__hash__()#

Return hash(self).

__index__()#

Return self converted to an integer, if self is suitable for use as an index into a list.

__init__()#

Initialize self. See help(type(self)) for accurate signature.

__int__()#

int(self)

__invert__()#

~self

__le__()#

Return self<=value.

__lshift__()#

Return self<<value.

__lt__()#

Return self<value.

__mod__()#

Return self%value.

__mul__()#

Return self*value.

__ne__()#

Return self!=value.

__neg__()#

-self

__new__()#

Create and return a new object. See help(type) for accurate signature.

__or__()#

Return self|value.

__pos__()#

+self

__pow__()#

Return pow(self, value, mod).

__radd__()#

Return value+self.

__rand__()#

Return value&self.

__rdivmod__()#

Return divmod(value, self).

__reduce__()#

Helper for pickle.

__reduce_ex__()#

Helper for pickle.

__repr__()#

Return repr(self).

__rfloordiv__()#

Return value//self.

__rlshift__()#

Return value<<self.

__rmod__()#

Return value%self.

__rmul__()#

Return value*self.

__ror__()#

Return value|self.

__round__()#

Rounding an Integral returns itself.

Rounding with an ndigits argument also returns an integer.

__rpow__()#

Return pow(value, self, mod).

__rrshift__()#

Return value>>self.

__rshift__()#

Return self>>value.

__rsub__()#

Return value-self.

__rtruediv__()#

Return value/self.

__rxor__()#

Return value^self.

classmethod __signature__()#
__sizeof__()#

Returns size in memory, in bytes.

__str__()#

Return str(self).

__sub__()#

Return self-value.

__subclasshook__()#

Abstract classes can override this to customize issubclass().

This is invoked early on by abc.ABCMeta.subclasscheck(). It should return True, False or NotImplemented. If it returns NotImplemented, the normal algorithm is used. Otherwise, it overrides the normal algorithm (and the outcome is cached).

__truediv__()#

Return self/value.

__trunc__()#

Truncating an Integral returns itself.

__xor__()#

Return self^value.

as_integer_ratio()#

Return a pair of integers, whose ratio is equal to the original int.

The ratio is in lowest terms and has a positive denominator.

(10).as_integer_ratio() (10, 1) (-10).as_integer_ratio() (-10, 1) (0).as_integer_ratio() (0, 1)

bit_count()#

Number of ones in the binary representation of the absolute value of self.

Also known as the population count.

bin(13) ‘0b1101’ (13).bit_count() 3

bit_length()#

Number of bits necessary to represent self in binary.

bin(37) ‘0b100101’ (37).bit_length() 6

conjugate()#

Returns self, the complex conjugate of any int.

class denominator#

the denominator of a rational number in lowest terms

class imag#

the imaginary part of a complex number

is_integer()#

Returns True. Exists for duck type compatibility with float.is_integer.

name()#

The name of the Enum member.

class numerator#

the numerator of a rational number in lowest terms

class real#

the real part of a complex number

to_bytes()#

Return an array of bytes representing an integer.

length Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes. Default is length 1. byteorder The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value. Default is to use ‘big’. signed Determines whether two’s complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.

value()#

The value of the Enum member.

class altdss.enums.EnergyMeterAction#

Bases: enum.IntEnum

EnergyMeter: Action (DSS enumeration)

Allocate#

0

Clear#

1

Reduce#

2

Save#

3

TakeSample#

4

ZoneDump#

5

__abs__()#

abs(self)

__add__()#

Return self+value.

__and__()#

Return self&value.

__bool__()#

True if self else False

__ceil__()#

Ceiling of an Integral returns itself.

__copy__()#
__deepcopy__(memo)#
__delattr__()#

Implement delattr(self, name).

__dir__()#

Default dir() implementation.

__divmod__()#

Return divmod(self, value).

__float__()#

float(self)

__floor__()#

Flooring an Integral returns itself.

__floordiv__()#

Return self//value.

__format__()#

Convert to a string according to format_spec.

__ge__()#

Return self>=value.

__getattribute__()#

Return getattr(self, name).

__getnewargs__()#
__getstate__()#

Helper for pickle.

__gt__()#

Return self>value.

__hash__()#

Return hash(self).

__index__()#

Return self converted to an integer, if self is suitable for use as an index into a list.

__init__()#

Initialize self. See help(type(self)) for accurate signature.

__int__()#

int(self)

__invert__()#

~self

__le__()#

Return self<=value.

__lshift__()#

Return self<<value.

__lt__()#

Return self<value.

__mod__()#

Return self%value.

__mul__()#

Return self*value.

__ne__()#

Return self!=value.

__neg__()#

-self

__new__()#

Create and return a new object. See help(type) for accurate signature.

__or__()#

Return self|value.

__pos__()#

+self

__pow__()#

Return pow(self, value, mod).

__radd__()#

Return value+self.

__rand__()#

Return value&self.

__rdivmod__()#

Return divmod(value, self).

__reduce__()#

Helper for pickle.

__reduce_ex__()#

Helper for pickle.

__repr__()#

Return repr(self).

__rfloordiv__()#

Return value//self.

__rlshift__()#

Return value<<self.

__rmod__()#

Return value%self.

__rmul__()#

Return value*self.

__ror__()#

Return value|self.

__round__()#

Rounding an Integral returns itself.

Rounding with an ndigits argument also returns an integer.

__rpow__()#

Return pow(value, self, mod).

__rrshift__()#

Return value>>self.

__rshift__()#

Return self>>value.

__rsub__()#

Return value-self.

__rtruediv__()#

Return value/self.

__rxor__()#

Return value^self.

classmethod __signature__()#
__sizeof__()#

Returns size in memory, in bytes.

__str__()#

Return str(self).

__sub__()#

Return self-value.

__subclasshook__()#

Abstract classes can override this to customize issubclass().

This is invoked early on by abc.ABCMeta.subclasscheck(). It should return True, False or NotImplemented. If it returns NotImplemented, the normal algorithm is used. Otherwise, it overrides the normal algorithm (and the outcome is cached).

__truediv__()#

Return self/value.

__trunc__()#

Truncating an Integral returns itself.

__xor__()#

Return self^value.

as_integer_ratio()#

Return a pair of integers, whose ratio is equal to the original int.

The ratio is in lowest terms and has a positive denominator.

(10).as_integer_ratio() (10, 1) (-10).as_integer_ratio() (-10, 1) (0).as_integer_ratio() (0, 1)

bit_count()#

Number of ones in the binary representation of the absolute value of self.

Also known as the population count.

bin(13) ‘0b1101’ (13).bit_count() 3

bit_length()#

Number of bits necessary to represent self in binary.

bin(37) ‘0b100101’ (37).bit_length() 6

conjugate()#

Returns self, the complex conjugate of any int.

class denominator#

the denominator of a rational number in lowest terms

class imag#

the imaginary part of a complex number

is_integer()#

Returns True. Exists for duck type compatibility with float.is_integer.

name()#

The name of the Enum member.

class numerator#

the numerator of a rational number in lowest terms

class real#

the real part of a complex number

to_bytes()#

Return an array of bytes representing an integer.

length Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes. Default is length 1. byteorder The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value. Default is to use ‘big’. signed Determines whether two’s complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.

value()#

The value of the Enum member.

class altdss.enums.ExtraClassIDs#

Bases: enum.IntEnum

A very limited set of functions accept the numbers from this enumeration as shortcuts to the internal prepared element lists of the engine.

CktElements#

None

DSSObjs#

None

PCElements#

None

PDElements#

None

__abs__()#

abs(self)

__add__()#

Return self+value.

__and__()#

Return self&value.

__bool__()#

True if self else False

__ceil__()#

Ceiling of an Integral returns itself.

__copy__()#
__deepcopy__(memo)#
__delattr__()#

Implement delattr(self, name).

__dir__()#

Default dir() implementation.

__divmod__()#

Return divmod(self, value).

__float__()#

float(self)

__floor__()#

Flooring an Integral returns itself.

__floordiv__()#

Return self//value.

__format__()#

Convert to a string according to format_spec.

__ge__()#

Return self>=value.

__getattribute__()#

Return getattr(self, name).

__getnewargs__()#
__getstate__()#

Helper for pickle.

__gt__()#

Return self>value.

__hash__()#

Return hash(self).

__index__()#

Return self converted to an integer, if self is suitable for use as an index into a list.

__init__()#

Initialize self. See help(type(self)) for accurate signature.

__int__()#

int(self)

__invert__()#

~self

__le__()#

Return self<=value.

__lshift__()#

Return self<<value.

__lt__()#

Return self<value.

__mod__()#

Return self%value.

__mul__()#

Return self*value.

__ne__()#

Return self!=value.

__neg__()#

-self

__new__()#

Create and return a new object. See help(type) for accurate signature.

__or__()#

Return self|value.

__pos__()#

+self

__pow__()#

Return pow(self, value, mod).

__radd__()#

Return value+self.

__rand__()#

Return value&self.

__rdivmod__()#

Return divmod(value, self).

__reduce__()#

Helper for pickle.

__reduce_ex__()#

Helper for pickle.

__repr__()#

Return repr(self).

__rfloordiv__()#

Return value//self.

__rlshift__()#

Return value<<self.

__rmod__()#

Return value%self.

__rmul__()#

Return value*self.

__ror__()#

Return value|self.

__round__()#

Rounding an Integral returns itself.

Rounding with an ndigits argument also returns an integer.

__rpow__()#

Return pow(value, self, mod).

__rrshift__()#

Return value>>self.

__rshift__()#

Return self>>value.

__rsub__()#

Return value-self.

__rtruediv__()#

Return value/self.

__rxor__()#

Return value^self.

classmethod __signature__()#
__sizeof__()#

Returns size in memory, in bytes.

__str__()#

Return str(self).

__sub__()#

Return self-value.

__subclasshook__()#

Abstract classes can override this to customize issubclass().

This is invoked early on by abc.ABCMeta.subclasscheck(). It should return True, False or NotImplemented. If it returns NotImplemented, the normal algorithm is used. Otherwise, it overrides the normal algorithm (and the outcome is cached).

__truediv__()#

Return self/value.

__trunc__()#

Truncating an Integral returns itself.

__xor__()#

Return self^value.

as_integer_ratio()#

Return a pair of integers, whose ratio is equal to the original int.

The ratio is in lowest terms and has a positive denominator.

(10).as_integer_ratio() (10, 1) (-10).as_integer_ratio() (-10, 1) (0).as_integer_ratio() (0, 1)

bit_count()#

Number of ones in the binary representation of the absolute value of self.

Also known as the population count.

bin(13) ‘0b1101’ (13).bit_count() 3

bit_length()#

Number of bits necessary to represent self in binary.

bin(37) ‘0b100101’ (37).bit_length() 6

conjugate()#

Returns self, the complex conjugate of any int.

class denominator#

the denominator of a rational number in lowest terms

class imag#

the imaginary part of a complex number

is_integer()#

Returns True. Exists for duck type compatibility with float.is_integer.

name()#

The name of the Enum member.

class numerator#

the numerator of a rational number in lowest terms

class real#

the real part of a complex number

to_bytes()#

Return an array of bytes representing an integer.

length Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes. Default is length 1. byteorder The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value. Default is to use ‘big’. signed Determines whether two’s complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.

value()#

The value of the Enum member.

class altdss.enums.FuseAction#

Bases: enum.IntEnum

Fuse: Action (DSS enumeration)

__abs__()#

abs(self)

__add__()#

Return self+value.

__and__()#

Return self&value.

__bool__()#

True if self else False

__ceil__()#

Ceiling of an Integral returns itself.

__copy__()#
__deepcopy__(memo)#
__delattr__()#

Implement delattr(self, name).

__dir__()#

Default dir() implementation.

__divmod__()#

Return divmod(self, value).

__float__()#

float(self)

__floor__()#

Flooring an Integral returns itself.

__floordiv__()#

Return self//value.

__format__()#

Convert to a string according to format_spec.

__ge__()#

Return self>=value.

__getattribute__()#

Return getattr(self, name).

__getnewargs__()#
__getstate__()#

Helper for pickle.

__gt__()#

Return self>value.

__hash__()#

Return hash(self).

__index__()#

Return self converted to an integer, if self is suitable for use as an index into a list.

__init__()#

Initialize self. See help(type(self)) for accurate signature.

__int__()#

int(self)

__invert__()#

~self

__le__()#

Return self<=value.

__lshift__()#

Return self<<value.

__lt__()#

Return self<value.

__mod__()#

Return self%value.

__mul__()#

Return self*value.

__ne__()#

Return self!=value.

__neg__()#

-self

__new__()#

Create and return a new object. See help(type) for accurate signature.

__or__()#

Return self|value.

__pos__()#

+self

__pow__()#

Return pow(self, value, mod).

__radd__()#

Return value+self.

__rand__()#

Return value&self.

__rdivmod__()#

Return divmod(value, self).

__reduce__()#

Helper for pickle.

__reduce_ex__()#

Helper for pickle.

__repr__()#

Return repr(self).

__rfloordiv__()#

Return value//self.

__rlshift__()#

Return value<<self.

__rmod__()#

Return value%self.

__rmul__()#

Return value*self.

__ror__()#

Return value|self.

__round__()#

Rounding an Integral returns itself.

Rounding with an ndigits argument also returns an integer.

__rpow__()#

Return pow(value, self, mod).

__rrshift__()#

Return value>>self.

__rshift__()#

Return self>>value.

__rsub__()#

Return value-self.

__rtruediv__()#

Return value/self.

__rxor__()#

Return value^self.

classmethod __signature__()#
__sizeof__()#

Returns size in memory, in bytes.

__str__()#

Return str(self).

__sub__()#

Return self-value.

__subclasshook__()#

Abstract classes can override this to customize issubclass().

This is invoked early on by abc.ABCMeta.subclasscheck(). It should return True, False or NotImplemented. If it returns NotImplemented, the normal algorithm is used. Otherwise, it overrides the normal algorithm (and the outcome is cached).

__truediv__()#

Return self/value.

__trunc__()#

Truncating an Integral returns itself.

__xor__()#

Return self^value.

as_integer_ratio()#

Return a pair of integers, whose ratio is equal to the original int.

The ratio is in lowest terms and has a positive denominator.

(10).as_integer_ratio() (10, 1) (-10).as_integer_ratio() (-10, 1) (0).as_integer_ratio() (0, 1)

bit_count()#

Number of ones in the binary representation of the absolute value of self.

Also known as the population count.

bin(13) ‘0b1101’ (13).bit_count() 3

bit_length()#

Number of bits necessary to represent self in binary.

bin(37) ‘0b100101’ (37).bit_length() 6

close#

2

conjugate()#

Returns self, the complex conjugate of any int.

class denominator#

the denominator of a rational number in lowest terms

class imag#

the imaginary part of a complex number

is_integer()#

Returns True. Exists for duck type compatibility with float.is_integer.

name()#

The name of the Enum member.

class numerator#

the numerator of a rational number in lowest terms

open#

1

class real#

the real part of a complex number

to_bytes()#

Return an array of bytes representing an integer.

length Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes. Default is length 1. byteorder The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value. Default is to use ‘big’. signed Determines whether two’s complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.

value()#

The value of the Enum member.

class altdss.enums.FuseState#

Bases: enum.IntEnum

Fuse: State (DSS enumeration)

__abs__()#

abs(self)

__add__()#

Return self+value.

__and__()#

Return self&value.

__bool__()#

True if self else False

__ceil__()#

Ceiling of an Integral returns itself.

__copy__()#
__deepcopy__(memo)#
__delattr__()#

Implement delattr(self, name).

__dir__()#

Default dir() implementation.

__divmod__()#

Return divmod(self, value).

__float__()#

float(self)

__floor__()#

Flooring an Integral returns itself.

__floordiv__()#

Return self//value.

__format__()#

Convert to a string according to format_spec.

__ge__()#

Return self>=value.

__getattribute__()#

Return getattr(self, name).

__getnewargs__()#
__getstate__()#

Helper for pickle.

__gt__()#

Return self>value.

__hash__()#

Return hash(self).

__index__()#

Return self converted to an integer, if self is suitable for use as an index into a list.

__init__()#

Initialize self. See help(type(self)) for accurate signature.

__int__()#

int(self)

__invert__()#

~self

__le__()#

Return self<=value.

__lshift__()#

Return self<<value.

__lt__()#

Return self<value.

__mod__()#

Return self%value.

__mul__()#

Return self*value.

__ne__()#

Return self!=value.

__neg__()#

-self

__new__()#

Create and return a new object. See help(type) for accurate signature.

__or__()#

Return self|value.

__pos__()#

+self

__pow__()#

Return pow(self, value, mod).

__radd__()#

Return value+self.

__rand__()#

Return value&self.

__rdivmod__()#

Return divmod(value, self).

__reduce__()#

Helper for pickle.

__reduce_ex__()#

Helper for pickle.

__repr__()#

Return repr(self).

__rfloordiv__()#

Return value//self.

__rlshift__()#

Return value<<self.

__rmod__()#

Return value%self.

__rmul__()#

Return value*self.

__ror__()#

Return value|self.

__round__()#

Rounding an Integral returns itself.

Rounding with an ndigits argument also returns an integer.

__rpow__()#

Return pow(value, self, mod).

__rrshift__()#

Return value>>self.

__rshift__()#

Return self>>value.

__rsub__()#

Return value-self.

__rtruediv__()#

Return value/self.

__rxor__()#

Return value^self.

classmethod __signature__()#
__sizeof__()#

Returns size in memory, in bytes.

__str__()#

Return str(self).

__sub__()#

Return self-value.

__subclasshook__()#

Abstract classes can override this to customize issubclass().

This is invoked early on by abc.ABCMeta.subclasscheck(). It should return True, False or NotImplemented. If it returns NotImplemented, the normal algorithm is used. Otherwise, it overrides the normal algorithm (and the outcome is cached).

__truediv__()#

Return self/value.

__trunc__()#

Truncating an Integral returns itself.

__xor__()#

Return self^value.

as_integer_ratio()#

Return a pair of integers, whose ratio is equal to the original int.

The ratio is in lowest terms and has a positive denominator.

(10).as_integer_ratio() (10, 1) (-10).as_integer_ratio() (-10, 1) (0).as_integer_ratio() (0, 1)

bit_count()#

Number of ones in the binary representation of the absolute value of self.

Also known as the population count.

bin(13) ‘0b1101’ (13).bit_count() 3

bit_length()#

Number of bits necessary to represent self in binary.

bin(37) ‘0b100101’ (37).bit_length() 6

closed#

2

conjugate()#

Returns self, the complex conjugate of any int.

class denominator#

the denominator of a rational number in lowest terms

class imag#

the imaginary part of a complex number

is_integer()#

Returns True. Exists for duck type compatibility with float.is_integer.

name()#

The name of the Enum member.

class numerator#

the numerator of a rational number in lowest terms

open#

1

class real#

the real part of a complex number

to_bytes()#

Return an array of bytes representing an integer.

length Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes. Default is length 1. byteorder The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value. Default is to use ‘big’. signed Determines whether two’s complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.

value()#

The value of the Enum member.

class altdss.enums.GICTransformerType#

Bases: enum.IntEnum

GICTransformer: Type (DSS enumeration)

Auto#

2

GSU#

1

YY#

3

__abs__()#

abs(self)

__add__()#

Return self+value.

__and__()#

Return self&value.

__bool__()#

True if self else False

__ceil__()#

Ceiling of an Integral returns itself.

__copy__()#
__deepcopy__(memo)#
__delattr__()#

Implement delattr(self, name).

__dir__()#

Default dir() implementation.

__divmod__()#

Return divmod(self, value).

__float__()#

float(self)

__floor__()#

Flooring an Integral returns itself.

__floordiv__()#

Return self//value.

__format__()#

Convert to a string according to format_spec.

__ge__()#

Return self>=value.

__getattribute__()#

Return getattr(self, name).

__getnewargs__()#
__getstate__()#

Helper for pickle.

__gt__()#

Return self>value.

__hash__()#

Return hash(self).

__index__()#

Return self converted to an integer, if self is suitable for use as an index into a list.

__init__()#

Initialize self. See help(type(self)) for accurate signature.

__int__()#

int(self)

__invert__()#

~self

__le__()#

Return self<=value.

__lshift__()#

Return self<<value.

__lt__()#

Return self<value.

__mod__()#

Return self%value.

__mul__()#

Return self*value.

__ne__()#

Return self!=value.

__neg__()#

-self

__new__()#

Create and return a new object. See help(type) for accurate signature.

__or__()#

Return self|value.

__pos__()#

+self

__pow__()#

Return pow(self, value, mod).

__radd__()#

Return value+self.

__rand__()#

Return value&self.

__rdivmod__()#

Return divmod(value, self).

__reduce__()#

Helper for pickle.

__reduce_ex__()#

Helper for pickle.

__repr__()#

Return repr(self).

__rfloordiv__()#

Return value//self.

__rlshift__()#

Return value<<self.

__rmod__()#

Return value%self.

__rmul__()#

Return value*self.

__ror__()#

Return value|self.

__round__()#

Rounding an Integral returns itself.

Rounding with an ndigits argument also returns an integer.

__rpow__()#

Return pow(value, self, mod).

__rrshift__()#

Return value>>self.

__rshift__()#

Return self>>value.

__rsub__()#

Return value-self.

__rtruediv__()#

Return value/self.

__rxor__()#

Return value^self.

classmethod __signature__()#
__sizeof__()#

Returns size in memory, in bytes.

__str__()#

Return str(self).

__sub__()#

Return self-value.

__subclasshook__()#

Abstract classes can override this to customize issubclass().

This is invoked early on by abc.ABCMeta.subclasscheck(). It should return True, False or NotImplemented. If it returns NotImplemented, the normal algorithm is used. Otherwise, it overrides the normal algorithm (and the outcome is cached).

__truediv__()#

Return self/value.

__trunc__()#

Truncating an Integral returns itself.

__xor__()#

Return self^value.

as_integer_ratio()#

Return a pair of integers, whose ratio is equal to the original int.

The ratio is in lowest terms and has a positive denominator.

(10).as_integer_ratio() (10, 1) (-10).as_integer_ratio() (-10, 1) (0).as_integer_ratio() (0, 1)

bit_count()#

Number of ones in the binary representation of the absolute value of self.

Also known as the population count.

bin(13) ‘0b1101’ (13).bit_count() 3

bit_length()#

Number of bits necessary to represent self in binary.

bin(37) ‘0b100101’ (37).bit_length() 6

conjugate()#

Returns self, the complex conjugate of any int.

class denominator#

the denominator of a rational number in lowest terms

class imag#

the imaginary part of a complex number

is_integer()#

Returns True. Exists for duck type compatibility with float.is_integer.

name()#

The name of the Enum member.

class numerator#

the numerator of a rational number in lowest terms

class real#

the real part of a complex number

to_bytes()#

Return an array of bytes representing an integer.

length Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes. Default is length 1. byteorder The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value. Default is to use ‘big’. signed Determines whether two’s complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.

value()#

The value of the Enum member.

class altdss.enums.GeneratorDispatchMode#

Bases: enum.IntEnum

Generator: Dispatch Mode (DSS enumeration)

Default#

0

LoadLevel#

1

Price#

2

__abs__()#

abs(self)

__add__()#

Return self+value.

__and__()#

Return self&value.

__bool__()#

True if self else False

__ceil__()#

Ceiling of an Integral returns itself.

__copy__()#
__deepcopy__(memo)#
__delattr__()#

Implement delattr(self, name).

__dir__()#

Default dir() implementation.

__divmod__()#

Return divmod(self, value).

__float__()#

float(self)

__floor__()#

Flooring an Integral returns itself.

__floordiv__()#

Return self//value.

__format__()#

Convert to a string according to format_spec.

__ge__()#

Return self>=value.

__getattribute__()#

Return getattr(self, name).

__getnewargs__()#
__getstate__()#

Helper for pickle.

__gt__()#

Return self>value.

__hash__()#

Return hash(self).

__index__()#

Return self converted to an integer, if self is suitable for use as an index into a list.

__init__()#

Initialize self. See help(type(self)) for accurate signature.

__int__()#

int(self)

__invert__()#

~self

__le__()#

Return self<=value.

__lshift__()#

Return self<<value.

__lt__()#

Return self<value.

__mod__()#

Return self%value.

__mul__()#

Return self*value.

__ne__()#

Return self!=value.

__neg__()#

-self

__new__()#

Create and return a new object. See help(type) for accurate signature.

__or__()#

Return self|value.

__pos__()#

+self

__pow__()#

Return pow(self, value, mod).

__radd__()#

Return value+self.

__rand__()#

Return value&self.

__rdivmod__()#

Return divmod(value, self).

__reduce__()#

Helper for pickle.

__reduce_ex__()#

Helper for pickle.

__repr__()#

Return repr(self).

__rfloordiv__()#

Return value//self.

__rlshift__()#

Return value<<self.

__rmod__()#

Return value%self.

__rmul__()#

Return value*self.

__ror__()#

Return value|self.

__round__()#

Rounding an Integral returns itself.

Rounding with an ndigits argument also returns an integer.

__rpow__()#

Return pow(value, self, mod).

__rrshift__()#

Return value>>self.

__rshift__()#

Return self>>value.

__rsub__()#

Return value-self.

__rtruediv__()#

Return value/self.

__rxor__()#

Return value^self.

classmethod __signature__()#
__sizeof__()#

Returns size in memory, in bytes.

__str__()#

Return str(self).

__sub__()#

Return self-value.

__subclasshook__()#

Abstract classes can override this to customize issubclass().

This is invoked early on by abc.ABCMeta.subclasscheck(). It should return True, False or NotImplemented. If it returns NotImplemented, the normal algorithm is used. Otherwise, it overrides the normal algorithm (and the outcome is cached).

__truediv__()#

Return self/value.

__trunc__()#

Truncating an Integral returns itself.

__xor__()#

Return self^value.

as_integer_ratio()#

Return a pair of integers, whose ratio is equal to the original int.

The ratio is in lowest terms and has a positive denominator.

(10).as_integer_ratio() (10, 1) (-10).as_integer_ratio() (-10, 1) (0).as_integer_ratio() (0, 1)

bit_count()#

Number of ones in the binary representation of the absolute value of self.

Also known as the population count.

bin(13) ‘0b1101’ (13).bit_count() 3

bit_length()#

Number of bits necessary to represent self in binary.

bin(37) ‘0b100101’ (37).bit_length() 6

conjugate()#

Returns self, the complex conjugate of any int.

class denominator#

the denominator of a rational number in lowest terms

class imag#

the imaginary part of a complex number

is_integer()#

Returns True. Exists for duck type compatibility with float.is_integer.

name()#

The name of the Enum member.

class numerator#

the numerator of a rational number in lowest terms

class real#

the real part of a complex number

to_bytes()#

Return an array of bytes representing an integer.

length Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes. Default is length 1. byteorder The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value. Default is to use ‘big’. signed Determines whether two’s complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.

value()#

The value of the Enum member.

class altdss.enums.GeneratorModel#

Bases: enum.IntEnum

Generator: Model (DSS enumeration)

Approximateinvertermodel#

7

ConstantPQ#

1

ConstantPV#

3

ConstantP_fixedQ#

4

ConstantP_fixedX#

5

ConstantZ#

2

Usermodel#

6

__abs__()#

abs(self)

__add__()#

Return self+value.

__and__()#

Return self&value.

__bool__()#

True if self else False

__ceil__()#

Ceiling of an Integral returns itself.

__copy__()#
__deepcopy__(memo)#
__delattr__()#

Implement delattr(self, name).

__dir__()#

Default dir() implementation.

__divmod__()#

Return divmod(self, value).

__float__()#

float(self)

__floor__()#

Flooring an Integral returns itself.

__floordiv__()#

Return self//value.

__format__()#

Convert to a string according to format_spec.

__ge__()#

Return self>=value.

__getattribute__()#

Return getattr(self, name).

__getnewargs__()#
__getstate__()#

Helper for pickle.

__gt__()#

Return self>value.

__hash__()#

Return hash(self).

__index__()#

Return self converted to an integer, if self is suitable for use as an index into a list.

__init__()#

Initialize self. See help(type(self)) for accurate signature.

__int__()#

int(self)

__invert__()#

~self

__le__()#

Return self<=value.

__lshift__()#

Return self<<value.

__lt__()#

Return self<value.

__mod__()#

Return self%value.

__mul__()#

Return self*value.

__ne__()#

Return self!=value.

__neg__()#

-self

__new__()#

Create and return a new object. See help(type) for accurate signature.

__or__()#

Return self|value.

__pos__()#

+self

__pow__()#

Return pow(self, value, mod).

__radd__()#

Return value+self.

__rand__()#

Return value&self.

__rdivmod__()#

Return divmod(value, self).

__reduce__()#

Helper for pickle.

__reduce_ex__()#

Helper for pickle.

__repr__()#

Return repr(self).

__rfloordiv__()#

Return value//self.

__rlshift__()#

Return value<<self.

__rmod__()#

Return value%self.

__rmul__()#

Return value*self.

__ror__()#

Return value|self.

__round__()#

Rounding an Integral returns itself.

Rounding with an ndigits argument also returns an integer.

__rpow__()#

Return pow(value, self, mod).

__rrshift__()#

Return value>>self.

__rshift__()#

Return self>>value.

__rsub__()#

Return value-self.

__rtruediv__()#

Return value/self.

__rxor__()#

Return value^self.

classmethod __signature__()#
__sizeof__()#

Returns size in memory, in bytes.

__str__()#

Return str(self).

__sub__()#

Return self-value.

__subclasshook__()#

Abstract classes can override this to customize issubclass().

This is invoked early on by abc.ABCMeta.subclasscheck(). It should return True, False or NotImplemented. If it returns NotImplemented, the normal algorithm is used. Otherwise, it overrides the normal algorithm (and the outcome is cached).

__truediv__()#

Return self/value.

__trunc__()#

Truncating an Integral returns itself.

__xor__()#

Return self^value.

as_integer_ratio()#

Return a pair of integers, whose ratio is equal to the original int.

The ratio is in lowest terms and has a positive denominator.

(10).as_integer_ratio() (10, 1) (-10).as_integer_ratio() (-10, 1) (0).as_integer_ratio() (0, 1)

bit_count()#

Number of ones in the binary representation of the absolute value of self.

Also known as the population count.

bin(13) ‘0b1101’ (13).bit_count() 3

bit_length()#

Number of bits necessary to represent self in binary.

bin(37) ‘0b100101’ (37).bit_length() 6

conjugate()#

Returns self, the complex conjugate of any int.

class denominator#

the denominator of a rational number in lowest terms

class imag#

the imaginary part of a complex number

is_integer()#

Returns True. Exists for duck type compatibility with float.is_integer.

name()#

The name of the Enum member.

class numerator#

the numerator of a rational number in lowest terms

class real#

the real part of a complex number

to_bytes()#

Return an array of bytes representing an integer.

length Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes. Default is length 1. byteorder The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value. Default is to use ‘big’. signed Determines whether two’s complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.

value()#

The value of the Enum member.

class altdss.enums.GeneratorStatus#

Bases: enum.IntEnum

Generator: Status (DSS enumeration)

Fixed#

1

Variable#

0

__abs__()#

abs(self)

__add__()#

Return self+value.

__and__()#

Return self&value.

__bool__()#

True if self else False

__ceil__()#

Ceiling of an Integral returns itself.

__copy__()#
__deepcopy__(memo)#
__delattr__()#

Implement delattr(self, name).

__dir__()#

Default dir() implementation.

__divmod__()#

Return divmod(self, value).

__float__()#

float(self)

__floor__()#

Flooring an Integral returns itself.

__floordiv__()#

Return self//value.

__format__()#

Convert to a string according to format_spec.

__ge__()#

Return self>=value.

__getattribute__()#

Return getattr(self, name).

__getnewargs__()#
__getstate__()#

Helper for pickle.

__gt__()#

Return self>value.

__hash__()#

Return hash(self).

__index__()#

Return self converted to an integer, if self is suitable for use as an index into a list.

__init__()#

Initialize self. See help(type(self)) for accurate signature.

__int__()#

int(self)

__invert__()#

~self

__le__()#

Return self<=value.

__lshift__()#

Return self<<value.

__lt__()#

Return self<value.

__mod__()#

Return self%value.

__mul__()#

Return self*value.

__ne__()#

Return self!=value.

__neg__()#

-self

__new__()#

Create and return a new object. See help(type) for accurate signature.

__or__()#

Return self|value.

__pos__()#

+self

__pow__()#

Return pow(self, value, mod).

__radd__()#

Return value+self.

__rand__()#

Return value&self.

__rdivmod__()#

Return divmod(value, self).

__reduce__()#

Helper for pickle.

__reduce_ex__()#

Helper for pickle.

__repr__()#

Return repr(self).

__rfloordiv__()#

Return value//self.

__rlshift__()#

Return value<<self.

__rmod__()#

Return value%self.

__rmul__()#

Return value*self.

__ror__()#

Return value|self.

__round__()#

Rounding an Integral returns itself.

Rounding with an ndigits argument also returns an integer.

__rpow__()#

Return pow(value, self, mod).

__rrshift__()#

Return value>>self.

__rshift__()#

Return self>>value.

__rsub__()#

Return value-self.

__rtruediv__()#

Return value/self.

__rxor__()#

Return value^self.

classmethod __signature__()#
__sizeof__()#

Returns size in memory, in bytes.

__str__()#

Return str(self).

__sub__()#

Return self-value.

__subclasshook__()#

Abstract classes can override this to customize issubclass().

This is invoked early on by abc.ABCMeta.subclasscheck(). It should return True, False or NotImplemented. If it returns NotImplemented, the normal algorithm is used. Otherwise, it overrides the normal algorithm (and the outcome is cached).

__truediv__()#

Return self/value.

__trunc__()#

Truncating an Integral returns itself.

__xor__()#

Return self^value.

as_integer_ratio()#

Return a pair of integers, whose ratio is equal to the original int.

The ratio is in lowest terms and has a positive denominator.

(10).as_integer_ratio() (10, 1) (-10).as_integer_ratio() (-10, 1) (0).as_integer_ratio() (0, 1)

bit_count()#

Number of ones in the binary representation of the absolute value of self.

Also known as the population count.

bin(13) ‘0b1101’ (13).bit_count() 3

bit_length()#

Number of bits necessary to represent self in binary.

bin(37) ‘0b100101’ (37).bit_length() 6

conjugate()#

Returns self, the complex conjugate of any int.

class denominator#

the denominator of a rational number in lowest terms

class imag#

the imaginary part of a complex number

is_integer()#

Returns True. Exists for duck type compatibility with float.is_integer.

name()#

The name of the Enum member.

class numerator#

the numerator of a rational number in lowest terms

class real#

the real part of a complex number

to_bytes()#

Return an array of bytes representing an integer.

length Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes. Default is length 1. byteorder The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value. Default is to use ‘big’. signed Determines whether two’s complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.

value()#

The value of the Enum member.

class altdss.enums.IndMach012SlipOption#

Bases: enum.IntEnum

IndMach012: Slip Option (DSS enumeration)

FixedSlip#

1

VariableSlip#

0

__abs__()#

abs(self)

__add__()#

Return self+value.

__and__()#

Return self&value.

__bool__()#

True if self else False

__ceil__()#

Ceiling of an Integral returns itself.

__copy__()#
__deepcopy__(memo)#
__delattr__()#

Implement delattr(self, name).

__dir__()#

Default dir() implementation.

__divmod__()#

Return divmod(self, value).

__float__()#

float(self)

__floor__()#

Flooring an Integral returns itself.

__floordiv__()#

Return self//value.

__format__()#

Convert to a string according to format_spec.

__ge__()#

Return self>=value.

__getattribute__()#

Return getattr(self, name).

__getnewargs__()#
__getstate__()#

Helper for pickle.

__gt__()#

Return self>value.

__hash__()#

Return hash(self).

__index__()#

Return self converted to an integer, if self is suitable for use as an index into a list.

__init__()#

Initialize self. See help(type(self)) for accurate signature.

__int__()#

int(self)

__invert__()#

~self

__le__()#

Return self<=value.

__lshift__()#

Return self<<value.

__lt__()#

Return self<value.

__mod__()#

Return self%value.

__mul__()#

Return self*value.

__ne__()#

Return self!=value.

__neg__()#

-self

__new__()#

Create and return a new object. See help(type) for accurate signature.

__or__()#

Return self|value.

__pos__()#

+self

__pow__()#

Return pow(self, value, mod).

__radd__()#

Return value+self.

__rand__()#

Return value&self.

__rdivmod__()#

Return divmod(value, self).

__reduce__()#

Helper for pickle.

__reduce_ex__()#

Helper for pickle.

__repr__()#

Return repr(self).

__rfloordiv__()#

Return value//self.

__rlshift__()#

Return value<<self.

__rmod__()#

Return value%self.

__rmul__()#

Return value*self.

__ror__()#

Return value|self.

__round__()#

Rounding an Integral returns itself.

Rounding with an ndigits argument also returns an integer.

__rpow__()#

Return pow(value, self, mod).

__rrshift__()#

Return value>>self.

__rshift__()#

Return self>>value.

__rsub__()#

Return value-self.

__rtruediv__()#

Return value/self.

__rxor__()#

Return value^self.

classmethod __signature__()#
__sizeof__()#

Returns size in memory, in bytes.

__str__()#

Return str(self).

__sub__()#

Return self-value.

__subclasshook__()#

Abstract classes can override this to customize issubclass().

This is invoked early on by abc.ABCMeta.subclasscheck(). It should return True, False or NotImplemented. If it returns NotImplemented, the normal algorithm is used. Otherwise, it overrides the normal algorithm (and the outcome is cached).

__truediv__()#

Return self/value.

__trunc__()#

Truncating an Integral returns itself.

__xor__()#

Return self^value.

as_integer_ratio()#

Return a pair of integers, whose ratio is equal to the original int.

The ratio is in lowest terms and has a positive denominator.

(10).as_integer_ratio() (10, 1) (-10).as_integer_ratio() (-10, 1) (0).as_integer_ratio() (0, 1)

bit_count()#

Number of ones in the binary representation of the absolute value of self.

Also known as the population count.

bin(13) ‘0b1101’ (13).bit_count() 3

bit_length()#

Number of bits necessary to represent self in binary.

bin(37) ‘0b100101’ (37).bit_length() 6

conjugate()#

Returns self, the complex conjugate of any int.

class denominator#

the denominator of a rational number in lowest terms

class imag#

the imaginary part of a complex number

is_integer()#

Returns True. Exists for duck type compatibility with float.is_integer.

name()#

The name of the Enum member.

class numerator#

the numerator of a rational number in lowest terms

class real#

the real part of a complex number

to_bytes()#

Return an array of bytes representing an integer.

length Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes. Default is length 1. byteorder The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value. Default is to use ‘big’. signed Determines whether two’s complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.

value()#

The value of the Enum member.

class altdss.enums.InvControlCombiMode#

Bases: enum.IntEnum

InvControl: Combi Mode (DSS enumeration)

VV_DRC#

2

VV_VW#

1

__abs__()#

abs(self)

__add__()#

Return self+value.

__and__()#

Return self&value.

__bool__()#

True if self else False

__ceil__()#

Ceiling of an Integral returns itself.

__copy__()#
__deepcopy__(memo)#
__delattr__()#

Implement delattr(self, name).

__dir__()#

Default dir() implementation.

__divmod__()#

Return divmod(self, value).

__float__()#

float(self)

__floor__()#

Flooring an Integral returns itself.

__floordiv__()#

Return self//value.

__format__()#

Convert to a string according to format_spec.

__ge__()#

Return self>=value.

__getattribute__()#

Return getattr(self, name).

__getnewargs__()#
__getstate__()#

Helper for pickle.

__gt__()#

Return self>value.

__hash__()#

Return hash(self).

__index__()#

Return self converted to an integer, if self is suitable for use as an index into a list.

__init__()#

Initialize self. See help(type(self)) for accurate signature.

__int__()#

int(self)

__invert__()#

~self

__le__()#

Return self<=value.

__lshift__()#

Return self<<value.

__lt__()#

Return self<value.

__mod__()#

Return self%value.

__mul__()#

Return self*value.

__ne__()#

Return self!=value.

__neg__()#

-self

__new__()#

Create and return a new object. See help(type) for accurate signature.

__or__()#

Return self|value.

__pos__()#

+self

__pow__()#

Return pow(self, value, mod).

__radd__()#

Return value+self.

__rand__()#

Return value&self.

__rdivmod__()#

Return divmod(value, self).

__reduce__()#

Helper for pickle.

__reduce_ex__()#

Helper for pickle.

__repr__()#

Return repr(self).

__rfloordiv__()#

Return value//self.

__rlshift__()#

Return value<<self.

__rmod__()#

Return value%self.

__rmul__()#

Return value*self.

__ror__()#

Return value|self.

__round__()#

Rounding an Integral returns itself.

Rounding with an ndigits argument also returns an integer.

__rpow__()#

Return pow(value, self, mod).

__rrshift__()#

Return value>>self.

__rshift__()#

Return self>>value.

__rsub__()#

Return value-self.

__rtruediv__()#

Return value/self.

__rxor__()#

Return value^self.

classmethod __signature__()#
__sizeof__()#

Returns size in memory, in bytes.

__str__()#

Return str(self).

__sub__()#

Return self-value.

__subclasshook__()#

Abstract classes can override this to customize issubclass().

This is invoked early on by abc.ABCMeta.subclasscheck(). It should return True, False or NotImplemented. If it returns NotImplemented, the normal algorithm is used. Otherwise, it overrides the normal algorithm (and the outcome is cached).

__truediv__()#

Return self/value.

__trunc__()#

Truncating an Integral returns itself.

__xor__()#

Return self^value.

as_integer_ratio()#

Return a pair of integers, whose ratio is equal to the original int.

The ratio is in lowest terms and has a positive denominator.

(10).as_integer_ratio() (10, 1) (-10).as_integer_ratio() (-10, 1) (0).as_integer_ratio() (0, 1)

bit_count()#

Number of ones in the binary representation of the absolute value of self.

Also known as the population count.

bin(13) ‘0b1101’ (13).bit_count() 3

bit_length()#

Number of bits necessary to represent self in binary.

bin(37) ‘0b100101’ (37).bit_length() 6

conjugate()#

Returns self, the complex conjugate of any int.

class denominator#

the denominator of a rational number in lowest terms

class imag#

the imaginary part of a complex number

is_integer()#

Returns True. Exists for duck type compatibility with float.is_integer.

name()#

The name of the Enum member.

class numerator#

the numerator of a rational number in lowest terms

class real#

the real part of a complex number

to_bytes()#

Return an array of bytes representing an integer.

length Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes. Default is length 1. byteorder The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value. Default is to use ‘big’. signed Determines whether two’s complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.

value()#

The value of the Enum member.

class altdss.enums.InvControlControlMode#

Bases: enum.IntEnum

InvControl: Control Mode (DSS enumeration)

AVR#

6

DynamicReaccurr#

3

GFM#

7

VoltWatt#

2

Voltvar#

1

WattPF#

4

Wattvar#

5

__abs__()#

abs(self)

__add__()#

Return self+value.

__and__()#

Return self&value.

__bool__()#

True if self else False

__ceil__()#

Ceiling of an Integral returns itself.

__copy__()#
__deepcopy__(memo)#
__delattr__()#

Implement delattr(self, name).

__dir__()#

Default dir() implementation.

__divmod__()#

Return divmod(self, value).

__float__()#

float(self)

__floor__()#

Flooring an Integral returns itself.

__floordiv__()#

Return self//value.

__format__()#

Convert to a string according to format_spec.

__ge__()#

Return self>=value.

__getattribute__()#

Return getattr(self, name).

__getnewargs__()#
__getstate__()#

Helper for pickle.

__gt__()#

Return self>value.

__hash__()#

Return hash(self).

__index__()#

Return self converted to an integer, if self is suitable for use as an index into a list.

__init__()#

Initialize self. See help(type(self)) for accurate signature.

__int__()#

int(self)

__invert__()#

~self

__le__()#

Return self<=value.

__lshift__()#

Return self<<value.

__lt__()#

Return self<value.

__mod__()#

Return self%value.

__mul__()#

Return self*value.

__ne__()#

Return self!=value.

__neg__()#

-self

__new__()#

Create and return a new object. See help(type) for accurate signature.

__or__()#

Return self|value.

__pos__()#

+self

__pow__()#

Return pow(self, value, mod).

__radd__()#

Return value+self.

__rand__()#

Return value&self.

__rdivmod__()#

Return divmod(value, self).

__reduce__()#

Helper for pickle.

__reduce_ex__()#

Helper for pickle.

__repr__()#

Return repr(self).

__rfloordiv__()#

Return value//self.

__rlshift__()#

Return value<<self.

__rmod__()#

Return value%self.

__rmul__()#

Return value*self.

__ror__()#

Return value|self.

__round__()#

Rounding an Integral returns itself.

Rounding with an ndigits argument also returns an integer.

__rpow__()#

Return pow(value, self, mod).

__rrshift__()#

Return value>>self.

__rshift__()#

Return self>>value.

__rsub__()#

Return value-self.

__rtruediv__()#

Return value/self.

__rxor__()#

Return value^self.

classmethod __signature__()#
__sizeof__()#

Returns size in memory, in bytes.

__str__()#

Return str(self).

__sub__()#

Return self-value.

__subclasshook__()#

Abstract classes can override this to customize issubclass().

This is invoked early on by abc.ABCMeta.subclasscheck(). It should return True, False or NotImplemented. If it returns NotImplemented, the normal algorithm is used. Otherwise, it overrides the normal algorithm (and the outcome is cached).

__truediv__()#

Return self/value.

__trunc__()#

Truncating an Integral returns itself.

__xor__()#

Return self^value.

as_integer_ratio()#

Return a pair of integers, whose ratio is equal to the original int.

The ratio is in lowest terms and has a positive denominator.

(10).as_integer_ratio() (10, 1) (-10).as_integer_ratio() (-10, 1) (0).as_integer_ratio() (0, 1)

bit_count()#

Number of ones in the binary representation of the absolute value of self.

Also known as the population count.

bin(13) ‘0b1101’ (13).bit_count() 3

bit_length()#

Number of bits necessary to represent self in binary.

bin(37) ‘0b100101’ (37).bit_length() 6

conjugate()#

Returns self, the complex conjugate of any int.

class denominator#

the denominator of a rational number in lowest terms

class imag#

the imaginary part of a complex number

is_integer()#

Returns True. Exists for duck type compatibility with float.is_integer.

name()#

The name of the Enum member.

class numerator#

the numerator of a rational number in lowest terms

class real#

the real part of a complex number

to_bytes()#

Return an array of bytes representing an integer.

length Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes. Default is length 1. byteorder The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value. Default is to use ‘big’. signed Determines whether two’s complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.

value()#

The value of the Enum member.

class altdss.enums.InvControlControlModel#

Bases: enum.IntEnum

InvControl: Control Model (DSS enumeration)

Exponential#

1

Linear#

0

__abs__()#

abs(self)

__add__()#

Return self+value.

__and__()#

Return self&value.

__bool__()#

True if self else False

__ceil__()#

Ceiling of an Integral returns itself.

__copy__()#
__deepcopy__(memo)#
__delattr__()#

Implement delattr(self, name).

__dir__()#

Default dir() implementation.

__divmod__()#

Return divmod(self, value).

__float__()#

float(self)

__floor__()#

Flooring an Integral returns itself.

__floordiv__()#

Return self//value.

__format__()#

Convert to a string according to format_spec.

__ge__()#

Return self>=value.

__getattribute__()#

Return getattr(self, name).

__getnewargs__()#
__getstate__()#

Helper for pickle.

__gt__()#

Return self>value.

__hash__()#

Return hash(self).

__index__()#

Return self converted to an integer, if self is suitable for use as an index into a list.

__init__()#

Initialize self. See help(type(self)) for accurate signature.

__int__()#

int(self)

__invert__()#

~self

__le__()#

Return self<=value.

__lshift__()#

Return self<<value.

__lt__()#

Return self<value.

__mod__()#

Return self%value.

__mul__()#

Return self*value.

__ne__()#

Return self!=value.

__neg__()#

-self

__new__()#

Create and return a new object. See help(type) for accurate signature.

__or__()#

Return self|value.

__pos__()#

+self

__pow__()#

Return pow(self, value, mod).

__radd__()#

Return value+self.

__rand__()#

Return value&self.

__rdivmod__()#

Return divmod(value, self).

__reduce__()#

Helper for pickle.

__reduce_ex__()#

Helper for pickle.

__repr__()#

Return repr(self).

__rfloordiv__()#

Return value//self.

__rlshift__()#

Return value<<self.

__rmod__()#

Return value%self.

__rmul__()#

Return value*self.

__ror__()#

Return value|self.

__round__()#

Rounding an Integral returns itself.

Rounding with an ndigits argument also returns an integer.

__rpow__()#

Return pow(value, self, mod).

__rrshift__()#

Return value>>self.

__rshift__()#

Return self>>value.

__rsub__()#

Return value-self.

__rtruediv__()#

Return value/self.

__rxor__()#

Return value^self.

classmethod __signature__()#
__sizeof__()#

Returns size in memory, in bytes.

__str__()#

Return str(self).

__sub__()#

Return self-value.

__subclasshook__()#

Abstract classes can override this to customize issubclass().

This is invoked early on by abc.ABCMeta.subclasscheck(). It should return True, False or NotImplemented. If it returns NotImplemented, the normal algorithm is used. Otherwise, it overrides the normal algorithm (and the outcome is cached).

__truediv__()#

Return self/value.

__trunc__()#

Truncating an Integral returns itself.

__xor__()#

Return self^value.

as_integer_ratio()#

Return a pair of integers, whose ratio is equal to the original int.

The ratio is in lowest terms and has a positive denominator.

(10).as_integer_ratio() (10, 1) (-10).as_integer_ratio() (-10, 1) (0).as_integer_ratio() (0, 1)

bit_count()#

Number of ones in the binary representation of the absolute value of self.

Also known as the population count.

bin(13) ‘0b1101’ (13).bit_count() 3

bit_length()#

Number of bits necessary to represent self in binary.

bin(37) ‘0b100101’ (37).bit_length() 6

conjugate()#

Returns self, the complex conjugate of any int.

class denominator#

the denominator of a rational number in lowest terms

class imag#

the imaginary part of a complex number

is_integer()#

Returns True. Exists for duck type compatibility with float.is_integer.

name()#

The name of the Enum member.

class numerator#

the numerator of a rational number in lowest terms

class real#

the real part of a complex number

to_bytes()#

Return an array of bytes representing an integer.

length Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes. Default is length 1. byteorder The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value. Default is to use ‘big’. signed Determines whether two’s complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.

value()#

The value of the Enum member.

class altdss.enums.InvControlRateOfChangeMode#

Bases: enum.IntEnum

InvControl: Rate-of-change Mode (DSS enumeration)

Inactive#

0

LPF#

1

RiseFall#

2

__abs__()#

abs(self)

__add__()#

Return self+value.

__and__()#

Return self&value.

__bool__()#

True if self else False

__ceil__()#

Ceiling of an Integral returns itself.

__copy__()#
__deepcopy__(memo)#
__delattr__()#

Implement delattr(self, name).

__dir__()#

Default dir() implementation.

__divmod__()#

Return divmod(self, value).

__float__()#

float(self)

__floor__()#

Flooring an Integral returns itself.

__floordiv__()#

Return self//value.

__format__()#

Convert to a string according to format_spec.

__ge__()#

Return self>=value.

__getattribute__()#

Return getattr(self, name).

__getnewargs__()#
__getstate__()#

Helper for pickle.

__gt__()#

Return self>value.

__hash__()#

Return hash(self).

__index__()#

Return self converted to an integer, if self is suitable for use as an index into a list.

__init__()#

Initialize self. See help(type(self)) for accurate signature.

__int__()#

int(self)

__invert__()#

~self

__le__()#

Return self<=value.

__lshift__()#

Return self<<value.

__lt__()#

Return self<value.

__mod__()#

Return self%value.

__mul__()#

Return self*value.

__ne__()#

Return self!=value.

__neg__()#

-self

__new__()#

Create and return a new object. See help(type) for accurate signature.

__or__()#

Return self|value.

__pos__()#

+self

__pow__()#

Return pow(self, value, mod).

__radd__()#

Return value+self.

__rand__()#

Return value&self.

__rdivmod__()#

Return divmod(value, self).

__reduce__()#

Helper for pickle.

__reduce_ex__()#

Helper for pickle.

__repr__()#

Return repr(self).

__rfloordiv__()#

Return value//self.

__rlshift__()#

Return value<<self.

__rmod__()#

Return value%self.

__rmul__()#

Return value*self.

__ror__()#

Return value|self.

__round__()#

Rounding an Integral returns itself.

Rounding with an ndigits argument also returns an integer.

__rpow__()#

Return pow(value, self, mod).

__rrshift__()#

Return value>>self.

__rshift__()#

Return self>>value.

__rsub__()#

Return value-self.

__rtruediv__()#

Return value/self.

__rxor__()#

Return value^self.

classmethod __signature__()#
__sizeof__()#

Returns size in memory, in bytes.

__str__()#

Return str(self).

__sub__()#

Return self-value.

__subclasshook__()#

Abstract classes can override this to customize issubclass().

This is invoked early on by abc.ABCMeta.subclasscheck(). It should return True, False or NotImplemented. If it returns NotImplemented, the normal algorithm is used. Otherwise, it overrides the normal algorithm (and the outcome is cached).

__truediv__()#

Return self/value.

__trunc__()#

Truncating an Integral returns itself.

__xor__()#

Return self^value.

as_integer_ratio()#

Return a pair of integers, whose ratio is equal to the original int.

The ratio is in lowest terms and has a positive denominator.

(10).as_integer_ratio() (10, 1) (-10).as_integer_ratio() (-10, 1) (0).as_integer_ratio() (0, 1)

bit_count()#

Number of ones in the binary representation of the absolute value of self.

Also known as the population count.

bin(13) ‘0b1101’ (13).bit_count() 3

bit_length()#

Number of bits necessary to represent self in binary.

bin(37) ‘0b100101’ (37).bit_length() 6

conjugate()#

Returns self, the complex conjugate of any int.

class denominator#

the denominator of a rational number in lowest terms

class imag#

the imaginary part of a complex number

is_integer()#

Returns True. Exists for duck type compatibility with float.is_integer.

name()#

The name of the Enum member.

class numerator#

the numerator of a rational number in lowest terms

class real#

the real part of a complex number

to_bytes()#

Return an array of bytes representing an integer.

length Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes. Default is length 1. byteorder The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value. Default is to use ‘big’. signed Determines whether two’s complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.

value()#

The value of the Enum member.

class altdss.enums.InvControlReactivePowerReference#

Bases: enum.IntEnum

InvControl: Reactive Power Reference (DSS enumeration)

VARAVAL#

0

VARMAX#

1

__abs__()#

abs(self)

__add__()#

Return self+value.

__and__()#

Return self&value.

__bool__()#

True if self else False

__ceil__()#

Ceiling of an Integral returns itself.

__copy__()#
__deepcopy__(memo)#
__delattr__()#

Implement delattr(self, name).

__dir__()#

Default dir() implementation.

__divmod__()#

Return divmod(self, value).

__float__()#

float(self)

__floor__()#

Flooring an Integral returns itself.

__floordiv__()#

Return self//value.

__format__()#

Convert to a string according to format_spec.

__ge__()#

Return self>=value.

__getattribute__()#

Return getattr(self, name).

__getnewargs__()#
__getstate__()#

Helper for pickle.

__gt__()#

Return self>value.

__hash__()#

Return hash(self).

__index__()#

Return self converted to an integer, if self is suitable for use as an index into a list.

__init__()#

Initialize self. See help(type(self)) for accurate signature.

__int__()#

int(self)

__invert__()#

~self

__le__()#

Return self<=value.

__lshift__()#

Return self<<value.

__lt__()#

Return self<value.

__mod__()#

Return self%value.

__mul__()#

Return self*value.

__ne__()#

Return self!=value.

__neg__()#

-self

__new__()#

Create and return a new object. See help(type) for accurate signature.

__or__()#

Return self|value.

__pos__()#

+self

__pow__()#

Return pow(self, value, mod).

__radd__()#

Return value+self.

__rand__()#

Return value&self.

__rdivmod__()#

Return divmod(value, self).

__reduce__()#

Helper for pickle.

__reduce_ex__()#

Helper for pickle.

__repr__()#

Return repr(self).

__rfloordiv__()#

Return value//self.

__rlshift__()#

Return value<<self.

__rmod__()#

Return value%self.

__rmul__()#

Return value*self.

__ror__()#

Return value|self.

__round__()#

Rounding an Integral returns itself.

Rounding with an ndigits argument also returns an integer.

__rpow__()#

Return pow(value, self, mod).

__rrshift__()#

Return value>>self.

__rshift__()#

Return self>>value.

__rsub__()#

Return value-self.

__rtruediv__()#

Return value/self.

__rxor__()#

Return value^self.

classmethod __signature__()#
__sizeof__()#

Returns size in memory, in bytes.

__str__()#

Return str(self).

__sub__()#

Return self-value.

__subclasshook__()#

Abstract classes can override this to customize issubclass().

This is invoked early on by abc.ABCMeta.subclasscheck(). It should return True, False or NotImplemented. If it returns NotImplemented, the normal algorithm is used. Otherwise, it overrides the normal algorithm (and the outcome is cached).

__truediv__()#

Return self/value.

__trunc__()#

Truncating an Integral returns itself.

__xor__()#

Return self^value.

as_integer_ratio()#

Return a pair of integers, whose ratio is equal to the original int.

The ratio is in lowest terms and has a positive denominator.

(10).as_integer_ratio() (10, 1) (-10).as_integer_ratio() (-10, 1) (0).as_integer_ratio() (0, 1)

bit_count()#

Number of ones in the binary representation of the absolute value of self.

Also known as the population count.

bin(13) ‘0b1101’ (13).bit_count() 3

bit_length()#

Number of bits necessary to represent self in binary.

bin(37) ‘0b100101’ (37).bit_length() 6

conjugate()#

Returns self, the complex conjugate of any int.

class denominator#

the denominator of a rational number in lowest terms

class imag#

the imaginary part of a complex number

is_integer()#

Returns True. Exists for duck type compatibility with float.is_integer.

name()#

The name of the Enum member.

class numerator#

the numerator of a rational number in lowest terms

class real#

the real part of a complex number

to_bytes()#

Return an array of bytes representing an integer.

length Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes. Default is length 1. byteorder The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value. Default is to use ‘big’. signed Determines whether two’s complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.

value()#

The value of the Enum member.

class altdss.enums.InvControlVoltWattYAxis#

Bases: enum.IntEnum

InvControl: Volt-Watt Y-Axis (DSS enumeration)

KVARatingPU#

3

PAvailablePU#

0

PMPPPU#

1

PctPMPPPU#

2

__abs__()#

abs(self)

__add__()#

Return self+value.

__and__()#

Return self&value.

__bool__()#

True if self else False

__ceil__()#

Ceiling of an Integral returns itself.

__copy__()#
__deepcopy__(memo)#
__delattr__()#

Implement delattr(self, name).

__dir__()#

Default dir() implementation.

__divmod__()#

Return divmod(self, value).

__float__()#

float(self)

__floor__()#

Flooring an Integral returns itself.

__floordiv__()#

Return self//value.

__format__()#

Convert to a string according to format_spec.

__ge__()#

Return self>=value.

__getattribute__()#

Return getattr(self, name).

__getnewargs__()#
__getstate__()#

Helper for pickle.

__gt__()#

Return self>value.

__hash__()#

Return hash(self).

__index__()#

Return self converted to an integer, if self is suitable for use as an index into a list.

__init__()#

Initialize self. See help(type(self)) for accurate signature.

__int__()#

int(self)

__invert__()#

~self

__le__()#

Return self<=value.

__lshift__()#

Return self<<value.

__lt__()#

Return self<value.

__mod__()#

Return self%value.

__mul__()#

Return self*value.

__ne__()#

Return self!=value.

__neg__()#

-self

__new__()#

Create and return a new object. See help(type) for accurate signature.

__or__()#

Return self|value.

__pos__()#

+self

__pow__()#

Return pow(self, value, mod).

__radd__()#

Return value+self.

__rand__()#

Return value&self.

__rdivmod__()#

Return divmod(value, self).

__reduce__()#

Helper for pickle.

__reduce_ex__()#

Helper for pickle.

__repr__()#

Return repr(self).

__rfloordiv__()#

Return value//self.

__rlshift__()#

Return value<<self.

__rmod__()#

Return value%self.

__rmul__()#

Return value*self.

__ror__()#

Return value|self.

__round__()#

Rounding an Integral returns itself.

Rounding with an ndigits argument also returns an integer.

__rpow__()#

Return pow(value, self, mod).

__rrshift__()#

Return value>>self.

__rshift__()#

Return self>>value.

__rsub__()#

Return value-self.

__rtruediv__()#

Return value/self.

__rxor__()#

Return value^self.

classmethod __signature__()#
__sizeof__()#

Returns size in memory, in bytes.

__str__()#

Return str(self).

__sub__()#

Return self-value.

__subclasshook__()#

Abstract classes can override this to customize issubclass().

This is invoked early on by abc.ABCMeta.subclasscheck(). It should return True, False or NotImplemented. If it returns NotImplemented, the normal algorithm is used. Otherwise, it overrides the normal algorithm (and the outcome is cached).

__truediv__()#

Return self/value.

__trunc__()#

Truncating an Integral returns itself.

__xor__()#

Return self^value.

as_integer_ratio()#

Return a pair of integers, whose ratio is equal to the original int.

The ratio is in lowest terms and has a positive denominator.

(10).as_integer_ratio() (10, 1) (-10).as_integer_ratio() (-10, 1) (0).as_integer_ratio() (0, 1)

bit_count()#

Number of ones in the binary representation of the absolute value of self.

Also known as the population count.

bin(13) ‘0b1101’ (13).bit_count() 3

bit_length()#

Number of bits necessary to represent self in binary.

bin(37) ‘0b100101’ (37).bit_length() 6

conjugate()#

Returns self, the complex conjugate of any int.

class denominator#

the denominator of a rational number in lowest terms

class imag#

the imaginary part of a complex number

is_integer()#

Returns True. Exists for duck type compatibility with float.is_integer.

name()#

The name of the Enum member.

class numerator#

the numerator of a rational number in lowest terms

class real#

the real part of a complex number

to_bytes()#

Return an array of bytes representing an integer.

length Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes. Default is length 1. byteorder The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value. Default is to use ‘big’. signed Determines whether two’s complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.

value()#

The value of the Enum member.

class altdss.enums.InvControlVoltageCurveXRef#

Bases: enum.IntEnum

InvControl: Voltage Curve X Ref (DSS enumeration)

Avg#

1

RAvg#

2

Rated#

0

__abs__()#

abs(self)

__add__()#

Return self+value.

__and__()#

Return self&value.

__bool__()#

True if self else False

__ceil__()#

Ceiling of an Integral returns itself.

__copy__()#
__deepcopy__(memo)#
__delattr__()#

Implement delattr(self, name).

__dir__()#

Default dir() implementation.

__divmod__()#

Return divmod(self, value).

__float__()#

float(self)

__floor__()#

Flooring an Integral returns itself.

__floordiv__()#

Return self//value.

__format__()#

Convert to a string according to format_spec.

__ge__()#

Return self>=value.

__getattribute__()#

Return getattr(self, name).

__getnewargs__()#
__getstate__()#

Helper for pickle.

__gt__()#

Return self>value.

__hash__()#

Return hash(self).

__index__()#

Return self converted to an integer, if self is suitable for use as an index into a list.

__init__()#

Initialize self. See help(type(self)) for accurate signature.

__int__()#

int(self)

__invert__()#

~self

__le__()#

Return self<=value.

__lshift__()#

Return self<<value.

__lt__()#

Return self<value.

__mod__()#

Return self%value.

__mul__()#

Return self*value.

__ne__()#

Return self!=value.

__neg__()#

-self

__new__()#

Create and return a new object. See help(type) for accurate signature.

__or__()#

Return self|value.

__pos__()#

+self

__pow__()#

Return pow(self, value, mod).

__radd__()#

Return value+self.

__rand__()#

Return value&self.

__rdivmod__()#

Return divmod(value, self).

__reduce__()#

Helper for pickle.

__reduce_ex__()#

Helper for pickle.

__repr__()#

Return repr(self).

__rfloordiv__()#

Return value//self.

__rlshift__()#

Return value<<self.

__rmod__()#

Return value%self.

__rmul__()#

Return value*self.

__ror__()#

Return value|self.

__round__()#

Rounding an Integral returns itself.

Rounding with an ndigits argument also returns an integer.

__rpow__()#

Return pow(value, self, mod).

__rrshift__()#

Return value>>self.

__rshift__()#

Return self>>value.

__rsub__()#

Return value-self.

__rtruediv__()#

Return value/self.

__rxor__()#

Return value^self.

classmethod __signature__()#
__sizeof__()#

Returns size in memory, in bytes.

__str__()#

Return str(self).

__sub__()#

Return self-value.

__subclasshook__()#

Abstract classes can override this to customize issubclass().

This is invoked early on by abc.ABCMeta.subclasscheck(). It should return True, False or NotImplemented. If it returns NotImplemented, the normal algorithm is used. Otherwise, it overrides the normal algorithm (and the outcome is cached).

__truediv__()#

Return self/value.

__trunc__()#

Truncating an Integral returns itself.

__xor__()#

Return self^value.

as_integer_ratio()#

Return a pair of integers, whose ratio is equal to the original int.

The ratio is in lowest terms and has a positive denominator.

(10).as_integer_ratio() (10, 1) (-10).as_integer_ratio() (-10, 1) (0).as_integer_ratio() (0, 1)

bit_count()#

Number of ones in the binary representation of the absolute value of self.

Also known as the population count.

bin(13) ‘0b1101’ (13).bit_count() 3

bit_length()#

Number of bits necessary to represent self in binary.

bin(37) ‘0b100101’ (37).bit_length() 6

conjugate()#

Returns self, the complex conjugate of any int.

class denominator#

the denominator of a rational number in lowest terms

class imag#

the imaginary part of a complex number

is_integer()#

Returns True. Exists for duck type compatibility with float.is_integer.

name()#

The name of the Enum member.

class numerator#

the numerator of a rational number in lowest terms

class real#

the real part of a complex number

to_bytes()#

Return an array of bytes representing an integer.

length Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes. Default is length 1. byteorder The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value. Default is to use ‘big’. signed Determines whether two’s complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.

value()#

The value of the Enum member.

class altdss.enums.InverterControlMode#

Bases: enum.IntEnum

Inverter Control Mode (DSS enumeration)

GFL#

0

GFM#

1

__abs__()#

abs(self)

__add__()#

Return self+value.

__and__()#

Return self&value.

__bool__()#

True if self else False

__ceil__()#

Ceiling of an Integral returns itself.

__copy__()#
__deepcopy__(memo)#
__delattr__()#

Implement delattr(self, name).

__dir__()#

Default dir() implementation.

__divmod__()#

Return divmod(self, value).

__float__()#

float(self)

__floor__()#

Flooring an Integral returns itself.

__floordiv__()#

Return self//value.

__format__()#

Convert to a string according to format_spec.

__ge__()#

Return self>=value.

__getattribute__()#

Return getattr(self, name).

__getnewargs__()#
__getstate__()#

Helper for pickle.

__gt__()#

Return self>value.

__hash__()#

Return hash(self).

__index__()#

Return self converted to an integer, if self is suitable for use as an index into a list.

__init__()#

Initialize self. See help(type(self)) for accurate signature.

__int__()#

int(self)

__invert__()#

~self

__le__()#

Return self<=value.

__lshift__()#

Return self<<value.

__lt__()#

Return self<value.

__mod__()#

Return self%value.

__mul__()#

Return self*value.

__ne__()#

Return self!=value.

__neg__()#

-self

__new__()#

Create and return a new object. See help(type) for accurate signature.

__or__()#

Return self|value.

__pos__()#

+self

__pow__()#

Return pow(self, value, mod).

__radd__()#

Return value+self.

__rand__()#

Return value&self.

__rdivmod__()#

Return divmod(value, self).

__reduce__()#

Helper for pickle.

__reduce_ex__()#

Helper for pickle.

__repr__()#

Return repr(self).

__rfloordiv__()#

Return value//self.

__rlshift__()#

Return value<<self.

__rmod__()#

Return value%self.

__rmul__()#

Return value*self.

__ror__()#

Return value|self.

__round__()#

Rounding an Integral returns itself.

Rounding with an ndigits argument also returns an integer.

__rpow__()#

Return pow(value, self, mod).

__rrshift__()#

Return value>>self.

__rshift__()#

Return self>>value.

__rsub__()#

Return value-self.

__rtruediv__()#

Return value/self.

__rxor__()#

Return value^self.

classmethod __signature__()#
__sizeof__()#

Returns size in memory, in bytes.

__str__()#

Return str(self).

__sub__()#

Return self-value.

__subclasshook__()#

Abstract classes can override this to customize issubclass().

This is invoked early on by abc.ABCMeta.subclasscheck(). It should return True, False or NotImplemented. If it returns NotImplemented, the normal algorithm is used. Otherwise, it overrides the normal algorithm (and the outcome is cached).

__truediv__()#

Return self/value.

__trunc__()#

Truncating an Integral returns itself.

__xor__()#

Return self^value.

as_integer_ratio()#

Return a pair of integers, whose ratio is equal to the original int.

The ratio is in lowest terms and has a positive denominator.

(10).as_integer_ratio() (10, 1) (-10).as_integer_ratio() (-10, 1) (0).as_integer_ratio() (0, 1)

bit_count()#

Number of ones in the binary representation of the absolute value of self.

Also known as the population count.

bin(13) ‘0b1101’ (13).bit_count() 3

bit_length()#

Number of bits necessary to represent self in binary.

bin(37) ‘0b100101’ (37).bit_length() 6

conjugate()#

Returns self, the complex conjugate of any int.

class denominator#

the denominator of a rational number in lowest terms

class imag#

the imaginary part of a complex number

is_integer()#

Returns True. Exists for duck type compatibility with float.is_integer.

name()#

The name of the Enum member.

class numerator#

the numerator of a rational number in lowest terms

class real#

the real part of a complex number

to_bytes()#

Return an array of bytes representing an integer.

length Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes. Default is length 1. byteorder The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value. Default is to use ‘big’. signed Determines whether two’s complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.

value()#

The value of the Enum member.

class altdss.enums.LengthUnit#

Bases: enum.IntEnum

Length Unit (DSS enumeration)

__abs__()#

abs(self)

__add__()#

Return self+value.

__and__()#

Return self&value.

__bool__()#

True if self else False

__ceil__()#

Ceiling of an Integral returns itself.

__copy__()#
__deepcopy__(memo)#
__delattr__()#

Implement delattr(self, name).

__dir__()#

Default dir() implementation.

__divmod__()#

Return divmod(self, value).

__float__()#

float(self)

__floor__()#

Flooring an Integral returns itself.

__floordiv__()#

Return self//value.

__format__()#

Convert to a string according to format_spec.

__ge__()#

Return self>=value.

__getattribute__()#

Return getattr(self, name).

__getnewargs__()#
__getstate__()#

Helper for pickle.

__gt__()#

Return self>value.

__hash__()#

Return hash(self).

__index__()#

Return self converted to an integer, if self is suitable for use as an index into a list.

__init__()#

Initialize self. See help(type(self)) for accurate signature.

__int__()#

int(self)

__invert__()#

~self

__le__()#

Return self<=value.

__lshift__()#

Return self<<value.

__lt__()#

Return self<value.

__mod__()#

Return self%value.

__mul__()#

Return self*value.

__ne__()#

Return self!=value.

__neg__()#

-self

__new__()#

Create and return a new object. See help(type) for accurate signature.

__or__()#

Return self|value.

__pos__()#

+self

__pow__()#

Return pow(self, value, mod).

__radd__()#

Return value+self.

__rand__()#

Return value&self.

__rdivmod__()#

Return divmod(value, self).

__reduce__()#

Helper for pickle.

__reduce_ex__()#

Helper for pickle.

__repr__()#

Return repr(self).

__rfloordiv__()#

Return value//self.

__rlshift__()#

Return value<<self.

__rmod__()#

Return value%self.

__rmul__()#

Return value*self.

__ror__()#

Return value|self.

__round__()#

Rounding an Integral returns itself.

Rounding with an ndigits argument also returns an integer.

__rpow__()#

Return pow(value, self, mod).

__rrshift__()#

Return value>>self.

__rshift__()#

Return self>>value.

__rsub__()#

Return value-self.

__rtruediv__()#

Return value/self.

__rxor__()#

Return value^self.

classmethod __signature__()#
__sizeof__()#

Returns size in memory, in bytes.

__str__()#

Return str(self).

__sub__()#

Return self-value.

__subclasshook__()#

Abstract classes can override this to customize issubclass().

This is invoked early on by abc.ABCMeta.subclasscheck(). It should return True, False or NotImplemented. If it returns NotImplemented, the normal algorithm is used. Otherwise, it overrides the normal algorithm (and the outcome is cached).

__truediv__()#

Return self/value.

__trunc__()#

Truncating an Integral returns itself.

__xor__()#

Return self^value.

as_integer_ratio()#

Return a pair of integers, whose ratio is equal to the original int.

The ratio is in lowest terms and has a positive denominator.

(10).as_integer_ratio() (10, 1) (-10).as_integer_ratio() (-10, 1) (0).as_integer_ratio() (0, 1)

bit_count()#

Number of ones in the binary representation of the absolute value of self.

Also known as the population count.

bin(13) ‘0b1101’ (13).bit_count() 3

bit_length()#

Number of bits necessary to represent self in binary.

bin(37) ‘0b100101’ (37).bit_length() 6

cm#

7

conjugate()#

Returns self, the complex conjugate of any int.

class denominator#

the denominator of a rational number in lowest terms

ft#

5

class imag#

the imaginary part of a complex number

inch#

6

is_integer()#

Returns True. Exists for duck type compatibility with float.is_integer.

kft#

2

km#

3

m#

4

meter#

4

mi#

1

miles#

1

mm#

8

name()#

The name of the Enum member.

none#

0

class numerator#

the numerator of a rational number in lowest terms

class real#

the real part of a complex number

to_bytes()#

Return an array of bytes representing an integer.

length Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes. Default is length 1. byteorder The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value. Default is to use ‘big’. signed Determines whether two’s complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.

value()#

The value of the Enum member.

class altdss.enums.LineType#

Bases: enum.IntEnum

Line Type (DSS enumeration)

__abs__()#

abs(self)

__add__()#

Return self+value.

__and__()#

Return self&value.

__bool__()#

True if self else False

__ceil__()#

Ceiling of an Integral returns itself.

__copy__()#
__deepcopy__(memo)#
__delattr__()#

Implement delattr(self, name).

__dir__()#

Default dir() implementation.

__divmod__()#

Return divmod(self, value).

__float__()#

float(self)

__floor__()#

Flooring an Integral returns itself.

__floordiv__()#

Return self//value.

__format__()#

Convert to a string according to format_spec.

__ge__()#

Return self>=value.

__getattribute__()#

Return getattr(self, name).

__getnewargs__()#
__getstate__()#

Helper for pickle.

__gt__()#

Return self>value.

__hash__()#

Return hash(self).

__index__()#

Return self converted to an integer, if self is suitable for use as an index into a list.

__init__()#

Initialize self. See help(type(self)) for accurate signature.

__int__()#

int(self)

__invert__()#

~self

__le__()#

Return self<=value.

__lshift__()#

Return self<<value.

__lt__()#

Return self<value.

__mod__()#

Return self%value.

__mul__()#

Return self*value.

__ne__()#

Return self!=value.

__neg__()#

-self

__new__()#

Create and return a new object. See help(type) for accurate signature.

__or__()#

Return self|value.

__pos__()#

+self

__pow__()#

Return pow(self, value, mod).

__radd__()#

Return value+self.

__rand__()#

Return value&self.

__rdivmod__()#

Return divmod(value, self).

__reduce__()#

Helper for pickle.

__reduce_ex__()#

Helper for pickle.

__repr__()#

Return repr(self).

__rfloordiv__()#

Return value//self.

__rlshift__()#

Return value<<self.

__rmod__()#

Return value%self.

__rmul__()#

Return value*self.

__ror__()#

Return value|self.

__round__()#

Rounding an Integral returns itself.

Rounding with an ndigits argument also returns an integer.

__rpow__()#

Return pow(value, self, mod).

__rrshift__()#

Return value>>self.

__rshift__()#

Return self>>value.

__rsub__()#

Return value-self.

__rtruediv__()#

Return value/self.

__rxor__()#

Return value^self.

classmethod __signature__()#
__sizeof__()#

Returns size in memory, in bytes.

__str__()#

Return str(self).

__sub__()#

Return self-value.

__subclasshook__()#

Abstract classes can override this to customize issubclass().

This is invoked early on by abc.ABCMeta.subclasscheck(). It should return True, False or NotImplemented. If it returns NotImplemented, the normal algorithm is used. Otherwise, it overrides the normal algorithm (and the outcome is cached).

__truediv__()#

Return self/value.

__trunc__()#

Truncating an Integral returns itself.

__xor__()#

Return self^value.

as_integer_ratio()#

Return a pair of integers, whose ratio is equal to the original int.

The ratio is in lowest terms and has a positive denominator.

(10).as_integer_ratio() (10, 1) (-10).as_integer_ratio() (-10, 1) (0).as_integer_ratio() (0, 1)

bit_count()#

Number of ones in the binary representation of the absolute value of self.

Also known as the population count.

bin(13) ‘0b1101’ (13).bit_count() 3

bit_length()#

Number of bits necessary to represent self in binary.

bin(37) ‘0b100101’ (37).bit_length() 6

busbar#

12

conjugate()#

Returns self, the complex conjugate of any int.

class denominator#

the denominator of a rational number in lowest terms

class imag#

the imaginary part of a complex number

is_integer()#

Returns True. Exists for duck type compatibility with float.is_integer.

name()#

The name of the Enum member.

class numerator#

the numerator of a rational number in lowest terms

oh#

1

class real#

the real part of a complex number

swt_brk#

10

swt_disc#

9

swt_elbow#

11

swt_fuse#

6

swt_ldbrk#

5

swt_rec#

8

swt_sect#

7

to_bytes()#

Return an array of bytes representing an integer.

length Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes. Default is length 1. byteorder The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value. Default is to use ‘big’. signed Determines whether two’s complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.

ug#

2

ug_cn#

4

ug_ts#

3

value()#

The value of the Enum member.

class altdss.enums.LoadModel#

Bases: enum.IntEnum

Load: Model (DSS enumeration)

CVR#

4

ConstantI#

5

ConstantPQ#

1

ConstantP_fixedQ#

6

ConstantP_fixedX#

7

ConstantZ#

2

Motor#

3

ZIPV#

8

__abs__()#

abs(self)

__add__()#

Return self+value.

__and__()#

Return self&value.

__bool__()#

True if self else False

__ceil__()#

Ceiling of an Integral returns itself.

__copy__()#
__deepcopy__(memo)#
__delattr__()#

Implement delattr(self, name).

__dir__()#

Default dir() implementation.

__divmod__()#

Return divmod(self, value).

__float__()#

float(self)

__floor__()#

Flooring an Integral returns itself.

__floordiv__()#

Return self//value.

__format__()#

Convert to a string according to format_spec.

__ge__()#

Return self>=value.

__getattribute__()#

Return getattr(self, name).

__getnewargs__()#
__getstate__()#

Helper for pickle.

__gt__()#

Return self>value.

__hash__()#

Return hash(self).

__index__()#

Return self converted to an integer, if self is suitable for use as an index into a list.

__init__()#

Initialize self. See help(type(self)) for accurate signature.

__int__()#

int(self)

__invert__()#

~self

__le__()#

Return self<=value.

__lshift__()#

Return self<<value.

__lt__()#

Return self<value.

__mod__()#

Return self%value.

__mul__()#

Return self*value.

__ne__()#

Return self!=value.

__neg__()#

-self

__new__()#

Create and return a new object. See help(type) for accurate signature.

__or__()#

Return self|value.

__pos__()#

+self

__pow__()#

Return pow(self, value, mod).

__radd__()#

Return value+self.

__rand__()#

Return value&self.

__rdivmod__()#

Return divmod(value, self).

__reduce__()#

Helper for pickle.

__reduce_ex__()#

Helper for pickle.

__repr__()#

Return repr(self).

__rfloordiv__()#

Return value//self.

__rlshift__()#

Return value<<self.

__rmod__()#

Return value%self.

__rmul__()#

Return value*self.

__ror__()#

Return value|self.

__round__()#

Rounding an Integral returns itself.

Rounding with an ndigits argument also returns an integer.

__rpow__()#

Return pow(value, self, mod).

__rrshift__()#

Return value>>self.

__rshift__()#

Return self>>value.

__rsub__()#

Return value-self.

__rtruediv__()#

Return value/self.

__rxor__()#

Return value^self.

classmethod __signature__()#
__sizeof__()#

Returns size in memory, in bytes.

__str__()#

Return str(self).

__sub__()#

Return self-value.

__subclasshook__()#

Abstract classes can override this to customize issubclass().

This is invoked early on by abc.ABCMeta.subclasscheck(). It should return True, False or NotImplemented. If it returns NotImplemented, the normal algorithm is used. Otherwise, it overrides the normal algorithm (and the outcome is cached).

__truediv__()#

Return self/value.

__trunc__()#

Truncating an Integral returns itself.

__xor__()#

Return self^value.

as_integer_ratio()#

Return a pair of integers, whose ratio is equal to the original int.

The ratio is in lowest terms and has a positive denominator.

(10).as_integer_ratio() (10, 1) (-10).as_integer_ratio() (-10, 1) (0).as_integer_ratio() (0, 1)

bit_count()#

Number of ones in the binary representation of the absolute value of self.

Also known as the population count.

bin(13) ‘0b1101’ (13).bit_count() 3

bit_length()#

Number of bits necessary to represent self in binary.

bin(37) ‘0b100101’ (37).bit_length() 6

conjugate()#

Returns self, the complex conjugate of any int.

class denominator#

the denominator of a rational number in lowest terms

class imag#

the imaginary part of a complex number

is_integer()#

Returns True. Exists for duck type compatibility with float.is_integer.

name()#

The name of the Enum member.

class numerator#

the numerator of a rational number in lowest terms

class real#

the real part of a complex number

to_bytes()#

Return an array of bytes representing an integer.

length Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes. Default is length 1. byteorder The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value. Default is to use ‘big’. signed Determines whether two’s complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.

value()#

The value of the Enum member.

class altdss.enums.LoadShapeAction#

Bases: enum.IntEnum

LoadShape: Action (DSS enumeration)

DblSave#

1

Normalize#

0

SngSave#

2

__abs__()#

abs(self)

__add__()#

Return self+value.

__and__()#

Return self&value.

__bool__()#

True if self else False

__ceil__()#

Ceiling of an Integral returns itself.

__copy__()#
__deepcopy__(memo)#
__delattr__()#

Implement delattr(self, name).

__dir__()#

Default dir() implementation.

__divmod__()#

Return divmod(self, value).

__float__()#

float(self)

__floor__()#

Flooring an Integral returns itself.

__floordiv__()#

Return self//value.

__format__()#

Convert to a string according to format_spec.

__ge__()#

Return self>=value.

__getattribute__()#

Return getattr(self, name).

__getnewargs__()#
__getstate__()#

Helper for pickle.

__gt__()#

Return self>value.

__hash__()#

Return hash(self).

__index__()#

Return self converted to an integer, if self is suitable for use as an index into a list.

__init__()#

Initialize self. See help(type(self)) for accurate signature.

__int__()#

int(self)

__invert__()#

~self

__le__()#

Return self<=value.

__lshift__()#

Return self<<value.

__lt__()#

Return self<value.

__mod__()#

Return self%value.

__mul__()#

Return self*value.

__ne__()#

Return self!=value.

__neg__()#

-self

__new__()#

Create and return a new object. See help(type) for accurate signature.

__or__()#

Return self|value.

__pos__()#

+self

__pow__()#

Return pow(self, value, mod).

__radd__()#

Return value+self.

__rand__()#

Return value&self.

__rdivmod__()#

Return divmod(value, self).

__reduce__()#

Helper for pickle.

__reduce_ex__()#

Helper for pickle.

__repr__()#

Return repr(self).

__rfloordiv__()#

Return value//self.

__rlshift__()#

Return value<<self.

__rmod__()#

Return value%self.

__rmul__()#

Return value*self.

__ror__()#

Return value|self.

__round__()#

Rounding an Integral returns itself.

Rounding with an ndigits argument also returns an integer.

__rpow__()#

Return pow(value, self, mod).

__rrshift__()#

Return value>>self.

__rshift__()#

Return self>>value.

__rsub__()#

Return value-self.

__rtruediv__()#

Return value/self.

__rxor__()#

Return value^self.

classmethod __signature__()#
__sizeof__()#

Returns size in memory, in bytes.

__str__()#

Return str(self).

__sub__()#

Return self-value.

__subclasshook__()#

Abstract classes can override this to customize issubclass().

This is invoked early on by abc.ABCMeta.subclasscheck(). It should return True, False or NotImplemented. If it returns NotImplemented, the normal algorithm is used. Otherwise, it overrides the normal algorithm (and the outcome is cached).

__truediv__()#

Return self/value.

__trunc__()#

Truncating an Integral returns itself.

__xor__()#

Return self^value.

as_integer_ratio()#

Return a pair of integers, whose ratio is equal to the original int.

The ratio is in lowest terms and has a positive denominator.

(10).as_integer_ratio() (10, 1) (-10).as_integer_ratio() (-10, 1) (0).as_integer_ratio() (0, 1)

bit_count()#

Number of ones in the binary representation of the absolute value of self.

Also known as the population count.

bin(13) ‘0b1101’ (13).bit_count() 3

bit_length()#

Number of bits necessary to represent self in binary.

bin(37) ‘0b100101’ (37).bit_length() 6

conjugate()#

Returns self, the complex conjugate of any int.

class denominator#

the denominator of a rational number in lowest terms

class imag#

the imaginary part of a complex number

is_integer()#

Returns True. Exists for duck type compatibility with float.is_integer.

name()#

The name of the Enum member.

class numerator#

the numerator of a rational number in lowest terms

class real#

the real part of a complex number

to_bytes()#

Return an array of bytes representing an integer.

length Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes. Default is length 1. byteorder The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value. Default is to use ‘big’. signed Determines whether two’s complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.

value()#

The value of the Enum member.

class altdss.enums.LoadShapeClass#

Bases: enum.IntEnum

Load Shape Class (DSS enumeration)

Daily#

0

Duty#

2

Yearly#

1

__abs__()#

abs(self)

__add__()#

Return self+value.

__and__()#

Return self&value.

__bool__()#

True if self else False

__ceil__()#

Ceiling of an Integral returns itself.

__copy__()#
__deepcopy__(memo)#
__delattr__()#

Implement delattr(self, name).

__dir__()#

Default dir() implementation.

__divmod__()#

Return divmod(self, value).

__float__()#

float(self)

__floor__()#

Flooring an Integral returns itself.

__floordiv__()#

Return self//value.

__format__()#

Convert to a string according to format_spec.

__ge__()#

Return self>=value.

__getattribute__()#

Return getattr(self, name).

__getnewargs__()#
__getstate__()#

Helper for pickle.

__gt__()#

Return self>value.

__hash__()#

Return hash(self).

__index__()#

Return self converted to an integer, if self is suitable for use as an index into a list.

__init__()#

Initialize self. See help(type(self)) for accurate signature.

__int__()#

int(self)

__invert__()#

~self

__le__()#

Return self<=value.

__lshift__()#

Return self<<value.

__lt__()#

Return self<value.

__mod__()#

Return self%value.

__mul__()#

Return self*value.

__ne__()#

Return self!=value.

__neg__()#

-self

__new__()#

Create and return a new object. See help(type) for accurate signature.

__or__()#

Return self|value.

__pos__()#

+self

__pow__()#

Return pow(self, value, mod).

__radd__()#

Return value+self.

__rand__()#

Return value&self.

__rdivmod__()#

Return divmod(value, self).

__reduce__()#

Helper for pickle.

__reduce_ex__()#

Helper for pickle.

__repr__()#

Return repr(self).

__rfloordiv__()#

Return value//self.

__rlshift__()#

Return value<<self.

__rmod__()#

Return value%self.

__rmul__()#

Return value*self.

__ror__()#

Return value|self.

__round__()#

Rounding an Integral returns itself.

Rounding with an ndigits argument also returns an integer.

__rpow__()#

Return pow(value, self, mod).

__rrshift__()#

Return value>>self.

__rshift__()#

Return self>>value.

__rsub__()#

Return value-self.

__rtruediv__()#

Return value/self.

__rxor__()#

Return value^self.

classmethod __signature__()#
__sizeof__()#

Returns size in memory, in bytes.

__str__()#

Return str(self).

__sub__()#

Return self-value.

__subclasshook__()#

Abstract classes can override this to customize issubclass().

This is invoked early on by abc.ABCMeta.subclasscheck(). It should return True, False or NotImplemented. If it returns NotImplemented, the normal algorithm is used. Otherwise, it overrides the normal algorithm (and the outcome is cached).

__truediv__()#

Return self/value.

__trunc__()#

Truncating an Integral returns itself.

__xor__()#

Return self^value.

as_integer_ratio()#

Return a pair of integers, whose ratio is equal to the original int.

The ratio is in lowest terms and has a positive denominator.

(10).as_integer_ratio() (10, 1) (-10).as_integer_ratio() (-10, 1) (0).as_integer_ratio() (0, 1)

bit_count()#

Number of ones in the binary representation of the absolute value of self.

Also known as the population count.

bin(13) ‘0b1101’ (13).bit_count() 3

bit_length()#

Number of bits necessary to represent self in binary.

bin(37) ‘0b100101’ (37).bit_length() 6

conjugate()#

Returns self, the complex conjugate of any int.

class denominator#

the denominator of a rational number in lowest terms

class imag#

the imaginary part of a complex number

is_integer()#

Returns True. Exists for duck type compatibility with float.is_integer.

name()#

The name of the Enum member.

none#

None

class numerator#

the numerator of a rational number in lowest terms

class real#

the real part of a complex number

to_bytes()#

Return an array of bytes representing an integer.

length Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes. Default is length 1. byteorder The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value. Default is to use ‘big’. signed Determines whether two’s complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.

value()#

The value of the Enum member.

class altdss.enums.LoadShapeInterpolation#

Bases: enum.IntEnum

LoadShape: Interpolation (DSS enumeration)

Avg#

0

Edge#

1

__abs__()#

abs(self)

__add__()#

Return self+value.

__and__()#

Return self&value.

__bool__()#

True if self else False

__ceil__()#

Ceiling of an Integral returns itself.

__copy__()#
__deepcopy__(memo)#
__delattr__()#

Implement delattr(self, name).

__dir__()#

Default dir() implementation.

__divmod__()#

Return divmod(self, value).

__float__()#

float(self)

__floor__()#

Flooring an Integral returns itself.

__floordiv__()#

Return self//value.

__format__()#

Convert to a string according to format_spec.

__ge__()#

Return self>=value.

__getattribute__()#

Return getattr(self, name).

__getnewargs__()#
__getstate__()#

Helper for pickle.

__gt__()#

Return self>value.

__hash__()#

Return hash(self).

__index__()#

Return self converted to an integer, if self is suitable for use as an index into a list.

__init__()#

Initialize self. See help(type(self)) for accurate signature.

__int__()#

int(self)

__invert__()#

~self

__le__()#

Return self<=value.

__lshift__()#

Return self<<value.

__lt__()#

Return self<value.

__mod__()#

Return self%value.

__mul__()#

Return self*value.

__ne__()#

Return self!=value.

__neg__()#

-self

__new__()#

Create and return a new object. See help(type) for accurate signature.

__or__()#

Return self|value.

__pos__()#

+self

__pow__()#

Return pow(self, value, mod).

__radd__()#

Return value+self.

__rand__()#

Return value&self.

__rdivmod__()#

Return divmod(value, self).

__reduce__()#

Helper for pickle.

__reduce_ex__()#

Helper for pickle.

__repr__()#

Return repr(self).

__rfloordiv__()#

Return value//self.

__rlshift__()#

Return value<<self.

__rmod__()#

Return value%self.

__rmul__()#

Return value*self.

__ror__()#

Return value|self.

__round__()#

Rounding an Integral returns itself.

Rounding with an ndigits argument also returns an integer.

__rpow__()#

Return pow(value, self, mod).

__rrshift__()#

Return value>>self.

__rshift__()#

Return self>>value.

__rsub__()#

Return value-self.

__rtruediv__()#

Return value/self.

__rxor__()#

Return value^self.

classmethod __signature__()#
__sizeof__()#

Returns size in memory, in bytes.

__str__()#

Return str(self).

__sub__()#

Return self-value.

__subclasshook__()#

Abstract classes can override this to customize issubclass().

This is invoked early on by abc.ABCMeta.subclasscheck(). It should return True, False or NotImplemented. If it returns NotImplemented, the normal algorithm is used. Otherwise, it overrides the normal algorithm (and the outcome is cached).

__truediv__()#

Return self/value.

__trunc__()#

Truncating an Integral returns itself.

__xor__()#

Return self^value.

as_integer_ratio()#

Return a pair of integers, whose ratio is equal to the original int.

The ratio is in lowest terms and has a positive denominator.

(10).as_integer_ratio() (10, 1) (-10).as_integer_ratio() (-10, 1) (0).as_integer_ratio() (0, 1)

bit_count()#

Number of ones in the binary representation of the absolute value of self.

Also known as the population count.

bin(13) ‘0b1101’ (13).bit_count() 3

bit_length()#

Number of bits necessary to represent self in binary.

bin(37) ‘0b100101’ (37).bit_length() 6

conjugate()#

Returns self, the complex conjugate of any int.

class denominator#

the denominator of a rational number in lowest terms

class imag#

the imaginary part of a complex number

is_integer()#

Returns True. Exists for duck type compatibility with float.is_integer.

name()#

The name of the Enum member.

class numerator#

the numerator of a rational number in lowest terms

class real#

the real part of a complex number

to_bytes()#

Return an array of bytes representing an integer.

length Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes. Default is length 1. byteorder The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value. Default is to use ‘big’. signed Determines whether two’s complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.

value()#

The value of the Enum member.

class altdss.enums.LoadSolutionModel#

Bases: enum.IntEnum

Load Solution Model (DSS enumeration)

Admittance#

2

PowerFlow#

1

__abs__()#

abs(self)

__add__()#

Return self+value.

__and__()#

Return self&value.

__bool__()#

True if self else False

__ceil__()#

Ceiling of an Integral returns itself.

__copy__()#
__deepcopy__(memo)#
__delattr__()#

Implement delattr(self, name).

__dir__()#

Default dir() implementation.

__divmod__()#

Return divmod(self, value).

__float__()#

float(self)

__floor__()#

Flooring an Integral returns itself.

__floordiv__()#

Return self//value.

__format__()#

Convert to a string according to format_spec.

__ge__()#

Return self>=value.

__getattribute__()#

Return getattr(self, name).

__getnewargs__()#
__getstate__()#

Helper for pickle.

__gt__()#

Return self>value.

__hash__()#

Return hash(self).

__index__()#

Return self converted to an integer, if self is suitable for use as an index into a list.

__init__()#

Initialize self. See help(type(self)) for accurate signature.

__int__()#

int(self)

__invert__()#

~self

__le__()#

Return self<=value.

__lshift__()#

Return self<<value.

__lt__()#

Return self<value.

__mod__()#

Return self%value.

__mul__()#

Return self*value.

__ne__()#

Return self!=value.

__neg__()#

-self

__new__()#

Create and return a new object. See help(type) for accurate signature.

__or__()#

Return self|value.

__pos__()#

+self

__pow__()#

Return pow(self, value, mod).

__radd__()#

Return value+self.

__rand__()#

Return value&self.

__rdivmod__()#

Return divmod(value, self).

__reduce__()#

Helper for pickle.

__reduce_ex__()#

Helper for pickle.

__repr__()#

Return repr(self).

__rfloordiv__()#

Return value//self.

__rlshift__()#

Return value<<self.

__rmod__()#

Return value%self.

__rmul__()#

Return value*self.

__ror__()#

Return value|self.

__round__()#

Rounding an Integral returns itself.

Rounding with an ndigits argument also returns an integer.

__rpow__()#

Return pow(value, self, mod).

__rrshift__()#

Return value>>self.

__rshift__()#

Return self>>value.

__rsub__()#

Return value-self.

__rtruediv__()#

Return value/self.

__rxor__()#

Return value^self.

classmethod __signature__()#
__sizeof__()#

Returns size in memory, in bytes.

__str__()#

Return str(self).

__sub__()#

Return self-value.

__subclasshook__()#

Abstract classes can override this to customize issubclass().

This is invoked early on by abc.ABCMeta.subclasscheck(). It should return True, False or NotImplemented. If it returns NotImplemented, the normal algorithm is used. Otherwise, it overrides the normal algorithm (and the outcome is cached).

__truediv__()#

Return self/value.

__trunc__()#

Truncating an Integral returns itself.

__xor__()#

Return self^value.

as_integer_ratio()#

Return a pair of integers, whose ratio is equal to the original int.

The ratio is in lowest terms and has a positive denominator.

(10).as_integer_ratio() (10, 1) (-10).as_integer_ratio() (-10, 1) (0).as_integer_ratio() (0, 1)

bit_count()#

Number of ones in the binary representation of the absolute value of self.

Also known as the population count.

bin(13) ‘0b1101’ (13).bit_count() 3

bit_length()#

Number of bits necessary to represent self in binary.

bin(37) ‘0b100101’ (37).bit_length() 6

conjugate()#

Returns self, the complex conjugate of any int.

class denominator#

the denominator of a rational number in lowest terms

class imag#

the imaginary part of a complex number

is_integer()#

Returns True. Exists for duck type compatibility with float.is_integer.

name()#

The name of the Enum member.

class numerator#

the numerator of a rational number in lowest terms

class real#

the real part of a complex number

to_bytes()#

Return an array of bytes representing an integer.

length Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes. Default is length 1. byteorder The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value. Default is to use ‘big’. signed Determines whether two’s complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.

value()#

The value of the Enum member.

class altdss.enums.LoadStatus#

Bases: enum.IntEnum

Load: Status (DSS enumeration)

Exempt#

2

Fixed#

1

Variable#

0

__abs__()#

abs(self)

__add__()#

Return self+value.

__and__()#

Return self&value.

__bool__()#

True if self else False

__ceil__()#

Ceiling of an Integral returns itself.

__copy__()#
__deepcopy__(memo)#
__delattr__()#

Implement delattr(self, name).

__dir__()#

Default dir() implementation.

__divmod__()#

Return divmod(self, value).

__float__()#

float(self)

__floor__()#

Flooring an Integral returns itself.

__floordiv__()#

Return self//value.

__format__()#

Convert to a string according to format_spec.

__ge__()#

Return self>=value.

__getattribute__()#

Return getattr(self, name).

__getnewargs__()#
__getstate__()#

Helper for pickle.

__gt__()#

Return self>value.

__hash__()#

Return hash(self).

__index__()#

Return self converted to an integer, if self is suitable for use as an index into a list.

__init__()#

Initialize self. See help(type(self)) for accurate signature.

__int__()#

int(self)

__invert__()#

~self

__le__()#

Return self<=value.

__lshift__()#

Return self<<value.

__lt__()#

Return self<value.

__mod__()#

Return self%value.

__mul__()#

Return self*value.

__ne__()#

Return self!=value.

__neg__()#

-self

__new__()#

Create and return a new object. See help(type) for accurate signature.

__or__()#

Return self|value.

__pos__()#

+self

__pow__()#

Return pow(self, value, mod).

__radd__()#

Return value+self.

__rand__()#

Return value&self.

__rdivmod__()#

Return divmod(value, self).

__reduce__()#

Helper for pickle.

__reduce_ex__()#

Helper for pickle.

__repr__()#

Return repr(self).

__rfloordiv__()#

Return value//self.

__rlshift__()#

Return value<<self.

__rmod__()#

Return value%self.

__rmul__()#

Return value*self.

__ror__()#

Return value|self.

__round__()#

Rounding an Integral returns itself.

Rounding with an ndigits argument also returns an integer.

__rpow__()#

Return pow(value, self, mod).

__rrshift__()#

Return value>>self.

__rshift__()#

Return self>>value.

__rsub__()#

Return value-self.

__rtruediv__()#

Return value/self.

__rxor__()#

Return value^self.

classmethod __signature__()#
__sizeof__()#

Returns size in memory, in bytes.

__str__()#

Return str(self).

__sub__()#

Return self-value.

__subclasshook__()#

Abstract classes can override this to customize issubclass().

This is invoked early on by abc.ABCMeta.subclasscheck(). It should return True, False or NotImplemented. If it returns NotImplemented, the normal algorithm is used. Otherwise, it overrides the normal algorithm (and the outcome is cached).

__truediv__()#

Return self/value.

__trunc__()#

Truncating an Integral returns itself.

__xor__()#

Return self^value.

as_integer_ratio()#

Return a pair of integers, whose ratio is equal to the original int.

The ratio is in lowest terms and has a positive denominator.

(10).as_integer_ratio() (10, 1) (-10).as_integer_ratio() (-10, 1) (0).as_integer_ratio() (0, 1)

bit_count()#

Number of ones in the binary representation of the absolute value of self.

Also known as the population count.

bin(13) ‘0b1101’ (13).bit_count() 3

bit_length()#

Number of bits necessary to represent self in binary.

bin(37) ‘0b100101’ (37).bit_length() 6

conjugate()#

Returns self, the complex conjugate of any int.

class denominator#

the denominator of a rational number in lowest terms

class imag#

the imaginary part of a complex number

is_integer()#

Returns True. Exists for duck type compatibility with float.is_integer.

name()#

The name of the Enum member.

class numerator#

the numerator of a rational number in lowest terms

class real#

the real part of a complex number

to_bytes()#

Return an array of bytes representing an integer.

length Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes. Default is length 1. byteorder The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value. Default is to use ‘big’. signed Determines whether two’s complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.

value()#

The value of the Enum member.

class altdss.enums.MonitorAction#

Bases: enum.IntEnum

Monitor: Action (DSS enumeration)

Clear#

0

Process#

3

Reset#

0

Save#

1

TakeSample#

2

__abs__()#

abs(self)

__add__()#

Return self+value.

__and__()#

Return self&value.

__bool__()#

True if self else False

__ceil__()#

Ceiling of an Integral returns itself.

__copy__()#
__deepcopy__(memo)#
__delattr__()#

Implement delattr(self, name).

__dir__()#

Default dir() implementation.

__divmod__()#

Return divmod(self, value).

__float__()#

float(self)

__floor__()#

Flooring an Integral returns itself.

__floordiv__()#

Return self//value.

__format__()#

Convert to a string according to format_spec.

__ge__()#

Return self>=value.

__getattribute__()#

Return getattr(self, name).

__getnewargs__()#
__getstate__()#

Helper for pickle.

__gt__()#

Return self>value.

__hash__()#

Return hash(self).

__index__()#

Return self converted to an integer, if self is suitable for use as an index into a list.

__init__()#

Initialize self. See help(type(self)) for accurate signature.

__int__()#

int(self)

__invert__()#

~self

__le__()#

Return self<=value.

__lshift__()#

Return self<<value.

__lt__()#

Return self<value.

__mod__()#

Return self%value.

__mul__()#

Return self*value.

__ne__()#

Return self!=value.

__neg__()#

-self

__new__()#

Create and return a new object. See help(type) for accurate signature.

__or__()#

Return self|value.

__pos__()#

+self

__pow__()#

Return pow(self, value, mod).

__radd__()#

Return value+self.

__rand__()#

Return value&self.

__rdivmod__()#

Return divmod(value, self).

__reduce__()#

Helper for pickle.

__reduce_ex__()#

Helper for pickle.

__repr__()#

Return repr(self).

__rfloordiv__()#

Return value//self.

__rlshift__()#

Return value<<self.

__rmod__()#

Return value%self.

__rmul__()#

Return value*self.

__ror__()#

Return value|self.

__round__()#

Rounding an Integral returns itself.

Rounding with an ndigits argument also returns an integer.

__rpow__()#

Return pow(value, self, mod).

__rrshift__()#

Return value>>self.

__rshift__()#

Return self>>value.

__rsub__()#

Return value-self.

__rtruediv__()#

Return value/self.

__rxor__()#

Return value^self.

classmethod __signature__()#
__sizeof__()#

Returns size in memory, in bytes.

__str__()#

Return str(self).

__sub__()#

Return self-value.

__subclasshook__()#

Abstract classes can override this to customize issubclass().

This is invoked early on by abc.ABCMeta.subclasscheck(). It should return True, False or NotImplemented. If it returns NotImplemented, the normal algorithm is used. Otherwise, it overrides the normal algorithm (and the outcome is cached).

__truediv__()#

Return self/value.

__trunc__()#

Truncating an Integral returns itself.

__xor__()#

Return self^value.

as_integer_ratio()#

Return a pair of integers, whose ratio is equal to the original int.

The ratio is in lowest terms and has a positive denominator.

(10).as_integer_ratio() (10, 1) (-10).as_integer_ratio() (-10, 1) (0).as_integer_ratio() (0, 1)

bit_count()#

Number of ones in the binary representation of the absolute value of self.

Also known as the population count.

bin(13) ‘0b1101’ (13).bit_count() 3

bit_length()#

Number of bits necessary to represent self in binary.

bin(37) ‘0b100101’ (37).bit_length() 6

conjugate()#

Returns self, the complex conjugate of any int.

class denominator#

the denominator of a rational number in lowest terms

class imag#

the imaginary part of a complex number

is_integer()#

Returns True. Exists for duck type compatibility with float.is_integer.

name()#

The name of the Enum member.

class numerator#

the numerator of a rational number in lowest terms

class real#

the real part of a complex number

to_bytes()#

Return an array of bytes representing an integer.

length Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes. Default is length 1. byteorder The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value. Default is to use ‘big’. signed Determines whether two’s complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.

value()#

The value of the Enum member.

class altdss.enums.MonitoredPhase#

Bases: enum.IntEnum

Monitored Phase (DSS enumeration)

__abs__()#

abs(self)

__add__()#

Return self+value.

__and__()#

Return self&value.

__bool__()#

True if self else False

__ceil__()#

Ceiling of an Integral returns itself.

__copy__()#
__deepcopy__(memo)#
__delattr__()#

Implement delattr(self, name).

__dir__()#

Default dir() implementation.

__divmod__()#

Return divmod(self, value).

__float__()#

float(self)

__floor__()#

Flooring an Integral returns itself.

__floordiv__()#

Return self//value.

__format__()#

Convert to a string according to format_spec.

__ge__()#

Return self>=value.

__getattribute__()#

Return getattr(self, name).

__getnewargs__()#
__getstate__()#

Helper for pickle.

__gt__()#

Return self>value.

__hash__()#

Return hash(self).

__index__()#

Return self converted to an integer, if self is suitable for use as an index into a list.

__init__()#

Initialize self. See help(type(self)) for accurate signature.

__int__()#

int(self)

__invert__()#

~self

__le__()#

Return self<=value.

__lshift__()#

Return self<<value.

__lt__()#

Return self<value.

__mod__()#

Return self%value.

__mul__()#

Return self*value.

__ne__()#

Return self!=value.

__neg__()#

-self

__new__()#

Create and return a new object. See help(type) for accurate signature.

__or__()#

Return self|value.

__pos__()#

+self

__pow__()#

Return pow(self, value, mod).

__radd__()#

Return value+self.

__rand__()#

Return value&self.

__rdivmod__()#

Return divmod(value, self).

__reduce__()#

Helper for pickle.

__reduce_ex__()#

Helper for pickle.

__repr__()#

Return repr(self).

__rfloordiv__()#

Return value//self.

__rlshift__()#

Return value<<self.

__rmod__()#

Return value%self.

__rmul__()#

Return value*self.

__ror__()#

Return value|self.

__round__()#

Rounding an Integral returns itself.

Rounding with an ndigits argument also returns an integer.

__rpow__()#

Return pow(value, self, mod).

__rrshift__()#

Return value>>self.

__rshift__()#

Return self>>value.

__rsub__()#

Return value-self.

__rtruediv__()#

Return value/self.

__rxor__()#

Return value^self.

classmethod __signature__()#
__sizeof__()#

Returns size in memory, in bytes.

__str__()#

Return str(self).

__sub__()#

Return self-value.

__subclasshook__()#

Abstract classes can override this to customize issubclass().

This is invoked early on by abc.ABCMeta.subclasscheck(). It should return True, False or NotImplemented. If it returns NotImplemented, the normal algorithm is used. Otherwise, it overrides the normal algorithm (and the outcome is cached).

__truediv__()#

Return self/value.

__trunc__()#

Truncating an Integral returns itself.

__xor__()#

Return self^value.

as_integer_ratio()#

Return a pair of integers, whose ratio is equal to the original int.

The ratio is in lowest terms and has a positive denominator.

(10).as_integer_ratio() (10, 1) (-10).as_integer_ratio() (-10, 1) (0).as_integer_ratio() (0, 1)

avg#

None

bit_count()#

Number of ones in the binary representation of the absolute value of self.

Also known as the population count.

bin(13) ‘0b1101’ (13).bit_count() 3

bit_length()#

Number of bits necessary to represent self in binary.

bin(37) ‘0b100101’ (37).bit_length() 6

conjugate()#

Returns self, the complex conjugate of any int.

class denominator#

the denominator of a rational number in lowest terms

class imag#

the imaginary part of a complex number

is_integer()#

Returns True. Exists for duck type compatibility with float.is_integer.

max#

None

min#

None

name()#

The name of the Enum member.

class numerator#

the numerator of a rational number in lowest terms

class real#

the real part of a complex number

to_bytes()#

Return an array of bytes representing an integer.

length Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes. Default is length 1. byteorder The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value. Default is to use ‘big’. signed Determines whether two’s complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.

value()#

The value of the Enum member.

class altdss.enums.PVSystemModel#

Bases: enum.IntEnum

PVSystem: Model (DSS enumeration)

ConstantP_PF#

1

ConstantY#

2

Usermodel#

3

__abs__()#

abs(self)

__add__()#

Return self+value.

__and__()#

Return self&value.

__bool__()#

True if self else False

__ceil__()#

Ceiling of an Integral returns itself.

__copy__()#
__deepcopy__(memo)#
__delattr__()#

Implement delattr(self, name).

__dir__()#

Default dir() implementation.

__divmod__()#

Return divmod(self, value).

__float__()#

float(self)

__floor__()#

Flooring an Integral returns itself.

__floordiv__()#

Return self//value.

__format__()#

Convert to a string according to format_spec.

__ge__()#

Return self>=value.

__getattribute__()#

Return getattr(self, name).

__getnewargs__()#
__getstate__()#

Helper for pickle.

__gt__()#

Return self>value.

__hash__()#

Return hash(self).

__index__()#

Return self converted to an integer, if self is suitable for use as an index into a list.

__init__()#

Initialize self. See help(type(self)) for accurate signature.

__int__()#

int(self)

__invert__()#

~self

__le__()#

Return self<=value.

__lshift__()#

Return self<<value.

__lt__()#

Return self<value.

__mod__()#

Return self%value.

__mul__()#

Return self*value.

__ne__()#

Return self!=value.

__neg__()#

-self

__new__()#

Create and return a new object. See help(type) for accurate signature.

__or__()#

Return self|value.

__pos__()#

+self

__pow__()#

Return pow(self, value, mod).

__radd__()#

Return value+self.

__rand__()#

Return value&self.

__rdivmod__()#

Return divmod(value, self).

__reduce__()#

Helper for pickle.

__reduce_ex__()#

Helper for pickle.

__repr__()#

Return repr(self).

__rfloordiv__()#

Return value//self.

__rlshift__()#

Return value<<self.

__rmod__()#

Return value%self.

__rmul__()#

Return value*self.

__ror__()#

Return value|self.

__round__()#

Rounding an Integral returns itself.

Rounding with an ndigits argument also returns an integer.

__rpow__()#

Return pow(value, self, mod).

__rrshift__()#

Return value>>self.

__rshift__()#

Return self>>value.

__rsub__()#

Return value-self.

__rtruediv__()#

Return value/self.

__rxor__()#

Return value^self.

classmethod __signature__()#
__sizeof__()#

Returns size in memory, in bytes.

__str__()#

Return str(self).

__sub__()#

Return self-value.

__subclasshook__()#

Abstract classes can override this to customize issubclass().

This is invoked early on by abc.ABCMeta.subclasscheck(). It should return True, False or NotImplemented. If it returns NotImplemented, the normal algorithm is used. Otherwise, it overrides the normal algorithm (and the outcome is cached).

__truediv__()#

Return self/value.

__trunc__()#

Truncating an Integral returns itself.

__xor__()#

Return self^value.

as_integer_ratio()#

Return a pair of integers, whose ratio is equal to the original int.

The ratio is in lowest terms and has a positive denominator.

(10).as_integer_ratio() (10, 1) (-10).as_integer_ratio() (-10, 1) (0).as_integer_ratio() (0, 1)

bit_count()#

Number of ones in the binary representation of the absolute value of self.

Also known as the population count.

bin(13) ‘0b1101’ (13).bit_count() 3

bit_length()#

Number of bits necessary to represent self in binary.

bin(37) ‘0b100101’ (37).bit_length() 6

conjugate()#

Returns self, the complex conjugate of any int.

class denominator#

the denominator of a rational number in lowest terms

class imag#

the imaginary part of a complex number

is_integer()#

Returns True. Exists for duck type compatibility with float.is_integer.

name()#

The name of the Enum member.

class numerator#

the numerator of a rational number in lowest terms

class real#

the real part of a complex number

to_bytes()#

Return an array of bytes representing an integer.

length Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes. Default is length 1. byteorder The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value. Default is to use ‘big’. signed Determines whether two’s complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.

value()#

The value of the Enum member.

class altdss.enums.PhaseSequence#

Bases: enum.IntEnum

Phase Sequence (DSS enumeration)

ANSI#

0

Euro#

1

Lag#

0

Lead#

1

__abs__()#

abs(self)

__add__()#

Return self+value.

__and__()#

Return self&value.

__bool__()#

True if self else False

__ceil__()#

Ceiling of an Integral returns itself.

__copy__()#
__deepcopy__(memo)#
__delattr__()#

Implement delattr(self, name).

__dir__()#

Default dir() implementation.

__divmod__()#

Return divmod(self, value).

__float__()#

float(self)

__floor__()#

Flooring an Integral returns itself.

__floordiv__()#

Return self//value.

__format__()#

Convert to a string according to format_spec.

__ge__()#

Return self>=value.

__getattribute__()#

Return getattr(self, name).

__getnewargs__()#
__getstate__()#

Helper for pickle.

__gt__()#

Return self>value.

__hash__()#

Return hash(self).

__index__()#

Return self converted to an integer, if self is suitable for use as an index into a list.

__init__()#

Initialize self. See help(type(self)) for accurate signature.

__int__()#

int(self)

__invert__()#

~self

__le__()#

Return self<=value.

__lshift__()#

Return self<<value.

__lt__()#

Return self<value.

__mod__()#

Return self%value.

__mul__()#

Return self*value.

__ne__()#

Return self!=value.

__neg__()#

-self

__new__()#

Create and return a new object. See help(type) for accurate signature.

__or__()#

Return self|value.

__pos__()#

+self

__pow__()#

Return pow(self, value, mod).

__radd__()#

Return value+self.

__rand__()#

Return value&self.

__rdivmod__()#

Return divmod(value, self).

__reduce__()#

Helper for pickle.

__reduce_ex__()#

Helper for pickle.

__repr__()#

Return repr(self).

__rfloordiv__()#

Return value//self.

__rlshift__()#

Return value<<self.

__rmod__()#

Return value%self.

__rmul__()#

Return value*self.

__ror__()#

Return value|self.

__round__()#

Rounding an Integral returns itself.

Rounding with an ndigits argument also returns an integer.

__rpow__()#

Return pow(value, self, mod).

__rrshift__()#

Return value>>self.

__rshift__()#

Return self>>value.

__rsub__()#

Return value-self.

__rtruediv__()#

Return value/self.

__rxor__()#

Return value^self.

classmethod __signature__()#
__sizeof__()#

Returns size in memory, in bytes.

__str__()#

Return str(self).

__sub__()#

Return self-value.

__subclasshook__()#

Abstract classes can override this to customize issubclass().

This is invoked early on by abc.ABCMeta.subclasscheck(). It should return True, False or NotImplemented. If it returns NotImplemented, the normal algorithm is used. Otherwise, it overrides the normal algorithm (and the outcome is cached).

__truediv__()#

Return self/value.

__trunc__()#

Truncating an Integral returns itself.

__xor__()#

Return self^value.

as_integer_ratio()#

Return a pair of integers, whose ratio is equal to the original int.

The ratio is in lowest terms and has a positive denominator.

(10).as_integer_ratio() (10, 1) (-10).as_integer_ratio() (-10, 1) (0).as_integer_ratio() (0, 1)

bit_count()#

Number of ones in the binary representation of the absolute value of self.

Also known as the population count.

bin(13) ‘0b1101’ (13).bit_count() 3

bit_length()#

Number of bits necessary to represent self in binary.

bin(37) ‘0b100101’ (37).bit_length() 6

conjugate()#

Returns self, the complex conjugate of any int.

class denominator#

the denominator of a rational number in lowest terms

class imag#

the imaginary part of a complex number

is_integer()#

Returns True. Exists for duck type compatibility with float.is_integer.

name()#

The name of the Enum member.

class numerator#

the numerator of a rational number in lowest terms

class real#

the real part of a complex number

to_bytes()#

Return an array of bytes representing an integer.

length Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes. Default is length 1. byteorder The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value. Default is to use ‘big’. signed Determines whether two’s complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.

value()#

The value of the Enum member.

class altdss.enums.PlotProfilePhases#

Bases: enum.IntEnum

Plot: Profile Phases (DSS enumeration)

All#

None

Default#

None

LL3Ph#

None

LLAll#

None

LLPrimary#

None

Primary#

None

__abs__()#

abs(self)

__add__()#

Return self+value.

__and__()#

Return self&value.

__bool__()#

True if self else False

__ceil__()#

Ceiling of an Integral returns itself.

__copy__()#
__deepcopy__(memo)#
__delattr__()#

Implement delattr(self, name).

__dir__()#

Default dir() implementation.

__divmod__()#

Return divmod(self, value).

__float__()#

float(self)

__floor__()#

Flooring an Integral returns itself.

__floordiv__()#

Return self//value.

__format__()#

Convert to a string according to format_spec.

__ge__()#

Return self>=value.

__getattribute__()#

Return getattr(self, name).

__getnewargs__()#
__getstate__()#

Helper for pickle.

__gt__()#

Return self>value.

__hash__()#

Return hash(self).

__index__()#

Return self converted to an integer, if self is suitable for use as an index into a list.

__init__()#

Initialize self. See help(type(self)) for accurate signature.

__int__()#

int(self)

__invert__()#

~self

__le__()#

Return self<=value.

__lshift__()#

Return self<<value.

__lt__()#

Return self<value.

__mod__()#

Return self%value.

__mul__()#

Return self*value.

__ne__()#

Return self!=value.

__neg__()#

-self

__new__()#

Create and return a new object. See help(type) for accurate signature.

__or__()#

Return self|value.

__pos__()#

+self

__pow__()#

Return pow(self, value, mod).

__radd__()#

Return value+self.

__rand__()#

Return value&self.

__rdivmod__()#

Return divmod(value, self).

__reduce__()#

Helper for pickle.

__reduce_ex__()#

Helper for pickle.

__repr__()#

Return repr(self).

__rfloordiv__()#

Return value//self.

__rlshift__()#

Return value<<self.

__rmod__()#

Return value%self.

__rmul__()#

Return value*self.

__ror__()#

Return value|self.

__round__()#

Rounding an Integral returns itself.

Rounding with an ndigits argument also returns an integer.

__rpow__()#

Return pow(value, self, mod).

__rrshift__()#

Return value>>self.

__rshift__()#

Return self>>value.

__rsub__()#

Return value-self.

__rtruediv__()#

Return value/self.

__rxor__()#

Return value^self.

classmethod __signature__()#
__sizeof__()#

Returns size in memory, in bytes.

__str__()#

Return str(self).

__sub__()#

Return self-value.

__subclasshook__()#

Abstract classes can override this to customize issubclass().

This is invoked early on by abc.ABCMeta.subclasscheck(). It should return True, False or NotImplemented. If it returns NotImplemented, the normal algorithm is used. Otherwise, it overrides the normal algorithm (and the outcome is cached).

__truediv__()#

Return self/value.

__trunc__()#

Truncating an Integral returns itself.

__xor__()#

Return self^value.

as_integer_ratio()#

Return a pair of integers, whose ratio is equal to the original int.

The ratio is in lowest terms and has a positive denominator.

(10).as_integer_ratio() (10, 1) (-10).as_integer_ratio() (-10, 1) (0).as_integer_ratio() (0, 1)

bit_count()#

Number of ones in the binary representation of the absolute value of self.

Also known as the population count.

bin(13) ‘0b1101’ (13).bit_count() 3

bit_length()#

Number of bits necessary to represent self in binary.

bin(37) ‘0b100101’ (37).bit_length() 6

conjugate()#

Returns self, the complex conjugate of any int.

class denominator#

the denominator of a rational number in lowest terms

class imag#

the imaginary part of a complex number

is_integer()#

Returns True. Exists for duck type compatibility with float.is_integer.

name()#

The name of the Enum member.

class numerator#

the numerator of a rational number in lowest terms

class real#

the real part of a complex number

to_bytes()#

Return an array of bytes representing an integer.

length Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes. Default is length 1. byteorder The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value. Default is to use ‘big’. signed Determines whether two’s complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.

value()#

The value of the Enum member.

class altdss.enums.PriceShapeAction#

Bases: enum.IntEnum

PriceShape: Action (DSS enumeration)

DblSave#

0

SngSave#

1

__abs__()#

abs(self)

__add__()#

Return self+value.

__and__()#

Return self&value.

__bool__()#

True if self else False

__ceil__()#

Ceiling of an Integral returns itself.

__copy__()#
__deepcopy__(memo)#
__delattr__()#

Implement delattr(self, name).

__dir__()#

Default dir() implementation.

__divmod__()#

Return divmod(self, value).

__float__()#

float(self)

__floor__()#

Flooring an Integral returns itself.

__floordiv__()#

Return self//value.

__format__()#

Convert to a string according to format_spec.

__ge__()#

Return self>=value.

__getattribute__()#

Return getattr(self, name).

__getnewargs__()#
__getstate__()#

Helper for pickle.

__gt__()#

Return self>value.

__hash__()#

Return hash(self).

__index__()#

Return self converted to an integer, if self is suitable for use as an index into a list.

__init__()#

Initialize self. See help(type(self)) for accurate signature.

__int__()#

int(self)

__invert__()#

~self

__le__()#

Return self<=value.

__lshift__()#

Return self<<value.

__lt__()#

Return self<value.

__mod__()#

Return self%value.

__mul__()#

Return self*value.

__ne__()#

Return self!=value.

__neg__()#

-self

__new__()#

Create and return a new object. See help(type) for accurate signature.

__or__()#

Return self|value.

__pos__()#

+self

__pow__()#

Return pow(self, value, mod).

__radd__()#

Return value+self.

__rand__()#

Return value&self.

__rdivmod__()#

Return divmod(value, self).

__reduce__()#

Helper for pickle.

__reduce_ex__()#

Helper for pickle.

__repr__()#

Return repr(self).

__rfloordiv__()#

Return value//self.

__rlshift__()#

Return value<<self.

__rmod__()#

Return value%self.

__rmul__()#

Return value*self.

__ror__()#

Return value|self.

__round__()#

Rounding an Integral returns itself.

Rounding with an ndigits argument also returns an integer.

__rpow__()#

Return pow(value, self, mod).

__rrshift__()#

Return value>>self.

__rshift__()#

Return self>>value.

__rsub__()#

Return value-self.

__rtruediv__()#

Return value/self.

__rxor__()#

Return value^self.

classmethod __signature__()#
__sizeof__()#

Returns size in memory, in bytes.

__str__()#

Return str(self).

__sub__()#

Return self-value.

__subclasshook__()#

Abstract classes can override this to customize issubclass().

This is invoked early on by abc.ABCMeta.subclasscheck(). It should return True, False or NotImplemented. If it returns NotImplemented, the normal algorithm is used. Otherwise, it overrides the normal algorithm (and the outcome is cached).

__truediv__()#

Return self/value.

__trunc__()#

Truncating an Integral returns itself.

__xor__()#

Return self^value.

as_integer_ratio()#

Return a pair of integers, whose ratio is equal to the original int.

The ratio is in lowest terms and has a positive denominator.

(10).as_integer_ratio() (10, 1) (-10).as_integer_ratio() (-10, 1) (0).as_integer_ratio() (0, 1)

bit_count()#

Number of ones in the binary representation of the absolute value of self.

Also known as the population count.

bin(13) ‘0b1101’ (13).bit_count() 3

bit_length()#

Number of bits necessary to represent self in binary.

bin(37) ‘0b100101’ (37).bit_length() 6

conjugate()#

Returns self, the complex conjugate of any int.

class denominator#

the denominator of a rational number in lowest terms

class imag#

the imaginary part of a complex number

is_integer()#

Returns True. Exists for duck type compatibility with float.is_integer.

name()#

The name of the Enum member.

class numerator#

the numerator of a rational number in lowest terms

class real#

the real part of a complex number

to_bytes()#

Return an array of bytes representing an integer.

length Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes. Default is length 1. byteorder The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value. Default is to use ‘big’. signed Determines whether two’s complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.

value()#

The value of the Enum member.

class altdss.enums.RandomType#

Bases: enum.IntEnum

Random Type (DSS enumeration)

Gaussian#

1

LogNormal#

3

Uniform#

2

__abs__()#

abs(self)

__add__()#

Return self+value.

__and__()#

Return self&value.

__bool__()#

True if self else False

__ceil__()#

Ceiling of an Integral returns itself.

__copy__()#
__deepcopy__(memo)#
__delattr__()#

Implement delattr(self, name).

__dir__()#

Default dir() implementation.

__divmod__()#

Return divmod(self, value).

__float__()#

float(self)

__floor__()#

Flooring an Integral returns itself.

__floordiv__()#

Return self//value.

__format__()#

Convert to a string according to format_spec.

__ge__()#

Return self>=value.

__getattribute__()#

Return getattr(self, name).

__getnewargs__()#
__getstate__()#

Helper for pickle.

__gt__()#

Return self>value.

__hash__()#

Return hash(self).

__index__()#

Return self converted to an integer, if self is suitable for use as an index into a list.

__init__()#

Initialize self. See help(type(self)) for accurate signature.

__int__()#

int(self)

__invert__()#

~self

__le__()#

Return self<=value.

__lshift__()#

Return self<<value.

__lt__()#

Return self<value.

__mod__()#

Return self%value.

__mul__()#

Return self*value.

__ne__()#

Return self!=value.

__neg__()#

-self

__new__()#

Create and return a new object. See help(type) for accurate signature.

__or__()#

Return self|value.

__pos__()#

+self

__pow__()#

Return pow(self, value, mod).

__radd__()#

Return value+self.

__rand__()#

Return value&self.

__rdivmod__()#

Return divmod(value, self).

__reduce__()#

Helper for pickle.

__reduce_ex__()#

Helper for pickle.

__repr__()#

Return repr(self).

__rfloordiv__()#

Return value//self.

__rlshift__()#

Return value<<self.

__rmod__()#

Return value%self.

__rmul__()#

Return value*self.

__ror__()#

Return value|self.

__round__()#

Rounding an Integral returns itself.

Rounding with an ndigits argument also returns an integer.

__rpow__()#

Return pow(value, self, mod).

__rrshift__()#

Return value>>self.

__rshift__()#

Return self>>value.

__rsub__()#

Return value-self.

__rtruediv__()#

Return value/self.

__rxor__()#

Return value^self.

classmethod __signature__()#
__sizeof__()#

Returns size in memory, in bytes.

__str__()#

Return str(self).

__sub__()#

Return self-value.

__subclasshook__()#

Abstract classes can override this to customize issubclass().

This is invoked early on by abc.ABCMeta.subclasscheck(). It should return True, False or NotImplemented. If it returns NotImplemented, the normal algorithm is used. Otherwise, it overrides the normal algorithm (and the outcome is cached).

__truediv__()#

Return self/value.

__trunc__()#

Truncating an Integral returns itself.

__xor__()#

Return self^value.

as_integer_ratio()#

Return a pair of integers, whose ratio is equal to the original int.

The ratio is in lowest terms and has a positive denominator.

(10).as_integer_ratio() (10, 1) (-10).as_integer_ratio() (-10, 1) (0).as_integer_ratio() (0, 1)

bit_count()#

Number of ones in the binary representation of the absolute value of self.

Also known as the population count.

bin(13) ‘0b1101’ (13).bit_count() 3

bit_length()#

Number of bits necessary to represent self in binary.

bin(37) ‘0b100101’ (37).bit_length() 6

conjugate()#

Returns self, the complex conjugate of any int.

class denominator#

the denominator of a rational number in lowest terms

class imag#

the imaginary part of a complex number

is_integer()#

Returns True. Exists for duck type compatibility with float.is_integer.

name()#

The name of the Enum member.

none#

0

class numerator#

the numerator of a rational number in lowest terms

class real#

the real part of a complex number

to_bytes()#

Return an array of bytes representing an integer.

length Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes. Default is length 1. byteorder The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value. Default is to use ‘big’. signed Determines whether two’s complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.

value()#

The value of the Enum member.

class altdss.enums.RecloserAction#

Bases: enum.IntEnum

Recloser: Action (DSS enumeration)

__abs__()#

abs(self)

__add__()#

Return self+value.

__and__()#

Return self&value.

__bool__()#

True if self else False

__ceil__()#

Ceiling of an Integral returns itself.

__copy__()#
__deepcopy__(memo)#
__delattr__()#

Implement delattr(self, name).

__dir__()#

Default dir() implementation.

__divmod__()#

Return divmod(self, value).

__float__()#

float(self)

__floor__()#

Flooring an Integral returns itself.

__floordiv__()#

Return self//value.

__format__()#

Convert to a string according to format_spec.

__ge__()#

Return self>=value.

__getattribute__()#

Return getattr(self, name).

__getnewargs__()#
__getstate__()#

Helper for pickle.

__gt__()#

Return self>value.

__hash__()#

Return hash(self).

__index__()#

Return self converted to an integer, if self is suitable for use as an index into a list.

__init__()#

Initialize self. See help(type(self)) for accurate signature.

__int__()#

int(self)

__invert__()#

~self

__le__()#

Return self<=value.

__lshift__()#

Return self<<value.

__lt__()#

Return self<value.

__mod__()#

Return self%value.

__mul__()#

Return self*value.

__ne__()#

Return self!=value.

__neg__()#

-self

__new__()#

Create and return a new object. See help(type) for accurate signature.

__or__()#

Return self|value.

__pos__()#

+self

__pow__()#

Return pow(self, value, mod).

__radd__()#

Return value+self.

__rand__()#

Return value&self.

__rdivmod__()#

Return divmod(value, self).

__reduce__()#

Helper for pickle.

__reduce_ex__()#

Helper for pickle.

__repr__()#

Return repr(self).

__rfloordiv__()#

Return value//self.

__rlshift__()#

Return value<<self.

__rmod__()#

Return value%self.

__rmul__()#

Return value*self.

__ror__()#

Return value|self.

__round__()#

Rounding an Integral returns itself.

Rounding with an ndigits argument also returns an integer.

__rpow__()#

Return pow(value, self, mod).

__rrshift__()#

Return value>>self.

__rshift__()#

Return self>>value.

__rsub__()#

Return value-self.

__rtruediv__()#

Return value/self.

__rxor__()#

Return value^self.

classmethod __signature__()#
__sizeof__()#

Returns size in memory, in bytes.

__str__()#

Return str(self).

__sub__()#

Return self-value.

__subclasshook__()#

Abstract classes can override this to customize issubclass().

This is invoked early on by abc.ABCMeta.subclasscheck(). It should return True, False or NotImplemented. If it returns NotImplemented, the normal algorithm is used. Otherwise, it overrides the normal algorithm (and the outcome is cached).

__truediv__()#

Return self/value.

__trunc__()#

Truncating an Integral returns itself.

__xor__()#

Return self^value.

as_integer_ratio()#

Return a pair of integers, whose ratio is equal to the original int.

The ratio is in lowest terms and has a positive denominator.

(10).as_integer_ratio() (10, 1) (-10).as_integer_ratio() (-10, 1) (0).as_integer_ratio() (0, 1)

bit_count()#

Number of ones in the binary representation of the absolute value of self.

Also known as the population count.

bin(13) ‘0b1101’ (13).bit_count() 3

bit_length()#

Number of bits necessary to represent self in binary.

bin(37) ‘0b100101’ (37).bit_length() 6

close#

2

conjugate()#

Returns self, the complex conjugate of any int.

class denominator#

the denominator of a rational number in lowest terms

class imag#

the imaginary part of a complex number

is_integer()#

Returns True. Exists for duck type compatibility with float.is_integer.

name()#

The name of the Enum member.

class numerator#

the numerator of a rational number in lowest terms

open#

1

class real#

the real part of a complex number

to_bytes()#

Return an array of bytes representing an integer.

length Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes. Default is length 1. byteorder The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value. Default is to use ‘big’. signed Determines whether two’s complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.

trip#

1

value()#

The value of the Enum member.

class altdss.enums.RecloserState#

Bases: enum.IntEnum

Recloser: State (DSS enumeration)

__abs__()#

abs(self)

__add__()#

Return self+value.

__and__()#

Return self&value.

__bool__()#

True if self else False

__ceil__()#

Ceiling of an Integral returns itself.

__copy__()#
__deepcopy__(memo)#
__delattr__()#

Implement delattr(self, name).

__dir__()#

Default dir() implementation.

__divmod__()#

Return divmod(self, value).

__float__()#

float(self)

__floor__()#

Flooring an Integral returns itself.

__floordiv__()#

Return self//value.

__format__()#

Convert to a string according to format_spec.

__ge__()#

Return self>=value.

__getattribute__()#

Return getattr(self, name).

__getnewargs__()#
__getstate__()#

Helper for pickle.

__gt__()#

Return self>value.

__hash__()#

Return hash(self).

__index__()#

Return self converted to an integer, if self is suitable for use as an index into a list.

__init__()#

Initialize self. See help(type(self)) for accurate signature.

__int__()#

int(self)

__invert__()#

~self

__le__()#

Return self<=value.

__lshift__()#

Return self<<value.

__lt__()#

Return self<value.

__mod__()#

Return self%value.

__mul__()#

Return self*value.

__ne__()#

Return self!=value.

__neg__()#

-self

__new__()#

Create and return a new object. See help(type) for accurate signature.

__or__()#

Return self|value.

__pos__()#

+self

__pow__()#

Return pow(self, value, mod).

__radd__()#

Return value+self.

__rand__()#

Return value&self.

__rdivmod__()#

Return divmod(value, self).

__reduce__()#

Helper for pickle.

__reduce_ex__()#

Helper for pickle.

__repr__()#

Return repr(self).

__rfloordiv__()#

Return value//self.

__rlshift__()#

Return value<<self.

__rmod__()#

Return value%self.

__rmul__()#

Return value*self.

__ror__()#

Return value|self.

__round__()#

Rounding an Integral returns itself.

Rounding with an ndigits argument also returns an integer.

__rpow__()#

Return pow(value, self, mod).

__rrshift__()#

Return value>>self.

__rshift__()#

Return self>>value.

__rsub__()#

Return value-self.

__rtruediv__()#

Return value/self.

__rxor__()#

Return value^self.

classmethod __signature__()#
__sizeof__()#

Returns size in memory, in bytes.

__str__()#

Return str(self).

__sub__()#

Return self-value.

__subclasshook__()#

Abstract classes can override this to customize issubclass().

This is invoked early on by abc.ABCMeta.subclasscheck(). It should return True, False or NotImplemented. If it returns NotImplemented, the normal algorithm is used. Otherwise, it overrides the normal algorithm (and the outcome is cached).

__truediv__()#

Return self/value.

__trunc__()#

Truncating an Integral returns itself.

__xor__()#

Return self^value.

as_integer_ratio()#

Return a pair of integers, whose ratio is equal to the original int.

The ratio is in lowest terms and has a positive denominator.

(10).as_integer_ratio() (10, 1) (-10).as_integer_ratio() (-10, 1) (0).as_integer_ratio() (0, 1)

bit_count()#

Number of ones in the binary representation of the absolute value of self.

Also known as the population count.

bin(13) ‘0b1101’ (13).bit_count() 3

bit_length()#

Number of bits necessary to represent self in binary.

bin(37) ‘0b100101’ (37).bit_length() 6

closed#

2

conjugate()#

Returns self, the complex conjugate of any int.

class denominator#

the denominator of a rational number in lowest terms

class imag#

the imaginary part of a complex number

is_integer()#

Returns True. Exists for duck type compatibility with float.is_integer.

name()#

The name of the Enum member.

class numerator#

the numerator of a rational number in lowest terms

open#

1

class real#

the real part of a complex number

to_bytes()#

Return an array of bytes representing an integer.

length Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes. Default is length 1. byteorder The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value. Default is to use ‘big’. signed Determines whether two’s complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.

trip#

1

value()#

The value of the Enum member.

class altdss.enums.ReductionStrategy#

Bases: enum.IntEnum

Reduction Strategy (DSS enumeration)

BreakLoop#

3

Dangling#

4

Default#

0

Laterals#

6

MergeParallel#

2

ShortLines#

1

Switches#

5

__abs__()#

abs(self)

__add__()#

Return self+value.

__and__()#

Return self&value.

__bool__()#

True if self else False

__ceil__()#

Ceiling of an Integral returns itself.

__copy__()#
__deepcopy__(memo)#
__delattr__()#

Implement delattr(self, name).

__dir__()#

Default dir() implementation.

__divmod__()#

Return divmod(self, value).

__float__()#

float(self)

__floor__()#

Flooring an Integral returns itself.

__floordiv__()#

Return self//value.

__format__()#

Convert to a string according to format_spec.

__ge__()#

Return self>=value.

__getattribute__()#

Return getattr(self, name).

__getnewargs__()#
__getstate__()#

Helper for pickle.

__gt__()#

Return self>value.

__hash__()#

Return hash(self).

__index__()#

Return self converted to an integer, if self is suitable for use as an index into a list.

__init__()#

Initialize self. See help(type(self)) for accurate signature.

__int__()#

int(self)

__invert__()#

~self

__le__()#

Return self<=value.

__lshift__()#

Return self<<value.

__lt__()#

Return self<value.

__mod__()#

Return self%value.

__mul__()#

Return self*value.

__ne__()#

Return self!=value.

__neg__()#

-self

__new__()#

Create and return a new object. See help(type) for accurate signature.

__or__()#

Return self|value.

__pos__()#

+self

__pow__()#

Return pow(self, value, mod).

__radd__()#

Return value+self.

__rand__()#

Return value&self.

__rdivmod__()#

Return divmod(value, self).

__reduce__()#

Helper for pickle.

__reduce_ex__()#

Helper for pickle.

__repr__()#

Return repr(self).

__rfloordiv__()#

Return value//self.

__rlshift__()#

Return value<<self.

__rmod__()#

Return value%self.

__rmul__()#

Return value*self.

__ror__()#

Return value|self.

__round__()#

Rounding an Integral returns itself.

Rounding with an ndigits argument also returns an integer.

__rpow__()#

Return pow(value, self, mod).

__rrshift__()#

Return value>>self.

__rshift__()#

Return self>>value.

__rsub__()#

Return value-self.

__rtruediv__()#

Return value/self.

__rxor__()#

Return value^self.

classmethod __signature__()#
__sizeof__()#

Returns size in memory, in bytes.

__str__()#

Return str(self).

__sub__()#

Return self-value.

__subclasshook__()#

Abstract classes can override this to customize issubclass().

This is invoked early on by abc.ABCMeta.subclasscheck(). It should return True, False or NotImplemented. If it returns NotImplemented, the normal algorithm is used. Otherwise, it overrides the normal algorithm (and the outcome is cached).

__truediv__()#

Return self/value.

__trunc__()#

Truncating an Integral returns itself.

__xor__()#

Return self^value.

as_integer_ratio()#

Return a pair of integers, whose ratio is equal to the original int.

The ratio is in lowest terms and has a positive denominator.

(10).as_integer_ratio() (10, 1) (-10).as_integer_ratio() (-10, 1) (0).as_integer_ratio() (0, 1)

bit_count()#

Number of ones in the binary representation of the absolute value of self.

Also known as the population count.

bin(13) ‘0b1101’ (13).bit_count() 3

bit_length()#

Number of bits necessary to represent self in binary.

bin(37) ‘0b100101’ (37).bit_length() 6

conjugate()#

Returns self, the complex conjugate of any int.

class denominator#

the denominator of a rational number in lowest terms

class imag#

the imaginary part of a complex number

is_integer()#

Returns True. Exists for duck type compatibility with float.is_integer.

name()#

The name of the Enum member.

class numerator#

the numerator of a rational number in lowest terms

class real#

the real part of a complex number

to_bytes()#

Return an array of bytes representing an integer.

length Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes. Default is length 1. byteorder The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value. Default is to use ‘big’. signed Determines whether two’s complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.

value()#

The value of the Enum member.

class altdss.enums.RegControlPhaseSelection#

Bases: enum.IntEnum

RegControl: Phase Selection (DSS enumeration)

__abs__()#

abs(self)

__add__()#

Return self+value.

__and__()#

Return self&value.

__bool__()#

True if self else False

__ceil__()#

Ceiling of an Integral returns itself.

__copy__()#
__deepcopy__(memo)#
__delattr__()#

Implement delattr(self, name).

__dir__()#

Default dir() implementation.

__divmod__()#

Return divmod(self, value).

__float__()#

float(self)

__floor__()#

Flooring an Integral returns itself.

__floordiv__()#

Return self//value.

__format__()#

Convert to a string according to format_spec.

__ge__()#

Return self>=value.

__getattribute__()#

Return getattr(self, name).

__getnewargs__()#
__getstate__()#

Helper for pickle.

__gt__()#

Return self>value.

__hash__()#

Return hash(self).

__index__()#

Return self converted to an integer, if self is suitable for use as an index into a list.

__init__()#

Initialize self. See help(type(self)) for accurate signature.

__int__()#

int(self)

__invert__()#

~self

__le__()#

Return self<=value.

__lshift__()#

Return self<<value.

__lt__()#

Return self<value.

__mod__()#

Return self%value.

__mul__()#

Return self*value.

__ne__()#

Return self!=value.

__neg__()#

-self

__new__()#

Create and return a new object. See help(type) for accurate signature.

__or__()#

Return self|value.

__pos__()#

+self

__pow__()#

Return pow(self, value, mod).

__radd__()#

Return value+self.

__rand__()#

Return value&self.

__rdivmod__()#

Return divmod(value, self).

__reduce__()#

Helper for pickle.

__reduce_ex__()#

Helper for pickle.

__repr__()#

Return repr(self).

__rfloordiv__()#

Return value//self.

__rlshift__()#

Return value<<self.

__rmod__()#

Return value%self.

__rmul__()#

Return value*self.

__ror__()#

Return value|self.

__round__()#

Rounding an Integral returns itself.

Rounding with an ndigits argument also returns an integer.

__rpow__()#

Return pow(value, self, mod).

__rrshift__()#

Return value>>self.

__rshift__()#

Return self>>value.

__rsub__()#

Return value-self.

__rtruediv__()#

Return value/self.

__rxor__()#

Return value^self.

classmethod __signature__()#
__sizeof__()#

Returns size in memory, in bytes.

__str__()#

Return str(self).

__sub__()#

Return self-value.

__subclasshook__()#

Abstract classes can override this to customize issubclass().

This is invoked early on by abc.ABCMeta.subclasscheck(). It should return True, False or NotImplemented. If it returns NotImplemented, the normal algorithm is used. Otherwise, it overrides the normal algorithm (and the outcome is cached).

__truediv__()#

Return self/value.

__trunc__()#

Truncating an Integral returns itself.

__xor__()#

Return self^value.

as_integer_ratio()#

Return a pair of integers, whose ratio is equal to the original int.

The ratio is in lowest terms and has a positive denominator.

(10).as_integer_ratio() (10, 1) (-10).as_integer_ratio() (-10, 1) (0).as_integer_ratio() (0, 1)

bit_count()#

Number of ones in the binary representation of the absolute value of self.

Also known as the population count.

bin(13) ‘0b1101’ (13).bit_count() 3

bit_length()#

Number of bits necessary to represent self in binary.

bin(37) ‘0b100101’ (37).bit_length() 6

conjugate()#

Returns self, the complex conjugate of any int.

class denominator#

the denominator of a rational number in lowest terms

class imag#

the imaginary part of a complex number

is_integer()#

Returns True. Exists for duck type compatibility with float.is_integer.

max#

None

min#

None

name()#

The name of the Enum member.

class numerator#

the numerator of a rational number in lowest terms

class real#

the real part of a complex number

to_bytes()#

Return an array of bytes representing an integer.

length Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes. Default is length 1. byteorder The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value. Default is to use ‘big’. signed Determines whether two’s complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.

value()#

The value of the Enum member.

class altdss.enums.RelayAction#

Bases: enum.IntEnum

Relay: Action (DSS enumeration)

__abs__()#

abs(self)

__add__()#

Return self+value.

__and__()#

Return self&value.

__bool__()#

True if self else False

__ceil__()#

Ceiling of an Integral returns itself.

__copy__()#
__deepcopy__(memo)#
__delattr__()#

Implement delattr(self, name).

__dir__()#

Default dir() implementation.

__divmod__()#

Return divmod(self, value).

__float__()#

float(self)

__floor__()#

Flooring an Integral returns itself.

__floordiv__()#

Return self//value.

__format__()#

Convert to a string according to format_spec.

__ge__()#

Return self>=value.

__getattribute__()#

Return getattr(self, name).

__getnewargs__()#
__getstate__()#

Helper for pickle.

__gt__()#

Return self>value.

__hash__()#

Return hash(self).

__index__()#

Return self converted to an integer, if self is suitable for use as an index into a list.

__init__()#

Initialize self. See help(type(self)) for accurate signature.

__int__()#

int(self)

__invert__()#

~self

__le__()#

Return self<=value.

__lshift__()#

Return self<<value.

__lt__()#

Return self<value.

__mod__()#

Return self%value.

__mul__()#

Return self*value.

__ne__()#

Return self!=value.

__neg__()#

-self

__new__()#

Create and return a new object. See help(type) for accurate signature.

__or__()#

Return self|value.

__pos__()#

+self

__pow__()#

Return pow(self, value, mod).

__radd__()#

Return value+self.

__rand__()#

Return value&self.

__rdivmod__()#

Return divmod(value, self).

__reduce__()#

Helper for pickle.

__reduce_ex__()#

Helper for pickle.

__repr__()#

Return repr(self).

__rfloordiv__()#

Return value//self.

__rlshift__()#

Return value<<self.

__rmod__()#

Return value%self.

__rmul__()#

Return value*self.

__ror__()#

Return value|self.

__round__()#

Rounding an Integral returns itself.

Rounding with an ndigits argument also returns an integer.

__rpow__()#

Return pow(value, self, mod).

__rrshift__()#

Return value>>self.

__rshift__()#

Return self>>value.

__rsub__()#

Return value-self.

__rtruediv__()#

Return value/self.

__rxor__()#

Return value^self.

classmethod __signature__()#
__sizeof__()#

Returns size in memory, in bytes.

__str__()#

Return str(self).

__sub__()#

Return self-value.

__subclasshook__()#

Abstract classes can override this to customize issubclass().

This is invoked early on by abc.ABCMeta.subclasscheck(). It should return True, False or NotImplemented. If it returns NotImplemented, the normal algorithm is used. Otherwise, it overrides the normal algorithm (and the outcome is cached).

__truediv__()#

Return self/value.

__trunc__()#

Truncating an Integral returns itself.

__xor__()#

Return self^value.

as_integer_ratio()#

Return a pair of integers, whose ratio is equal to the original int.

The ratio is in lowest terms and has a positive denominator.

(10).as_integer_ratio() (10, 1) (-10).as_integer_ratio() (-10, 1) (0).as_integer_ratio() (0, 1)

bit_count()#

Number of ones in the binary representation of the absolute value of self.

Also known as the population count.

bin(13) ‘0b1101’ (13).bit_count() 3

bit_length()#

Number of bits necessary to represent self in binary.

bin(37) ‘0b100101’ (37).bit_length() 6

close#

2

conjugate()#

Returns self, the complex conjugate of any int.

class denominator#

the denominator of a rational number in lowest terms

class imag#

the imaginary part of a complex number

is_integer()#

Returns True. Exists for duck type compatibility with float.is_integer.

name()#

The name of the Enum member.

class numerator#

the numerator of a rational number in lowest terms

open#

1

class real#

the real part of a complex number

to_bytes()#

Return an array of bytes representing an integer.

length Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes. Default is length 1. byteorder The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value. Default is to use ‘big’. signed Determines whether two’s complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.

trip#

1

value()#

The value of the Enum member.

class altdss.enums.RelayState#

Bases: enum.IntEnum

Relay: State (DSS enumeration)

__abs__()#

abs(self)

__add__()#

Return self+value.

__and__()#

Return self&value.

__bool__()#

True if self else False

__ceil__()#

Ceiling of an Integral returns itself.

__copy__()#
__deepcopy__(memo)#
__delattr__()#

Implement delattr(self, name).

__dir__()#

Default dir() implementation.

__divmod__()#

Return divmod(self, value).

__float__()#

float(self)

__floor__()#

Flooring an Integral returns itself.

__floordiv__()#

Return self//value.

__format__()#

Convert to a string according to format_spec.

__ge__()#

Return self>=value.

__getattribute__()#

Return getattr(self, name).

__getnewargs__()#
__getstate__()#

Helper for pickle.

__gt__()#

Return self>value.

__hash__()#

Return hash(self).

__index__()#

Return self converted to an integer, if self is suitable for use as an index into a list.

__init__()#

Initialize self. See help(type(self)) for accurate signature.

__int__()#

int(self)

__invert__()#

~self

__le__()#

Return self<=value.

__lshift__()#

Return self<<value.

__lt__()#

Return self<value.

__mod__()#

Return self%value.

__mul__()#

Return self*value.

__ne__()#

Return self!=value.

__neg__()#

-self

__new__()#

Create and return a new object. See help(type) for accurate signature.

__or__()#

Return self|value.

__pos__()#

+self

__pow__()#

Return pow(self, value, mod).

__radd__()#

Return value+self.

__rand__()#

Return value&self.

__rdivmod__()#

Return divmod(value, self).

__reduce__()#

Helper for pickle.

__reduce_ex__()#

Helper for pickle.

__repr__()#

Return repr(self).

__rfloordiv__()#

Return value//self.

__rlshift__()#

Return value<<self.

__rmod__()#

Return value%self.

__rmul__()#

Return value*self.

__ror__()#

Return value|self.

__round__()#

Rounding an Integral returns itself.

Rounding with an ndigits argument also returns an integer.

__rpow__()#

Return pow(value, self, mod).

__rrshift__()#

Return value>>self.

__rshift__()#

Return self>>value.

__rsub__()#

Return value-self.

__rtruediv__()#

Return value/self.

__rxor__()#

Return value^self.

classmethod __signature__()#
__sizeof__()#

Returns size in memory, in bytes.

__str__()#

Return str(self).

__sub__()#

Return self-value.

__subclasshook__()#

Abstract classes can override this to customize issubclass().

This is invoked early on by abc.ABCMeta.subclasscheck(). It should return True, False or NotImplemented. If it returns NotImplemented, the normal algorithm is used. Otherwise, it overrides the normal algorithm (and the outcome is cached).

__truediv__()#

Return self/value.

__trunc__()#

Truncating an Integral returns itself.

__xor__()#

Return self^value.

as_integer_ratio()#

Return a pair of integers, whose ratio is equal to the original int.

The ratio is in lowest terms and has a positive denominator.

(10).as_integer_ratio() (10, 1) (-10).as_integer_ratio() (-10, 1) (0).as_integer_ratio() (0, 1)

bit_count()#

Number of ones in the binary representation of the absolute value of self.

Also known as the population count.

bin(13) ‘0b1101’ (13).bit_count() 3

bit_length()#

Number of bits necessary to represent self in binary.

bin(37) ‘0b100101’ (37).bit_length() 6

closed#

2

conjugate()#

Returns self, the complex conjugate of any int.

class denominator#

the denominator of a rational number in lowest terms

class imag#

the imaginary part of a complex number

is_integer()#

Returns True. Exists for duck type compatibility with float.is_integer.

name()#

The name of the Enum member.

class numerator#

the numerator of a rational number in lowest terms

open#

1

class real#

the real part of a complex number

to_bytes()#

Return an array of bytes representing an integer.

length Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes. Default is length 1. byteorder The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value. Default is to use ‘big’. signed Determines whether two’s complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.

trip#

1

value()#

The value of the Enum member.

class altdss.enums.RelayType#

Bases: enum.IntEnum

Relay: Type (DSS enumeration)

Current#

0

DOC#

9

Distance#

7

Generic#

6

ReversePower#

3

TD21#

8

Voltage#

1

__abs__()#

abs(self)

__add__()#

Return self+value.

__and__()#

Return self&value.

__bool__()#

True if self else False

__ceil__()#

Ceiling of an Integral returns itself.

__copy__()#
__deepcopy__(memo)#
__delattr__()#

Implement delattr(self, name).

__dir__()#

Default dir() implementation.

__divmod__()#

Return divmod(self, value).

__float__()#

float(self)

__floor__()#

Flooring an Integral returns itself.

__floordiv__()#

Return self//value.

__format__()#

Convert to a string according to format_spec.

__ge__()#

Return self>=value.

__getattribute__()#

Return getattr(self, name).

__getnewargs__()#
__getstate__()#

Helper for pickle.

__gt__()#

Return self>value.

__hash__()#

Return hash(self).

__index__()#

Return self converted to an integer, if self is suitable for use as an index into a list.

__init__()#

Initialize self. See help(type(self)) for accurate signature.

__int__()#

int(self)

__invert__()#

~self

__le__()#

Return self<=value.

__lshift__()#

Return self<<value.

__lt__()#

Return self<value.

__mod__()#

Return self%value.

__mul__()#

Return self*value.

__ne__()#

Return self!=value.

__neg__()#

-self

__new__()#

Create and return a new object. See help(type) for accurate signature.

__or__()#

Return self|value.

__pos__()#

+self

__pow__()#

Return pow(self, value, mod).

__radd__()#

Return value+self.

__rand__()#

Return value&self.

__rdivmod__()#

Return divmod(value, self).

__reduce__()#

Helper for pickle.

__reduce_ex__()#

Helper for pickle.

__repr__()#

Return repr(self).

__rfloordiv__()#

Return value//self.

__rlshift__()#

Return value<<self.

__rmod__()#

Return value%self.

__rmul__()#

Return value*self.

__ror__()#

Return value|self.

__round__()#

Rounding an Integral returns itself.

Rounding with an ndigits argument also returns an integer.

__rpow__()#

Return pow(value, self, mod).

__rrshift__()#

Return value>>self.

__rshift__()#

Return self>>value.

__rsub__()#

Return value-self.

__rtruediv__()#

Return value/self.

__rxor__()#

Return value^self.

classmethod __signature__()#
__sizeof__()#

Returns size in memory, in bytes.

__str__()#

Return str(self).

__sub__()#

Return self-value.

__subclasshook__()#

Abstract classes can override this to customize issubclass().

This is invoked early on by abc.ABCMeta.subclasscheck(). It should return True, False or NotImplemented. If it returns NotImplemented, the normal algorithm is used. Otherwise, it overrides the normal algorithm (and the outcome is cached).

__truediv__()#

Return self/value.

__trunc__()#

Truncating an Integral returns itself.

__xor__()#

Return self^value.

as_integer_ratio()#

Return a pair of integers, whose ratio is equal to the original int.

The ratio is in lowest terms and has a positive denominator.

(10).as_integer_ratio() (10, 1) (-10).as_integer_ratio() (-10, 1) (0).as_integer_ratio() (0, 1)

bit_count()#

Number of ones in the binary representation of the absolute value of self.

Also known as the population count.

bin(13) ‘0b1101’ (13).bit_count() 3

bit_length()#

Number of bits necessary to represent self in binary.

bin(37) ‘0b100101’ (37).bit_length() 6

conjugate()#

Returns self, the complex conjugate of any int.

class denominator#

the denominator of a rational number in lowest terms

class imag#

the imaginary part of a complex number

is_integer()#

Returns True. Exists for duck type compatibility with float.is_integer.

name()#

The name of the Enum member.

class numerator#

the numerator of a rational number in lowest terms

class real#

the real part of a complex number

relay46#

4

relay47#

5

to_bytes()#

Return an array of bytes representing an integer.

length Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes. Default is length 1. byteorder The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value. Default is to use ‘big’. signed Determines whether two’s complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.

value()#

The value of the Enum member.

class altdss.enums.ScanType#

Bases: enum.IntEnum

Scan Type (DSS enumeration)

Positive#

1

Zero#

0

__abs__()#

abs(self)

__add__()#

Return self+value.

__and__()#

Return self&value.

__bool__()#

True if self else False

__ceil__()#

Ceiling of an Integral returns itself.

__copy__()#
__deepcopy__(memo)#
__delattr__()#

Implement delattr(self, name).

__dir__()#

Default dir() implementation.

__divmod__()#

Return divmod(self, value).

__float__()#

float(self)

__floor__()#

Flooring an Integral returns itself.

__floordiv__()#

Return self//value.

__format__()#

Convert to a string according to format_spec.

__ge__()#

Return self>=value.

__getattribute__()#

Return getattr(self, name).

__getnewargs__()#
__getstate__()#

Helper for pickle.

__gt__()#

Return self>value.

__hash__()#

Return hash(self).

__index__()#

Return self converted to an integer, if self is suitable for use as an index into a list.

__init__()#

Initialize self. See help(type(self)) for accurate signature.

__int__()#

int(self)

__invert__()#

~self

__le__()#

Return self<=value.

__lshift__()#

Return self<<value.

__lt__()#

Return self<value.

__mod__()#

Return self%value.

__mul__()#

Return self*value.

__ne__()#

Return self!=value.

__neg__()#

-self

__new__()#

Create and return a new object. See help(type) for accurate signature.

__or__()#

Return self|value.

__pos__()#

+self

__pow__()#

Return pow(self, value, mod).

__radd__()#

Return value+self.

__rand__()#

Return value&self.

__rdivmod__()#

Return divmod(value, self).

__reduce__()#

Helper for pickle.

__reduce_ex__()#

Helper for pickle.

__repr__()#

Return repr(self).

__rfloordiv__()#

Return value//self.

__rlshift__()#

Return value<<self.

__rmod__()#

Return value%self.

__rmul__()#

Return value*self.

__ror__()#

Return value|self.

__round__()#

Rounding an Integral returns itself.

Rounding with an ndigits argument also returns an integer.

__rpow__()#

Return pow(value, self, mod).

__rrshift__()#

Return value>>self.

__rshift__()#

Return self>>value.

__rsub__()#

Return value-self.

__rtruediv__()#

Return value/self.

__rxor__()#

Return value^self.

classmethod __signature__()#
__sizeof__()#

Returns size in memory, in bytes.

__str__()#

Return str(self).

__sub__()#

Return self-value.

__subclasshook__()#

Abstract classes can override this to customize issubclass().

This is invoked early on by abc.ABCMeta.subclasscheck(). It should return True, False or NotImplemented. If it returns NotImplemented, the normal algorithm is used. Otherwise, it overrides the normal algorithm (and the outcome is cached).

__truediv__()#

Return self/value.

__trunc__()#

Truncating an Integral returns itself.

__xor__()#

Return self^value.

as_integer_ratio()#

Return a pair of integers, whose ratio is equal to the original int.

The ratio is in lowest terms and has a positive denominator.

(10).as_integer_ratio() (10, 1) (-10).as_integer_ratio() (-10, 1) (0).as_integer_ratio() (0, 1)

bit_count()#

Number of ones in the binary representation of the absolute value of self.

Also known as the population count.

bin(13) ‘0b1101’ (13).bit_count() 3

bit_length()#

Number of bits necessary to represent self in binary.

bin(37) ‘0b100101’ (37).bit_length() 6

conjugate()#

Returns self, the complex conjugate of any int.

class denominator#

the denominator of a rational number in lowest terms

class imag#

the imaginary part of a complex number

is_integer()#

Returns True. Exists for duck type compatibility with float.is_integer.

name()#

The name of the Enum member.

none#

None

class numerator#

the numerator of a rational number in lowest terms

class real#

the real part of a complex number

to_bytes()#

Return an array of bytes representing an integer.

length Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes. Default is length 1. byteorder The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value. Default is to use ‘big’. signed Determines whether two’s complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.

value()#

The value of the Enum member.

class altdss.enums.SequenceType#

Bases: enum.IntEnum

Sequence Type (DSS enumeration)

Negative#

None

Positive#

1

Zero#

0

__abs__()#

abs(self)

__add__()#

Return self+value.

__and__()#

Return self&value.

__bool__()#

True if self else False

__ceil__()#

Ceiling of an Integral returns itself.

__copy__()#
__deepcopy__(memo)#
__delattr__()#

Implement delattr(self, name).

__dir__()#

Default dir() implementation.

__divmod__()#

Return divmod(self, value).

__float__()#

float(self)

__floor__()#

Flooring an Integral returns itself.

__floordiv__()#

Return self//value.

__format__()#

Convert to a string according to format_spec.

__ge__()#

Return self>=value.

__getattribute__()#

Return getattr(self, name).

__getnewargs__()#
__getstate__()#

Helper for pickle.

__gt__()#

Return self>value.

__hash__()#

Return hash(self).

__index__()#

Return self converted to an integer, if self is suitable for use as an index into a list.

__init__()#

Initialize self. See help(type(self)) for accurate signature.

__int__()#

int(self)

__invert__()#

~self

__le__()#

Return self<=value.

__lshift__()#

Return self<<value.

__lt__()#

Return self<value.

__mod__()#

Return self%value.

__mul__()#

Return self*value.

__ne__()#

Return self!=value.

__neg__()#

-self

__new__()#

Create and return a new object. See help(type) for accurate signature.

__or__()#

Return self|value.

__pos__()#

+self

__pow__()#

Return pow(self, value, mod).

__radd__()#

Return value+self.

__rand__()#

Return value&self.

__rdivmod__()#

Return divmod(value, self).

__reduce__()#

Helper for pickle.

__reduce_ex__()#

Helper for pickle.

__repr__()#

Return repr(self).

__rfloordiv__()#

Return value//self.

__rlshift__()#

Return value<<self.

__rmod__()#

Return value%self.

__rmul__()#

Return value*self.

__ror__()#

Return value|self.

__round__()#

Rounding an Integral returns itself.

Rounding with an ndigits argument also returns an integer.

__rpow__()#

Return pow(value, self, mod).

__rrshift__()#

Return value>>self.

__rshift__()#

Return self>>value.

__rsub__()#

Return value-self.

__rtruediv__()#

Return value/self.

__rxor__()#

Return value^self.

classmethod __signature__()#
__sizeof__()#

Returns size in memory, in bytes.

__str__()#

Return str(self).

__sub__()#

Return self-value.

__subclasshook__()#

Abstract classes can override this to customize issubclass().

This is invoked early on by abc.ABCMeta.subclasscheck(). It should return True, False or NotImplemented. If it returns NotImplemented, the normal algorithm is used. Otherwise, it overrides the normal algorithm (and the outcome is cached).

__truediv__()#

Return self/value.

__trunc__()#

Truncating an Integral returns itself.

__xor__()#

Return self^value.

as_integer_ratio()#

Return a pair of integers, whose ratio is equal to the original int.

The ratio is in lowest terms and has a positive denominator.

(10).as_integer_ratio() (10, 1) (-10).as_integer_ratio() (-10, 1) (0).as_integer_ratio() (0, 1)

bit_count()#

Number of ones in the binary representation of the absolute value of self.

Also known as the population count.

bin(13) ‘0b1101’ (13).bit_count() 3

bit_length()#

Number of bits necessary to represent self in binary.

bin(37) ‘0b100101’ (37).bit_length() 6

conjugate()#

Returns self, the complex conjugate of any int.

class denominator#

the denominator of a rational number in lowest terms

class imag#

the imaginary part of a complex number

is_integer()#

Returns True. Exists for duck type compatibility with float.is_integer.

name()#

The name of the Enum member.

class numerator#

the numerator of a rational number in lowest terms

class real#

the real part of a complex number

to_bytes()#

Return an array of bytes representing an integer.

length Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes. Default is length 1. byteorder The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value. Default is to use ‘big’. signed Determines whether two’s complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.

value()#

The value of the Enum member.

class altdss.enums.SolutionAlgorithm#

Bases: enum.IntEnum

Solution Algorithm (DSS enumeration)

Newton#

1

Normal#

0

__abs__()#

abs(self)

__add__()#

Return self+value.

__and__()#

Return self&value.

__bool__()#

True if self else False

__ceil__()#

Ceiling of an Integral returns itself.

__copy__()#
__deepcopy__(memo)#
__delattr__()#

Implement delattr(self, name).

__dir__()#

Default dir() implementation.

__divmod__()#

Return divmod(self, value).

__float__()#

float(self)

__floor__()#

Flooring an Integral returns itself.

__floordiv__()#

Return self//value.

__format__()#

Convert to a string according to format_spec.

__ge__()#

Return self>=value.

__getattribute__()#

Return getattr(self, name).

__getnewargs__()#
__getstate__()#

Helper for pickle.

__gt__()#

Return self>value.

__hash__()#

Return hash(self).

__index__()#

Return self converted to an integer, if self is suitable for use as an index into a list.

__init__()#

Initialize self. See help(type(self)) for accurate signature.

__int__()#

int(self)

__invert__()#

~self

__le__()#

Return self<=value.

__lshift__()#

Return self<<value.

__lt__()#

Return self<value.

__mod__()#

Return self%value.

__mul__()#

Return self*value.

__ne__()#

Return self!=value.

__neg__()#

-self

__new__()#

Create and return a new object. See help(type) for accurate signature.

__or__()#

Return self|value.

__pos__()#

+self

__pow__()#

Return pow(self, value, mod).

__radd__()#

Return value+self.

__rand__()#

Return value&self.

__rdivmod__()#

Return divmod(value, self).

__reduce__()#

Helper for pickle.

__reduce_ex__()#

Helper for pickle.

__repr__()#

Return repr(self).

__rfloordiv__()#

Return value//self.

__rlshift__()#

Return value<<self.

__rmod__()#

Return value%self.

__rmul__()#

Return value*self.

__ror__()#

Return value|self.

__round__()#

Rounding an Integral returns itself.

Rounding with an ndigits argument also returns an integer.

__rpow__()#

Return pow(value, self, mod).

__rrshift__()#

Return value>>self.

__rshift__()#

Return self>>value.

__rsub__()#

Return value-self.

__rtruediv__()#

Return value/self.

__rxor__()#

Return value^self.

classmethod __signature__()#
__sizeof__()#

Returns size in memory, in bytes.

__str__()#

Return str(self).

__sub__()#

Return self-value.

__subclasshook__()#

Abstract classes can override this to customize issubclass().

This is invoked early on by abc.ABCMeta.subclasscheck(). It should return True, False or NotImplemented. If it returns NotImplemented, the normal algorithm is used. Otherwise, it overrides the normal algorithm (and the outcome is cached).

__truediv__()#

Return self/value.

__trunc__()#

Truncating an Integral returns itself.

__xor__()#

Return self^value.

as_integer_ratio()#

Return a pair of integers, whose ratio is equal to the original int.

The ratio is in lowest terms and has a positive denominator.

(10).as_integer_ratio() (10, 1) (-10).as_integer_ratio() (-10, 1) (0).as_integer_ratio() (0, 1)

bit_count()#

Number of ones in the binary representation of the absolute value of self.

Also known as the population count.

bin(13) ‘0b1101’ (13).bit_count() 3

bit_length()#

Number of bits necessary to represent self in binary.

bin(37) ‘0b100101’ (37).bit_length() 6

conjugate()#

Returns self, the complex conjugate of any int.

class denominator#

the denominator of a rational number in lowest terms

class imag#

the imaginary part of a complex number

is_integer()#

Returns True. Exists for duck type compatibility with float.is_integer.

name()#

The name of the Enum member.

class numerator#

the numerator of a rational number in lowest terms

class real#

the real part of a complex number

to_bytes()#

Return an array of bytes representing an integer.

length Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes. Default is length 1. byteorder The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value. Default is to use ‘big’. signed Determines whether two’s complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.

value()#

The value of the Enum member.

class altdss.enums.SolutionMode#

Bases: enum.IntEnum

Solution Mode (DSS enumeration)

AutoAdd#

13

Daily#

1

Direct#

7

DutyCycle#

6

Dynamic#

14

Dynamics#

14

F#

9

FaultStudy#

9

H#

15

Harmonic#

15

HarmonicT#

17

Harmonics#

15

LD1#

4

LD2#

12

M1#

3

M2#

10

M3#

11

MF#

8

PeakDay#

5

S#

0

Snap#

0

Snapshot#

0

T#

16

Time#

16

Y#

2

Yearly#

2

__abs__()#

abs(self)

__add__()#

Return self+value.

__and__()#

Return self&value.

__bool__()#

True if self else False

__ceil__()#

Ceiling of an Integral returns itself.

__copy__()#
__deepcopy__(memo)#
__delattr__()#

Implement delattr(self, name).

__dir__()#

Default dir() implementation.

__divmod__()#

Return divmod(self, value).

__float__()#

float(self)

__floor__()#

Flooring an Integral returns itself.

__floordiv__()#

Return self//value.

__format__()#

Convert to a string according to format_spec.

__ge__()#

Return self>=value.

__getattribute__()#

Return getattr(self, name).

__getnewargs__()#
__getstate__()#

Helper for pickle.

__gt__()#

Return self>value.

__hash__()#

Return hash(self).

__index__()#

Return self converted to an integer, if self is suitable for use as an index into a list.

__init__()#

Initialize self. See help(type(self)) for accurate signature.

__int__()#

int(self)

__invert__()#

~self

__le__()#

Return self<=value.

__lshift__()#

Return self<<value.

__lt__()#

Return self<value.

__mod__()#

Return self%value.

__mul__()#

Return self*value.

__ne__()#

Return self!=value.

__neg__()#

-self

__new__()#

Create and return a new object. See help(type) for accurate signature.

__or__()#

Return self|value.

__pos__()#

+self

__pow__()#

Return pow(self, value, mod).

__radd__()#

Return value+self.

__rand__()#

Return value&self.

__rdivmod__()#

Return divmod(value, self).

__reduce__()#

Helper for pickle.

__reduce_ex__()#

Helper for pickle.

__repr__()#

Return repr(self).

__rfloordiv__()#

Return value//self.

__rlshift__()#

Return value<<self.

__rmod__()#

Return value%self.

__rmul__()#

Return value*self.

__ror__()#

Return value|self.

__round__()#

Rounding an Integral returns itself.

Rounding with an ndigits argument also returns an integer.

__rpow__()#

Return pow(value, self, mod).

__rrshift__()#

Return value>>self.

__rshift__()#

Return self>>value.

__rsub__()#

Return value-self.

__rtruediv__()#

Return value/self.

__rxor__()#

Return value^self.

classmethod __signature__()#
__sizeof__()#

Returns size in memory, in bytes.

__str__()#

Return str(self).

__sub__()#

Return self-value.

__subclasshook__()#

Abstract classes can override this to customize issubclass().

This is invoked early on by abc.ABCMeta.subclasscheck(). It should return True, False or NotImplemented. If it returns NotImplemented, the normal algorithm is used. Otherwise, it overrides the normal algorithm (and the outcome is cached).

__truediv__()#

Return self/value.

__trunc__()#

Truncating an Integral returns itself.

__xor__()#

Return self^value.

as_integer_ratio()#

Return a pair of integers, whose ratio is equal to the original int.

The ratio is in lowest terms and has a positive denominator.

(10).as_integer_ratio() (10, 1) (-10).as_integer_ratio() (-10, 1) (0).as_integer_ratio() (0, 1)

bit_count()#

Number of ones in the binary representation of the absolute value of self.

Also known as the population count.

bin(13) ‘0b1101’ (13).bit_count() 3

bit_length()#

Number of bits necessary to represent self in binary.

bin(37) ‘0b100101’ (37).bit_length() 6

conjugate()#

Returns self, the complex conjugate of any int.

class denominator#

the denominator of a rational number in lowest terms

class imag#

the imaginary part of a complex number

is_integer()#

Returns True. Exists for duck type compatibility with float.is_integer.

name()#

The name of the Enum member.

class numerator#

the numerator of a rational number in lowest terms

class real#

the real part of a complex number

to_bytes()#

Return an array of bytes representing an integer.

length Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes. Default is length 1. byteorder The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value. Default is to use ‘big’. signed Determines whether two’s complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.

value()#

The value of the Enum member.

class altdss.enums.StorageControllerChargeMode#

Bases: enum.IntEnum

StorageController: Charge Mode (DSS enumeration)

I_PeakshaveLow#

9

Loadshape#

2

PeakshaveLow#

7

Time#

4

__abs__()#

abs(self)

__add__()#

Return self+value.

__and__()#

Return self&value.

__bool__()#

True if self else False

__ceil__()#

Ceiling of an Integral returns itself.

__copy__()#
__deepcopy__(memo)#
__delattr__()#

Implement delattr(self, name).

__dir__()#

Default dir() implementation.

__divmod__()#

Return divmod(self, value).

__float__()#

float(self)

__floor__()#

Flooring an Integral returns itself.

__floordiv__()#

Return self//value.

__format__()#

Convert to a string according to format_spec.

__ge__()#

Return self>=value.

__getattribute__()#

Return getattr(self, name).

__getnewargs__()#
__getstate__()#

Helper for pickle.

__gt__()#

Return self>value.

__hash__()#

Return hash(self).

__index__()#

Return self converted to an integer, if self is suitable for use as an index into a list.

__init__()#

Initialize self. See help(type(self)) for accurate signature.

__int__()#

int(self)

__invert__()#

~self

__le__()#

Return self<=value.

__lshift__()#

Return self<<value.

__lt__()#

Return self<value.

__mod__()#

Return self%value.

__mul__()#

Return self*value.

__ne__()#

Return self!=value.

__neg__()#

-self

__new__()#

Create and return a new object. See help(type) for accurate signature.

__or__()#

Return self|value.

__pos__()#

+self

__pow__()#

Return pow(self, value, mod).

__radd__()#

Return value+self.

__rand__()#

Return value&self.

__rdivmod__()#

Return divmod(value, self).

__reduce__()#

Helper for pickle.

__reduce_ex__()#

Helper for pickle.

__repr__()#

Return repr(self).

__rfloordiv__()#

Return value//self.

__rlshift__()#

Return value<<self.

__rmod__()#

Return value%self.

__rmul__()#

Return value*self.

__ror__()#

Return value|self.

__round__()#

Rounding an Integral returns itself.

Rounding with an ndigits argument also returns an integer.

__rpow__()#

Return pow(value, self, mod).

__rrshift__()#

Return value>>self.

__rshift__()#

Return self>>value.

__rsub__()#

Return value-self.

__rtruediv__()#

Return value/self.

__rxor__()#

Return value^self.

classmethod __signature__()#
__sizeof__()#

Returns size in memory, in bytes.

__str__()#

Return str(self).

__sub__()#

Return self-value.

__subclasshook__()#

Abstract classes can override this to customize issubclass().

This is invoked early on by abc.ABCMeta.subclasscheck(). It should return True, False or NotImplemented. If it returns NotImplemented, the normal algorithm is used. Otherwise, it overrides the normal algorithm (and the outcome is cached).

__truediv__()#

Return self/value.

__trunc__()#

Truncating an Integral returns itself.

__xor__()#

Return self^value.

as_integer_ratio()#

Return a pair of integers, whose ratio is equal to the original int.

The ratio is in lowest terms and has a positive denominator.

(10).as_integer_ratio() (10, 1) (-10).as_integer_ratio() (-10, 1) (0).as_integer_ratio() (0, 1)

bit_count()#

Number of ones in the binary representation of the absolute value of self.

Also known as the population count.

bin(13) ‘0b1101’ (13).bit_count() 3

bit_length()#

Number of bits necessary to represent self in binary.

bin(37) ‘0b100101’ (37).bit_length() 6

conjugate()#

Returns self, the complex conjugate of any int.

class denominator#

the denominator of a rational number in lowest terms

class imag#

the imaginary part of a complex number

is_integer()#

Returns True. Exists for duck type compatibility with float.is_integer.

name()#

The name of the Enum member.

class numerator#

the numerator of a rational number in lowest terms

class real#

the real part of a complex number

to_bytes()#

Return an array of bytes representing an integer.

length Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes. Default is length 1. byteorder The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value. Default is to use ‘big’. signed Determines whether two’s complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.

value()#

The value of the Enum member.

class altdss.enums.StorageControllerDischargeMode#

Bases: enum.IntEnum

StorageController: Discharge Mode (DSS enumeration)

Follow#

1

I_Peakshave#

8

Loadshape#

2

Peakshave#

5

Schedule#

6

Support#

3

Time#

4

__abs__()#

abs(self)

__add__()#

Return self+value.

__and__()#

Return self&value.

__bool__()#

True if self else False

__ceil__()#

Ceiling of an Integral returns itself.

__copy__()#
__deepcopy__(memo)#
__delattr__()#

Implement delattr(self, name).

__dir__()#

Default dir() implementation.

__divmod__()#

Return divmod(self, value).

__float__()#

float(self)

__floor__()#

Flooring an Integral returns itself.

__floordiv__()#

Return self//value.

__format__()#

Convert to a string according to format_spec.

__ge__()#

Return self>=value.

__getattribute__()#

Return getattr(self, name).

__getnewargs__()#
__getstate__()#

Helper for pickle.

__gt__()#

Return self>value.

__hash__()#

Return hash(self).

__index__()#

Return self converted to an integer, if self is suitable for use as an index into a list.

__init__()#

Initialize self. See help(type(self)) for accurate signature.

__int__()#

int(self)

__invert__()#

~self

__le__()#

Return self<=value.

__lshift__()#

Return self<<value.

__lt__()#

Return self<value.

__mod__()#

Return self%value.

__mul__()#

Return self*value.

__ne__()#

Return self!=value.

__neg__()#

-self

__new__()#

Create and return a new object. See help(type) for accurate signature.

__or__()#

Return self|value.

__pos__()#

+self

__pow__()#

Return pow(self, value, mod).

__radd__()#

Return value+self.

__rand__()#

Return value&self.

__rdivmod__()#

Return divmod(value, self).

__reduce__()#

Helper for pickle.

__reduce_ex__()#

Helper for pickle.

__repr__()#

Return repr(self).

__rfloordiv__()#

Return value//self.

__rlshift__()#

Return value<<self.

__rmod__()#

Return value%self.

__rmul__()#

Return value*self.

__ror__()#

Return value|self.

__round__()#

Rounding an Integral returns itself.

Rounding with an ndigits argument also returns an integer.

__rpow__()#

Return pow(value, self, mod).

__rrshift__()#

Return value>>self.

__rshift__()#

Return self>>value.

__rsub__()#

Return value-self.

__rtruediv__()#

Return value/self.

__rxor__()#

Return value^self.

classmethod __signature__()#
__sizeof__()#

Returns size in memory, in bytes.

__str__()#

Return str(self).

__sub__()#

Return self-value.

__subclasshook__()#

Abstract classes can override this to customize issubclass().

This is invoked early on by abc.ABCMeta.subclasscheck(). It should return True, False or NotImplemented. If it returns NotImplemented, the normal algorithm is used. Otherwise, it overrides the normal algorithm (and the outcome is cached).

__truediv__()#

Return self/value.

__trunc__()#

Truncating an Integral returns itself.

__xor__()#

Return self^value.

as_integer_ratio()#

Return a pair of integers, whose ratio is equal to the original int.

The ratio is in lowest terms and has a positive denominator.

(10).as_integer_ratio() (10, 1) (-10).as_integer_ratio() (-10, 1) (0).as_integer_ratio() (0, 1)

bit_count()#

Number of ones in the binary representation of the absolute value of self.

Also known as the population count.

bin(13) ‘0b1101’ (13).bit_count() 3

bit_length()#

Number of bits necessary to represent self in binary.

bin(37) ‘0b100101’ (37).bit_length() 6

conjugate()#

Returns self, the complex conjugate of any int.

class denominator#

the denominator of a rational number in lowest terms

class imag#

the imaginary part of a complex number

is_integer()#

Returns True. Exists for duck type compatibility with float.is_integer.

name()#

The name of the Enum member.

class numerator#

the numerator of a rational number in lowest terms

class real#

the real part of a complex number

to_bytes()#

Return an array of bytes representing an integer.

length Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes. Default is length 1. byteorder The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value. Default is to use ‘big’. signed Determines whether two’s complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.

value()#

The value of the Enum member.

class altdss.enums.StorageDispatchMode#

Bases: enum.IntEnum

Storage: Dispatch Mode (DSS enumeration)

Default#

0

External#

3

Follow#

4

LoadLevel#

1

Price#

2

__abs__()#

abs(self)

__add__()#

Return self+value.

__and__()#

Return self&value.

__bool__()#

True if self else False

__ceil__()#

Ceiling of an Integral returns itself.

__copy__()#
__deepcopy__(memo)#
__delattr__()#

Implement delattr(self, name).

__dir__()#

Default dir() implementation.

__divmod__()#

Return divmod(self, value).

__float__()#

float(self)

__floor__()#

Flooring an Integral returns itself.

__floordiv__()#

Return self//value.

__format__()#

Convert to a string according to format_spec.

__ge__()#

Return self>=value.

__getattribute__()#

Return getattr(self, name).

__getnewargs__()#
__getstate__()#

Helper for pickle.

__gt__()#

Return self>value.

__hash__()#

Return hash(self).

__index__()#

Return self converted to an integer, if self is suitable for use as an index into a list.

__init__()#

Initialize self. See help(type(self)) for accurate signature.

__int__()#

int(self)

__invert__()#

~self

__le__()#

Return self<=value.

__lshift__()#

Return self<<value.

__lt__()#

Return self<value.

__mod__()#

Return self%value.

__mul__()#

Return self*value.

__ne__()#

Return self!=value.

__neg__()#

-self

__new__()#

Create and return a new object. See help(type) for accurate signature.

__or__()#

Return self|value.

__pos__()#

+self

__pow__()#

Return pow(self, value, mod).

__radd__()#

Return value+self.

__rand__()#

Return value&self.

__rdivmod__()#

Return divmod(value, self).

__reduce__()#

Helper for pickle.

__reduce_ex__()#

Helper for pickle.

__repr__()#

Return repr(self).

__rfloordiv__()#

Return value//self.

__rlshift__()#

Return value<<self.

__rmod__()#

Return value%self.

__rmul__()#

Return value*self.

__ror__()#

Return value|self.

__round__()#

Rounding an Integral returns itself.

Rounding with an ndigits argument also returns an integer.

__rpow__()#

Return pow(value, self, mod).

__rrshift__()#

Return value>>self.

__rshift__()#

Return self>>value.

__rsub__()#

Return value-self.

__rtruediv__()#

Return value/self.

__rxor__()#

Return value^self.

classmethod __signature__()#
__sizeof__()#

Returns size in memory, in bytes.

__str__()#

Return str(self).

__sub__()#

Return self-value.

__subclasshook__()#

Abstract classes can override this to customize issubclass().

This is invoked early on by abc.ABCMeta.subclasscheck(). It should return True, False or NotImplemented. If it returns NotImplemented, the normal algorithm is used. Otherwise, it overrides the normal algorithm (and the outcome is cached).

__truediv__()#

Return self/value.

__trunc__()#

Truncating an Integral returns itself.

__xor__()#

Return self^value.

as_integer_ratio()#

Return a pair of integers, whose ratio is equal to the original int.

The ratio is in lowest terms and has a positive denominator.

(10).as_integer_ratio() (10, 1) (-10).as_integer_ratio() (-10, 1) (0).as_integer_ratio() (0, 1)

bit_count()#

Number of ones in the binary representation of the absolute value of self.

Also known as the population count.

bin(13) ‘0b1101’ (13).bit_count() 3

bit_length()#

Number of bits necessary to represent self in binary.

bin(37) ‘0b100101’ (37).bit_length() 6

conjugate()#

Returns self, the complex conjugate of any int.

class denominator#

the denominator of a rational number in lowest terms

class imag#

the imaginary part of a complex number

is_integer()#

Returns True. Exists for duck type compatibility with float.is_integer.

name()#

The name of the Enum member.

class numerator#

the numerator of a rational number in lowest terms

class real#

the real part of a complex number

to_bytes()#

Return an array of bytes representing an integer.

length Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes. Default is length 1. byteorder The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value. Default is to use ‘big’. signed Determines whether two’s complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.

value()#

The value of the Enum member.

class altdss.enums.StorageState#

Bases: enum.IntEnum

Storage: State (DSS enumeration)

Charging#

None

Discharging#

1

Idling#

0

__abs__()#

abs(self)

__add__()#

Return self+value.

__and__()#

Return self&value.

__bool__()#

True if self else False

__ceil__()#

Ceiling of an Integral returns itself.

__copy__()#
__deepcopy__(memo)#
__delattr__()#

Implement delattr(self, name).

__dir__()#

Default dir() implementation.

__divmod__()#

Return divmod(self, value).

__float__()#

float(self)

__floor__()#

Flooring an Integral returns itself.

__floordiv__()#

Return self//value.

__format__()#

Convert to a string according to format_spec.

__ge__()#

Return self>=value.

__getattribute__()#

Return getattr(self, name).

__getnewargs__()#
__getstate__()#

Helper for pickle.

__gt__()#

Return self>value.

__hash__()#

Return hash(self).

__index__()#

Return self converted to an integer, if self is suitable for use as an index into a list.

__init__()#

Initialize self. See help(type(self)) for accurate signature.

__int__()#

int(self)

__invert__()#

~self

__le__()#

Return self<=value.

__lshift__()#

Return self<<value.

__lt__()#

Return self<value.

__mod__()#

Return self%value.

__mul__()#

Return self*value.

__ne__()#

Return self!=value.

__neg__()#

-self

__new__()#

Create and return a new object. See help(type) for accurate signature.

__or__()#

Return self|value.

__pos__()#

+self

__pow__()#

Return pow(self, value, mod).

__radd__()#

Return value+self.

__rand__()#

Return value&self.

__rdivmod__()#

Return divmod(value, self).

__reduce__()#

Helper for pickle.

__reduce_ex__()#

Helper for pickle.

__repr__()#

Return repr(self).

__rfloordiv__()#

Return value//self.

__rlshift__()#

Return value<<self.

__rmod__()#

Return value%self.

__rmul__()#

Return value*self.

__ror__()#

Return value|self.

__round__()#

Rounding an Integral returns itself.

Rounding with an ndigits argument also returns an integer.

__rpow__()#

Return pow(value, self, mod).

__rrshift__()#

Return value>>self.

__rshift__()#

Return self>>value.

__rsub__()#

Return value-self.

__rtruediv__()#

Return value/self.

__rxor__()#

Return value^self.

classmethod __signature__()#
__sizeof__()#

Returns size in memory, in bytes.

__str__()#

Return str(self).

__sub__()#

Return self-value.

__subclasshook__()#

Abstract classes can override this to customize issubclass().

This is invoked early on by abc.ABCMeta.subclasscheck(). It should return True, False or NotImplemented. If it returns NotImplemented, the normal algorithm is used. Otherwise, it overrides the normal algorithm (and the outcome is cached).

__truediv__()#

Return self/value.

__trunc__()#

Truncating an Integral returns itself.

__xor__()#

Return self^value.

as_integer_ratio()#

Return a pair of integers, whose ratio is equal to the original int.

The ratio is in lowest terms and has a positive denominator.

(10).as_integer_ratio() (10, 1) (-10).as_integer_ratio() (-10, 1) (0).as_integer_ratio() (0, 1)

bit_count()#

Number of ones in the binary representation of the absolute value of self.

Also known as the population count.

bin(13) ‘0b1101’ (13).bit_count() 3

bit_length()#

Number of bits necessary to represent self in binary.

bin(37) ‘0b100101’ (37).bit_length() 6

conjugate()#

Returns self, the complex conjugate of any int.

class denominator#

the denominator of a rational number in lowest terms

class imag#

the imaginary part of a complex number

is_integer()#

Returns True. Exists for duck type compatibility with float.is_integer.

name()#

The name of the Enum member.

class numerator#

the numerator of a rational number in lowest terms

class real#

the real part of a complex number

to_bytes()#

Return an array of bytes representing an integer.

length Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes. Default is length 1. byteorder The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value. Default is to use ‘big’. signed Determines whether two’s complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.

value()#

The value of the Enum member.

class altdss.enums.SwtControlAction#

Bases: enum.IntEnum

SwtControl: Action (DSS enumeration)

__abs__()#

abs(self)

__add__()#

Return self+value.

__and__()#

Return self&value.

__bool__()#

True if self else False

__ceil__()#

Ceiling of an Integral returns itself.

__copy__()#
__deepcopy__(memo)#
__delattr__()#

Implement delattr(self, name).

__dir__()#

Default dir() implementation.

__divmod__()#

Return divmod(self, value).

__float__()#

float(self)

__floor__()#

Flooring an Integral returns itself.

__floordiv__()#

Return self//value.

__format__()#

Convert to a string according to format_spec.

__ge__()#

Return self>=value.

__getattribute__()#

Return getattr(self, name).

__getnewargs__()#
__getstate__()#

Helper for pickle.

__gt__()#

Return self>value.

__hash__()#

Return hash(self).

__index__()#

Return self converted to an integer, if self is suitable for use as an index into a list.

__init__()#

Initialize self. See help(type(self)) for accurate signature.

__int__()#

int(self)

__invert__()#

~self

__le__()#

Return self<=value.

__lshift__()#

Return self<<value.

__lt__()#

Return self<value.

__mod__()#

Return self%value.

__mul__()#

Return self*value.

__ne__()#

Return self!=value.

__neg__()#

-self

__new__()#

Create and return a new object. See help(type) for accurate signature.

__or__()#

Return self|value.

__pos__()#

+self

__pow__()#

Return pow(self, value, mod).

__radd__()#

Return value+self.

__rand__()#

Return value&self.

__rdivmod__()#

Return divmod(value, self).

__reduce__()#

Helper for pickle.

__reduce_ex__()#

Helper for pickle.

__repr__()#

Return repr(self).

__rfloordiv__()#

Return value//self.

__rlshift__()#

Return value<<self.

__rmod__()#

Return value%self.

__rmul__()#

Return value*self.

__ror__()#

Return value|self.

__round__()#

Rounding an Integral returns itself.

Rounding with an ndigits argument also returns an integer.

__rpow__()#

Return pow(value, self, mod).

__rrshift__()#

Return value>>self.

__rshift__()#

Return self>>value.

__rsub__()#

Return value-self.

__rtruediv__()#

Return value/self.

__rxor__()#

Return value^self.

classmethod __signature__()#
__sizeof__()#

Returns size in memory, in bytes.

__str__()#

Return str(self).

__sub__()#

Return self-value.

__subclasshook__()#

Abstract classes can override this to customize issubclass().

This is invoked early on by abc.ABCMeta.subclasscheck(). It should return True, False or NotImplemented. If it returns NotImplemented, the normal algorithm is used. Otherwise, it overrides the normal algorithm (and the outcome is cached).

__truediv__()#

Return self/value.

__trunc__()#

Truncating an Integral returns itself.

__xor__()#

Return self^value.

as_integer_ratio()#

Return a pair of integers, whose ratio is equal to the original int.

The ratio is in lowest terms and has a positive denominator.

(10).as_integer_ratio() (10, 1) (-10).as_integer_ratio() (-10, 1) (0).as_integer_ratio() (0, 1)

bit_count()#

Number of ones in the binary representation of the absolute value of self.

Also known as the population count.

bin(13) ‘0b1101’ (13).bit_count() 3

bit_length()#

Number of bits necessary to represent self in binary.

bin(37) ‘0b100101’ (37).bit_length() 6

close#

2

conjugate()#

Returns self, the complex conjugate of any int.

class denominator#

the denominator of a rational number in lowest terms

class imag#

the imaginary part of a complex number

is_integer()#

Returns True. Exists for duck type compatibility with float.is_integer.

name()#

The name of the Enum member.

class numerator#

the numerator of a rational number in lowest terms

open#

1

class real#

the real part of a complex number

to_bytes()#

Return an array of bytes representing an integer.

length Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes. Default is length 1. byteorder The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value. Default is to use ‘big’. signed Determines whether two’s complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.

value()#

The value of the Enum member.

class altdss.enums.SwtControlState#

Bases: enum.IntEnum

SwtControl: State (DSS enumeration)

__abs__()#

abs(self)

__add__()#

Return self+value.

__and__()#

Return self&value.

__bool__()#

True if self else False

__ceil__()#

Ceiling of an Integral returns itself.

__copy__()#
__deepcopy__(memo)#
__delattr__()#

Implement delattr(self, name).

__dir__()#

Default dir() implementation.

__divmod__()#

Return divmod(self, value).

__float__()#

float(self)

__floor__()#

Flooring an Integral returns itself.

__floordiv__()#

Return self//value.

__format__()#

Convert to a string according to format_spec.

__ge__()#

Return self>=value.

__getattribute__()#

Return getattr(self, name).

__getnewargs__()#
__getstate__()#

Helper for pickle.

__gt__()#

Return self>value.

__hash__()#

Return hash(self).

__index__()#

Return self converted to an integer, if self is suitable for use as an index into a list.

__init__()#

Initialize self. See help(type(self)) for accurate signature.

__int__()#

int(self)

__invert__()#

~self

__le__()#

Return self<=value.

__lshift__()#

Return self<<value.

__lt__()#

Return self<value.

__mod__()#

Return self%value.

__mul__()#

Return self*value.

__ne__()#

Return self!=value.

__neg__()#

-self

__new__()#

Create and return a new object. See help(type) for accurate signature.

__or__()#

Return self|value.

__pos__()#

+self

__pow__()#

Return pow(self, value, mod).

__radd__()#

Return value+self.

__rand__()#

Return value&self.

__rdivmod__()#

Return divmod(value, self).

__reduce__()#

Helper for pickle.

__reduce_ex__()#

Helper for pickle.

__repr__()#

Return repr(self).

__rfloordiv__()#

Return value//self.

__rlshift__()#

Return value<<self.

__rmod__()#

Return value%self.

__rmul__()#

Return value*self.

__ror__()#

Return value|self.

__round__()#

Rounding an Integral returns itself.

Rounding with an ndigits argument also returns an integer.

__rpow__()#

Return pow(value, self, mod).

__rrshift__()#

Return value>>self.

__rshift__()#

Return self>>value.

__rsub__()#

Return value-self.

__rtruediv__()#

Return value/self.

__rxor__()#

Return value^self.

classmethod __signature__()#
__sizeof__()#

Returns size in memory, in bytes.

__str__()#

Return str(self).

__sub__()#

Return self-value.

__subclasshook__()#

Abstract classes can override this to customize issubclass().

This is invoked early on by abc.ABCMeta.subclasscheck(). It should return True, False or NotImplemented. If it returns NotImplemented, the normal algorithm is used. Otherwise, it overrides the normal algorithm (and the outcome is cached).

__truediv__()#

Return self/value.

__trunc__()#

Truncating an Integral returns itself.

__xor__()#

Return self^value.

as_integer_ratio()#

Return a pair of integers, whose ratio is equal to the original int.

The ratio is in lowest terms and has a positive denominator.

(10).as_integer_ratio() (10, 1) (-10).as_integer_ratio() (-10, 1) (0).as_integer_ratio() (0, 1)

bit_count()#

Number of ones in the binary representation of the absolute value of self.

Also known as the population count.

bin(13) ‘0b1101’ (13).bit_count() 3

bit_length()#

Number of bits necessary to represent self in binary.

bin(37) ‘0b100101’ (37).bit_length() 6

closed#

2

conjugate()#

Returns self, the complex conjugate of any int.

class denominator#

the denominator of a rational number in lowest terms

class imag#

the imaginary part of a complex number

is_integer()#

Returns True. Exists for duck type compatibility with float.is_integer.

name()#

The name of the Enum member.

class numerator#

the numerator of a rational number in lowest terms

open#

1

class real#

the real part of a complex number

to_bytes()#

Return an array of bytes representing an integer.

length Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes. Default is length 1. byteorder The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value. Default is to use ‘big’. signed Determines whether two’s complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.

value()#

The value of the Enum member.

class altdss.enums.TShapeAction#

Bases: enum.IntEnum

TShape: Action (DSS enumeration)

DblSave#

0

SngSave#

1

__abs__()#

abs(self)

__add__()#

Return self+value.

__and__()#

Return self&value.

__bool__()#

True if self else False

__ceil__()#

Ceiling of an Integral returns itself.

__copy__()#
__deepcopy__(memo)#
__delattr__()#

Implement delattr(self, name).

__dir__()#

Default dir() implementation.

__divmod__()#

Return divmod(self, value).

__float__()#

float(self)

__floor__()#

Flooring an Integral returns itself.

__floordiv__()#

Return self//value.

__format__()#

Convert to a string according to format_spec.

__ge__()#

Return self>=value.

__getattribute__()#

Return getattr(self, name).

__getnewargs__()#
__getstate__()#

Helper for pickle.

__gt__()#

Return self>value.

__hash__()#

Return hash(self).

__index__()#

Return self converted to an integer, if self is suitable for use as an index into a list.

__init__()#

Initialize self. See help(type(self)) for accurate signature.

__int__()#

int(self)

__invert__()#

~self

__le__()#

Return self<=value.

__lshift__()#

Return self<<value.

__lt__()#

Return self<value.

__mod__()#

Return self%value.

__mul__()#

Return self*value.

__ne__()#

Return self!=value.

__neg__()#

-self

__new__()#

Create and return a new object. See help(type) for accurate signature.

__or__()#

Return self|value.

__pos__()#

+self

__pow__()#

Return pow(self, value, mod).

__radd__()#

Return value+self.

__rand__()#

Return value&self.

__rdivmod__()#

Return divmod(value, self).

__reduce__()#

Helper for pickle.

__reduce_ex__()#

Helper for pickle.

__repr__()#

Return repr(self).

__rfloordiv__()#

Return value//self.

__rlshift__()#

Return value<<self.

__rmod__()#

Return value%self.

__rmul__()#

Return value*self.

__ror__()#

Return value|self.

__round__()#

Rounding an Integral returns itself.

Rounding with an ndigits argument also returns an integer.

__rpow__()#

Return pow(value, self, mod).

__rrshift__()#

Return value>>self.

__rshift__()#

Return self>>value.

__rsub__()#

Return value-self.

__rtruediv__()#

Return value/self.

__rxor__()#

Return value^self.

classmethod __signature__()#
__sizeof__()#

Returns size in memory, in bytes.

__str__()#

Return str(self).

__sub__()#

Return self-value.

__subclasshook__()#

Abstract classes can override this to customize issubclass().

This is invoked early on by abc.ABCMeta.subclasscheck(). It should return True, False or NotImplemented. If it returns NotImplemented, the normal algorithm is used. Otherwise, it overrides the normal algorithm (and the outcome is cached).

__truediv__()#

Return self/value.

__trunc__()#

Truncating an Integral returns itself.

__xor__()#

Return self^value.

as_integer_ratio()#

Return a pair of integers, whose ratio is equal to the original int.

The ratio is in lowest terms and has a positive denominator.

(10).as_integer_ratio() (10, 1) (-10).as_integer_ratio() (-10, 1) (0).as_integer_ratio() (0, 1)

bit_count()#

Number of ones in the binary representation of the absolute value of self.

Also known as the population count.

bin(13) ‘0b1101’ (13).bit_count() 3

bit_length()#

Number of bits necessary to represent self in binary.

bin(37) ‘0b100101’ (37).bit_length() 6

conjugate()#

Returns self, the complex conjugate of any int.

class denominator#

the denominator of a rational number in lowest terms

class imag#

the imaginary part of a complex number

is_integer()#

Returns True. Exists for duck type compatibility with float.is_integer.

name()#

The name of the Enum member.

class numerator#

the numerator of a rational number in lowest terms

class real#

the real part of a complex number

to_bytes()#

Return an array of bytes representing an integer.

length Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes. Default is length 1. byteorder The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value. Default is to use ‘big’. signed Determines whether two’s complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.

value()#

The value of the Enum member.

class altdss.enums.UPFCMode#

Bases: enum.IntEnum

UPFC: Mode (DSS enumeration)

DoubleReference_Dual#

5

DoubleReference_Voltage#

4

DualRegulator#

3

Off#

0

PhaseAngleRegulator#

2

VoltageRegulator#

1

__abs__()#

abs(self)

__add__()#

Return self+value.

__and__()#

Return self&value.

__bool__()#

True if self else False

__ceil__()#

Ceiling of an Integral returns itself.

__copy__()#
__deepcopy__(memo)#
__delattr__()#

Implement delattr(self, name).

__dir__()#

Default dir() implementation.

__divmod__()#

Return divmod(self, value).

__float__()#

float(self)

__floor__()#

Flooring an Integral returns itself.

__floordiv__()#

Return self//value.

__format__()#

Convert to a string according to format_spec.

__ge__()#

Return self>=value.

__getattribute__()#

Return getattr(self, name).

__getnewargs__()#
__getstate__()#

Helper for pickle.

__gt__()#

Return self>value.

__hash__()#

Return hash(self).

__index__()#

Return self converted to an integer, if self is suitable for use as an index into a list.

__init__()#

Initialize self. See help(type(self)) for accurate signature.

__int__()#

int(self)

__invert__()#

~self

__le__()#

Return self<=value.

__lshift__()#

Return self<<value.

__lt__()#

Return self<value.

__mod__()#

Return self%value.

__mul__()#

Return self*value.

__ne__()#

Return self!=value.

__neg__()#

-self

__new__()#

Create and return a new object. See help(type) for accurate signature.

__or__()#

Return self|value.

__pos__()#

+self

__pow__()#

Return pow(self, value, mod).

__radd__()#

Return value+self.

__rand__()#

Return value&self.

__rdivmod__()#

Return divmod(value, self).

__reduce__()#

Helper for pickle.

__reduce_ex__()#

Helper for pickle.

__repr__()#

Return repr(self).

__rfloordiv__()#

Return value//self.

__rlshift__()#

Return value<<self.

__rmod__()#

Return value%self.

__rmul__()#

Return value*self.

__ror__()#

Return value|self.

__round__()#

Rounding an Integral returns itself.

Rounding with an ndigits argument also returns an integer.

__rpow__()#

Return pow(value, self, mod).

__rrshift__()#

Return value>>self.

__rshift__()#

Return self>>value.

__rsub__()#

Return value-self.

__rtruediv__()#

Return value/self.

__rxor__()#

Return value^self.

classmethod __signature__()#
__sizeof__()#

Returns size in memory, in bytes.

__str__()#

Return str(self).

__sub__()#

Return self-value.

__subclasshook__()#

Abstract classes can override this to customize issubclass().

This is invoked early on by abc.ABCMeta.subclasscheck(). It should return True, False or NotImplemented. If it returns NotImplemented, the normal algorithm is used. Otherwise, it overrides the normal algorithm (and the outcome is cached).

__truediv__()#

Return self/value.

__trunc__()#

Truncating an Integral returns itself.

__xor__()#

Return self^value.

as_integer_ratio()#

Return a pair of integers, whose ratio is equal to the original int.

The ratio is in lowest terms and has a positive denominator.

(10).as_integer_ratio() (10, 1) (-10).as_integer_ratio() (-10, 1) (0).as_integer_ratio() (0, 1)

bit_count()#

Number of ones in the binary representation of the absolute value of self.

Also known as the population count.

bin(13) ‘0b1101’ (13).bit_count() 3

bit_length()#

Number of bits necessary to represent self in binary.

bin(37) ‘0b100101’ (37).bit_length() 6

conjugate()#

Returns self, the complex conjugate of any int.

class denominator#

the denominator of a rational number in lowest terms

class imag#

the imaginary part of a complex number

is_integer()#

Returns True. Exists for duck type compatibility with float.is_integer.

name()#

The name of the Enum member.

class numerator#

the numerator of a rational number in lowest terms

class real#

the real part of a complex number

to_bytes()#

Return an array of bytes representing an integer.

length Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes. Default is length 1. byteorder The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value. Default is to use ‘big’. signed Determines whether two’s complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.

value()#

The value of the Enum member.

class altdss.enums.VSConverterControlMode#

Bases: enum.IntEnum

VSConverter: Control Mode (DSS enumeration)

Fixed#

0

PacQac#

2

PacVac#

1

VdcQac#

4

VdcVac#

3

__abs__()#

abs(self)

__add__()#

Return self+value.

__and__()#

Return self&value.

__bool__()#

True if self else False

__ceil__()#

Ceiling of an Integral returns itself.

__copy__()#
__deepcopy__(memo)#
__delattr__()#

Implement delattr(self, name).

__dir__()#

Default dir() implementation.

__divmod__()#

Return divmod(self, value).

__float__()#

float(self)

__floor__()#

Flooring an Integral returns itself.

__floordiv__()#

Return self//value.

__format__()#

Convert to a string according to format_spec.

__ge__()#

Return self>=value.

__getattribute__()#

Return getattr(self, name).

__getnewargs__()#
__getstate__()#

Helper for pickle.

__gt__()#

Return self>value.

__hash__()#

Return hash(self).

__index__()#

Return self converted to an integer, if self is suitable for use as an index into a list.

__init__()#

Initialize self. See help(type(self)) for accurate signature.

__int__()#

int(self)

__invert__()#

~self

__le__()#

Return self<=value.

__lshift__()#

Return self<<value.

__lt__()#

Return self<value.

__mod__()#

Return self%value.

__mul__()#

Return self*value.

__ne__()#

Return self!=value.

__neg__()#

-self

__new__()#

Create and return a new object. See help(type) for accurate signature.

__or__()#

Return self|value.

__pos__()#

+self

__pow__()#

Return pow(self, value, mod).

__radd__()#

Return value+self.

__rand__()#

Return value&self.

__rdivmod__()#

Return divmod(value, self).

__reduce__()#

Helper for pickle.

__reduce_ex__()#

Helper for pickle.

__repr__()#

Return repr(self).

__rfloordiv__()#

Return value//self.

__rlshift__()#

Return value<<self.

__rmod__()#

Return value%self.

__rmul__()#

Return value*self.

__ror__()#

Return value|self.

__round__()#

Rounding an Integral returns itself.

Rounding with an ndigits argument also returns an integer.

__rpow__()#

Return pow(value, self, mod).

__rrshift__()#

Return value>>self.

__rshift__()#

Return self>>value.

__rsub__()#

Return value-self.

__rtruediv__()#

Return value/self.

__rxor__()#

Return value^self.

classmethod __signature__()#
__sizeof__()#

Returns size in memory, in bytes.

__str__()#

Return str(self).

__sub__()#

Return self-value.

__subclasshook__()#

Abstract classes can override this to customize issubclass().

This is invoked early on by abc.ABCMeta.subclasscheck(). It should return True, False or NotImplemented. If it returns NotImplemented, the normal algorithm is used. Otherwise, it overrides the normal algorithm (and the outcome is cached).

__truediv__()#

Return self/value.

__trunc__()#

Truncating an Integral returns itself.

__xor__()#

Return self^value.

as_integer_ratio()#

Return a pair of integers, whose ratio is equal to the original int.

The ratio is in lowest terms and has a positive denominator.

(10).as_integer_ratio() (10, 1) (-10).as_integer_ratio() (-10, 1) (0).as_integer_ratio() (0, 1)

bit_count()#

Number of ones in the binary representation of the absolute value of self.

Also known as the population count.

bin(13) ‘0b1101’ (13).bit_count() 3

bit_length()#

Number of bits necessary to represent self in binary.

bin(37) ‘0b100101’ (37).bit_length() 6

conjugate()#

Returns self, the complex conjugate of any int.

class denominator#

the denominator of a rational number in lowest terms

class imag#

the imaginary part of a complex number

is_integer()#

Returns True. Exists for duck type compatibility with float.is_integer.

name()#

The name of the Enum member.

class numerator#

the numerator of a rational number in lowest terms

class real#

the real part of a complex number

to_bytes()#

Return an array of bytes representing an integer.

length Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes. Default is length 1. byteorder The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value. Default is to use ‘big’. signed Determines whether two’s complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.

value()#

The value of the Enum member.

class altdss.enums.VSourceModel#

Bases: enum.IntEnum

VSource: Model (DSS enumeration)

Ideal#

1

Thevenin#

0

__abs__()#

abs(self)

__add__()#

Return self+value.

__and__()#

Return self&value.

__bool__()#

True if self else False

__ceil__()#

Ceiling of an Integral returns itself.

__copy__()#
__deepcopy__(memo)#
__delattr__()#

Implement delattr(self, name).

__dir__()#

Default dir() implementation.

__divmod__()#

Return divmod(self, value).

__float__()#

float(self)

__floor__()#

Flooring an Integral returns itself.

__floordiv__()#

Return self//value.

__format__()#

Convert to a string according to format_spec.

__ge__()#

Return self>=value.

__getattribute__()#

Return getattr(self, name).

__getnewargs__()#
__getstate__()#

Helper for pickle.

__gt__()#

Return self>value.

__hash__()#

Return hash(self).

__index__()#

Return self converted to an integer, if self is suitable for use as an index into a list.

__init__()#

Initialize self. See help(type(self)) for accurate signature.

__int__()#

int(self)

__invert__()#

~self

__le__()#

Return self<=value.

__lshift__()#

Return self<<value.

__lt__()#

Return self<value.

__mod__()#

Return self%value.

__mul__()#

Return self*value.

__ne__()#

Return self!=value.

__neg__()#

-self

__new__()#

Create and return a new object. See help(type) for accurate signature.

__or__()#

Return self|value.

__pos__()#

+self

__pow__()#

Return pow(self, value, mod).

__radd__()#

Return value+self.

__rand__()#

Return value&self.

__rdivmod__()#

Return divmod(value, self).

__reduce__()#

Helper for pickle.

__reduce_ex__()#

Helper for pickle.

__repr__()#

Return repr(self).

__rfloordiv__()#

Return value//self.

__rlshift__()#

Return value<<self.

__rmod__()#

Return value%self.

__rmul__()#

Return value*self.

__ror__()#

Return value|self.

__round__()#

Rounding an Integral returns itself.

Rounding with an ndigits argument also returns an integer.

__rpow__()#

Return pow(value, self, mod).

__rrshift__()#

Return value>>self.

__rshift__()#

Return self>>value.

__rsub__()#

Return value-self.

__rtruediv__()#

Return value/self.

__rxor__()#

Return value^self.

classmethod __signature__()#
__sizeof__()#

Returns size in memory, in bytes.

__str__()#

Return str(self).

__sub__()#

Return self-value.

__subclasshook__()#

Abstract classes can override this to customize issubclass().

This is invoked early on by abc.ABCMeta.subclasscheck(). It should return True, False or NotImplemented. If it returns NotImplemented, the normal algorithm is used. Otherwise, it overrides the normal algorithm (and the outcome is cached).

__truediv__()#

Return self/value.

__trunc__()#

Truncating an Integral returns itself.

__xor__()#

Return self^value.

as_integer_ratio()#

Return a pair of integers, whose ratio is equal to the original int.

The ratio is in lowest terms and has a positive denominator.

(10).as_integer_ratio() (10, 1) (-10).as_integer_ratio() (-10, 1) (0).as_integer_ratio() (0, 1)

bit_count()#

Number of ones in the binary representation of the absolute value of self.

Also known as the population count.

bin(13) ‘0b1101’ (13).bit_count() 3

bit_length()#

Number of bits necessary to represent self in binary.

bin(37) ‘0b100101’ (37).bit_length() 6

conjugate()#

Returns self, the complex conjugate of any int.

class denominator#

the denominator of a rational number in lowest terms

class imag#

the imaginary part of a complex number

is_integer()#

Returns True. Exists for duck type compatibility with float.is_integer.

name()#

The name of the Enum member.

class numerator#

the numerator of a rational number in lowest terms

class real#

the real part of a complex number

to_bytes()#

Return an array of bytes representing an integer.

length Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes. Default is length 1. byteorder The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value. Default is to use ‘big’. signed Determines whether two’s complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.

value()#

The value of the Enum member.

class altdss.enums.VisualizeQuantity#

Bases: enum.IntEnum

Visualize: Quantity (DSS enumeration)

Currents#

1

Powers#

3

Voltages#

2

__abs__()#

abs(self)

__add__()#

Return self+value.

__and__()#

Return self&value.

__bool__()#

True if self else False

__ceil__()#

Ceiling of an Integral returns itself.

__copy__()#
__deepcopy__(memo)#
__delattr__()#

Implement delattr(self, name).

__dir__()#

Default dir() implementation.

__divmod__()#

Return divmod(self, value).

__float__()#

float(self)

__floor__()#

Flooring an Integral returns itself.

__floordiv__()#

Return self//value.

__format__()#

Convert to a string according to format_spec.

__ge__()#

Return self>=value.

__getattribute__()#

Return getattr(self, name).

__getnewargs__()#
__getstate__()#

Helper for pickle.

__gt__()#

Return self>value.

__hash__()#

Return hash(self).

__index__()#

Return self converted to an integer, if self is suitable for use as an index into a list.

__init__()#

Initialize self. See help(type(self)) for accurate signature.

__int__()#

int(self)

__invert__()#

~self

__le__()#

Return self<=value.

__lshift__()#

Return self<<value.

__lt__()#

Return self<value.

__mod__()#

Return self%value.

__mul__()#

Return self*value.

__ne__()#

Return self!=value.

__neg__()#

-self

__new__()#

Create and return a new object. See help(type) for accurate signature.

__or__()#

Return self|value.

__pos__()#

+self

__pow__()#

Return pow(self, value, mod).

__radd__()#

Return value+self.

__rand__()#

Return value&self.

__rdivmod__()#

Return divmod(value, self).

__reduce__()#

Helper for pickle.

__reduce_ex__()#

Helper for pickle.

__repr__()#

Return repr(self).

__rfloordiv__()#

Return value//self.

__rlshift__()#

Return value<<self.

__rmod__()#

Return value%self.

__rmul__()#

Return value*self.

__ror__()#

Return value|self.

__round__()#

Rounding an Integral returns itself.

Rounding with an ndigits argument also returns an integer.

__rpow__()#

Return pow(value, self, mod).

__rrshift__()#

Return value>>self.

__rshift__()#

Return self>>value.

__rsub__()#

Return value-self.

__rtruediv__()#

Return value/self.

__rxor__()#

Return value^self.

classmethod __signature__()#
__sizeof__()#

Returns size in memory, in bytes.

__str__()#

Return str(self).

__sub__()#

Return self-value.

__subclasshook__()#

Abstract classes can override this to customize issubclass().

This is invoked early on by abc.ABCMeta.subclasscheck(). It should return True, False or NotImplemented. If it returns NotImplemented, the normal algorithm is used. Otherwise, it overrides the normal algorithm (and the outcome is cached).

__truediv__()#

Return self/value.

__trunc__()#

Truncating an Integral returns itself.

__xor__()#

Return self^value.

as_integer_ratio()#

Return a pair of integers, whose ratio is equal to the original int.

The ratio is in lowest terms and has a positive denominator.

(10).as_integer_ratio() (10, 1) (-10).as_integer_ratio() (-10, 1) (0).as_integer_ratio() (0, 1)

bit_count()#

Number of ones in the binary representation of the absolute value of self.

Also known as the population count.

bin(13) ‘0b1101’ (13).bit_count() 3

bit_length()#

Number of bits necessary to represent self in binary.

bin(37) ‘0b100101’ (37).bit_length() 6

conjugate()#

Returns self, the complex conjugate of any int.

class denominator#

the denominator of a rational number in lowest terms

class imag#

the imaginary part of a complex number

is_integer()#

Returns True. Exists for duck type compatibility with float.is_integer.

name()#

The name of the Enum member.

class numerator#

the numerator of a rational number in lowest terms

class real#

the real part of a complex number

to_bytes()#

Return an array of bytes representing an integer.

length Length of bytes object to use. An OverflowError is raised if the integer is not representable with the given number of bytes. Default is length 1. byteorder The byte order used to represent the integer. If byteorder is ‘big’, the most significant byte is at the beginning of the byte array. If byteorder is ‘little’, the most significant byte is at the end of the byte array. To request the native byte order of the host system, use `sys.byteorder’ as the byte order value. Default is to use ‘big’. signed Determines whether two’s complement is used to represent the integer. If signed is False and a negative integer is given, an OverflowError is raised.

value()#

The value of the Enum member.