InstaSPIN-FOC lab中的EST_getFlux_VpHz函数有什么作用!求帮助!磁链的估算 为啥 V/Hz表示?
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
InstaSPIN-FOC lab中的EST_getFlux_VpHz函数有什么作用!求帮助!磁链的估算 为啥 V/Hz表示?
| float32_t EST_getFlux_VpHz | ( | EST_Handle | handle | ) |
Gets the flux value in Volts per Hertz (V/Hz).
The estimator continuously calculates the flux linkage between the rotor and stator, which is the portion of the flux that produces torque. This function returns the flux linkage, ignoring the number of turns, between the rotor and stator coils, in Volts per Hertz, or V/Hz. This functions returns a precise value only after the motor has been identified, which can be checked by the following code example:
if(EST_isMotorIdentified(handle)) { // once the motor has been identified, get the flux float32_t Flux_VpHz = EST_getFlux_VpHz(handle); }
| [in] | handle | The estimator (EST) handle |