SlideShare ist ein Scribd-Unternehmen logo
1 von 18
Downloaden Sie, um offline zu lesen
Alp, S., Ertek, G. and Birbil, S. I. (2006). "Application of the cutting stock problem to a
construction company: A case study.” 5th International Symposium on Intelligent
Manufacturing Systems, Sakarya, Turkey.

Note: This is the final draft version of this paper. Please cite this paper (or this final draft) as
above. You can download this final draft from http://research.sabanciuniv.edu.




                 Application of the Cutting Stock Problem

                to a Construction Company: A Case Study

                               Seda Alp, Gurdal Ertek, S.Ilker Birbil




                Sabanci University, Faculty of Engineering and Natural Sciences,

                             Orhanli, Tuzla, 34956, Istanbul, Turkey

                                      Tel: +90(216)483-9568

                                      Fax: +90(216)483-9550




                                                                                               1 / 18
Abstract

This paper presents an application of the well-known cutting stock problem to a
construction firm. The goal of the 1Dimensional (1D) cutting stock problem is to
cut the bars of desired lengths in required quantities from longer bars of given
length. The company for which we carried out this study encounters 1D cutting
stock problem in cutting steel bars (reinforcement bars) for its construction
projects. We have developed several solution approaches to solving the company’s
problem: Building and solving an integer programming (IP) model in a modeling
environment, developing our own software that uses a mixed integer
programming (MIP) software library, and testing some of the commercial
software packages available on the internet. In this paper, we summarize our
experiences with all the three approaches. We also present a benchmark of
existing commercial software packages, and some critical insights. Finally, we
suggest a visual approach for increasing performance in solving the cutting stock
problem and demonstrate the applicability of this approach using the company’s
data on two construction projects.




Submission areas: Decision Support System, Management Information Systems



Introduction




The cutting stock problem is encountered in many industries, including the construction
industry. In constructions, steel bars (reinforcement bars) of certain lengths are needed in
specified quantities. These bars are cut from long steel bars (with lengths as much as 1200 cms)
according to the cutting patterns. The problem is to find the "optimal" cutting patterns, where
the total number of long steel bars used is minimized, subject to the constraint that the desired
shorter steel bars are cut in required quantities.



                                                                                               2 / 18
The Problem Setting




The Company

Mimag Makina Ltd, which is established in 1983, is a construction firm under the parent
company, MIMAG Group1. Initial goal in founding the company group was to produce steel
fabrication needs of the parent company, mainly formwork, scaffolding, and construction
equipment. Later the products were diversified, and found a general market among contractors.
At present, the company designs, produces, supervises formwork and scaffolding systems
suitable for all kinds of structures such as dams, bridges, business centers, and industrial plants.
Up to this date several projects were completed by Mimag, including housing projects (200
residential sites), industrial installations, railway electrification, silos, chimneys, and various
civil, mechanical and structural installation jobs are executed.

Reinforced concrete, which is the combination of concrete and steel, is used in several projects
of Mimag because of the quality of durability and for economic purposes. One of the projects
that Mimag had dealt with was the “Diesel/Kerosene Hydroprocessing and CCR Reformer
Project” implemented in Izmit Refinery of Tupras, Turkey (Figure 1a). Tupras is the top
company in Turkey with respect to sales revenues. Vertical and horizontal reinforcements were
built to replace some silos in the mentioned project. The other real data that we have used was
from the project “Waste Water Treatment Plant” conducted in Adana, Turkey. The project was
for the reinforcement of slab. To determine the amount of steel bars used in reinforced concrete,
several methods are used to minimize the amount of scrap. The standard steel bars used in
reinforced concrete steel bars are 1200 cm and have various diameters ranging from 6mm to
50mm (Figure 1b). These different steels with different lengths and diameters should be cut in
an efficient manner such that the scrap is minimized (Figure 1c).




1
    http://www.mimag.com.tr



                                                                                               3 / 18
(a)                                                  (b)




                                                                                (c)




Figure 1. (a) 1200cm long steel bars at the Izmit - Tupras Construction site waiting to be cut. (b) The cut
steel bars with different lengths and diameters. (c) Equipment used to cut the steel bars. Source:
http://www.kaplanmakina.com




                                                                                                      4 / 18
The 1D Cutting Stock Problem

The mathematical model for the 1D cutting stock problem is presented below:




SETS:

I: set of patterns

J: set of lengths




DECISION VARIABLES:

xi : number of bars cut according to pattern i.




PARAMETERS:

a ij : number of pieces of length j within one bar cut according to pattern i


b j : required number of pieces of length j




THE MODEL

  min    x    i
                                          (1)
         iI




  s.t   a     ij   xi  b j i , j  J   (2)
         iI




        xi  0 , integer                  (3)



                                                                                5 / 18
The goal of the model is to minimize the objective function (1), which consists of the total
number of long steel bars used. Constraint set (2) ensures that enough number of shorter bars
are cut from long bars in required quantities. The decision variables are restricted to non-
negative values (3).

One can obtain the optimal solution to the cutting stock problem by using an IP/MIP solver. For
solving large instances of the problem, the reader is referred to Gilmore and Gomory (1961).




The Solution Approaches




Solving within the GAMS Modeling System

The first solution approach that we followed to tackle with Mimag’s 1D cutting stock problem
was building and solving an IP formulation within the GAMS Modeling System2. We have
implemented our GAMS model based upon information provided in Kalvelagen (2003). We
initially built the IP model for one of the subprojects within the Tupras Project, consisting of 8
different lengths (Appendix A). One advantage of using GAMS is being able to represent the
data in matrix and vector forms. Another advantage is being assured that the optimal solution is
found. However, there are major drawbacks of this approach:

         The patterns cannot be generated by the GAMS modeling language; they have to be
          generated through a separate program written in a general purpose programming
          language, such as C++.

         Adding a new pattern requires “hacking” into the GAMS model and adding a new row to
          the exact appropriate place. GAMS modeling system is very sensitive to incorrect syntax,
          and can give hard-interpret error messages when the required syntax is not followed.




2
    www.gams.com


                                                                                               6 / 18
Developing an IP-based Optimization Program

The shortcomings of using a system such as GAMS have led us to development of an IP-based
optimization program for solving the problem. We had written a C++ program to provide the
pattern data to be input into the GAMS model. However, this early implementation was
employing nested loops (one loop for each additional length) to generate the feasible patterns.
Such an implementation required modification of the source code for every new subproject data,
since each subprojects can have different number of lengths required. Yet another issue was the
fact that GAMS is a commercial software, which requires purchase of a new license for each
installation. We clearly needed a free-of-charge open-source modeling system or software
library to use as the optimization engine.

lp_solve3 is a free solver based on revised simplex algorithm for solving linear programming
(LP) problems and the Branch-and-bound technique for solving IP and MIP problems. Even
tough it is developed in ANSI C, it can be called from programs written in other programming
languages, such as C++, Java, C#, and Visual Basic, as well. We have selected to code our
program in Java4, since one of the authors possesses proficiency in this language. We have used
a “Java wrapper” that enables the communication of the Java code with the lp_solve
optimization engine, and carried out our code development within the Eclipse IDE5 (Integrated
Development Environment).

Our Java program reads data from a text file, generates patterns efficiently through an array
based representation of patterns, calls lp_solve to build and solve the IP model, and prints out
the solution. Currently, our program has minimal GUI (Graphical User Interface), since GUI can
consume great amounts of CPU time, and slow down the time to solve the cutting stock
problem. The bottleneck of our current implementation is the generation of the patterns taking
up to 1 minute for small-size instances with up to 17 lengths. One larger-size instance with 25
lengths took more than 10 minutes to solve. One possible solution to this problem is cutting
some of the lengths from the next longer length. We utilized this approach for solving the
mentioned instance.


3
  http://lpsolve.sourceforge.net/5.5/
4
  htpp://java.sun.com
5
  www.eclipse.org


                                                                                             7 / 18
We validated the correctness of our program by comparing its solution to the GAMS solution for
three different instances.




Using Commercial Software




Our next approach to solving the Mimag’s problem was to test commercial 1D cutting stock
software available on the internet. The software packages were searched using the key word “1
dimensional cutting stock program” at www.google.com. The first ~30 pages of the search
results were scanned to retrieve applicable software. Only seven packages were found to have
demo versions available that can handle the largest instance (with 25 lengths) that we had.
These packages and their web sites are listed in Appendix B.




Benchmarking Results




The Performance Data

Some important questions that we had in mind -upon completion of our Java program- were the
following;

   Q1. How effective is our program compared to the commercial packages that we downloaded?

   Q2.        How do the commercial packages compared amongst them?

   Q3.        Would it be considerably more effective to use two different software packages at
       the same time for each subproject and implement the better of the two solutions that they
       provide?

   Q4.        Does batching of two or more subprojects and determining the best solution for
       the batch increase performance (decrease the cost)?


                                                                                              8 / 18
We have found the answers to the first three questions based upon Mimag’s data. For answering
the fourth question, we propose a visual approach that requires drawing a chart to determine
which subprojects to merge. We present our visual approach in the next section.

We have carried out a performance benchmark of our program and the commercial packages by
using the data sets from Izmit (Tupras) and Adana projects of Mimag. The total number of bars
used in our program’s solution and the commercial packages’ solutions are shown in decreasing
order in Table 1. The software marked with a (*) is the one which Mimag was planning to
purchase.




Table 1. The total number of bars found by the benchmarked software

Software Name                              Total number of Bars

Java Program                               10399

Software 1                                 10400

Software 2                                 10402

