Class PidFilterParams
Containing the information related to how a pid-controller should low-pass filter its input signal
Inherited Members
Namespace: TimeSeriesAnalysis.Dynamic
Assembly: TimeSeriesAnalysis.dll
Syntax
public class PidFilterParams
Constructors
| Edit this page View SourcePidFilterParams(bool, int, double)
Default contstructor
Declaration
public PidFilterParams(bool IsEnabled = false, int FilterOrder = 0, double TimeConstant_s = 0)
Parameters
Type | Name | Description |
---|---|---|
bool | IsEnabled | |
int | FilterOrder | |
double | TimeConstant_s |
Fields
| Edit this page View SourceFilterOrder
The order of the low-pass filter. Values 0(off), 1 and 2 are supported
Declaration
public int FilterOrder
Field Value
Type | Description |
---|---|
int |
IsEnabled
Enable or disable the filtering with this variable
Declaration
public bool IsEnabled
Field Value
Type | Description |
---|---|
bool |
TimeConstant_s
Time-constant in seconds of the low-pass filter
Declaration
public double TimeConstant_s
Field Value
Type | Description |
---|---|
double |