Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

  • Congratulations waross on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

event errors

Status
Not open for further replies.

neeruk

Aerospace
Nov 3, 2010
24
0
0
CA
Hi All

I created a 5axis new postprocessor using ugnx7.5 post builder,Every thing is fine but when I excute that postprocessor I am getting mom_machine event error, Then I open the tcl file in wordpad I dont see any mom_events in my tcl file.Why it is?

But nx 7 I didnt faced any prob, I did my own posts as per specific programing formats using nx7 post builder.
thanks
 
Replies continue below

Recommended for you


Activate the review tool and see what is causing the error. the machine mode event is one of the first events encountered by the post.

John Joyce
N.C. Programming Supervisor
Barnes Aerospace, Windsor CT
NX6.0.5.3
 
You can look in your log file near the bottom and you will see where the error is coming from something like this. Or you can turn on verbose error messages in your post so when you receive the error it will put this in your error message. This is in output settings/other options/ display verbose error messages. The following error is looking at the first_op2 variable and it is either not globalled or it has not been set at this time.


***TCL_ERROR***: Event Handler: y:\NX\nx_config\ugnx_601\resource\\library\\machine\\installed_machines\14\N14029\postprocessor\N14029.tcl, Event: MOM_insert, Error: can't read "first_op2": no such variable
while executing
"if {$first_op2 == 1} {
if {![info exists count_msg]} {set count_msg 0}
incr count_msg
set delayed_msg($count_msg) $mom_Instru..."
(procedure "MOM_insert" line 17)
invoked from within
"MOM_insert"*** EXCEPTION: Error code 1770002 in line 472 of O:\ugnx602\ip8\src\camsmom\no\ind\mom_tcl_definitions.c at Wed Nov 04 08:49:43 2009 Central Standard Time
+++ ***TCL_ERROR***: Event Handler: y:\NX\nx_config\ugnx_601\resource\\library\\machine\\installed_machines\14\N14029\postprocessor\N14029.tcl, Event: MOM_insert, Error: can't read "first_op2": no such variable
while executing
"if {$first_op2 == 1} {
if {![info exists count_msg]} {set count_msg 0}
incr count_msg
set delayed_msg($count_msg) $mom_Instru..."
(procedure "MOM_insert" line 17)
invoked from within
"MOM_insert"
 
Hi

Really its somewhat crazy, Just I open a post file which is working in post builder 7.5, I dint changed anything just Idid save as given other name.
When I try output its giving error ie mom_tcl_definations. line number 503.

2nd one what is difference between CAM_KIT_POST100 and CAM_KIT_POST_101 in post builder

Thanks


 
Status
Not open for further replies.
Back
Top