Hello guys,
I have a question about lab11e. It works great in our application but there is one little thing I would like to solve. If the motor isn't spinning, there is a “summing noise”. (In other labs like 5a/b for example is it also there but barely audible)
I think this is needed to estimate the angle before the motor is spinning?
Do I need this if I start with hall sensors? If not can anyone tell me how to disable this noise?
To get rid of the noise I tried two things:
1.I disabled force angle, but this only reduced the noise a bit.
I think I do not need force angle with hall sensors at start-up, is this right?
2. I wanted to set PwmDuty to zero if no signal comes from the throttle but that does not work either.
// BLDC current loop
PID_run(pidHandle[3],gHall_BLDC_Is_ref_pu,gHall_BLDC_Is_fdb_pu,&gHall_PwmDuty);
if(gMotorVars.IqRef_A == 0)// gMotorVars.IqRef_A comes from throttle
gHall_PwmDuty=_IQ(0.0);
HALLBLDC_Ctrl_PwmSet(gHall_PwmState, gHall_PwmDuty);
Thank you