Software 3                                 10403

Software 4                                 10410

Software 5*                                10419

Software 6                                 10577

Software 7                                 11858




Insights

As can be seen from Table 1, our Java program outperformance all the commercial packages.
This is naturally expected, since we know from optimization theory that IP solution gives the



                                                                                           9 / 18
optimal objective function value. The next thing that we noticed is that none of the commercial
packages have achieved the optimal total number of bars. This indicates that the software
packages are not implementing an optimal algorithm, but are implementing heuristic
techniques.

We noticed that the first five software packages give solutions very close to the optimal. So a
construction company can select any of these five software packages, based on other criteria
such as price, on-line support, usability, data import/export capabilities, and reporting quality
(including visualization of optimal cutting patterns and their quantities). One very important
observation is that Software 6 and especially Software 7 perform poorly. A company should
definitely avoid using Software 7, which also happens to be the most expensive package amongst
all. Software 7 is distinguished from all others by its capability to import/export to and from MS
Excel. Meanwhile, Software 6 has the best GUI amongst all packages. Thus, the software
selection should be based on performance tests, rather than price, data import/export
capabilities, or GUI. We have so far answered Q1 and Q2. Since the software packages that
perform well are extremely close to the optimal there is no need to use two of those software
packages, thus answering Q3.




A Visual Approach for Determining How to Batch Subprojects

We now present a visual approach that enables a decision maker to select which subproject-
diameter combinations can be batched (combined) to be cut simultaneously. This approach is an
answer to Q4 posed in the previous section. We project that the approach we describe below can
reduce the number of long bars cut (which is the objective function of 1D cutting stock problem),
and suggest that it can be implemented in cutting stock software packages.

Figure 2 shows the chart that we propose6, where each point represents a subproject-diameter
combination. The x-axis shows values of “Optimal number of bars used”, the y-axis shows values
of “Diameters” (in cm), and the color of the points shows “Optimal usage” (as a percentage) for
that subproject, where dark colors denote lower usages (bad performance). To generate this


