Jump to content
OMRON Forums

Torque Feed Forward


gregaxisne.com

Recommended Posts

Working on a torque feed forward setup and was wondering if there is a structure built in at the motor level for desired accel (similar to despos or desvel) that could be used in the algorithm.

 

Currently using desired.accel at the trajectory level causes issues with the CS segmentation time causing the signal not to be smooth.

 

I know it can be calculated easily every servo cycle, but was hoping there is a more elegant way.....possibly a structure in a later firmware?

Link to comment
Share on other sites

  • Replies 2
  • Created
  • Last Reply

Top Posters In This Topic

Popular Days

Top Posters In This Topic

Our own servo algorithms store the DesVel value for the next cycle in the "F" polynomial filter's uf1 element of the Servo substructure. Then you can just subtract this from the new DesVel term to get your desired acceleration value.

 

MyDesAccel = Mptr->DesVel - Mptr->Servo.uf1;

...

Mptr->Servo.uf1 - Mptr->DesVel; // For next cycle

 

We don't save a desired acceleration term because we must save the desired velocity term from cycle to cycle for the F filter and it is one simple operation to derive it.

 

The trajectory acceleration term you tried to use is the value of acceleration at the start of each segment (a0) when the trajectory is running at 100% and there is no master position change and no desired position compensation.

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.

×
×
  • Create New...