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 Flux



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);
       }
    
    Parameters:
    [in]  handle  The estimator (EST) handle
    Returns:
    The flux value, V/Hz, in floating point
  • 谢谢!

    这一段CODE 应该是返回磁通量的值,不是WB就可以吗?V/Hz怎么理解?有什么别的作用吗?