6
    The chart is generated using Miner3D Software (http://www.miner3d.com)


                                                                                             10 / 18
chart, the cutting stock problem has to be solved for each subproject, and the three values that
will be displayed in the chart have to be calculated. This is a fairly easy thing to do, since steel
bar requirements for each subproject of a project is determined apriori and stays fixed through
out the construction project.

The approach we suggest is the following:

   1. Start with the highest “Diameter” value on the y-axis and examine the points that reside
       on that row. We start searching from the biggest diameter since the cost of steel bars is
       depended upon the weight, which is a quadratic function of the diameter.

   2. If there is a point with a dark color on that row which has a large “Optimal number of
       bars used” value on the x-axis, then consider batching that with another point
       (subproject-diameter combination). For example in Figure 2, we first consider batching
       points A and B.

   3. Test using software whether the batching possibility in Step 2 brings any improvements.
       If batching brings significant improvements go ahead and carry out the batching while
       cutting the steel bars. If batching does not bring significant improvement carry out the
       cutting separately.

   4. Return back to Step 1, considering the next smaller diameter, until you cannot find any
       batching possibilities that could bring significant savings. For example, the next batching
       possibility in Figure 2 is combining points C and D.

When we applied the proposed visual approach, we observed that the two considered projects
(Izmit and Adana) did not include great improvement opportunities through batching. We even
observed that batching could result in a worse performance. Therefore, the decision maker
should be aware that batching is not always a good option. Even though we have not gained
meaningful improvements by batching, when using our data, we believe that for other projects
there can be significant savings. One could especially expect good opportunities when there are
a large number of projects/subprojects managed simultaneously, and a large number of steel
bars to be cut. We suggest carrying out more extensive tests as a future research area.




                                                                                                11 / 18
One important issue in batching is the additional inventory of cut steel bars that will have to be
stored. This translates into additional inventory holding costs, which are incurred due to time
value of money. Any analysis of batching should also consider this additional cost.




                  Figure 2. The chart that displays performance data on subprojects.




Conclusions




Motivated by a real world problem encountered by a construction firm, we have tested and
benchmarked commercial software packages for solving the 1D cutting stock problem. Our
findings suggest that available software packages should be tested with sample project data
before adoption. We observed that software packages with the best import/export capabilities
and/or GUI can perform very poorly. Besides, a higher price does not imply a good performance


                                                                                             12 / 18
at all, as the worst software in our study was also the most expensive one. We concluded our
paper with a visual approach that can be implemented in software packages to enable interactive
decision making with respect to batching. We believe that our study will offer the decision
makers with general guidance on software selection and the software companies with a feature
that they can use to enhance the functionality of their products.




Acknowledgement

We sincerely thank Necati Alp at Mimag for motivating our study, providing the real world data,
and continuously supporting us. We also thank Sevket Atilla at Kaplan Machinery for allowing
us to use their equipment’s photograph in our paper.




References




Gilmore, P. C. and Gomory, R. E. (1961). A linear programming approach to the cutting stock
   problem. Operations Research, vol: 9, 848--859

Kalvelagen, E. (2003). Column Generation with Gams. Gams Development Corp. Washinton
   DC.




                                                                                              13 / 18
APPENDIX A.



Sets


i widths /w1*w8/                               *different lengths of the steel bars.


j pattern/p1*p38/;                             *patterns in which combination they are going to be used.




scalar r raw width /1200/; *bar length is set to 1200.




table demanddata(i,*)                          *demand table for the lengths and their quantities.


       width demand


w1      100   100


w2      200       2


w3      300       2


w4      493       250


w5      590    2


w6      630       2


w7      780   2


w8      930       2;




table patterndata(j,i)                         *pattern table with respect to lengths




       w1     w2        w3       w4       w5    w6     w7    w8


p1      2     2         2    0        0    0     0     0


p2      4     1         2    0        0    0     0     0


p3      5     2         1    0        0    0     0     0




                                                                                                           14 / 18
p4    6       0       2           0           0       0       0       0


p5    7       1       1           0           0       0       0       0


p6    8       2       0           0           0       0       0       0


p7    9       0       1           0           0       0       0       0


p8    1       0       1           0           0       0       0       0


p9    1       2       0           0           0       0       0       0


p10       0       2       1           1       0       0       0           0


p11   1       0           2       1           0       0       0       0


p12   2           1       1       1           0       0       0       0


p13   3           2       0           1           0       0       0       0


p14   4           0       1           1       0       0       0       0


p15   5           1       0           1       0       0       0       0


p16   7           0       0           1           0       0       0       0


p17   0           0       2           0           1       0       0       0


p18       1       1       1       0           1       0       0       0


p19   2           2       0           0           1       0       0       0


p20       3       0           1       0           1       0       0       0


p21   4           1       0           0           1   0       0       0


p22       6       0       0           0           1       0       0       0


p23       0       1       0           2           0       0       0       0


p24       2       0       0           2           0       0       0       0


p25       1       0       0           1           1   0       0       0


p26       0       0           0           0       2       0       0       0


p27       0       2       0           0           0       0       1       0


p28       1       0       1           0           0       0       1   0




                                                                              15 / 18
p29     2     1     0     0      0   0   1   0


p30     4     0     0        0   0   0   1   0


p31     0     1     0     0      0   0   0   1


p32     0     1     1     0      0   1   0   0


p33     1    2      0     0      0   1   0   0


p34     2     0     0        0   0   0   0    1


p35     2     0     1     0      0   1   0   0


p36     3     1     0     0      0   1   0   0


p37     5    0      0     0      0   1   0   0


p38     0     0     0        1   0   1   0   0;




parameter d(i);                              *demand in taken from the table as input.


d(i) = demanddata(i, 'demand');




parameter a(i,j);                                    *the amount of the patterns that are going to be used.


a(i,j) = patterndata(j,i);




integer variable x(j) 'pattern used';


variable z 'objective';




x.up(j) = sum(i, d(i));




equations


numpat 'number of patterns used(objective)'


demand(i) 'meet demand';




                                                                                                              16 / 18
numpat.. z=e=sum(j, x(j));               *minimization of the patterns that are going to be used


demand(i).. sum(j, a(i,j)*x(j))=g=d(i);   *demand should be satisfied.




model cutting /all/;


solve cutting using mip minimizing z;


display x.l, x.m;




Appendix B




The commercial software packages benchmarked in this paper are listed in random order below.
The numbering of the software packages within the paper is not with respect to this order.




http://www.astrokettle.com/pr1dsc.html

    (1D Stock Cutter)




http://www.downloadjunction.com/product/software/30836/

    (Optimumcut)




http://www.rrdrummond.com/demo1.htm

    (The Itemizer 7.0)




                                                                                                            17 / 18
http://www.softplatz.com/Soft/Graphics/CADs/Real-Cut-1D.html

   (Real Cut 1d)




http://www.shareup.com/Pipe_Cutting_Suite-download-7887.html

   (Pipe Cutting Suite 3.11)




http://www.softpicks.net/software/CutLogic-1D-9970.htm

   (CutLogic)




http://tucows.menanet.net/preview/333725.html

   (Plus1D)




                                                               18 / 18

Weitere ähnliche Inhalte

Was ist angesagt?

Design of automobile front bumper for collision energy Attenuation
Design of automobile front bumper for collision energy AttenuationDesign of automobile front bumper for collision energy Attenuation
Design of automobile front bumper for collision energy AttenuationIRJET Journal
 
IRJET- Strengthening of Partially Damaged Deficient RC Beam with Externally B...
IRJET- Strengthening of Partially Damaged Deficient RC Beam with Externally B...IRJET- Strengthening of Partially Damaged Deficient RC Beam with Externally B...
IRJET- Strengthening of Partially Damaged Deficient RC Beam with Externally B...IRJET Journal
 
Finite Element Analysis Creo-Simulate Webinar
Finite Element Analysis Creo-Simulate WebinarFinite Element Analysis Creo-Simulate Webinar
Finite Element Analysis Creo-Simulate WebinarSanthosh N L
 
Design of Machining Fixture for Support Bracket
Design of Machining Fixture for Support BracketDesign of Machining Fixture for Support Bracket
Design of Machining Fixture for Support Bracketpaperpublications3
 
Design analysis of bumper beam subjected to offset impact loading for automot...
Design analysis of bumper beam subjected to offset impact loading for automot...Design analysis of bumper beam subjected to offset impact loading for automot...
Design analysis of bumper beam subjected to offset impact loading for automot...IAEME Publication
 
IRJET- Optimization Design and CFD Thermal Analysis of the 72/48 Switched Rel...
IRJET- Optimization Design and CFD Thermal Analysis of the 72/48 Switched Rel...IRJET- Optimization Design and CFD Thermal Analysis of the 72/48 Switched Rel...
IRJET- Optimization Design and CFD Thermal Analysis of the 72/48 Switched Rel...IRJET Journal
 

Was ist angesagt? (8)

Exercise+2+with+answer
Exercise+2+with+answerExercise+2+with+answer
Exercise+2+with+answer
 
Design of automobile front bumper for collision energy Attenuation
Design of automobile front bumper for collision energy AttenuationDesign of automobile front bumper for collision energy Attenuation
Design of automobile front bumper for collision energy Attenuation
 
Bm25379383
Bm25379383Bm25379383
Bm25379383
 
IRJET- Strengthening of Partially Damaged Deficient RC Beam with Externally B...
IRJET- Strengthening of Partially Damaged Deficient RC Beam with Externally B...IRJET- Strengthening of Partially Damaged Deficient RC Beam with Externally B...
IRJET- Strengthening of Partially Damaged Deficient RC Beam with Externally B...
 
Finite Element Analysis Creo-Simulate Webinar
Finite Element Analysis Creo-Simulate WebinarFinite Element Analysis Creo-Simulate Webinar
Finite Element Analysis Creo-Simulate Webinar
 
Design of Machining Fixture for Support Bracket
Design of Machining Fixture for Support BracketDesign of Machining Fixture for Support Bracket
Design of Machining Fixture for Support Bracket
 
Design analysis of bumper beam subjected to offset impact loading for automot...
Design analysis of bumper beam subjected to offset impact loading for automot...Design analysis of bumper beam subjected to offset impact loading for automot...
Design analysis of bumper beam subjected to offset impact loading for automot...
 
IRJET- Optimization Design and CFD Thermal Analysis of the 72/48 Switched Rel...
IRJET- Optimization Design and CFD Thermal Analysis of the 72/48 Switched Rel...IRJET- Optimization Design and CFD Thermal Analysis of the 72/48 Switched Rel...
IRJET- Optimization Design and CFD Thermal Analysis of the 72/48 Switched Rel...
 

Andere mochten auch

Braintree Case Study
Braintree Case StudyBraintree Case Study
Braintree Case StudyJoshua Loomis
 
Business intelligence implementation case study
Business intelligence implementation case studyBusiness intelligence implementation case study
Business intelligence implementation case studyJennie Chen, CTP
 
The Swiss Center for Strategic Studies, Lucerne, SCSS
The Swiss Center for Strategic Studies, Lucerne, SCSSThe Swiss Center for Strategic Studies, Lucerne, SCSS
The Swiss Center for Strategic Studies, Lucerne, SCSSHossam El-Shazly
 
Nike Strategic Case Analysis
Nike Strategic Case AnalysisNike Strategic Case Analysis
Nike Strategic Case AnalysisWilliam Greene
 
Sudhir telang machinery components
Sudhir telang machinery componentsSudhir telang machinery components
Sudhir telang machinery componentsRuchira Panigrahy
 
Consumers’ Behaviour on Sony Xperia: A Case Study on Bangladesh
Consumers’ Behaviour on Sony Xperia: A Case Study on BangladeshConsumers’ Behaviour on Sony Xperia: A Case Study on Bangladesh
Consumers’ Behaviour on Sony Xperia: A Case Study on Bangladeshiosrjce
 
The alignment of e commerce strategies with corporate strategy a case study
The alignment of e commerce strategies with corporate strategy a case studyThe alignment of e commerce strategies with corporate strategy a case study
The alignment of e commerce strategies with corporate strategy a case studyHamideh Iraj
 
Online Marketing - Case study
Online Marketing - Case studyOnline Marketing - Case study
Online Marketing - Case studyAfsheen Khan
 
Da merton truck company case study
Da   merton truck company case studyDa   merton truck company case study
Da merton truck company case studyRajendra Inani
 
Implementing Software Metrics at a Telecommunications Company -- A Case Study
Implementing Software Metrics at a Telecommunications Company -- A Case StudyImplementing Software Metrics at a Telecommunications Company -- A Case Study
Implementing Software Metrics at a Telecommunications Company -- A Case Studydheimann5
 
Fra coca - cola case study
Fra   coca - cola case studyFra   coca - cola case study
Fra coca - cola case studyRajendra Inani
 
International case study
International case studyInternational case study
International case studyRedchick
 
LC Case Study Report
LC Case Study ReportLC Case Study Report
LC Case Study ReportMalak Boules
 
Carrot or stick case study. Licensing strategy at Tessera. Carles Debart
Carrot or stick case study. Licensing strategy at Tessera. Carles DebartCarrot or stick case study. Licensing strategy at Tessera. Carles Debart
Carrot or stick case study. Licensing strategy at Tessera. Carles DebartCarles Debart
 
Chase Vodka Design strategy - Case study
Chase Vodka Design strategy  - Case studyChase Vodka Design strategy  - Case study
Chase Vodka Design strategy - Case studyRupi Dosanjh
 
Nike Case write up
Nike Case write upNike Case write up
Nike Case write upFred Sosa
 
Strategic planning use cases | Meeting facilitation | SME Strategy
Strategic planning use cases | Meeting facilitation | SME StrategyStrategic planning use cases | Meeting facilitation | SME Strategy
Strategic planning use cases | Meeting facilitation | SME StrategyAnthony C Taylor
 

Andere mochten auch (20)

Braintree Case Study
Braintree Case StudyBraintree Case Study
Braintree Case Study
 
Business intelligence implementation case study
Business intelligence implementation case studyBusiness intelligence implementation case study
Business intelligence implementation case study
 
The Swiss Center for Strategic Studies, Lucerne, SCSS
The Swiss Center for Strategic Studies, Lucerne, SCSSThe Swiss Center for Strategic Studies, Lucerne, SCSS
The Swiss Center for Strategic Studies, Lucerne, SCSS
 
Nike Strategic Case Analysis
Nike Strategic Case AnalysisNike Strategic Case Analysis
Nike Strategic Case Analysis
 
Sudhir telang machinery components
Sudhir telang machinery componentsSudhir telang machinery components
Sudhir telang machinery components
 
Sony tablets project(relaunching)
Sony tablets project(relaunching)Sony tablets project(relaunching)
Sony tablets project(relaunching)
 
Consumers’ Behaviour on Sony Xperia: A Case Study on Bangladesh
Consumers’ Behaviour on Sony Xperia: A Case Study on BangladeshConsumers’ Behaviour on Sony Xperia: A Case Study on Bangladesh
Consumers’ Behaviour on Sony Xperia: A Case Study on Bangladesh
 
The alignment of e commerce strategies with corporate strategy a case study
The alignment of e commerce strategies with corporate strategy a case studyThe alignment of e commerce strategies with corporate strategy a case study
The alignment of e commerce strategies with corporate strategy a case study
 
Online Marketing - Case study
Online Marketing - Case studyOnline Marketing - Case study
Online Marketing - Case study
 
Da merton truck company case study
Da   merton truck company case studyDa   merton truck company case study
Da merton truck company case study
 
Implementing Software Metrics at a Telecommunications Company -- A Case Study
Implementing Software Metrics at a Telecommunications Company -- A Case StudyImplementing Software Metrics at a Telecommunications Company -- A Case Study
Implementing Software Metrics at a Telecommunications Company -- A Case Study
 
Fra coca - cola case study
Fra   coca - cola case studyFra   coca - cola case study
Fra coca - cola case study
 
International case study
International case studyInternational case study
International case study
 
Case study HRD strategy for relocated factory in Lao PDR
Case study HRD strategy for relocated factory in Lao PDRCase study HRD strategy for relocated factory in Lao PDR
Case study HRD strategy for relocated factory in Lao PDR
 
LC Case Study Report
LC Case Study ReportLC Case Study Report
LC Case Study Report
 
Carrot or stick case study. Licensing strategy at Tessera. Carles Debart
Carrot or stick case study. Licensing strategy at Tessera. Carles DebartCarrot or stick case study. Licensing strategy at Tessera. Carles Debart
Carrot or stick case study. Licensing strategy at Tessera. Carles Debart
 
Chase Vodka Design strategy - Case study
Chase Vodka Design strategy  - Case studyChase Vodka Design strategy  - Case study
Chase Vodka Design strategy - Case study
 
Moosehead Case Study
Moosehead Case StudyMoosehead Case Study
Moosehead Case Study
 
Nike Case write up
Nike Case write upNike Case write up
Nike Case write up
 
Strategic planning use cases | Meeting facilitation | SME Strategy
Strategic planning use cases | Meeting facilitation | SME StrategyStrategic planning use cases | Meeting facilitation | SME Strategy
Strategic planning use cases | Meeting facilitation | SME Strategy
 

Ähnlich wie Application of the Cutting Stock Problem to a Construction Company: A Case Study

Application of the cutting stock problem to a construction company: A case study
Application of the cutting stock problem to a construction company: A case studyApplication of the cutting stock problem to a construction company: A case study
Application of the cutting stock problem to a construction company: A case studyGurdal Ertek
 
Application of local search methods for solving a quadratic assignment proble...
Application of local search methods for solving a quadratic assignment proble...Application of local search methods for solving a quadratic assignment proble...
Application of local search methods for solving a quadratic assignment proble...ertekg
 
Application of local search methods for solving a quadratic assignment proble...
Application of local search methods for solving a quadratic assignment proble...Application of local search methods for solving a quadratic assignment proble...
Application of local search methods for solving a quadratic assignment proble...Gurdal Ertek
 
Feasibility study on stereolithography apparatus sla and selective laser si...
Feasibility study on stereolithography apparatus  sla  and selective laser si...Feasibility study on stereolithography apparatus  sla  and selective laser si...
Feasibility study on stereolithography apparatus sla and selective laser si...IAEME Publication
 
Arcelormittal @ Scilab Conference 2018
Arcelormittal @ Scilab Conference 2018Arcelormittal @ Scilab Conference 2018
Arcelormittal @ Scilab Conference 2018Scilab
 
Considerations on usage of Computer on Modules for Applications inside Emerge...
Considerations on usage of Computer on Modules for Applications inside Emerge...Considerations on usage of Computer on Modules for Applications inside Emerge...
Considerations on usage of Computer on Modules for Applications inside Emerge...Toradex
 
Constraint Programming - An Alternative Approach to Heuristics in Scheduling
Constraint Programming - An Alternative Approach to Heuristics in SchedulingConstraint Programming - An Alternative Approach to Heuristics in Scheduling
Constraint Programming - An Alternative Approach to Heuristics in SchedulingEray Cakici
 
Application Of Local Search Methods For Solving A Quadratic Assignment Probl...
Application Of Local Search Methods For Solving  A Quadratic Assignment Probl...Application Of Local Search Methods For Solving  A Quadratic Assignment Probl...
Application Of Local Search Methods For Solving A Quadratic Assignment Probl...ertekg
 
Experimental Validation of 3-D Printed Bolts
Experimental Validation of 3-D Printed BoltsExperimental Validation of 3-D Printed Bolts
Experimental Validation of 3-D Printed BoltsIJMERJOURNAL
 
Top 10 Supercomputers With Descriptive Information & Analysis
Top 10 Supercomputers With Descriptive Information & AnalysisTop 10 Supercomputers With Descriptive Information & Analysis
Top 10 Supercomputers With Descriptive Information & AnalysisNomanSiddiqui41
 
Production management
Production managementProduction management
Production managementsmumbahelp
 
Finite Element Analysis and Optimization of Automotive Seat Floor Mounting Br...
Finite Element Analysis and Optimization of Automotive Seat Floor Mounting Br...Finite Element Analysis and Optimization of Automotive Seat Floor Mounting Br...
Finite Element Analysis and Optimization of Automotive Seat Floor Mounting Br...IRJET Journal
 
High End Solution for Advanced Civil Engineering Projects
High End Solution for Advanced Civil Engineering ProjectsHigh End Solution for Advanced Civil Engineering Projects
High End Solution for Advanced Civil Engineering ProjectsIJMER
 
CAD/CAM/CIM (18ME72) Module-5 Part-A
CAD/CAM/CIM  (18ME72) Module-5 Part-ACAD/CAM/CIM  (18ME72) Module-5 Part-A
CAD/CAM/CIM (18ME72) Module-5 Part-AMohammed Imran
 
problems on Staad.pro and analysis of a 5 storey building using Etabs
problems on Staad.pro and analysis of a 5 storey building using Etabsproblems on Staad.pro and analysis of a 5 storey building using Etabs
problems on Staad.pro and analysis of a 5 storey building using Etabssrinivas cnu
 
IRJET - Design Modification of Shovel in Five Tyne Cultivator using Finite El...
IRJET - Design Modification of Shovel in Five Tyne Cultivator using Finite El...IRJET - Design Modification of Shovel in Five Tyne Cultivator using Finite El...
IRJET - Design Modification of Shovel in Five Tyne Cultivator using Finite El...IRJET Journal
 
Finite Element Analysis of PVC window profile &aluminium window profile with ...
Finite Element Analysis of PVC window profile &aluminium window profile with ...Finite Element Analysis of PVC window profile &aluminium window profile with ...
Finite Element Analysis of PVC window profile &aluminium window profile with ...IJERA Editor
 

Ähnlich wie Application of the Cutting Stock Problem to a Construction Company: A Case Study (20)

Application of the cutting stock problem to a construction company: A case study
Application of the cutting stock problem to a construction company: A case studyApplication of the cutting stock problem to a construction company: A case study
Application of the cutting stock problem to a construction company: A case study
 
Application of local search methods for solving a quadratic assignment proble...
Application of local search methods for solving a quadratic assignment proble...Application of local search methods for solving a quadratic assignment proble...
Application of local search methods for solving a quadratic assignment proble...
 
Application of local search methods for solving a quadratic assignment proble...
Application of local search methods for solving a quadratic assignment proble...Application of local search methods for solving a quadratic assignment proble...
Application of local search methods for solving a quadratic assignment proble...
 
Feasibility study on stereolithography apparatus sla and selective laser si...
Feasibility study on stereolithography apparatus  sla  and selective laser si...Feasibility study on stereolithography apparatus  sla  and selective laser si...
Feasibility study on stereolithography apparatus sla and selective laser si...
 
Arcelormittal @ Scilab Conference 2018
Arcelormittal @ Scilab Conference 2018Arcelormittal @ Scilab Conference 2018
Arcelormittal @ Scilab Conference 2018
 
Considerations on usage of Computer on Modules for Applications inside Emerge...
Considerations on usage of Computer on Modules for Applications inside Emerge...Considerations on usage of Computer on Modules for Applications inside Emerge...
Considerations on usage of Computer on Modules for Applications inside Emerge...
 
Digital manufacture 1
Digital manufacture 1Digital manufacture 1
Digital manufacture 1
 
Constraint Programming - An Alternative Approach to Heuristics in Scheduling
Constraint Programming - An Alternative Approach to Heuristics in SchedulingConstraint Programming - An Alternative Approach to Heuristics in Scheduling
Constraint Programming - An Alternative Approach to Heuristics in Scheduling
 
Application Of Local Search Methods For Solving A Quadratic Assignment Probl...
Application Of Local Search Methods For Solving  A Quadratic Assignment Probl...Application Of Local Search Methods For Solving  A Quadratic Assignment Probl...
Application Of Local Search Methods For Solving A Quadratic Assignment Probl...
 
Experimental Validation of 3-D Printed Bolts
Experimental Validation of 3-D Printed BoltsExperimental Validation of 3-D Printed Bolts
Experimental Validation of 3-D Printed Bolts
 
report rp
report rp report rp
report rp
 
Top 10 Supercomputers With Descriptive Information & Analysis
Top 10 Supercomputers With Descriptive Information & AnalysisTop 10 Supercomputers With Descriptive Information & Analysis
Top 10 Supercomputers With Descriptive Information & Analysis
 
Production management
Production managementProduction management
Production management
 
Finite Element Analysis and Optimization of Automotive Seat Floor Mounting Br...
Finite Element Analysis and Optimization of Automotive Seat Floor Mounting Br...Finite Element Analysis and Optimization of Automotive Seat Floor Mounting Br...
Finite Element Analysis and Optimization of Automotive Seat Floor Mounting Br...
 
Rp
RpRp
Rp
 
High End Solution for Advanced Civil Engineering Projects
High End Solution for Advanced Civil Engineering ProjectsHigh End Solution for Advanced Civil Engineering Projects
High End Solution for Advanced Civil Engineering Projects
 
CAD/CAM/CIM (18ME72) Module-5 Part-A
CAD/CAM/CIM  (18ME72) Module-5 Part-ACAD/CAM/CIM  (18ME72) Module-5 Part-A
CAD/CAM/CIM (18ME72) Module-5 Part-A
 
problems on Staad.pro and analysis of a 5 storey building using Etabs
problems on Staad.pro and analysis of a 5 storey building using Etabsproblems on Staad.pro and analysis of a 5 storey building using Etabs
problems on Staad.pro and analysis of a 5 storey building using Etabs
 
IRJET - Design Modification of Shovel in Five Tyne Cultivator using Finite El...
IRJET - Design Modification of Shovel in Five Tyne Cultivator using Finite El...IRJET - Design Modification of Shovel in Five Tyne Cultivator using Finite El...
IRJET - Design Modification of Shovel in Five Tyne Cultivator using Finite El...
 
Finite Element Analysis of PVC window profile &aluminium window profile with ...
Finite Element Analysis of PVC window profile &aluminium window profile with ...Finite Element Analysis of PVC window profile &aluminium window profile with ...
Finite Element Analysis of PVC window profile &aluminium window profile with ...
 

Mehr von ertekg

Rule-based expert systems for supporting university students
Rule-based expert systems for supporting university studentsRule-based expert systems for supporting university students
Rule-based expert systems for supporting university studentsertekg
 
Optimizing the electric charge station network of EŞARJ
Optimizing the electric charge station network of EŞARJOptimizing the electric charge station network of EŞARJ
Optimizing the electric charge station network of EŞARJertekg
 
Competitiveness of Top 100 U.S. Universities: A Benchmark Study Using Data En...
Competitiveness of Top 100 U.S. Universities: A Benchmark Study Using Data En...Competitiveness of Top 100 U.S. Universities: A Benchmark Study Using Data En...
Competitiveness of Top 100 U.S. Universities: A Benchmark Study Using Data En...ertekg
 
Industrial Benchmarking through Information Visualization and Data Envelopmen...
Industrial Benchmarking through Information Visualization and Data Envelopmen...Industrial Benchmarking through Information Visualization and Data Envelopmen...
Industrial Benchmarking through Information Visualization and Data Envelopmen...ertekg
 
Modelling the supply chain perception gaps
Modelling the supply chain perception gapsModelling the supply chain perception gaps
Modelling the supply chain perception gapsertekg
 
Risk Factors and Identifiers for Alzheimer’s Disease: A Data Mining Analysis
Risk Factors and Identifiers for Alzheimer’s Disease:  A Data Mining AnalysisRisk Factors and Identifiers for Alzheimer’s Disease:  A Data Mining Analysis
Risk Factors and Identifiers for Alzheimer’s Disease: A Data Mining Analysisertekg
 
Text Mining with RapidMiner
Text Mining with RapidMinerText Mining with RapidMiner
Text Mining with RapidMinerertekg
 
Competitive Pattern-Based Strategies under Complexity: The Case of Turkish Ma...
Competitive Pattern-Based Strategies under Complexity: The Case of Turkish Ma...Competitive Pattern-Based Strategies under Complexity: The Case of Turkish Ma...
Competitive Pattern-Based Strategies under Complexity: The Case of Turkish Ma...ertekg
 
Supplier and Buyer Driven Channels in a Two-Stage Supply Chain
Supplier and Buyer Driven Channels in a  Two-Stage Supply ChainSupplier and Buyer Driven Channels in a  Two-Stage Supply Chain
Supplier and Buyer Driven Channels in a Two-Stage Supply Chainertekg
 
Simulation Modeling For Quality And Productivity In Steel Cord Manufacturing
Simulation Modeling For Quality And Productivity In Steel Cord ManufacturingSimulation Modeling For Quality And Productivity In Steel Cord Manufacturing
Simulation Modeling For Quality And Productivity In Steel Cord Manufacturingertekg
 
Visual and analytical mining of transactions data for production planning f...
Visual and analytical mining of transactions data  for production planning  f...Visual and analytical mining of transactions data  for production planning  f...
Visual and analytical mining of transactions data for production planning f...ertekg
 
A Tutorial On Crossdocking
A Tutorial On CrossdockingA Tutorial On Crossdocking
A Tutorial On Crossdockingertekg
 
Financial Benchmarking Of Transportation Companies In The New York Stock Exc...
Financial Benchmarking Of Transportation Companies  In The New York Stock Exc...Financial Benchmarking Of Transportation Companies  In The New York Stock Exc...
Financial Benchmarking Of Transportation Companies In The New York Stock Exc...ertekg
 
Optimizing Waste Collection In An Organized Industrial Region: A Case Study
Optimizing Waste Collection  In An Organized Industrial Region: A Case StudyOptimizing Waste Collection  In An Organized Industrial Region: A Case Study
Optimizing Waste Collection In An Organized Industrial Region: A Case Studyertekg
 
Demonstrating Warehousing Concepts Through Interactive Animations
Demonstrating Warehousing Concepts Through Interactive AnimationsDemonstrating Warehousing Concepts Through Interactive Animations
Demonstrating Warehousing Concepts Through Interactive Animationsertekg
 
A Framework for Visualizing Association Mining Results
A Framework for Visualizing  Association Mining ResultsA Framework for Visualizing  Association Mining Results
A Framework for Visualizing Association Mining Resultsertekg
 
Compiere kurulumu
Compiere kurulumuCompiere kurulumu
Compiere kurulumuertekg
 
Benchmarking The Turkish Apparel Retail Industry Through Data Envelopment Ana...
Benchmarking The Turkish Apparel Retail Industry Through Data Envelopment Ana...Benchmarking The Turkish Apparel Retail Industry Through Data Envelopment Ana...
Benchmarking The Turkish Apparel Retail Industry Through Data Envelopment Ana...ertekg
 
Visual Mining of Science Citation Data for Benchmarking Scientific and Techno...
Visual Mining of Science Citation Data for Benchmarking Scientific and Techno...Visual Mining of Science Citation Data for Benchmarking Scientific and Techno...
Visual Mining of Science Citation Data for Benchmarking Scientific and Techno...ertekg
 
An Open Source Java Code For Visualizing Supply Chain Problems
An Open Source Java Code For Visualizing Supply Chain ProblemsAn Open Source Java Code For Visualizing Supply Chain Problems
An Open Source Java Code For Visualizing Supply Chain Problemsertekg
 

Mehr von ertekg (20)

Rule-based expert systems for supporting university students
Rule-based expert systems for supporting university studentsRule-based expert systems for supporting university students
Rule-based expert systems for supporting university students
 
Optimizing the electric charge station network of EŞARJ
Optimizing the electric charge station network of EŞARJOptimizing the electric charge station network of EŞARJ
Optimizing the electric charge station network of EŞARJ
 
Competitiveness of Top 100 U.S. Universities: A Benchmark Study Using Data En...
Competitiveness of Top 100 U.S. Universities: A Benchmark Study Using Data En...Competitiveness of Top 100 U.S. Universities: A Benchmark Study Using Data En...
Competitiveness of Top 100 U.S. Universities: A Benchmark Study Using Data En...
 
Industrial Benchmarking through Information Visualization and Data Envelopmen...
Industrial Benchmarking through Information Visualization and Data Envelopmen...Industrial Benchmarking through Information Visualization and Data Envelopmen...
Industrial Benchmarking through Information Visualization and Data Envelopmen...
 
Modelling the supply chain perception gaps
Modelling the supply chain perception gapsModelling the supply chain perception gaps
Modelling the supply chain perception gaps
 
Risk Factors and Identifiers for Alzheimer’s Disease: A Data Mining Analysis
Risk Factors and Identifiers for Alzheimer’s Disease:  A Data Mining AnalysisRisk Factors and Identifiers for Alzheimer’s Disease:  A Data Mining Analysis
Risk Factors and Identifiers for Alzheimer’s Disease: A Data Mining Analysis
 
Text Mining with RapidMiner
Text Mining with RapidMinerText Mining with RapidMiner
Text Mining with RapidMiner
 
Competitive Pattern-Based Strategies under Complexity: The Case of Turkish Ma...
Competitive Pattern-Based Strategies under Complexity: The Case of Turkish Ma...Competitive Pattern-Based Strategies under Complexity: The Case of Turkish Ma...
Competitive Pattern-Based Strategies under Complexity: The Case of Turkish Ma...
 
Supplier and Buyer Driven Channels in a Two-Stage Supply Chain
Supplier and Buyer Driven Channels in a  Two-Stage Supply ChainSupplier and Buyer Driven Channels in a  Two-Stage Supply Chain
Supplier and Buyer Driven Channels in a Two-Stage Supply Chain
 
Simulation Modeling For Quality And Productivity In Steel Cord Manufacturing
Simulation Modeling For Quality And Productivity In Steel Cord ManufacturingSimulation Modeling For Quality And Productivity In Steel Cord Manufacturing
Simulation Modeling For Quality And Productivity In Steel Cord Manufacturing
 
Visual and analytical mining of transactions data for production planning f...
Visual and analytical mining of transactions data  for production planning  f...Visual and analytical mining of transactions data  for production planning  f...
Visual and analytical mining of transactions data for production planning f...
 
A Tutorial On Crossdocking
A Tutorial On CrossdockingA Tutorial On Crossdocking
A Tutorial On Crossdocking
 
Financial Benchmarking Of Transportation Companies In The New York Stock Exc...
Financial Benchmarking Of Transportation Companies  In The New York Stock Exc...Financial Benchmarking Of Transportation Companies  In The New York Stock Exc...
Financial Benchmarking Of Transportation Companies In The New York Stock Exc...
 
Optimizing Waste Collection In An Organized Industrial Region: A Case Study
Optimizing Waste Collection  In An Organized Industrial Region: A Case StudyOptimizing Waste Collection  In An Organized Industrial Region: A Case Study
Optimizing Waste Collection In An Organized Industrial Region: A Case Study
 
Demonstrating Warehousing Concepts Through Interactive Animations
Demonstrating Warehousing Concepts Through Interactive AnimationsDemonstrating Warehousing Concepts Through Interactive Animations
Demonstrating Warehousing Concepts Through Interactive Animations
 
A Framework for Visualizing Association Mining Results
A Framework for Visualizing  Association Mining ResultsA Framework for Visualizing  Association Mining Results
A Framework for Visualizing Association Mining Results
 
Compiere kurulumu
Compiere kurulumuCompiere kurulumu
Compiere kurulumu
 
Benchmarking The Turkish Apparel Retail Industry Through Data Envelopment Ana...
Benchmarking The Turkish Apparel Retail Industry Through Data Envelopment Ana...Benchmarking The Turkish Apparel Retail Industry Through Data Envelopment Ana...
Benchmarking The Turkish Apparel Retail Industry Through Data Envelopment Ana...
 
Visual Mining of Science Citation Data for Benchmarking Scientific and Techno...
Visual Mining of Science Citation Data for Benchmarking Scientific and Techno...Visual Mining of Science Citation Data for Benchmarking Scientific and Techno...
Visual Mining of Science Citation Data for Benchmarking Scientific and Techno...
 
An Open Source Java Code For Visualizing Supply Chain Problems
An Open Source Java Code For Visualizing Supply Chain ProblemsAn Open Source Java Code For Visualizing Supply Chain Problems
An Open Source Java Code For Visualizing Supply Chain Problems
 

Kürzlich hochgeladen

Organizational Structure Running A Successful Business
Organizational Structure Running A Successful BusinessOrganizational Structure Running A Successful Business
Organizational Structure Running A Successful BusinessSeta Wicaksana
 
Digital Transformation in the PLM domain - distrib.pdf
Digital Transformation in the PLM domain - distrib.pdfDigital Transformation in the PLM domain - distrib.pdf
Digital Transformation in the PLM domain - distrib.pdfJos Voskuil
 
International Business Environments and Operations 16th Global Edition test b...
International Business Environments and Operations 16th Global Edition test b...International Business Environments and Operations 16th Global Edition test b...
International Business Environments and Operations 16th Global Edition test b...ssuserf63bd7
 
Fordham -How effective decision-making is within the IT department - Analysis...
Fordham -How effective decision-making is within the IT department - Analysis...Fordham -How effective decision-making is within the IT department - Analysis...
Fordham -How effective decision-making is within the IT department - Analysis...Peter Ward
 
Call US-88OO1O2216 Call Girls In Mahipalpur Female Escort Service
Call US-88OO1O2216 Call Girls In Mahipalpur Female Escort ServiceCall US-88OO1O2216 Call Girls In Mahipalpur Female Escort Service
Call US-88OO1O2216 Call Girls In Mahipalpur Female Escort Servicecallgirls2057
 
Call Us 📲8800102216📞 Call Girls In DLF City Gurgaon
Call Us 📲8800102216📞 Call Girls In DLF City GurgaonCall Us 📲8800102216📞 Call Girls In DLF City Gurgaon
Call Us 📲8800102216📞 Call Girls In DLF City Gurgaoncallgirls2057
 
8447779800, Low rate Call girls in Saket Delhi NCR
8447779800, Low rate Call girls in Saket Delhi NCR8447779800, Low rate Call girls in Saket Delhi NCR
8447779800, Low rate Call girls in Saket Delhi NCRashishs7044
 
Kenya Coconut Production Presentation by Dr. Lalith Perera
Kenya Coconut Production Presentation by Dr. Lalith PereraKenya Coconut Production Presentation by Dr. Lalith Perera
Kenya Coconut Production Presentation by Dr. Lalith Pereraictsugar
 
Darshan Hiranandani [News About Next CEO].pdf
Darshan Hiranandani [News About Next CEO].pdfDarshan Hiranandani [News About Next CEO].pdf
Darshan Hiranandani [News About Next CEO].pdfShashank Mehta
 
Financial-Statement-Analysis-of-Coca-cola-Company.pptx
Financial-Statement-Analysis-of-Coca-cola-Company.pptxFinancial-Statement-Analysis-of-Coca-cola-Company.pptx
Financial-Statement-Analysis-of-Coca-cola-Company.pptxsaniyaimamuddin
 
The-Ethical-issues-ghhhhhhhhjof-Byjus.pptx
The-Ethical-issues-ghhhhhhhhjof-Byjus.pptxThe-Ethical-issues-ghhhhhhhhjof-Byjus.pptx
The-Ethical-issues-ghhhhhhhhjof-Byjus.pptxmbikashkanyari
 
Pitch Deck Teardown: Geodesic.Life's $500k Pre-seed deck
Pitch Deck Teardown: Geodesic.Life's $500k Pre-seed deckPitch Deck Teardown: Geodesic.Life's $500k Pre-seed deck
Pitch Deck Teardown: Geodesic.Life's $500k Pre-seed deckHajeJanKamps
 
Guide Complete Set of Residential Architectural Drawings PDF
Guide Complete Set of Residential Architectural Drawings PDFGuide Complete Set of Residential Architectural Drawings PDF
Guide Complete Set of Residential Architectural Drawings PDFChandresh Chudasama
 
Cyber Security Training in Office Environment
Cyber Security Training in Office EnvironmentCyber Security Training in Office Environment
Cyber Security Training in Office Environmentelijahj01012
 
MAHA Global and IPR: Do Actions Speak Louder Than Words?
MAHA Global and IPR: Do Actions Speak Louder Than Words?MAHA Global and IPR: Do Actions Speak Louder Than Words?
MAHA Global and IPR: Do Actions Speak Louder Than Words?Olivia Kresic
 
8447779800, Low rate Call girls in New Ashok Nagar Delhi NCR
8447779800, Low rate Call girls in New Ashok Nagar Delhi NCR8447779800, Low rate Call girls in New Ashok Nagar Delhi NCR
8447779800, Low rate Call girls in New Ashok Nagar Delhi NCRashishs7044
 
8447779800, Low rate Call girls in Rohini Delhi NCR
8447779800, Low rate Call girls in Rohini Delhi NCR8447779800, Low rate Call girls in Rohini Delhi NCR
8447779800, Low rate Call girls in Rohini Delhi NCRashishs7044
 
Chapter 9 PPT 4th edition.pdf internal audit
Chapter 9 PPT 4th edition.pdf internal auditChapter 9 PPT 4th edition.pdf internal audit
Chapter 9 PPT 4th edition.pdf internal auditNhtLNguyn9
 

Kürzlich hochgeladen (20)

Organizational Structure Running A Successful Business
Organizational Structure Running A Successful BusinessOrganizational Structure Running A Successful Business
Organizational Structure Running A Successful Business
 
Digital Transformation in the PLM domain - distrib.pdf
Digital Transformation in the PLM domain - distrib.pdfDigital Transformation in the PLM domain - distrib.pdf
Digital Transformation in the PLM domain - distrib.pdf
 
International Business Environments and Operations 16th Global Edition test b...
International Business Environments and Operations 16th Global Edition test b...International Business Environments and Operations 16th Global Edition test b...
International Business Environments and Operations 16th Global Edition test b...
 
Fordham -How effective decision-making is within the IT department - Analysis...
Fordham -How effective decision-making is within the IT department - Analysis...Fordham -How effective decision-making is within the IT department - Analysis...
Fordham -How effective decision-making is within the IT department - Analysis...
 
Call Us ➥9319373153▻Call Girls In North Goa
Call Us ➥9319373153▻Call Girls In North GoaCall Us ➥9319373153▻Call Girls In North Goa
Call Us ➥9319373153▻Call Girls In North Goa
 
Call US-88OO1O2216 Call Girls In Mahipalpur Female Escort Service
Call US-88OO1O2216 Call Girls In Mahipalpur Female Escort ServiceCall US-88OO1O2216 Call Girls In Mahipalpur Female Escort Service
Call US-88OO1O2216 Call Girls In Mahipalpur Female Escort Service
 
Call Us 📲8800102216📞 Call Girls In DLF City Gurgaon
Call Us 📲8800102216📞 Call Girls In DLF City GurgaonCall Us 📲8800102216📞 Call Girls In DLF City Gurgaon
Call Us 📲8800102216📞 Call Girls In DLF City Gurgaon
 
8447779800, Low rate Call girls in Saket Delhi NCR
8447779800, Low rate Call girls in Saket Delhi NCR8447779800, Low rate Call girls in Saket Delhi NCR
8447779800, Low rate Call girls in Saket Delhi NCR
 
Kenya Coconut Production Presentation by Dr. Lalith Perera
Kenya Coconut Production Presentation by Dr. Lalith PereraKenya Coconut Production Presentation by Dr. Lalith Perera
Kenya Coconut Production Presentation by Dr. Lalith Perera
 
Darshan Hiranandani [News About Next CEO].pdf
Darshan Hiranandani [News About Next CEO].pdfDarshan Hiranandani [News About Next CEO].pdf
Darshan Hiranandani [News About Next CEO].pdf
 
No-1 Call Girls In Goa 93193 VIP 73153 Escort service In North Goa Panaji, Ca...
No-1 Call Girls In Goa 93193 VIP 73153 Escort service In North Goa Panaji, Ca...No-1 Call Girls In Goa 93193 VIP 73153 Escort service In North Goa Panaji, Ca...
No-1 Call Girls In Goa 93193 VIP 73153 Escort service In North Goa Panaji, Ca...
 
Financial-Statement-Analysis-of-Coca-cola-Company.pptx
Financial-Statement-Analysis-of-Coca-cola-Company.pptxFinancial-Statement-Analysis-of-Coca-cola-Company.pptx
Financial-Statement-Analysis-of-Coca-cola-Company.pptx
 
The-Ethical-issues-ghhhhhhhhjof-Byjus.pptx
The-Ethical-issues-ghhhhhhhhjof-Byjus.pptxThe-Ethical-issues-ghhhhhhhhjof-Byjus.pptx
The-Ethical-issues-ghhhhhhhhjof-Byjus.pptx
 
Pitch Deck Teardown: Geodesic.Life's $500k Pre-seed deck
Pitch Deck Teardown: Geodesic.Life's $500k Pre-seed deckPitch Deck Teardown: Geodesic.Life's $500k Pre-seed deck
Pitch Deck Teardown: Geodesic.Life's $500k Pre-seed deck
 
Guide Complete Set of Residential Architectural Drawings PDF
Guide Complete Set of Residential Architectural Drawings PDFGuide Complete Set of Residential Architectural Drawings PDF
Guide Complete Set of Residential Architectural Drawings PDF
 
Cyber Security Training in Office Environment
Cyber Security Training in Office EnvironmentCyber Security Training in Office Environment
Cyber Security Training in Office Environment
 
MAHA Global and IPR: Do Actions Speak Louder Than Words?
MAHA Global and IPR: Do Actions Speak Louder Than Words?MAHA Global and IPR: Do Actions Speak Louder Than Words?
MAHA Global and IPR: Do Actions Speak Louder Than Words?
 
8447779800, Low rate Call girls in New Ashok Nagar Delhi NCR
8447779800, Low rate Call girls in New Ashok Nagar Delhi NCR8447779800, Low rate Call girls in New Ashok Nagar Delhi NCR
8447779800, Low rate Call girls in New Ashok Nagar Delhi NCR
 
8447779800, Low rate Call girls in Rohini Delhi NCR
8447779800, Low rate Call girls in Rohini Delhi NCR8447779800, Low rate Call girls in Rohini Delhi NCR
8447779800, Low rate Call girls in Rohini Delhi NCR
 
Chapter 9 PPT 4th edition.pdf internal audit
Chapter 9 PPT 4th edition.pdf internal auditChapter 9 PPT 4th edition.pdf internal audit
Chapter 9 PPT 4th edition.pdf internal audit
 

Application of the Cutting Stock Problem to a Construction Company: A Case Study

  • 1. Alp, S., Ertek, G. and Birbil, S. I. (2006). "Application of the cutting stock problem to a construction company: A case study.” 5th International Symposium on Intelligent Manufacturing Systems, Sakarya, Turkey. Note: This is the final draft version of this paper. Please cite this paper (or this final draft) as above. You can download this final draft from http://research.sabanciuniv.edu. Application of the Cutting Stock Problem to a Construction Company: A Case Study Seda Alp, Gurdal Ertek, S.Ilker Birbil Sabanci University, Faculty of Engineering and Natural Sciences, Orhanli, Tuzla, 34956, Istanbul, Turkey Tel: +90(216)483-9568 Fax: +90(216)483-9550 1 / 18
  • 2. Abstract This paper presents an application of the well-known cutting stock problem to a construction firm. The goal of the 1Dimensional (1D) cutting stock problem is to cut the bars of desired lengths in required quantities from longer bars of given length. The company for which we carried out this study encounters 1D cutting stock problem in cutting steel bars (reinforcement bars) for its construction projects. We have developed several solution approaches to solving the company’s problem: Building and solving an integer programming (IP) model in a modeling environment, developing our own software that uses a mixed integer programming (MIP) software library, and testing some of the commercial software packages available on the internet. In this paper, we summarize our experiences with all the three approaches. We also present a benchmark of existing commercial software packages, and some critical insights. Finally, we suggest a visual approach for increasing performance in solving the cutting stock problem and demonstrate the applicability of this approach using the company’s data on two construction projects. Submission areas: Decision Support System, Management Information Systems Introduction The cutting stock problem is encountered in many industries, including the construction industry. In constructions, steel bars (reinforcement bars) of certain lengths are needed in specified quantities. These bars are cut from long steel bars (with lengths as much as 1200 cms) according to the cutting patterns. The problem is to find the "optimal" cutting patterns, where the total number of long steel bars used is minimized, subject to the constraint that the desired shorter steel bars are cut in required quantities. 2 / 18
  • 3. The Problem Setting The Company Mimag Makina Ltd, which is established in 1983, is a construction firm under the parent company, MIMAG Group1. Initial goal in founding the company group was to produce steel fabrication needs of the parent company, mainly formwork, scaffolding, and construction equipment. Later the products were diversified, and found a general market among contractors. At present, the company designs, produces, supervises formwork and scaffolding systems suitable for all kinds of structures such as dams, bridges, business centers, and industrial plants. Up to this date several projects were completed by Mimag, including housing projects (200 residential sites), industrial installations, railway electrification, silos, chimneys, and various civil, mechanical and structural installation jobs are executed. Reinforced concrete, which is the combination of concrete and steel, is used in several projects of Mimag because of the quality of durability and for economic purposes. One of the projects that Mimag had dealt with was the “Diesel/Kerosene Hydroprocessing and CCR Reformer Project” implemented in Izmit Refinery of Tupras, Turkey (Figure 1a). Tupras is the top company in Turkey with respect to sales revenues. Vertical and horizontal reinforcements were built to replace some silos in the mentioned project. The other real data that we have used was from the project “Waste Water Treatment Plant” conducted in Adana, Turkey. The project was for the reinforcement of slab. To determine the amount of steel bars used in reinforced concrete, several methods are used to minimize the amount of scrap. The standard steel bars used in reinforced concrete steel bars are 1200 cm and have various diameters ranging from 6mm to 50mm (Figure 1b). These different steels with different lengths and diameters should be cut in an efficient manner such that the scrap is minimized (Figure 1c). 1 http://www.mimag.com.tr 3 / 18
  • 4. (a) (b) (c) Figure 1. (a) 1200cm long steel bars at the Izmit - Tupras Construction site waiting to be cut. (b) The cut steel bars with different lengths and diameters. (c) Equipment used to cut the steel bars. Source: http://www.kaplanmakina.com 4 / 18
  • 5. The 1D Cutting Stock Problem The mathematical model for the 1D cutting stock problem is presented below: SETS: I: set of patterns J: set of lengths DECISION VARIABLES: xi : number of bars cut according to pattern i. PARAMETERS: a ij : number of pieces of length j within one bar cut according to pattern i b j : required number of pieces of length j THE MODEL min x i (1) iI s.t a ij xi  b j i , j  J (2) iI xi  0 , integer (3) 5 / 18
  • 6. The goal of the model is to minimize the objective function (1), which consists of the total number of long steel bars used. Constraint set (2) ensures that enough number of shorter bars are cut from long bars in required quantities. The decision variables are restricted to non- negative values (3). One can obtain the optimal solution to the cutting stock problem by using an IP/MIP solver. For solving large instances of the problem, the reader is referred to Gilmore and Gomory (1961). The Solution Approaches Solving within the GAMS Modeling System The first solution approach that we followed to tackle with Mimag’s 1D cutting stock problem was building and solving an IP formulation within the GAMS Modeling System2. We have implemented our GAMS model based upon information provided in Kalvelagen (2003). We initially built the IP model for one of the subprojects within the Tupras Project, consisting of 8 different lengths (Appendix A). One advantage of using GAMS is being able to represent the data in matrix and vector forms. Another advantage is being assured that the optimal solution is found. However, there are major drawbacks of this approach:  The patterns cannot be generated by the GAMS modeling language; they have to be generated through a separate program written in a general purpose programming language, such as C++.  Adding a new pattern requires “hacking” into the GAMS model and adding a new row to the exact appropriate place. GAMS modeling system is very sensitive to incorrect syntax, and can give hard-interpret error messages when the required syntax is not followed. 2 www.gams.com 6 / 18
  • 7. Developing an IP-based Optimization Program The shortcomings of using a system such as GAMS have led us to development of an IP-based optimization program for solving the problem. We had written a C++ program to provide the pattern data to be input into the GAMS model. However, this early implementation was employing nested loops (one loop for each additional length) to generate the feasible patterns. Such an implementation required modification of the source code for every new subproject data, since each subprojects can have different number of lengths required. Yet another issue was the fact that GAMS is a commercial software, which requires purchase of a new license for each installation. We clearly needed a free-of-charge open-source modeling system or software library to use as the optimization engine. lp_solve3 is a free solver based on revised simplex algorithm for solving linear programming (LP) problems and the Branch-and-bound technique for solving IP and MIP problems. Even tough it is developed in ANSI C, it can be called from programs written in other programming languages, such as C++, Java, C#, and Visual Basic, as well. We have selected to code our program in Java4, since one of the authors possesses proficiency in this language. We have used a “Java wrapper” that enables the communication of the Java code with the lp_solve optimization engine, and carried out our code development within the Eclipse IDE5 (Integrated Development Environment). Our Java program reads data from a text file, generates patterns efficiently through an array based representation of patterns, calls lp_solve to build and solve the IP model, and prints out the solution. Currently, our program has minimal GUI (Graphical User Interface), since GUI can consume great amounts of CPU time, and slow down the time to solve the cutting stock problem. The bottleneck of our current implementation is the generation of the patterns taking up to 1 minute for small-size instances with up to 17 lengths. One larger-size instance with 25 lengths took more than 10 minutes to solve. One possible solution to this problem is cutting some of the lengths from the next longer length. We utilized this approach for solving the mentioned instance. 3 http://lpsolve.sourceforge.net/5.5/ 4 htpp://java.sun.com 5 www.eclipse.org 7 / 18
  • 8. We validated the correctness of our program by comparing its solution to the GAMS solution for three different instances. Using Commercial Software Our next approach to solving the Mimag’s problem was to test commercial 1D cutting stock software available on the internet. The software packages were searched using the key word “1 dimensional cutting stock program” at www.google.com. The first ~30 pages of the search results were scanned to retrieve applicable software. Only seven packages were found to have demo versions available that can handle the largest instance (with 25 lengths) that we had. These packages and their web sites are listed in Appendix B. Benchmarking Results The Performance Data Some important questions that we had in mind -upon completion of our Java program- were the following; Q1. How effective is our program compared to the commercial packages that we downloaded? Q2. How do the commercial packages compared amongst them? Q3. Would it be considerably more effective to use two different software packages at the same time for each subproject and implement the better of the two solutions that they provide? Q4. Does batching of two or more subprojects and determining the best solution for the batch increase performance (decrease the cost)? 8 / 18
  • 9. We have found the answers to the first three questions based upon Mimag’s data. For answering the fourth question, we propose a visual approach that requires drawing a chart to determine which subprojects to merge. We present our visual approach in the next section. We have carried out a performance benchmark of our program and the commercial packages by using the data sets from Izmit (Tupras) and Adana projects of Mimag. The total number of bars used in our program’s solution and the commercial packages’ solutions are shown in decreasing order in Table 1. The software marked with a (*) is the one which Mimag was planning to purchase. Table 1. The total number of bars found by the benchmarked software Software Name Total number of Bars Java Program 10399 Software 1 10400 Software 2 10402 Software 3 10403 Software 4 10410 Software 5* 10419 Software 6 10577 Software 7 11858 Insights As can be seen from Table 1, our Java program outperformance all the commercial packages. This is naturally expected, since we know from optimization theory that IP solution gives the 9 / 18
  • 10. optimal objective function value. The next thing that we noticed is that none of the commercial packages have achieved the optimal total number of bars. This indicates that the software packages are not implementing an optimal algorithm, but are implementing heuristic techniques. We noticed that the first five software packages give solutions very close to the optimal. So a construction company can select any of these five software packages, based on other criteria such as price, on-line support, usability, data import/export capabilities, and reporting quality (including visualization of optimal cutting patterns and their quantities). One very important observation is that Software 6 and especially Software 7 perform poorly. A company should definitely avoid using Software 7, which also happens to be the most expensive package amongst all. Software 7 is distinguished from all others by its capability to import/export to and from MS Excel. Meanwhile, Software 6 has the best GUI amongst all packages. Thus, the software selection should be based on performance tests, rather than price, data import/export capabilities, or GUI. We have so far answered Q1 and Q2. Since the software packages that perform well are extremely close to the optimal there is no need to use two of those software packages, thus answering Q3. A Visual Approach for Determining How to Batch Subprojects We now present a visual approach that enables a decision maker to select which subproject- diameter combinations can be batched (combined) to be cut simultaneously. This approach is an answer to Q4 posed in the previous section. We project that the approach we describe below can reduce the number of long bars cut (which is the objective function of 1D cutting stock problem), and suggest that it can be implemented in cutting stock software packages. Figure 2 shows the chart that we propose6, where each point represents a subproject-diameter combination. The x-axis shows values of “Optimal number of bars used”, the y-axis shows values of “Diameters” (in cm), and the color of the points shows “Optimal usage” (as a percentage) for that subproject, where dark colors denote lower usages (bad performance). To generate this 6 The chart is generated using Miner3D Software (http://www.miner3d.com) 10 / 18
  • 11. chart, the cutting stock problem has to be solved for each subproject, and the three values that will be displayed in the chart have to be calculated. This is a fairly easy thing to do, since steel bar requirements for each subproject of a project is determined apriori and stays fixed through out the construction project. The approach we suggest is the following: 1. Start with the highest “Diameter” value on the y-axis and examine the points that reside on that row. We start searching from the biggest diameter since the cost of steel bars is depended upon the weight, which is a quadratic function of the diameter. 2. If there is a point with a dark color on that row which has a large “Optimal number of bars used” value on the x-axis, then consider batching that with another point (subproject-diameter combination). For example in Figure 2, we first consider batching points A and B. 3. Test using software whether the batching possibility in Step 2 brings any improvements. If batching brings significant improvements go ahead and carry out the batching while cutting the steel bars. If batching does not bring significant improvement carry out the cutting separately. 4. Return back to Step 1, considering the next smaller diameter, until you cannot find any batching possibilities that could bring significant savings. For example, the next batching possibility in Figure 2 is combining points C and D. When we applied the proposed visual approach, we observed that the two considered projects (Izmit and Adana) did not include great improvement opportunities through batching. We even observed that batching could result in a worse performance. Therefore, the decision maker should be aware that batching is not always a good option. Even though we have not gained meaningful improvements by batching, when using our data, we believe that for other projects there can be significant savings. One could especially expect good opportunities when there are a large number of projects/subprojects managed simultaneously, and a large number of steel bars to be cut. We suggest carrying out more extensive tests as a future research area. 11 / 18
  • 12. One important issue in batching is the additional inventory of cut steel bars that will have to be stored. This translates into additional inventory holding costs, which are incurred due to time value of money. Any analysis of batching should also consider this additional cost. Figure 2. The chart that displays performance data on subprojects. Conclusions Motivated by a real world problem encountered by a construction firm, we have tested and benchmarked commercial software packages for solving the 1D cutting stock problem. Our findings suggest that available software packages should be tested with sample project data before adoption. We observed that software packages with the best import/export capabilities and/or GUI can perform very poorly. Besides, a higher price does not imply a good performance 12 / 18
  • 13. at all, as the worst software in our study was also the most expensive one. We concluded our paper with a visual approach that can be implemented in software packages to enable interactive decision making with respect to batching. We believe that our study will offer the decision makers with general guidance on software selection and the software companies with a feature that they can use to enhance the functionality of their products. Acknowledgement We sincerely thank Necati Alp at Mimag for motivating our study, providing the real world data, and continuously supporting us. We also thank Sevket Atilla at Kaplan Machinery for allowing us to use their equipment’s photograph in our paper. References Gilmore, P. C. and Gomory, R. E. (1961). A linear programming approach to the cutting stock problem. Operations Research, vol: 9, 848--859 Kalvelagen, E. (2003). Column Generation with Gams. Gams Development Corp. Washinton DC. 13 / 18
  • 14. APPENDIX A. Sets i widths /w1*w8/ *different lengths of the steel bars. j pattern/p1*p38/; *patterns in which combination they are going to be used. scalar r raw width /1200/; *bar length is set to 1200. table demanddata(i,*) *demand table for the lengths and their quantities. width demand w1 100 100 w2 200 2 w3 300 2 w4 493 250 w5 590 2 w6 630 2 w7 780 2 w8 930 2; table patterndata(j,i) *pattern table with respect to lengths w1 w2 w3 w4 w5 w6 w7 w8 p1 2 2 2 0 0 0 0 0 p2 4 1 2 0 0 0 0 0 p3 5 2 1 0 0 0 0 0 14 / 18
  • 15. p4 6 0 2 0 0 0 0 0 p5 7 1 1 0 0 0 0 0 p6 8 2 0 0 0 0 0 0 p7 9 0 1 0 0 0 0 0 p8 1 0 1 0 0 0 0 0 p9 1 2 0 0 0 0 0 0 p10 0 2 1 1 0 0 0 0 p11 1 0 2 1 0 0 0 0 p12 2 1 1 1 0 0 0 0 p13 3 2 0 1 0 0 0 0 p14 4 0 1 1 0 0 0 0 p15 5 1 0 1 0 0 0 0 p16 7 0 0 1 0 0 0 0 p17 0 0 2 0 1 0 0 0 p18 1 1 1 0 1 0 0 0 p19 2 2 0 0 1 0 0 0 p20 3 0 1 0 1 0 0 0 p21 4 1 0 0 1 0 0 0 p22 6 0 0 0 1 0 0 0 p23 0 1 0 2 0 0 0 0 p24 2 0 0 2 0 0 0 0 p25 1 0 0 1 1 0 0 0 p26 0 0 0 0 2 0 0 0 p27 0 2 0 0 0 0 1 0 p28 1 0 1 0 0 0 1 0 15 / 18
  • 16. p29 2 1 0 0 0 0 1 0 p30 4 0 0 0 0 0 1 0 p31 0 1 0 0 0 0 0 1 p32 0 1 1 0 0 1 0 0 p33 1 2 0 0 0 1 0 0 p34 2 0 0 0 0 0 0 1 p35 2 0 1 0 0 1 0 0 p36 3 1 0 0 0 1 0 0 p37 5 0 0 0 0 1 0 0 p38 0 0 0 1 0 1 0 0; parameter d(i); *demand in taken from the table as input. d(i) = demanddata(i, 'demand'); parameter a(i,j); *the amount of the patterns that are going to be used. a(i,j) = patterndata(j,i); integer variable x(j) 'pattern used'; variable z 'objective'; x.up(j) = sum(i, d(i)); equations numpat 'number of patterns used(objective)' demand(i) 'meet demand'; 16 / 18
  • 17. numpat.. z=e=sum(j, x(j)); *minimization of the patterns that are going to be used demand(i).. sum(j, a(i,j)*x(j))=g=d(i); *demand should be satisfied. model cutting /all/; solve cutting using mip minimizing z; display x.l, x.m; Appendix B The commercial software packages benchmarked in this paper are listed in random order below. The numbering of the software packages within the paper is not with respect to this order. http://www.astrokettle.com/pr1dsc.html (1D Stock Cutter) http://www.downloadjunction.com/product/software/30836/ (Optimumcut) http://www.rrdrummond.com/demo1.htm (The Itemizer 7.0) 17 / 18
  • 18. http://www.softplatz.com/Soft/Graphics/CADs/Real-Cut-1D.html (Real Cut 1d) http://www.shareup.com/Pipe_Cutting_Suite-download-7887.html (Pipe Cutting Suite 3.11) http://www.softpicks.net/software/CutLogic-1D-9970.htm (CutLogic) http://tucows.menanet.net/preview/333725.html (Plus1D) 18 / 18