NX6 Post Builder variables
NX6 Post Builder variables
(OP)
Hi everybody!
I get an error when in Cutcom_on event the X and Y coordinates added as not like usual $mom_pos(0) and (1), but $mom_nxt_pos(0).. mom_nxt_post must output the next coordinate to go - so it's written in help file.
Has anybody had the same problem with this variable? How could I solve the problem?
I get an error when in Cutcom_on event the X and Y coordinates added as not like usual $mom_pos(0) and (1), but $mom_nxt_pos(0).. mom_nxt_post must output the next coordinate to go - so it's written in help file.
Has anybody had the same problem with this variable? How could I solve the problem?





RE: NX6 Post Builder variables
I always add the Cutcom code(G40,G41,G42) to the Linear feed motion and the Cutcom Off G40 to the Rapid event.
Make it optional and modal. This should work for most machines.
John Joyce
Tata Technologies
1675 Larimer St.
Denver, CO
www.myigetit.com
NX5,6 Solid Works, Solid Edge
RE: NX6 Post Builder variables
I need output code like this:
N0001 G41 X0 Y0 D01
where X0 and Y0 - it X- and Y-coordinate of next goto point.
It is highly recommended that cutcom activation looked like this.
But I get something like this:
N0001 G41 D01
N0002 X0 Y0
RE: NX6 Post Builder variables
Add a custom command like this;
MOM_force once G_cutcom X Y D
Once you have this made, add this custom command to the "CUTCOM ON" event.
Presto.
J
RE: NX6 Post Builder variables
This is going to sound strange but on the cutcom on event remove the G41 and D words.
Then add them on the linear feed moves so it is combined with the motion.
or
As Jayden recommended add the MOM_force once G_cutcom X Y D
John Joyce
Tata Technologies
1675 Larimer St.
Denver, CO
www.myigetit.com
NX5,6 Solid Works, Solid Edge
RE: NX6 Post Builder variables
RE: NX6 Post Builder variables
Choose the "more" tab.
RE: NX6 Post Builder variables
Be sure to check that the tool is set up to output it.
click tool, then output. make sure the check box is ticked!!!
J
RE: NX6 Post Builder variables
I forgot to tick output box. Didn't pay attention ;)
Solved!