CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Sep 2010
    Posts
    3

    Post Geometry and linear footage calculations

    Geometry and linear footage calculations
    I'm re-writing an application that takes x amount of pieces and tries to fit them best to the right number and size of stock material. EG: (So given 2 pieces at one size 1 at a larger size and 3 at a larger size find the most efficient cuts from the stock material.)

    My Problem:
    The way we currently handle this is to calculate linear footage and then step through a piece array, twice. Attempting to match the footage of the piece to the smallest core we can, along with as many other pieces possibly. I would like to optimize this as much as possible, and I'm wondering if there is some sort of equation to figure this out. I did a few searches but its hard to know what to search for.

    I apologize for not being able to post code, but its long and messy anyways. Any help is appreciated. The section in question is 567 lines.

    Relevant Info:
    Core materials come in lengths of 144, 120, 96, 48.

  2. #2
    Join Date
    Mar 2006
    Posts
    151

    Re: Geometry and linear footage calculations

    Do either of these links help?

    The Bin-Packing Problem http://mathworld.wolfram.com/Bin-PackingProblem.html
    The Knapsack Problem http://en.wikipedia.org/wiki/Knapsack_problem

    No way is known to efficiently compute a best answer when confronted with these problems.

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured