Class HeaterModelPID
Details about the PID model of a heater
Inherited Members
Namespace: DuetAPI.ObjectModel
Assembly: DuetAPI.dll
Syntax
public sealed class HeaterModelPID : ModelObject, IModelObject, ICloneable, INotifyPropertyChanged, INotifyPropertyChanging
Properties
D
Derivative value of the PID regulator
Declaration
public float D { get; set; }
Property Value
Type | Description |
---|---|
float |
I
Integral value of the PID regulator
Declaration
public float I { get; set; }
Property Value
Type | Description |
---|---|
float |
Overridden
Indicates if custom PID values are used
Declaration
public bool Overridden { get; set; }
Property Value
Type | Description |
---|---|
bool |
P
Proportional value of the PID regulator
Declaration
public float P { get; set; }
Property Value
Type | Description |
---|---|
float |
Used
Indicates if PID control is being used
Declaration
public bool Used { get; set; }
Property Value
Type | Description |
---|---|
bool |