blob: 5161d7fe25d0eac81a3ee260eb0981864c9da47d [file] [log] [blame]
Patrick Venturee6206562018-03-08 15:36:53 -080010x01: /* zone ID */
2 fan2-6: /* PID name */
3 type: fan /* Type of PID, fan, temp, or margin. */
4 inputs: /* Sensor names that are inputs for the PID */
5 fan2
6 fan6
Patrick Venture7280e272019-02-11 10:45:32 -08007 /* For temp/margin PIDs this is the setpoint, ignored otherwise (double) */
8 setpoint: 90.0
Patrick Venturee6206562018-03-08 15:36:53 -08009 pid: /* The PID calculation configuration. */
Patrick Venture7442c372019-02-11 10:21:05 -080010 samplePeriod: 0.1 /* The input sample period. (double) */
11 proportionalCoeff: 0.01 /* The proportional coefficient. (double) */
12 integralCoeff: 0.001 /* The integral coefficient. (double) */
Patrick Venture5f59c0f2018-11-11 12:55:14 -080013 /* The feed-forward offset coefficient. (double) */
Patrick Venture7442c372019-02-11 10:21:05 -080014 feedFwdOffOffsetCoeff: 0.0
Patrick Venture5f59c0f2018-11-11 12:55:14 -080015 /* The feed-forward gain coefficient. (double) */
Patrick Venture7442c372019-02-11 10:21:05 -080016 feedFwdGainCoeff: 0.0
17 integralCoeff: /* The integral limit clamp, min, max (double) */
Patrick Venturee6206562018-03-08 15:36:53 -080018 min: 0
19 max: 100
Patrick Venture7442c372019-02-11 10:21:05 -080020 outLimit: /* the PID output clamp, min, max (double) */
Patrick Venturee6206562018-03-08 15:36:53 -080021 min: 0
22 max: 100
Patrick Venture7442c372019-02-11 10:21:05 -080023 slewNeg: -100 /* The slew negative value. (double) */
24 slewPos: 0 /* The slew positive value. (double) */