Streamlining Workflow for a 250 Sheet / Setup Job

I’m in the process of planning out an ambitious project that will require me to cut 529 different parts (2D contours) across 250 setups (sheets of material).

For reference I have experience running a Single Setup with Multiple toolpaths in CM, but I’ve never run anything that required 250 setups with multiple toolpaths.

All of my material will be identically sized ~30x30" and I’ll create some sort of reference / index on my spoilboard to prevent me from having to fiddle with re-zeroing x,y, or z 250 times. I’m also going to be using vacuum workholding so I’m not double-side taping 250 sheets of material.

What is not immediately clear to me is how Carbide Motion handles multiple setups all loaded at once… I believe the feature in F360 that sounds correct is “Create an NC Program”; but I haven’t gone down the rabbit hole yet because I’m trying to figure out how much of this can I automate.

I presently have a Bitsetter and a BitRunner (the latter which I have yet to install because I need to solder the connecter to the PCB).

My utopic vision for this project would be:

  1. Load 1 NC Program with a all 250 setups and toolpaths into Carbide Motion via a single NC file / program
  2. Press Start Job and CM turns off the router via bitrunner between each time it wants to me to feed it another sheet of ~30x30 stock.
    Bonus if it can go to the home position and get out of the way.
    Double Bonus if it doesn’t use bitsetter at the start of each of the 250 setups consisting of 500 separate tool paths (2qty toolpaths per setup)

To avoid using the BitSetter you’d need to either disable it, or put all the parts in a single file.

Thought that might be the case, easy enough on the bitsetter front… Is the rest as simple as generating an NC Program for all 250setups?

It should be — one possibility would be generating 250 separate files and compositing them using a tool such as CAMotics.

Since this job is so big it might be better to break it into smaller chunks. If something goes wrong you start the section over without starting all over from the beginning. As long as you dont power off the Shapeoko the zeros will hold. If you power off recheck zero due to small variance in homing. The zeros may be dead on but check.

1 Like

In addition to @gdon_2003 's comment about making manageably-small batches (25 each may be a good compromise?) I would check upfront what the resulting NC file size would be with those 500 toolpaths in it. If you end up with a file in the several-hundred-Megabytes range, and while I seem to remember Carbide Motion was optimized at some point to allow for virtually unlimited file size (as long as there is enough memory available, that is), I would maybe not risk it.

Depending on how deep you are willing to go into that rabbit hole, you should be able to customize the post-processor in Fusion360 to automatically add a G0 line with suitable coords to move the gantry out of the way between each set of 2 toolpaths. Pro tip: challenge @neilferreri to do it and wait :wink:

5 Likes

so today I tried a little beta test of using “Create NC program” in F360 on a piece of shop furniture I needed to make and it DIDN’T work. Or at least it isn’t as simple as clicking my 3 setups and followed by “Create NC Program”.

After cutting the first toolpath in Setup 1 it jump right to the next toolpath in Setup 2 with no pause in-between for anything. Both Bitzero and BitRunner are disabled.

What happened here?:
1001.nc (20.6 KB)

How about adding a Manual NC Stop at the end of each setup? It will add an M0 pause between toolpaths.
image

2 Likes

Didn’t know you could do that, Will give that a shot next. Can going “home” or just back left or right be accomplish the same way?

Not quite, but it could probably be done in the Post Processor. I’ll look at it tonight or sometime tomorrow and see what I can come up with.

EDIT/UPDATE: @MarkDGaal
OK, if you’re not using a BitRunner, another automatic spindle control, or you’re ok with manually turning off the router between Setups this should help.

Instead of a Manual NC “Stop” at the end of each Setup (except the last), use a Manual NC “Pass Through” with a “Message” as below. This will retract and move to back right before the Pause.
image
image
You’ll need to use a capable Post Processor. Here’s the one I just modified.
grblFerreriTEST.zip (5.7 KB)

Make sure to test the output first please. Here is a sample file to play with (note: No attention was paid to the actual feeds/speeds/DOCs/etc in this file as I never meant to actually cut anything)
Multiple Setups NC.zip (80.7 KB)

2 Likes

Hi Neil, didn’t see this edit until now; I’ll give it a go this weekend and let you know. Thanks

1 Like

@neilferreri I gave it a go cutting some air on my OWN file and your Ferrari Post Processor and between setup 1 and setup 2 it just decided that it needed to plunge below the Z zero point.

https://a360.co/2RhIFqM

I assume this is because this box is checked?

Please note that when I go into your test file and try and view the setttings of your NC program it just looks like this so if you’ve modified those checkboxes I’m unable to tell :

EDIT I’ve tried with that checkbox on and/off and it does it regardless which begs the question why is it doing it and looking closer isn’t that what your Manual NC is instructing it to do?
PS it doesn’t go “home” before plunging past z=0

Hey @MarkDGaal,
Without looking at your file, I’m going to guess it’s a unit thing. I always use mm. If you’re using inches, G53 Z-5 will send your Z to the location five inches below the Z limit.
Change the -5 in your Pass Through commands to -0.2 and you should be good. If you ARE using mm, I’ll have to take a look later.

The return to Work Zero option just returns the cutter to XY zero at a safe height at the END of the job. That won’t matter, and I wrote the post to take units of measurement into account.

The Manual NC commands are passed straight to the machine, so it has no idea what units you are using.

I am using inches so that is a good guess.

I’m sure that would the problem then. Did you get a chance to try it with the 0.2?

Use Vectric software if possible. Would be much less hassle, imo. Good luck

@stanmckinnon Is there a way to generate one gcode file for multiple setups at once with a Vectric product?

Just got the opportunity to try, and YES it does work (so long as you initialize the machine with either mm or in set vs. flipping them interchangeably in the settings of CM).

This should work well, thanks. Time to scale it up to 50 sheets per program and press run!

3 Likes

I’m looking forward to the progress! Go big or go home, right?

Wish me luck!

PS had I wanted to use Bitrunner to turn everything off between setups… could we just add something to the end of the pass through?