0

How can I convert the PID gain constants Kc, Ti and Td to the alternate form Kp, Ki and Td in LabVIEW?

Alternatively, how can i use Kc, Ti and Td in LabVIEW PID control?

Jonas
  • 121,568
  • 97
  • 310
  • 388
  • LabVIEW is a programming language. It sounds like you are using a particular library in that language. You are going to need to specify what library you are using for most folks to be able to help you. The names you are listing are not part of LabVIEW itself. – srm Dec 10 '16 at 05:06
  • This is a control theory question - it sounds as if you're familiar with the 'ideal' form of the PID equation but LabVIEW's PID toolkit looks like it uses the 'parallel' form: see http://digital.ni.com/public.nsf/allkb/6E76EC47B831FAED86256E4E007347DC and http://www.ni.com/white-paper/6440/en/ . If those articles don't give you the information you need I would ask on the NI forums. – nekomatic Dec 12 '16 at 09:06

1 Answers1

1

To address your first question, this VI does exactly that.

For your second question, the LabVIEW PID VIs all use the "academic" forms (Kc, Ti, Td). So, you can just wire those values in to the "PID gains" terminal in the PID VI.

maldata
  • 385
  • 1
  • 14