altdss.enums#
Module Contents#
Classes#
AutoAdd Device Type (DSS enumeration) |
|
AutoTrans: Connection (DSS enumeration) |
|
CapControl: Type (DSS enumeration) |
|
Circuit Model (DSS enumeration) |
|
Connection (DSS enumeration) |
|
Control Mode (DSS enumeration) |
|
Core Type (DSS enumeration) |
|
DynamicExp: Domain (DSS enumeration) |
|
ESPVLControl: Type (DSS enumeration) |
|
Earth Model (DSS enumeration) |
|
EnergyMeter: Action (DSS enumeration) |
|
A very limited set of functions accept the numbers from this enumeration as shortcuts to the internal prepared element lists of the engine. |
|
Fuse: Action (DSS enumeration) |
|
Fuse: State (DSS enumeration) |
|
GICTransformer: Type (DSS enumeration) |
|
Generator: Dispatch Mode (DSS enumeration) |
|
Generator: Model (DSS enumeration) |
|
Generator: Status (DSS enumeration) |
|
IndMach012: Slip Option (DSS enumeration) |
|
InvControl: Combi Mode (DSS enumeration) |
|
InvControl: Control Mode (DSS enumeration) |
|
InvControl: Control Model (DSS enumeration) |
|
InvControl: Rate-of-change Mode (DSS enumeration) |
|
InvControl: Reactive Power Reference (DSS enumeration) |
|
InvControl: Volt-Watt Y-Axis (DSS enumeration) |
|
InvControl: Voltage Curve X Ref (DSS enumeration) |
|
Inverter Control Mode (DSS enumeration) |
|
Length Unit (DSS enumeration) |
|
Line Type (DSS enumeration) |
|
Load: Model (DSS enumeration) |
|
LoadShape: Action (DSS enumeration) |
|
Load Shape Class (DSS enumeration) |
|
LoadShape: Interpolation (DSS enumeration) |
|
Load Solution Model (DSS enumeration) |
|
Load: Status (DSS enumeration) |
|
Monitor: Action (DSS enumeration) |
|
Monitored Phase (DSS enumeration) |
|
PVSystem: Model (DSS enumeration) |
|
Phase Sequence (DSS enumeration) |
|
Plot: Profile Phases (DSS enumeration) |
|
PriceShape: Action (DSS enumeration) |
|
Random Type (DSS enumeration) |
|
Recloser: Action (DSS enumeration) |
|
Recloser: State (DSS enumeration) |
|
Reduction Strategy (DSS enumeration) |
|
RegControl: Phase Selection (DSS enumeration) |
|
Relay: Action (DSS enumeration) |
|
Relay: State (DSS enumeration) |
|
Relay: Type (DSS enumeration) |
|
Scan Type (DSS enumeration) |
|
Sequence Type (DSS enumeration) |
|
Solution Algorithm (DSS enumeration) |
|
Solution Mode (DSS enumeration) |
|
StorageController: Charge Mode (DSS enumeration) |
|
StorageController: Discharge Mode (DSS enumeration) |
|
Storage: Dispatch Mode (DSS enumeration) |
|
Storage: State (DSS enumeration) |
|
SwtControl: Action (DSS enumeration) |
|
SwtControl: State (DSS enumeration) |
|
TShape: Action (DSS enumeration) |
|
UPFC: Mode (DSS enumeration) |
|
VSConverter: Control Mode (DSS enumeration) |
|
VSource: Model (DSS enumeration) |
|
Visualize: Quantity (DSS enumeration) |
API#
- class altdss.enums.AutoAddDeviceType#
Bases:
enum.IntEnumAutoAdd 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.IntEnumAutoTrans: 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.IntEnumCapControl: 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.IntEnumCircuit 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.IntEnumConnection (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.IntEnumControl 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.IntEnumCore 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.IntEnumDynamicExp: 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.IntEnumESPVLControl: 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.IntEnumEarth 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.IntEnumEnergyMeter: 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.IntEnumA 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.IntEnumFuse: 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.IntEnumFuse: 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.IntEnumGICTransformer: 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.IntEnumGenerator: 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.IntEnumGenerator: 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.IntEnumGenerator: 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.IntEnumIndMach012: 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.IntEnumInvControl: 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.IntEnumInvControl: 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.IntEnumInvControl: 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.IntEnumInvControl: 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.IntEnumInvControl: 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.IntEnumInvControl: 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.IntEnumInvControl: 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.IntEnumInverter 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.IntEnumLength 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.IntEnumLine 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.IntEnumLoad: 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.IntEnumLoadShape: 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.IntEnumLoad 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.IntEnumLoadShape: 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.IntEnumLoad 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.IntEnumLoad: 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.IntEnumMonitor: 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.IntEnumMonitored 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.IntEnumPVSystem: 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.IntEnumPhase 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.IntEnumPlot: 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.IntEnumPriceShape: 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.IntEnumRandom 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.IntEnumRecloser: 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.IntEnumRecloser: 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.IntEnumReduction 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.IntEnumRegControl: 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.IntEnumRelay: 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.IntEnumRelay: 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.IntEnumRelay: 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.IntEnumScan 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.IntEnumSequence 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.IntEnumSolution 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.IntEnumSolution 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.IntEnumStorageController: 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.IntEnumStorageController: 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.IntEnumStorage: 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.IntEnumStorage: 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.IntEnumSwtControl: 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.IntEnumSwtControl: 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.IntEnumTShape: 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.IntEnumUPFC: 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.IntEnumVSConverter: 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.IntEnumVSource: 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.IntEnumVisualize: 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.