Search Results for

    Show / Hide Table of Contents

    Class PidFilterParams

    Containing the information related to how a pid-controller should low-pass filter its input signal

    Inheritance
    object
    PidFilterParams
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: TimeSeriesAnalysis.Dynamic
    Assembly: TimeSeriesAnalysis.dll
    Syntax
    public class PidFilterParams

    Constructors

    | Edit this page View Source

    PidFilterParams(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 Source

    FilterOrder

    The order of the low-pass filter. Values 0(off), 1 and 2 are supported

    Declaration
    public int FilterOrder
    Field Value
    Type Description
    int
    | Edit this page View Source

    IsEnabled

    Enable or disable the filtering with this variable

    Declaration
    public bool IsEnabled
    Field Value
    Type Description
    bool
    | Edit this page View Source

    TimeConstant_s

    Time-constant in seconds of the low-pass filter

    Declaration
    public double TimeConstant_s
    Field Value
    Type Description
    double
    • Edit this page
    • View Source
    In this article
    Back to top Generated by DocFX