CNCzone.com-The Largest Machinist Community on the net!



Home Page Mark Forums Read Today's Posts My Replies Classifieds Reviews Photo Gallery Web Links Share Files Advertise With Us Ad List
Go Back   CNCzone.com-The Largest Machinist Community on the net! > CAM Software > UG NX


UG NX UG CAD/CAM Discussion


This forum is sponsored by:

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Ban this user!
Old 01-14-2009, 12:08 PM
weirdharold's Avatar  
Join Date: Sep 2007
Location: usa
Age: 56
Posts: 126
weirdharold is on a distinguished road
no line numbers

Good Day. I would like to be able to post code with no line numbers , but I don't know where to change it. Using NX5. Attached is sample code. Also using modified default 3 axis mill pui. post. Thank's in advance. Harold C.
Attached Files
File Type: txt test.txt‎ (3.1 KB, 74 views)
Tweet this Post!Share on Facebook
Reply With Quote

  #2   Ban this user!
Old 01-15-2009, 12:40 PM
 
Join Date: Jan 2009
Location: USA
Age: 59
Posts: 1
trandolph is on a distinguished road
No line numbers

If you are using a NX post created using the post builder, open the post in the post builder. Go to the Program and Toolpath tab and select the Program Start Sequence in the left side window. Go to the right side window and see the Start of Program event that contains some block entries. Select the Mom_set_seq on and delete or remove it. Save the post and try it now. This should eliminate the sequence numbers.
If you do not have a NX Post, then go to the first operation and add an Start of Path command in the maching control tab. Sequence numbers needs to be set inactive.

Remember that the sequence numbers are used at the floor for restarting the program at a specific block and with this you will not longer have that option.

Hope this helps.
Tim
Tweet this Post!Share on Facebook
Reply With Quote

  #3   Ban this user!
Old 01-15-2009, 07:09 PM
weirdharold's Avatar  
Join Date: Sep 2007
Location: usa
Age: 56
Posts: 126
weirdharold is on a distinguished road
Smile That's it !

Thank's Tim. Going to the first operation and adding a Start of Path command in the maching control tab worked great for now. The box I'm on now does not have Post Builder on it, but when I get a little time I'll try the post modification on the one that does have it. Have a good Day ! Harold





After submitting this comment , realized Post Builder is on this box & modified post per your instruction's & it work's also. Again , thank's !



Harold C.

Last edited by weirdharold; 01-16-2009 at 09:39 AM. Reason: Post builder was on computer !
Tweet this Post!Share on Facebook
Reply With Quote

  #4   Ban this user!
Old 01-18-2009, 10:13 AM
 
Join Date: Jun 2008
Location: USA
Posts: 15
SnakeD0ct0r is on a distinguished road

I myself do not like sequence numbers throught my programs, however I do like one at the start of an operation. I use the tool offset number for the N#, not the tool number. I do this because the first time I use a tool it would be T01 H01, but the second time I use it it I would change the offset number, T01 H31. I find it easier to search the program by offset number. The following is a command you can cut and paste into your post that will give you N offset # and tool description at the beginning of an operation.

#=============================================================
proc PB_CMD_announce_tool { } {
#=============================================================
# -------------------------------------------------------
# PB_CMD_announce_tool
#
# Issues operator display message for tool change
# - uses TOOL CATALOG NUMBER field if present, else
# tool parent object name
#
# Bind somewhere in the AUTO TOOL CHANGE event
# -------------------------------------------------------

global mom_tool_adjust_register
global mom_sys_control_out mom_sys_control_in
global mom_tool_number mom_tool_catalog_number mom_tool_name

# set up some variables so that control OUT and IN can be
# used as needed in output blocks:
# - CONTROL OUT = ${co}
# - CONTROL IN = ${ci}
set co $mom_sys_control_out; set ci $mom_sys_control_in

if { $mom_tool_catalog_number!="" } {
set tnam [string toupper $mom_tool_catalog_number]
} else {
set tnam [string toupper $mom_tool_name]
}

MOM_output_text "N$mom_tool_adjust_register ${co}TOOL NO. $mom_tool_number - $tnam${ci}"
}
Tweet this Post!Share on Facebook
Reply With Quote

  #5   Ban this user!
Old 01-19-2009, 10:12 AM
weirdharold's Avatar  
Join Date: Sep 2007
Location: usa
Age: 56
Posts: 126
weirdharold is on a distinguished road
Interesting

I like this modification, SnakeD0ct0r. Sometimes I have to use one tool with 2 or more H offset's. I have seen it cause some problem's in my work-place, but usually due to lack of communication. I leave note's to day-shift to alert them of this mod , but they never let me know, if say they broke Tool 1, with H1 & H11 assigned to it. But I've learned to never assume anything & first thing I do is spend a few moment's reviewing controller at start of shift, ( we use Haas ) & see what's going on . Enough rambling . The only place I found any text like your's was in the .tcl file & was here :


#------------------
# Tool list footer
#------------------
shop_doc_output_literal "$co=============================$ci"


#-------------------------------------------------------------------------------
# Restore info for the currently active tool in the program being post-prcessed.
#-------------------------------------------------------------------------------
if [llength [info commands PB_CMD_restore_active_oper_tool_data] ] {
PB_CMD_restore_active_oper_tool_data
}
}


#=============================================================
proc PB_CMD_custom_command { } {
#=============================================================
}


#=============================================================
proc PB_CMD_custom_command_1 { } {
#=============================================================
MOM_output_literal "
"
}


#=============================================================
proc PB_CMD_end_of_alignment_character { } {
#=============================================================
# Return sequnece number back to orignal
# This command may be used with the command "PM_CMD_start_of_alignment_character"

global mom_sys_leader saved_seq_num
set mom_sys_leader(N) $saved_seq_num
}






Am I even close ? Don't really know where to insert your text or replace & where .

Thank's for your help !

Harold C.
Tweet this Post!Share on Facebook
Reply With Quote

Sponsored Links
  #6   Ban this user!
Old 01-19-2009, 12:48 PM
 
Join Date: Jun 2008
Location: USA
Posts: 15
SnakeD0ct0r is on a distinguished road

Download attached zip file, it contains a sample post, open it up in post builder. Go to Operation Start Sequence section, I added the custom command just before the tool change. This is a hand written custom command and is not part of the out of the box data. Try this post against a sample file.
Attached Files
File Type: zip new_post.zip‎ (35.5 KB, 38 views)
Tweet this Post!Share on Facebook
Reply With Quote

  #7   Ban this user!
Old 01-22-2009, 10:42 AM
weirdharold's Avatar  
Join Date: Sep 2007
Location: usa
Age: 56
Posts: 126
weirdharold is on a distinguished road
Tested

Got a little free time at work to try this out & work's good . Could not open up your post with our PostBuilder as your's is a newer version , but with the other info you gave me , I realized custom text goes in PostBuilder & I went from there & got the end result .


Thank's
Harold C.
Tweet this Post!Share on Facebook
Reply With Quote

Reply




Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Line numbers Eritex Inc. Mastercam 6 12-12-2008 10:35 PM
Line numbers batmill G-Code Programing 11 09-16-2007 04:25 AM
Line numbers Fanuc OMD Gncc50 Fanuc 1 08-22-2007 02:30 PM
How to get rid of line numbers in NC code mcoughlin CamWorks 1 04-16-2007 11:30 PM
G-Code Line Numbers? Imagineering G-Code Programing 3 08-17-2005 08:26 AM




All times are GMT -5. The time now is 04:25 PM.





Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2012, vBulletin Solutions, Inc.
Content Relevant URLs by vBSEO
Template-Modifications by TMS

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353