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! > Machine Controllers Software and Solutions > Post Processor Files


Post Processor Files Discuss post processor files here!


Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Ban this user!
Old 01-07-2010, 04:27 PM
 
Join Date: Mar 2006
Location: USA
Posts: 81
phoodieman is on a distinguished road
Feedrate Setting In Post

This pertains to lathe. The generic post works great for me except when threading. It posts out an "E" instead of an "F". Once I edit to F everything runs good. It only puts the E when threading. All other operations use an F. So where in the post can I change to get the F I need?

Phoodieman
Reply With Quote

  #2   Ban this user!
Old 01-16-2010, 04:15 PM
 
Join Date: Aug 2008
Location: usa
Posts: 5
concoo is on a distinguished road

it easy to do .
open the post -> goto here
# --------------------------------------------------------------------------
# General Output Settings
# --------------------------------------------------------------------------
force_wcs : yes$ #Force WCS output at every toolchange?
progname$ : 1 #Use uppercase for program name
css_start_rpm : yes$ #Do direct RPM spindle start prior to CSS?
css_end_rpm : yes$ #Do direct RPM spindle prior to Retract?
prog_stop : 1 #Program stop at toolchange: 0=None, 1=M01, 2 = M00
tool_info : 3 #Output tool information?
#0 = Off - Do not output any tool comments or tool table
#1 = Tool comments only
#2 = Tool table only
#3 = Tool comments and tool table
use_pitch : 0 #0 = Use feed for tapping (force Feed/Min), 1 = Use pitch for tapping (force Feed/Rev)
rigid_tap : 1 #0 = Floating tap output
#1 = Rigid tap output (Set parameter 5200 bit 0 to 1 for rigid)
#(Set M code for rigid tap in parameter 5210)
tap_feed : 1 #0 = 2/1 (in/mm) decimal places, 1 = 4/3 (in/mm) decimal places
thread_address :1 #Thread pitch address for lathe threading, 0 = Use F, 1 = Use E

change number 1 to 0 at red color, you will got F instead of E .
hope it will help .
Reply With Quote

  #3   Ban this user!
Old 01-19-2010, 09:31 AM
 
Join Date: Mar 2006
Location: USA
Posts: 81
phoodieman is on a distinguished road
Feedrate

Originally Posted by concoo View Post
it easy to do .
open the post -> goto here
# --------------------------------------------------------------------------
# General Output Settings
# --------------------------------------------------------------------------
force_wcs : yes$ #Force WCS output at every toolchange?
progname$ : 1 #Use uppercase for program name
css_start_rpm : yes$ #Do direct RPM spindle start prior to CSS?
css_end_rpm : yes$ #Do direct RPM spindle prior to Retract?
prog_stop : 1 #Program stop at toolchange: 0=None, 1=M01, 2 = M00
tool_info : 3 #Output tool information?
#0 = Off - Do not output any tool comments or tool table
#1 = Tool comments only
#2 = Tool table only
#3 = Tool comments and tool table
use_pitch : 0 #0 = Use feed for tapping (force Feed/Min), 1 = Use pitch for tapping (force Feed/Rev)
rigid_tap : 1 #0 = Floating tap output
#1 = Rigid tap output (Set parameter 5200 bit 0 to 1 for rigid)
#(Set M code for rigid tap in parameter 5210)
tap_feed : 1 #0 = 2/1 (in/mm) decimal places, 1 = 4/3 (in/mm) decimal places
thread_address :1 #Thread pitch address for lathe threading, 0 = Use F, 1 = Use E

change number 1 to 0 at red color, you will got F instead of E .
hope it will help .
This is the General Settings Info....no mention of feed rate there. I have looked for the thread addres info. Couldn't find that. Has to be in the post somewhere I just can't figure out where. I checked the G76 section. couldn't see anything having to do with feedrate.
# --------------------------------------------------------------------------
# General Output Settings
# --------------------------------------------------------------------------
sub_level : 1 #Enable automatic subprogram support
breakarcs : 1 #Break arcs, 0 = no, 1 = quadrants, 2 = 180deg. max arcs
arcoutput : 1 #0 = IJK, 1 = R no sign, 2 = R signed neg. over 180
arctype : 2 #Arc center 1=abs, 2=St-Ctr, 3=Ctr-St, 4=unsigned inc.
do_full_arc : 0 #Allow full circle output? 0=no, 1=yes
helix_arc : 0 #Support helix arc output, 0=no, 1=all planes, 2=XY plane only
arccheck : 1 #Convert small arcs to linear
atol : .01 #Angularity tolerance for arccheck
ltol : .002 #Length tolerance for arccheck
vtol : .0001 #System tolerance
maxfeedpm : 500 #Limit for feed in inch/min
lcc_move : .05 #Enter the move in X, Z for lathe canned cycle comp.
ltol_m : .05 #Length tolerance for arccheck, metric
vtol_m : .0025 #System tolerance, metric
maxfeedpm_m : 10000 #Limit for feed in mm/min
lcc_move_m : 1.25 #Enter the move in X, Z for lathe canned cycle comp.,mm

force_wcs : yes #Force WCS output at every toolchange?
spaces : 1 #Number of spaces to add between fields
omitseq : no #Omit sequence numbers? (use -1 to enable sequence for LCC)
seqmax : 9999 #Max. sequence number
nobrk : no #Omit breakup of x, y & z rapid moves
progname : 1 #Use uppercase for program name
rotaxtyp : 3 #Rotary axis type for toolplane
tooltable : 3 #Read for tool table and pwrtt (3 recalls pwrtt at sof)
ref_ret : 0 #G29 / G30 return variable from Mi3
css_start_rpm : yes #Do direct RPM spindle start prior to CSS ?

Phoodieman
Reply With Quote

  #4   Ban this user!
Old 01-21-2010, 08:13 AM
 
Join Date: Mar 2006
Location: USA
Posts: 81
phoodieman is on a distinguished road
Solved: Change Feedrate from E to F

I did a search for E and F and found this. I noticed the stre and strf callouts

# ---------------------------------------------------
#String and string selector definitions for NC output
# ---------------------------------------------------
#Address string definitions
stra "A" #String for address A
strd "D" #String for address D
stre "E" #String for address E
strf "F" #String for address F
stri "I" #String for address I
strk "K" #String for address K

Then I searched for stre and found this....

#Format feedrate for lathe thread
result = nwadrs(stre, feed)
result = newfs (19, feed)

When I changed the stre to strf I got the F for feedrate in the posted out program. What a hassle.

Phoodieman
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 Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Need Help!- feedrate wire qwerty1000 Post Processors for MC 3 10-25-2009 10:11 PM
Need Help!- 0i-MC feedrate is ignored after a tap cycle jhartleyjr Fanuc 9 06-27-2009 07:07 PM
Need Help!- Could someone post there setting for a HY02D223B Ed Williams DIY-CNC Router Table Machines 6 05-20-2009 12:23 PM
Need Help!- G02, G03 Feedrate !!!!! usb TurboCNC 2 09-15-2008 07:19 PM
Newbie- Help setting up post process from TCC to Mach3 56speedster TurboCAD/CAM 0 03-28-2008 10:14 PM




All times are GMT -5. The time now is 05:25 AM.





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 354 355 356 357 358 359 360 361