Tool/software:
Hi,
I'm using the universal motor control project inside the MotorControl SDK (5.0.2) and want to identify a ACIM. I have identified a lot of PMSM already, but never a ACIM before and I encoutered some trouble there.
Hardware Specifications:
- Custom Made (works perfectly for PMSM and the measured current + voltages match to the real values verified with an Osci)
- Current measurement range: 8.25A
ACIM:
- 400VAC in star configuration
- Nominal speed of 2830rpm
- 2 Poles
- Nominal current of 3.4A
- Measured phase to phase resistance of 13.4Ohm
- 2.2kW
So, since I do not have more parameters from the motor I want to identfy it. The resistance estimation is at 6.7Ohm, that might work out (think it is /sqrt(3) for line to neutral) and then the motor starts turning. After it found an magnetizing current of around 1.08A, the motor runs fine and then stalls, when it tries to identify the inductance. The motorVars_M1.flagEnableRunAndIdentify turn to zero, but it somehow tries to identify the inductance and gets a value, that then decreases to zero. Then it even goes to the rotor resistance estimation, and there is now error occuring. Any idea, what I'am missing here?
#define USER_MOTOR1_TYPE MOTOR_TYPE_INDUCTION #define USER_MOTOR1_NUM_POLE_PAIRS (1) #define USER_MOTOR1_Rr_Ohm (NULL) #define USER_MOTOR1_Rs_Ohm (NULL) #define USER_MOTOR1_Ls_d_H (NULL) #define USER_MOTOR1_Ls_q_H (NULL) / #define USER_MOTOR1_RATED_FLUX_VpHz (0.8165f*230.0f/50.0f) //STAR: 230VAC, DELTA: 400VAC #define USER_MOTOR1_MAGNETIZING_CURRENT_A (NULL) #define USER_MOTOR1_RES_EST_CURRENT_A (1.5f) #define USER_MOTOR1_IND_EST_CURRENT_A (NULL) #define USER_MOTOR1_MAX_CURRENT_A (2.5f) #define USER_MOTOR1_FLUX_EXC_FREQ_Hz (5.0f) #define USER_MOTOR1_NUM_ENC_SLOTS (NULL) #define USER_MOTOR1_INERTIA_Kgm2 (7.06154e-03f) #define USER_MOTOR1_FREQ_NEARZEROLIMIT_Hz (1.0f) // Hz #define USER_MOTOR1_RATED_VOLTAGE_V (400.0) #define USER_MOTOR1_FREQ_MIN_Hz (1.0) // Hz #define USER_MOTOR1_FREQ_MAX_Hz (400.0) // Hz #define USER_MOTOR1_FREQ_LOW_Hz (5.0) // Hz #define USER_MOTOR1_FREQ_HIGH_Hz (200.0) // Hz #define USER_MOTOR1_VOLT_MIN_V (20.0) // Volt #define USER_MOTOR1_VOLT_MAX_V (200.0) // Volt #define USER_MOTOR1_FORCE_DELTA_A (0.05f) // A #define USER_MOTOR1_ALIGN_DELTA_A (0.01f) // A #define USER_MOTOR1_FLUX_CURRENT_A (0.5f) // A #define USER_MOTOR1_ALIGN_CURRENT_A (USER_MOTOR1_MAX_CURRENT_A) // A #define USER_MOTOR1_STARTUP_CURRENT_A (USER_MOTOR1_MAX_CURRENT_A) // A #define USER_MOTOR1_TORQUE_CURRENT_A (USER_MOTOR1_MAX_CURRENT_A) // A #define USER_MOTOR1_OVER_CURRENT_A (7.0f) // A #define USER_MOTOR1_SPEED_START_Hz (1.0) #define USER_MOTOR1_SPEED_FORCE_Hz (25.0) #define USER_MOTOR1_ACCEL_START_Hzps (10.0) #define USER_MOTOR1_ACCEL_MAX_Hzps (10.0) #define USER_MOTOR1_SPEED_FS_Hz (3.0) // only for encoder, N/A #define USER_MOTOR1_ENC_POS_MAX (USER_MOTOR1_NUM_ENC_SLOTS * 4 - 1) #define USER_MOTOR1_ENC_POS_OFFSET (668) // Only for eSMO, N/A #define USER_MOTOR1_KSLIDE_MAX (1.50f) #define USER_MOTOR1_KSLIDE_MIN (0.15f) #define USER_MOTOR1_PLL_KP_MAX (7.25f) #define USER_MOTOR1_PLL_KP_MIN (1.25f) #define USER_MOTOR1_PLL_KP_SF (5.0f) #define USER_MOTOR1_PLL_KI (2.8125E-06f) // Not used, reserve #define USER_MOTOR1_BEMF_THRESHOLD (0.5f) #define USER_MOTOR1_BEMF_KSLF_FC_SF (2.0f) #define USER_MOTOR1_THETA_OFFSET_SF (1.0f) #define USER_MOTOR1_SPEED_LPF_FC_Hz (200.0f) // for IS-BLDC, N/A #define USER_MOTOR1_RAMP_START_Hz (1.0f) #define USER_MOTOR1_RAMP_END_Hz (30.0f) #define USER_MOTOR1_RAMP_DELAY (1) #define USER_MOTOR1_ISBLDC_INT_MAX (0.015f) #define USER_MOTOR1_ISBLDC_INT_MIN (0.010f) #define USER_MOTOR1_SPEED_CTRL_DIRECT_SET (true) #define USER_MOTOR1_SPEED_CTRL_KP (0.4f) //2.0f //0.4f #define USER_MOTOR1_SPEED_CTRL_KI (0.01f) //0.025f //0.01f // for Rs online calibration #define USER_MOTOR1_RSONLINE_WAIT_TIME (60000U) // 5min/300s at 5ms base #define USER_MOTOR1_RSONLINE_WORK_TIME (24000U) //2min/120s at 5ms base
Here seems to be a similar issue: e2e.ti.com/.../5659741
Question: Is it correct that the PWM is completely turned off during inductance and Rr calibration? Because that is what the estimator seems to do and then it nears some value that could make sense, but I don't see how it does that with disabling PWM?
Solved it, the problem was the too high sensitivity in the magnetic current estimation and no timeout in the rotor lock state