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 > G-Code Programing > Parametric Programing


Parametric Programing (custom macro b, fadal macro, okuma user task)


This forum is sponsored by:

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Ban this user!
Old 04-30-2010, 10:06 AM
ED209's Avatar  
Join Date: Jul 2003
Location: Alberta, Canada
Posts: 67
ED209 is on a distinguished road
Macro B To Heidenhain Q parameter Conversion

I have a macro I wrote in Fanuc Macro B (& converted to okuma) and need to convert it to a Hiedenhain TNC426 control now. I see the use of the FN0: to FN?: to declare the variables or math operation. Is it possible to combine different math operations ?.

FN0: Q20=-8.5;CENTER OF PORT ON X-AXIS FROM TOUCH OFF POINT
FN1: Q29=Q29+Q26;STEP DOWN COUNTER

FN?: Q38=Q22/2-Q30-Q35
FN?: Q32=Q25-[.5*Q25]


IF [[Q38]GT[Q23/2-Q30]] GOTO N1000 ???????

Also where can I find more info on Q parameter programming, the manuals from the machine are rather basic.

Thanks,

Ed
Reply With Quote

  #2   Ban this user!
Old 04-30-2010, 06:34 PM
christinandavid's Avatar  
Join Date: Aug 2009
Location: New Zealand
Posts: 573
christinandavid is on a distinguished road

As I recall the older controls were pretty basic 'one function at a time' affairs (but the ANG and LEN functions made applying trig easier).

The newer controls (white screen display, qwerty keypad, don't know the numbers) are a lot better, being able to write whole formulas out on one line. I think you GOTO a LBL rather than a line number, and that's where it may get confusing, I don't know whether there a need to close the LBLs or not...

DP
Reply With Quote

  #3   Ban this user!
Old 05-01-2010, 02:16 PM
 
Join Date: Dec 2005
Location: usa
Posts: 41
hansdie is on a distinguished road

actually you don't need to use FN (functions) to declare vairable or math functions .
using FN to do these things is to prevent mistakes in syntax so if you use FN1 noboby can make a change to multiply.
So you can write your code like this

Q20=-8.5;CENTER OF PORT ON X-AXIS FROM TOUCH OFF POINT
Q29=Q29+Q26;STEP DOWN COUNTER

Q38=Q22/2-Q30-Q35
Q32=Q25-(.5*Q25)
Q33= Q23/2-Q30 ;
FN 11: IF Q38 GT Q33 GOTO LBL 10

in your code you would need to put LBL 10 as the jump to location

I'm assuming you're looking at the Heidenhain control manuals. If you have other questions ask...
Reply With Quote

  #4   Ban this user!
Old 05-02-2010, 07:04 AM
 
Join Date: Nov 2009
Location: canada
Age: 49
Posts: 11
plankman is on a distinguished road

Hey Ed,

Just a question, and not intending to confuse you, but is your heidenhain file in ISO or conversational format?

if you're in ISO then your code would look like this:

Q20=-8.5;CENTER OF PORT ON X-AXIS FROM TOUCH OFF POINT
G98L10;or where ever you want this line label to be...
Q29=Q29+Q26;STEP DOWN COUNTER

Q38=Q22/2-Q30-Q35
Q32=Q25-(.5*Q25)
Q33= Q23/2-Q30 ;
D11 P01+Q38 P02+Q33 P03+10

Personally I always found macro easier in ISO mode, but whatever suits your fancy...

If you'd like a few examples of a bit more advanced macro's in ISO, I can send you some files I've used at work...

Let me know.
Al.
Reply With Quote

  #5   Ban this user!
Old 05-02-2010, 07:10 AM
 
Join Date: Nov 2009
Location: canada
Age: 49
Posts: 11
plankman is on a distinguished road

Another thought, if you'd like email me your file to be converted and I'll do it for you, with side notes etc. so you can see the changes and how the occur.

Some times this can be a good way to learn. I have a 426 at work, and I do the converting back and forth between the 426, a fanuc15m and a fanuc18m.

Not to bad to do, once you get the hang of it...

I've got a large NPT milling file I use on both the 426 and fanuc's. Same mathematical functions, perform the same on 426 and fanuc's, interested?

Al
Reply With Quote

Sponsored Links
  #6   Ban this user!
Old 05-02-2010, 12:09 PM
ED209's Avatar  
Join Date: Jul 2003
Location: Alberta, Canada
Posts: 67
ED209 is on a distinguished road

Thanks guys,

I loaded the program & tried to run it & had a few errors.

IF [[Q38]GT[Q23/2-Q30]] GOTO N1000 had to change the calc in the if loop to a variable Q41=Q23/2-Q30 ; FN 11: IF Q38 GT Q41 GOTO LBL 10 to get the loop to work.

Thanks Hansdie I was wondering about the FN? commands whether they were required or not. The machine manual shows them & I found a couple of very basic examples on the net that did not use them, so wasn't sure.

Hi Al, we're running the controls in conversational a 426 & a 530 control. I understand they can be ran in ISO also but I haven't had time to sit down & read the manuals let alone mess around on the controls, far to busy on the floor, earn while learn. Is it possible to mix & match the two ?.

Ya I'd love some examples in ISO or EIA & the NPT macro, that would be great. I've wrote some Macro B programs in the past (fairly basic prog's) for family of parts with the help of Peter Smids book "Fanuc Custom Macros" excellent resource.

So why is there not a forum for the Heidenhain controls like Fanuc, etc. I'm new to these controls, but am liking them the more I get in to it.

Thanks for your info gents,

Ed
Reply With Quote

  #7   Ban this user!
Old 05-02-2010, 02:53 PM
 
Join Date: Dec 2005
Location: usa
Posts: 41
hansdie is on a distinguished road

you can't mix g-code with Heidenhain clear-code within the same program but you can use PGM CALL to call a g-code pgm or Heidenhain pgm.

also unless you have a good reason to use g-code just use Heidenhain code it's more powerful than the g-code, especially if you're using tables and touch probe cycles.
Reply With Quote

  #8   Ban this user!
Old 05-03-2010, 09:56 AM
ED209's Avatar  
Join Date: Jul 2003
Location: Alberta, Canada
Posts: 67
ED209 is on a distinguished road

ok thanks Hansdie
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
Parameter for: HEIDENHAIN TNC 407 B elhosseiny G-Code Programing 2 08-22-2009 02:49 AM
g65 macro parameter firecat69 General Metal Working Machines 0 05-24-2007 08:50 AM




All times are GMT -5. The time now is 01:03 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