software for calculating optimal cut list on stock?

I have a problem which cannot be unique to me. I have to cut a whole bunch of pieces of known length from several lengths of stock. What I need is some software which will run on a Windows box which can take as input the piece lengths I need and also the material length (often 20') and tell me how many lengths of material I need to order and what size pieces to cut out of each piece of stock.

Does such software exist?

Grant Erwin Tinyisland Forge Kirkland, Washington

Reply to
Grant Erwin
Loading thread data ...

There is a ton of this sort of thing being used by the woodworking industry, I stumbled across it yesterday

my search was "router software" or something of that nature.

Is anyone aware of a product that competes with v-carve?

Reply to
Jon

Take a look at the CUTS archive on my page, Grant.

Regards, Marv

Home Shop Freeware - Tools for People Who Build Things

formatting link

Reply to
Marv

That's actually a variant on the "Knapsack Problem", which is one of the standard problems we use to teach advanced algorithms. It turns out that there are pathological cases for which no better solution is known than just trying all the different possibilities and seeing which one works best.

It must, though I don't know of it.

I hadn't noticed where you were, before -- I grew up in Juanita (on Holmes Point Drive, actually)

Reply to
Joe Pfeiffer

I'm sure it exists, not sure what it would be called for linear stock. On sheet stock it's called a "nesting" program.

Reply to
Pete C.

Seems to me it is the length of material + kerf = 1 item. So one could create a spreadsheet that input the material length and the kerf width and generate n numbers of lines. Then the user looks down and sees

48 = 20.5' so 47 is the number.

Seems like a spreadsheet and an eye could do it nicely.

Martin

Mart> I have a problem which cannot be unique to me. I have to cut a whole

----== Posted via Pronews.Com - Unlimited-Unrestricted-Secure Usenet News==----

formatting link
The #1 Newsgroup Service in the World! >100,000 Newsgroups

---= - Total Privacy via Encryption =---

Reply to
Martin H. Eastburn

You're assuming a single part length. When you need parts in 4 or 5 different lengths optimally cut from your 20' sticks of material things get more complicated.

Reply to
Pete C.

I would be interested in a program like that as well. Any job complex enough I can't figure in my head, I lay out by dragging and dropping line segments in a AutoCad. Same with shapes out of sheets. If the material cost and or quantity is high enough, it's the only way I know.

I considered writing a program for linear lengths a few years ago, but like Joe mentioned earlier in the thread, all I could figure is just test all the possibly.

Reply to
Maxwell

For the record, the stock optimizer programs I've seen used on wood boards with random bad spots can be optimized for length, max utilization of wood, and several other parameters.

A real simple approach is to use a spread sheet. At the t> I have a problem which cannot be unique to me. I have to cut a whole

Reply to
RoyJ

I know of one program that does linear nesting. It is called Romac Nesting. My steel supplier uses it to determine the best lengths and utilization of structural beams, tubes, channels, etc. It is pretty vague and basically spits out a spreadsheet of lengths and drops. I am not real impressed with this system as of the last structural project that I did. I still had to do up cut lists for my guys processing. As far as I am concerned the best hardware/software combo going is the standard equipment between your ears and at the end of your arms. It just seems these days that everyone is to lazy to really use or trust it. Amazingly enough, this all used to be done manually. If you are doing a large enough project and are worried about the best utilization of material, then have your steel supplier quote you on providing parts cut to length. Easy, no thinking. If something is wrong (too short, missing parts, etc) it isn't your problem, it's theirs. "Fix my problem, I have a deadline and you are putting me behind" More volume = faster action.

Drew

Reply to
Drew McEachren

Marv Klotz's program is working fine. See his post on this topic.

Thanks to all!

Grant Erwin

Reply to
Grant Erwin

Kinda like calculating intersects. For some there is no exact answer, just the level of precision you require?

Reply to
Bob La Londe

Kinda like calculating intersects. For some there is no exact answer, just the level of precision you require?

Reply to
Bob La Londe

I was going to order 15 lengths of 1x2x.120" rectangular stainless grade 304 tube. Then I got Marv Klotz's software, and found out I can get by with 13, plus it gave me the exact cut list to give to the sawyer. Saved me over $300 just for asking!

Grant

Reply to
Grant Erwin

I'm pleased to hear that it worked for you, Grant.

Regards, Marv

Home Shop Freeware - Tools for People Who Build Things

formatting link

Reply to
Marv

Marv Klotz's program? Is it in this tread? I don't see a post from Marv Klotz.

Reply to
Maxwell

Not really -- calculating intercepts will always have an exact answer, it just might not be one that's on a ruler (I have yet to find a ruler that marks the square root of 2!). And even if the answer is on the ruler, you're still just working to the precision of the ruler.

This is also a problem with an exact answer, the problem is finding it in a reasonable time.

Reply to
Joe Pfeiffer

Marv's free software can be downloaded here:

formatting link
To use it, uncompress it into a directory and edit the file CUTS.DAT in that directory. If you have a Windows box, right-click on CUTS.EXE and select Properties->Program and uncheck "Close on exit".

Within CUTS.DAT, you must specify the (single) length of your stock. For me, that number is often twenty feet, or 240 inches. If you are working with lengths that are exactly 20.0' (like some stainless comes) then you may wish to add a saw kerf to each part length (e.g. add .050").

To run it, I do Start->Run and type in "cmd" which gives me a DOS window. Navigate to your install directory and type "cuts > cuts.txt". This redirects the output to go to a text file which you can massage and/or print to make a cut list. The screen will turn green and blank, and type an 'n' into the blank screen (answering the question about trying the zero waste case first). Run time may be extended, the runs I'm doing now on 13 lengths of stock cut into about 18 different part lengths are going for 3-4 hours on a 9 year old PC with plenty of memory. When you see the DOS prompt reappear, then, using a text editor, edit your output file. The name of this file is whatever you typed in - above, I used "cuts.txt" but you can do whatever you want.

It will take a moment to figure out the format of the output.

I suggest running it on a simple case first, to get the hang of it.

If your run times become excessive, you can split your runs in half by commenting out first the second half of CUTS.DAT and then the first half, and doing two different software runs. The run time explodes, so cutting the data in half can often shorten the run time by a factor of 1000 or more.

There are help pages and you can read the C code if you like.

Grant

Reply to
Grant Erwin

Ok, you got me. A practical reachable solution then. LOL.

Reply to
Bob La Londe

Marv, I have an enhancement suggestion. As we all know, there is no such thing as a zero-kerf cut. It is possible to manually add .025" or .035" or .050" or .125" or .3125" to each part length, but it's painful. It would be so dang handy to be able to just input the kerf in the data file ..

I'm very pleased with CUTS and plan to use it a lot!

Grant

Reply to
Grant Erwin

PolyTech Forum website is not affiliated with any of the manufacturers or service providers discussed here. All logos and trade names are the property of their respective owners.