Jump to content
OMRON Forums

About G93?


Unicornai

Recommended Posts

I used G93 and to set Coord[1].InvTimeMode = 1,then my prog finishtime is 1S with "F1" command,but when i used "F2" command it

finishtime is 0.5S,and "F0.5" command's finishtime is 2S,and if i want to set  when i use "F1" command it finished in 1S,"F2" finished in

2S,"F0.5" finished in 0.5S,how shoud i do?  

Link to comment
Share on other sites

  • Replies 3
  • Created
  • Last Reply

Top Posters In This Topic

Popular Days

Top Posters In This Topic

Posted (edited)

From my understanding, the Coord[x].InvTimeMode only applies to linear and circle move modes.
So, I would try to add the linear or circle command on top of the program, to make sure that one of these modes are set.

You can also check querying Coord[x].MoveMode.

[EDIT] Correcting myself, if no move mode is declared it will be used the linear mode anyway.

I think for you getting the behaviour that you are expecting the program should be something like:

open prog1

X-1 Z-1 F1

X-1 Z-1 F(1/0.5)

X-1 Z-1 F(1/2)

CLOSE

Alternatively, you can use the TM command instead:

open prog1

X-1 Z-1 TM1

X-1 Z-1 TM0.5

X-1 Z-1 TM2

CLOSE

Edited by leandro.martins
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.


×
×
  • Create New...