OPC Studio User's Guide and Reference
PercentDeadbandBucketsPerDecade Property (DAParameterBucketingParameters)



OpcLabs.EasyOpcClassicCore Assembly > OpcLabs.EasyOpc.DataAccess.Optimization Namespace > DAParameterBucketingParameters Class : PercentDeadbandBucketsPerDecade Property
Number of buckets per decade of percent deadband.
Syntax
'Declaration
 
<DataMemberAttribute()>
<ValueLimitsAttribute(1.401298E-45, 3.402823E+38)>
Public Property PercentDeadbandBucketsPerDecade As Single
'Usage
 
Dim instance As DAParameterBucketingParameters
Dim value As Single
 
instance.PercentDeadbandBucketsPerDecade = value
 
value = instance.PercentDeadbandBucketsPerDecade
[DataMember()]
[ValueLimits(1.401298E-45, 3.402823E+38)]
public float PercentDeadbandBucketsPerDecade {get; set;}
[DataMember()]
[ValueLimits(1.401298E-45, 3.402823E+38)]
public:
property float PercentDeadbandBucketsPerDecade {
   float get();
   void set (    float value);
}

Property Value

The percent deadband values (from 0.0 to 100.0) are divided into "buckets", using a logarithmic scale. This number specifies how many buckets will exist between values 10.0 - 100.0, and also 1.0 - 10.0, 0.1 - 1.0, and so forth. Percent deadbands requested will be adjusted so that the nearest bucket that fully satisfies the percent deadband requirement is used (i.e. the system may choose a percent deadband lower than requested, but not higher).

The default value of this property is 6.

Exceptions
ExceptionDescription

The value of an argument is outside the allowable range of values as defined by the invoked method.

This is a usage error, i.e. it will never occur (the exception will not be thrown) in a correctly written program. Your code should not catch this exception.

Requirements

Target Platforms: .NET Framework: Windows 10 (selected versions), Windows 11 (selected versions), Windows Server 2016, Windows Server 2022; .NET: Linux, macOS, Microsoft Windows

See Also