Patrick Venture | e620656 | 2018-03-08 15:36:53 -0800 | [diff] [blame] | 1 | 0x01: /* 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 Venture | 5f59c0f | 2018-11-11 12:55:14 -0800 | [diff] [blame] | 7 | /* For temp/margin PIDs this is the set-point, ignored otherwise (double) */ |
Patrick Venture | e620656 | 2018-03-08 15:36:53 -0800 | [diff] [blame] | 8 | set-point: 90.0 |
| 9 | pid: /* The PID calculation configuration. */ |
Patrick Venture | 5f59c0f | 2018-11-11 12:55:14 -0800 | [diff] [blame] | 10 | sampleperiod: 0.1 /* The input sample period. (double) */ |
| 11 | p_coefficient: 0.01 /* The proportional coefficient. (double) */ |
| 12 | i_coefficient: 0.001 /* The integral coefficient. (double) */ |
| 13 | /* The feed-forward offset coefficient. (double) */ |
Patrick Venture | e620656 | 2018-03-08 15:36:53 -0800 | [diff] [blame] | 14 | ff_off_coefficient: 0.0 |
Patrick Venture | 5f59c0f | 2018-11-11 12:55:14 -0800 | [diff] [blame] | 15 | /* The feed-forward gain coefficient. (double) */ |
Patrick Venture | e620656 | 2018-03-08 15:36:53 -0800 | [diff] [blame] | 16 | ff_gain_coefficient: 0.0 |
Patrick Venture | 5f59c0f | 2018-11-11 12:55:14 -0800 | [diff] [blame] | 17 | i_limit: /* The integral limit clamp, min, max (double) */ |
Patrick Venture | e620656 | 2018-03-08 15:36:53 -0800 | [diff] [blame] | 18 | min: 0 |
| 19 | max: 100 |
Patrick Venture | 5f59c0f | 2018-11-11 12:55:14 -0800 | [diff] [blame] | 20 | out_limit: /* the PID output clamp, min, max (double) */ |
Patrick Venture | e620656 | 2018-03-08 15:36:53 -0800 | [diff] [blame] | 21 | min: 0 |
| 22 | max: 100 |
Patrick Venture | 5f59c0f | 2018-11-11 12:55:14 -0800 | [diff] [blame] | 23 | slew_neg: -100 /* The slew negative value. (double) */ |
| 24 | slew_pos: 0 /* The slew positive value. (double) */ |