blob: 8321b398957d2baf26a20ecde4e728b0b458090f [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 Venture5f59c0f2018-11-11 12:55:14 -08007 /* For temp/margin PIDs this is the set-point, ignored otherwise (double) */
Patrick Venturee6206562018-03-08 15:36:53 -08008 set-point: 90.0
9 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) */