class VectorDriveParameters

August 13, 2019 ยท View on GitHub

Member values

Member nameData typeDescription
kpqfloat32Quadrature axis current proportional gain
kiqfloat32Quadrature axis current integral gain
kpdfloat32Direct axis current proportional gain
kidfloat32Direct axis current integral gain

Member functions

Function nameReturn typeInput typeDescription
kpq()float32voidReturns the current value of kpq. If the kpq is not set, returns 0.
set_kpq()voidfloat32Sets the value of kpq. After calling this, kpq() will return value.
clear_kpq()voidvoidClears the value of kpq. After calling this, kpq() will return 0.
kiq()float32voidReturns the current value of kiq. If the kiq is not set, returns 0.
set_kiq()voidfloat32Sets the value of kiq. After calling this, kiq() will return value.
clear_kiq()voidvoidClears the value of kiq. After calling this, kiq() will return 0.
kpd()float32voidReturns the current value of kpd. If the kpd is not set, returns 0.
set_kpd()voidfloat32Sets the value of kpd. After calling this, kpd() will return value.
clear_kpd()voidvoidClears the value of kpd. After calling this, kpd() will return 0.
kid()float32voidReturns the current value of kid. If the kid is not set, returns 0.
set_kid()voidfloat32Sets the value of kid. After calling this, kid() will return value.
clear_kid()voidvoidClears the value of kid. After calling this, kid() will return 0.

Parent topic: ActuatorConfig (C++)