Parts Cleaning Conference
Published

Setting Up Loops With Custom Macro B

Custom macro B provides many tools to help users with CNC programming, including variable capabilities, arithmetic calculations and program flow control. One of the most powerful functions allowed by this custom macro (and for that matter, any computer programming language) is looping.

Share

Custom macro B provides many tools to help users with CNC programming, including variable capabilities, arithmetic calculations and program flow control. One of the most powerful functions allowed by this custom macro (and for that matter, any computer programming language) is looping. Looping involves having the machine repeat a series of commands and can be compared to repeating the execution of subprograms. When you repeat a subprogram, it will be executed in exactly the same fashion all four times. That is, nothing in the subprogram can change between executions. When you set up a loop, however, anything can change between executions.

Loops are used to minimize the number of redundant commands needed for your application. Consider this loop, which sets offsets 1 through 100 to zero.

#100 = 1 (Loop counter and offset number)
N1 IF [#100 GT 100] GOTO 50 (Test if finished)
G90 G10 L1 P#100 R0 (Set current offset to zero)
#100 = #100 + 1 (Step counter and offset number)
GOTO 1 (Go back to the test)
N50… (Continue with program)

This loop illustrates the contrast to a time when the commands were written out in longhand, requiring many (100) commands. As you can see, this loop requires only six commands.

Loops are also used when the number of executions for the loop changes from application to application. With a bolt circle loop, for example, the number of holes on the bolt circle can change from one bolt circle to another. You can see this loop on my company’s Web site at www.cncci.com/resources/tips/boltcircle.htm.

Loops become more complicated when it is not easy to determine the number of loop executions. Consider, for example, a peck drilling custom macro. You have a 3-inch deep hole and a peck depth of 1 inch. In this case, the loop is pretty easy to program. The hole depth of 3 inches is evenly divisible by the peck depth of 1 inch. This means that three executions of the peck depth will be required. But what if you have a 3.25-inch deep hole and want a 1-inch peck? This loop requires a little more thought.

I always recommend determining an even number of executions, even if it means modifying certain machining criteria. For example, if you use the “round” function (which rounds to the closest integer), you can come up with an even number of passes. Consider the command:

#100 = ROUND[3.25 / 3.0]
The result will be that #100 will be 3. However, you cannot simply peck 1 inch deep three times. This will not render the correct depth.

Let’s recalculate the peck depth based upon the number of passes:

#101 = 3.25 / #100

The peck depth will be slightly more than 1 inch (in this example). However, you can now set up a loop that has an even number of passes.

  1. The seven steps to setting up a loop are:
  2. Initialize the counter and, if needed, anything that changes each time within the loop.
  3. If necessary, initialize constants in the loop.
  4. Test to see if the loop is finished.
  5. If necessary, calculate anything needed for the current time through the loop.
  6. If necessary, make motions needed for the current time through the loop.
  7. Step the counter and, if needed, anything that changes each time through the loop.
  8. Go back to the test.

There is a special custom macro function for looping, WHILE. However, anything you can do with a WHILE statement loop can be done with an IF statement loop. Here is the offset clearing loop shown earlier using the WHILE statement:

#100 = 1 (Loop counter and offset number)
WHILE [#100 GT 100] DO 1 (Start of loop)
G90 G10 L1 P#100 R0 (Set current offset to zero)
#100 = #100 + 1 (Step counter and offset number)
END 1 (End of loop)
N50… (Continue with program)

Note that the counter (#100) must still be initialized and stepped. The DO 1 at the end of the WHILE statement tells the machine the location of the loop’s ending (corresponding to END 1). However, if you are nesting loops, only three loops can be running. This means you can use DO1/END1, DO2/END2 and DO3/END3. There is no such limitation to an IF statement loop.

Precision Cleaning Solvents
high-performance systems for efficient parts cleaning
Cleaning questions ask Kyzen
Echoflex modular ultrasonic cleaning machines
Parts Cleaning Conference
Cleaning Technologies Group
The Automated Shop Conference
High Accuracy Linear Encoders
New Micro Drills for Titanium at IMTS 2024
IMTS ELEVATE JOB SHOPS
air compressors for machining at IMTS
New Starrett W4900 Indicator

Read Next

Micromachining

A History of Precision: The Invention and Evolution of Swiss-Style Machining

In the late 1800s, a new technology — Swiss-type machines — emerged to serve Switzerland’s growing watchmaking industry. Today, Swiss-machined parts are ubiquitous, and there’s a good reason for that: No other machining technology can produce tiny, complex components more efficiently or at higher quality.

Read More

Encountering Surface Finishes in the Everyday World

Surface measurement is becoming increasingly important to ensure proper performance of a manufactured product. Advanced surface measurement tools are not only beneficial in the manufacturing industry but also have unconventional applications.

Read More
Sponsored

SpindleSHOT Offers Improved Chip Control and Less Maintenance

High-pressure coolant system is customizable to meet customer needs.

Read More
Precision cleaning solvents